-
Notifications
You must be signed in to change notification settings - Fork 0
/
NavigatorB.module.css
71 lines (71 loc) · 1.38 KB
/
NavigatorB.module.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
59
60
61
62
63
64
65
66
67
68
69
70
71
.NavigationContainer{
background-color: black;
width: 98%;
height: 5rem;
margin-left: 1%;
position: fixed;
bottom: .25rem;
border-radius: 20px;
color: white;
}
.NavigationBar{
width: 8rem;
height: 5px;
background-color: rgba(255, 255, 255, 0.246);
position: relative;
top: calc(5rem - .8rem);
}
.navigateBox{
display: flex;
justify-content: space-around;
height: 3.5rem;
margin-top: .1rem;
margin-bottom: .5rem;
}
.NavigateButton{
width: 3.9rem;
display: flex;
flex-direction: column;
justify-content: center;
}
.icon{
font-size: 2rem;
margin-left: 1rem;
}
.iconActive{
font-size: 2rem;
margin-left: 1rem;
animation-name: iconmove;
animation-duration: .25s;
animation-timing-function: linear;
animation-iteration-count: 1;
animation-fill-mode: forwards;
position: relative;
}
.UparrowVisible{
margin-left: 1rem;
animation-name: arrow;
animation-duration: .25s;
animation-timing-function: linear;
animation-iteration-count: 1;
}
.UparrowHidden{
display: none;
}
@keyframes arrow{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
@keyframes iconmove{
0%{
top: 0;
}
100%{
top: -5px;
filter: drop-shadow( 0 1px 5px #ffffff);
}
}