papercss/src/fonts.scss
2017-12-18 23:23:30 +01:00

49 lines
825 B
SCSS

@import './colors.less';
@import url('https://fonts.googleapis.com/css?family=Neucha|Patrick+Hand+SC');
$global-font-size: 20px;
$header-font: 'Patrick Hand SC';
$body-font: 'Neucha';
$font-color: $primary;
html {
font-size: $global-font-size;
font-family: $body-font, sans-serif;
color: $font-color;
}
p, a, button, table, thead, tbody, th, tr, td, input, textarea, select, option {
font-family: $body-font, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: $header-font, sans-serif;
font-weight: normal;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 3rem;
}
h3 {
font-size: 2rem;
}
h4 {
font-size: 1.5rem;
}
h5 {
font-size: 1rem;
}
h6 {
font-size: .8rem;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}