institucional-brasil/assets/css/basic.css

301 lines
4.9 KiB
CSS

/*==============================================
BASIC STYLES
=============================================*/
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.7;
}
#wrapper {
width: 100%;
background: #202020;
}
#page-wrapper {
padding: 15px 15px;
min-height: 600px;
background: #F3F3F3;
}
#page-inner {
width: 100%;
margin: 10px 20px 10px 0px;
background-color: #fff !important;
padding: 10px;
min-height: 90vh;
}
.page-head-line {
font-size: 30px;
text-transform: uppercase;
color: #000;
font-weight: 800;
padding-bottom: 20px;
border-bottom: 2px solid #00CA79;
margin-bottom: 10px;
}
.page-subhead-line {
font-size: 14px;
padding-top: 5px;
padding-bottom: 20px;
font-style: italic;
margin-bottom: 30px;
border-bottom: 1px dashed #00CA79;
}
/*==============================================
MENU STYLES
=============================================*/
.navbar-cls-top .navbar-brand {
color: #fff;
background: #039;
width: 260px;
text-align: center;
height: 70px;
font-size: 20px;
letter-spacing: 1px;
font-weight: 900;
text-transform: uppercase;
}
.header-right {
color: #fff;
padding: 15px 50px 5px 50px;
float: right;
font-size: 16px;
}
.navbar-cls-top .navbar-brand:hover {
background: #036;
color: #fff;
}
.user-img-div {
min-height: 140px;
padding: 20px;
background-color: #4380B8;
}
.user-img-div img {
max-height: 60px;
}
.user-img-div .inner-text {
text-align: right;
position: relative;
color: #fff;
font-weight: 800;
line-height: 25px;
}
.active-menu {
background-color: #00CA79 !important;
}
.active-menu-top {
background-color: #000 !important;
}
.arrow {
float: right;
}
.fa.arrow:before {
content: "\f104";
}
.active>a>.fa.arrow:before {
content: "\f107";
}
.nav-second-level li,
.nav-third-level li {
border-bottom: none !important;
}
.nav-second-level li a {
padding-left: 37px;
}
.nav-third-level li a {
padding-left: 55px;
}
.sidebar-collapse,
.sidebar-collapse .nav {
background: none;
}
.sidebar-collapse .nav {
padding: 0;
}
.sidebar-collapse .nav>li>a {
color: #fff;
background: #2a3336;
text-shadow: none;
padding: 15px 40px;
border-bottom: 1px solid #1f2627;
}
.sidebar-collapse>.nav>li>a {
padding: 15px;
}
.sidebar-collapse .nav>li>a:hover,
.sidebar-collapse .nav>li>a:focus,
.sidebar-collapse .nav>li>a.active {
background: #171c1c;
outline: 0;
}
.nav-second-level>li:last-child>a:after,
.nav-third-level>li:last-child>a:after {
height: 50%;
}
.nav-third-level>li>a:after,
.nav-third-level>li>a:before {
left: 40px;
}
.navbar-side {
border: none;
background-color: #202020;
}
.navbar-cls-top {
background: #00CA79;
border-bottom: none;
}
.navbar-default {
border: 0px solid black;
}
.navbar-header {
background: #000000;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #039;
}
.navbar-default .navbar-toggle {
border-color: #fff;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #FFF;
}
.nav>li>a>i {
margin-right: 10px;
}
/*==============================================
FOOTER STYLES
=============================================*/
#footer-sec {
background-color: #039;
margin: 50px 0 0 0;
color: #fff;
font-size: 12px;
}
#footer-sec a {
color: #fff;
}
#footer-sec a:hover {
color: #fff;
text-decoration: none;
}
/*==============================================
MEDIA QUERIES
=============================================*/
@media (min-width:768px) {
#page-wrapper {
margin: 0 0 0 260px;
padding: 15px 30px;
}
.navbar-side {
z-index: 1;
width: 260px !important;
margin-top: 70px;
height: 100vh;
}
.navbar {
border-radius: 0px;
}
}
/*==============================================
SWITCH STYLES
=============================================*/
.switch {
position: relative;
display: inline-block;
width: 32px;
height: 18px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 14px;
width: 14px;
left: 2px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
input:checked+.slider {
background-color: #3c763d;
}
input:checked+.slider:before {
-webkit-transform: translateX(14px);
-ms-transform: translateX(14px);
transform: translateX(14px);
}