mirror of https://github.com/ThmmyNoLife/mTHMMY
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
447 B
42 lines
447 B
6 years ago
|
// Global styling
|
||
|
html,
|
||
|
body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
@include body-font;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $theme-primary;
|
||
|
@include transition-all;
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: darken($theme-primary, 10%);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4,
|
||
|
h5,
|
||
|
h6 {
|
||
|
@include heading-font;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 18px;
|
||
|
line-height: 1.5;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
section {
|
||
|
padding: 100px 0;
|
||
|
h2 {
|
||
|
font-size: 50px;
|
||
|
}
|
||
|
}
|