This file is indexed.

/usr/share/doc/mongrel2-core/examples/chat/static/site.css is in mongrel2-core 1.11.0-1build1.

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
body {
    font-family:Gill Sans,sans-serif;
}
#header {
    font-family:monospace;
}
#header h1 {
    font-size:2em;
}
#sidebar {
    display:none;
    text-align:right;
}
#sidebar dt {
    font-family:monospace;
    font-size:1.25em;
}
a {
    color:#999999;
    text-decoration:none;
}
h1 {
    font-size:2.5em;
}
h1 a {
    color:#333333;
}
h2 a {
    color:#333333;
}
h3 a {
    color:#333333;
}
a:hover {
    color:#333333;
}
em {
    color:red;
}

#chatlog {
    background:none repeat scroll 0 0 #FFFFFF;
    border:1px solid black;
    font-family:helvetica;
    font-size:14px;
    height:543px;
    margin-bottom:0.5em;
    overflow-y: auto;
    padding:5px;
}

#msginput {
    border:1px solid gray;
    margin-left:-10px;
    padding:7px;
    width:923px;
}

#chat {
    float:left;
    height:100%;
    margin-right:15px;
}