-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (68 loc) · 1.38 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
89
90
91
/*
* Light and Shite
* The MIT License (MIT)
* Copyright (c) 2018 Alex Johnstone
*/
/* Formatting */
body{
font: 1.2em/1.62em sans-serif;
margin: 1em auto;
max-width: 48em;
padding: 0.62em;
line-height: 1.5;
}
h1,h2,h3 { line-height:1.2em; }
/* use div id="content" */
#content { text-align: justify; }
/* Hyperlink colors */
a { text-decoration: none; }
a:link { color: #009966; }
a:visited { color: #009966; }
a:hover { color: #000000; }
a:active { color: #009966; }
/* Code Blocks */
code,
pre {
background: #eee;
max-width: 100%;
}
code {
padding: 2px 2px;
vertical-align: text-bottom;
}
pre {
padding: 1em;
border-left: 2px solid #009966;
overflow: auto;
word-wrap: normal;
white-space: pre;
}
/* Footer */
/* Use div id="footer" */
#footer {
font-size: 0.75em;
text-align: center;
margin-top: 4em;
}
/* Make it responsive */
@media print{ body{ max-width:none } }
img {
max-width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto
}
/* Nav bar */
.nav { margin-bottom: 20px; font: }
.nav .navbar-list {
padding: 0 0;
text-align: center;
}
.nav .navbar-list li {
display: inline-block;
vertical-align: top;
font-size: 1.62em;
margin-right: 6px;
padding: 10px 20px;
}