codeclimate-styles 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/assets/images/cc/styles/icons/add_collaborator_linear.svg +1 -0
- data/assets/images/cc/styles/icons/add_collaborator_solid.svg +1 -0
- data/assets/images/cc/styles/icons/add_linear.svg +1 -0
- data/assets/images/cc/styles/icons/add_solid.svg +1 -0
- data/assets/images/cc/styles/icons/alert_solid.svg +1 -0
- data/assets/images/cc/styles/icons/arrow_linear.svg +1 -0
- data/assets/images/cc/styles/icons/arrow_solid.svg +1 -0
- data/assets/images/cc/styles/icons/badge_linear.svg +1 -0
- data/assets/images/cc/styles/icons/badge_solid.svg +1 -0
- data/assets/images/cc/styles/icons/branch_solid.svg +1 -0
- data/assets/images/cc/styles/icons/checkmark.svg +1 -0
- data/assets/images/cc/styles/icons/code_badge.svg +1 -0
- data/assets/images/cc/styles/icons/docs_linear.svg +1 -0
- data/assets/images/cc/styles/icons/docs_solid.svg +1 -0
- data/assets/images/cc/styles/icons/error.svg +1 -0
- data/assets/images/cc/styles/icons/eye_disabled.svg +1 -0
- data/assets/images/cc/styles/icons/eye_enabled.svg +1 -0
- data/assets/images/cc/styles/icons/file_linear.svg +1 -0
- data/assets/images/cc/styles/icons/files_linear.svg +1 -0
- data/assets/images/cc/styles/icons/files_solid.svg +1 -0
- data/assets/images/cc/styles/icons/folder_linear.svg +1 -0
- data/assets/images/cc/styles/icons/folder_solid.svg +1 -0
- data/assets/images/cc/styles/icons/hourglass_badge.svg +1 -0
- data/assets/images/cc/styles/icons/info_linear.svg +1 -0
- data/assets/images/cc/styles/icons/info_solid.svg +1 -0
- data/assets/images/cc/styles/icons/link_arrow.svg +1 -0
- data/assets/images/cc/styles/icons/lock_linear.svg +1 -0
- data/assets/images/cc/styles/icons/lock_solid.svg +1 -0
- data/assets/images/cc/styles/icons/logout_linear.svg +1 -0
- data/assets/images/cc/styles/icons/new_alert.svg +1 -0
- data/assets/images/cc/styles/icons/nubbin_arrow.svg +1 -0
- data/assets/images/cc/styles/icons/post_entry.svg +1 -0
- data/assets/images/cc/styles/icons/post_entry_unread.svg +1 -0
- data/assets/images/cc/styles/icons/search_linear.svg +1 -0
- data/assets/images/cc/styles/icons/search_solid.svg +1 -0
- data/assets/images/cc/styles/icons/settings_linear.svg +1 -0
- data/assets/images/cc/styles/icons/settings_solid.svg +1 -0
- data/assets/images/cc/styles/icons/small_dismiss_x.svg +1 -0
- data/assets/images/cc/styles/icons/star_linear.svg +1 -0
- data/assets/images/cc/styles/icons/star_solid.svg +1 -0
- data/assets/images/cc/styles/icons/sucess.svg +1 -0
- data/assets/images/cc/styles/icons/sync.svg +1 -0
- data/assets/images/cc/styles/icons/ticket_linear.svg +1 -0
- data/assets/images/cc/styles/icons/trial_icon.svg +1 -0
- data/assets/images/cc/styles/icons/user_settings_linear.svg +1 -0
- data/assets/images/cc/styles/logo/ff_logo_white.svg +1 -0
- data/assets/images/cc/styles/logo/logo.svg +1 -0
- data/assets/images/cc/styles/logo/logo_with_wordmark.svg +1 -0
- data/assets/javascripts/cc/styles/grid_overlay.js +151 -0
- data/assets/stylesheets/cc/_styles.scss +5 -0
- data/assets/stylesheets/cc/styles/_colors.scss +75 -0
- data/assets/stylesheets/cc/styles/_mixins.scss +2 -0
- data/assets/stylesheets/cc/styles/_modules.scss +9 -0
- data/assets/stylesheets/cc/styles/mixins/_ff_mask_image.scss +9 -0
- data/assets/stylesheets/cc/styles/mixins/_transitions.scss +7 -0
- data/assets/stylesheets/cc/styles/modules/_buttons.scss +186 -0
- data/assets/stylesheets/cc/styles/modules/_code.scss +221 -0
- data/assets/stylesheets/cc/styles/modules/_forms.scss +246 -0
- data/assets/stylesheets/cc/styles/modules/_layout.scss +237 -0
- data/assets/stylesheets/cc/styles/modules/_lists.scss +178 -0
- data/assets/stylesheets/cc/styles/modules/_misc.scss +820 -0
- data/assets/stylesheets/cc/styles/modules/_tabs.scss +80 -0
- data/assets/stylesheets/cc/styles/modules/_typography.scss +220 -0
- data/assets/stylesheets/cc/styles/modules/_util.scss +27 -0
- data/assets/stylesheets/vendor/reset.scss +2 -0
- data/codeclimate-styles.gemspec +18 -0
- data/lib/cc/styles/engine.rb +18 -0
- data/lib/cc/styles/version.rb +5 -0
- data/lib/cc/styles.rb +13 -0
- data/lib/codeclimate-styles.rb +3 -0
- metadata +116 -0
@@ -0,0 +1,80 @@
|
|
1
|
+
/*doc
|
2
|
+
---
|
3
|
+
title: Tabs
|
4
|
+
name: tabs
|
5
|
+
category: misc
|
6
|
+
---
|
7
|
+
|
8
|
+
```slim_example
|
9
|
+
ul.tabs
|
10
|
+
li.active
|
11
|
+
a href="#home" Home
|
12
|
+
li
|
13
|
+
a href="#ratings" Ratings
|
14
|
+
li
|
15
|
+
a href="#options" Options
|
16
|
+
.tabs__content
|
17
|
+
#home.tabs__pane.active Home
|
18
|
+
#ratings.tabs__pane Ratings
|
19
|
+
#options.tabs__pane Options
|
20
|
+
```
|
21
|
+
*/
|
22
|
+
|
23
|
+
$tabs-border-width: 3px;
|
24
|
+
|
25
|
+
.tabs {
|
26
|
+
border-bottom: $tabs-border-width solid $grayscale-pearl;
|
27
|
+
font-size: 0;
|
28
|
+
line-height: 0;
|
29
|
+
margin-bottom: 36px;
|
30
|
+
|
31
|
+
li {
|
32
|
+
display: inline-block;
|
33
|
+
font-family: $sans-serif-semibold;
|
34
|
+
font-size: 14px;
|
35
|
+
line-height: 1;
|
36
|
+
margin-right: 24px;
|
37
|
+
position: relative;
|
38
|
+
}
|
39
|
+
|
40
|
+
.active {
|
41
|
+
a {
|
42
|
+
color: $green;
|
43
|
+
}
|
44
|
+
|
45
|
+
a::after {
|
46
|
+
background: $green;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
a {
|
51
|
+
display: block;
|
52
|
+
padding: 24px 0;
|
53
|
+
|
54
|
+
&:hover {
|
55
|
+
color: $green;
|
56
|
+
}
|
57
|
+
|
58
|
+
&::after {
|
59
|
+
bottom: $tabs-border-width * -1;
|
60
|
+
content: "";
|
61
|
+
height: $tabs-border-width;
|
62
|
+
left: 0;
|
63
|
+
position: absolute;
|
64
|
+
right: 0;
|
65
|
+
}
|
66
|
+
|
67
|
+
&:hover::after {
|
68
|
+
background: $green;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
}
|
73
|
+
|
74
|
+
.tabs__pane {
|
75
|
+
display: none;
|
76
|
+
|
77
|
+
&.active {
|
78
|
+
display: block;
|
79
|
+
}
|
80
|
+
}
|
@@ -0,0 +1,220 @@
|
|
1
|
+
$sans-serif-light: "ProximaNova-Light", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
2
|
+
$sans-serif-light-italic: "ProximaNova-LightIt", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
3
|
+
$sans-serif-regular: "ProximaNova-Regular", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
4
|
+
$sans-serif-italic: "ProximaNova-RegularIt", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
5
|
+
$sans-serif-semibold: "ProximaNova-Semibold", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
6
|
+
$sans-serif-semibold-italic: "ProximaNova-SemiboldIt", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
7
|
+
$sans-serif-bold: "ProximaNova-Bold", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
8
|
+
$sans-serif-bold-italic: "ProximaNova-BoldIt", "Avenir Next", -apple-system-body, "Helvetica Neue", "Helvetica", sans-serif;
|
9
|
+
|
10
|
+
$serif-light: "FFTisaWebLight", "Georgia", "Times New Roman", serif;
|
11
|
+
$serif-regular: "FFTisaWeb", "Georgia", "Times New Roman", serif;
|
12
|
+
$serif-italic: "FFTisaWebItalic", "Georgia", "Times New Roman", serif;
|
13
|
+
$serif-bold: "FFTisaWebBold", "Georgia", "Times New Roman", serif;
|
14
|
+
$serif-medium: "FFTisaWebMed", "Georgia", "Times New Roman", serif;
|
15
|
+
|
16
|
+
$monospace: "Native", "Consolas", "Liberation Mono", "Menlo", "Courier", monospace;
|
17
|
+
|
18
|
+
body,
|
19
|
+
button,
|
20
|
+
input,
|
21
|
+
select {
|
22
|
+
color: $grayscale-deep;
|
23
|
+
font-family: $sans-serif-regular;
|
24
|
+
-webkit-font-smoothing: antialiased;
|
25
|
+
}
|
26
|
+
|
27
|
+
/*doc
|
28
|
+
---
|
29
|
+
title: Link
|
30
|
+
name: link
|
31
|
+
category: typography
|
32
|
+
---
|
33
|
+
|
34
|
+
These are standard link styles. Default styling should be the most common case.
|
35
|
+
Secondary links are intended for use in tables & secondary items. Muted links
|
36
|
+
should be used sparingly, and only when other factors will help make it clear
|
37
|
+
to a user that the link is interactable.
|
38
|
+
|
39
|
+
```slim_example
|
40
|
+
a href="#" This is a link
|
41
|
+
```
|
42
|
+
```slim_example
|
43
|
+
a.link--secondary href="#" This is a secondary link
|
44
|
+
```
|
45
|
+
```slim_example
|
46
|
+
a.link--muted href="#" This is a muted link
|
47
|
+
```
|
48
|
+
*/
|
49
|
+
a {
|
50
|
+
color: $green-dark;
|
51
|
+
text-decoration: none;
|
52
|
+
|
53
|
+
&:hover,
|
54
|
+
&:active,
|
55
|
+
&:focus {
|
56
|
+
color: $green-light;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
.link--secondary {
|
61
|
+
color: $sky-dark;
|
62
|
+
|
63
|
+
&:hover,
|
64
|
+
&:active,
|
65
|
+
&:focus {
|
66
|
+
color: $sky-light;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.link--muted {
|
71
|
+
color: $grayscale-storm;
|
72
|
+
}
|
73
|
+
|
74
|
+
strong {
|
75
|
+
font-family: $sans-serif-semibold;
|
76
|
+
}
|
77
|
+
|
78
|
+
/*doc
|
79
|
+
---
|
80
|
+
title: Headings
|
81
|
+
name: headings
|
82
|
+
category: typography
|
83
|
+
---
|
84
|
+
|
85
|
+
```slim_example
|
86
|
+
h1 First-level heading
|
87
|
+
h2 Second-level heading
|
88
|
+
h3 Third-level heading
|
89
|
+
h4 Fourth-level heading
|
90
|
+
h5 Fifth-level heading
|
91
|
+
h6 Sixth-level heading
|
92
|
+
```
|
93
|
+
*/
|
94
|
+
|
95
|
+
h1,
|
96
|
+
h2,
|
97
|
+
h3,
|
98
|
+
h4,
|
99
|
+
h5 {
|
100
|
+
font-family: $sans-serif-regular;
|
101
|
+
word-wrap: break-word;
|
102
|
+
|
103
|
+
a {
|
104
|
+
color: $grayscale-deep;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
h1 {
|
109
|
+
font-family: $sans-serif-light;
|
110
|
+
font-size: 60px;
|
111
|
+
line-height: 75px;
|
112
|
+
}
|
113
|
+
|
114
|
+
h2 {
|
115
|
+
font-size: 37px;
|
116
|
+
line-height: 60px;
|
117
|
+
}
|
118
|
+
|
119
|
+
h3 {
|
120
|
+
font-size: 30px;
|
121
|
+
line-height: 40px;
|
122
|
+
}
|
123
|
+
|
124
|
+
h4 {
|
125
|
+
font-family: $sans-serif-light;
|
126
|
+
font-size: 20px;
|
127
|
+
line-height: 30px;
|
128
|
+
}
|
129
|
+
|
130
|
+
h5 {
|
131
|
+
color: $grayscale-slate;
|
132
|
+
font-size: 18px;
|
133
|
+
letter-spacing: .02em;
|
134
|
+
line-height: 30px;
|
135
|
+
text-transform: uppercase;
|
136
|
+
}
|
137
|
+
|
138
|
+
h6 {
|
139
|
+
color: $grayscale-storm;
|
140
|
+
font-size: 12px;
|
141
|
+
letter-spacing: .2em;
|
142
|
+
line-height: 17px;
|
143
|
+
text-transform: uppercase;
|
144
|
+
}
|
145
|
+
|
146
|
+
/*doc
|
147
|
+
---
|
148
|
+
title: Paragraph
|
149
|
+
name: p
|
150
|
+
category: typography
|
151
|
+
---
|
152
|
+
|
153
|
+
```slim_example
|
154
|
+
p Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
155
|
+
p Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
|
156
|
+
```
|
157
|
+
*/
|
158
|
+
|
159
|
+
p,
|
160
|
+
ul {
|
161
|
+
font-size: 18px;
|
162
|
+
line-height: 30px;
|
163
|
+
}
|
164
|
+
|
165
|
+
p {
|
166
|
+
margin-bottom: 20px;
|
167
|
+
}
|
168
|
+
|
169
|
+
/*doc
|
170
|
+
---
|
171
|
+
title: Block Quote
|
172
|
+
name: blockquote
|
173
|
+
category: typography
|
174
|
+
---
|
175
|
+
|
176
|
+
```slim_example
|
177
|
+
blockquote Fly, you fools!
|
178
|
+
```
|
179
|
+
*/
|
180
|
+
blockquote {
|
181
|
+
font-family: $serif-bold;
|
182
|
+
font-size: 36px;
|
183
|
+
line-height: 44px;
|
184
|
+
|
185
|
+
&::before {
|
186
|
+
background-color: $grayscale-deep;
|
187
|
+
content: "";
|
188
|
+
display: inline-block;
|
189
|
+
height: 28px;
|
190
|
+
margin-right: 15px;
|
191
|
+
width: 28px;
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
/*doc
|
196
|
+
---
|
197
|
+
title: Meta
|
198
|
+
name: meta
|
199
|
+
category: typography
|
200
|
+
---
|
201
|
+
|
202
|
+
```slim_example
|
203
|
+
.meta Code Climate is free for open-source repositories.
|
204
|
+
```
|
205
|
+
*/
|
206
|
+
|
207
|
+
.meta {
|
208
|
+
color: $grayscale-storm;
|
209
|
+
font-size: 11px;
|
210
|
+
line-height: 15px;
|
211
|
+
|
212
|
+
a {
|
213
|
+
border-bottom: 1px solid $box-border-color;
|
214
|
+
padding-bottom: .2em;
|
215
|
+
}
|
216
|
+
|
217
|
+
a:hover {
|
218
|
+
border-color: $green-dark;
|
219
|
+
}
|
220
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
/*doc
|
2
|
+
---
|
3
|
+
title: Push bottom
|
4
|
+
name: push-bottom
|
5
|
+
category: util
|
6
|
+
---
|
7
|
+
|
8
|
+
Needing to make vertical space between elements is a common need: several
|
9
|
+
classes are available for the most common amounts desired, in steps of `10px`
|
10
|
+
(one third of the grid's vertical baseline, `30px`).
|
11
|
+
|
12
|
+
- `.push-bottom--s` - adds `10px` bottom margin
|
13
|
+
- `.push-bottom--m` - adds `20px` bottom margin
|
14
|
+
- `.push-bottom--x1` - adds `30px` bottom margin
|
15
|
+
*/
|
16
|
+
|
17
|
+
.push-bottom--s {
|
18
|
+
margin-bottom: 10px;
|
19
|
+
}
|
20
|
+
|
21
|
+
.push-bottom--m {
|
22
|
+
margin-bottom: 20px;
|
23
|
+
}
|
24
|
+
|
25
|
+
.push-bottom--x1 {
|
26
|
+
margin-bottom: 30px;
|
27
|
+
}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
|
2
|
+
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$:.unshift(lib) unless $:.include?(lib)
|
4
|
+
require "cc/styles/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "codeclimate-styles"
|
8
|
+
spec.version = CC::Styles::VERSION
|
9
|
+
spec.authors = ["Code Climate"]
|
10
|
+
spec.email = ["hello@codeclimate.com"]
|
11
|
+
spec.summary = "Code Climate stylesheets"
|
12
|
+
spec.description = "Foundational stylesheets for Code Climate properties"
|
13
|
+
spec.homepage = "https://styleguide.codeclimate.com"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.require_paths = ["lib"]
|
18
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module CC
|
2
|
+
module Styles
|
3
|
+
class Engine < ::Rails::Engine
|
4
|
+
initializer "cc.styles.assets.precompile" do |app|
|
5
|
+
%w[stylesheets javascripts fonts images].each do |sub|
|
6
|
+
app.config.assets.paths << root.join("assets", sub).to_s
|
7
|
+
app.config.assets.precompile += ["cc/styles/logo/*", "cc/styles/icons/*"]
|
8
|
+
end
|
9
|
+
|
10
|
+
# sprockets-rails 3 tracks down the calls to `font_path` and `image_path`
|
11
|
+
# and automatically precompiles the referenced assets.
|
12
|
+
unless Sprockets::Rails::VERSION.split(".", 2)[0].to_i >= 3
|
13
|
+
app.config.assets.precompile << %r{bootstrap/glyphicons-halflings-regular\.(?:eot|svg|ttf|woff2?)$}
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/cc/styles.rb
ADDED
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: codeclimate-styles
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Code Climate
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-03-31 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Foundational stylesheets for Code Climate properties
|
14
|
+
email:
|
15
|
+
- hello@codeclimate.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Gemfile
|
21
|
+
- Rakefile
|
22
|
+
- assets/images/cc/styles/icons/add_collaborator_linear.svg
|
23
|
+
- assets/images/cc/styles/icons/add_collaborator_solid.svg
|
24
|
+
- assets/images/cc/styles/icons/add_linear.svg
|
25
|
+
- assets/images/cc/styles/icons/add_solid.svg
|
26
|
+
- assets/images/cc/styles/icons/alert_solid.svg
|
27
|
+
- assets/images/cc/styles/icons/arrow_linear.svg
|
28
|
+
- assets/images/cc/styles/icons/arrow_solid.svg
|
29
|
+
- assets/images/cc/styles/icons/badge_linear.svg
|
30
|
+
- assets/images/cc/styles/icons/badge_solid.svg
|
31
|
+
- assets/images/cc/styles/icons/branch_solid.svg
|
32
|
+
- assets/images/cc/styles/icons/checkmark.svg
|
33
|
+
- assets/images/cc/styles/icons/code_badge.svg
|
34
|
+
- assets/images/cc/styles/icons/docs_linear.svg
|
35
|
+
- assets/images/cc/styles/icons/docs_solid.svg
|
36
|
+
- assets/images/cc/styles/icons/error.svg
|
37
|
+
- assets/images/cc/styles/icons/eye_disabled.svg
|
38
|
+
- assets/images/cc/styles/icons/eye_enabled.svg
|
39
|
+
- assets/images/cc/styles/icons/file_linear.svg
|
40
|
+
- assets/images/cc/styles/icons/files_linear.svg
|
41
|
+
- assets/images/cc/styles/icons/files_solid.svg
|
42
|
+
- assets/images/cc/styles/icons/folder_linear.svg
|
43
|
+
- assets/images/cc/styles/icons/folder_solid.svg
|
44
|
+
- assets/images/cc/styles/icons/hourglass_badge.svg
|
45
|
+
- assets/images/cc/styles/icons/info_linear.svg
|
46
|
+
- assets/images/cc/styles/icons/info_solid.svg
|
47
|
+
- assets/images/cc/styles/icons/link_arrow.svg
|
48
|
+
- assets/images/cc/styles/icons/lock_linear.svg
|
49
|
+
- assets/images/cc/styles/icons/lock_solid.svg
|
50
|
+
- assets/images/cc/styles/icons/logout_linear.svg
|
51
|
+
- assets/images/cc/styles/icons/new_alert.svg
|
52
|
+
- assets/images/cc/styles/icons/nubbin_arrow.svg
|
53
|
+
- assets/images/cc/styles/icons/post_entry.svg
|
54
|
+
- assets/images/cc/styles/icons/post_entry_unread.svg
|
55
|
+
- assets/images/cc/styles/icons/search_linear.svg
|
56
|
+
- assets/images/cc/styles/icons/search_solid.svg
|
57
|
+
- assets/images/cc/styles/icons/settings_linear.svg
|
58
|
+
- assets/images/cc/styles/icons/settings_solid.svg
|
59
|
+
- assets/images/cc/styles/icons/small_dismiss_x.svg
|
60
|
+
- assets/images/cc/styles/icons/star_linear.svg
|
61
|
+
- assets/images/cc/styles/icons/star_solid.svg
|
62
|
+
- assets/images/cc/styles/icons/sucess.svg
|
63
|
+
- assets/images/cc/styles/icons/sync.svg
|
64
|
+
- assets/images/cc/styles/icons/ticket_linear.svg
|
65
|
+
- assets/images/cc/styles/icons/trial_icon.svg
|
66
|
+
- assets/images/cc/styles/icons/user_settings_linear.svg
|
67
|
+
- assets/images/cc/styles/logo/ff_logo_white.svg
|
68
|
+
- assets/images/cc/styles/logo/logo.svg
|
69
|
+
- assets/images/cc/styles/logo/logo_with_wordmark.svg
|
70
|
+
- assets/javascripts/cc/styles/grid_overlay.js
|
71
|
+
- assets/stylesheets/cc/_styles.scss
|
72
|
+
- assets/stylesheets/cc/styles/_colors.scss
|
73
|
+
- assets/stylesheets/cc/styles/_mixins.scss
|
74
|
+
- assets/stylesheets/cc/styles/_modules.scss
|
75
|
+
- assets/stylesheets/cc/styles/mixins/_ff_mask_image.scss
|
76
|
+
- assets/stylesheets/cc/styles/mixins/_transitions.scss
|
77
|
+
- assets/stylesheets/cc/styles/modules/_buttons.scss
|
78
|
+
- assets/stylesheets/cc/styles/modules/_code.scss
|
79
|
+
- assets/stylesheets/cc/styles/modules/_forms.scss
|
80
|
+
- assets/stylesheets/cc/styles/modules/_layout.scss
|
81
|
+
- assets/stylesheets/cc/styles/modules/_lists.scss
|
82
|
+
- assets/stylesheets/cc/styles/modules/_misc.scss
|
83
|
+
- assets/stylesheets/cc/styles/modules/_tabs.scss
|
84
|
+
- assets/stylesheets/cc/styles/modules/_typography.scss
|
85
|
+
- assets/stylesheets/cc/styles/modules/_util.scss
|
86
|
+
- assets/stylesheets/vendor/reset.scss
|
87
|
+
- codeclimate-styles.gemspec
|
88
|
+
- lib/cc/styles.rb
|
89
|
+
- lib/cc/styles/engine.rb
|
90
|
+
- lib/cc/styles/version.rb
|
91
|
+
- lib/codeclimate-styles.rb
|
92
|
+
homepage: https://styleguide.codeclimate.com
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.6.8
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: Code Climate stylesheets
|
116
|
+
test_files: []
|