Files
coopgo/themes/coopgo-theme/assets/sass/coopgo-web-ui-kit/_base.scss

85 lines
1.1 KiB
SCSS

@font-face {
font-family: "Manometer";
src: url("/fonts/manometer.woff2") format("woff2"),
url("/fonts/manometer.woff") format("woff");
}
@font-face {
font-family: "Bitter";
font-style: normal;
src: url("/fonts/Bitter-Regular.woff") format("woff");
}
$basefont: Bitter;
$brandfont: Manometer;
body {
font-family: $basefont;
margin: 0;
padding: 0;
}
.brand {
font-family: $brandfont;
}
h1, h2, h3, h4, h5, h6 {
font-family: Manometer;
font-weight: normal;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 1.3em;
}
h3 {
font-size: 1em;
}
h4 {
font-size: 0.8em;
}
p {
font-size: 1em;
}
#content {
margin-top: 3em;
}
.container {
margin: auto;
max-width: 1020px;
}
.cap {
text-transform: uppercase;
}
a {
text-decoration: none;
color: $brandblue;
}
button {
font-family: $brandfont;
padding: 10px;
border-radius: 17px;
padding-left: 20px;
padding-right: 20px;
border: 0;
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
font-size: 1em;
}
button:hover {
box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
}