rc-web@42
|
1 /**
|
rc-web@42
|
2 * A simple theme for reveal.js presentations, similar
|
rc-web@42
|
3 * to the default theme. The accent color is darkblue;
|
rc-web@42
|
4 * do a find-replace to change it.
|
rc-web@42
|
5 *
|
rc-web@42
|
6 * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
|
rc-web@42
|
7 * 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
|
8 */
|
rc-web@42
|
9
|
rc-web@42
|
10 /*********************************************
|
rc-web@42
|
11 * FONT-FACE DEFINITIONS
|
rc-web@42
|
12 *********************************************/
|
rc-web@42
|
13
|
rc-web@42
|
14 @import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
|
rc-web@42
|
15
|
rc-web@42
|
16
|
rc-web@42
|
17 /*********************************************
|
rc-web@42
|
18 * GLOBAL STYLES
|
rc-web@42
|
19 *********************************************/
|
rc-web@42
|
20
|
rc-web@42
|
21 body {
|
rc-web@42
|
22 font-family: 'Lato', Times, 'Times New Roman', serif;
|
rc-web@42
|
23 font-size: 36px;
|
rc-web@42
|
24 font-weight: 200;
|
rc-web@42
|
25 letter-spacing: -0.02em;
|
rc-web@42
|
26 color: black !important;
|
rc-web@42
|
27
|
rc-web@42
|
28 background: white;
|
rc-web@42
|
29 }
|
rc-web@42
|
30
|
rc-web@42
|
31 ::-moz-selection {
|
rc-web@42
|
32 background:rgba(0, 0, 0, 0.99);
|
rc-web@42
|
33 color: white;
|
rc-web@42
|
34 }
|
rc-web@42
|
35 ::-webkit-selection {
|
rc-web@42
|
36 background:rgba(0, 0, 0, 0.99);
|
rc-web@42
|
37 color: white;
|
rc-web@42
|
38 }
|
rc-web@42
|
39 ::selection {
|
rc-web@42
|
40 background:rgba(0, 0, 0, 0.99);
|
rc-web@42
|
41 color: white;
|
rc-web@42
|
42 }
|
rc-web@42
|
43
|
rc-web@42
|
44 /*********************************************
|
rc-web@42
|
45 * HEADERS
|
rc-web@42
|
46 *********************************************/
|
rc-web@42
|
47
|
rc-web@42
|
48 .reveal h1,
|
rc-web@42
|
49 .reveal h2,
|
rc-web@42
|
50 .reveal h3,
|
rc-web@42
|
51 .reveal h4,
|
rc-web@42
|
52 .reveal h5,
|
rc-web@42
|
53 .reveal h6 {
|
rc-web@42
|
54 margin: 0 0 20px 0;
|
rc-web@42
|
55 color: black;
|
rc-web@42
|
56 font-family: 'News Cycle', Impact, sans-serif;
|
rc-web@42
|
57 line-height: 0.9em;
|
rc-web@42
|
58
|
rc-web@42
|
59 text-transform: uppercase;
|
rc-web@42
|
60 }
|
rc-web@42
|
61
|
rc-web@42
|
62
|
rc-web@42
|
63 /*********************************************
|
rc-web@42
|
64 * LINKS
|
rc-web@42
|
65 *********************************************/
|
rc-web@42
|
66
|
rc-web@42
|
67 .reveal a:not(.image) {
|
rc-web@42
|
68 color: darkblue;
|
rc-web@42
|
69 text-decoration: none;
|
rc-web@42
|
70
|
rc-web@42
|
71 -webkit-transition: color .15s ease;
|
rc-web@42
|
72 -moz-transition: color .15s ease;
|
rc-web@42
|
73 -ms-transition: color .15s ease;
|
rc-web@42
|
74 -o-transition: color .15s ease;
|
rc-web@42
|
75 transition: color .15s ease;
|
rc-web@42
|
76 }
|
rc-web@42
|
77 .reveal a:not(.image):hover {
|
rc-web@42
|
78 text-shadow: none;
|
rc-web@42
|
79 border: none;
|
rc-web@42
|
80 border-radius: 2px;
|
rc-web@42
|
81 }
|
rc-web@42
|
82
|
rc-web@42
|
83 .reveal .roll span:after {
|
rc-web@42
|
84 color: #fff;
|
rc-web@42
|
85 background: darkblue;
|
rc-web@42
|
86 }
|
rc-web@42
|
87
|
rc-web@42
|
88
|
rc-web@42
|
89 /*********************************************
|
rc-web@42
|
90 * IMAGES
|
rc-web@42
|
91 *********************************************/
|
rc-web@42
|
92
|
rc-web@42
|
93 .reveal section img {
|
rc-web@42
|
94 margin: 30px 0 0 0;
|
rc-web@42
|
95 background: rgba(255,255,255,0.12);
|
rc-web@42
|
96 border: 4px solid #eee;
|
rc-web@42
|
97
|
rc-web@42
|
98 -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
rc-web@42
|
99 -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
rc-web@42
|
100 box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
rc-web@42
|
101
|
rc-web@42
|
102 -webkit-transition: all .2s linear;
|
rc-web@42
|
103 -moz-transition: all .2s linear;
|
rc-web@42
|
104 -ms-transition: all .2s linear;
|
rc-web@42
|
105 -o-transition: all .2s linear;
|
rc-web@42
|
106 transition: all .2s linear;
|
rc-web@42
|
107 }
|
rc-web@42
|
108
|
rc-web@42
|
109 .reveal a:hover img {
|
rc-web@42
|
110 background: rgba(255,255,255,0.2);
|
rc-web@42
|
111 border-color: darkblue;
|
rc-web@42
|
112
|
rc-web@42
|
113 -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
rc-web@42
|
114 -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
rc-web@42
|
115 box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
rc-web@42
|
116 }
|
rc-web@42
|
117
|
rc-web@42
|
118
|
rc-web@42
|
119 /*********************************************
|
rc-web@42
|
120 * NAVIGATION CONTROLS
|
rc-web@42
|
121 *********************************************/
|
rc-web@42
|
122
|
rc-web@42
|
123 .reveal .controls a {
|
rc-web@42
|
124 color: black;
|
rc-web@42
|
125 }
|
rc-web@42
|
126 .reveal .controls a.enabled {
|
rc-web@42
|
127 color: darkblue;
|
rc-web@42
|
128 opacity: 1;
|
rc-web@42
|
129 text-shadow: 0px 0px 2px hsla(185, 45%, 70%, 0.3);
|
rc-web@42
|
130 }
|
rc-web@42
|
131
|
rc-web@42
|
132
|
rc-web@42
|
133 /*********************************************
|
rc-web@42
|
134 * PROGRESS BAR
|
rc-web@42
|
135 *********************************************/
|
rc-web@42
|
136
|
rc-web@42
|
137 .reveal .progress {
|
rc-web@42
|
138 background: rgba(0,0,0,0.2);
|
rc-web@42
|
139 }
|
rc-web@42
|
140 .reveal .progress span {
|
rc-web@42
|
141 background: darkblue;
|
rc-web@42
|
142
|
rc-web@42
|
143 -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
rc-web@42
|
144 -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
rc-web@42
|
145 -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
rc-web@42
|
146 -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
rc-web@42
|
147 transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
rc-web@42
|
148 }
|
rc-web@42
|
149
|
rc-web@42
|
150
|