-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
39 lines (35 loc) · 832 Bytes
/
Copy pathbutton.css
File metadata and controls
39 lines (35 loc) · 832 Bytes
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
#yes {
display: flex;
justify-content: center;
align-items: center;
background:#100720;
margin-top: 400px;
}
button {
width:165px;
height:62px;
cursor: pointer;
color:#fff;
font-size: 17px;
border-radius: 1rem;
border: none;
position: relative;
background:#100720;
transition: 0.1s;
}
button::after {
content: '';
width: 100%;
height:100%;
background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255,94,247,1) 17.8%, rgba(2,245,255,1)100.2% );
filter: blur(15px);
z-index: -1;
position: absolute;
left: 0;
top:0;
}
button:active {
transform: scale(0.9) rotate(3deg);
background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255,94,247,1)17.8%,(2,245,255,1)100.2%);
transition: 0.5s;
}