NewTabPage/main.css

92 lines
1.4 KiB
CSS
Raw Normal View History

body {
width: 100%;
height: 100%;
background: white no-repeat center center fixed;
2017-12-09 19:10:03 +00:00
background-size: cover;
2017-12-09 19:10:03 +00:00
tab-size: 4;
-moz-tab-size: 4;
}
.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;
}
.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);
}
.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;
}
/* 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;
margin-right: 50px;
}
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%;
}
}
/* 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;
}
}
@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;
}
}
@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;
}
}
@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;
}
}