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

90 lines
1.6 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;
border: none;
background: rgba( 255, 255, 255, 0.7 );
border-radius: 0.4rem;
}
.footer {
margin-top: 2rem;
color: #fff;
background-color: #4B4949;
background: rgba( 75, 73, 73, 0.8 );
border-radius: 0.4rem;
padding: 0.5rem;
}
.footer a {
color: rgba(127, 213, 225, 1);
}
/**
* 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
*/
h2, h3, h4 {
text-shadow: 1px 0px 6px rgba(255, 255, 255, 0.7);
}
.event h2, .event h3, .event h4, .event p {
margin: 0;
}
.event h4 {
color: #777;
}
img {
max-width: 100%;
border-radius: 0.4rem;
}