briefing 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +95 -0
- data/Rakefile +26 -0
- data/bin/briefing +28 -0
- data/briefing.gemspec +19 -0
- data/lib/briefing/app.rb +20 -0
- data/lib/briefing/public/css/print/paper.css +176 -0
- data/lib/briefing/public/css/print/pdf.css +160 -0
- data/lib/briefing/public/css/reveal.css +1281 -0
- data/lib/briefing/public/css/reveal.min.css +7 -0
- data/lib/briefing/public/css/shaders/tile-flip.fs +64 -0
- data/lib/briefing/public/css/shaders/tile-flip.vs +141 -0
- data/lib/briefing/public/css/theme/README.md +5 -0
- data/lib/briefing/public/css/theme/beige.css +163 -0
- data/lib/briefing/public/css/theme/default.css +163 -0
- data/lib/briefing/public/css/theme/night.css +150 -0
- data/lib/briefing/public/css/theme/serif.css +150 -0
- data/lib/briefing/public/css/theme/simple.css +152 -0
- data/lib/briefing/public/css/theme/sky.css +156 -0
- data/lib/briefing/public/css/theme/source/beige.scss +50 -0
- data/lib/briefing/public/css/theme/source/default.scss +42 -0
- data/lib/briefing/public/css/theme/source/night.scss +35 -0
- data/lib/briefing/public/css/theme/source/serif.scss +33 -0
- data/lib/briefing/public/css/theme/source/simple.scss +38 -0
- data/lib/briefing/public/css/theme/source/sky.scss +41 -0
- data/lib/briefing/public/css/theme/template/mixins.scss +29 -0
- data/lib/briefing/public/css/theme/template/settings.scss +33 -0
- data/lib/briefing/public/css/theme/template/theme.scss +163 -0
- data/lib/briefing/public/js/reveal.js +1634 -0
- data/lib/briefing/public/js/reveal.min.js +8 -0
- data/lib/briefing/public/lib/css/zenburn.css +115 -0
- data/lib/briefing/public/lib/font/league_gothic-webfont.eot +0 -0
- data/lib/briefing/public/lib/font/league_gothic-webfont.svg +230 -0
- data/lib/briefing/public/lib/font/league_gothic-webfont.ttf +0 -0
- data/lib/briefing/public/lib/font/league_gothic-webfont.woff +0 -0
- data/lib/briefing/public/lib/font/league_gothic_license +2 -0
- data/lib/briefing/public/lib/js/classList.js +2 -0
- data/lib/briefing/public/lib/js/head.min.js +8 -0
- data/lib/briefing/public/lib/js/html5shiv.js +7 -0
- data/lib/briefing/public/plugin/highlight/highlight.js +14 -0
- data/lib/briefing/public/plugin/markdown/markdown.js +37 -0
- data/lib/briefing/public/plugin/markdown/showdown.js +62 -0
- data/lib/briefing/public/plugin/notes/notes.html +143 -0
- data/lib/briefing/public/plugin/notes/notes.js +98 -0
- data/lib/briefing/public/plugin/notes-server/client.js +57 -0
- data/lib/briefing/public/plugin/notes-server/index.js +58 -0
- data/lib/briefing/public/plugin/notes-server/notes.html +139 -0
- data/lib/briefing/public/plugin/postmessage/example.html +39 -0
- data/lib/briefing/public/plugin/postmessage/postmessage.js +42 -0
- data/lib/briefing/public/plugin/remotes/remotes.js +19 -0
- data/lib/briefing/public/plugin/zoom-js/zoom.js +251 -0
- data/lib/briefing/slides.rb +37 -0
- data/lib/briefing/version.rb +3 -0
- data/lib/briefing/views/index.erb +79 -0
- data/lib/briefing.rb +5 -0
- data/vendor/.gitkeep +0 -0
- metadata +140 -0
@@ -0,0 +1,35 @@
|
|
1
|
+
/**
|
2
|
+
* Black 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
|
+
// Include theme-specific fonts
|
15
|
+
@import url(http://fonts.googleapis.com/css?family=Montserrat:700);
|
16
|
+
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
|
17
|
+
|
18
|
+
|
19
|
+
// Override theme settings (see ../template/settings.scss)
|
20
|
+
$backgroundColor: #111;
|
21
|
+
|
22
|
+
$mainFont: 'Open Sans', Times, 'Times New Roman', serif;
|
23
|
+
$linkColor: #e7ad52;
|
24
|
+
$linkColorHover: lighten( $linkColor, 20% );
|
25
|
+
$headingFont: 'Montserrat', Impact, sans-serif;
|
26
|
+
$headingTextShadow: none;
|
27
|
+
$headingLetterSpacing: -0.03em;
|
28
|
+
$headingTextTransform: none;
|
29
|
+
$selectionBackgroundColor: #e7ad52;
|
30
|
+
$mainFontSize: 30px;
|
31
|
+
|
32
|
+
|
33
|
+
// Theme template ------------------------------
|
34
|
+
@import "../template/theme";
|
35
|
+
// ---------------------------------------------
|
@@ -0,0 +1,33 @@
|
|
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
|
+
|
10
|
+
// Default mixins and settings -----------------
|
11
|
+
@import "../template/mixins";
|
12
|
+
@import "../template/settings";
|
13
|
+
// ---------------------------------------------
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
// Override theme settings (see ../template/settings.scss)
|
18
|
+
$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
|
19
|
+
$mainColor: #000;
|
20
|
+
$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
|
21
|
+
$headingColor: #383D3D;
|
22
|
+
$headingTextShadow: none;
|
23
|
+
$headingTextTransform: none;
|
24
|
+
$backgroundColor: #F0F1EB;
|
25
|
+
$linkColor: #51483D;
|
26
|
+
$linkColorHover: lighten( $linkColor, 20% );
|
27
|
+
$selectionBackgroundColor: #26351C;
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
// Theme template ------------------------------
|
32
|
+
@import "../template/theme";
|
33
|
+
// ---------------------------------------------
|
@@ -0,0 +1,38 @@
|
|
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
|
7
|
+
*/
|
8
|
+
|
9
|
+
|
10
|
+
// Default mixins and settings -----------------
|
11
|
+
@import "../template/mixins";
|
12
|
+
@import "../template/settings";
|
13
|
+
// ---------------------------------------------
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
// Include theme-specific fonts
|
18
|
+
@import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
|
19
|
+
@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
20
|
+
|
21
|
+
|
22
|
+
// Override theme settings (see ../template/settings.scss)
|
23
|
+
$mainFont: 'Lato', Times, 'Times New Roman', serif;
|
24
|
+
$mainColor: #000;
|
25
|
+
$headingFont: 'News Cycle', Impact, sans-serif;
|
26
|
+
$headingColor: #000;
|
27
|
+
$headingTextShadow: none;
|
28
|
+
$headingTextTransform: none;
|
29
|
+
$backgroundColor: #fff;
|
30
|
+
$linkColor: #00008B;
|
31
|
+
$linkColorHover: lighten( $linkColor, 20% );
|
32
|
+
$selectionBackgroundColor: rgba(0, 0, 0, 0.99);
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
// Theme template ------------------------------
|
37
|
+
@import "../template/theme";
|
38
|
+
// ---------------------------------------------
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/**
|
2
|
+
* Sky 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
|
+
@import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
|
17
|
+
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
|
18
|
+
|
19
|
+
|
20
|
+
// Override theme settings (see ../template/settings.scss)
|
21
|
+
$mainFont: 'Open Sans', sans-serif;
|
22
|
+
$mainColor: #333;
|
23
|
+
$headingFont: 'Quicksand', sans-serif;
|
24
|
+
$headingColor: #333;
|
25
|
+
$headingLetterSpacing: -0.08em;
|
26
|
+
$headingTextShadow: none;
|
27
|
+
$backgroundColor: #f7fbfc;
|
28
|
+
$linkColor: #3b759e;
|
29
|
+
$linkColorHover: lighten( $linkColor, 20% );
|
30
|
+
$selectionBackgroundColor: #134674;
|
31
|
+
|
32
|
+
// Background generator
|
33
|
+
@mixin bodyBackground() {
|
34
|
+
@include radial-gradient( #add9e4, #f7fbfc );
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
// Theme template ------------------------------
|
40
|
+
@import "../template/theme";
|
41
|
+
// ---------------------------------------------
|
@@ -0,0 +1,29 @@
|
|
1
|
+
@mixin vertical-gradient( $top, $bottom ) {
|
2
|
+
background: $top;
|
3
|
+
background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
|
4
|
+
background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
|
5
|
+
background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
|
6
|
+
background: -o-linear-gradient( top, $top 0%, $bottom 100% );
|
7
|
+
background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
|
8
|
+
background: linear-gradient( top, $top 0%, $bottom 100% );
|
9
|
+
}
|
10
|
+
|
11
|
+
@mixin horizontal-gradient( $top, $bottom ) {
|
12
|
+
background: $top;
|
13
|
+
background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
|
14
|
+
background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
|
15
|
+
background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
|
16
|
+
background: -o-linear-gradient( left, $top 0%, $bottom 100% );
|
17
|
+
background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
|
18
|
+
background: linear-gradient( left, $top 0%, $bottom 100% );
|
19
|
+
}
|
20
|
+
|
21
|
+
@mixin radial-gradient( $outer, $inner, $type: circle ) {
|
22
|
+
background: $outer;
|
23
|
+
background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
24
|
+
background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
|
25
|
+
background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
26
|
+
background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
27
|
+
background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
28
|
+
background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
29
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
// Base settings for all themes that can optionally be
|
2
|
+
// overridden by the super-theme
|
3
|
+
|
4
|
+
// Background of the presentation
|
5
|
+
$backgroundColor: #2b2b2b;
|
6
|
+
|
7
|
+
// Primary/body text
|
8
|
+
$mainFont: 'Lato', Times, 'Times New Roman', serif;
|
9
|
+
$mainFontSize: 36px;
|
10
|
+
$mainColor: #eee;
|
11
|
+
|
12
|
+
// Headings
|
13
|
+
$headingFont: 'League Gothic', Impact, sans-serif;
|
14
|
+
$headingColor: #eee;
|
15
|
+
$headingLineHeight: 0.9em;
|
16
|
+
$headingLetterSpacing: 0.02em;
|
17
|
+
$headingTextTransform: uppercase;
|
18
|
+
$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
|
19
|
+
$heading1TextShadow: $headingTextShadow;
|
20
|
+
|
21
|
+
// Links and actions
|
22
|
+
$linkColor: #13DAEC;
|
23
|
+
$linkColorHover: lighten( $linkColor, 20% );
|
24
|
+
|
25
|
+
// Text selection
|
26
|
+
$selectionBackgroundColor: #FF5E99;
|
27
|
+
$selectionColor: #fff;
|
28
|
+
|
29
|
+
// Generates the presentation background, can be overridden
|
30
|
+
// to return a background image or gradient
|
31
|
+
@mixin bodyBackground() {
|
32
|
+
background: $backgroundColor;
|
33
|
+
}
|
@@ -0,0 +1,163 @@
|
|
1
|
+
// Base theme template for reveal.js
|
2
|
+
|
3
|
+
/*********************************************
|
4
|
+
* GLOBAL STYLES
|
5
|
+
*********************************************/
|
6
|
+
|
7
|
+
body {
|
8
|
+
@include bodyBackground();
|
9
|
+
background-color: $backgroundColor;
|
10
|
+
}
|
11
|
+
|
12
|
+
.reveal {
|
13
|
+
font-family: $mainFont;
|
14
|
+
font-size: $mainFontSize;
|
15
|
+
font-weight: 200;
|
16
|
+
letter-spacing: -0.02em;
|
17
|
+
color: $mainColor;
|
18
|
+
}
|
19
|
+
|
20
|
+
::selection {
|
21
|
+
color: $selectionColor;
|
22
|
+
background: $selectionBackgroundColor;
|
23
|
+
text-shadow: none;
|
24
|
+
}
|
25
|
+
|
26
|
+
/*********************************************
|
27
|
+
* HEADERS
|
28
|
+
*********************************************/
|
29
|
+
|
30
|
+
.reveal h1,
|
31
|
+
.reveal h2,
|
32
|
+
.reveal h3,
|
33
|
+
.reveal h4,
|
34
|
+
.reveal h5,
|
35
|
+
.reveal h6 {
|
36
|
+
margin: 0 0 20px 0;
|
37
|
+
color: $headingColor;
|
38
|
+
|
39
|
+
font-family: $headingFont;
|
40
|
+
line-height: $headingLineHeight;
|
41
|
+
letter-spacing: $headingLetterSpacing;
|
42
|
+
|
43
|
+
text-transform: $headingTextTransform;
|
44
|
+
text-shadow: $headingTextShadow;
|
45
|
+
}
|
46
|
+
|
47
|
+
.reveal h1 {
|
48
|
+
text-shadow: $heading1TextShadow;
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
/*********************************************
|
53
|
+
* LINKS
|
54
|
+
*********************************************/
|
55
|
+
|
56
|
+
.reveal a:not(.image) {
|
57
|
+
color: $linkColor;
|
58
|
+
text-decoration: none;
|
59
|
+
|
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
|
+
.reveal a:not(.image):hover {
|
67
|
+
color: $linkColorHover;
|
68
|
+
|
69
|
+
text-shadow: none;
|
70
|
+
border: none;
|
71
|
+
}
|
72
|
+
|
73
|
+
.reveal .roll span:after {
|
74
|
+
color: #fff;
|
75
|
+
background: darken( $linkColor, 15% );
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/*********************************************
|
80
|
+
* IMAGES
|
81
|
+
*********************************************/
|
82
|
+
|
83
|
+
.reveal section img {
|
84
|
+
margin: 15px 0px;
|
85
|
+
background: rgba(255,255,255,0.12);
|
86
|
+
border: 4px solid $mainColor;
|
87
|
+
|
88
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
89
|
+
|
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: $linkColor;
|
100
|
+
|
101
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
102
|
+
}
|
103
|
+
|
104
|
+
|
105
|
+
/*********************************************
|
106
|
+
* NAVIGATION CONTROLS
|
107
|
+
*********************************************/
|
108
|
+
|
109
|
+
.reveal .controls div.navigate-left,
|
110
|
+
.reveal .controls div.navigate-left.enabled {
|
111
|
+
border-right-color: $linkColor;
|
112
|
+
}
|
113
|
+
|
114
|
+
.reveal .controls div.navigate-right,
|
115
|
+
.reveal .controls div.navigate-right.enabled {
|
116
|
+
border-left-color: $linkColor;
|
117
|
+
}
|
118
|
+
|
119
|
+
.reveal .controls div.navigate-up,
|
120
|
+
.reveal .controls div.navigate-up.enabled {
|
121
|
+
border-bottom-color: $linkColor;
|
122
|
+
}
|
123
|
+
|
124
|
+
.reveal .controls div.navigate-down,
|
125
|
+
.reveal .controls div.navigate-down.enabled {
|
126
|
+
border-top-color: $linkColor;
|
127
|
+
}
|
128
|
+
|
129
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
130
|
+
border-right-color: $linkColorHover;
|
131
|
+
}
|
132
|
+
|
133
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
134
|
+
border-left-color: $linkColorHover;
|
135
|
+
}
|
136
|
+
|
137
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
138
|
+
border-bottom-color: $linkColorHover;
|
139
|
+
}
|
140
|
+
|
141
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
142
|
+
border-top-color: $linkColorHover;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
/*********************************************
|
147
|
+
* PROGRESS BAR
|
148
|
+
*********************************************/
|
149
|
+
|
150
|
+
.reveal .progress {
|
151
|
+
background: rgba(0,0,0,0.2);
|
152
|
+
}
|
153
|
+
.reveal .progress span {
|
154
|
+
background: $linkColor;
|
155
|
+
|
156
|
+
-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
157
|
+
-moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
158
|
+
-ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
159
|
+
-o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
160
|
+
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
161
|
+
}
|
162
|
+
|
163
|
+
|