12345678910111213141516171819202122232425 |
- @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%;
- }
|