34 lines
409 B
SCSS
34 lines
409 B
SCSS
.uppercase,
|
|
.upper {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.lowercase,
|
|
.lower {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.titlecase,
|
|
.capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
@mixin textbox {
|
|
background-color: $white;
|
|
padding: $size-16 $size-32;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.colour-highlight {
|
|
color: $highlight !important;
|
|
}
|