33 lines
494 B
SCSS
33 lines
494 B
SCSS
body {
|
|
font-family: 'Montserrat', sans-serif;
|
|
color: #000;
|
|
font-size: 15px;
|
|
-webkit-font-smoothing: antialiased;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.content {
|
|
min-height: calc(100vh - 450px)
|
|
}
|
|
|
|
a {
|
|
text-decoration: none !important;
|
|
color: #CC4B14;
|
|
&:hover {
|
|
color: #000000;
|
|
text-decoration: underline;
|
|
}
|
|
&:focus {
|
|
color: #000000;
|
|
text-decoration: underline;
|
|
}
|
|
&:active {
|
|
color: #000000;
|
|
text-decoration: underline;
|
|
}
|
|
img {
|
|
border: none;
|
|
}
|
|
}
|