aboutsummaryrefslogtreecommitdiff
path: root/assets/_sass/base/_reset.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/_sass/base/_reset.scss')
-rw-r--r--assets/_sass/base/_reset.scss35
1 files changed, 35 insertions, 0 deletions
diff --git a/assets/_sass/base/_reset.scss b/assets/_sass/base/_reset.scss
new file mode 100644
index 0000000..f896901
--- /dev/null
+++ b/assets/_sass/base/_reset.scss
@@ -0,0 +1,35 @@
+* {
+ box-sizing: border-box;
+ -moz-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;
+ }
+}