Everything related to sidebar and widgets in my stylesheet.css
if anything changing could help
/*widget*/
.widget-title{
font-family: "Oswald", Times, serif;
font-size:22px;
text-transform:uppercase;
position:relative;
margin-bottom:40px;
}
.widget-title:before {
content: '';
position: absolute;
bottom: -10px;
left: 0px;
height: 3px;
width: 60px;
max-width: 90%;
background-color: #c8385e;
transition:all .2s ease;
}
.widget:hover .widget-title:before, .widget-title:hover:before {
width: 70px;
}
.dark-div .widget-title:before {
background-color: #eee;
background-color: rgba(255,255,255,.8);
}
.widget-border .widget-inner{
border: solid 1px rgba(255,255,255,.25);
padding: 25px 30px;
}
.normal-sidebar .widget ul{
padding-left:0;
}
.normal-sidebar .widget ul li{
list-style:none;
line-height:1.8;
vertical-align:bottom;
}
.normal-sidebar .widget ul li:before{
content: "\f105";
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size:8px;
margin-right:5px;
vertical-align:middle;
}
.dark-div .normal-sidebar .widget ul li:before{
color:#fff;
}
.normal-sidebar .widget ul li a{
vertical-align:middle;
}
.normal-sidebar .widget .menu .sub-menu{
padding-left:15px;
}
.normal-sidebar a{
transition:all .2s;
-webkit-transition:all .2s;
}
.widget{
padding-bottom:30px;
}