summaryrefslogtreecommitdiff
path: root/_sass/_base.scss
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
committerBen Burwell <ben@benburwell.com>2015-03-30 02:46:14 -0400
commit2b59a0f8355ae8b4bf71cf5c2a365de91f5ebe1b (patch)
treebaaeeeccef58a402b328b1abbdd667dca7e6b5f7 /_sass/_base.scss
parent475275e0bb1d7e494ff3579595bf0e8dcda8474a (diff)
redesign
Diffstat (limited to '_sass/_base.scss')
-rw-r--r--_sass/_base.scss66
1 files changed, 66 insertions, 0 deletions
diff --git a/_sass/_base.scss b/_sass/_base.scss
new file mode 100644
index 0000000..1304fef
--- /dev/null
+++ b/_sass/_base.scss
@@ -0,0 +1,66 @@
+html {
+ font-size: 20px;
+}
+
+body {
+ font-family: $serif;
+ font-weight: normal;
+ font-size: 20px;
+ margin: 0;
+ padding: 0;
+}
+
+article, aside, p {
+ display: block;
+ margin: 0;
+ padding: 0;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ margin: 0;
+ padding: 0;
+}
+
+strong {
+ font-weight: bold;
+}
+
+em {
+ font-style: italic;
+}
+
+pre, code, kbd {
+ font-family: $monospace;
+}
+
+pre {
+ margin-left: 1rem;
+ margin-right: 1rem;
+}
+
+a {
+ text-decoration: none;
+ background: transparent;
+ color: inherit;
+ cursor: pointer;
+}
+
+time {
+ display: inline;
+}
+
+hr {
+ border-width: 1px;
+ border-color: $gray;
+ border-style: dotted none none none;
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+}
+
+ul, ol {
+ margin: 0;
+}
+
+li {
+ margin: 1rem;
+}