-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.css
101 lines (88 loc) · 1.76 KB
/
main.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
/* Main CSS */
body {
margin: 0;
padding: 0;
background-color: #263238;
}
h1 {
font-family: "Anders";
text-align: center;
color:#E0E0E0;
margin: 150px auto;
text-shadow: 1px 2px rgba(0, 0, 0, 0.3);
}
.divider {
margin: 50px auto;
width: 250px;
border-bottom: dashed #37474F 1px;
}
a {
color: #2196F3;
}
h2 {
display: block;
margin: 75px auto;
margin-bottom: 25px;
width: 900px;
font-family: 'Lato', sans-serif;
font-weight: 100;
font-size: 36px;
color: #E0E0E0;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
h3 {
display: block;
margin: 75px auto;
margin-bottom: 25px;
width: 880px;
font-family: 'Lato', sans-serif;
font-weight: 100;
font-size: 30px;
color: #E0E0E0;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
.code, .output {
width: 850px;
margin: 25px auto;
display: block;
}
.output {
margin-top: -20px;
}
.output pre {
background: #272822;
color: #f8f8f2;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
padding: 1em;
border-radius: 0.3em;
font-size: 16px;
}
p {
display: block;
width: 800px;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color: #FFF;
margin: 25px auto;
line-height: 1.25;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}
p b {
display: inline-block;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-weight: 400;
background-color: #37474F;
padding: 1px 2px;
border-radius: 4px;
text-shadow: none;
}
.footer {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color: #E0E0E0;
font-size: 12px;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}