18 lines
182 B
CSS
18 lines
182 B
CSS
@charset "UTF-8";
|
|
|
|
@import "import.css";
|
|
|
|
@font-face {
|
|
font-family: F;
|
|
src: local("F");
|
|
}
|
|
|
|
@media (min-width: 99px) {
|
|
.foo {
|
|
z-index: 1;
|
|
}
|
|
.bar {
|
|
z-index: 2;
|
|
}
|
|
}
|