0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-10 03:46:13 +01:00

51 lines
865 B
CSS
Raw Normal View History

2017-08-10 21:04:59 -07:00
body {
padding-top: 20px;
}
.footer {
padding-top: 40px;
padding-bottom: 40px;
margin-top: 40px;
border-top: 1px solid #eee;
}
/* Main marketing message and sign up button */
.jumbotron {
text-align: center;
background-color: transparent;
}
.jumbotron .btn {
padding: 14px 24px;
font-size: 21px;
}
.navbar {
2017-12-28 09:55:44 -08:00
background-image: linear-gradient(to bottom, #f7f7f7 0%, #eee 100%);
2017-08-10 21:04:59 -07:00
border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
.navbar-nav {
display: -ms-flexbox;
2017-12-28 09:55:44 -08:00
display: -webkit-box;
2017-08-10 21:04:59 -07:00
display: flex;
}
.navbar-nav .nav-item {
2017-10-19 12:22:00 -07:00
-ms-flex: 1 0 auto;
2017-12-28 09:55:44 -08:00
-webkit-box-flex: 1;
2017-10-19 12:22:00 -07:00
flex: 1 0 auto;
2017-08-10 21:04:59 -07:00
}
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
.masthead,
.marketing,
.footer {
padding-right: 0;
padding-left: 0;
}
}