-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpost.css
More file actions
72 lines (60 loc) · 1.28 KB
/
post.css
File metadata and controls
72 lines (60 loc) · 1.28 KB
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
html {
background-color: #ddd;
color: #46483E;
font-family: 'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
max-width: 40em;
margin: 0 auto;
font-size: 12pt;
}
body { padding: 20px 20px 100px 20px; margin: 0; }
a { color: #46483E; }
p { line-height: 1.4em; margin: 0 0 1em 0; }
li { line-height: 1.2em; }
h1, h2 {
margin: 2em 0 0.5em -30px;
border-left: 20px #ccc solid;
padding-left: 10px;
}
code {
padding: 2px 3px;
font-size: 0.9em;
border: 1px #aaa solid;
border-radius: 2px;
background-color: #eee;
}
pre {
padding: 10px;
margin: 0 0 1em 0;
border-radius: 5px;
overflow: auto;
font-family: 'Droid Sans Mono', monospace;
}
pre code { border: 0 none; padding: 0; }
#header { text-align: center; }
#header img { height: 150px; }
#next { margin-top: 50px; }
#next .completed {
text-align: center;
background-color: #c6c6c6;
border-radius: 5px;
padding: 10px 20px;
}
#next a {
display: block;
text-align: center;
text-decoration: none;
background-color: #ccc;
border-radius: 5px;
padding: 10px 20px;
}
#next a:hover { background-color: #bbb; }
#next a:active { background-color: #3f3f3f; color: #ddd; }
#next a span {
display: block;
padding-top: 5px;
}
#footer {
margin-top: 10px;
color: #333;
padding: 10px;
}