cactu 0.0.17 → 0.1

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: 73b2bbef500564c16e286a628820d4ac499ca1e9
4
- data.tar.gz: e541def8300c40d00b82e171a481c7dec8ae26d6
3
+ metadata.gz: de941fd0c5b4b06ef674b5e93914e547538ec03b
4
+ data.tar.gz: 615279216f00283ba6c7a342eacba35e70efe7f1
5
5
  SHA512:
6
- metadata.gz: 14e2bb5e4926a4772faa7ba875662db3149a65ef578f8fa984d46fedcd6793282cfdfd48303bd51bd1f7582dae1f2330f60571bcb82c797b1c7c252a65007589
7
- data.tar.gz: fa00f9fadc09e3779e1ba63084774ef3f2577b18b29f4e186f9d536325e892c4509c093f18b9671d334c8d7729202a2559d03cedba3af682f587eb90494de329
6
+ metadata.gz: 6458ac822e513f2813e65f93eb91210db2702de1366055005471b8ba2b37455cb232be46bfb7db54bc4c97b288aa6f5f8da5c64c89f112e3642ac6121530c6fe
7
+ data.tar.gz: b4fcd876d0db184b87ee2364f818581971f52d332eeba8155e46da95811fda88ef9ba53cf0746faba8e2b7e387fd3edb4f1705175f42b750d71361c53c991232
@@ -7,7 +7,6 @@
7
7
  @import 'mixins/menu';
8
8
 
9
9
  @import 'ui/base';
10
- @import 'ui/anchors';
11
10
  @import 'ui/text';
12
11
  @import 'ui/buttons';
13
12
  @import 'ui/forms';
@@ -15,9 +15,13 @@ $white: #ffffff;
15
15
  $green: #6bb130;
16
16
  $yellow: #e9b70b;
17
17
  $text-color: #333333;
18
+ $bkg-text: #eeeeee;
18
19
 
19
- $anchor-color: #4664eb;
20
- $anchor-hover: #2d16d3;
20
+ $borders: #cccccc;
21
+ $input-focus: #7bb5da;
22
+
23
+ $anchor-color: #428bca;
24
+ $anchor-hover: #245783;
21
25
 
22
26
  $bkg-menu: #afd8b0;
23
27
  $color-menu: #537849;
@@ -13,7 +13,7 @@ html, body {
13
13
  width: 100%;
14
14
  height: 100%;
15
15
  line-height: 1.250em;
16
- font: 16px/20px Helvetica, Arial, sans-serif;
16
+ font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif
17
17
  color: $text-color;
18
18
  background-color: $white;
19
19
  }
@@ -1,3 +1,13 @@
1
1
  //
2
2
  // UI/BUTTONS
3
3
  // --------------------------------------------------
4
+
5
+ button {
6
+ border: 1px solid $borders;
7
+ background: $bkg-text;
8
+ padding: 5px 10px;
9
+
10
+ &:hover {
11
+ background: $bkg-text - 50;
12
+ }
13
+ }
@@ -2,30 +2,70 @@
2
2
  // UI/TEXT
3
3
  // --------------------------------------------------
4
4
 
5
- .hide-text {
6
- background-color: transparent;
7
- border: 0;
8
- color: transparent;
9
- text-shadow: none;
10
- }
11
-
12
5
  h1,
13
6
  h2,
14
7
  h3,
15
8
  h4,
16
9
  h5,
17
10
  h6 {
18
- line-height: 1;
11
+ font-weight: 500
12
+ line-height: 1.1
19
13
  padding: 0.3em 0;
20
14
  }
21
15
 
22
- h1 { font-size: 4.2em; }
23
- h2 { font-size: 3.6em; }
24
- h3 { font-size: 3.1em; }
25
- h4 { font-size: 2.6em; }
26
- h5 { font-size: 2em; }
27
- h6 { font-size: 1.5em; }
16
+ h1 { font-size: 2.4em; }
17
+ h2 { font-size: 2em; }
18
+ h3 { font-size: 1.6em; }
19
+ h4 { font-size: 1.2em; }
20
+ h5 { font-size: 1em; }
21
+ h6 { font-size: 0.8em; }
28
22
 
29
23
  p {
30
24
  padding: 0.5em 0;
31
25
  }
26
+
27
+ a {
28
+ text-decoration: none;
29
+ color: $anchor-color;
30
+
31
+ &:hover {
32
+ color: $anchor-hover;
33
+ text-decoration: underline;
34
+ }
35
+ }
36
+
37
+ ul, ol {
38
+ padding-left: 20px;
39
+ margin: 7px 0;
40
+ }
41
+
42
+ small { font-size: 85%; }
43
+
44
+ blockquote {
45
+ padding: 10px 20px;
46
+ margin: 0 0 20px;
47
+ border-left: 5px solid $bkg-text;
48
+ }
49
+
50
+ code {
51
+ padding: 2px 4px;
52
+ font-size: 90%;
53
+ white-space: nowrap;
54
+ background-color: $bkg-text;
55
+ -webkit-border-radius: 4px;
56
+ -moz-border-radius: 4px;
57
+ -ms-border-radius: 4px;
58
+ -o-border-radius: 4px;
59
+ border-radius: 4px;
60
+ }
61
+
62
+ input, textarea {
63
+ border: 1px solid $borders;
64
+ padding: 5px 10px;
65
+
66
+ &:focus {
67
+ outline: 0;
68
+ box-shadow: 0 0 5px $input-focus;
69
+ border: 1px solid $input-focus;
70
+ }
71
+ }
data/lib/cactu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Cactu
2
- VERSION = "0.0.17"
2
+ VERSION = "0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cactu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: '0.1'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Giovanni Mendoza
@@ -72,7 +72,6 @@ files:
72
72
  - app/assets/stylesheets/mixins/_fonts.scss
73
73
  - app/assets/stylesheets/mixins/_grid.scss
74
74
  - app/assets/stylesheets/mixins/_menu.scss
75
- - app/assets/stylesheets/ui/_anchors.scss
76
75
  - app/assets/stylesheets/ui/_base.scss
77
76
  - app/assets/stylesheets/ui/_buttons.scss
78
77
  - app/assets/stylesheets/ui/_forms.scss
@@ -1,12 +0,0 @@
1
- //
2
- // UI/ANCHORS
3
- // --------------------------------------------------
4
-
5
- a {
6
- text-decoration: none;
7
- color: $anchor-color;
8
-
9
- &:hover {
10
- color: $anchor-hover;
11
- }
12
- }