-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
54 lines (47 loc) · 922 Bytes
/
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
body {
background-color: black;
overflow: hidden;
}
input {
background: none;
border: solid white 1.5px;
padding: 2px;
font-size: 14px;
color: inherit;
}
label {
font-family: Arial, Helvetica, sans-serif;
}
#inputs {
color: white;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-60%);
user-select: none;
}
.glitch {
text-align: center;
font-size: 96pt;
font-family: Arial, Helvetica, sans-serif;
color: rgb(0, 0, 255);
}
.glitch::after {
position: absolute;
content: attr(data-text);
left: 0px;
transform: translate(5px, 5px);
mix-blend-mode: screen;
color: rgb(0, 255, 0);
top: 87px;
}
.glitch::before {
position: absolute;
content: attr(data-text);
left: 0px;
transform: translate(5px, 10px);
mix-blend-mode: screen;
color: rgb(255, 0, 0);
}