1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-03 20:57:57 +00:00
now-playing/assets/scss/2-helpers/_text.scss
2023-02-20 02:08:02 +01:00

50 lines
745 B
SCSS

/* ----------------------------------------------------------- */
/* == text */
/* ----------------------------------------------------------- */
.bold {
font-weight: bold;
}
.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;
}