diff options
author | Sean Parent | 2018-04-13 07:55:02 -0700 |
---|---|---|
committer | GitHub | 2018-04-13 07:55:02 -0700 |
commit | 97c1a0ecc1bf729dbe227ed0a3af0bfd3bc38613 (patch) | |
tree | 4fd0f338f0f58a46f213daaaa4744df4980bf45b /css/theme/template/theme.scss | |
parent | 64b2a27455240e57c2cc1a90300391a3c3b91e28 (diff) | |
parent | 397feab8b4be5f8445ebb05808b507248188d4fe (diff) |
Merge branch 'dev' into master
Diffstat (limited to 'css/theme/template/theme.scss')
-rw-r--r-- | css/theme/template/theme.scss | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss index 58dc727..a43d6b2 100644 --- a/css/theme/template/theme.scss +++ b/css/theme/template/theme.scss @@ -28,8 +28,8 @@ body { text-shadow: none; } -.reveal .slides>section, -.reveal .slides>section>section { +.reveal .slides section, +.reveal .slides section>section { line-height: 1.3; font-weight: inherit; } @@ -310,7 +310,14 @@ body { .reveal .progress span { -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); - transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); + transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); } - +/********************************************* + * PRINT BACKGROUND + *********************************************/ + @media print { + .backgrounds { + background-color: $backgroundColor; + } +} |