blob: ba0f715a85a9d5147f27ba16a5d203457b9b8d9c (
plain)
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
|
.Navigation {
height: 3.7rem;
background-color: #282f39;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 1000;
&:after {
height: 3.7rem;
background-color: #282f39;
background-color: red;
position: absolute;
bottom: -5rem;
left: 0;
right: 0;
z-index: 1000;
content: ' ';
}
.icon {
position: absolute;
top: 50%;
left: 1.5rem;
margin-top: -.25rem;
width: .5rem;
height: .5rem;
border-radius: 2rem;
background-color: #BFB;
background-color: #333;
left: 7.25rem;
}
.uil-pacman-css {
width: 30px;
height: 30px;
position: absolute;
left: 1rem;
top: 50%;
margin-top: -28px;
display: none;
}
.title {
color: white;
font-size: 1.2rem;
font-family: 'Roboto', sans-serif;
margin: 1rem .75rem;
padding: 0;
}
}
|