funky-framadate-front/src/styles/partials/_typo.scss

45 lines
451 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
@extend .title;
2021-11-26 11:49:51 +01:00
font-family: $title_font;
2020-04-21 10:50:26 +02:00
}
h1 {
@extend .is-1;
2021-11-26 11:49:51 +01:00
font-family: $title_font;
2020-04-21 10:50:26 +02:00
&::after {
background-color: $primary_color;
height: 2px;
}
}
h2 {
@extend .is-2;
2021-11-26 11:49:51 +01:00
font-family: $title_font;
2020-04-21 10:50:26 +02:00
}
h3 {
@extend .is-3;
2021-11-26 11:49:51 +01:00
font-family: $title_font;
2020-04-21 10:50:26 +02:00
}
h4 {
@extend .is-4;
2021-11-26 11:49:51 +01:00
font-family: $title_font;
2020-04-21 10:50:26 +02:00
}
2021-05-18 10:47:16 +02:00
.nobold {
font-weight: normal;
}
2021-05-20 10:54:28 +02:00
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}