diff --git a/public/resources/css/_print.scss b/public/resources/css/_print.scss new file mode 100644 index 0000000000..95729607f8 --- /dev/null +++ b/public/resources/css/_print.scss @@ -0,0 +1,33 @@ +@media print { + + /* + * Print Styles + * + */ + + // HIDE FOR PRINT + .side-nav, + .main-nav, + .main-footer, + .cta-bar { + display: none !important; + } + + // ZERO OUT MARGIN & PADDING + .l-offset-nav, + .l-offset-side-nav { + padding: 0 !important; + margin: 0 !important; + } + + // BACKGROUND FOR PRINT + .hero { + background: none !important; + } + + //COLOR DARK + .hero-title, + .hero-subtitle { + color: $steel; + } +} \ No newline at end of file diff --git a/public/resources/css/main.scss b/public/resources/css/main.scss index bfb4e69698..024cfc4201 100644 --- a/public/resources/css/main.scss +++ b/public/resources/css/main.scss @@ -33,6 +33,7 @@ /* -* VENDOR +* PRINT STYLES * -*/ \ No newline at end of file +*/ +@import 'print'; diff --git a/public/resources/css/module/_code.scss b/public/resources/css/module/_code.scss index 8f4e1ab4c7..9bcfc3c662 100644 --- a/public/resources/css/module/_code.scss +++ b/public/resources/css/module/_code.scss @@ -106,7 +106,13 @@ */ @media print { - background: none; + background: $snow; + border: none; + box-shadow: none; + + ol { + background: $snow; + } .kwd { color: $steel;