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

105 lines
1.6 KiB
SCSS
Raw Normal View History

2021-11-30 18:27:50 +01:00
body {
2022-03-10 12:00:31 +01:00
font-family: $default_font;
2021-11-30 18:27:50 +01:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $title_font;
2022-03-10 11:06:18 +01:00
color: $d-primary-intense;
2021-11-30 18:27:50 +01:00
}
2020-04-21 10:50:26 +02:00
2022-03-10 11:06:18 +01:00
.title {
&.is-1 {
color: $d-primary-intense;
font-weight: 700;
font-size: 32px;
line-height: 37px;
2022-03-10 16:37:17 +01:00
margin-bottom: 2rem;
2022-03-10 11:06:18 +01:00
}
&.is-2 {
color: $d-primary-intense;
font-size: 20px;
line-height: 23px;
margin-bottom: 1rem;
}
&.is-3 {
color: $d-primary-intense;
font-family: $title_font;
font-weight: 700;
2022-03-10 12:00:31 +01:00
font-style: normal;
font-size: 24px;
line-height: 28px;
2022-03-10 11:06:18 +01:00
margin-bottom: 1rem;
2021-11-30 18:27:50 +01:00
}
2020-04-21 10:50:26 +02:00
}
2022-03-10 11:06:18 +01:00
.is-1 {
color: $d-primary-intense;
font-weight: 700;
2022-02-02 16:28:52 +01:00
font-size: 32px;
2022-03-10 11:06:18 +01:00
line-height: 37px;
2022-03-10 16:37:17 +01:00
margin-bottom: 2rem;
2021-11-30 18:27:50 +01:00
}
2022-03-10 11:06:18 +01:00
.is-2 {
color: $d-primary-intense;
font-size: 28px;
line-height: 32px;
2022-03-10 11:06:18 +01:00
margin-bottom: 1rem;
}
.is-3 {
color: $d-primary-intense;
2021-11-30 18:27:50 +01:00
font-family: $title_font;
2022-03-10 11:06:18 +01:00
font-weight: 700;
2022-03-10 12:00:31 +01:00
font-style: normal;
font-size: 24px;
line-height: 28px;
2022-03-10 11:06:18 +01:00
margin-bottom: 1rem;
2021-11-30 18:27:50 +01:00
}
.is-4 {
color: $d-primary-intense;
font-family: $title_font;
font-weight: 700;
font-style: normal;
font-size: 24px;
line-height: 28px;
margin-bottom: 1rem;
}
.is-5 {
color: #383838;
font-family: $title_font;
font-weight: 700;
font-style: normal;
font-size: 20px;
line-height: 23px;
margin-bottom: 1rem;
}
.is-6 {
color: #383838;
font-family: $title_font;
font-weight: 700;
font-style: normal;
font-size: 16px;
line-height: 20px;
margin-bottom: 1rem;
}
2021-11-30 18:27:50 +01:00
.nobold {
font-weight: normal;
}
2021-05-20 10:54:28 +02:00
2021-11-30 18:27:50 +01:00
.text-right {
text-align: right;
}
2021-12-06 12:20:00 +01:00
2021-11-30 18:27:50 +01:00
.text-center {
text-align: center;
}
2022-02-09 11:30:22 +01:00
.icon-success {
fill: $success_color;
}
.has-text-danger {
color: red !important;
}
2021-05-20 10:54:28 +02:00
}