This file is indexed.

/usr/share/cherrytree/glade/styles.css is in cherrytree 0.37.6-1.

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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* Met Office external website                                                                            

Colours:
- black/dark grey: #202A2C
- dark grey: #666666      
- grey: #DDDDDD (thin lines)
- light grey: #EEEEEE (background colour)
- darkish green: #BCDB0C                 
- green: #CCFF33                         
- darkish blue: #4BA8BA                  
- blue: #00ADD0                          

*/

/*******************************************************************************
 * GENERAL
 ******************************************************************************/
/*<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,700' rel='stylesheet' type='text/css'>*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,700);

body {
    font-size: 13px;
    font-family: "Open Sans", sans-serif !important;
    padding: 20x; 
}

div.main {
    width: 100%;
}

div.tree {
    width: 300px;
    /*background-color: #EEEEEE;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 20px;*/
    padding: 0.75em 0 0.75em 20px;
    float: left;
    position: fixed;
    height: 97%;
    overflow: auto;
}

div.page {
    width: 100%;
    padding-left: 380px; /* div.tree width + L/R margins + padding */
    box-sizing: border-box;
}

.clear {
    clear: both
}

/*******************************************************************************
 * TREE INDEX
 ******************************************************************************/

div.tree {
    font-size: 12px;
    color: #666666;
}

div.tree a, div.tree a:visited {
    color: #666666;
    text-decoration: none;
}

div.tree a:hover {
    text-decoration: underline;
}

div.tree ol {
    padding-left: 1em;
    list-style-type: square;
}

div.tree ol ol {
    list-style-type: circle;
}

div.tree ol ol ol {
    list-style-type: disc;
}

div.tree ol ol ol ol, div.tree ol ol ol ol ol, div.tree ol ol ol ol ol ol {
    list-style-type: disc;
}

div.tree a.show, div.tree a.hide { display: none; }

/*******************************************************************************
 * NODE PAGES
 ******************************************************************************/

/* TABLES */

table {
    border: 1px solid #AAAAAA;
}

th {
    background-color: #EEEEEE;
}

td {
    padding-left: 5px;
    padding-right: 5px;
    border-top: 1px solid #AAAAAA;
}

/* HEADINGS */

div.main h1 {
    font-weight: bold;
}

div.main h2 {
    padding-top: 1em;
    /*padding-bottom: 0.5em;*/
    font-weight: bold;
    font-size: 150%;
    color: #666666;
}

div.main h3 {
    padding-top: 0.75em;
    font-weight: bold;
    font-size: 125%;
    color: #666666;
}

/* LINKS */

/*div.main a, div.main a:visited {
    color: #005BCA;
    text-decoration: none;
}

div.main a:hover, div#me a:hover {
    text-decoration: underline;
}*/

/* CODE */

span.code-node {
    /*color: #FFFF00;  /* yellow */
}

div.codebox, div.main code, div.main pre {
    font-family: "Courier New", Courier, monospace;
    font-weight: normal;
    font-size: 13px;
    background-color: #EEEEEE;
    border: 1px solid #DDDDDD;
}

div.main p.tagged-text
div.main code {
    /*color: #859C00;*/
    padding-left: 0.25em;
    padding-right: 0.25em;
}

div.main pre {
    padding: 0.25em;
    overflow: auto !important;
    width: 75%;
}


/* IMAGES */

/*img {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}*/