diff options
Diffstat (limited to 'css/theme/default.css')
-rw-r--r-- | css/theme/default.css | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/css/theme/default.css b/css/theme/default.css index a234861..f734cae 100644 --- a/css/theme/default.css +++ b/css/theme/default.css @@ -59,7 +59,7 @@ body { /********************************************* * LINKS *********************************************/ -.reveal a:not(.image) { +.reveal a { color: #13daec; text-decoration: none; -webkit-transition: color .15s ease; @@ -68,7 +68,7 @@ body { -o-transition: color .15s ease; transition: color .15s ease; } -.reveal a:not(.image):hover { +.reveal a:hover { color: #71e9f4; text-shadow: none; border: none; } @@ -84,12 +84,14 @@ body { margin: 15px 0px; background: rgba(255, 255, 255, 0.12); border: 4px solid #eeeeee; - 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; - -o-transition: all .2s linear; - transition: all .2s linear; } + box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } + +.reveal a img { + -webkit-transition: all .15s linear; + -moz-transition: all .15s linear; + -ms-transition: all .15s linear; + -o-transition: all .15s linear; + transition: all .15s linear; } .reveal a:hover img { background: rgba(255, 255, 255, 0.2); |