provideous 0.0.3 → 0.0.4
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/lib/assets/css/app.css +7 -27
- data/lib/provideous/version.rb +1 -1
- data/lib/templates/index.html.erb +17 -2
- metadata +3 -2
data/lib/assets/css/app.css
CHANGED
|
@@ -1,19 +1,5 @@
|
|
|
1
|
-
/* Artfully masterminded by ZURB */
|
|
2
|
-
|
|
3
|
-
/* --------------------------------------------------
|
|
4
|
-
Table of Contents
|
|
5
|
-
-----------------------------------------------------
|
|
6
|
-
:: Shared Styles
|
|
7
|
-
:: Page Name 1
|
|
8
|
-
:: Page Name 2
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
/* -----------------------------------------
|
|
13
|
-
Shared Styles
|
|
14
|
-
----------------------------------------- */
|
|
15
1
|
body {
|
|
16
|
-
background-color: #
|
|
2
|
+
background-color: #303030;
|
|
17
3
|
color: #eee;
|
|
18
4
|
}
|
|
19
5
|
|
|
@@ -30,16 +16,10 @@ video {
|
|
|
30
16
|
height: auto;
|
|
31
17
|
}
|
|
32
18
|
|
|
19
|
+
.breath {
|
|
20
|
+
margin-top: 1.5em;
|
|
21
|
+
}
|
|
33
22
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
/* -----------------------------------------
|
|
42
|
-
Page Name 2
|
|
43
|
-
----------------------------------------- */
|
|
44
|
-
|
|
45
|
-
|
|
23
|
+
.download {
|
|
24
|
+
padding-top: 3em;
|
|
25
|
+
}
|
data/lib/provideous/version.rb
CHANGED
|
@@ -22,14 +22,29 @@
|
|
|
22
22
|
<body>
|
|
23
23
|
<div class="row">
|
|
24
24
|
<div class="twelve columns">
|
|
25
|
-
<
|
|
25
|
+
<div class='row'>
|
|
26
|
+
<div class='ten columns'>
|
|
27
|
+
<h1><%= title %></h1>
|
|
28
|
+
</div>
|
|
29
|
+
<div class='two columns'>
|
|
30
|
+
<a class='right download' href='<%= video %>'>Download Video</a>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
26
33
|
<div class="vid">
|
|
27
34
|
<video src="<%= video %>"
|
|
28
35
|
width="100%" height="100%"
|
|
29
36
|
poster='<%= poster %>'>
|
|
30
37
|
</video>
|
|
31
38
|
</div>
|
|
32
|
-
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
<div class='row breath'>
|
|
42
|
+
<div class='twelve columns'>
|
|
43
|
+
<div class='description'>
|
|
44
|
+
<p>
|
|
45
|
+
<!-- insert description here -->
|
|
46
|
+
</p>
|
|
47
|
+
</div>
|
|
33
48
|
</div>
|
|
34
49
|
</div>
|
|
35
50
|
<script type="text/javascript">
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: provideous
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2014-05-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: paint
|
|
@@ -121,3 +121,4 @@ signing_key:
|
|
|
121
121
|
specification_version: 3
|
|
122
122
|
summary: Ruby CLI for quickly creating a one off video page
|
|
123
123
|
test_files: []
|
|
124
|
+
has_rdoc:
|