You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
361 B
21 lines
361 B
@import url(http://fonts.googleapis.com/css?family=Open+Sans); |
|
|
|
@import url(something.css) screen and (color) and (max-width: 600px); |
|
#import-test { |
|
height: 10px; |
|
color: #ff0000; |
|
width: 10px; |
|
height: 30%; |
|
} |
|
@media screen and (max-width: 600px) { |
|
body { |
|
width: 100%; |
|
} |
|
} |
|
#import { |
|
color: #ff0000; |
|
} |
|
.mixin { |
|
height: 10px; |
|
color: #ff0000; |
|
}
|
|
|