gcg-website/assets/scss/_typography.scss

71 lines
1.0 KiB
SCSS
Raw Normal View History

2022-03-18 13:35:57 +01:00
/* typography */
2023-03-26 16:52:05 +02:00
@import url('https://assets.cantorgymnasium.de/fonts/fira/fira.css');
2022-03-18 13:35:57 +01:00
body {
line-height: 1.2;
2023-06-09 20:35:28 +02:00
font-family: var(--gcg-font-primary);
2022-03-18 13:35:57 +01:00
-webkit-font-smoothing: antialiased;
font-size: 15px;
2023-06-09 20:35:28 +02:00
color: var(--bs-secondary-color);
2022-03-18 13:35:57 +01:00
}
p, .paragraph {
font-weight: 400;
2023-06-09 20:35:28 +02:00
color: var(--bs-secondary-color);
2022-03-18 13:35:57 +01:00
font-size: 15px;
line-height: 1.9;
2023-06-09 20:35:28 +02:00
font-family: var(--gcg-font-primary);
}
.text-white p {
color: inherit;
2022-03-18 13:35:57 +01:00
}
h1,h2,h3,h4,h5,h6 {
2023-06-09 20:35:28 +02:00
color: var(--gcg-color-secondary);
font-family: var(--gcg-font-header);
2022-03-18 13:35:57 +01:00
font-weight: 900;
line-height: 1.2;
}
h1, .h1{
font-size: 60px;
@include mobile {
font-size: 45px;
}
}
h2, .h2{
2023-02-09 12:29:38 +01:00
font-size: 35px;
2022-03-18 13:35:57 +01:00
@include mobile {
font-size: 30px;
}
}
h3, .h3{
font-size: 25px;
@include mobile {
font-size: 20px;
}
}
h4, .h4{
font-size: 20px;
@include mobile {
font-size: 18px;
}
}
h5, .h5{
font-size: 18px;
@include mobile {
font-size: 16px;
}
}
h6, .h6{
font-size: 16px;
@include mobile {
font-size: 14px;
}
}