-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEDR-Style.css
58 lines (49 loc) · 931 Bytes
/
EDR-Style.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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
line-height: 2;
background-color: black;
}
a {
text-decoration: none;
}
.box {
padding-top: 100px;
padding-left: 30%;
}
#EDR-element {
padding: 100px;
font-weight: 900;
color: #ffffff;
-webkit-user-select: none;
user-select: none;
}
@supports (-webkit-backdrop-filter: blur(0)) {
#EDR-element {
filter: brightness(1);
-webkit-backdrop-filter: brightness(1);
}
}
/* Blink */
@supports (backdrop-filter: blur(0)) {
#EDR-element {
filter: brightness(10);
backdrop-filter: brightness(10);
text-shadow: 0 0 10px #ffffff;
}
}
.HDR-Video {
/* display: none; */
width: 2px;
}
@media screen and (max-width: 720px) {
.box {
margin-top: 10px;
}
#EDR-element {
padding: 0px;
}
#EDR-Logo {
width: 200px;
}
}