-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisabled.css
More file actions
42 lines (37 loc) · 767 Bytes
/
disabled.css
File metadata and controls
42 lines (37 loc) · 767 Bytes
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
:root {
--maincol: #e22c14;
}
@font-face {
font-family: font1;
src: url("resources/font/Minecraft.ttf");
}
body {
background-color: rgb(32, 32, 32)
}
.vignette {
filter: blur(70px) brightness(0%) opacity(80%);
width: 115%; height: 115%;
position: fixed;
z-index: -1;
top: -10%;
left: -10%;
}
.contact_box p {
font-family: font1, sans-serif;
font-size: 110%;
color: var(--maincol);
text-shadow: 1px 1px 4px #000000;
text-align: center;
}
.contact_box {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
height: 8%;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 24px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
z-index: 1;
}