timequake 1.0.7 → 1.0.8

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
  SHA256:
3
- metadata.gz: 79a7c68185e46ccb772028029ca4a09a507a541c137c462ae73eda51417311d1
4
- data.tar.gz: babfc686b75b32a660db6731005eafd0fbaf980695eb1009359cf80787bc5bab
3
+ metadata.gz: dc6ad3f780c6be47d8dd8b092f6abb0072fcd215c90cb5294923eb6bbd6f0211
4
+ data.tar.gz: d8f4dec0b0e793af54e63616445fec22cb1fecafe206262d51b81005bb578202
5
5
  SHA512:
6
- metadata.gz: a6a8cdc52f7536b5e72f5caff03a6a11bd1d2fa317eb34e3738b302244a9bd079378951fb4f0ec7b5e7501d530e58e70ce18c54e8e2d3d9a42645687c9d74c52
7
- data.tar.gz: 89707f195bd45718e4b700765386fcb8f7e6ba0ff69a1e27d5653994c4dfc7cd28796e563776ba87512ab014fdfd6e1767d589b6eb9098b7941b98bf4b707a27
6
+ metadata.gz: 12a489fb2fcf13a93a4cadf6daca3e1ee83642824d942efc44c7bcfeb2f3dfb6aed6278b326ba41c4997295f6f291ed32c0b9e6c8f090e4d710e30793c6d814b
7
+ data.tar.gz: 3b35ca728ff971933587b66924d0a1f4f87efcf03eba8eb1c5d3549f51ae324c2ff701818f570576f2ddabda8d0a2037d27d805b5ec396a7121a0075d9f56e84
@@ -13,6 +13,8 @@ $label-font-size: $copy-font-size !default;
13
13
  $file-font-size: 14px !default;
14
14
  $checkbox-width: 16px !default;
15
15
  $checkbox-margin-bottom: 8px !default;
16
+ $radio-width: 13px !default;
17
+ $radio-margin-bottom: 8px !default;
16
18
 
17
19
  form {
18
20
  input,
@@ -46,6 +48,11 @@ form {
46
48
  margin-bottom: $checkbox-margin-bottom;
47
49
  }
48
50
 
51
+ input[type='radio'] {
52
+ width: $radio-width;
53
+ margin-bottom: $radio-margin-bottom;
54
+ }
55
+
49
56
  label {
50
57
  display: inline-block;
51
58
  margin-bottom: $label-margin-bottom;
@@ -2,9 +2,7 @@ $modal-bg-color: $white !default;
2
2
  $modal-max-width: 1200px !default;
3
3
  $modal-content-padding: 20px !default;
4
4
  $modal-border-radius: 5px !default;
5
- $modal-border-color: $white !default;
6
- $modal-border-width: 5px !default;
7
- $modal-border-style: solid !default;
5
+ $modal-border: 5px solid $white !default;
8
6
  $modal-close-size: 30px !default;
9
7
  $modal-close-color: $copy-color !default;
10
8
  $modal-close-transform: rotate(45deg) !default;
@@ -19,7 +17,7 @@ $modal-close-transform: rotate(45deg) !default;
19
17
  display: flex;
20
18
  justify-content: center;
21
19
  align-items: center;
22
- z-index: 0;
20
+ z-index: -1;
23
21
  opacity: 0;
24
22
  transition: 500ms all;
25
23
 
@@ -39,9 +37,7 @@ $modal-close-transform: rotate(45deg) !default;
39
37
  background: $modal-bg-color;
40
38
  border-radius: $modal-border-radius;
41
39
  padding: $modal-content-padding;
42
- border-width: $modal-border-width;
43
- border-style: $modal-border-style;
44
- border-color: $modal-border-color;
40
+ border: $modal-border;
45
41
  max-width: $modal-max-width;
46
42
 
47
43
  .modal-close {
@@ -9,6 +9,8 @@ $heading-3-font-size: 1.17rem !default;
9
9
  $heading-4-font-size: 1.12rem !default;
10
10
  $heading-5-font-size: .83rem !default;
11
11
  $heading-6-font-size: .75rem !default;
12
+ $heading-margin: 0 0 .5rem 0 !default;
13
+ $copy-margin: 0 0 .5rem 0 !default;
12
14
  $btn-font: $copy-font !default;
13
15
 
14
16
  html {
@@ -19,7 +21,7 @@ html {
19
21
  .copy {
20
22
  font-family: $copy-font;
21
23
  color: $copy-color;
22
- margin: 0 0 .5rem 0;
24
+ margin: $copy-margin;
23
25
  font-size: $copy-font-size;
24
26
  }
25
27
 
@@ -31,7 +33,7 @@ html {
31
33
  .heading-5,
32
34
  .heading-6, {
33
35
  font-family: $heading-font;
34
- margin: 0 0 .5rem 0;
36
+ margin: $heading-margin;
35
37
  }
36
38
 
37
39
  .heading-1 { font-size: $heading-1-font-size; }
@@ -42,6 +42,8 @@ $heading-3-font-size: 1.17rem;
42
42
  $heading-4-font-size: 1.12rem;
43
43
  $heading-5-font-size: .83rem;
44
44
  $heading-6-font-size: .75rem;
45
+ $heading-margin: 0 0 .5rem 0;
46
+ $copy-margin: 0 0 .5rem 0;
45
47
 
46
48
  // BUTTONS
47
49
  $btn-min-width: 145px;
@@ -79,15 +81,15 @@ $label-font-size: $copy-font-size;
79
81
  $file-font-size: 14px;
80
82
  $checkbox-width: 16px;
81
83
  $checkbox-margin-bottom: 8px;
84
+ $radio-width: 13px;
85
+ $radio-margin-bottom: 8px;
82
86
 
83
87
  // MODALS
84
88
  $modal-bg-color: $white;
85
89
  $modal-max-width: 1200px;
86
90
  $modal-content-padding: 20px;
87
91
  $modal-border-radius: 5px;
88
- $modal-border-color: $white;
89
- $modal-border-width: 5px;
90
- $modal-border-style: solid;
92
+ $modal-border: 5px solid $white;
91
93
  $modal-close-size: 30px;
92
94
  $modal-close-color: $copy-color;
93
95
  $modal-close-transform: rotate(45deg);
@@ -1,3 +1,3 @@
1
1
  module Timequake
2
- VERSION = "1.0.7"
2
+ VERSION = "1.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timequake
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Morris
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-13 00:00:00.000000000 Z
11
+ date: 2020-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jquery-rails