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.scss63
1 files changed, 0 insertions, 63 deletions
diff --git a/_sass/tiny/_base.scss b/_sass/tiny/_base.scss
deleted file mode 100644
index 667adea..0000000
--- a/_sass/tiny/_base.scss
+++ /dev/null
@@ -1,63 +0,0 @@
-* {
- 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: 5px 15px;
- display: inline-block;
-
- &:active,
- &:hover {
- text-decoration: none;
- }
- }
-}