-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
74 lines (55 loc) · 915 Bytes
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
background-color: black;
height: 100vh;
margin: 0;
font-family: monospace;
}
#container {
width: 100%;
height: 100%;
overflow-y: auto;
}
#source {
color: #2AD400;
font-size: 15px;
font-weight: bold;
white-space: pre-wrap;
}
.blurred {
filter: blur(0.8px);
}
#access-msg {
font-size: 3rem;
text-align: center;
border: 2px solid;
padding: 1.5rem;
position: absolute;
z-index: 99;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.d-none {
display: none;
}
.success {
color: #10ff00;
display: block;
animation: accessAnimation 0.5s 2 0s linear;
}
.denied {
color: red;
display: block;
animation: accessAnimation 0.5s 2 0s linear;
}
@keyframes accessAnimation {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}