forked from rougier/CPP-Crash-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
70 lines (60 loc) · 1.19 KB
/
stylesheet.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
@import url("pygment.css");
pre.code {
margin: 0;
margin-left: 20px;
padding: 10px;
line-height: 1.1em;
background-color: #f9f9f9;
border: 1px solid #ccc;
display:inline-block;
min-width: 50%;
}
body {
font-family: sans-serif;
width: 1000px;
padding: 10px;
margin: 0 auto;
font-size: 1.0em;
line-height: 1.25em;
color: #282828;
}
a {
color: purple;
text-decoration: none;
}
h1, h2, h3 {
font-family: "Gill Sans", "Trebuchet MS", Calibri, sans-serif;
font-weight: 400;
}
h1 {
font-family: "Gill Sans", "Trebuchet MS", Calibri, sans-serif;
font-size: 150%;
font-weight: 400;
color: #fff;
background-color: #bbbbff;
line-height: 1.em;
padding: 8px;
border-radius: 5px;
margin-top: 3em;
}
h1.title {
margin-top: 1em;
margin-bottom: 0em;
font-size: 250%;
color: #000000;
background: #ffffff;
border-radius: 0;
}
h2 {
font-family: "Gill Sans", "Trebuchet MS", Calibri, sans-serif;
font-size: 125%;
font-weight: 400;
border-left: 5px solid #ddddff;
line-height: 1.em;
padding: 4px;
}
th {
text-align:left;
padding-right: .5em;
padding-left: .5em;
}