mirror of
https://github.com/mgerb/react-starter
synced 2026-01-09 16:42:48 +00:00
24 lines
296 B
SCSS
24 lines
296 B
SCSS
html {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: $fontPrimary;
|
|
background-color: $light2;
|
|
}
|
|
|
|
.fa {
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $fontPrimary;
|
|
transition: all 0.1s linear;
|
|
|
|
&:hover {
|
|
color: $primaryBlue;
|
|
}
|
|
}
|