guide.deuxfleurs.fr/sass/_text.scss

51 lines
1.0 KiB
SCSS
Raw Permalink Normal View History

2022-05-10 15:52:28 +00:00
.heading-text {
font-family: "Fira Sans", sans-serif;
2022-12-21 23:07:05 +00:00
font-size: 2em;
2022-05-10 15:52:28 +00:00
font-weight: 600;
2022-12-21 23:07:05 +00:00
line-height: 1.2em;
2022-05-10 15:52:28 +00:00
padding: 10px 0 25px 0;
2022-05-11 15:53:45 +00:00
color: var(--secondary-text-color);
2022-05-10 15:52:28 +00:00
}
h1, .title-text {
font-family: "Fira Sans", sans-serif;
2022-12-21 23:07:05 +00:00
font-size: 1.8em;
line-height: 1.2em;
2022-05-10 15:52:28 +00:00
font-weight: 500;
2022-05-11 15:53:45 +00:00
color: var(--secondary-text-color);
2022-05-10 15:52:28 +00:00
border-left: var(--primary-color) 8px solid;
padding-left: 10px;
}
2022-05-12 16:00:40 +00:00
h2, .title-text {
font-family: "Fira Sans", sans-serif;
2022-12-21 23:07:05 +00:00
font-size: 1.5em;
2022-05-12 16:00:40 +00:00
font-weight: 500;
color: var(--secondary-text-color);
border-left: #aaa 8px solid;
padding-left: 10px;
}
h3, .subtitle-text {
2022-05-10 15:52:28 +00:00
font-family: "Fira Sans", sans-serif;
2022-12-21 23:07:05 +00:00
font-size: 1.3em;
2022-05-10 15:52:28 +00:00
font-weight: 500;
2022-05-11 15:53:45 +00:00
color: var(--secondary-text-color);
2022-05-10 15:52:28 +00:00
}
.text {
font-family: "Fira Sans", sans-serif;
2022-12-21 23:07:05 +00:00
font-size: 16px;
2022-05-10 15:52:28 +00:00
font-weight: 400;
line-height: 26px;
letter-spacing: 0.2px;
2022-05-11 15:53:45 +00:00
color: var(--secondary-text-color);
2022-05-10 15:52:28 +00:00
}
.subtext {
font-family: "Fira Sans", sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.1px;
2022-05-11 15:53:45 +00:00
}