Files
old-krovovi-kalkulator/helix/scss/main.scss
2017-11-07 09:23:57 +01:00

62 lines
810 B
SCSS

@import 'variables';
body {
font-family: "Avenir Next", sans-serif;
margin: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 20px solid $medium-blue;
border-bottom: 2px solid $light-border-color;
padding: 20px;
.group {
display: flex;
justify-content: flex-start;
align-items: center;
h1 {
width: 100%;
padding-right: 25px;
}
.back {
padding: 5px 10px;
font-size: 16px;
font-weight: 500;
letter-spacing: 1px;
}
}
img {
width: 200px;
height: 25px;
}
}
h1 {
margin: 0;
font-size: 25px;
font-weight: $semi-bold;
}
.content {
width: 900px;
margin: 40px auto;
}
.hidden {
display: none;
}
.clickable {
cursor: pointer;
}
.spacer {
flex-grow: 1;
}