diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-06 06:06:10 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-06 06:06:10 +0100 |
commit | 943ef2e8e436a32ce5dc956c4d855866cd644cc1 (patch) | |
tree | 870f68873a61bcceff00e27b692abaef7542c991 /media/archnavbar | |
parent | 1c23308299f33e5b429899463eb207f07ad51403 (diff) | |
download | archweb-943ef2e8e436a32ce5dc956c4d855866cd644cc1.tar.gz archweb-943ef2e8e436a32ce5dc956c4d855866cd644cc1.tar.xz |
Convert to and enable staticfiles contrib application
This moves our site static files into the sitestatic directory if they
are shared resources, and also moves a handful of things (such as the
artwork logos) into application-specific static/ directories. This
allows the staticfiles contrib app to work after a few settings tweaks,
a run of collectstatic, and massaging the hardcoded '/media/' prefix out
of our templates.
Django 1.4 is going to make this a lot easier to move things to a CDN
and provides better template tags; for now this is setting the stage
before we can move to that.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'media/archnavbar')
-rw-r--r-- | media/archnavbar/archlogo.gif | bin | 1845 -> 0 bytes | |||
-rw-r--r-- | media/archnavbar/archlogo.png | bin | 4192 -> 0 bytes | |||
-rw-r--r-- | media/archnavbar/archnavbar.css | 33 |
3 files changed, 0 insertions, 33 deletions
diff --git a/media/archnavbar/archlogo.gif b/media/archnavbar/archlogo.gif Binary files differdeleted file mode 100644 index e1852a0..0000000 --- a/media/archnavbar/archlogo.gif +++ /dev/null diff --git a/media/archnavbar/archlogo.png b/media/archnavbar/archlogo.png Binary files differdeleted file mode 100644 index e873e94..0000000 --- a/media/archnavbar/archlogo.png +++ /dev/null diff --git a/media/archnavbar/archnavbar.css b/media/archnavbar/archnavbar.css deleted file mode 100644 index d95832b..0000000 --- a/media/archnavbar/archnavbar.css +++ /dev/null @@ -1,33 +0,0 @@ -/* - * ARCH GLOBAL NAVBAR - * - * We're forcing all generic selectors with !important - * to help prevent other stylesheets from interfering. - * - */ - -/* container for the entire bar */ -#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; } - -/* logo trickery -- GIF for IE6 and PNG for the rest */ -#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; } -/* IE6 doesn't support alpha PNGs so we serve it a GIF */ -#archnavbarlogo { background: url('archlogo.gif') no-repeat !important; } -/* and use a proper PNG for all other modern browsers */ -html > body #archnavbarlogo { background: url('archlogo.png') no-repeat !important; } - -/* move the heading/paragraph text offscreen */ -#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; } -#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; } - -/* make the link the same size as the logo */ -#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; } - -/* display the list inline, float it to the right and style it */ -#archnavbar ul { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; } -#archnavbar ul li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; } - -/* style the links */ -#archnavbar ul#archnavbarlist li a { color: #999; font-weight: bold !important; text-decoration: none !important; } -#archnavbar ul li a:hover { color: white !important; text-decoration: underline !important; } - |