255 lines
4.0 KiB
CSS
255 lines
4.0 KiB
CSS
|
html {
|
||
|
font-size: 10px;
|
||
|
|
||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
|
font-size: 14px;
|
||
|
line-height: 1.42857143;
|
||
|
color: #333;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
padding-right: 15px;
|
||
|
padding-left: 15px;
|
||
|
margin-right: auto;
|
||
|
margin-left: auto;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 768px) {
|
||
|
.container {
|
||
|
width: 750px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 992px) {
|
||
|
.container {
|
||
|
width: 970px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 1200px) {
|
||
|
.container {
|
||
|
width: 1170px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.text-center {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.full-width {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.center {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.navbar {
|
||
|
padding: 0;
|
||
|
min-height: 40px;
|
||
|
margin-bottom: 20px;
|
||
|
background-color: #333;
|
||
|
border-top: 1px solid #a1a1a1;
|
||
|
border-bottom: 1px solid #a1a1a1;
|
||
|
}
|
||
|
|
||
|
.navbar .container {
|
||
|
padding: 0;
|
||
|
position: relative;
|
||
|
min-height: 40px;
|
||
|
}
|
||
|
|
||
|
.navbar ul {
|
||
|
padding: 0;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.navbar li {
|
||
|
display: inline;
|
||
|
text-decoration: none;
|
||
|
padding-right: 30px;
|
||
|
font-size: 20px;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.navbar .logo {
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.navbar a {
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.jumbotron {
|
||
|
padding: 30px;
|
||
|
margin-bottom: 30px;
|
||
|
color: inherit;
|
||
|
background-color: #eee;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
display: table;
|
||
|
margin-right: -15px;
|
||
|
margin-left: -15px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.column-logo, .column-info {
|
||
|
position: relative;
|
||
|
min-height: 1px;
|
||
|
padding-left: 15px;
|
||
|
padding-right: 15px;
|
||
|
}
|
||
|
|
||
|
.column-logo {
|
||
|
width: 40%;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.column-info {
|
||
|
width: 50%;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.big-logo {
|
||
|
display: block;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
display: inline-block;
|
||
|
padding: 6px 12px;
|
||
|
margin-bottom: 0;
|
||
|
font-size: 14px;
|
||
|
font-weight: normal;
|
||
|
line-height: 1.42857143;
|
||
|
text-align: center;
|
||
|
white-space: nowrap;
|
||
|
vertical-align: middle;
|
||
|
cursor: pointer;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
background-image: none;
|
||
|
border: 1px solid transparent;
|
||
|
border-radius: 4px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.btn:focus,
|
||
|
.btn:active:focus,
|
||
|
.btn.active:focus {
|
||
|
outline: thin dotted;
|
||
|
outline: 5px auto -webkit-focus-ring-color;
|
||
|
outline-offset: -2px;
|
||
|
}
|
||
|
|
||
|
.btn:hover,
|
||
|
.btn:focus {
|
||
|
color: #286090;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.btn:active,
|
||
|
.btn.active {
|
||
|
background-image: none;
|
||
|
outline: 0;
|
||
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
||
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
||
|
}
|
||
|
|
||
|
.btn-primary {
|
||
|
color: #fff;
|
||
|
background-color: #428bca;
|
||
|
border-color: #357ebd;
|
||
|
}
|
||
|
|
||
|
.btn-primary:hover,
|
||
|
.btn-primary:focus,
|
||
|
.btn-primary:active,
|
||
|
.btn-primary.active {
|
||
|
color: #fff;
|
||
|
background-color: #3071a9;
|
||
|
border-color: #285e8e;
|
||
|
}
|
||
|
|
||
|
.btn-primary:active,
|
||
|
.btn-primary.active {
|
||
|
background-image: none;
|
||
|
}
|
||
|
|
||
|
.btn-lg,
|
||
|
.btn-group-lg > .btn {
|
||
|
padding: 10px 16px;
|
||
|
font-size: 18px;
|
||
|
line-height: 1.33;
|
||
|
border-radius: 6px;
|
||
|
}
|
||
|
|
||
|
pre,
|
||
|
blockquote {
|
||
|
border: 1px solid #999;
|
||
|
|
||
|
page-break-inside: avoid;
|
||
|
}
|
||
|
|
||
|
pre {
|
||
|
display: block;
|
||
|
padding: 9.5px;
|
||
|
margin: 0 0 10px;
|
||
|
font-size: 13px;
|
||
|
line-height: 1.42857143;
|
||
|
color: #333;
|
||
|
word-break: break-all;
|
||
|
word-wrap: break-word;
|
||
|
background-color: #f5f5f5;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.table {
|
||
|
width: 100%;
|
||
|
max-width: 100%;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.table > thead > tr > th,
|
||
|
.table > tbody > tr > th,
|
||
|
.table > tfoot > tr > th,
|
||
|
.table > thead > tr > td,
|
||
|
.table > tbody > tr > td,
|
||
|
.table > tfoot > tr > td {
|
||
|
padding: 8px;
|
||
|
line-height: 1.42857143;
|
||
|
vertical-align: top;
|
||
|
border-top: 1px solid #ddd;
|
||
|
}
|
||
|
|
||
|
.table > thead > tr > th {
|
||
|
vertical-align: bottom;
|
||
|
border-bottom: 2px solid #ddd;
|
||
|
}
|
||
|
|
||
|
.table > caption + thead > tr:first-child > th,
|
||
|
.table > colgroup + thead > tr:first-child > th,
|
||
|
.table > thead:first-child > tr:first-child > th,
|
||
|
.table > caption + thead > tr:first-child > td,
|
||
|
.table > colgroup + thead > tr:first-child > td,
|
||
|
.table > thead:first-child > tr:first-child > td {
|
||
|
border-top: 0;
|
||
|
}
|