1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-06 11:17:57 +00:00
now-playing/assets/scss/2-helpers/_text.scss

50 lines
745 B
SCSS
Raw Normal View History

2019-11-27 17:06:26 +00:00
/* ----------------------------------------------------------- */
/* == text */
/* ----------------------------------------------------------- */
.bold {
font-weight: bold;
}
2023-02-20 01:08:02 +00:00
.semibold {
font-weight: 600;
}
2019-11-27 17:06:26 +00:00
.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;
}