aboutsummaryrefslogtreecommitdiff
path: root/assets/site.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/site.css')
-rw-r--r--assets/site.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/assets/site.css b/assets/site.css
new file mode 100644
index 0000000..6c54a11
--- /dev/null
+++ b/assets/site.css
@@ -0,0 +1,64 @@
1html,
2body {
3 margin: 0;
4 padding: 0;
5}
6
7body {
8 font-family: 'Times New Roman', Times, serif;
9 font-size: 1em;
10}
11
12article,
13main,
14footer,
15header {
16 max-width: 800px;
17 margin: 0 auto;
18}
19
20h1 {
21 font-size: 200%;
22}
23
24h2 {
25 font-size: 180%;
26}
27
28h3 {
29 font-size: 160%;
30}
31
32h4 {
33 font-size: 140%;
34}
35
36h5 {
37 font-size: 120%;
38}
39
40h6 {
41 font-size: 100%;
42}
43
44.highlighter-rouge {
45 border: 1px solid #ddd;
46 padding: 0 10px;
47}
48
49@media only screen and (max-width:768px) {
50 body {
51 padding: 0 20px
52 }
53 footer,
54 header,
55 nav {
56 text-align: center
57 }
58}
59
60@media print {
61 body {
62 padding: 50px auto
63 }
64}