-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
116 lines (91 loc) · 1.37 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
.jumbotron {
color: white;
background: #1F1528;
}
html {
position: relative;
min-height: 100%;
}
body {
padding-top: 50px; /* leave space for fixed navbar */
margin-bottom: 40px; /* leave space for footer */
}
footer {
color: white;
background: #222222;
padding-top: 8px;
}
footer a:link, a:visited {
color: #9D9D9D;
}
footer a:hover {
text-decoration: none;
color: white;
}
h1 {
font-family: 'Raleway';
font-weight: 800;
text-shadow: 2px 2px 4px #aaa;
}
h2 {
font-family: 'Raleway';
font-weight: 600;
text-shadow: 1px 1px 2px #aaa;
}
h3 {
font-family: 'Raleway';
}
.os-logo img {
width: 5em;
height: 5em;
margin-right: 2em;
}
.os-faded img {
opacity: 0.3;
}
.os-choose img {
opacity: 0.8;
}
.os-choose:hover img {
opacity: 1.0;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
}
ol {
counter-reset: item;
}
ol > li {
counter-increment: item;
margin-top: 10px;
}
ol ol > li {
display: block;
}
ol ol > li:before {
content: counters(item,".") ". ";
margin-left: -20px;
}
ul ul > li:last-child {
margin-bottom: 10px;
}
#TOC li {
margin: 0px;
}
.breadcrumb {
padding-left: 20px;
padding-bottom: 15px;
}
.btn {
font-family: 'Raleway';
font-weight: 600;
}
.btn-lg {
font-weight: 800;
}
/* missing from bootstrap-3.7 */
.embed-responsive-1by1 {
padding-bottom: 100%;
}