mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-15 01:06:32 -05:00
59 lines
871 B
CSS
59 lines
871 B
CSS
|
.sidebar-title {
|
||
|
grid-row-start: 1;
|
||
|
grid-row-end: 1;
|
||
|
place-self: center;
|
||
|
color: #2a9fd6;
|
||
|
cursor: pointer;
|
||
|
font-size: 20px;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 6px;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
grid-row-start: 2;
|
||
|
grid-row-end: 2;
|
||
|
}
|
||
|
|
||
|
.nav li {
|
||
|
cursor: pointer;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.nav li a {
|
||
|
flex: 1;
|
||
|
outline: none;
|
||
|
padding: 20px 0 20px;
|
||
|
margin-left: 20px;
|
||
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
.nav li span {
|
||
|
background: #0d0d0d;
|
||
|
width: 35px;
|
||
|
height: 35px;
|
||
|
border-radius: 50%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
|
||
|
.nav-icon {
|
||
|
font: 14px fontawesome;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
.nav li a:hover {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
.nav li a.active {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
::-moz-focus-inner {border: 0;}
|