74 lines
960 B
SCSS
74 lines
960 B
SCSS
@import "./variables";
|
|
|
|
/* Headings */
|
|
|
|
.text-h1, h1 {
|
|
font-size: 2.3rem;
|
|
}
|
|
.text-h2, h2 {
|
|
font-size: 2.25rem;
|
|
}
|
|
.text-h3, h3 {
|
|
font-size: 2rem;
|
|
}
|
|
.text-h4, h4 {
|
|
font-size: 1.6rem;
|
|
}
|
|
.text-h5, h5 {
|
|
font-size: 1.3rem;
|
|
}
|
|
.text-h6, h6 {
|
|
font-size: 1.125rem;
|
|
}
|
|
.text-subtitle1 {
|
|
font-size: 1.06rem;
|
|
}
|
|
.text-subtitle2 {
|
|
font-size: 1rem;
|
|
}
|
|
.text-body1 {
|
|
font-size: .875rem;
|
|
}
|
|
.text-body2 {
|
|
font-size: .875rem;
|
|
}
|
|
.text-caption {
|
|
font-size: .875rem;
|
|
}
|
|
.text-overline {
|
|
font-size: .8rem;
|
|
}
|
|
.text-capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
padding: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/* Colors */
|
|
|
|
.text-primary {
|
|
color: $color-main;
|
|
}
|
|
.text-secondary {
|
|
color: $color-font-light;
|
|
}
|
|
|
|
/* Helpers */
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
.text-left {
|
|
text-align: left;
|
|
}
|