This file is indexed.

/usr/share/tdiary/theme/sakana/sakana.css is in tdiary-theme 3.2.2-3.

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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
@charset "utf-8";
/*
Title: Sakana
Revision: $Revision: 1.8 $
Author: Nana
Access: http://moo.boo.jp
Comment: 涼しげな魚のイメージ
License: GPL
	Copyright(C)2002 Nana <moo@xu.boo.jp>
	validated by W3C.
 */

/*
リンク文字列に関する設定
*/
a:link {
        background-color: transparent;
	color: #0080FF;
	text-decoration: none;
}

a:visited {
	background-color: transparent;
	color: #9370DB;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	
	
}
/*
ページ全体の基本的な設定。背景色や文字色など
*/
body {
	background-color: #cdffff;
	color: #505050;
        background-image: url(sakana_bg-b.jpg);
        background-repeat: repeat-x;
        background-position: center bottom;
        background-attachment: fixed;
}

/*
ページトップにある操作ボタンの並ぶ行の設定
*/
div.adminmenu {
	font-size: small;
	float: right;
}
/*
ページトップにある操作ボタン自体の設定
*/
span.adminmenu {
	background-color: transparent;
        color: #3CB371;
        padding: 3px;
        border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        background-color: #E0FFFF;
}
p.message {
	text-align: center;
	font-size: medium;
	background-color: red;
	color: #000;
	padding: 8px;
}

/*
日記タイトルの設定
*/
h1 {
	text-align: left;
        color: #0080FF;
}

/*
カレンダーの設定
*/
div.calendar {
	border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        background-color: #E0FFFF;
        padding: 0px;
        text-align: right;
        margin-top: 1px;
}
div.calendar div.year {
        font-weight: bold;
}

/*
1日の日記全体を囲む枠の設定
*/
div.day {
	text-align: right;
	padding: 0.5em;
	padding-bottom: 0em;
	padding-top: 0em;
	margin: 0em;
	margin-bottom: 2em;
}

/*
タイトル行全体の設定
*/
h2 {
	margin-top: 0.1em;
	margin-bottom: 1em;
	padding: 2px 0px 2px 1em;
	text-align: left;
        font-size: 100%;
        border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        background-color: #E0FFFF;
}
/*
日付の設定
*/
h2 span.date {
        font-size: 110%;
}

span.date a {
	color: #9370DB;
        background-color: transparent;
}


/*
タイトルを除いた1日の日記本文全体の設定
*/
div.body {
	background-color: transparent;
	text-align: left;
	padding: 0.1em;
}
/* This ">" selector does not affect IE */
div.day div.section > * {
	margin-left: 100px;
}

/*
サブタイトルの設定
*/
h3 {
        margin: 0em ! important;
	padding: 0em;
	font-weight: bold;
	font-size: 100%;
}

div.section p {
	line-height: 130%;
	
}

/*
イメージアンカーの設定
ただしDefaultテーマではイメージアンカーは使っていないのでコメントにしてある
指定のコツは以下の通り
  - span.sanchorはセクションアンカー、span.canchorはツッコミアンカー
  - background-imageにアンカー画像を指定
  - paddingのtop(最初)とright(2番目)に画像の縦横サイズを指定
  - colorに背景色と同じ色を指定(文字を見えなくするため)
*/
div.day span.sanchor {
	background-image: url(sakana_panchor.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	padding: 27px 24px 0px 0px;
	color: #fff;
	background-color: transparent;
	font-size: 1px;
}

div.day span.canchor {
	background-image: url(sakana_canchor.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	padding: 22px 22px 0px 0px;
	color: #fff;
	background-color: transparent;
	font-size: 1px;
}

/*
ツッコミ/フォーム/リンク元のキャプション設定
*/
div.caption {
       	font-size: 90%;
	border-style: dotted;
	border-color: #5acffb;
	border-width: 1px 0px 1px 0px;
	margin: 1em;
	
}

pre {
	margin-right: 1em;
	padding: 8px 8px 8px 8px;
	border-style: solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        margin-left: 100px;
}

/*
ツッコミ欄全体の設定
*/
div.comment {
	font-size: 90%;
	margin-left: 100px;
        text-align: left;
	padding: 2px;
	padding-bottom: 2px;
}

/*
ツッコミ省略版本文
*/
div.commentshort {
        margin: 0em ! important;
	font-size: 90%;
}

span.commentator {
        color: #7B68EE;
	font-weight: bold;
}

div.commentshort p {
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}

p.commenttitle {
	text-align: left;
}

/*
ツッコミ本体
*/
div.commentbody {
	font-size: 90%;
	margin-top: 5px;
}
div.comment p {
	padding: 0em;
	line-height: 130%;
}
/*
ツッコミした人の情報
*/
div.commentator {
	font-weight: bold;
        color: #7B68EE;
}

p.referertitle {
}

/*
リンク元リスト(Month/Latestモード)の設定
*/
div.referer {
	text-align: right;
	font-size: small;
	color: #505050;
	background-color: transparent;
	padding: 2px;
	padding-bottom: 2px;
	margin-left: 100px;
}
/*
リンク元リスト(Dayモード)の設定
*/
div.refererlist {
	font-size: 90%;
	text-align: left;
	background-color: transparent;
	padding: 2px;
	padding-bottom: 1px;
	margin-top: 0.5em;
        margin-left: 100px;
}

ul.referer li {
	padding-top: 2px;
	padding-bottom: 2px;
	margin-top: 2px;
	margin-bottom: 2px;
	font-size: 90%;
}

hr {
	border-style: solid;
	border-width: 2px 0px 0px 0px;
	border-color: #5acffb;
}

hr.sep {
	display: none;
}

p.footer {
	font-size: small;
	text-align: left;
}

div.form {
	text-align: left;
	padding: 0.5em 1em 0.5em 1em;
	margin-bottom: 0.5em;
	margin-left: 10%;
        border-style: dotted solid dotted solid;
	border-color: #5acffb;
	border-width: 1px 5px 1px 5px;
        background-color: #ffffff;
        background-color: transparent;
}

input.field {
        color: #000000;
        background-color: #ffffff;
        margin:2px;
}
       
input, select {
        color: #000000;
        border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        background-color: #ffffff;
}

textarea {
	margin-left: 1em;
	border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        background-color: #ffffff;
        color: #000000;
}

/*
箇条書きの設定
*/
div.body ul, div.body ol {
	margin-left: 3em;
	margin-right: 3em;
}

/*
項目リストの設定
*/
div.body dl {
	margin-left: 2em;
}

div.body dt {
	margin-bottom: 0.2em;
	font-weight: bold;
}

div.body dd {
	margin: 0em 3em 0.5em 1em;
}

li {
	list-style-type:lower-roman;
}

p.strong{
    font-size: 200%;
    color: #000000;
    background-color: transparent;
}
.memo{
    background-color: #6495ed;
    color: #fff;
}

/*.hide{
    background-color: #505050;
}*/

div.footnote p.footnote{
	margin-left: 100px;
        border-style: dotted none dotted solid;
	border-color: #5acffb;
	border-width: 0px 0px 0px 5px;
        padding: 3px;
	color: #505050; 
}

/* calendar2 */
table.calendar {
        font-size: 80%;
        line-height: 100%;
        border-style:  solid;
	border-color: #5acffb;
	border-width: 1px;
        color: #505050;
        background-color: #E0FFFF;
        padding: 3px;
}
table.calendar td a:link,a:visited{
        text-decoration: none;
}
table.calendar td {
        margin: 0px;
        text-align: right;
        padding: 0px;
        margin: 0px;
}

table.calendar td.calendar-prev-month, table.calendar
td.calendar-current-month, table.calendar td.calendar-next-month {
        text-align: center;
}

blockquote {
        border-width: 3px 0px 1px 0px;
	border-style: solid solid solid solid;
	border-color: #87CEFA;
	background-color: #E0FFFF;
        color: #191970;
        padding: 2px;
      
}

div.rank {
	font-size: 80%;
	text-align: left;
	margin: 0em;
        padding-bottom: 2px;
}
span.big {
        font-size:20pt;
        color: blue;
        background-color: transparent;
}
.calendar-popup {
	display: none;
	text-align: left;
	background-color: #fff;
	position: absolute;
 	padding: 0 1ex 0 1ex;
}

.calendar-day a{
	font-weight: bold;
}

.calendar-sunday {
	color: #DA70D6;
}

.calendar-saturday {
	color: #1E90FF;
}

.calendar-weekday {
	color: #999999;
}
.calendar-todo {
	border: 1px solid white;}