bornhack-website/bornhack/static_src/css/bornhack.css

65 lines
750 B
CSS
Raw Normal View History

body {
margin-top: 90px;
}
* {
border-radius: 0 !important;
}
a, a:active, a:focus {
outline: none;
}
2016-02-20 00:33:57 +00:00
/* Main width */
#main {
width: 700px
}
@media (max-width: 768px) {
#main {
width: 500px;
}
}
@media (max-width: 520px) {
#main {
width: 100%;
}
}
2016-02-20 00:33:57 +00:00
/* Front page stuff */
#front-logo {
margin: auto;
}
/* Navbar stuff */
.navbar {
width: 700px;
margin: auto;
background-color: rgb(255, 255, 255);
border-bottom: 1px solid rgb(250, 250, 250);
}
.navbar-fixed-top {
min-height: 80px;
}
.nav li a {
padding: 30px 25px;
}
2016-02-20 00:33:57 +00:00
/* Form stuff */
.form-control, .form-control:focus {
box-shadow: none;
}
.btn-black {
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
}
2016-02-21 01:04:51 +00:00
#map {
height: 500px;
}