forked from drkostas/drkostas.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBottombar.module.css
54 lines (47 loc) · 859 Bytes
/
Bottombar.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
.bottomBar {
background: var(--bottombar-bg);
height: 25px;
border-top: 1px solid var(--bottombar-border);
color: rgb(225, 228, 232);
padding: 0 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.8rem;
}
.bottomBar a {
color: white;
text-decoration: none;
}
.icon {
margin-right: 4px;
}
.container {
display: flex;
align-items: center;
}
.section {
display: flex;
margin-right: 0.5rem;
height: 24px;
align-items: center;
padding: 0 0.2rem;
cursor: pointer;
font-family: 'Source Sans Pro', sans-serif;
}
.section:hover {
background: var(--bottombar-hover-bg);
}
@media screen and (max-width: 600px) {
.bottomBar {
font-size: 0.6rem;
}
.section {
margin-right: 0.5rem;
}
}
@media only screen and (max-width: 780px) {
.section p {
display: none;
}
}