aboutsummaryrefslogtreecommitdiff
path: root/assets/css/base/reset.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/base/reset.css')
-rw-r--r--assets/css/base/reset.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/assets/css/base/reset.css b/assets/css/base/reset.css
new file mode 100644
index 0000000..8e0f0f3
--- /dev/null
+++ b/assets/css/base/reset.css
@@ -0,0 +1,34 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ font-family: 'PT Serif', serif;
+ font-size: 18px;
+ line-height: 30px;
+ color: var(--grey-555);
+ background: var(--body-bg);
+}
+
+header,
+nav,
+section,
+main,
+article,
+aside,
+figure,
+footer,
+iframe,
+object,
+svg {
+ display: block;
+ margin: 0;
+}
+
+@media screen and (max-width: 800px) {
+ body {
+ padding: 80px 0 0;
+ }
+}