Level2.lu/src/web/css/level2.css

74 lines
1.4 KiB
CSS
Executable File

/**
* Level2 grey: #4B4949
* syn2cat blue: #00AED2
*/
* {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
html,
body {
font-family: 'Patrick Hand SC', sans-serif;
font-size: 20px;
height: 100%;
}
.well {
padding: 0.5rem 1rem;
}
.container {
height: 100%;
}
.content{
background: rgba( 255, 255, 255, 0.7 );
border-radius: 0.4rem 0.4rem 0px 0px;
min-height: 100%;
box-sizing: border-box;
margin-bottom: -50px;
padding-bottom: 50px;
}
footer {
color: #fff;
background-color: #4B4949;
background: rgba( 75, 73, 73, 0.8 );
height: 50px;
}
/**
* START - NAVBAR
*/
@media (min-width: 768px) {
.navbar {
padding-top: 11rem;
margin-top: -10rem;
padding-left: 10rem;
margin-left: -10.5rem;
-webkit-transform: rotate(-1.5deg);
-moz-transform: rotate(-1.5deg);
-ms-transform: rotate(-1.5deg);
-o-transform: rotate(-1.5deg);
transform: rotate(-1.5deg);
background: rgba( 255, 255, 255, 0.7 );
border: none;
}
.navbar-nav>li>a {
border-radius: 0.4rem 0.4rem 0px 0px;
}
}
.navbar-nav>li.status-open a, .navbar-nav>li.status-open a:hover {
color: #fff;
background-color: #67C13C;
}
.navbar-nav>li.status-closed a, .navbar-nav>li.status-closed a:hover {
color: #fff;
background-color: #F56533;
}
/**
* END - NAVBAR
*/