-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (70 loc) · 1.34 KB
/
style.css
File metadata and controls
86 lines (70 loc) · 1.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body * {
font-family: Menlo, Consolas, Monaco, "Lucida Console", monospace;
}
body {
background-image: url('./bg.png'); /* by Subtle Patterns (http://subtlepatterns.com/) licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. */
}
h1, h2, h3, h4, h5, h6 {
text-rendering: optimizelegibility;
margin-bottom: 1em;
font-weight: bold;
}
h1 {
text-align: center;
font-size: 40px;
}
h2 {
font-size: 23px;
}
h3 {
font-size: 17px;
}
#parsedBox, #header {
width: 80%;
min-width: 400px;
background-color:white;
box-shadow: 0px 0px 12px 0px #000000;
-webkit-box-shadow: 0px 0px 12px 0px #000000;
margin: 25px auto;
padding: 5px 25px 45px 25px;
border-radius: 2px;
}
#header h2 {
font-size: 14px;
margin-top: -20px;
text-align: center;
}
#parsedBox {
padding-top: 25px;
}
#parsedBox * {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#parsedBox a:hover {
text-decoration: none;
}
#parsedBox small {
margin-left: 15px;
font-size: 12px;
vertical-align: middle;
}
#parsedBox li {
list-style: disc;
}
#parsed.markdown {
white-space: pre;
word-wrap: break-word;
}
#expmode, #files {
margin-left: 15px;
display: inline-block;
}
#expmode span, #files span {
margin-left: 0px;
font-size: 10px;
padding: 5px;
}
#footer {
margin-top: 35px;
margin-bottom: 0px;
}