<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.topbar {
background-color: green
}
@media screen and (min-width: 1250px) {
.topbar {
background-color: red
}
}
</style>
</head>
<body>
<div class="topbar">The top bar</div>
</body>
</html>