1
0
Files
sardines/tests/css.css
Jérémie Ducastel ca6f0446f0 fichiers de test + correctifs
correctifs de styles (polices)
2015-08-10 00:17:48 +02:00

35 lines
689 B
CSS

@media screen and (-webkit-min-device-pixel-ratio: 0) {
body:first-of-type pre::after {
content: 'highlight: ' attr(class);
}
body {
background: linear-gradient(45deg, blue, red);
}
}
@import url('print.css');
@page:right {
margin: 1cm 2cm 1.3cm 4cm;
}
@font-face {
font-family: Chunkfive; src: url('Chunkfive.otf');
}
div.text,
#content,
li[lang=ru] {
font: Tahoma, Chunkfive, sans-serif;
background: url('hatch.png') /* wtf? */;
color: #F0F0F0 !important;
width: 100%;
}
/* Tests */
.support-test {
background: blue; /* <- valid properties/values should be highlighted more */
invalid-property: invalid-color; /* <- invalid should be toned down */
}