rc-web@42: /** rc-web@42: * A simple theme for reveal.js presentations, similar rc-web@42: * to the default theme. The accent color is darkblue; rc-web@42: * do a find-replace to change it. rc-web@42: * rc-web@42: * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. rc-web@42: * 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. rc-web@42: */ rc-web@42: rc-web@42: /********************************************* rc-web@42: * FONT-FACE DEFINITIONS rc-web@42: *********************************************/ rc-web@42: rc-web@42: @import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700); rc-web@42: rc-web@42: rc-web@42: /********************************************* rc-web@42: * GLOBAL STYLES rc-web@42: *********************************************/ rc-web@42: rc-web@42: body { rc-web@42: font-family: 'Lato', Times, 'Times New Roman', serif; rc-web@42: font-size: 36px; rc-web@42: font-weight: 200; rc-web@42: letter-spacing: -0.02em; rc-web@42: color: black !important; rc-web@42: rc-web@42: background: white; rc-web@42: } rc-web@42: rc-web@42: ::-moz-selection { rc-web@42: background:rgba(0, 0, 0, 0.99); rc-web@42: color: white; rc-web@42: } rc-web@42: ::-webkit-selection { rc-web@42: background:rgba(0, 0, 0, 0.99); rc-web@42: color: white; rc-web@42: } rc-web@42: ::selection { rc-web@42: background:rgba(0, 0, 0, 0.99); rc-web@42: color: white; rc-web@42: } rc-web@42: rc-web@42: /********************************************* rc-web@42: * HEADERS rc-web@42: *********************************************/ rc-web@42: rc-web@42: .reveal h1, rc-web@42: .reveal h2, rc-web@42: .reveal h3, rc-web@42: .reveal h4, rc-web@42: .reveal h5, rc-web@42: .reveal h6 { rc-web@42: margin: 0 0 20px 0; rc-web@42: color: black; rc-web@42: font-family: 'News Cycle', Impact, sans-serif; rc-web@42: line-height: 0.9em; rc-web@42: rc-web@42: text-transform: uppercase; rc-web@42: } rc-web@42: rc-web@42: rc-web@42: /********************************************* rc-web@42: * LINKS rc-web@42: *********************************************/ rc-web@42: rc-web@42: .reveal a:not(.image) { rc-web@42: color: darkblue; rc-web@42: text-decoration: none; rc-web@42: rc-web@42: -webkit-transition: color .15s ease; rc-web@42: -moz-transition: color .15s ease; rc-web@42: -ms-transition: color .15s ease; rc-web@42: -o-transition: color .15s ease; rc-web@42: transition: color .15s ease; rc-web@42: } rc-web@42: .reveal a:not(.image):hover { rc-web@42: text-shadow: none; rc-web@42: border: none; rc-web@42: border-radius: 2px; rc-web@42: } rc-web@42: rc-web@42: .reveal .roll span:after { rc-web@42: color: #fff; rc-web@42: background: darkblue; rc-web@42: } rc-web@42: rc-web@42: rc-web@42: /********************************************* rc-web@42: * IMAGES rc-web@42: *********************************************/ rc-web@42: rc-web@42: .reveal section img { rc-web@42: margin: 30px 0 0 0; rc-web@42: background: rgba(255,255,255,0.12); rc-web@42: border: 4px solid #eee; rc-web@42: rc-web@42: -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); rc-web@42: -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); rc-web@42: box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); rc-web@42: rc-web@42: -webkit-transition: all .2s linear; rc-web@42: -moz-transition: all .2s linear; rc-web@42: -ms-transition: all .2s linear; rc-web@42: -o-transition: all .2s linear; rc-web@42: transition: all .2s linear; rc-web@42: } rc-web@42: rc-web@42: .reveal a:hover img { rc-web@42: background: rgba(255,255,255,0.2); rc-web@42: border-color: darkblue; rc-web@42: rc-web@42: -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); rc-web@42: -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); rc-web@42: box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); rc-web@42: } rc-web@42: rc-web@42: rc-web@42: /********************************************* rc-web@42: * NAVIGATION CONTROLS rc-web@42: *********************************************/ rc-web@42: rc-web@42: .reveal .controls a { rc-web@42: color: black; rc-web@42: } rc-web@42: .reveal .controls a.enabled { rc-web@42: color: darkblue; rc-web@42: opacity: 1; rc-web@42: text-shadow: 0px 0px 2px hsla(185, 45%, 70%, 0.3); rc-web@42: } rc-web@42: rc-web@42: rc-web@42: /********************************************* rc-web@42: * PROGRESS BAR rc-web@42: *********************************************/ rc-web@42: rc-web@42: .reveal .progress { rc-web@42: background: rgba(0,0,0,0.2); rc-web@42: } rc-web@42: .reveal .progress span { rc-web@42: background: darkblue; rc-web@42: rc-web@42: -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); rc-web@42: -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); rc-web@42: -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); rc-web@42: -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); rc-web@42: transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); rc-web@42: } rc-web@42: rc-web@42: