-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (58 loc) · 872 Bytes
/
styles.css
File metadata and controls
70 lines (58 loc) · 872 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
html, body {
margin:0;
font-family: sans-serif;
background:#ddd;
color:#111;
font-size:12pt;
}
#main {
width:600px;
margin:0 auto;
background:#fff;
padding:20px;
box-shadow: 0 -20px 20px #888;
}
h1,h2,h3,p,ul,ol {
margin: 0 0 20px 0;
}
h1 {
text-align:center;
padding:20px;
background:#048;
color:#fff;
}
h2 {
padding-bottom:10px;
border-bottom:1px dashed #888;
}
pre {
display:block;
background:#111;
color:#eee;
padding:20px;
margin: 0 0 20px 0;
}
.red {
color:#f00;
}
.blue {
color:#00f;
}
.green {
color:#0e0;
}
.purple {
color:#d0d;
}
.pseudo-alert {
padding:20px;
border:2px dotted #800;
background:#fdd;
border-radius:10px;
}
.pseudo-free {
padding:20px;
border:2px dotted #080;
background:#dfd;
border-radius:10px;
}