NewTabPage/main.css

79 lines
1.2 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 {
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;
}
/* 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;
}
}