My personal website
1@import "variables";
2
3noscript {
4 position: fixed;
5 top: 0;
6 left: 0;
7 right: 0;
8 background-color: $colorBase;
9 padding: 10px;
10 text-align: center;
11 z-index: 1000;
12
13 @media (prefers-color-scheme: dark) {
14 background-color: $colorBaseDark;
15 }
16}
17
18@media (scripting: none) {
19 .wrapper {
20 padding-top: 100px;
21 padding-bottom: 100px;
22 }
23
24 body.scroll {
25 padding-bottom: 0;
26 }
27
28 .sheet {
29 opacity: 1;
30 animation: none;
31 top: initial !important;
32 position: relative !important;
33 transform: none !important;
34 }
35
36 img[data-src] {
37 display: none;
38 }
39
40 .scroll-indicator {
41 display: none;
42 }
43}