2017-12-14 03:49:13 +00:00
|
|
|
html {
|
|
|
|
/* set these manually to fix background images on chrome mobile */
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-11-08 04:00:42 +00:00
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: white no-repeat center center fixed;
|
2017-12-09 19:10:03 +00:00
|
|
|
background-size: cover;
|
2017-11-08 04:00:42 +00:00
|
|
|
|
2017-12-09 19:10:03 +00:00
|
|
|
tab-size: 4;
|
|
|
|
-moz-tab-size: 4;
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
background-color: #FEA63C;
|
|
|
|
color: white;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 600;
|
|
|
|
height: 32px;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-group-item {
|
|
|
|
height: 32px;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2017-12-12 23:17:23 +00:00
|
|
|
.card, .btn {
|
2017-12-09 19:10:03 +00:00
|
|
|
border: 0px;
|
|
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
2017-12-09 19:10:03 +00:00
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
|
2017-12-12 23:17:54 +00:00
|
|
|
pre {
|
|
|
|
tab-size: 4;
|
|
|
|
-moz-tab-size: 4;
|
|
|
|
background-color: rgb(245, 245, 245);
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 06:04:58 +00:00
|
|
|
/* Move the navbar contents onto the same line as the toggler */
|
|
|
|
#navbarCollapse {
|
2017-12-13 00:02:21 +00:00
|
|
|
margin-top: -2.5rem !important;
|
2017-12-10 06:04:58 +00:00
|
|
|
margin-right: 50px;
|
|
|
|
}
|
|
|
|
|
2017-12-14 03:50:55 +00:00
|
|
|
.toggler-bg-dark {
|
|
|
|
background: rgba(0, 0, 0, 0.24);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggler-bg-light {
|
|
|
|
background: rgba(255, 255, 255, 0.24);
|
|
|
|
}
|
|
|
|
|
2017-12-09 19:10:03 +00:00
|
|
|
/* set the width of the main container based on element width */
|
|
|
|
@media (max-width: 34em) {
|
|
|
|
#wrapper {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 34em) {
|
|
|
|
#wrapper {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* change the number of columns in card-columns */
|
|
|
|
@media (min-width: 34em) {
|
2017-12-09 19:10:03 +00:00
|
|
|
.card-columns {
|
|
|
|
-webkit-column-count: 1;
|
|
|
|
-moz-column-count: 1;
|
|
|
|
column-count: 1;
|
|
|
|
}
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 48em) {
|
2017-12-09 19:10:03 +00:00
|
|
|
.card-columns {
|
|
|
|
-webkit-column-count: 1;
|
|
|
|
-moz-column-count: 1;
|
|
|
|
column-count: 1;
|
|
|
|
}
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 62em) {
|
2017-12-09 19:10:03 +00:00
|
|
|
.card-columns {
|
|
|
|
-webkit-column-count: 2;
|
|
|
|
-moz-column-count: 2;
|
|
|
|
column-count: 2;
|
|
|
|
}
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 75em) {
|
2017-12-09 19:10:03 +00:00
|
|
|
.card-columns {
|
|
|
|
-webkit-column-count: 2;
|
|
|
|
-moz-column-count: 2;
|
|
|
|
column-count: 2;
|
|
|
|
}
|
2017-11-08 04:00:42 +00:00
|
|
|
}
|