diff options
| author | Justin J. Novack <jnovack@gmail.com> | 2012-10-07 00:33:51 -0400 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-10-24 15:00:46 +0200 |
| commit | dabe2efade2c803eee7108e7890cb7d64ce77e94 (patch) | |
| tree | 376a931e94cc904274ca991291473e386c078107 /www | |
| parent | 5e7a8bf3186efe29c487b8a32107ee8f24152a38 (diff) | |
| download | phorkie-dabe2efade2c803eee7108e7890cb7d64ce77e94.tar.gz phorkie-dabe2efade2c803eee7108e7890cb7d64ce77e94.zip | |
Provide optional widescreen.css to standardize look and feel for widths over 1200px
Diffstat (limited to 'www')
| -rw-r--r-- | www/css/widescreen.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/css/widescreen.css b/www/css/widescreen.css new file mode 100644 index 0000000..6b3e5fd --- /dev/null +++ b/www/css/widescreen.css @@ -0,0 +1,19 @@ +@media (min-width: 1200px) { + .span12, .container { + width: 1170px; + } + .navbar .container { + width: 1170px; + } +} +@media (min-width: 1400px) { + .span12, .container { + width: 1370px; + } + .navbar .container { + width: 1370px; + } + .span9 { + width: 1070px; + } +} |
