-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (73 loc) · 1.15 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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-size: 104.5%;
}
.screen {
min-height: 100vh;
min-width: 90vw;
max-width: 90vw;
margin: 2vh 6vw 5vh 4vw;
}
.template {
display: none;
}
h2 {
margin-top: 0px;
margin-bottom: 0px;
}
li {
padding-bottom: 1.1em;
}
kbd {
display: inline-block;
font-family: monospace;
padding: 0.075em 0.3em 0em 0.3em;
margin: 0.1em 0;
background-color: #111;
border: thin solid #555;
border-radius: 3px;
color: #eee;
}
pre {
width: 99%;
padding: 1em;
white-space: pre-wrap;
word-wrap: break-word;
}
code {
display: inline-block;
font-family: 'Source Code Pro', 'Cutive Mono', Consolas, "Lucida Console", monospace;
padding: 0.075em 0.3em 0em 0.3em;
margin: 0.1em 0;
border: thin solid #333;
}
pre,
code {
background-color: #333;
color: #76FF7A;
}
a code {
color: #75baff;
}
img.ide-button {
max-height: 26px;
width: auto;
border: solid 2px #666;
}
.has-ide-button {
display: flex;
align-items: top;
margin: 2px auto;
}
.has-ide-button * {
margin: 1px 3px;
}
#dev-tools .has-ide-button {
margin: 9px auto;
}
.has-ide-button kbd {
max-height: 1.75em;
}