16 lines
289 B
SCSS
16 lines
289 B
SCSS
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
.thin-text {
|
|
font-weight: 100 !important;
|
|
}
|
|
.light-text {
|
|
font-weight: 300 !important;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.text-right {
|
|
text-align: right;
|
|
} |