diff options
author | Chris Lawrence | 2013-06-17 22:55:52 -0400 |
---|---|---|
committer | Chris Lawrence | 2013-06-17 22:55:52 -0400 |
commit | 636a6661978d04791bc899be65d7c3fd23eea125 (patch) | |
tree | 9125a36a685e36128046f5949bbafc1d61bd9019 /css/theme/source | |
parent | d3ebbf1be72dc1ea17c7c6e48f8c362feb4deb94 (diff) | |
parent | 516b1fc794513e691987372a25ac61bb79d13439 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'css/theme/source')
-rw-r--r-- | css/theme/source/serif.scss | 10 | ||||
-rw-r--r-- | css/theme/source/sky.scss | 7 |
2 files changed, 12 insertions, 5 deletions
diff --git a/css/theme/source/serif.scss b/css/theme/source/serif.scss index 06eaca8..404b8bf 100644 --- a/css/theme/source/serif.scss +++ b/css/theme/source/serif.scss @@ -1,9 +1,8 @@ /** * A simple theme for reveal.js presentations, similar - * to the default theme. The accent color is darkblue. + * to the default theme. The accent color is brown. * - * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. - * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of. + * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. */ @@ -26,8 +25,11 @@ $linkColor: #51483D; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: #26351C; +.reveal a:not(.image) { + line-height: 1.3em; +} // Theme template ------------------------------ @import "../template/theme"; -// ---------------------------------------------
\ No newline at end of file +// --------------------------------------------- diff --git a/css/theme/source/sky.scss b/css/theme/source/sky.scss index f3d7570..72a3a90 100644 --- a/css/theme/source/sky.scss +++ b/css/theme/source/sky.scss @@ -29,6 +29,11 @@ $linkColor: #3b759e; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: #134674; +// Fix links so they are not cut off +.reveal a:not(.image) { + line-height: 1.3em; +} + // Background generator @mixin bodyBackground() { @include radial-gradient( #add9e4, #f7fbfc ); @@ -38,4 +43,4 @@ $selectionBackgroundColor: #134674; // Theme template ------------------------------ @import "../template/theme"; -// ---------------------------------------------
\ No newline at end of file +// --------------------------------------------- |