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
|
@media screen and (min-width: 30em) {
.sidebar {
width: 10em;
}
}
@media screen and (min-width: 48em) {
.sidebar {
width: 20px;
}
}
.foo .foobar-4 {
color: #f00;
width: 400px;
}
.foo .foobar-4:first-child {
blah: 2rem;
}
.test {
width: 10px;
height: 30px;
}
.test {
width: 10px;
}
.test:hover {
background: #f00;
}
.foo {
background: #f00;
}
.foo:hover {
background: #0f0;
}
@media screen and (min-width: 1px) and (max-width: 400px) {
.foo {
display: none;
}
}
html.touch nav {
overflow-scrolling: touch;
}
html.touch nav ul li {
height: 60px;
}
html.touch nav ul li.active {
box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.2) inset;
}
.test {
padding: 10px 20px 30px;
baz: 10px 20px 30px;
}
.button {
width: 400px;
box-shadow: 1px 1px 1px #000 , 1px 1px 1px #0c0;
}
|