30d43b4d3bcb4832aa0d435c983d88f9abeea141
[wolnelektury.git] / src / wolnelektury / static / 2021 / css / base / _global.scss
1 /* ------------------------------
2     Base: Global
3 ------------------------------ */
4
5 *, *:after, *:before {
6         box-sizing: border-box;
7 }
8
9 :focus {
10   outline: $color-black auto 2px;
11   outline-offset: 2px;
12 }
13
14 html,
15 body {
16   -webkit-overflow-scrolling: auto;
17 }
18
19 body {
20         color: $color-black;
21         background-color: $color-white;
22
23   &.using-mouse {
24     *:focus {
25       outline: 0 !important;
26     }
27   }
28 }
29
30 .visibility-hidden {
31   visibility: hidden !important;
32 }
33
34 .simpleParallax {
35   width: 100%;
36   display: flex;
37   align-items: center;
38   justify-content: center;
39 }