Skip to content

Commit

Permalink
Fix missing font fallback in CSS themes
Browse files Browse the repository at this point in the history
In theme CSS files, 'Lucida Grande' is used as a default font. Since it will
not always be available, a font-family fallback had to be defined throughout
the CSS.
  • Loading branch information
soundmonster committed Jul 19, 2011
1 parent 3853408 commit b4336d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/landslide/themes/default/css/screen.css
Expand Up @@ -199,7 +199,7 @@ body.presenter_view div#current_presenter_notes {
}

body.presenter_view div#current_presenter_notes section {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: black;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
display: block;
Expand Down Expand Up @@ -273,7 +273,7 @@ body.three-d div.slides {
/* Content */

header:not(:only-child) {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
font-weight: normal;
font-size: 50px;
letter-spacing: -.05em;
Expand All @@ -299,7 +299,7 @@ header h2:first-child {
}

section, .slide header:only-child h1 {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: #3f3f3f;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
margin-left: 30px;
Expand Down
6 changes: 3 additions & 3 deletions src/landslide/themes/light/css/screen.css
Expand Up @@ -104,7 +104,7 @@ body.three-d div.slides {
/* Content */

header:not(:only-child) {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
font-weight: normal;
font-size: 50px;
letter-spacing: -.05em;
Expand All @@ -131,7 +131,7 @@ header h2:first-child {
}

section, .slide header:only-child h1 {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: #3f3f3f;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
margin-left: 30px;
Expand Down Expand Up @@ -466,7 +466,7 @@ body.presenter_view div#current_presenter_notes {
}

body.presenter_view div#current_presenter_notes section {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: black;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
display: block;
Expand Down
6 changes: 3 additions & 3 deletions src/landslide/themes/tango/css/screen.css
Expand Up @@ -125,7 +125,7 @@ body.three-d div.slides {
/* Content */

header:not(:only-child) {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
font-weight: normal;
font-size: 50px;
letter-spacing: -.05em;
Expand All @@ -152,7 +152,7 @@ header h2:first-child {
}

section, .slide header:only-child h1 {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: #3f3f3f;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
margin-left: 30px;
Expand Down Expand Up @@ -482,7 +482,7 @@ body.presenter_view div#current_presenter_notes {
}

body.presenter_view div#current_presenter_notes section {
font-family: 'Lucida Grande';
font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
color: black;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
display: block;
Expand Down

0 comments on commit b4336d1

Please sign in to comment.