From 943ef2e8e436a32ce5dc956c4d855866cd644cc1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 5 Dec 2011 23:06:10 -0600 Subject: 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 --- sitestatic/archweb-print.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sitestatic/archweb-print.css (limited to 'sitestatic/archweb-print.css') diff --git a/sitestatic/archweb-print.css b/sitestatic/archweb-print.css new file mode 100644 index 00000000..2946de54 --- /dev/null +++ b/sitestatic/archweb-print.css @@ -0,0 +1,11 @@ +/* + * ARCH LINUX DJANGO (MAIN SITE) + * + * Stylesheet for printing + */ + +/* general styling */ +body { font: normal 100% sans-serif; } +#content { font-size: 0.812em; } +#archnavbarmenu, #archdev-navbar, .admin-actions { display: none; } + -- cgit v1.2.3