-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (76 loc) · 1.56 KB
/
Copy pathstyle.css
File metadata and controls
92 lines (76 loc) · 1.56 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
html, body {
margin: 0;
padding: 0;
/* opacity : 0; */
background: url("https://picsum.photos/1980?random=1") no-repeat;
background-size: cover;
/* keep the inherited bg full size: ; */
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
body { opacity : 0 }
.contain {
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.neonText {
color: #fff;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #5271ff,
0 0 82px #5271ff,
0 0 92px #5271ff,
0 0 102px #5271ff,
0 0 151px #5271ff;
}
body {
font-size: 18px;
font-family: "Yellowtail", sans-serif;
background-color: #010a01;
}
h1, h2 {
text-align: center;
font-weight: 400;
}
h1 {
font-size: 5.2rem;
animation: pulsate 0.11s ease-in-out infinite alternate;
}
h2 {
font-size: 1.8rem;
}
h3 {
animation: pulsate 0.11s ease-in-out infinite alternate
}
@keyframes pulsate {
100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px #5271ff,
0 0 80px #5271ff,
0 0 90px #5271ff,
0 0 100px #5271ff,
0 0 150px #5271ff;
}
0% {
text-shadow:
0 0 4px #fff,
0 0 10px #fff,
0 0 18px #fff,
0 0 38px #5271ff,
0 0 73px #5271ff,
0 0 80px #5271ff,
0 0 94px #5271ff,
0 0 140px #5271ff;
}