This file is indexed.

/usr/share/doc/ruby-ramaze/examples/app/todolist/public/css/screen.css is in ruby-ramaze 2012.12.08-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
h1 {
  text-align: center;
  color: #33f;
}

th {
  color: #33f;
}

fieldset {
  border: 0;
  width: 21em;
  margin: auto;
  padding: 1em;
  margin-bottom: 2em;
}

fieldset legend {
  color: #33f;
}

table {
  width: 50em;
  border: 2px solid #eef;
  margin: auto;
}

table caption {
  color: #33f;
}

tr.done {
  background: #efe;
}

tr.pending {
  background: #fee;
}

tr:hover {
  background: #eef;
}

td {
  width: 5em;
}

td.title {
  font-weight: bold;
  width: auto;
}

td a {
  display: block;
}

td.toggle a {
  color: #3a3;
}

td.delete a {
  color: #f00;
}