File size: 1,145 Bytes
b91e262 | 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | @import "@sass/abstracts/mixins";
@import "variables";
body {
font-family: Roboto;
color: $main-color;
}
@media (min-width: 1400px) {
.container {
max-width: 1250px;
}
}
/**** START STYLE MAX HEIGHT ****/
.prod-mode {
display: flex;
flex-direction: column;
height: 100vh;
main {
flex: 1 0 auto;
}
footer {
flex-shrink: 0;
}
}
/**** END STYLE MAX HEIGHT ****/
main {
.main-header {
margin-top: 55px;
margin-bottom: 30px;
@include respond-to(mobile-large) {
margin-bottom: 0;
}
h4 {
font-size: $text-size-50;
font-weight: 500;
line-height: 70px;
}
}
.main-news-header {
margin-top: 60px;
h2 {
font-size: $text-size-36;
line-height: 43px;
}
}
@include respond-to(mobile-large) {
padding-top: 0;
margin-bottom: 0;
.main-header {
margin-top: 10px;
h4 {
font-size: $text-size-24;
line-height: 32px;
}
}
.main-news-header {
padding-bottom: 35px;
h2 {
margin-top: 0;
font-size: $text-size-18;
line-height: 22px;
}
}
}
}
|