149 lines
2.2 KiB
Twig
149 lines
2.2 KiB
Twig
|
/* global */
|
||
|
h1{
|
||
|
padding: 40px 0px 9px 0px;
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
|
||
|
.nav a{
|
||
|
background: none;
|
||
|
color: #CFD8DC;
|
||
|
font-size: 14px;
|
||
|
padding: 5px 0px 5px 25px;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* Sidebar Styles */
|
||
|
.contentsidebar {
|
||
|
margin-left:250px;
|
||
|
}
|
||
|
|
||
|
#sidebar {
|
||
|
z-index: 1000;
|
||
|
position: fixed;
|
||
|
left: 250px;
|
||
|
width: 250px;
|
||
|
height: 100%;
|
||
|
margin-left: -250px;
|
||
|
overflow-y: auto;
|
||
|
background: #37474F;
|
||
|
-webkit-transition: all 0.5s ease;
|
||
|
-moz-transition: all 0.5s ease;
|
||
|
-o-transition: all 0.5s ease;
|
||
|
transition: all 0.5s ease;
|
||
|
}
|
||
|
|
||
|
#sidebar header {
|
||
|
background-color: #263238;
|
||
|
font-size: 20px;
|
||
|
line-height: 52px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#sidebar header a {
|
||
|
color: #fff;
|
||
|
display: block;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
#sidebar header a:hover {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav{
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav a {
|
||
|
padding: 0px 10px 5px 10px;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav .last{
|
||
|
border-bottom: 5px solid #455A64;
|
||
|
padding-bottom:5px;
|
||
|
}
|
||
|
|
||
|
#sidebar .title {
|
||
|
color: #CFD8DC;
|
||
|
font-size: 16px;
|
||
|
padding: 0px 10px 0px 10px;
|
||
|
display: block;
|
||
|
text-transform: uppercase;
|
||
|
margin-left: 0px !important;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav .last{
|
||
|
border-bottom: 5px solid #455A64;
|
||
|
padding-bottom:5px;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav a:hover{
|
||
|
background: none;
|
||
|
color: #ECEFF1;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav a .fa{
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
#sidebar .nav .select-control {
|
||
|
padding: 0px 10px 5px 10px;
|
||
|
margin-top: -12px;
|
||
|
}
|
||
|
|
||
|
.avatar {
|
||
|
background-color: #343a40;
|
||
|
width: 35px;
|
||
|
height: 35px;
|
||
|
border-radius: 100%;
|
||
|
margin-top: -5px;
|
||
|
}
|
||
|
|
||
|
.avatar.big{
|
||
|
width: 90px;
|
||
|
height: 90px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 991px) {
|
||
|
.contentsidebar {
|
||
|
margin-left: auto;
|
||
|
}
|
||
|
|
||
|
#sidebar {
|
||
|
position: static;
|
||
|
margin:0px -15px;
|
||
|
width: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a.btn {
|
||
|
color:#ffffff;
|
||
|
}
|
||
|
|
||
|
.btn-link {
|
||
|
padding:0px;
|
||
|
}
|
||
|
|
||
|
.media-body p {
|
||
|
font-size :12px;
|
||
|
margin-bottom:0px;
|
||
|
}
|
||
|
|
||
|
|
||
|
@media (min-width: 992px) {
|
||
|
#sidebar {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
{% if useheader is defined and useheader %}
|
||
|
#main {
|
||
|
padding-top:55px;
|
||
|
}
|
||
|
{% endif %}
|
||
|
|
||
|
|
||
|
th.dt-center, td.dt-center { text-align: center; }
|