yakstrap 0.0.1 → 0.0.2

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.
@@ -12,6 +12,10 @@
12
12
  outline: 0;
13
13
  @include shadow(1px);
14
14
 
15
+ &:visited{
16
+ color: $secondary_font_color;
17
+ }
18
+
15
19
  &:hover{
16
20
  color: lighten($secondary_font_color, 10%);
17
21
  background: lighten($secondary, 10%);
@@ -0,0 +1,63 @@
1
+ .btn, input[type='submit']{
2
+ display: inline-block;
3
+ background: $secondary;
4
+ padding: 5px 10px;
5
+ margin: 3px;
6
+ color: $secondary_font_color;
7
+ border: 1px darken($secondary, 20%) solid;
8
+ border-radius: 3px;
9
+ text-decoration: none;
10
+ cursor: pointer;
11
+ font-size: 14px;
12
+ outline: 0;
13
+ @include shadow(1px);
14
+
15
+ &:hover{
16
+ color: lighten($secondary_font_color, 10%);
17
+ background: lighten($secondary, 10%);
18
+ }
19
+
20
+ &:active{
21
+ color: darken($secondary_font_color, 10%);
22
+ background: darken($secondary, 10%);
23
+ @include shadow(0px);
24
+ }
25
+
26
+ &.btn-success{
27
+ background: $green;
28
+ color: $green_font_color;
29
+ &:hover{
30
+ color: lighten($green_font_color, 10%);
31
+ background: lighten($green, 10%);
32
+ }
33
+ &:active{
34
+ color: darken($green_font_color, 10%);
35
+ background: darken($green, 10%);
36
+ }
37
+ }
38
+
39
+ &.btn-danger{
40
+ background: $red;
41
+ color: $red_font_color;
42
+ &:hover{
43
+ color: lighten($red_font_color, 10%);
44
+ background: lighten($red, 10%);
45
+ }
46
+ &:active{
47
+ color: darken($red_font_color, 10%);
48
+ background: darken($red, 10%);
49
+ }
50
+ }
51
+ }
52
+
53
+ input[type='submit']{
54
+ font-family: Roboto;
55
+ padding: 4px 9px;
56
+ }
57
+
58
+ .btn-group{
59
+ &>.btn{
60
+ float: left;
61
+ }
62
+ @include clearfix;
63
+ }
@@ -44,6 +44,10 @@ h1,h2,h3,h4,h5,h6{
44
44
  float: left;
45
45
  }
46
46
 
47
+ .relative{
48
+ position: relative;
49
+ }
50
+
47
51
  .clearfix{
48
52
  @include clearfix;
49
53
  }
@@ -62,6 +66,19 @@ hr{
62
66
  background-image: linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
63
67
  }
64
68
 
69
+ .vertical-separator{
70
+ position: absolute;
71
+ top: 0px;
72
+ right: -1px;
73
+ width: 1px;
74
+ bottom: 0px;
75
+ background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
76
+ background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
77
+ background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
78
+ background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
79
+ background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
80
+ }
81
+
65
82
  .table{
66
83
  width: 100%;
67
84
  border-spacing: 0px;
@@ -74,5 +91,10 @@ hr{
74
91
  td{
75
92
  border-top: 1px solid lighten($secondary, 20%);
76
93
  padding: 5px 5px 5px 0px;
94
+
77
95
  }
78
96
  }
97
+
98
+ td.expand{
99
+ width: 100%;
100
+ }
@@ -0,0 +1,100 @@
1
+
2
+ @import url($font_include);
3
+
4
+ @mixin clearfix{
5
+ &:before,
6
+ &:after {
7
+ content: "";
8
+ display: table;
9
+ }
10
+
11
+ &:after {
12
+ clear: both;
13
+ }
14
+ }
15
+
16
+ @mixin unstyled{
17
+ list-style: none;
18
+ margin: 0px;
19
+ padding: 0px;
20
+ }
21
+
22
+ @mixin shadow($offset: 1px){
23
+ box-shadow: $offset $offset 2px 0 #333333;
24
+ }
25
+
26
+ body{
27
+ margin: 0px;
28
+ color: $background_font_color;
29
+ background-color: #FFF;
30
+ font-size: 14px;
31
+ font-family: $body_font;
32
+ background: $background;
33
+ }
34
+
35
+ h1,h2,h3,h4,h5,h6{
36
+ font-family: $header_font;
37
+ }
38
+
39
+ .pull-right{
40
+ float: right;
41
+ }
42
+
43
+ .pull-left{
44
+ float: left;
45
+ }
46
+
47
+ .relative{
48
+ position: relative;
49
+ }
50
+
51
+ .clearfix{
52
+ @include clearfix;
53
+ }
54
+
55
+ ul.unstyled{
56
+ @include unstyled
57
+ }
58
+
59
+ hr{
60
+ border: 0;
61
+ height: 1px;
62
+ background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
63
+ background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
64
+ background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
65
+ background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
66
+ background-image: linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
67
+ }
68
+
69
+ .vertical-separator{
70
+ position: absolute;
71
+ top: 0px;
72
+ right: -2px;
73
+ width: 1px;
74
+ bottom: 0px;
75
+ background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
76
+ background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
77
+ background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
78
+ background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
79
+ background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
80
+ }
81
+
82
+ .table{
83
+ width: 100%;
84
+ border-spacing: 0px;
85
+
86
+ th{
87
+ text-align: left;
88
+ padding-bottom: 5px;
89
+ }
90
+
91
+ td{
92
+ border-top: 1px solid lighten($secondary, 20%);
93
+ padding: 5px 5px 5px 0px;
94
+
95
+ }
96
+ }
97
+
98
+ td.expand{
99
+ width: 100%;
100
+ }
@@ -1,3 +1,3 @@
1
1
  module Yakstrap
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,3 @@
1
+ module Yakstrap
2
+ VERSION = "0.0.1"
3
+ end
metadata CHANGED
@@ -1,46 +1,52 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yakstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Charles DuBose
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-08-25 00:00:00.000000000 Z
12
+ date: 2013-08-28 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: railties
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - '>'
19
+ - - ! '>'
18
20
  - !ruby/object:Gem::Version
19
21
  version: '3.1'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
23
26
  requirements:
24
- - - '>'
27
+ - - ! '>'
25
28
  - !ruby/object:Gem::Version
26
29
  version: '3.1'
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: sass-rails
29
32
  requirement: !ruby/object:Gem::Requirement
33
+ none: false
30
34
  requirements:
31
- - - '>'
35
+ - - ! '>'
32
36
  - !ruby/object:Gem::Version
33
37
  version: 3.2.3
34
38
  type: :development
35
39
  prerelease: false
36
40
  version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
37
42
  requirements:
38
- - - '>'
43
+ - - ! '>'
39
44
  - !ruby/object:Gem::Version
40
45
  version: 3.2.3
41
46
  - !ruby/object:Gem::Dependency
42
47
  name: bundler
43
48
  requirement: !ruby/object:Gem::Requirement
49
+ none: false
44
50
  requirements:
45
51
  - - ~>
46
52
  - !ruby/object:Gem::Version
@@ -48,6 +54,7 @@ dependencies:
48
54
  type: :development
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
51
58
  requirements:
52
59
  - - ~>
53
60
  - !ruby/object:Gem::Version
@@ -55,15 +62,17 @@ dependencies:
55
62
  - !ruby/object:Gem::Dependency
56
63
  name: rake
57
64
  requirement: !ruby/object:Gem::Requirement
65
+ none: false
58
66
  requirements:
59
- - - '>='
67
+ - - ! '>='
60
68
  - !ruby/object:Gem::Version
61
69
  version: '0'
62
70
  type: :development
63
71
  prerelease: false
64
72
  version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
65
74
  requirements:
66
- - - '>='
75
+ - - ! '>='
67
76
  - !ruby/object:Gem::Version
68
77
  version: '0'
69
78
  description: Yakstrap is a pure CSS framework that was written to be mostly compatible
@@ -80,6 +89,7 @@ files:
80
89
  - lib/yakstrap.rb~
81
90
  - lib/yakstrap.rb
82
91
  - lib/yakstrap/version.rb
92
+ - lib/yakstrap/version.rb~
83
93
  - app/assets/stylesheets/yakstrap/yakstrap.css.scss~
84
94
  - app/assets/stylesheets/yakstrap/alert.css.scss
85
95
  - app/assets/stylesheets/yakstrap/variables.css.scss
@@ -90,31 +100,34 @@ files:
90
100
  - app/assets/stylesheets/yakstrap/form.css.scss
91
101
  - app/assets/stylesheets/yakstrap/tip.css.scss
92
102
  - app/assets/stylesheets/yakstrap/nav.css.scss
103
+ - app/assets/stylesheets/yakstrap/button.css.scss~
93
104
  - app/assets/stylesheets/yakstrap/modal.css.scss
105
+ - app/assets/stylesheets/yakstrap/main.css.scss~
94
106
  - LICENSE
95
107
  - README.md
96
108
  homepage: http://github.com/Yakrware/yakstrap
97
109
  licenses:
98
110
  - MIT
99
- metadata: {}
100
111
  post_install_message:
101
112
  rdoc_options: []
102
113
  require_paths:
103
114
  - lib
104
115
  required_ruby_version: !ruby/object:Gem::Requirement
116
+ none: false
105
117
  requirements:
106
- - - '>='
118
+ - - ! '>='
107
119
  - !ruby/object:Gem::Version
108
120
  version: '0'
109
121
  required_rubygems_version: !ruby/object:Gem::Requirement
122
+ none: false
110
123
  requirements:
111
- - - '>='
124
+ - - ! '>='
112
125
  - !ruby/object:Gem::Version
113
126
  version: '0'
114
127
  requirements: []
115
128
  rubyforge_project:
116
- rubygems_version: 2.0.3
129
+ rubygems_version: 1.8.25
117
130
  signing_key:
118
- specification_version: 4
131
+ specification_version: 3
119
132
  summary: Yakstrap is a pure CSS framework mostly compatible with bootstrap 2.0
120
133
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 7b8bf45530873fbcf14f7e20084d8f63ce337303
4
- data.tar.gz: 1b93ba1a3e97fbeb0f70157981f3ac0ef6ab6c09
5
- SHA512:
6
- metadata.gz: 7c018f2dafc73e6d5c12d9b43d035fc34745d3b82093ed6930f3843acb2d74438f8fcffe069cee56305445be2750163fbc1728978dc2982214ab434f62c51f31
7
- data.tar.gz: ab0355961382918fcda3222660e4fb5d8405cb144ddc55ae890c4df9390a277a2e4fd43299908a800806ae9fecc6a6e8671d9f3686d5aac1a5fa42058368b162