Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.8 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) print stylesheet
  6. * (de) Druck-Stylesheet
  7. *
  8. * @copyright Copyright 2005-2009, Dirk Jesse
  9. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  10. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  11. * @link http://www.yaml.de
  12. * @package yaml
  13. * @version 3.1
  14. * @revision $Revision: 343 $
  15. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  16. */
  17. /* import print base styles | Basisformatierung für Drucklayout einbinden */
  18. @import url(../core/print_base.css);
  19. @media print
  20. {
  21. /**
  22. * @section column selection
  23. * (en) individually switch on/off any content column for printing
  24. * (de) (De)aktivierung der Contentspalten für den Ausdruck
  25. *
  26. * @see http://www.yaml.de/en/documentation/css-components/layout-for-print-media.html
  27. */
  28. #col1, #col1_content { float:none; width: 100%; margin: 0; padding: 0; border: 0; }
  29. #col2 { display:none; }
  30. #col3 { display:none; }
  31. /*------------------------------------------------------------------------------------------------------*/
  32. /* (en) optional output of acronyms and abbreviations*/
  33. /* (de) optionale Ausgabe von Auszeichnung von Abkürzungen */
  34. /*
  35. abbr[title]:after, acronym[title]:after { content: '(' attr(title) ')'; }
  36. */
  37. /*------------------------------------------------------------------------------------------------------*/
  38. /* (en) optional URL output of hyperlinks in print layout */
  39. /* (de) optionale Ausgabe der URLs von Hyperlinks */
  40. /*
  41. a[href]:after {
  42. content:" <URL: "attr(href)">";
  43. color:#444;
  44. background:inherit;
  45. font-style:italic;
  46. }
  47. */
  48. }