2018-09-28 18:47:04 +00:00
|
|
|
#sidebar
|
2018-10-04 12:50:01 +00:00
|
|
|
min-width: sidebar-width
|
|
|
|
padding: 40px 0
|
|
|
|
.inner
|
|
|
|
padding: 0;
|
|
|
|
&:before
|
|
|
|
display: none
|
|
|
|
strong
|
|
|
|
display: none
|
2018-09-28 18:47:04 +00:00
|
|
|
|
|
|
|
.sidebar-title
|
|
|
|
margin-top: 40px
|
|
|
|
padding: 10px 0
|
|
|
|
font-family: font-title
|
|
|
|
font-weight: bold
|
|
|
|
color: color-title
|
|
|
|
display: inline-block
|
|
|
|
border-top: 1px solid color-border
|
|
|
|
line-height: 1
|
|
|
|
|
|
|
|
.sidebar-link
|
2018-10-04 12:50:01 +00:00
|
|
|
border-radius: 23.5px;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 9px 24px;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
position: relative;
|
|
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
|
|
-o-transition: all 0.3s ease-in-out;
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #000;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: normal;
|
2018-09-28 18:47:04 +00:00
|
|
|
&:hover
|
2018-10-04 12:50:01 +00:00
|
|
|
background: rgba(250, 157, 1, 0.1);
|
|
|
|
color: #fa9d01;
|
|
|
|
|