Browse Source

fixes media queries

Former-commit-id: 1038e59135
Former-commit-id: 578e0e00cc
pull/258/head
Jack Lukic 12 years ago
parent
commit
e6fef935e0
1 changed files with 14 additions and 8 deletions
  1. 22
      docs/stylesheets/example.css

22
docs/stylesheets/example.css

@ -193,20 +193,26 @@ a:hover {
}
@media only screen and (max-width : 1320px) {
@media only screen and (max-width : 1640px) {
#example .container {
width: auto;
margin: 0px 0px 0px 355px;
width: 600px;
}
#example .sticky-wrapper.stuck .peek {
margin-left: -530px;
}
}
@media only screen and (max-width : 1540px) {
@media only screen and (max-width : 1420px) {
#example .container {
width: 600px;
width: auto;
margin: 0px 0px 0px 395px;
}
#example .sticky-wrapper.stuck .peek {
margin-left: 0px;
left: 165px;
}
}
}
Loading…
Cancel
Save