25 lines
381 B
SCSS
25 lines
381 B
SCSS
/* Standalone > Fonts & Text */
|
|
|
|
@font-face {
|
|
font-family: 'Quantum';
|
|
src: url("/resources/Quantum/Quantum.otf") format('opentype');
|
|
}
|
|
|
|
.quantum {
|
|
// Only really used for the logo title in the sidebar.
|
|
font-family: 'Quantum', sans-serif;
|
|
}
|
|
|
|
.ucase {
|
|
// Same as above.
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.r-45 {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.r-135 {
|
|
transform: rotate(135deg);
|
|
}
|