-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (60 loc) · 1.23 KB
/
styles.css
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
h1 {
font-size: xx-large;
}
h2 {
font-size: x-large;
}
p {
font-size: large;
}
body {
--background-1: #46352a;
--background-2: #3d2c21;
--background-3: #302117;
--background-4: #291a10;
--text-1: #e7cab7;
--text-2: #d6ae93;
--text-3: #bb8d6e;
--warn: #ffd078;
--error: #ff7878;
--warn-text: #323546;
--error-text: #323546;
background-color: var(--background-4);
color: var(--text-1);
font-family: monospace;
overflow-x: hidden;
}
.renovationText {
filter: drop-shadow(0px 0px 5px #e7cab7);
pointer-events: none;
text-align: center;
}
.coolText {
margin: 8px;
}
img {
filter: invert(100%) invert(95%) sepia(8%) saturate(1542%) hue-rotate(311deg) brightness(92%) contrast(97%) drop-shadow(0px 0px 5px #e7cab7);
pointer-events: none;
width: 15%;
margin: 16px;
}
canvas {
position: sticky;
margin: 0px;
padding: 0px;
top: 0px;
left: 0px;
z-index: -1;
}
.mainContainer {
padding-left:10%;
padding-right: 10%;
position: absolute;
top:10%;
left:50%;
width: 40%;
transform: translate(-50%,0%);
background-color: var(--background-1);
border-style: solid;
border-radius: 16px;
}