Browse Source

fixes media queries

Former-commit-id: 1038e591352508beb042bfb6c59359d94403885c
Former-commit-id: 578e0e00cc29ca16dda6867018cc69a3ce1b63ea
beta
Jack Lukic 12 years ago
parent
commit
e6fef935e0
  1. 20
      docs/stylesheets/example.css

20
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 { #example .container {
width: auto; width: 600px;
margin: 0px 0px 0px 355px; }
#example .sticky-wrapper.stuck .peek {
margin-left: -530px;
} }
} }
@media only screen and (max-width : 1420px) {
@media only screen and (max-width : 1540px) {
#example .container { #example .container {
width: 600px; width: auto;
margin: 0px 0px 0px 395px;
}
#example .sticky-wrapper.stuck .peek {
margin-left: 0px;
left: 165px;
} }
} }
Loading…
Cancel
Save