briefing 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/.gitignore +4 -0
  2. data/.gitmodules +3 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +22 -0
  5. data/README.md +95 -0
  6. data/Rakefile +26 -0
  7. data/bin/briefing +28 -0
  8. data/briefing.gemspec +19 -0
  9. data/lib/briefing/app.rb +20 -0
  10. data/lib/briefing/public/css/print/paper.css +176 -0
  11. data/lib/briefing/public/css/print/pdf.css +160 -0
  12. data/lib/briefing/public/css/reveal.css +1281 -0
  13. data/lib/briefing/public/css/reveal.min.css +7 -0
  14. data/lib/briefing/public/css/shaders/tile-flip.fs +64 -0
  15. data/lib/briefing/public/css/shaders/tile-flip.vs +141 -0
  16. data/lib/briefing/public/css/theme/README.md +5 -0
  17. data/lib/briefing/public/css/theme/beige.css +163 -0
  18. data/lib/briefing/public/css/theme/default.css +163 -0
  19. data/lib/briefing/public/css/theme/night.css +150 -0
  20. data/lib/briefing/public/css/theme/serif.css +150 -0
  21. data/lib/briefing/public/css/theme/simple.css +152 -0
  22. data/lib/briefing/public/css/theme/sky.css +156 -0
  23. data/lib/briefing/public/css/theme/source/beige.scss +50 -0
  24. data/lib/briefing/public/css/theme/source/default.scss +42 -0
  25. data/lib/briefing/public/css/theme/source/night.scss +35 -0
  26. data/lib/briefing/public/css/theme/source/serif.scss +33 -0
  27. data/lib/briefing/public/css/theme/source/simple.scss +38 -0
  28. data/lib/briefing/public/css/theme/source/sky.scss +41 -0
  29. data/lib/briefing/public/css/theme/template/mixins.scss +29 -0
  30. data/lib/briefing/public/css/theme/template/settings.scss +33 -0
  31. data/lib/briefing/public/css/theme/template/theme.scss +163 -0
  32. data/lib/briefing/public/js/reveal.js +1634 -0
  33. data/lib/briefing/public/js/reveal.min.js +8 -0
  34. data/lib/briefing/public/lib/css/zenburn.css +115 -0
  35. data/lib/briefing/public/lib/font/league_gothic-webfont.eot +0 -0
  36. data/lib/briefing/public/lib/font/league_gothic-webfont.svg +230 -0
  37. data/lib/briefing/public/lib/font/league_gothic-webfont.ttf +0 -0
  38. data/lib/briefing/public/lib/font/league_gothic-webfont.woff +0 -0
  39. data/lib/briefing/public/lib/font/league_gothic_license +2 -0
  40. data/lib/briefing/public/lib/js/classList.js +2 -0
  41. data/lib/briefing/public/lib/js/head.min.js +8 -0
  42. data/lib/briefing/public/lib/js/html5shiv.js +7 -0
  43. data/lib/briefing/public/plugin/highlight/highlight.js +14 -0
  44. data/lib/briefing/public/plugin/markdown/markdown.js +37 -0
  45. data/lib/briefing/public/plugin/markdown/showdown.js +62 -0
  46. data/lib/briefing/public/plugin/notes/notes.html +143 -0
  47. data/lib/briefing/public/plugin/notes/notes.js +98 -0
  48. data/lib/briefing/public/plugin/notes-server/client.js +57 -0
  49. data/lib/briefing/public/plugin/notes-server/index.js +58 -0
  50. data/lib/briefing/public/plugin/notes-server/notes.html +139 -0
  51. data/lib/briefing/public/plugin/postmessage/example.html +39 -0
  52. data/lib/briefing/public/plugin/postmessage/postmessage.js +42 -0
  53. data/lib/briefing/public/plugin/remotes/remotes.js +19 -0
  54. data/lib/briefing/public/plugin/zoom-js/zoom.js +251 -0
  55. data/lib/briefing/slides.rb +37 -0
  56. data/lib/briefing/version.rb +3 -0
  57. data/lib/briefing/views/index.erb +79 -0
  58. data/lib/briefing.rb +5 -0
  59. data/vendor/.gitkeep +0 -0
  60. metadata +140 -0
@@ -0,0 +1,150 @@
1
+ @import url(http://fonts.googleapis.com/css?family=Montserrat:700);
2
+ @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
3
+ /**
4
+ * Black theme for reveal.js.
5
+ *
6
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #111111;
13
+ background-color: #111111;
14
+ }
15
+
16
+ .reveal {
17
+ font-family: "Open Sans", Times, "Times New Roman", serif;
18
+ font-size: 30px;
19
+ font-weight: 200;
20
+ letter-spacing: -0.02em;
21
+ color: #eeeeee;
22
+ }
23
+
24
+ ::selection {
25
+ color: white;
26
+ background: #e7ad52;
27
+ text-shadow: none;
28
+ }
29
+
30
+ /*********************************************
31
+ * HEADERS
32
+ *********************************************/
33
+ .reveal h1,
34
+ .reveal h2,
35
+ .reveal h3,
36
+ .reveal h4,
37
+ .reveal h5,
38
+ .reveal h6 {
39
+ margin: 0 0 20px 0;
40
+ color: #eeeeee;
41
+ font-family: "Montserrat", Impact, sans-serif;
42
+ line-height: 0.9em;
43
+ letter-spacing: -0.03em;
44
+ text-transform: none;
45
+ text-shadow: none;
46
+ }
47
+
48
+ .reveal h1 {
49
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
50
+ }
51
+
52
+ /*********************************************
53
+ * LINKS
54
+ *********************************************/
55
+ .reveal a:not(.image) {
56
+ color: #e7ad52;
57
+ text-decoration: none;
58
+ -webkit-transition: color .15s ease;
59
+ -moz-transition: color .15s ease;
60
+ -ms-transition: color .15s ease;
61
+ -o-transition: color .15s ease;
62
+ transition: color .15s ease;
63
+ }
64
+
65
+ .reveal a:not(.image):hover {
66
+ color: #f3d7ac;
67
+ text-shadow: none;
68
+ border: none;
69
+ }
70
+
71
+ .reveal .roll span:after {
72
+ color: #fff;
73
+ background: #d08a1d;
74
+ }
75
+
76
+ /*********************************************
77
+ * IMAGES
78
+ *********************************************/
79
+ .reveal section img {
80
+ margin: 15px 0px;
81
+ background: rgba(255, 255, 255, 0.12);
82
+ border: 4px solid #eeeeee;
83
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
84
+ -webkit-transition: all .2s linear;
85
+ -moz-transition: all .2s linear;
86
+ -ms-transition: all .2s linear;
87
+ -o-transition: all .2s linear;
88
+ transition: all .2s linear;
89
+ }
90
+
91
+ .reveal a:hover img {
92
+ background: rgba(255, 255, 255, 0.2);
93
+ border-color: #e7ad52;
94
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
95
+ }
96
+
97
+ /*********************************************
98
+ * NAVIGATION CONTROLS
99
+ *********************************************/
100
+ .reveal .controls div.navigate-left,
101
+ .reveal .controls div.navigate-left.enabled {
102
+ border-right-color: #e7ad52;
103
+ }
104
+
105
+ .reveal .controls div.navigate-right,
106
+ .reveal .controls div.navigate-right.enabled {
107
+ border-left-color: #e7ad52;
108
+ }
109
+
110
+ .reveal .controls div.navigate-up,
111
+ .reveal .controls div.navigate-up.enabled {
112
+ border-bottom-color: #e7ad52;
113
+ }
114
+
115
+ .reveal .controls div.navigate-down,
116
+ .reveal .controls div.navigate-down.enabled {
117
+ border-top-color: #e7ad52;
118
+ }
119
+
120
+ .reveal .controls div.navigate-left.enabled:hover {
121
+ border-right-color: #f3d7ac;
122
+ }
123
+
124
+ .reveal .controls div.navigate-right.enabled:hover {
125
+ border-left-color: #f3d7ac;
126
+ }
127
+
128
+ .reveal .controls div.navigate-up.enabled:hover {
129
+ border-bottom-color: #f3d7ac;
130
+ }
131
+
132
+ .reveal .controls div.navigate-down.enabled:hover {
133
+ border-top-color: #f3d7ac;
134
+ }
135
+
136
+ /*********************************************
137
+ * PROGRESS BAR
138
+ *********************************************/
139
+ .reveal .progress {
140
+ background: rgba(0, 0, 0, 0.2);
141
+ }
142
+
143
+ .reveal .progress span {
144
+ background: #e7ad52;
145
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
146
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
147
+ -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
148
+ -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
149
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
150
+ }
@@ -0,0 +1,150 @@
1
+ /**
2
+ * A simple theme for reveal.js presentations, similar
3
+ * to the default theme. The accent color is darkblue.
4
+ *
5
+ * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6
+ * 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.
7
+ */
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #f0f1eb;
13
+ background-color: #f0f1eb;
14
+ }
15
+
16
+ .reveal {
17
+ font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
18
+ font-size: 36px;
19
+ font-weight: 200;
20
+ letter-spacing: -0.02em;
21
+ color: black;
22
+ }
23
+
24
+ ::selection {
25
+ color: white;
26
+ background: #26351c;
27
+ text-shadow: none;
28
+ }
29
+
30
+ /*********************************************
31
+ * HEADERS
32
+ *********************************************/
33
+ .reveal h1,
34
+ .reveal h2,
35
+ .reveal h3,
36
+ .reveal h4,
37
+ .reveal h5,
38
+ .reveal h6 {
39
+ margin: 0 0 20px 0;
40
+ color: #383d3d;
41
+ font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
42
+ line-height: 0.9em;
43
+ letter-spacing: 0.02em;
44
+ text-transform: none;
45
+ text-shadow: none;
46
+ }
47
+
48
+ .reveal h1 {
49
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
50
+ }
51
+
52
+ /*********************************************
53
+ * LINKS
54
+ *********************************************/
55
+ .reveal a:not(.image) {
56
+ color: #51483d;
57
+ text-decoration: none;
58
+ -webkit-transition: color .15s ease;
59
+ -moz-transition: color .15s ease;
60
+ -ms-transition: color .15s ease;
61
+ -o-transition: color .15s ease;
62
+ transition: color .15s ease;
63
+ }
64
+
65
+ .reveal a:not(.image):hover {
66
+ color: #8b7c69;
67
+ text-shadow: none;
68
+ border: none;
69
+ }
70
+
71
+ .reveal .roll span:after {
72
+ color: #fff;
73
+ background: #25211c;
74
+ }
75
+
76
+ /*********************************************
77
+ * IMAGES
78
+ *********************************************/
79
+ .reveal section img {
80
+ margin: 15px 0px;
81
+ background: rgba(255, 255, 255, 0.12);
82
+ border: 4px solid black;
83
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
84
+ -webkit-transition: all .2s linear;
85
+ -moz-transition: all .2s linear;
86
+ -ms-transition: all .2s linear;
87
+ -o-transition: all .2s linear;
88
+ transition: all .2s linear;
89
+ }
90
+
91
+ .reveal a:hover img {
92
+ background: rgba(255, 255, 255, 0.2);
93
+ border-color: #51483d;
94
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
95
+ }
96
+
97
+ /*********************************************
98
+ * NAVIGATION CONTROLS
99
+ *********************************************/
100
+ .reveal .controls div.navigate-left,
101
+ .reveal .controls div.navigate-left.enabled {
102
+ border-right-color: #51483d;
103
+ }
104
+
105
+ .reveal .controls div.navigate-right,
106
+ .reveal .controls div.navigate-right.enabled {
107
+ border-left-color: #51483d;
108
+ }
109
+
110
+ .reveal .controls div.navigate-up,
111
+ .reveal .controls div.navigate-up.enabled {
112
+ border-bottom-color: #51483d;
113
+ }
114
+
115
+ .reveal .controls div.navigate-down,
116
+ .reveal .controls div.navigate-down.enabled {
117
+ border-top-color: #51483d;
118
+ }
119
+
120
+ .reveal .controls div.navigate-left.enabled:hover {
121
+ border-right-color: #8b7c69;
122
+ }
123
+
124
+ .reveal .controls div.navigate-right.enabled:hover {
125
+ border-left-color: #8b7c69;
126
+ }
127
+
128
+ .reveal .controls div.navigate-up.enabled:hover {
129
+ border-bottom-color: #8b7c69;
130
+ }
131
+
132
+ .reveal .controls div.navigate-down.enabled:hover {
133
+ border-top-color: #8b7c69;
134
+ }
135
+
136
+ /*********************************************
137
+ * PROGRESS BAR
138
+ *********************************************/
139
+ .reveal .progress {
140
+ background: rgba(0, 0, 0, 0.2);
141
+ }
142
+
143
+ .reveal .progress span {
144
+ background: #51483d;
145
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
146
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
147
+ -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
148
+ -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
149
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
150
+ }
@@ -0,0 +1,152 @@
1
+ @import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
2
+ @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
3
+ /**
4
+ * A simple theme for reveal.js presentations, similar
5
+ * to the default theme. The accent color is darkblue.
6
+ *
7
+ * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
8
+ * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
9
+ */
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: white;
15
+ background-color: white;
16
+ }
17
+
18
+ .reveal {
19
+ font-family: "Lato", Times, "Times New Roman", serif;
20
+ font-size: 36px;
21
+ font-weight: 200;
22
+ letter-spacing: -0.02em;
23
+ color: black;
24
+ }
25
+
26
+ ::selection {
27
+ color: white;
28
+ background: rgba(0, 0, 0, 0.99);
29
+ text-shadow: none;
30
+ }
31
+
32
+ /*********************************************
33
+ * HEADERS
34
+ *********************************************/
35
+ .reveal h1,
36
+ .reveal h2,
37
+ .reveal h3,
38
+ .reveal h4,
39
+ .reveal h5,
40
+ .reveal h6 {
41
+ margin: 0 0 20px 0;
42
+ color: black;
43
+ font-family: "News Cycle", Impact, sans-serif;
44
+ line-height: 0.9em;
45
+ letter-spacing: 0.02em;
46
+ text-transform: none;
47
+ text-shadow: none;
48
+ }
49
+
50
+ .reveal h1 {
51
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
52
+ }
53
+
54
+ /*********************************************
55
+ * LINKS
56
+ *********************************************/
57
+ .reveal a:not(.image) {
58
+ color: darkblue;
59
+ text-decoration: none;
60
+ -webkit-transition: color .15s ease;
61
+ -moz-transition: color .15s ease;
62
+ -ms-transition: color .15s ease;
63
+ -o-transition: color .15s ease;
64
+ transition: color .15s ease;
65
+ }
66
+
67
+ .reveal a:not(.image):hover {
68
+ color: #0000f1;
69
+ text-shadow: none;
70
+ border: none;
71
+ }
72
+
73
+ .reveal .roll span:after {
74
+ color: #fff;
75
+ background: #00003f;
76
+ }
77
+
78
+ /*********************************************
79
+ * IMAGES
80
+ *********************************************/
81
+ .reveal section img {
82
+ margin: 15px 0px;
83
+ background: rgba(255, 255, 255, 0.12);
84
+ border: 4px solid black;
85
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
86
+ -webkit-transition: all .2s linear;
87
+ -moz-transition: all .2s linear;
88
+ -ms-transition: all .2s linear;
89
+ -o-transition: all .2s linear;
90
+ transition: all .2s linear;
91
+ }
92
+
93
+ .reveal a:hover img {
94
+ background: rgba(255, 255, 255, 0.2);
95
+ border-color: darkblue;
96
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
97
+ }
98
+
99
+ /*********************************************
100
+ * NAVIGATION CONTROLS
101
+ *********************************************/
102
+ .reveal .controls div.navigate-left,
103
+ .reveal .controls div.navigate-left.enabled {
104
+ border-right-color: darkblue;
105
+ }
106
+
107
+ .reveal .controls div.navigate-right,
108
+ .reveal .controls div.navigate-right.enabled {
109
+ border-left-color: darkblue;
110
+ }
111
+
112
+ .reveal .controls div.navigate-up,
113
+ .reveal .controls div.navigate-up.enabled {
114
+ border-bottom-color: darkblue;
115
+ }
116
+
117
+ .reveal .controls div.navigate-down,
118
+ .reveal .controls div.navigate-down.enabled {
119
+ border-top-color: darkblue;
120
+ }
121
+
122
+ .reveal .controls div.navigate-left.enabled:hover {
123
+ border-right-color: #0000f1;
124
+ }
125
+
126
+ .reveal .controls div.navigate-right.enabled:hover {
127
+ border-left-color: #0000f1;
128
+ }
129
+
130
+ .reveal .controls div.navigate-up.enabled:hover {
131
+ border-bottom-color: #0000f1;
132
+ }
133
+
134
+ .reveal .controls div.navigate-down.enabled:hover {
135
+ border-top-color: #0000f1;
136
+ }
137
+
138
+ /*********************************************
139
+ * PROGRESS BAR
140
+ *********************************************/
141
+ .reveal .progress {
142
+ background: rgba(0, 0, 0, 0.2);
143
+ }
144
+
145
+ .reveal .progress span {
146
+ background: darkblue;
147
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
148
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
149
+ -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
150
+ -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
151
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
152
+ }
@@ -0,0 +1,156 @@
1
+ @import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
2
+ @import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
3
+ /**
4
+ * Sky theme for reveal.js.
5
+ *
6
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #add9e4;
13
+ background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
14
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));
15
+ background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
16
+ background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
17
+ background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
18
+ background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
19
+ background-color: #f7fbfc;
20
+ }
21
+
22
+ .reveal {
23
+ font-family: "Open Sans", sans-serif;
24
+ font-size: 36px;
25
+ font-weight: 200;
26
+ letter-spacing: -0.02em;
27
+ color: #333333;
28
+ }
29
+
30
+ ::selection {
31
+ color: white;
32
+ background: #134674;
33
+ text-shadow: none;
34
+ }
35
+
36
+ /*********************************************
37
+ * HEADERS
38
+ *********************************************/
39
+ .reveal h1,
40
+ .reveal h2,
41
+ .reveal h3,
42
+ .reveal h4,
43
+ .reveal h5,
44
+ .reveal h6 {
45
+ margin: 0 0 20px 0;
46
+ color: #333333;
47
+ font-family: "Quicksand", sans-serif;
48
+ line-height: 0.9em;
49
+ letter-spacing: -0.08em;
50
+ text-transform: uppercase;
51
+ text-shadow: none;
52
+ }
53
+
54
+ .reveal h1 {
55
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
56
+ }
57
+
58
+ /*********************************************
59
+ * LINKS
60
+ *********************************************/
61
+ .reveal a:not(.image) {
62
+ color: #3b759e;
63
+ text-decoration: none;
64
+ -webkit-transition: color .15s ease;
65
+ -moz-transition: color .15s ease;
66
+ -ms-transition: color .15s ease;
67
+ -o-transition: color .15s ease;
68
+ transition: color .15s ease;
69
+ }
70
+
71
+ .reveal a:not(.image):hover {
72
+ color: #74a7cb;
73
+ text-shadow: none;
74
+ border: none;
75
+ }
76
+
77
+ .reveal .roll span:after {
78
+ color: #fff;
79
+ background: #264c66;
80
+ }
81
+
82
+ /*********************************************
83
+ * IMAGES
84
+ *********************************************/
85
+ .reveal section img {
86
+ margin: 15px 0px;
87
+ background: rgba(255, 255, 255, 0.12);
88
+ border: 4px solid #333333;
89
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
90
+ -webkit-transition: all .2s linear;
91
+ -moz-transition: all .2s linear;
92
+ -ms-transition: all .2s linear;
93
+ -o-transition: all .2s linear;
94
+ transition: all .2s linear;
95
+ }
96
+
97
+ .reveal a:hover img {
98
+ background: rgba(255, 255, 255, 0.2);
99
+ border-color: #3b759e;
100
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
101
+ }
102
+
103
+ /*********************************************
104
+ * NAVIGATION CONTROLS
105
+ *********************************************/
106
+ .reveal .controls div.navigate-left,
107
+ .reveal .controls div.navigate-left.enabled {
108
+ border-right-color: #3b759e;
109
+ }
110
+
111
+ .reveal .controls div.navigate-right,
112
+ .reveal .controls div.navigate-right.enabled {
113
+ border-left-color: #3b759e;
114
+ }
115
+
116
+ .reveal .controls div.navigate-up,
117
+ .reveal .controls div.navigate-up.enabled {
118
+ border-bottom-color: #3b759e;
119
+ }
120
+
121
+ .reveal .controls div.navigate-down,
122
+ .reveal .controls div.navigate-down.enabled {
123
+ border-top-color: #3b759e;
124
+ }
125
+
126
+ .reveal .controls div.navigate-left.enabled:hover {
127
+ border-right-color: #74a7cb;
128
+ }
129
+
130
+ .reveal .controls div.navigate-right.enabled:hover {
131
+ border-left-color: #74a7cb;
132
+ }
133
+
134
+ .reveal .controls div.navigate-up.enabled:hover {
135
+ border-bottom-color: #74a7cb;
136
+ }
137
+
138
+ .reveal .controls div.navigate-down.enabled:hover {
139
+ border-top-color: #74a7cb;
140
+ }
141
+
142
+ /*********************************************
143
+ * PROGRESS BAR
144
+ *********************************************/
145
+ .reveal .progress {
146
+ background: rgba(0, 0, 0, 0.2);
147
+ }
148
+
149
+ .reveal .progress span {
150
+ background: #3b759e;
151
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
152
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
153
+ -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
154
+ -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
155
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
156
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Beige theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+
15
+ // Include theme-specific fonts
16
+ @font-face {
17
+ font-family: 'League Gothic';
18
+ src: url('../../lib/font/league_gothic-webfont.eot');
19
+ src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'),
20
+ url('../../lib/font/league_gothic-webfont.woff') format('woff'),
21
+ url('../../lib/font/league_gothic-webfont.ttf') format('truetype'),
22
+ url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg');
23
+
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
29
+
30
+
31
+ // Override theme settings (see ../template/settings.scss)
32
+ $mainColor: #333;
33
+ $headingColor: #333;
34
+ $headingTextShadow: none;
35
+ $backgroundColor: #f7f3de;
36
+ $linkColor: #8b743d;
37
+ $linkColorHover: lighten( $linkColor, 20% );
38
+ $selectionBackgroundColor: rgba(79, 64, 28, 0.99);
39
+ $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
40
+
41
+ // Background generator
42
+ @mixin bodyBackground() {
43
+ @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );
44
+ }
45
+
46
+
47
+
48
+ // Theme template ------------------------------
49
+ @import "../template/theme";
50
+ // ---------------------------------------------
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Default theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+
15
+ // Include theme-specific fonts
16
+ @font-face {
17
+ font-family: 'League Gothic';
18
+ src: url('../../lib/font/league_gothic-webfont.eot');
19
+ src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'),
20
+ url('../../lib/font/league_gothic-webfont.woff') format('woff'),
21
+ url('../../lib/font/league_gothic-webfont.ttf') format('truetype'),
22
+ url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg');
23
+
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
29
+
30
+ // Override theme settings (see ../template/settings.scss)
31
+ $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
32
+
33
+ // Background generator
34
+ @mixin bodyBackground() {
35
+ @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );
36
+ }
37
+
38
+
39
+
40
+ // Theme template ------------------------------
41
+ @import "../template/theme";
42
+ // ---------------------------------------------