alongslide 0.9.7 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/LICENSE +21 -0
- data/alongslide.gemspec +1 -1
- data/app/assets/stylesheets/alongslide.sass +32 -28
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YmQwYjM1MzE0NDVmMTE0NDc2MDMzMDJiYmU2NTM2MDhjZmJhNWZkMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NGZhNzFkOGE5MWQ1ODNmMmFmZDRhOGEyMDFkZDRiOTVlNTQwMTQyNQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDhmZjBkMzNhN2I1ZTgwOTkzNjRkYWJiODI0ZWFlYTBhZmE2ZjNhNjlmNmYw
|
10
|
+
YjQyZmU0NmI0MTBlZmVhNTc0ZWQ4ZTYxYWYzM2U1Zjc5MzQzNGU4ODgzMmQ5
|
11
|
+
ZmE4NjJkOWY4YjNjMjAxYjM1NmE1YjQwMTM4Y2UwNjdhNWIwODA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTk1Mzc3ODEyYTczYjQ1NmRjZWZhMTMzZWMzOGJiMTVlMGU5NTU3NWUyNWMw
|
14
|
+
MjNiMjc1MmY5MWU2MzI0OWQzZmI0YWYzOWQ1ZDQwZjlkMjJjODRiNmYwODc4
|
15
|
+
YzhhOTcwZWJiMjQxYTIyNzE4YjFmOWE1MDRkMTFlZWU5NTIwYWI=
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013-2014 Canopy Canopy Canopy, Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/alongslide.gemspec
CHANGED
@@ -67,6 +67,9 @@ $white-bg: #fbfbfb
|
|
67
67
|
text-rendering: optimizelegibility
|
68
68
|
text-transform: auto
|
69
69
|
|
70
|
+
em
|
71
|
+
line-height: 1em
|
72
|
+
|
70
73
|
// One frame is one screen's worth.
|
71
74
|
//
|
72
75
|
// Panels, flow, backgrounds (front-to-back order) all contain frames.
|
@@ -98,6 +101,10 @@ $white-bg: #fbfbfb
|
|
98
101
|
position: absolute
|
99
102
|
// > div
|
100
103
|
// height: $full-bleed - $frame-height-padding
|
104
|
+
.section
|
105
|
+
&[data-section-flow-idx]
|
106
|
+
p:first-child
|
107
|
+
text-indent: 0 !important
|
101
108
|
|
102
109
|
// Left/right columns
|
103
110
|
//
|
@@ -313,32 +320,29 @@ $white-bg: #fbfbfb
|
|
313
320
|
hyphens: auto
|
314
321
|
|
315
322
|
// Footnotes
|
316
|
-
|
317
|
-
|
318
|
-
left: -25px
|
323
|
+
.als-footnote
|
324
|
+
display: none
|
319
325
|
z-index: 214748364
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
>
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
>
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
326
|
+
position: absolute
|
327
|
+
width: 100%
|
328
|
+
padding: 4% 0 4% 0
|
329
|
+
background-color: $white-bg
|
330
|
+
font-family: "FreeUniversal", Futura, "Trebuchet MS", Arial, sans-serif
|
331
|
+
font-size: 11px
|
332
|
+
> p
|
333
|
+
text-indent: 0%
|
334
|
+
padding: 2% 6% 0% 6%
|
335
|
+
.als-fn-sup
|
336
|
+
position: relative
|
337
|
+
top: -0.8em
|
338
|
+
z-index: 1000000
|
339
|
+
font-size: 13px
|
340
|
+
margin-left: -3.8%
|
341
|
+
margin-right: -3%
|
342
|
+
> .als-fn-ref
|
343
|
+
border: 15px solid rgba(0, 0, 0, 0.0)
|
344
|
+
z-index: 9999999999
|
345
|
+
margin-left: 1%
|
342
346
|
|
343
347
|
// DEBUG GRID
|
344
348
|
//
|
@@ -428,9 +432,9 @@ $white-bg: #fbfbfb
|
|
428
432
|
top: 0
|
429
433
|
width: 100%
|
430
434
|
height: 100%
|
431
|
-
background:
|
435
|
+
background: #fbfbfb
|
432
436
|
h1
|
433
|
-
font-size:
|
437
|
+
font-size: 54px
|
434
438
|
line-height: 1em
|
435
439
|
margin: auto
|
436
440
|
position: absolute
|
@@ -439,4 +443,4 @@ $white-bg: #fbfbfb
|
|
439
443
|
bottom: 0
|
440
444
|
right: 0
|
441
445
|
height: 150px
|
442
|
-
text-align: center
|
446
|
+
text-align: center
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alongslide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Florin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-10-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: redcarpet
|
@@ -75,6 +75,7 @@ extra_rdoc_files: []
|
|
75
75
|
files:
|
76
76
|
- Gemfile
|
77
77
|
- Gemfile.lock
|
78
|
+
- LICENSE
|
78
79
|
- README.md
|
79
80
|
- Rakefile
|
80
81
|
- alongslide.gemspec
|