mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-10 08:08:08 -05:00
* Show boolean value of complex tests also on the integration test page * Fix formatting for video tests * Cleanup integration page layout * Update dependencies
111 lines
1.5 KiB
CSS
111 lines
1.5 KiB
CSS
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin:20px 0;
|
|
}
|
|
|
|
section {
|
|
padding:20px;
|
|
}
|
|
|
|
#mocha-stats {
|
|
background:#fff;
|
|
background:rgba(255,255,255,0.8);
|
|
}
|
|
|
|
.output,#mocha,label {
|
|
font-family:Inconsolata,Consolas,monospace;
|
|
margin:0;
|
|
}
|
|
|
|
.output ul {
|
|
margin:0;
|
|
}
|
|
|
|
.output li {
|
|
color:#854747
|
|
}
|
|
|
|
.output li.pass,
|
|
.output span.pass {
|
|
color:#090
|
|
}
|
|
|
|
.output li b {
|
|
color:#000
|
|
}
|
|
|
|
.output,#rawResults {
|
|
font:14px/1.3 Inconsolata,Consolas,monospace;
|
|
-webkit-column-count:1;
|
|
-moz-column-count:1;
|
|
column-count:1
|
|
}
|
|
|
|
.output {
|
|
border-bottom:3px solid #ccc;
|
|
padding-bottom:20px;
|
|
}
|
|
|
|
.section {
|
|
-webkit-column-break-inside:avoid;
|
|
page-break-inside:avoid;
|
|
break-inside:avoid
|
|
}
|
|
|
|
textarea {
|
|
width:100%;
|
|
min-height:150px
|
|
}
|
|
|
|
.no-csscolumns .output:after,.no-csscolumns .output:before {
|
|
content:"";
|
|
display:table;
|
|
line-height:0
|
|
}
|
|
|
|
.no-csscolumns .output:after {
|
|
clear:both
|
|
}
|
|
|
|
.no-csscolumns .output > li {
|
|
width:20%;
|
|
float:left
|
|
}
|
|
|
|
@media screen and (min-width:480px) {
|
|
.output {
|
|
-webkit-column-count:2;
|
|
-moz-column-count:2;
|
|
column-count:2
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:768px) {
|
|
.output {
|
|
-webkit-column-count:3;
|
|
-moz-column-count:3;
|
|
column-count:3
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:1020px) {
|
|
.output {
|
|
-webkit-column-count:4;
|
|
-moz-column-count:4;
|
|
column-count:4
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:1280px) {
|
|
.output {
|
|
-webkit-column-count:5;
|
|
-moz-column-count:5;
|
|
column-count:5
|
|
}
|
|
}
|