Skip to content

Commit

Permalink
Media queries for textarea not overlapping header
Browse files Browse the repository at this point in the history
  • Loading branch information
DrummerHead committed Apr 13, 2012
1 parent 953ed04 commit bb8062d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions stijl.css
@@ -1,5 +1,6 @@
html {
font-size: 100%;
min-width: 567px;
}
body {
margin: 0;
Expand Down Expand Up @@ -61,3 +62,24 @@ textarea {
margin: 1%;
padding: 1em;
}

@media (max-width: 1447px) {
textarea {
width: 87%;
}
}

@media (max-width: 1047px) {
textarea {
width: 84%;
}
header {
right: 4em;
}
}

@media (max-width: 800px) {
textarea {
width: 81%;
}
}

0 comments on commit bb8062d

Please sign in to comment.