diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-25 16:21:52 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-25 16:21:52 -0400 |
commit | 6ea094abf5a8019cf862e5ec0ffcef3cabdacccf (patch) | |
tree | ffcb33c5f74b4647495885b6d0938f686245f747 | |
parent | 32f30d1afc798f6e1f10c42a099895c718c3649a (diff) |
Alter the header when the window/screen is too narrow.
-rw-r--r-- | style.scss | 40 |
1 files changed, 39 insertions, 1 deletions
@@ -98,7 +98,45 @@ body { } } -/*div.menu-wp_nav_menu-container { +@media (max-width: 1050px) { + body #page header#branding hgroup { + #team-name { + font-size: 60px; + } + h2 { + font-size: 30px; + } + } +} +@media (max-width: 800px) { + body #page header#branding hgroup { + height: auto; + background-image: none; + + #team-name{ + font-size: 3em; + } + h2 { + font-size: 2em; + } + #team-number { + font-size: 5em; + position: relative; + right: auto; + &:before { + text-shadow: none; + transform: none; + content: "FRC"; + color: white; + font-family: serif; + font-size: 0.2em; + vertical-align: text-top; + } + } + } +} +/* +div.menu-wp_nav_menu-container { margin: 0 .5em !important; } */
\ No newline at end of file |