church-website/src/components/Title/styles.module.scss
2024-12-03 12:04:02 +01:00

75 lines
No EOL
799 B
SCSS

@import "template.scss";
.title {
margin-top: 20px;
margin-bottom: 0.5em;
line-height: 1em;
}
.subtitle {
position: relative;
top: -30px;
}
.base {
color: $base-color;
}
.contrast {
color: $contrast-color;
}
.white {
color: $shade3;
}
.extraLarge {
font-size: 90px;
font-weight: 800;
}
.large {
font-size: 60px;
font-weight: 800;
}
.medium {
font-size: 40px;
font-weight: 700;
}
.small {
font-size: 25px;
font-weight: 700;
margin: 10px 0 5px 0;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.cancelled {
text-decoration: line-through;
}
@media screen and (max-width: 576px) {
.extraLarge {
font-size: 60px;
}
.large {
font-size: 40px;
}
.medium {
font-size: 24px;
}
.small {
font-size: 20px;
}
}