fohrcard-styles 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,32 @@
1
+ .medium-header
2
+ padding: 50px 0px 60px 0px
3
+
4
+ .large-header
5
+ padding: 70px 0px 80px 0px
6
+
7
+ .text-header
8
+ padding: 0px 0px 40px 0px
9
+
10
+ .text-right
11
+ text-align: right
12
+
13
+ .text-left
14
+ text-align: left
15
+
16
+
17
+ h1, h2, h3, h4, h5, h6
18
+ font-family: "Roboto"
19
+ margin-top: 0px
20
+ margin-bottom: 10px
21
+
22
+ h1
23
+ font-weight: 200
24
+ font-size: 36px
25
+
26
+ i.material-icons
27
+ font-size: 18px
28
+ margin-right: 10px
29
+
30
+ h2
31
+ font-size: 30px
32
+ font-weight: 200
@@ -0,0 +1,46 @@
1
+
2
+ // Media Query Classes
3
+
4
+ @media only screen and (max-width : 600px)
5
+ .hide-on-small-only, .hide-on-small-and-down
6
+ display: none !important
7
+
8
+ @media only screen and (max-width : 992px)
9
+ .hide-on-med-and-down
10
+ display: none !important
11
+
12
+ @media only screen and (min-width : 601px)
13
+ .hide-on-med-and-up
14
+ display: none !important
15
+
16
+ @media only screen and (min-width: 600px) and (max-width: 992px)
17
+ .hide-on-med-only
18
+ display: none !important
19
+
20
+ @media only screen and (min-width : 993px)
21
+ .hide-on-large-only
22
+ display: none !important
23
+
24
+ @media only screen and (min-width : 993px)
25
+ .show-on-large
26
+ display: initial !important
27
+
28
+ @media only screen and (min-width: 600px) and (max-width: 992px)
29
+ .show-on-medium
30
+ display: initial !important
31
+
32
+ @media only screen and (max-width : 600px)
33
+ .show-on-small
34
+ display: initial !important
35
+
36
+ @media only screen and (min-width : 601px)
37
+ .show-on-medium-and-up
38
+ display: initial !important
39
+
40
+ @media only screen and (max-width : 992px)
41
+ .show-on-medium-and-down
42
+ display: initial !important
43
+
44
+ @media only screen and (max-width : 600px)
45
+ .center-on-small-only
46
+ text-align: center
@@ -0,0 +1,8 @@
1
+ img.responsive-img
2
+ max-width: 100%
3
+
4
+ .with-shadow
5
+ @include image-shadow
6
+
7
+ &:hover
8
+ @include image-shadow-hover
File without changes
@@ -0,0 +1,6 @@
1
+ .list-inline
2
+ li
3
+ display: inline
4
+ list-style-type: none
5
+ padding-right: 10px
6
+ float: left
@@ -0,0 +1,110 @@
1
+ // Breakpoints
2
+
3
+ $break-xs: 758px;
4
+ $break-sm: 758px;
5
+ $break-md: 992px;
6
+ $break-lg: 1200px;
7
+ $break-xl: 1600px;
8
+
9
+ @mixin respond-to($media) {
10
+ @if $media == xs {
11
+ @media only screen and (max-width: $break-xs) { @content; }
12
+ }
13
+ @else if $media == sm {
14
+ @media only screen and (min-width: $break-sm + 1) and (max-width: $break-md - 1) { @content; }
15
+ }
16
+ @else if $media == md {
17
+ @media only screen and (min-width: $break-md + 1) and (max-width: $break-lg - 1) { @content; }
18
+ }
19
+ @else if $media == lg {
20
+ @media only screen and (min-width: $break-lg) { @content; }
21
+ }
22
+ @else if $media == xl {
23
+ @media only screen and (min-width: $break-xl) { @content; }
24
+ }
25
+ @else if $media == gt-xs {
26
+ @media only screen and (min-width: $break-xs) { @content; }
27
+ }
28
+ @else if $media == gt-md {
29
+ @media only screen and (min-width: $break-md + 1) { @content; }
30
+ }
31
+ }
32
+
33
+ // Images
34
+
35
+ @mixin image-shadow {
36
+ -moz-box-shadow: 3px 3px 10px #f2f2f2, -3px -3px 10px #f2f2f2;
37
+ -webkit-box-shadow: 3px 3px 10px #f2f2f2, -3px -3px 10px #f2f2f2;
38
+ box-shadow: 3px 3px 10px #f2f2f2, -3px -3px 10px #f2f2f2;
39
+ -webkit-transition: 0.2s
40
+ }
41
+
42
+ @mixin image-shadow-hover {
43
+ -moz-box-shadow: 3px 3px 10px #ddd, -3px -3px 10px #ddd;
44
+ -webkit-box-shadow: 3px 3px 10px #ddd, -3px -3px 10px #ddd;
45
+ box-shadow: 3px 3px 10px #ddd, -3px -3px 10px #ddd;
46
+ }
47
+
48
+ // Border Radius
49
+ @mixin border-radius($radius) {
50
+ -webkit-border-radius: $radius;
51
+ -moz-border-radius: $radius;
52
+ border-radius: $radius;
53
+ }
54
+
55
+ // Opacity
56
+
57
+ @mixin opacity($opacity) {
58
+ opacity: $opacity;
59
+ -moz-opacity: $opacity;
60
+ filter: alpha(opacity= $opacity*100);
61
+ }
62
+
63
+ // Animations
64
+
65
+ @mixin animation($animate...) {
66
+ $max: length($animate);
67
+ $animations: '';
68
+
69
+ @for $i from 1 through $max {
70
+ $animations: #{$animations + nth($animate, $i)};
71
+
72
+ @if $i < $max {
73
+ $animations: #{$animations + ", "};
74
+ }
75
+ }
76
+ -webkit-animation: $animations;
77
+ -moz-animation: $animations;
78
+ -o-animation: $animations;
79
+ animation: $animations;
80
+ }
81
+
82
+ @mixin keyframes($animationName) {
83
+ @-webkit-keyframes #{$animationName} {
84
+ @content;
85
+ }
86
+ @-moz-keyframes #{$animationName} {
87
+ @content;
88
+ }
89
+ @-o-keyframes #{$animationName} {
90
+ @content;
91
+ }
92
+ @keyframes #{$animationName} {
93
+ @content;
94
+ }
95
+ }
96
+
97
+ @include keyframes(fadeup) {
98
+ 0% { opacity: 0.0; padding-top: 25px; }
99
+ 100% { opacity: 1.0; padding-top: 0px}
100
+ }
101
+
102
+ @mixin transition($transition-property, $transition-time, $method) {
103
+ -webkit-transition: $transition-property $transition-time $method;
104
+ -moz-transition: $transition-property $transition-time $method;
105
+ -ms-transition: $transition-property $transition-time $method;
106
+ -o-transition: $transition-property $transition-time $method;
107
+ transition: $transition-property $transition-time $method;
108
+ }
109
+
110
+ // @include animation('fadeup 0.75s 1')
@@ -0,0 +1,28 @@
1
+ .navbar-fixed
2
+ position: fixed
3
+ width: 100%
4
+ height: 60px
5
+ background: #fff
6
+ line-height: 60px
7
+ margin: 0px
8
+ padding: 0px
9
+ top: 0px
10
+
11
+ #defaultNav
12
+ font-family: "Roboto"
13
+ color: #000
14
+ height: 60px
15
+ line-height: 60px
16
+ padding: 0px 40px
17
+ font-size: 12px
18
+ background: #fff
19
+
20
+ a
21
+ color: #000
22
+ text-decoration: none
23
+ font-weight: 700
24
+ -webkit-transition: 0.2s
25
+
26
+ &:hover
27
+ text-decoration: none
28
+ color: $cyan
File without changes
@@ -0,0 +1,8 @@
1
+ /*
2
+ YUI 3.18.1 (build f7e7bcb)
3
+ Copyright 2014 Yahoo! Inc. All rights reserved.
4
+ Licensed under the BSD License.
5
+ http://yuilibrary.com/license/
6
+ */
7
+
8
+ html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}
@@ -0,0 +1,17 @@
1
+ table
2
+ width: 100%
3
+ font-size: 12px
4
+
5
+ tr
6
+ border-top: 1px solid #eee
7
+
8
+ tbody
9
+ tr
10
+ &:nth-child(odd)
11
+ background: #f8f8f8
12
+
13
+ th, td
14
+ padding: 5px 7px
15
+
16
+ th
17
+ font-weight: bold
@@ -0,0 +1,20 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);
2
+ @import "font-awesome";
3
+
4
+ @import "fc_colors";
5
+ @import "fc_backgrounds";
6
+
7
+ @import "fc_mixins";
8
+ @import "fc_resets";
9
+ @import "fc_grid";
10
+
11
+ @import "fc_nav";
12
+ @import "fc_headers";
13
+ @import "fc_buttons";
14
+ @import "fc_tables";
15
+ @import "fc_images";
16
+ @import "fc_lists";
17
+
18
+ @import "fc_forms";
19
+ @import "fc_helpers";
20
+ @import "fc_notifications";
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fohrcard-styles
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - richard tong
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: font-awesome-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Fohr Card Styles Description
56
+ email:
57
+ - rich@fohrcard.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".DS_Store"
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/styles.rb
71
+ - lib/styles/version.rb
72
+ - styles.gemspec
73
+ - vendor/assets/javascripts/fohrcard_javascripts.js
74
+ - vendor/assets/javascripts/forms.js
75
+ - vendor/assets/javascripts/helpers.js
76
+ - vendor/assets/stylesheets/.DS_Store
77
+ - vendor/assets/stylesheets/fc_backgrounds.sass
78
+ - vendor/assets/stylesheets/fc_buttons.sass
79
+ - vendor/assets/stylesheets/fc_colors.sass
80
+ - vendor/assets/stylesheets/fc_fonts.sass
81
+ - vendor/assets/stylesheets/fc_forms.sass
82
+ - vendor/assets/stylesheets/fc_grid.css
83
+ - vendor/assets/stylesheets/fc_headers.sass
84
+ - vendor/assets/stylesheets/fc_helpers.sass
85
+ - vendor/assets/stylesheets/fc_images.sass
86
+ - vendor/assets/stylesheets/fc_layouts.sass
87
+ - vendor/assets/stylesheets/fc_lists.sass
88
+ - vendor/assets/stylesheets/fc_mixins.scss
89
+ - vendor/assets/stylesheets/fc_nav.sass
90
+ - vendor/assets/stylesheets/fc_notifications.sass
91
+ - vendor/assets/stylesheets/fc_resets.css
92
+ - vendor/assets/stylesheets/fc_tables.sass
93
+ - vendor/assets/stylesheets/fohrcard_styles.scss
94
+ homepage: https://github.com/fohrcard/styles
95
+ licenses: []
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubyforge_project:
113
+ rubygems_version: 2.4.5
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: Fohr Card Styles
117
+ test_files: []
118
+ has_rdoc: