mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 02:13:04 +00:00
18 lines
205 B
HTML
18 lines
205 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
background-color: red;
|
|
}
|
|
|
|
@media (min-width: 250px) {
|
|
body {
|
|
background-color: green;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|