blob: 859c0bff7eda0265d078ae0aa791136aa534e689 (
about) (
plain)
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
|
/* Copyright: Ankitects Pty Ltd and contributors
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
#header {
border-bottom: 0;
margin-bottom: 6px;
margin-top: 0;
padding: 9px;
}
body::before {
background-image: url("/_addons/Background_and_gear/user_files/background/1721729412.jpg");
background-size: cover;
background-attachment: fixed!important;
background-repeat: no-repeat;
background-position: bottom;;
background-color: !important;
opacity: 1;
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
z-index: -99;
will-change: transform;
transform: scale(1);
}
|