-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (55 loc) · 977 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
55
56
57
58
* {
box-sizing: border-box;
font-family: cursive;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #ddd;
}
.content {
display: flex;
align-items: center;
flex-direction: column;
background: #ddd;
}
#start-btn {
font-size: 26px;
padding: 10px 20px 10px 20px;
margin-top: 30px;
border-radius: 10px;
background-size: 50px;
display: inline-flex;
align-items: center;
}
.dust {
position: absolute;
}
.infinity {
position: absolute;
top: 0;
left: -12px;
height: 80px;
width: 80px;
transition: all 0.5s ease-in-out;
user-select: none;
-moz-user-select: none;
}
.glow-div {
position: absolute;
opacity: 100%;
height: 80px;
width: 60px;
border-radius: 50%;
}
.glow-div:hover {
color: rgba(255, 255, 255, 1);
box-shadow: 0px 4px 170px rgba(0, 194, 45, 0.56);
background: radial-gradient(#00c22d8f, #ffffff);
}
#after-snap {
font-size: xx-large;
}