2019-11-10 11:45:15 +00:00
|
|
|
body {
|
2020-02-26 07:55:02 +00:00
|
|
|
background-color: $bg;
|
2020-08-16 09:54:33 +00:00
|
|
|
background-image: url('../img/bg/bg-2.png'), url('../img/bg/bg-el-light.png');
|
2020-07-29 13:02:51 +00:00
|
|
|
transition: background-color 0.5s ease-in-out;
|
2020-08-16 09:54:33 +00:00
|
|
|
background-position: $size-base $size-8, $size-8 $size-12;
|
2019-11-10 11:45:15 +00:00
|
|
|
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;
|
2020-07-29 13:02:51 +00:00
|
|
|
background-size: 100%;
|
2020-02-21 11:44:13 +00:00
|
|
|
|
|
|
|
@include touch {
|
|
|
|
background-attachment: scroll;
|
|
|
|
}
|
2020-07-29 13:02:51 +00:00
|
|
|
|
|
|
|
@include darkMode {
|
|
|
|
background-color: $black;
|
2020-08-16 09:54:33 +00:00
|
|
|
// &::after {
|
|
|
|
// content: '';
|
|
|
|
// background-image: ;
|
|
|
|
// opacity: 1;
|
|
|
|
// background-position: 0 0;
|
|
|
|
// background-repeat-x: no-repeat;
|
|
|
|
// background-repeat-y: repeat;
|
|
|
|
// background-size: 100%;
|
|
|
|
// background-attachment: fixed;
|
|
|
|
// height: 100vh;
|
|
|
|
// width: 100vw;
|
|
|
|
// position: fixed;
|
|
|
|
// pointer-events: none;
|
|
|
|
// }
|
2020-07-29 13:02:51 +00:00
|
|
|
}
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-content {
|
|
|
|
max-width: 920px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
flex: 1 0 auto;
|
2020-04-25 08:56:48 +00:00
|
|
|
max-width: $size-512 + $size-128;
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer.page-footer {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2020-04-25 08:56:48 +00:00
|
|
|
.textbox {
|
|
|
|
@include textbox;
|
|
|
|
}
|
2020-08-16 16:03:53 +00:00
|
|
|
|
|
|
|
.textbox-sm {
|
|
|
|
@include textbox;
|
|
|
|
padding: $size-8 $size-16;
|
|
|
|
}
|