Revised Reveal template toward Helvetica on white

This commit is contained in:
Nathan Schneider
2025-11-30 16:30:20 -05:00
parent 8874c2edcd
commit c08822407e
+21 -22
View File
@@ -11,24 +11,23 @@ section.has-light-background, section.has-light-background h1, section.has-light
* GLOBAL STYLES
*********************************************/
body {
background: #222;
background-color: #222;
background-image: linear-gradient(black, black);
background: light-gray;
background-color: light-gray;
}
.reveal {
font-family: "DIN-Regular", Helvetica, sans-serif; /* ntnsndr adjusted */
font-family: Helvetica, sans-serif; /* ntnsndr adjusted */
font-size: 30px;
font-weight: normal;
color: #fff; }
color: black; }
.reveal:empty {
padding: 0 0 0 0;
}
::selection {
color: #fff;
background: #bee4fd;
color: black;
background: yellow;
text-shadow: none; }
.reveal .slides > section,
@@ -51,9 +50,9 @@ body {
.reveal h6 {
display: table;
margin: 0px auto 30px auto;
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
color: #fff;
font-family: "DIN-Regular", Helvetica, sans-serif; /* ntnsndr adjusted */
background-color: light-gray; /* ntnsndr addition */
color: black;
font-family: Helvetica, sans-serif; /* ntnsndr adjusted */
font-weight: 600;
line-height: 1.2;
letter-spacing: normal;
@@ -81,7 +80,7 @@ body {
.reveal p, .reveal figcaption {
display: table;
margin: 0px auto 0px auto;
background-color: rgba(0,0,0,0.8);
background-color: light-gray;
padding: 10px 10px 10px 10px;
line-height: 1.3; }
@@ -107,11 +106,13 @@ body {
margin: 0 0 0 1em; }
.reveal ol {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
padding: 0 5px 0 5px;
list-style-type: decimal; }
.reveal ul {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
padding: 0 5px 0 5px;
list-style-type: disc; }
.reveal ul ul {
@@ -138,14 +139,13 @@ body {
quotes: none; }
.reveal blockquote {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
display: block;
position: relative;
width: 90%;
margin: 20px auto;
padding: 10px;
font-style: italic;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
.reveal blockquote p:first-child,
@@ -156,7 +156,7 @@ body {
font-style: italic; }
.reveal pre {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
display: block;
position: relative;
width: 90%;
@@ -169,7 +169,7 @@ body {
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
.reveal code {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
font-family: monospace; }
.reveal pre code {
@@ -212,7 +212,7 @@ body {
vertical-align: sub; }
.reveal small {
background-color: rgba(0,0,0,0.8); /* ntnsndr addition */
background-color: light-gray; /* ntnsndr addition */
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
@@ -237,15 +237,14 @@ body {
border: none; }
.reveal .roll span:after {
color: #fff;
background: #068de9; }
color: purple;}
/*********************************************
* IMAGES
*********************************************/
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
background: light-gray;
border: 4px solid #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
@@ -259,7 +258,7 @@ body {
transition: all .15s linear; }
.reveal a:hover img {
background: rgba(255, 255, 255, 0.2);
background: light-gray;
border-color: #42affa;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }