-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (40 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
48 lines (40 loc) · 1.16 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
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400&display=swap');
* {
margin: 0; padding: 0;
font-family: 'IBM Plex Sans Arabic', sans-serif; }
body {
background: #000;
height: 920px;
display: flex;
align-items: center;
justify-content: center; }
.text {
color: #FFF;
background: #000;
font-size: 100px;
text-transform: uppercase; }
.text::before {
content: "Does this thing works?";
position: absolute;
mix-blend-mode: difference;
filter: blur(3px); }
.neon-wrapper {
display: inline-flex;
filter: brightness(200%);
overflow: hidden; }
.gradient {
background: linear-gradient(130deg, #7b28aac4 4%, #4b2396 97%);
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
mix-blend-mode: multiply; }
.radial {
background: radial-gradient(circle, #FFF, #000 35%) center / 25% 25%;
position: absolute;
top: -100%; left: -100%;
right: 0; bottom: 0;
mix-blend-mode: color-dodge;
animation: radial-area 5s linear infinite; }
@keyframes radial-area {
to {
transform: translate(50%, 50%); } }