Skip to content

Commit

Permalink
Restore keyboard shortcuts visibility
Browse files Browse the repository at this point in the history
Update CSS so that keyboard shortcuts are properly legible when
pressing "?" (question mark character).

Fixes #5.
  • Loading branch information
fghaas committed Apr 10, 2016
1 parent 4a99a51 commit 726dcf8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions css/reveal-override.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.reveal {
font-family: "Open Sans Condensed", sans-serif;
font-weight: normal;
/* Make sure keyboard shortcuts help is visible */
/* Blow iframe up to full screen size */ }
.reveal section img {
/* Disable background 4px border around images */
Expand All @@ -15,6 +16,8 @@
max-width: 80%;
max-height: 80%;
margin: 2%; }
.reveal .overlay-help .viewport th, .reveal .overlay-help .viewport td {
color: white; }
.reveal iframe {
height: 90%;
width: 100%;
Expand Down
7 changes: 7 additions & 0 deletions css/reveal-override.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
margin: 2%;
}

/* Make sure keyboard shortcuts help is visible */
.overlay-help .viewport {
th, td {
color: white;
}
}

/* Blow iframe up to full screen size */
iframe {
height: 90%;
Expand Down

0 comments on commit 726dcf8

Please sign in to comment.