Adjust styling
This commit is contained in:
parent
ac112ca69c
commit
18f7c91c35
|
|
@ -1,6 +1,8 @@
|
|||
// Initially from
|
||||
// http://meyerweb.com/eric/tools/css/reset/
|
||||
// v2.0 | 20110126
|
||||
// License: none (public domain)
|
||||
// adjusted by Ramon Wenger
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
|
|
@ -33,6 +35,7 @@ body {
|
|||
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
|
|
@ -49,3 +52,8 @@ table {
|
|||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,19 @@
|
|||
@import "variables";
|
||||
|
||||
* {
|
||||
font-family: $font-family;
|
||||
font-size: $base-font-size;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-family: $sans-serif-font-family;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
p, a {
|
||||
font-family: $serif-font-family;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 5rem;
|
||||
font-weight: 800;
|
||||
|
|
@ -12,3 +21,14 @@ h1 {
|
|||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
$grey-1: #333333;;
|
||||
$grey-2: #A1A1A1;
|
||||
$grey-3: #F3F3F3;
|
||||
|
||||
$header-color: $grey-1;
|
||||
$intro-color: $grey-2;
|
||||
|
||||
$font-family: 'Montserrat', Arial, sans-serif;
|
||||
$sans-serif-font-family: 'Montserrat', Arial, sans-serif;
|
||||
$serif-font-family: "ff-meta-serif-web-pro", serif;
|
||||
$base-font-size: 14px;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -7,18 +7,6 @@
|
|||
@import "typography";
|
||||
@import "variables";
|
||||
|
||||
body {
|
||||
font-family: $font-family;
|
||||
font-size: $base-font-size;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
//todo: move
|
||||
.container {
|
||||
|
|
@ -43,6 +31,7 @@ a {
|
|||
color: #17A887;
|
||||
font-size: 36px;
|
||||
font-weight: 800;
|
||||
font-family: $sans-serif-font-family;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
|
|
|
|||
Loading…
Reference in New Issue