blob: 596874537effaa13a9d0ca0ace6c7843b23b5533 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
html {
background: url("bg.jpg");
background-attachment: fixed;
background-size: cover;
image-rendering: pixelated;
}
#heavenly-host {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: -999;
background-image: url("angel.gif");
background-size: 128px 128px;
opacity: 0.25;
--pan: 128px -128px;
animation: pan linear 3s infinite;
}
.section {
background-color: rgba(from var(--bg-yellow) r g b / 0.5);
}
|