13 lines
230 B
SCSS
13 lines
230 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;
|
|
}
|
|
.light-text {
|
|
font-weight: 300;
|
|
}
|
|
.text-center {
|
|
text-align: center;
|
|
} |