Skip to content

Commit

Permalink
add @media queries to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Oct 31, 2014
1 parent b1ec570 commit fe24bcb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,21 @@
<link rel="stylesheet" href="http://necolas.github.io/normalize.css/3.0.1/normalize.css">
<link rel="stylesheet" href="react-video.css">
<style>
@media screen and (min-width: 600px) {
.content {
width: 100%;
}
}

@media screen and (min-width: 960px) {
.content {
width: 70%;
}
}

#video-youtube,
#video-vimeo {
width: 500px;
width: 80%;
margin: 50px;
}
</style>
Expand Down

0 comments on commit fe24bcb

Please sign in to comment.