-
Notifications
You must be signed in to change notification settings - Fork 4
/
css.css
142 lines (117 loc) · 1.85 KB
/
css.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
body{
font-family: Georgia, serif;
font-size: 1.4em;
line-height: 1.8em;
margin: 1em auto;
padding: 0;
background: #efefef;
}
h1 {
font-family: Georgia, serif;
font-size: 1.4em;
}
.box {
margin: 15px 0;
background: white;
border: 0px solid #222;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
overflow: hidden;
}
p {
padding: 15px;
margin: 0;
}
.box:hover p {
display: block;
}
dl{
display:block;
overflow: hidden;
margin-bottom: 2em;
}
dt a{
display:block;
font-weight:bold;
}
dt{
clear: left;
float: left;
width: 230px;
margin: 0;
padding: 5px;
border-top: 1px solid #999;
color: #666;
}
dd{
float: left;
width: 330px;
margin: 0;
padding: 5px;
border-top: 1px solid #999;
}
ol {list-style-type: decimal;}
ol ol {list-style-type: upper-roman;}
ol ol ol {list-style-type: lower-roman;}
ol ol ol ol {list-style-type: lower-latin;}
ol ol ol ol ol {list-style-type: lower-greek;}
footer{
border-top: 1px solid #999;
text-align:right;
}
footer img.github{
height: 18px;
opacity: 0.5;
}
footer a:hover img{
opacity: 1 !important;
}
canvas{
border-top:1px solid #999;margin:20px auto 0;display:block;
}
code{
background: #ccc;
font-family:monospace;
display:block;
margin: 10px 0;
padding: 10px;
border-radius:5px;
}
code.inline{
display:inline;
margin: 0 5px;
padding: 5px;
}
.item{
padding-top: 50px;
margin-bottom: 30px;
}
.image{
position: relative;
width: 100%;
}
.image img{
display:block;
width: 100%;
height: 100%;
}
.image h2{
margin: 0;
font-family: sans-serif;
bottom: 0;
left: 0;
width: auto;
padding: 15px;
background: #222;
color: white;
font-size: 20px;
}
.image a:hover {
text-decoration: none;
}
.col-sm-3 h2 {
font-size: 16px;
}
.description{
padding:20px;
}