-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
60 lines (51 loc) · 968 Bytes
/
index.css
File metadata and controls
60 lines (51 loc) · 968 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
body{
width: 99%;
height: 100%;
}
.outer-div{
margin-top: 50vh;
border: 2px solid black;
border-radius: 20px;
height: 25px;
width: 90%;
position: relative;
left: 4%;
z-index: 999999;
}
.inner-div{
text-align: center;
color: white;
border-radius: 20px;
background-color: rgb(5, 182, 5);
height: inherit;
z-index: 99;
animation-name: motion;
animation-timing-function: ease-in;
animation-duration: 5s;
animation-delay: 1s;
}
@keyframes motion {
from{
width: 0%;
}
to{
width: 100%;
}
}
.btn{
display: none;
padding-top: 48vh;
justify-content: space-evenly;
flex-wrap: wrap;
}
.btn button{
height: 9vh;
width: 20vh;
border-radius: 57%;
cursor: pointer;
}
.btn button:hover{
color: white;
font-weight: 700;
background-color: rgb(47, 226, 226);
}