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

112 lines
1.4 KiB
CSS
Raw Normal View History

body {
margin-top: 90px;
2016-05-30 15:59:53 +00:00
margin-bottom: 35px;
}
* {
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 {
2016-05-06 15:08:52 +00:00
max-width: 700px;
2016-02-20 00:33:57 +00:00
margin: auto;
background-color: rgb(255, 255, 255);
border-bottom: 1px solid rgb(250, 250, 250);
}
.navbar-fixed-top {
min-height: 80px;
}
2016-05-06 15:08:52 +00:00
@media (min-width: 768px) {
.nav li a {
padding: 30px 15px;
}
.nav {
float: right!important;
}
}
@media (max-width: 767px) {
.nav li {
text-align: center;
font-size: 20px;
}
}
2016-02-20 00:33:57 +00:00
2016-05-06 15:08:52 +00:00
.navbar-toggle .icon-bar {
background: black;
width: 45px;
height: 8px;
}
.navbar-toggle .icon-bar+.icon-bar {
margin-top: 6px;
}
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
.btn-grey {
background-color: #777;
color: rgb(255, 255, 255);
}
2016-02-21 01:04:51 +00:00
#map {
height: 500px;
}
2016-05-06 15:08:52 +00:00
2016-05-30 15:59:53 +00:00
.thumbnail {
height: 350px;
2016-05-30 15:59:53 +00:00
}
2016-05-19 09:19:51 +00:00
/* Footer */
footer {
position: fixed;
width: 700px;
text-align: center;
background-color: white;
bottom: 0px;
padding: 5px;
}
2016-05-30 18:56:03 +00:00
.breadcrumb > li.pull-right::before {
content: "";
}