mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
29 lines
312 B
CSS
29 lines
312 B
CSS
@media not all {
|
|
div {
|
|
color: blue;
|
|
}
|
|
}
|
|
|
|
@media all {
|
|
div {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
div {
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: ghostwhite;
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
div {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
@media (min-height: 300px) and (max-height: 320px) {
|
|
div {
|
|
color: orange;
|
|
}
|
|
}
|