aboutsummaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html3
-rw-r--r--_includes/header.html3
-rw-r--r--_includes/site.css42
3 files changed, 48 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..dc281c6
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,3 @@
1<footer>
2 @@footer@@
3</footer>
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..7f5c53d
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,3 @@
1<header>
2 @@header@@
3</header>
diff --git a/_includes/site.css b/_includes/site.css
new file mode 100644
index 0000000..5b49c7f
--- /dev/null
+++ b/_includes/site.css
@@ -0,0 +1,42 @@
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}