euphoria 0.1.4.71 → 0.1.4.72

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: caf2beffb6cf85f7928dd459197c7dad889adaf5
4
- data.tar.gz: 75ff4bf84bb3a94dfed29e0e83a50d05a014cb5e
3
+ metadata.gz: 8e2724135e9ccf1259355f9cf760eed7afabbbdf
4
+ data.tar.gz: 8ef8a8d44c8af32585dff01c043bf1d1a7347d91
5
5
  SHA512:
6
- metadata.gz: 9cb09aabaf7637e9bf4c8da81f141f082733093b73bbf469eebf119c6e6b96c4caba55c8ca5ed922b22835f1b310d48f8d2d64dc4dd827f0c0d0b5670954ff7a
7
- data.tar.gz: 85d5550d4d667f6708138422547c991af09e177ab304d8dba1addc41c5da6a25251220b29bef10429b2bef6169b478bcef7eb44c99feda8ac4a9edab36c6715e
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
- @for $i from 1 through 18
6
- .c-#{$i}
7
- width: $i / 18 * 100%
8
-
9
- .hide
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
- .c-#{$i}
31
+ .w-#{$i}
32
32
  width: 50%
33
33
  @for $i from 12 through 18
34
- .c-#{$i}
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
- .c-#{$i}
48
+ .w-#{$i}
49
49
  width: $i / 4 * 100%
50
50
  @for $i from 5 through 9
51
- .c-#{$i}
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
- .c-#{$i}
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
- [class*='c-'],[class*='col-'],[class*='mobile-'],[class*='sm-tablet-'],[class*='tablet-']
74
- float: left
75
- position: relative
74
+ .mobile-hide
75
+ display: none
@@ -1,4 +1,4 @@
1
1
  module Euphoria
2
- VERSION = "0.1.4.71"
2
+ VERSION = "0.1.4.72"
3
3
  end
4
4
 
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.71
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-21 00:00:00.000000000 Z
11
+ date: 2015-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler