diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-27 09:23:23 -0500 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-27 09:23:40 -0500 |
commit | 519ee26809bfd6bd824155e999d2c9eaae6786bb (patch) | |
tree | ee00d1950ae2f9119e666cdfe3a9bc53d54ff199 /css/theme/template | |
parent | 242006a499d09dd191153b78a8b15e00f66d3702 (diff) | |
download | perl-software-in-gnu-guix-519ee26809bfd6bd824155e999d2c9eaae6786bb.tar perl-software-in-gnu-guix-519ee26809bfd6bd824155e999d2c9eaae6786bb.tar.gz |
remove left/right margin from images, tweak pdf print styles
Diffstat (limited to 'css/theme/template')
-rw-r--r-- | css/theme/template/theme.scss | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss index a818ec2..96148e3 100644 --- a/css/theme/template/theme.scss +++ b/css/theme/template/theme.scss @@ -17,21 +17,21 @@ body { color: $mainColor; } -::selection { - color: $selectionColor; - background: $selectionBackgroundColor; - text-shadow: none; +::selection { + color: $selectionColor; + background: $selectionBackgroundColor; + text-shadow: none; } /********************************************* * HEADERS *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, +.reveal h1, +.reveal h2, +.reveal h3, +.reveal h4, +.reveal h5, .reveal h6 { margin: 0 0 20px 0; color: $headingColor; @@ -39,7 +39,7 @@ body { font-family: $headingFont; line-height: $headingLineHeight; letter-spacing: $headingLetterSpacing; - + text-transform: $headingTextTransform; text-shadow: $headingTextShadow; } @@ -65,7 +65,7 @@ body { } .reveal a:not(.image):hover { color: $linkColorHover; - + text-shadow: none; border: none; } @@ -81,12 +81,12 @@ body { *********************************************/ .reveal section img { - margin: 15px; + margin: 15px 0px; background: rgba(255,255,255,0.12); border: 4px solid $mainColor; - + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); - + -webkit-transition: all .2s linear; -moz-transition: all .2s linear; -ms-transition: all .2s linear; @@ -97,7 +97,7 @@ body { .reveal a:hover img { background: rgba(255,255,255,0.2); border-color: $linkColor; - + box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |