euphoria 0.1.4.63 → 0.1.4.64

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: 94e221cb4c6cb435cae31520f2655ca4562c3e25
4
- data.tar.gz: f8da29b0061d427512796e56cda5360c9d94859b
3
+ metadata.gz: b11790144678d4962b192ccc3b2e7be5109ec11f
4
+ data.tar.gz: a6171f61b8ea8ca0738301bd7fdd60b361bc79d5
5
5
  SHA512:
6
- metadata.gz: 72fb4fc659136581ecabb2658170e03976ad7fa7a30e781ca2c06094f9412faf19ecc9203352c93a4f4ce54427cc58f0a950e2f727cde8c4586e1cf83c74a40e
7
- data.tar.gz: a29fabb8ef87dfcbea265e195b26b6acf9568e1260c541497db78275db7ffbc4780100951aaa5a77abd5e610308d3fd7e572ba0af8c48e849be26ed510769033
6
+ metadata.gz: a86a01b09b7f00801da5cf8b7192ee57ccc81883854b7e24f6cf0da9eeaac81e9aa1fb57fdc3b3065a9377643f2dc48b627179f1b657a3404d4a62e64fd2f6d0
7
+ data.tar.gz: 35c9e179b2e66d468bd36e80356cc1ab2c6c854d096b234fb33237702efe961c10fc9991c6fc98c8b5ed6f596cd193cc67bfa789f05f4e1825245198c6d56ae9
@@ -7,7 +7,8 @@ $green: #2ecc71
7
7
  $red: #e74c3c
8
8
  $grey: #bdc3c7
9
9
  $white: #fff
10
-
10
+ $orange: #F5A623
11
+
11
12
 
12
13
  /*=============================================================================
13
14
  ** Button
@@ -52,9 +53,15 @@ $white: #fff
52
53
  border: 1px solid #a5a5a5
53
54
  &:hover
54
55
  background: #5b9ede
56
+ &.orange
57
+ background-color: #f39c12
58
+ border: 1px solid $orange
59
+ &:hover
60
+ background: $orange
55
61
  &.white
56
62
  background-color: $white
57
63
  border: 1px solid #cbcbcb
58
64
  &:hover
59
65
  background: #5b9ede
66
+
60
67
 
@@ -1,60 +1,66 @@
1
- input
2
- &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
3
- height: 38px
4
- padding: 6px 10px
5
- background-color: #fff
6
- border: 1px solid #D1D1D1
7
- border-radius: 4px
8
- box-shadow: none
9
- box-sizing: border-box
10
-
11
- textarea, select
12
- height: 38px
13
- padding: 6px 10px
14
- background-color: #fff
15
- border: 1px solid #D1D1D1
16
- border-radius: 4px
17
- box-shadow: none
18
- box-sizing: border-box
19
-
20
-
21
- input
22
- &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
23
- -webkit-appearance: none
24
- -moz-appearance: none
25
- appearance: none
26
-
27
- textarea
28
- -webkit-appearance: none
29
- -moz-appearance: none
30
- appearance: none
31
- min-height: 65px
32
- padding-top: 6px
33
- padding-bottom: 6px
34
-
35
- input
36
- &[type="email"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="text"]:focus, &[type="tel"]:focus, &[type="url"]:focus, &[type="password"]:focus
37
- border: 1px solid #33C3F0
38
- outline: 0
39
-
40
- textarea:focus, select:focus
41
- border: 1px solid #33C3F0
42
- outline: 0
43
-
44
- label, legend
45
- display: block
46
- margin-bottom: .5rem
47
- font-weight: 600
48
-
49
- fieldset
50
- padding: 0
51
- border-width: 0
52
-
53
- input
54
- &[type="checkbox"], &[type="radio"]
55
- display: inline
56
-
57
- label > .label-body
58
- display: inline-block
59
- margin-left: .5rem
60
- font-weight: normal
1
+ $bg_color: white
2
+
3
+ .form
4
+ background-color: $bg_color
5
+ margin: 0 auto
6
+
7
+ input
8
+ &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
9
+ height: 38px
10
+ padding: 6px 10px
11
+ background-color: #fff
12
+ border: 1px solid #D1D1D1
13
+ border-radius: 4px
14
+ box-shadow: none
15
+ box-sizing: border-box
16
+
17
+ textarea, select
18
+ height: 38px
19
+ padding: 6px 10px
20
+ background-color: #fff
21
+ border: 1px solid #D1D1D1
22
+ border-radius: 4px
23
+ box-shadow: none
24
+ box-sizing: border-box
25
+
26
+
27
+ input
28
+ &[type="email"], &[type="number"], &[type="search"], &[type="text"], &[type="tel"], &[type="url"], &[type="password"]
29
+ -webkit-appearance: none
30
+ -moz-appearance: none
31
+ appearance: none
32
+
33
+ textarea
34
+ -webkit-appearance: none
35
+ -moz-appearance: none
36
+ appearance: none
37
+ min-height: 65px
38
+ padding-top: 6px
39
+ padding-bottom: 6px
40
+
41
+ input
42
+ &[type="email"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="text"]:focus, &[type="tel"]:focus, &[type="url"]:focus, &[type="password"]:focus
43
+ border: 1px solid #33C3F0
44
+ outline: 0
45
+
46
+ textarea:focus, select:focus
47
+ border: 1px solid #33C3F0
48
+ outline: 0
49
+
50
+ label, legend
51
+ display: block
52
+ margin-bottom: .5rem
53
+ font-weight: 600
54
+
55
+ fieldset
56
+ padding: 0
57
+ border-width: 0
58
+
59
+ input
60
+ &[type="checkbox"], &[type="radio"]
61
+ display: inline
62
+
63
+ label > .label-body
64
+ display: inline-block
65
+ margin-left: .5rem
66
+ font-weight: normal
@@ -1,4 +1,4 @@
1
1
  module Euphoria
2
- VERSION = "0.1.4.63"
2
+ VERSION = "0.1.4.64"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: euphoria
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4.63
4
+ version: 0.1.4.64
5
5
  platform: ruby
6
6
  authors:
7
7
  - paul brunache