Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipefernandes/8055357 to your computer and use it in GitHub Desktop.
Save felipefernandes/8055357 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.logo {
width:300px;
height:100px;
background:red;
transition: width 2s;
-webkit-transition: width 2s; /* Safari */
}
@media all and (min-width: 720px) {
.logo {
width:250px;
}
}
@media all and (min-width: 520px) {
.logo {
width:150px;
}
}
</style>
</head>
<body>
<div class="logo"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment