rf-web/_sass/layout.scss

43 lines
674 B
SCSS
Raw Normal View History

body {
background-color: $white;
background-image: url('../img/bg/es-c.jpg');
2020-02-21 11:44:13 +00:00
background-image: url('../img/bg/es-c.jpg'), linear-gradient(270deg, $turquoise, $true-blue);
background-repeat-x: no-repeat;
background-repeat-y: repeat;
background-size: cover;
background-attachment: fixed;
2020-02-21 11:44:13 +00:00
display: flex;
flex-direction: column;
@include touch {
background-attachment: scroll;
}
}
.page-content {
max-width: 920px;
margin: 0 auto;
}
html,
body {
height: 100%;
}
.content {
flex: 1 0 auto;
}
footer.page-footer {
flex-shrink: 0;
}
.rf-logo path {
fill: transparent;
stroke-width: 1;
2020-02-21 11:44:13 +00:00
@include touch {
stroke-width: 1.5;
}
}