-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (49 loc) · 958 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
body {
background-color: rgb(111, 3, 244);
display: flex;
width: 100%;
position: absolute;
height: 100%;
flex-direction: row;
align-items: center;
vertical-align: middle;
justify-content: center;
font-family: "Poppins", sans-serif;
}
.container {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#myLottie {
width: 300px;
height: 300px;
display: block;
margin-top: -100px;
}
#myLottieButton {
width: 100px;
height: 100px;
display: block;
margin-bottom: 40px;
}
.button {
background: #5b0abd;
border: none;
padding: 10px 20px;
border-radius: 30px;
color: #aa79e4;
outline: none;
box-shadow: 0px 10px 20px #4a00a9;
}
.button:hover,
.button:active {
cursor: pointer;
background: #3d0088;
color: #ba9fdc;
box-shadow: 0px 10px 20px #2c0065;
}
.inactive {
opacity: 0.4;
}