summaryrefslogtreecommitdiff
path: root/_sass/tiny/_base.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/tiny/_base.scss')
-rw-r--r--_sass/tiny/_base.scss62
1 files changed, 62 insertions, 0 deletions
diff --git a/_sass/tiny/_base.scss b/_sass/tiny/_base.scss
new file mode 100644
index 0000000..ba6d78a
--- /dev/null
+++ b/_sass/tiny/_base.scss
@@ -0,0 +1,62 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ font-size: $base-font-size;
+ color: $base-color;
+}
+
+a {
+ color: $brand-color;
+ text-decoration: none;
+
+ &:hover,
+ &:active {
+ color: $alternate-color;
+ }
+}
+
+// Horizontal lines
+hr {
+ height: 0;
+ margin: 15px 0;
+ overflow: hidden;
+ background: transparent;
+ border: 0;
+ border-bottom: 1px solid $muted-color;
+ @include clearfix();
+}
+
+p {
+ line-height: 2em;
+}
+
+li {
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+pre {
+ line-height: 1.5em;
+}
+
+blockquote {
+ font-style: italic;
+}
+
+.main-header {
+ padding: 10px;
+ text-align: center;
+ font-family: $sans;
+ @include gradient(lighten($brand-color, 3%), darken($brand-color, 3%));
+ a {
+ color: white;
+ padding: 15px;
+
+ &:active,
+ &:hover {
+ text-decoration: none;
+ }
+ }
+}