forked from tsimonq2/cdimage-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
236 lines (206 loc) · 3.08 KB
/
style.css
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
body
{
margin: 0;
font-family: Ubuntu, Arial, san-serif;
font-size: 12px;
line-height: 16px;
text-rendering: optimizeLegibility;
overflow-x:hidden;
color: #555;
}
.clearBoth
{
clear: both;
}
.floatRight
{
float: right;
}
/*---------- Headers ----------*/
h1
{
display:inline-block;
font-size: 2em;
line-height: 40px;
margin: -70px 48px 0;
font-weight: normal;
color: white;
z-index: 255;
position: relative;
}
h2
{
font-size: 1.5em;
line-height: 28px;
margin: 0;
font-weight: normal;
padding: 24px;
padding-bottom: 24px;
}
h3
{
font-size: 2.5em;
line-height: 20px;
margin: 0;
margin-bottom: 16px;
font-weight: normal;
color: #2C4BA6;
padding: 24px;
padding-top: 0;
text-align: center;
border-bottom: 1px solid #ccc;
}
/*---------- General ----------*/
p
{
font-size: 12px;
line-height: 16px;
margin: 0 0 0px 0;
color: #555;
padding: 8px;
padding-left: 24px;
}
dl {
font-size: 1.25em;
line-height: 2em;
margin: 0;
margin-top: 16px;
margin-bottom: 16px;
padding: 16px;
padding-left: 64px;
color: #555;
background-color: #ccc;
}
ul
{
margin: 0;
padding: 0;
color: #555;
padding: 8px;
padding-left: 64px;
}
a
{
color: #2B5FB3;
text-decoration: none;
}
table {
margin: 0 auto;
margin-top: 24px;
width: 75%;
padding: 24px;
border-collapse: collapse;
font-size: 1.25em;
}
tr {
outline:0;
border:0;
}
tr:hover td {
background: white;
}
th {
text-align:left;
font-size:.75em;
padding-right:20px;
padding-left: 24px;
}
/* 2nd Column: Filename */
th + th {
width:65%;
}
/* 3rd Column: Last Modified */
th + th + th {
width: 25%;
}
/* 4th Column: Size */
th + th + th + th {
width: 25%;
}
tr td:first-of-type {
padding-left:10px;
padding-right:10px;
}
td {
padding:5px 0;
outline:0;
border:0;
border-bottom:1px solid #ccc;
vertical-align:middle;
text-align:left;
-webkit-transition:background 300ms ease;
-moz-transition:background 300ms ease;
-ms-transition:background 300ms ease;
-o-transition:background 300ms ease;
transition:background 300ms ease;
}
td a{
display: block;
}
tr.parent a[href^="/"] {
color:#9099A3;
}
.parent a[href^="/"]:hover {
color:#2281d0;
}
/*---------- Site specific styles ----------*/
#pageWrapper
{
background: white;
margin: 0;
padding:0 0 0px;
}
#header
{
margin: 0;
margin-top: -24px;
margin-left: -24px;
margin-right: -24px;
background: #2B5FB3;
height: 68px;
position: relative;
padding: 16px;
background: linear-gradient(45deg, #005dc1 0%,#a400ba 100%);
background-size: 100% auto;
}
#header a
{
width: 166px;
height: 64px;
float: right;
background: url("lubuntu-logo.png");
background-repeat: no-repeat;
margin: 8px 16px 0 0;
padding-right: 48px;
}
#main
{
margin: 0px 0px 0 0px;
border: 1px solid #ccc;
background: #EDEDED;
position: relative;
margin-top: 64px;
margin-left: 50px;
margin-right: 64px;
border-radius: 8px;
}
address {
color: #888;
padding: 16px;
text-align: right;
}
hr {
border-top: 1px solid #ccc;
border-bottom: none;
border-left: none;
border-right: none;
display: none;
}
pre
{
overflow-y:auto;
}
.urgent
{
color:red;
}2C4BA6