euphoria 0.1.4.71 → 0.1.4.72
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e2724135e9ccf1259355f9cf760eed7afabbbdf
|
|
4
|
+
data.tar.gz: 8ef8a8d44c8af32585dff01c043bf1d1a7347d91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd31828ea49dcc4dcb92e1a37f395dc40922453b76c482b272fdd30674fb38ea88d28bec0aded9c406cfef0df84eb2bfc6e6d4ef47bf99e7e03a938228b1b36e
|
|
7
|
+
data.tar.gz: b4986af136ccb7b363dfdaafe4e1c4538b0dec782d1ff3aeaaa840060225c10766e8cf1b590d2d581cb63ece48da7c3c1c93471b2601893a24c94d7632503d8e
|
|
@@ -3,6 +3,30 @@ $input_border_color: #D1D1D1
|
|
|
3
3
|
$input_focus_color: #33C3F0
|
|
4
4
|
$form_border_color: #CCC
|
|
5
5
|
|
|
6
|
+
.flash
|
|
7
|
+
.info, .success, .warning, .error
|
|
8
|
+
border: 1px solid
|
|
9
|
+
border-radius: 7px
|
|
10
|
+
margin: 1% .5%
|
|
11
|
+
padding: 2%
|
|
12
|
+
|
|
13
|
+
.info
|
|
14
|
+
color: #00529B
|
|
15
|
+
background-color: #BDE5F8
|
|
16
|
+
|
|
17
|
+
.success
|
|
18
|
+
color: #4F8A10
|
|
19
|
+
background-color: #DFF2BF
|
|
20
|
+
|
|
21
|
+
.warning
|
|
22
|
+
color: #9F6000
|
|
23
|
+
background-color: #FEEFB3
|
|
24
|
+
|
|
25
|
+
.error
|
|
26
|
+
color: #D8000C
|
|
27
|
+
background-color: #FFBABA
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
.form
|
|
7
31
|
margin: 0 auto
|
|
8
32
|
.row
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
/*=============================================================================
|
|
2
|
-
** Grids
|
|
2
|
+
** Grids (keep columns seperated to add width at will)
|
|
3
3
|
**============================================================================
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
display: none
|
|
5
|
+
.col
|
|
6
|
+
float: left
|
|
7
|
+
position: relative
|
|
8
|
+
.center
|
|
9
|
+
margin: 0 auto
|
|
11
10
|
|
|
12
|
-
/*=============================================================================
|
|
13
|
-
** spaces
|
|
14
|
-
**============================================================================
|
|
15
11
|
@for $i from 1 through 18
|
|
12
|
+
.w-#{$i}
|
|
13
|
+
width: $i / 18 * 100%
|
|
16
14
|
.gap-l-#{$i}
|
|
17
15
|
margin-left: $i / 18 * 100%
|
|
18
16
|
.gap-r-#{$i}
|
|
19
17
|
margin-right: $i / 18 * 100%
|
|
20
18
|
|
|
19
|
+
.hide
|
|
20
|
+
display: none
|
|
21
21
|
.gap-none
|
|
22
22
|
margin-left: 0
|
|
23
23
|
margin-right: 0
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
**============================================================================
|
|
29
29
|
+tablet
|
|
30
30
|
@for $i from 1 through 11
|
|
31
|
-
.
|
|
31
|
+
.w-#{$i}
|
|
32
32
|
width: 50%
|
|
33
33
|
@for $i from 12 through 18
|
|
34
|
-
.
|
|
34
|
+
.w-#{$i}
|
|
35
35
|
width: 100%
|
|
36
36
|
|
|
37
37
|
@for $i from 1 through 18
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
|
|
46
46
|
+small-tablet
|
|
47
47
|
@for $i from 1 through 4
|
|
48
|
-
.
|
|
48
|
+
.w-#{$i}
|
|
49
49
|
width: $i / 4 * 100%
|
|
50
50
|
@for $i from 5 through 9
|
|
51
|
-
.
|
|
51
|
+
.w-#{$i}
|
|
52
52
|
width: 100%
|
|
53
53
|
|
|
54
54
|
@for $i from 1 through 18
|
|
@@ -57,10 +57,12 @@
|
|
|
57
57
|
.gap-sm-none
|
|
58
58
|
margin-left: 0
|
|
59
59
|
margin-right: 0
|
|
60
|
+
.sm-tablet-hide
|
|
61
|
+
display: none
|
|
60
62
|
|
|
61
63
|
+mobile
|
|
62
64
|
@for $i from 1 through 18
|
|
63
|
-
.
|
|
65
|
+
.w-#{$i}
|
|
64
66
|
width: 100%
|
|
65
67
|
|
|
66
68
|
@for $i from 1 through 18
|
|
@@ -69,7 +71,5 @@
|
|
|
69
71
|
.gap-m-none
|
|
70
72
|
margin-left: 0
|
|
71
73
|
margin-right: 0
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
float: left
|
|
75
|
-
position: relative
|
|
74
|
+
.mobile-hide
|
|
75
|
+
display: none
|
data/lib/euphoria/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: euphoria
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.4.
|
|
4
|
+
version: 0.1.4.72
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- paul brunache
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|