1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
@media (min-with:900px) {
div[name="btn"] {
height:10px; /* comment */ }
#aeetoto {
width: 100%; background: #a37;
}
}
div, #aeetoto {
width: 100%; background-color: #ff4136;
}
body {
width: 100px;
}
@font-face {
font-family: 'Exo';
src:
url('titi'),
url('toto');
font-weight: 700;
}
.dialog INPUT[type=button]:hover,
.btn { color:#0aa; width:100%; }
div, #aeetoto {
width: 100%; background-color: #ff4136;
}
@media (min-with:900px) {
div[name="btn"] {
height:10px; /* comment */ }
#aeetoto {
width: 100%;
}
}
div:nth-of-type(5n):not(:nth-of-type(3n)):before {
content: "";
}
:root{
--main-bg-color: pink;
}
@font-face {
font-family: "Bitstream Vera Serif Bold";
src: url("/static/styles/libs/font-awesome/fonts/fontawesome-webfont.fdf491ce5ff5.woff");
}
@keyframes pulse {
0% {
background-color: #001f3f;
}
100% {
background-color: #ff4136;
}
}
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-min-device-pixel-ratio: 2) {
.module { width: 100%; }
}
@page :first {
margin: 1in;
}
@charset "UTF-8";
@import 'global.css';
/* Namespace for XHTML */
@namespace url(http://www.w3.org/1999/xhtml);
/* Namespace for SVG embedded in XHTML */
@namespace svg url(http://www.w3.org/2000/svg);
body {
font-family: "Bitstream Vera Serif Bold", serif;
}
@media print {
#ee2dd, #footer, aside {
display:none;
}
body {
font-size:120%;
color:black;
}
}
@media screen and (max-width: 640px) {
.bloc {
display:block;
clear:both;
}
}
/* On ajoute un paramètre de secours */
.component .header {
color: var(--header-color, blue);
}
@viewport {
zoom: 0.75;
min-zoom: 0.5;
max-zoom: 0.9;
}
|