bar.scss
869 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
.topbar,
.bottombar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
text-align: center;
padding: 10px;
a {
width: 45%;
height: 90%;
text-decoration: none;
color: #008b8b;
}
a:hover {
color: #00ced1;
}
.logo {
color: #008080;
}
* {
padding: 0.3rem 0.5rem;
}
}
.topbar {
margin-bottom: 0.5rem;
justify-content: space-between;
border-bottom: 2px gray solid;
a {
font-size: 2.9rem;
height: 3rem;
}
.logo {
text-align: left;
}
.settings {
text-align: right;
}
}
.bottombar {
margin-top: 0.5rem;
border-top: 2px gray solid;
font-size: 1.5rem;
height: 2.8rem;
a {
box-shadow: 3px 3px 3px 0px gray;
}
.bottomBtn {
margin-right: 0.2rem;
margin-left: 0.2rem;
border: 1px solid gray;
border-radius: 3px;
}
}