forked from Transparency/kgroad-frontend2
31 lines
355 B
SCSS
31 lines
355 B
SCSS
@import url("https://fonts.cdnfonts.com/css/inter");
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "Tilda Sans";
|
|
}
|
|
|
|
button,
|
|
a,
|
|
input {
|
|
font-size: 16px;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
outline: none;
|
|
}
|