maputnik/src/styles/_base.scss

71 lines
1 KiB
SCSS
Raw Normal View History

2017-01-11 09:35:48 +01:00
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('../fonts/Roboto-Medium.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
html {
color: $color-white;
font-size: $font-size-2;
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
p {
font-size: $font-size-6;
2017-01-11 11:35:33 +01:00
margin-top: $margin-2;
margin-bottom: $margin-2;
2017-01-11 09:35:48 +01:00
color: $color-lowgray;
2017-01-11 11:35:33 +01:00
line-height: 1.3;
2017-01-11 09:35:48 +01:00
}
h1 {
font-size: $font-size-2;
margin-bottom: $margin-3;
}
h2 {
font-size: $font-size-3;
margin-bottom: $margin-3;
}
h3 {
font-size: $font-size-4;
margin-bottom: $margin-3;
}
h4 {
font-size: $font-size-5;
margin-bottom: $margin-3;
}
2017-01-11 11:35:33 +01:00
input {
height: 24px;
}
input:focus, select:focus {
2017-01-11 09:35:48 +01:00
color: $color-white !important;
outline: #8e8e8e auto 1px !important;
}
label:hover {
color: $color-white;
}
2017-01-11 11:35:33 +01:00
.clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}