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

72 lines
933 B
SCSS
Raw Normal View History

2021-11-30 18:27:50 +01:00
body {
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $title_font;
color: $primary_color;
}
2020-04-21 10:50:26 +02:00
2021-11-30 18:27:50 +01:00
h1 {
font-family: $title_font;
2021-12-06 12:20:00 +01:00
2021-11-30 18:27:50 +01:00
&::after {
background-color: $primary_color;
height: 2px;
}
2020-04-21 10:50:26 +02:00
}
2021-11-30 18:27:50 +01:00
h2 {
font-family: $title_font;
font-size: 1.75rem;
font-weight: 600;
line-height: 2rem;
margin-bottom: 2rem;
}
2020-04-21 10:50:26 +02:00
2021-11-30 18:27:50 +01:00
h3 {
font-family: $title_font;
2022-02-02 16:28:52 +01:00
font-size: 32px;
line-height: 36.8px;
2021-11-30 18:27:50 +01:00
}
2020-04-21 10:50:26 +02:00
2021-11-30 18:27:50 +01:00
h4 {
font-family: $title_font;
}
2021-05-18 10:47:16 +02:00
2021-12-06 12:20:00 +01:00
.p-dialog {
font-family: $title_font !important;
2021-12-17 15:04:13 +01:00
max-width: $widescreen-width-main-column;
2021-12-06 12:20:00 +01:00
.p-dialog-header {
color: $primary_color !important;
.p-dialog-title {
font-size: 2rem;
}
}
2021-12-17 12:13:34 +01:00
.p-dialog-content {
padding: 1rem 2rem;
.title {
color: $secondary_color !important;
}
}
.p-dialog-footer {
padding: 3rem 2.5rem;
}
2021-12-06 12:20:00 +01:00
}
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;
}
2021-05-20 10:54:28 +02:00
}