-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (61 loc) · 1013 Bytes
/
styles.css
File metadata and controls
73 lines (61 loc) · 1013 Bytes
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
html {
height: 100%;
}
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica;
background-color: #eee;
}
header {
background-color: #FC5858;
border-top: 1px solid black;
border-bottom: 3px solid #AF3D3D;
padding: 0 5em;
text-shadow: 1px 1px 4px white;
}
article {
padding: 2em 2em;
max-width: 70em;
margin: 0 auto;
background-color: white;
}
article::after {
display: block;
content: "";
clear: both;
}
aside {
float: right;
max-width: 30em;
text-align: justify;
margin-left: 1em;
}
em {
color: #AF3D3D;
}
dl {
margin: 0 3em;
}
dt {
font-weight: bold;
}
.debugarea {
border-top: 2px solid #AF3D3D;
margin: 3em 0 0 0;
}
.debugarea textarea {
display: block;
height: 30em;
width: 100%;
box-sizing: border-box;
}
.debugarea.hidden textarea {
display: none;
}
pre {
background-color: #333;
color: white;
font-family: monospace;
font-size: 110%;
padding: 1em;
}