new postMessage-based notes plugin, moved node-based notes to notes-server (#190)
[reveal.js.git] / css / theme / beige.css
1 @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
2 /*
3  * Beige theme for reveal.js.
4  * 
5  * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
6  */
7 @font-face {
8   font-family: 'League Gothic';
9   src: url("../../lib/font/league_gothic-webfont.eot");
10   src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
11   font-weight: normal;
12   font-style: normal;
13 }
14
15 /*********************************************
16  * GLOBAL STYLES
17  *********************************************/
18 body {
19   background: white;
20   background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
21   background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
22   background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
23   background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
24   background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
25   background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
26 }
27
28 .reveal {
29   font-family: "Lato", Times, "Times New Roman", serif;
30   font-size: 36px;
31   font-weight: 200;
32   letter-spacing: -0.02em;
33   color: #333333;
34 }
35
36 ::selection {
37   color: white;
38   background: rgba(79, 64, 28, 0.99);
39   text-shadow: none;
40 }
41
42 /*********************************************
43  * HEADERS
44  *********************************************/
45 .reveal h1,
46 .reveal h2,
47 .reveal h3,
48 .reveal h4,
49 .reveal h5,
50 .reveal h6 {
51   margin: 0 0 20px 0;
52   color: #333333;
53   font-family: "League Gothic", Impact, sans-serif;
54   line-height: 0.9em;
55   letter-spacing: 0.02em;
56   text-transform: uppercase;
57   text-shadow: none;
58 }
59
60 .reveal h1 {
61   text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
62 }
63
64 /*********************************************
65  * LINKS
66  *********************************************/
67 .reveal a:not(.image) {
68   color: #8b743d;
69   text-decoration: none;
70   -webkit-transition: color .15s ease;
71   -moz-transition: color .15s ease;
72   -ms-transition: color .15s ease;
73   -o-transition: color .15s ease;
74   transition: color .15s ease;
75 }
76
77 .reveal a:not(.image):hover {
78   color: #c0a86e;
79   text-shadow: none;
80   border: none;
81   border-radius: 2px;
82 }
83
84 .reveal .roll span:after {
85   color: #fff;
86   background: #564826;
87 }
88
89 /*********************************************
90  * IMAGES
91  *********************************************/
92 .reveal section img {
93   margin: 15px;
94   background: rgba(255, 255, 255, 0.12);
95   border: 4px solid #333333;
96   box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
97   -webkit-transition: all .2s linear;
98   -moz-transition: all .2s linear;
99   -ms-transition: all .2s linear;
100   -o-transition: all .2s linear;
101   transition: all .2s linear;
102 }
103
104 .reveal a:hover img {
105   background: rgba(255, 255, 255, 0.2);
106   border-color: #8b743d;
107   box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
108 }
109
110 /*********************************************
111  * NAVIGATION CONTROLS
112  *********************************************/
113 .reveal .controls a {
114   color: #333333;
115 }
116
117 .reveal .controls a.enabled {
118   color: #c0a86e;
119   text-shadow: 0px 0px 2px rgba(144, 207, 213, 0.3);
120 }
121
122 /*********************************************
123  * PROGRESS BAR
124  *********************************************/
125 .reveal .progress {
126   background: rgba(0, 0, 0, 0.2);
127 }
128
129 .reveal .progress span {
130   background: #8b743d;
131   -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
132   -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
133   -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
134   -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
135   transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
136 }