49 lines
775 B
CSS
49 lines
775 B
CSS
.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;
|
|
}
|
|
}
|