diff options
Diffstat (limited to 'css/theme/sky.css')
-rw-r--r-- | css/theme/sky.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/css/theme/sky.css b/css/theme/sky.css index 951129a..6f60a1d 100644 --- a/css/theme/sky.css +++ b/css/theme/sky.css @@ -196,10 +196,12 @@ body { border-bottom: none; } .reveal sup { - vertical-align: super; } + vertical-align: super; + font-size: smaller; } .reveal sub { - vertical-align: sub; } + vertical-align: sub; + font-size: smaller; } .reveal small { display: inline-block; @@ -269,3 +271,10 @@ body { -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } + +/********************************************* + * PRINT BACKGROUND + *********************************************/ +@media print { + .backgrounds { + background-color: #f7fbfc; } } |