49 lines
761 B
CSS
49 lines
761 B
CSS
body {
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1.42857143;
|
|
color: #333;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
@media(min-width:768px) {
|
|
.container {
|
|
width:750px;
|
|
}
|
|
}
|
|
@media(min-width:992px) {
|
|
.container {
|
|
width:970px;
|
|
}
|
|
}
|
|
@media(min-width:1200px) {
|
|
.container {
|
|
width:1170px;
|
|
}
|
|
}
|
|
.container {
|
|
padding-right:15px;
|
|
padding-left:15px;
|
|
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
}
|
|
.navbar-inverse {
|
|
background-color: #009688;
|
|
border-color: #009688;
|
|
color: rgba(255,255,255,0.84);
|
|
}
|
|
.navbar {
|
|
min-height: 50px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid transparent;
|
|
}
|
|
h1 {
|
|
color: rgb(8, 150, 136);
|
|
font-size:36px;
|
|
font-weight:500;
|
|
line-height: 1.1;
|
|
}
|
|
p {
|
|
margin: 0 0 10px;
|
|
}
|