mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-09 17:51:52 +00:00
45 lines
710 B
SCSS
45 lines
710 B
SCSS
/* ----------------------------------------------------------- */
|
|
/* == text */
|
|
/* ----------------------------------------------------------- */
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.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;
|
|
}
|