1
0
Fork 0
mirror of https://github.com/GuerillaStudio/now-playing synced 2024-11-13 06:31:52 +00:00
now-playing/assets/scss/2-helpers/_text.scss
Tixie b7935f078d
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Replace static font Source Sans Pro by Source Sans Variable
2024-11-09 04:43:53 +01:00

49 lines
744 B
SCSS

/* ----------------------------------------------------------- */
/* == text */
/* ----------------------------------------------------------- */
.bold {
font-weight: 700;
}
.semibold {
font-weight: 600;
}
.italic {
font-style: italic;
}
/* font size
-------------------------------------------------------------- */
.txtsmaller {
@include flow($base-font - 4);
}
.txtsmall {
@include flow($base-font - 2);
}
.txtbig {
@include flow($base-font + 2);
}
.txtbigger {
@include flow($base-font + 4);
}
/* transformations
-------------------------------------------------------------- */
.uppercase {
text-transform: uppercase;;
}
.capitalize {
text-transform: capitalize;
}
.lowercase {
text-transform: lowercase;
}