ethosstyles 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,21 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.10 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Brands';
9
+ font-style: normal;
10
+ font-weight: normal;
11
+ src: url('#{$fa-font-path}/fa-brands-400.eot');
12
+ src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-brands-400.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .fab {
20
+ font-family: 'Font Awesome 5 Brands';
21
+ }
@@ -0,0 +1,22 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.10 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Free Regular';
9
+ font-style: normal;
10
+ font-weight: 400;
11
+ src: url('#{$fa-font-path}/fa-regular-400.eot');
12
+ src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-regular-400.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .far {
20
+ font-family: 'Font Awesome 5 Free Regular';
21
+ font-weight: 400;
22
+ }
@@ -0,0 +1,23 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.10 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Free';
9
+ font-style: normal;
10
+ font-weight: 900;
11
+ src: url('#{$fa-font-path}/fa-solid-900.eot');
12
+ src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-solid-900.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .fa,
20
+ .fas {
21
+ font-family: 'Font Awesome 5 Free';
22
+ font-weight: 900;
23
+ }
@@ -0,0 +1 @@
1
+ @import 'ethosstyles';
@@ -51,4 +51,7 @@ $input-padding-h: 12px;
51
51
 
52
52
  $font-primary: acumin-pro, sans-serif;
53
53
  $font-icon-f: "FontAwesome";
54
+ $font-icon-f5: "Font Awesome 5 Free"; // solid
55
+ $font-icon-f5-r: "Font Awesome 5 Free Regular"; // regular
56
+ $font-icon-f5-b: 'Font Awesome 5 Brands'; // brands
54
57
  $font-icon-g: "Glyphicons Halflings";
@@ -82,54 +82,6 @@
82
82
  }
83
83
 
84
84
 
85
- //
86
- // LOADING ICON
87
- //
88
-
89
- // Can specify background color and size
90
-
91
- @mixin rf-loader( $bg-color: $white, $size: 30px ) {
92
- display: inline-block;
93
- vertical-align: middle;
94
- font-size: 10px;
95
- text-indent: -9999em;
96
- width: $size;
97
- height: $size;
98
- border-radius: 50%;
99
- background: $blue-bright;
100
- background: -webkit-linear-gradient(left, $blue-bright 10%, rgba(0,87,255, 0) 42%);
101
- background: linear-gradient(to right, $blue-bright 10%, rgba(0,87,255, 0) 42%);
102
- position: relative;
103
- animation: spin 1.4s infinite linear;
104
- transform: translateZ(0);
105
-
106
- &:before {
107
- width: 50%;
108
- height: 50%;
109
- background: $blue-bright;
110
- border-radius: 100% 0 0 0;
111
- position: absolute;
112
- top: 0;
113
- left: 0;
114
- content: '';
115
- }
116
-
117
- &:after {
118
- background: $bg-color;
119
- width: 75%;
120
- height: 75%;
121
- border-radius: 50%;
122
- content: '';
123
- margin: auto;
124
- position: absolute;
125
- top: 0;
126
- left: 0;
127
- bottom: 0;
128
- right: 0;
129
- }
130
- }
131
-
132
-
133
85
  //
134
86
  // TRIGGER ARROW
135
87
  //
@@ -67,6 +67,15 @@
67
67
  }
68
68
 
69
69
 
70
+ //
71
+ // COLORS
72
+ //
73
+
74
+ .rf-u-color--slate {
75
+ color: $slate !important;
76
+ }
77
+
78
+
70
79
  //
71
80
  // STATUSES
72
81
  //
@@ -1,9 +1,5 @@
1
1
  <h1>BUTTON</h1>
2
2
 
3
- <?php
4
- echo "Hello World";
5
- ?>
6
-
7
3
  <section class="rf-section">
8
4
 
9
5
  <h2>BUTTON TYPES</h2>
@@ -0,0 +1,105 @@
1
+ <h1>BUTTON</h1>
2
+
3
+ <section class="rf-section">
4
+
5
+ <h2>BUTTON TYPES</h2>
6
+
7
+ <a href="#" class="rf-btn rf-btn--primary">Primary</a>
8
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
9
+ <a href="#" class="rf-btn rf-btn--link">Link</a>
10
+ <a href="#" class="rf-btn rf-btn--dropdown">Dropdown</a>
11
+ <a href="#" class="rf-btn rf-btn--warning">Warning</a>
12
+ <a href="#" class="rf-btn rf-btn--error">Error</a>
13
+ </section>
14
+
15
+ <section class="rf-section">
16
+
17
+ <h2>BUTTON SIZES</h2>
18
+
19
+ <a href="#" class="rf-btn rf-btn--small">Button</a>
20
+ <a href="#" class="rf-btn rf-btn--large">Button</a>
21
+ <br/><br/><br/>
22
+
23
+ <h3>Types + sizes </h3>
24
+
25
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--large">Primary</a>
26
+ <a href="#" class="rf-btn rf-btn--warning rf-btn--large">Secondary</a>
27
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--large">Button</a>
28
+ <a href="#" class="rf-btn rf-btn--link rf-btn--large">Link</a>
29
+ <a href="#" class="rf-btn rf-btn--dropdown rf-btn--large">Dropdown</a>
30
+ <a href="#" class="rf-btn rf-btn--error rf-btn--large">Error</a>
31
+ <br/><br/><br/>
32
+
33
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--small">Button</a>
34
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--small">Button</a>
35
+ <a href="#" class="rf-btn rf-btn--warning rf-btn--small">Button</a>
36
+ <a href="#" class="rf-btn rf-btn--link rf-btn--small">Link</a>
37
+ <a href="#" class="rf-btn rf-btn--dropdown rf-btn--small">Dropdown</a>
38
+ <a href="#" class="rf-btn rf-btn--error rf-btn--small">Error</a>
39
+ </section>
40
+
41
+ <section class="rf-section">
42
+ <h2>BUTTON HELPERS</h2>
43
+
44
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--disabled">Disabled</a>
45
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--errorhover">Error Hover</a>
46
+ <br/><br/><br/>
47
+
48
+ <div class="rf-sg--dark">
49
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--light">Button</a>
50
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--large rf-btn--light">Button</a>
51
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--small rf-btn--light">Button</a>
52
+ <a href="#" class="rf-btn rf-btn--dropdown rf-btn--light">Dropdown</a>
53
+ </div>
54
+ <br/><br/><br/>
55
+
56
+ <h3>Multiline buttons</h3>
57
+
58
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--large rf-btn--multiline">
59
+ Primary
60
+ <small class="rf-btn__text">Extra line of text</small>
61
+ </a>
62
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--large">
63
+ Secondary
64
+ </a>
65
+ </section>
66
+
67
+ <section class="rf-section">
68
+
69
+ <h2>BUTTON GROUPINGS</h2>
70
+ <br/>
71
+ <h3>Button Group</h3>
72
+
73
+ <div class="rf-btn-group">
74
+ <a href="#" class="rf-btn rf-btn--primary rf-btn--large">Primary</a>
75
+ <a href="#" class="rf-btn rf-btn--warning rf-btn--large">Secondary</a>
76
+ <a href="#" class="rf-btn rf-btn--secondary rf-btn--large">Button</a>
77
+ <a href="#" class="rf-btn rf-btn--dropdown rf-btn--large">Dropdown</a>
78
+ <a href="#" class="rf-btn rf-btn--error rf-btn--large">Error</a>
79
+ </div>
80
+ <br/><br/><br/><br/>
81
+
82
+ <h3>Button Set</h3>
83
+ <div class="rf-col--2">
84
+ <div class="rf-btn-set">
85
+ <a href="#" class="rf-btn rf-btn--primary">Primary</a>
86
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
87
+ </div>
88
+ </div>
89
+ <br/>
90
+ <div class="rf-col--8">
91
+ <div class="rf-btn-set">
92
+ <a href="#" class="rf-btn rf-btn--primary">Primary</a>
93
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
94
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
95
+ </div>
96
+ </div>
97
+ <br/>
98
+ <div class="rf-col--1">
99
+ <div class="rf-btn-set">
100
+ <a href="#" class="rf-btn rf-btn--primary">Primary</a>
101
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
102
+ <a href="#" class="rf-btn rf-btn--secondary">Secondary</a>
103
+ </div>
104
+ </div>
105
+ </section>
Binary file
@@ -0,0 +1,129 @@
1
+ <section class="rf-section">
2
+ <h3>Basic Icons</h3>
3
+
4
+ <?php
5
+ $icon_class = "rf-icon--no";
6
+ include 'partial_icons.php';
7
+ ?>
8
+ <?php
9
+ $icon_class = "rf-icon--ok";
10
+ include 'partial_icons.php';
11
+ ?>
12
+ <?php
13
+ $icon_class = "rf-icon--grip";
14
+ include 'partial_icons.php';
15
+ ?>
16
+ <?php
17
+ $icon_class = "rf-icon--caret--right";
18
+ include 'partial_icons.php';
19
+ ?>
20
+ <?php
21
+ $icon_class = "rf-icon--refresh";
22
+ include 'partial_icons.php';
23
+ ?>
24
+ <?php
25
+ $icon_class = "rf-icon--rollback";
26
+ include 'partial_icons.php';
27
+ ?>
28
+ <?php
29
+ $icon_class = "rf-icon--pencil";
30
+ include 'partial_icons.php';
31
+ ?>
32
+ <?php
33
+ $icon_class = "rf-icon--eye-open";
34
+ include 'partial_icons.php';
35
+ ?>
36
+ <?php
37
+ $icon_class = "rf-icon--eye-closed";
38
+ include 'partial_icons.php';
39
+ ?>
40
+ <?php
41
+ $icon_class = "rf-icon--download";
42
+ include 'partial_icons.php';
43
+ ?>
44
+ <?php
45
+ $icon_class = "rf-icon--upload";
46
+ include 'partial_icons.php';
47
+ ?>
48
+ <?php
49
+ $icon_class = "rf-icon--trash";
50
+ include 'partial_icons.php';
51
+ ?>
52
+ <?php
53
+ $icon_class = "rf-icon--dashboard";
54
+ include 'partial_icons.php';
55
+ ?>
56
+ <?php
57
+ $icon_class = "rf-icon--repeat";
58
+ include 'partial_icons.php';
59
+ ?>
60
+ <?php
61
+ $icon_class = "rf-icon--question";
62
+ include 'partial_icons.php';
63
+ ?>
64
+ <?php
65
+ $icon_class = "rf-icon--github";
66
+ include 'partial_icons.php';
67
+ ?>
68
+ </section>
69
+
70
+ <section class="rf-section">
71
+ <h3>Status Icons</h3>
72
+ <p class="rf-p--lead">
73
+ Currently used in modals and on Moonbeam deploy pages.
74
+ </p>
75
+
76
+ <?php
77
+ $icon_class = "rf-icon--info";
78
+ include 'partial_icons.php';
79
+ ?>
80
+ <?php
81
+ $icon_class = "rf-icon--warning";
82
+ include 'partial_icons.php';
83
+ ?>
84
+ <?php
85
+ $icon_class = "rf-icon--error";
86
+ include 'partial_icons.php';
87
+ ?>
88
+ </section>
89
+
90
+ <section class="rf-section">
91
+ <h3>Status Icons</h3>
92
+ <p class="rf-p--lead">
93
+ Currently used in OrCA Onboarding page.
94
+ </p>
95
+
96
+ <?php
97
+ $icon_class = "rf-icon--failure";
98
+ include 'partial_icons.php';
99
+ ?>
100
+
101
+ <?php
102
+ $icon_class = "rf-icon--success";
103
+ include 'partial_icons.php';
104
+ ?>
105
+
106
+ <?php
107
+ $icon_class = "rf-icon--pending";
108
+ include 'partial_icons.php';
109
+ ?>
110
+
111
+ <?php
112
+ $icon_class = "rf-icon--ongoing";
113
+ include 'partial_icons.php';
114
+ ?>
115
+
116
+ <?php
117
+ $icon_class = "rf-icon--irrelevant";
118
+ include 'partial_icons.php';
119
+ ?>
120
+ </section>
121
+
122
+ <section class="rf-section">
123
+ <h3>Loaders</h3>
124
+
125
+ <?php
126
+ $icon_class = "rf-icon--loading";
127
+ include 'partial_icons.php';
128
+ ?>
129
+ </section>
@@ -0,0 +1,48 @@
1
+ <doctype>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Stardust</title>
6
+ <meta name="description" content="Ethos's design system">
7
+
8
+ <link rel="icon" href="favicon.ico" type="image/x-icon" />
9
+
10
+ <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
11
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
12
+
13
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
14
+ <link rel="stylesheet" href="../assets/compiled/main.css">
15
+ </head>
16
+
17
+ <body>
18
+
19
+ <div class="rf-container">
20
+ <ul>
21
+ <li><a href="#icons">Icons</a></li>
22
+ <li><a href="#modals">Modals</a></li>
23
+ <li><a href="#buttons">Buttons</a></li>
24
+ </ul>
25
+
26
+ <section class="rf-section">
27
+ <h2 id="icons">Icons</h2>
28
+ <?php include "icons.php" ?>
29
+ </section>
30
+
31
+ <section class="rf-section">
32
+ <h2 id="modals">Modals</h2>
33
+ <?php include "modals.php" ?>
34
+ </section>
35
+
36
+ <section class="rf-section">
37
+ <h2 id="buttons">Buttons</h2>
38
+ <?php include "buttons.php" ?>
39
+ </section>
40
+
41
+ <section class="rf-section">
42
+ <h2 id="list-groups">List Groups</h2>
43
+ <?php include "list-groups.php" ?>
44
+ </section>
45
+ </div>
46
+
47
+ </body>
48
+ </html>
@@ -1,7 +1,4 @@
1
- <h1>LISTS</h1>
2
-
3
1
  <section class="rf-section">
4
-
5
2
  <h2>Basic List Groups + List Items</h2>
6
3
 
7
4
  <ul class="rf-list-group">
@@ -0,0 +1,21 @@
1
+ <div class="modal-dialog">
2
+ <div class="modal-content rf-modal rf-modal--<?php echo $modal_type; ?>" role="document">
3
+ <div class="modal-header rf-modal__header">
4
+ <span class="rf-icon rf-icon--xlarge"></span>
5
+ <h2 class="rf-modal__title">This is a <?php echo $modal_type; ?> modal.</h2>
6
+ </div>
7
+ <div class="modal-body rf-modal__body">
8
+ <ul>
9
+ <li>This is a list item.</li>
10
+ <li>This is a second list item.</li>
11
+ <li>
12
+ This is a third list item. It is a long item. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque metus odio, pellentesque non odio ut, aliquam rhoncus quam. Mauris vulputate aliquet massa rutrum bibendum. Etiam consectetur ex erat, in sollicitudin sapien convallis at. Ut quis ligula sed massa consectetur lacinia vel vitae libero.
13
+ </li>
14
+ </ul>
15
+ </div>
16
+ <div class="modal-footer rf-modal__footer">
17
+ <button class="rf-btn rf-btn--secondary">Cancel</button>
18
+ <button class="rf-btn rf-btn--primary">Continue</button>
19
+ </div>
20
+ </div>
21
+ </div>
@@ -0,0 +1,20 @@
1
+ <?php
2
+ $modal_type = "";
3
+ include 'modal_partial.php';
4
+ ?>
5
+
6
+ <?php
7
+ $modal_type = "warning";
8
+ include 'modal_partial.php';
9
+ ?>
10
+
11
+ <?php
12
+ $modal_type = "error";
13
+ include 'modal_partial.php';
14
+ ?>
15
+
16
+ <?php
17
+ $modal_type = "info";
18
+ include 'modal_partial.php';
19
+ ?>
20
+ <br/>
@@ -0,0 +1,16 @@
1
+ <div class="rf-col rf-col--6 rf-col--grid">
2
+ <h4><?php echo $icon_class ?></h4>
3
+ <p>
4
+ <span class="rf-icon <?php echo $icon_class ?> rf-icon--xlarge"></span>
5
+ <span class="rf-icon <?php echo $icon_class ?> rf-icon--large"></span>
6
+ <span class="rf-icon <?php echo $icon_class ?>"></span>
7
+ <span class="rf-icon <?php echo $icon_class ?> rf-icon--small"></span>
8
+ <span class="rf-icon <?php echo $icon_class ?> rf-icon--xsmall"></span>
9
+ </p>
10
+
11
+ <pre>&lt;span class="rf-icon <?php echo $icon_class ?> rf-icon--xlarge"&gt;&lt;/span&gt;
12
+ &lt;span class="rf-icon <?php echo $icon_class ?> rf-icon--large"&gt;&lt;/span&gt;
13
+ &lt;span class="rf-icon <?php echo $icon_class ?>">&lt;/span&gt;
14
+ &lt;span class="rf-icon <?php echo $icon_class ?> rf-icon--small"&gt;&lt;/span&gt;
15
+ &lt;span class="rf-icon <?php echo $icon_class ?> rf-icon--xsmall"&gt;&lt;/span&gt;
16
+ </div>
@@ -1,3 +1,3 @@
1
1
  module Ethosstyles
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ethosstyles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-24 00:00:00.000000000 Z
11
+ date: 2018-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -74,9 +74,12 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
+ - Dockerfile
77
78
  - Gemfile
79
+ - Makefile
78
80
  - README.md
79
81
  - Rakefile
82
+ - app/assets/images/loader.svg
80
83
  - app/assets/stylesheets/_ethosstyles.scss
81
84
  - app/assets/stylesheets/components/_base.scss
82
85
  - app/assets/stylesheets/components/_blurbs.scss
@@ -89,6 +92,7 @@ files:
89
92
  - app/assets/stylesheets/components/_list-groups.scss
90
93
  - app/assets/stylesheets/components/_lists.scss
91
94
  - app/assets/stylesheets/components/_logs.scss
95
+ - app/assets/stylesheets/components/_modal.scss
92
96
  - app/assets/stylesheets/components/_notices.scss
93
97
  - app/assets/stylesheets/components/_panels.scss
94
98
  - app/assets/stylesheets/components/_pills.scss
@@ -98,6 +102,12 @@ files:
98
102
  - app/assets/stylesheets/components/_tables.scss
99
103
  - app/assets/stylesheets/components/_timestamp.scss
100
104
  - app/assets/stylesheets/components/_well.scss
105
+ - app/assets/stylesheets/lib/_normalize.scss
106
+ - app/assets/stylesheets/lib/fontawesome/scss/_variables.scss
107
+ - app/assets/stylesheets/lib/fontawesome/scss/fa-brands.scss
108
+ - app/assets/stylesheets/lib/fontawesome/scss/fa-regular.scss
109
+ - app/assets/stylesheets/lib/fontawesome/scss/fa-solid.scss
110
+ - app/assets/stylesheets/main.scss
101
111
  - app/assets/stylesheets/pages/_styleguide.scss
102
112
  - app/assets/stylesheets/settings/_test.scss
103
113
  - app/assets/stylesheets/settings/_variables.scss
@@ -106,7 +116,14 @@ files:
106
116
  - app/assets/stylesheets/utilities/_shame.scss
107
117
  - app/assets/stylesheets/utilities/_utilities.scss
108
118
  - app/views/buttons.html
109
- - app/views/list-groups.html
119
+ - app/views/buttons.php
120
+ - app/views/favicon.ico
121
+ - app/views/icons.php
122
+ - app/views/index.php
123
+ - app/views/list-groups.php
124
+ - app/views/modal_partial.php
125
+ - app/views/modals.php
126
+ - app/views/partial_icons.php
110
127
  - ethosstyles.gemspec
111
128
  - lib/ethosstyles.rb
112
129
  - lib/ethosstyles/engine.rb