fixed and upgraded the css tests a little
This commit is contained in:
parent
be11ab6b89
commit
7e2217ba86
@ -1,30 +1,52 @@
|
||||
div { color: black; }
|
||||
div { width: 99%; }
|
||||
* { min-width: 45em; }
|
||||
h1 { color: none; }
|
||||
h2 > a > p { color: none; }
|
||||
h3 { color: none; }
|
||||
div.class { color: blue; }
|
||||
div#id { color: green; }
|
||||
.class#id { color: purple; }
|
||||
.one.two.three { color: grey; }
|
||||
@media print { font-size: 3em; }
|
||||
@media screen { font-size: 10px; }
|
||||
@charset "utf-8";
|
||||
div {
|
||||
color: black;
|
||||
}
|
||||
div {
|
||||
width: 99%;
|
||||
}
|
||||
* {
|
||||
min-width: 45em;
|
||||
}
|
||||
h1, h2 > a > p, h3 {
|
||||
color: none;
|
||||
}
|
||||
div.class {
|
||||
color: blue;
|
||||
}
|
||||
div#id {
|
||||
color: green;
|
||||
}
|
||||
.class#id {
|
||||
color: purple;
|
||||
}
|
||||
.one.two.three {
|
||||
color: grey;
|
||||
}
|
||||
@media print {
|
||||
font-size: 3em;
|
||||
}
|
||||
@media screen {
|
||||
font-size: 10px;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Garamond Pro';
|
||||
src: url("/fonts/garamond-pro.ttf");
|
||||
}
|
||||
a:hover { color: #999999; }
|
||||
a:link { color: #999999; }
|
||||
p { text-transform: none; }
|
||||
p:first-child { text-transform: none; }
|
||||
q:lang(no) { quotes: none; }
|
||||
p + h1 { font-size: 2.2em; }
|
||||
input[type="text"] { font-weight: normal; }
|
||||
h2[title] { font-size: 100%; }
|
||||
[disabled] { color: transparent; }
|
||||
a:hover, a:link {
|
||||
color: #999;
|
||||
}
|
||||
p, p:first-child {
|
||||
text-transform: none;
|
||||
}
|
||||
q:lang(no) {
|
||||
quotes: none;
|
||||
}
|
||||
p + h1 {
|
||||
font-size: 2.2em;
|
||||
}
|
||||
#shorthands {
|
||||
border: 1px solid #000000;
|
||||
border: 1px solid #000;
|
||||
font: 12px/16px Arial;
|
||||
margin: 1px 0;
|
||||
padding: 0 auto;
|
||||
@ -38,13 +60,14 @@ h2[title] { font-size: 100%; }
|
||||
.misc {
|
||||
-moz-border-radius: 2px;
|
||||
display: -moz-inline-stack;
|
||||
width: 0.1em;
|
||||
width: .1em;
|
||||
background-color: #009998;
|
||||
background-image: url(images/image.jpg);
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
|
||||
margin: ;
|
||||
}
|
||||
#important {
|
||||
color: red !important;
|
||||
width: 100% !important;
|
||||
width: 100%!important;
|
||||
height: 20px ! important;
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
@charset "utf-8";
|
||||
div { color: black; }
|
||||
div { width: 99%; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user