-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
61 lines (50 loc) · 816 Bytes
/
styles.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
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
.dark-theme {
background-color: #333;
color: #fff;
}
.dark-theme a {
color: #A2C7EC;
}
body {
display: grid;
font-family: 'Merriweather', serif;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: repeat(3, 1fr);
}
body.wide {
grid-template-columns: 1fr 4fr 1fr;
}
nav {
grid-area: 2 / 2 / 3 / 3;
text-align: center;
align-self: center;
}
nav h1 {
font-family: 'Lato', sans-serif;
font-size: 2em;
white-space: nowrap;
}
nav ul {
padding: 0;
}
nav li {
display: inline-block;
list-style: none;
margin: 1ex;
}
nav li:last-of-type {
display: block;
}
code#runkit {
font-family: "Ubuntu Mono", monospace;
font-size: 15px;
}