File size: 813 Bytes
8a554f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
@import "base";
@import "../src/sholo";
$container-width: 500px !default;
$logo-font-size: 55px !default;
$button-font-size: 13px !default;
$dark-button-bg: #2d2d2d !default;
$dark-button-text: #ffffff !default;
$light-button-bg: #f5f5f5 !default;
$light-button-text: #2d2d2d !default;
.page-wrap {
padding-top: 1px;
width: $container-width;
margin: auto;
}
.btn {
font-size: $button-font-size;
padding: 7px 10px;
border-radius: 3px;
&.btn__dark {
background: $dark-button-bg;
color: $dark-button-text;
}
&.btn__light {
background: $light-button-bg;
color: $light-button-text;
}
}
section {
margin-bottom: 35px;
}
.section__header {
margin: 80px 0 50px;
text-align: center;
display: block;
padding: 10px 10px 20px;
h1 {
font-size: $logo-font-size;
}
} |