-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (71 loc) · 968 Bytes
/
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
/* */
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
* {
margin: 0;
padding 0;
}
body {
background: #f7f7f7;
font-family: 'Open Sans', sans-serif;
font-size: 95%;
}
code, pre {
font-family: Courier, monospace;
background-color: #f7f7f7;
margin: 10px 0;
padding: 3px;
}
pre {
padding: 10px;
}
ol, ul {
margin: 10px 0;
}
li {
padding: 5px 0;
}
.centered {
text-align: center;
}
#container {
width: 80%;
margin-left: 10%;
background: #fff;
padding: 40px 0 20px;
}
#main {
min-height: 700px;
padding: 0 20px 40px;
}
#footer {
font-size: 0.9em;
border-top: 1px solid #f7f7f7;
padding: 15px 20px 10px;
min-height: 100px;
}
/* Headers */
h1, h2, h3, h4 {
color: #121212;
padding: 5px 0 10px;
text-transform: uppercase;
}
h1 {
font-size: 2.3em;
}
h2 {
font-size: 2em;
}
h3 {
font-size: 1.6em;
}
h4 {
font-size: 1.4em;
}
/* Table */
table {
width: 80%;
}
th, th td {
background-color: #333;
color: #fff;
}