-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
96 lines (77 loc) · 1.11 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
body {
max-width: 48em;
margin: auto;
padding: 1em 0;
}
header h1 {
display: none;
}
h2 {
margin-top: 1.5em;
border-bottom: 1px solid;
}
header img {
display: block;
margin: auto;
}
dt {
font-weight: bold;
margin: 0.5em 0;
}
dd ul {
margin: 0;
padding: 0;
}
#sessions dt {
margin-bottom: 0;
}
#sessions dd {
border: 1px solid;
margin: 0;
padding: 10px 40px;
}
#sessions dd + dt {
margin-top: 1em;
}
#archives li {
list-style-type: none;
display: inline-block;
}
/**
* color scheme
*/
.nerd {
font-family: monospace;
font-size: 14px;
background-color: #da7;
color: #111;
}
.nerd a,
.nerd a:visited {
color: #266;
text-decoration: underline;
}
.nerd a:hover {
color: #288;
text-decoration: underline;
}
.nerd #sessions dt {
color: #266;
}
.nerd #sessions dd {
background-color: #e95;
border-color: #966;
color: #222;
}
/**
* Media queries for mobile
*/
@media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
#fork-me {
display: none;
}
header img {
max-width: 100%;
height: auto;
}
}