blob: 6c54a11866c004297ccee89414fe1817e79de26c (
plain)
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
|
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: 'Times New Roman', Times, serif;
font-size: 1em;
}
article,
main,
footer,
header {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 200%;
}
h2 {
font-size: 180%;
}
h3 {
font-size: 160%;
}
h4 {
font-size: 140%;
}
h5 {
font-size: 120%;
}
h6 {
font-size: 100%;
}
.highlighter-rouge {
border: 1px solid #ddd;
padding: 0 10px;
}
@media only screen and (max-width:768px) {
body {
padding: 0 20px
}
footer,
header,
nav {
text-align: center
}
}
@media print {
body {
padding: 50px auto
}
}
|