diff options
author | Hakim El Hattab | 2018-04-24 14:56:03 +0200 |
---|---|---|
committer | Hakim El Hattab | 2018-04-24 14:56:03 +0200 |
commit | de41f6cf50a04ee8d8cdca2254ea919e1130590b (patch) | |
tree | b0d22dafd8b8a266849c1e6817404f178c31059b /css/theme/black.css | |
parent | 5771ae39f091966e603d3e1e5e64fbc0f387be64 (diff) |
smaller font size for sub/sup
Diffstat (limited to 'css/theme/black.css')
-rw-r--r-- | css/theme/black.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/css/theme/black.css b/css/theme/black.css index 5819669..dec6385 100644 --- a/css/theme/black.css +++ b/css/theme/black.css @@ -189,10 +189,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; @@ -262,3 +264,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: #222; } } |