papercss/src/content/_fonts.scss

69 lines
617 B
SCSS
Raw Permalink Normal View History

2017-12-19 17:52:33 +01:00
html {
2020-06-01 23:02:51 +02:00
@include color('color', 'primary');
2018-05-24 14:13:53 +02:00
font-family: $body-font, sans-serif;
font-size: $global-font-size;
2017-12-19 17:52:33 +01:00
}
2018-05-24 14:13:53 +02:00
p,
a,
button,
2021-12-18 15:35:17 +01:00
li,
2018-05-24 14:13:53 +02:00
table,
thead,
tbody,
th,
tr,
td,
input,
textarea,
select,
option {
2017-12-19 17:52:33 +01:00
font-family: $body-font, sans-serif;
}
2018-05-24 14:13:53 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
2017-12-19 17:52:33 +01:00
font-family: $header-font, sans-serif;
font-weight: normal;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h1 {
font-size: 4rem;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h2 {
font-size: 3rem;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h3 {
font-size: 2rem;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h4 {
font-size: 1.5rem;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h5 {
font-size: 1rem;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
h6 {
2018-05-24 14:13:53 +02:00
font-size: 0.8rem;
2017-12-19 17:52:33 +01:00
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
.text-left {
text-align: left;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
.text-center {
text-align: center;
}
2018-05-24 14:13:53 +02:00
2017-12-19 17:52:33 +01:00
.text-right {
text-align: right;
}