This file is indexed.

/usr/share/doc/gradle/userguide/userguide.css is in gradle-doc 3.4.1-7ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*
 * Table of Contents
 */

.toc dl, .list-of-examples dl {
    margin-top: 0;
    margin-bottom: 0;
}

.book .toc > dl > dt {
    margin-top: 0.6em;
}

.book .toc > dl > dt > .part {
    display: inline-block;
    font-size: 1.4em;
    font-variant: small-caps;
    margin-top: 0.6em;
    margin-bottom: 0.3em;
}

.book .toc > dl > dd {
    margin-left: 0;
}

.book .toc, .book .list-of-examples {
    margin-top: 1.5em;
}

div.toc p { /* Is "Table Of Contents" header */
    font-size: 28px;
    color: #007042;
    margin-bottom: 0.5em;
}

div.toc p b {
    font-weight: normal;
}

.chapter > .toc {
    margin-bottom: 1em;
}

.chapter > .toc > dl {
    margin-left: 1.5em;
}

/*
 * HEADER/FOOTER
 */

.navheader {
    display: none;
}

.navfooter {
    margin-top: 3em;
    padding-top: 1em;
    width: 100%;
    border-top: solid #d0d0d0 0.4em;
}

.navbar {
    color: #a2a2a2;
    font-size: 90%;
    width: 100%;
    text-align: center;
}

.navbar a {
    color: #444444;
}

.navbar span {
    padding-left: .8em;
    padding-right: .8em;
}

/**
 * TITLEPAGE
 */

.titlepage .author {
    color: #666666;
}

.titlepage .copyright {
    color: #a2a2a2;
}

.titlepage .legalnotice {
    color: #a2a2a2;
}

.titlepage p {
    margin: 0;
}

/*
 * Single page html
 */
.book .chapter {
    margin-top: 4em;
}

.toc .chapter {
    padding-top: 0;
}

div.example code.filename {
  font-weight: bold;
}

/* Clickable links on section headers */
h2 > a.section-anchor, h3 > a.section-anchor, h4 > a.section-anchor {
    background-image: url("icon-link.svg");
    background-repeat: no-repeat;
    background-position: 0em 105%;  /* 105% works well for published docs */
    background-size: 0.9em;
    display: inline-block;
    text-decoration: none !important;
    width: 0.9em;
    height: 0.9em;
    margin-left: -0.9em;
    visibility: hidden;
}

/* This is a similar approach to the one immediately
   above, but using a Unicode character rather than
   an SVG image. It's the approach currently taken by
   Asciidoctor.

   I'm leaving it here in case someone wants to switch
   back to using a character rather than an image.

h2 > a:before, h3 > a:before, h4 > a:before {
    content: "\00A7";
    display: inline-block;
    font-size: 90%;
}
*/

h2:hover > a.section-anchor, h2 > a.section-anchor:hover,
h3:hover > a.section-anchor, h3 > a.section-anchor:hover,
h4:hover > a.section-anchor, h4 > a.section-anchor:hover {
    border: inherit;
    visibility: visible;
}