-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
93 lines (84 loc) · 1.44 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
body {
background-color: #96A8C8;
text-align: center;
font-size: 16px;
font-variant: small-caps;
font-family: Lucida,Helvetica,sans-serif;
font-weight: 500;
text-decoration: none;
position: absolute;
left: 50%;
width: 780px;
margin-left: -390px;
}
.box {
background: white;
border-style: solid;
border-width: 1.5px;
border-color: #071419;
border-radius: 12px;
-moz-border-radius: 12px;
margin-bottom: 5px;
}
a {
color: #96A8C8;
text-decoration: none;
font-weight: 800;
}
.source, img {
margin-bottom: 1em;
}
.controls {
margin: 20px 0;
}
#current_id {
font-variant: normal;
font-family: monospace;
}
.controls a, #current_id {
display: inline-block;
background-color: #6E7B91;
color: #FFF;
border: 1.5px solid #333;
font-size: 16px;
font-weight: 600;
padding: 1.5px 12px;
margin: 0 4px;
text-decoration: none;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 5px 0 gray;
-moz-box-shadow: 0 0 5px 0 gray;
-webkit-box-shadow: 0 0 5px 0 gray;
}
#current_id {
line-height: 1.5em;
}
.controls a:hover, #current_id {
background-color: #FFF;
color: #6E7B91;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
.footer {
max-width: 850px;
margin: auto;
font-size: 0.8em;
}
@media (max-width: 800px) {
body {
left: 0;
margin-left: 0;
width: 100%;
}
.box {
border-radius: 0;
border-width: 1.5px 0;
}
img {
width: calc(100% - 24px);
max-width: 634px;
}
}