-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1043,8 +1043,9 @@ export async function wrapInReveal(reveal) { | |
<title>Sample RevealJS with CDN</title> | ||
<link href='https://fonts.googleapis.com/css?family=Lato:300,700' rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/reveal.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/theme/white.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/theme/moon.css"> | ||
<style> | ||
${getFontImports()} | ||
|
@@ -1061,6 +1062,12 @@ export async function wrapInReveal(reveal) { | |
max-width: 100%; | ||
max-height: 60vh !important; | ||
} | ||
.reveal { | ||
font-family: "Lato", serif; | ||
font-size: 32px; | ||
font-weight: 300; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="/obsidian-page.css"> | ||
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon" /> | ||
|
@@ -1101,8 +1108,8 @@ export async function wrapInReveal(reveal) { | |
// The "normal" size of the presentation, aspect ratio will | ||
// be preserved when the presentation is scaled to fit different | ||
// resolutions. Can be specified using percentage units. | ||
width: "80%", | ||
height: "80%", | ||
width: "90%", | ||
height: "90%", | ||
// Factor of the display size that should remain empty around | ||
// the content | ||
|