-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·61 lines (60 loc) · 924 Bytes
/
Copy pathmain.css
File metadata and controls
executable file
·61 lines (60 loc) · 924 Bytes
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
body {
background-color: #eeeeee;
font-family: Verdana, Arial, sans-serif;
font-size: 90%;
margin: 4em 0;
}
article,
footer {
display: block;
margin: 0 auto;
width: 480px;
}
a {
color: #004466;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: #666666;
}
article {
background-color: #ffffff;
border: #cccccc solid 1px;
-moz-border-radius: 11px;
-webkit-border-radius: 11px;
border-radius: 11px;
padding: 0 1em;
width: 90%;
}
h1 {
font-size: 140%;
}
ol {
line-height: 1.4em;
list-style-type: disc;
}
li.directory a:before {
content: '[ ';
}
li.directory a:after {
content: ' ]';
}
footer {
font-size: 70%;
text-align: center;
}
p.capitalize {
text-transform: capitalize;
}
p {
color: #004466;
}
.static {
position: static;
}
.nonstatic {
position: relative;
}