This file is indexed.

/usr/share/doc/ruby-ramaze/examples/app/blog/public/css/layout.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
 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
/**
 * Stylesheet used for the layout of most elements.
 *
 * @author Yorick Peterse
 * @link   http://yorickpeterse.com/
 */
#container
{
    margin:  20px auto;
    width:   940px;
}

#content
{
    background:    #fff;
    border:        1px solid #ddd;
    padding:       20px;
    width:         898px;
}

/* Top part of the website, contains the title and the navigation menu */
#top
{
    background:    #E33F1E;
    height:        70px;
    margin-bottom: 20px;
    padding:       0px 10px;
}

    #top header h1
    {
        color:       #fff;
        font-size:   38px;
        margin:      10px 0px 0px 0px;
        padding:     0px;
    }

    #top nav ul
    {
        float:        right;
        margin-right: 15px;
    }

        #top nav ul li
        {
            float:           left;
            font-size:       16px;
            list-style-type: none;
            margin-right:    10px;
        }

        #top nav ul li:last-child
        {
            margin-right: 0px;
        }

            #top nav ul li a
            {
                color:           #fff;
                display:         block;
                height:          45px;
                padding:         25px 10px 0px 10px;
                text-decoration: none;
            }

            #top nav ul li a:hover
            {
                background: #D43919;
            }

/* Footer at the bottom of the page */
#footer
{
    text-align: center;
}

    #footer p
    {
        font-size:     13px;
        margin-bottom: 10px;
    }

form label
{
    display: block;
}

    form label span.error
    {
        color: #E33F1E;
    }

form input[type="text"], form textarea, form input[type="password"]
{
    border:    1px solid #ccc;
    font-size: 14px;
    padding:   5px;
    width:     300px;
}

form textarea
{
    width: auto;
}

form input[type="submit"]
{
    background: #fff;
    border:     1px solid #ccc;
    font-size:  14px;
    padding:    3px 5px;
}

form input[type="submit"]:hover
{
    background: #eee;
}

/* Comments */
#comments > h1
{
    margin-bottom: 10px;
}

#comments article header h1
{
    font-size: 16px;
}

#comments article header .meta
{
    margin-bottom: 10px;
}

/* Notifications */
.message
{
    margin-bottom: 20px;
    text-align:    center;
}

    .message p
    {
        margin-bottom: 0px;
        padding:       5px;
    }

.message.success
{
    background: #DAEDA6;
    color:      #000;
}

.message.error
{
    background: #E33F1E;
    color:      #fff;
}

/* Pagination system */
.pager span
{
    display: none;
}

.pager a
{
    border:          1px solid #ccc;
    display:         inline-block;
    margin-right:    8px;
    min-width:       20px;
    padding:         5px;
    text-decoration: none;
    text-align:      center;
}

    .pager a:hover, .pager a.current
    {
        background: #eee;
        color:      #000;
    }

table
{
    margin-bottom: 10px;
    text-align:    left;
}

    table thead tr th
    {
        border-bottom: 2px solid #ccc!important;
    }

    table thead tr th, table tbody tr td
    {
        border-bottom: 1px solid #ccc;
        padding:       8px 3px;
    }

    table tbody tr:last-child td
    {
        border-bottom: none;
    }