stipe 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/README.md +13 -0
  2. data/lib/stipe.rb +4 -0
  3. data/stylesheets/stipe/_buttons.scss +0 -0
  4. data/stylesheets/stipe/_color.scss +7 -0
  5. data/stylesheets/stipe/_forms.scss +24 -0
  6. data/stylesheets/stipe/_gradients.scss +11 -0
  7. data/stylesheets/stipe/_grid.scss +59 -0
  8. data/stylesheets/stipe/_media.scss +14 -0
  9. data/stylesheets/stipe/_stipe.scss +13 -0
  10. data/stylesheets/stipe/_typography.scss +44 -0
  11. data/stylesheets/stipe/buttons/_extends.scss +13 -0
  12. data/stylesheets/stipe/buttons/doc-src/buttons.md +3 -0
  13. data/stylesheets/stipe/buttons/lib/_cupid-green.scss +54 -0
  14. data/stylesheets/stipe/buttons/lib/_minimal.scss +36 -0
  15. data/stylesheets/stipe/color/_color_math.scss +61 -0
  16. data/stylesheets/stipe/color/_default_color_pallet.scss +56 -0
  17. data/stylesheets/stipe/color/_extends.scss +222 -0
  18. data/stylesheets/stipe/color/_grayscale_math.scss +10 -0
  19. data/stylesheets/stipe/forms/_default.scss +11 -0
  20. data/stylesheets/stipe/forms/_extends.scss +103 -0
  21. data/stylesheets/stipe/forms/_mixins.scss +32 -0
  22. data/stylesheets/stipe/gradients/_extends.scss +48 -0
  23. data/stylesheets/stipe/gradients/mixins/_area_51.scss +53 -0
  24. data/stylesheets/stipe/gradients/mixins/_linear_gradient_bkgimage.scss +43 -0
  25. data/stylesheets/stipe/grid/_extends.scss +221 -0
  26. data/stylesheets/stipe/grid/_mixins.scss +66 -0
  27. data/stylesheets/stipe/grid/lib/_grid_background.scss +10 -0
  28. data/stylesheets/stipe/grid/lib/_grid_margin.scss +23 -0
  29. data/stylesheets/stipe/grid/lib/_grid_placement.scss +66 -0
  30. data/stylesheets/stipe/grid/lib/_push_logic.scss +52 -0
  31. data/stylesheets/stipe/grid/lib/_the_grid.scss +98 -0
  32. data/stylesheets/stipe/resets/_eric_meyer.scss +48 -0
  33. data/stylesheets/stipe/resets/_toadstool.scss +212 -0
  34. data/stylesheets/stipe/stipe/_extends.scss +42 -0
  35. data/stylesheets/stipe/stipe/_mixins.scss +291 -0
  36. data/stylesheets/stipe/toadstool/_buttons.scss +29 -0
  37. data/stylesheets/stipe/toadstool/_config.scss +228 -0
  38. data/stylesheets/stipe/toadstool/_design.scss +52 -0
  39. data/stylesheets/stipe/toadstool/_forms.scss +19 -0
  40. data/stylesheets/stipe/toadstool/_grids.scss +93 -0
  41. data/stylesheets/stipe/toadstool/_modules.scss +3 -0
  42. data/stylesheets/stipe/toadstool/_typography.scss +109 -0
  43. data/stylesheets/stipe/toadstool/_ui_manifest.scss +39 -0
  44. data/stylesheets/stipe/toadstool/_ui_patterns.scss +2 -0
  45. data/stylesheets/stipe/toadstool/_web_fonts.scss +32 -0
  46. data/stylesheets/stipe/toadstool/modules/_footer.scss +6 -0
  47. data/stylesheets/stipe/toadstool/modules/_header.scss +41 -0
  48. data/stylesheets/stipe/toadstool/modules/_main_nav.scss +46 -0
  49. data/stylesheets/stipe/toadstool/ui_patterns/_emBox.scss +16 -0
  50. data/stylesheets/stipe/toadstool/ui_patterns/_prettify.scss +118 -0
  51. data/stylesheets/stipe/typography/_default.scss +66 -0
  52. data/stylesheets/stipe/typography/_extends.scss +86 -0
  53. data/stylesheets/stipe/typography/_functions.scss +22 -0
  54. data/stylesheets/stipe/typography/_mixins.scss +105 -0
  55. data/stylesheets/stipe/typography/web_fonts/_font_awesome.scss +4 -0
  56. data/stylesheets/stipe/typography/web_fonts/_font_awesome_pua.scss +231 -0
  57. data/stylesheets/stipe/typography/web_fonts/_zocial.scss +3 -0
  58. data/stylesheets/stipe/typography/web_fonts/_zocial_characters.scss +54 -0
  59. metadata +135 -0
@@ -0,0 +1,52 @@
1
+
2
+
3
+ .main_content {
4
+ @include full_width_block(12);
5
+
6
+ article {
7
+ @include grid(12.25, alphaomega, $grid_align: center, $grid_uom: em);
8
+
9
+ @media #{$tablet_portrait} {
10
+ @include grid(12.25, alphaomega, $grid_align: center);
11
+ }
12
+
13
+ @media #{$mobile} {
14
+ @include grid(12.25, alphaomega, $grid_align: center);
15
+ }
16
+
17
+ header {
18
+ @include grid(12);
19
+ @media #{$mobile} {
20
+ @include grid(4, $grid_context: 4);
21
+ }
22
+ }
23
+
24
+ section {
25
+ clear: both;
26
+ &:nth-of-type(1n+2) {
27
+ border-top: 1px dotted;
28
+ padding-top: em(20);
29
+ }
30
+ }
31
+ }
32
+ .element_example {
33
+ margin-bottom: em(20);
34
+ float: left;
35
+ background-image: url(data:image/gif;base64,R0lGODlhUAABAIAAAP/////l5SwAAAAAUAABAAACC4SPocvtD6NsqIICADs=);
36
+ }
37
+ }
38
+
39
+ .hidden {
40
+ display: none;
41
+ }
42
+
43
+ .mobi_hidden {
44
+ @media #{$mobile} {
45
+ display: none;
46
+ }
47
+ }
48
+
49
+ code {
50
+ padding: em(2) em(5);
51
+ background: $charlie_color_hotel;
52
+ }
@@ -0,0 +1,19 @@
1
+ // Styled drop down menues
2
+ [class*="toadstool"] {
3
+ select {
4
+ border: 1px solid #555;
5
+ padding: 0.5em;
6
+ line-height: 1.2em;
7
+ padding: 0.5em 1em 0.5em 0.75em;
8
+ margin-top: em(3);
9
+ @include border_radius(0.5em);
10
+ .flexbox & {
11
+ -webkit-appearance: none;
12
+ -moz-appearance: none; // if this ever works, Moz bug for over a year
13
+ background: #fff url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%0C%80%00%00%00%40%08%02%00%00%00W%AEz%EF%00%00%00%19tEXtSoftware%00Adobe%20ImageReadyq%C9e%3C%00%00%04%E5IDATx%DA%EC%DD%3DN%E3Z%18%06%E0%B1oD%82%A8%E8(%A8%D2Q%D2%D0%40%83%C4%12%D8%01%3Db%09P%81%A0%40%A2%60%05%D9%05%BB%A0%04%09!B%3A%9A%10%07%F2g%E7%22%90f(%98%E09%23Y7%E7%3EOi%1F%1FK_%FD%EA%FD%92%E9t%FA%03%00%00%00%00%00%00%00%00%80%3F%97%1A%01%00%00%00%00%00%00%00%00%40%98%9A%06%2C%00%00%00%00%00%00%00%00%20%0E%D5%A7%A14%60%01%00%00%00%00%00%00%00%00%04%D2%80%05%00%00%00%00%00%00%00%00DB%03%16%00%00%00%00%00%00%00%00%C0%DC%D0%80%05%00%00%00%00%00%00%00%00D%A2(%8A%8A%FF(%80%05%00%00%00%00%00%00%00%00D%C2%0AB%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88%84%15%84%00%00%00%00%00%00%00%00%00%81%AC%20%04%00%00%00%00%00%00%00%00%98%1B%1A%B0%00%00%00%00%00%00%00%00%80HXA%08%00%00%00%00%00%00%00%00%10%A8%FA4%94%00%16%00%00%00%00%00%00%00%00%10%09%0DX%00%00%00%00%00%00%00%00%00%81%AAOC%A5%86%0E%00%00%00%00%00%00%00%00%10F%03%16%00%00%00%00%00%00%00%00%10%09%2B%08%01%00%00%00%00%00%00%00%00%02U%9F%86%12%C0%02%00%00%00%00%00%00%00%00%22!%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%08%A4%01%0B%00%00%00%00%00%00%00%00%20%90%06%2C%00%00%00%00%00%00%00%00%80%40%02X%00%00%00%00%00%00%00%00%00%81%AC%20%04%00%00%00%00%00%00%00%00%08%24%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%084%3B%0Du%7B%7B%7Bzz%3A%18%0C%CA_%D8h4%F6%F6%F6677%F3%3C%FF%F2%40%D2%E9t%CC%1D%00%00%00%00%00%00%00%00%88%40%96e3%DE%26I2%18%0C%8E%8F%8F%EF%EE%EE%CA%DC%B6%BC%BC%7Cxx%D8l6_%5E%5EF%A3%D1%97%E9%AE%D4%D0%01%00%00%00%00%00%00%00%80%FF%83%E9t%BA%B8%B8xvv%B6%B3%B3%F3%ED%E1%F5%F5%F5V%AB%B5%B6%B66%99L~W%7F%F5%26y%7C%7C4Y%00%00%00%00%00%00%00%00%20%02%BD%5E%EF%DB3i%9A%D6%EB%F5%AB%AB%ABV%AB%F5%BBu%84%BB%BB%BB%FB%FB%FB%FD~%3F%CB%B2%B73%B3%02X%EDv%DB%DC%01%00%00%00%00%00%00%00%80%08%94%09%60%FDx%DFE%B8%B0%B0%D0n%B7%2F..%3A%9D%CE%E7W%8DF%E3%E8%E8hcc%23%7B7%1C%0E%BF%DC%3C%F8%EB%AA%87%87%07s%07%00%00%00%00%00%00%00%00%22%F0%FC%FC%5C%F2d%9A%A6%B5Zm2%99%9C%9F%9F___%7F%3C%5C%5D%5D%3D99YYY%E9%F5z%FD~%7F%3C%1E%17E1%FB%9E%7F%0E%0E%0E%CC%1D%00%00%00%00%00%00%00%00%88%C0p8%2Cyr%3A%9D%E6y%9E%A6%E9%F6%F6%F6h4%BA%B9%B9%D9%DA%DA%BA%BC%BC%AC%D5j%DDn7%CB%B2%B7%87%B3%BB%AF%3E%24%F7%F7%F7%E6%0E%00%00%00%00%00%00%00%00D%A0%7C%03%D6Oi%9A%D6%EB%F5n%B7%DBl6%C7%E3q%96e%AF%AF%AF%DF%16_%FDT%2B%93%D2%02%00%00%00%00%00%00%00%00%F8%EF%2B%1F%9C%FA%FC%C9%9B%A5%A5%A5%A7%A7%A7%3C%CF%CB%AC%1D%FCL%00%0B%00%00%00%00%00%00%00%00%88DX%1A*%7F%97%24I%C0%E7%02X%00%00%00%00%00%00%00%00%40%24%FE%26%0D%15%F6%AD%00%16%00%00%00%00%00%00%00%00%10%89%80%15%84%7FI%00%0B%00%00%00%00%00%00%00%00%88D%F5i(%01%2C%00%00%00%00%00%00%00%00%20%12%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%08%24%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%D5%A7%A1RC%07%00%00%00%00%00%00%00%00%08%A3%01%0B%00%00%00%00%00%00%00%00%88%84%15%84%00%00%00%00%00%00%00%00%00%81%AAOC%09%60%01%00%00%00%00%00%00%00%00%91%10%C0%02%00%00%00%00%00%00%00%00%08T%FD%0A%C2%D4%D0%01%00%00%00%00%00%00%00%00%C2h%C0%02%00%00%00%00%00%00%00%00%22a%05!%00%00%00%00%00%00%00%00%40%A0%EA%D3PV%10%02%00%00%00%00%00%00%00%00%04%D2%80%05%00%00%00%00%00%00%00%00D%A2(%8A%8A%FF(%80%05%00%00%00%00%00%00%00%00D%C2%0AB%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88%84%06%2C%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88DQ%14%15%FF%F1_%01%06%00md%E2%BF%C9%C3%19%DA%00%00%00%00IEND%AEB%60%82") no-repeat right center;
14
+ background-size: 1600px 32px;
15
+ }
16
+ }
17
+ }
18
+
19
+
@@ -0,0 +1,93 @@
1
+
2
+ .col_4_grid, .col_10_grid {
3
+ display: none;
4
+ }
5
+
6
+ @media #{$tablet_portrait} {
7
+ .col_10_grid {
8
+ display: block;
9
+ }
10
+ .col_12_grid {
11
+ display: none;
12
+ }
13
+ }
14
+
15
+ @media #{$mobile} {
16
+ .col_4_grid {
17
+ display: block;
18
+ }
19
+ .col_12_grid, .col_10_grid {
20
+ display: none;
21
+ }
22
+ }
23
+
24
+
25
+
26
+ // grid ----------------------
27
+ .grid-1 {
28
+ @extend %grid_1;
29
+ @extend %grid_display;
30
+ }
31
+
32
+ .grid-2 {
33
+ @extend %grid_2;
34
+ @extend %grid_display;
35
+ }
36
+
37
+ .grid-3 {
38
+ @extend %grid_3;
39
+ @extend %grid_display;
40
+ }
41
+
42
+ .grid-4 {
43
+ @extend %grid_4;
44
+ @extend %grid_display;
45
+ }
46
+
47
+ .grid-5 {
48
+ @extend %grid_5;
49
+ @extend %grid_display;
50
+ }
51
+
52
+ .grid-6 {
53
+ @extend %grid_6;
54
+ @extend %grid_display;
55
+ }
56
+
57
+ .grid-7 {
58
+ @extend %grid_7;
59
+ @extend %grid_display;
60
+ }
61
+
62
+ .grid-8 {
63
+ @extend %grid_8;
64
+ @extend %grid_display;
65
+ }
66
+
67
+ .grid-9 {
68
+ @extend %grid_9;
69
+ @extend %grid_display;
70
+ }
71
+
72
+ .grid-10 {
73
+ @extend %grid_10;
74
+ @extend %grid_display;
75
+ }
76
+
77
+ .grid-11 {
78
+ @extend %grid_11;
79
+ @extend %grid_display;
80
+ }
81
+
82
+ .grid-12 {
83
+ @extend %grid_12;
84
+ @extend %grid_display;
85
+ }
86
+
87
+ .grid-full {
88
+ @include full_width_block(12, $main_grid_align: left);
89
+ }
90
+
91
+ .grid-full_center {
92
+ @include full_width_block(12);
93
+ }
@@ -0,0 +1,3 @@
1
+ @import "modules/header";
2
+ @import "modules/footer";
3
+ @import "modules/main_nav";
@@ -0,0 +1,109 @@
1
+ // Twitter's 'Font-Awesome' is installed in Toadstool
2
+ // see http://goo.gl/4JkBd for list of icon options
3
+ // Stipe has all icon classes loaded as silent classes, to activate use the following example
4
+ // -----------------------------------------------------------------------
5
+ // .icon-glass {
6
+ // @extend %icon-glass;
7
+ // }
8
+
9
+
10
+
11
+ // Zocial's icon font is installed in Toadstool
12
+ // see http://goo.gl/t92t5 for list of icon options
13
+ // Stipe has all icon classes loaded as silent classes, to activate use the following example
14
+ // -----------------------------------------------------------------------
15
+ // .zocial-amazon {
16
+ // @extend %zocial-amazon;
17
+ // }
18
+
19
+
20
+
21
+ // Import of default text bootstrap settings
22
+ // -----------------------------------------------------------------------
23
+ // @import "stipe/typography/default"; // Comment out if unwanted
24
+
25
+
26
+
27
+ // Customize the following to fit your specifications
28
+ // Commented out styles represent Toadstool's default bootstrap styles
29
+ // -----------------------------------------------------------------------
30
+ html {
31
+ // font: #{$font_size / 16 * 1em}/$line_height $primary_font_family;
32
+ // color: $primary_text;
33
+ }
34
+
35
+ [class*="toadstool"] {
36
+ h1 {
37
+ @extend %headings_1;
38
+ font-weight: bold;
39
+ }
40
+ h2 {
41
+ @extend %headings_2;
42
+ color: $alpha_primary;
43
+ }
44
+ p {
45
+ color: $charlie_gray;
46
+ @include text(14);
47
+ }
48
+ }
49
+
50
+
51
+
52
+ h3 {
53
+ // font-size: 1.17em; // user agent default
54
+ // @extend %headings_3;
55
+ }
56
+
57
+ h4 {
58
+ // font-size: 1em; // user agent default
59
+ // @extend %headings_4;
60
+ }
61
+
62
+ h5 {
63
+ // font-size: 0.83em; // user agent default
64
+ // @extend %headings_5;
65
+ }
66
+
67
+ h6 {
68
+ // font-size: 0.75em; // user agent default
69
+ // @extend %headings_6;
70
+ }
71
+
72
+ // Standard body text support
73
+ // --------------------------------
74
+ p {
75
+ // margin-bottom: 1em;
76
+ // text-indent: 0;
77
+ // &:last-child {
78
+ // margin-bottom: 0;
79
+ // }
80
+ }
81
+
82
+ b {
83
+ // &:after {
84
+ // content: " ";
85
+ // }
86
+ }
87
+
88
+
89
+ // :link Pseudo-class is totally not necessary as I can tell
90
+ // code here to combat legacy code
91
+ a {
92
+ // &:link {
93
+ // color: $href_color;
94
+ // text-decoration: none;
95
+ // }
96
+ // &:hover, &:active {
97
+ // text-decoration: underline;
98
+ // }
99
+ // &:visited {
100
+ // color: $href_color;
101
+ // }
102
+ }
103
+
104
+ // .toadstool_header {
105
+ // h1 {
106
+ // color: $bravo_primary;
107
+ // font-size: em($heading_1);
108
+ // }
109
+ // }
@@ -0,0 +1,39 @@
1
+ // App Config - this is where most of your magic will happen
2
+ // ------------------------------------------------------------------------------
3
+ @import "config"; // Editing defaults here will override any set in the Stipe gem
4
+
5
+
6
+ // Want web fonts? We got those too.
7
+ // ------------------------------------------------------------------------------
8
+ @import "web_fonts";
9
+
10
+
11
+
12
+ // Following sequence will load the necessary Stipe libraries
13
+ // ------------------------------------------------------------------------------
14
+ @import "stipe/stipe";
15
+ @import "stipe/media";
16
+ @import "stipe/typography";
17
+ @import "stipe/grid";
18
+ @import "stipe/forms";
19
+ @import "stipe/color";
20
+ @import "stipe/gradients";
21
+
22
+
23
+
24
+ // This where you start building your own styles.
25
+ // ------------------------------------------------------------------------------
26
+ @import "typography";
27
+ @import "design";
28
+ @import "forms";
29
+ @import "buttons";
30
+ @import "grids";
31
+ @import "ui_patterns";
32
+ @import "modules";
33
+
34
+
35
+ // Following sequence will load the necessary Stipe extends
36
+ // ------------------------------------------------------------------------------
37
+ @import "stipe/grid/extends";
38
+ @import "stipe/color/extends";
39
+ @import "stipe/buttons/extends";
@@ -0,0 +1,2 @@
1
+ @import "ui_patterns/prettify";
2
+ @import "ui_patterns/emBox";
@@ -0,0 +1,32 @@
1
+
2
+ // -----------------------------------------------------------
3
+ @import "stipe/typography/mixins"; // Do not edit, needed to pull in necessary mixin
4
+ $webfont_directory: "/fonts/" !default; // edit this directory in the '_config.scss' file if needed.
5
+
6
+
7
+
8
+ // Pre-loaded web fonts for your use, enjoy!
9
+ // Fonts needed to be loaded in path specified above
10
+ // in relation to the rendered CSS file
11
+ // -----------------------------------------------------------
12
+ // To activate 'zocial' uncomment both lines
13
+ // @import "stipe/typography/web_fonts/zocial";
14
+ // @import "stipe/typography/web_fonts/zocial_characters";
15
+
16
+ // To activate 'font_awesome' uncomment both lines
17
+ @import "stipe/typography/web_fonts/font_awesome";
18
+ @import "stipe/typography/web_fonts/font_awesome_pua";
19
+
20
+
21
+
22
+ // Install your own
23
+ // -----------------------------------------------------------
24
+ //@font-face {
25
+ // @include font-face ($font_family: [name of family], $font-file: [name of file], $font_weight: [value], $font_style: [value]);
26
+ //}
27
+
28
+
29
+
30
+ // Install google fonts
31
+ // -----------------------------------------------------------
32
+ @import url(http://fonts.googleapis.com/css?family=Lato:400,700);
@@ -0,0 +1,6 @@
1
+ .toadstool_main_footer {
2
+ padding: em(10) 0;
3
+ border-top: 1px solid $border_color;
4
+ @include grid(12, $grid_align: center);
5
+ clear: both;
6
+ }
@@ -0,0 +1,41 @@
1
+ .toadstool_main_header {
2
+ @extend %clearfix;
3
+ h1 {
4
+ color: $white;
5
+ float: left;
6
+ margin-bottom: 0;
7
+ }
8
+ background: $bravo_gray;
9
+ padding: rem(10) rem(10) rem(15) rem(10);
10
+ form {
11
+ display: inline-block;
12
+ float: right;
13
+ select {
14
+ min-width: rem(100);
15
+ }
16
+ @media #{$mobile} {
17
+ margin-top: em(10);
18
+ margin-right: em(10);
19
+ margin-left: em(2);
20
+ width: 80%;
21
+ float: none;
22
+ }
23
+ }
24
+ }
25
+
26
+ .toadstool_header {
27
+ h1 {
28
+ margin-top: rem(24);
29
+ }
30
+ }
31
+
32
+ .toadstool_subheader {
33
+ h2 {
34
+ margin-bottom: 0;
35
+ }
36
+ }
37
+
38
+
39
+
40
+
41
+
@@ -0,0 +1,46 @@
1
+ .toadstool_nav {
2
+ ol {
3
+ @include flexbox(100%, auto);
4
+ background: $bravo_gray;
5
+ font-weight: bold;
6
+ @media #{$mobile} {
7
+ @include flexbox(100%, auto, $orient: vertical);
8
+ @include linear_gradient_w3c ($bravo_gray, #{$bravo_gray 30%,$delta_gray 100%});
9
+ }
10
+ }
11
+ li {
12
+ @include flex(1);
13
+ text-align: center;
14
+ line-height: 3em;
15
+ background: $white;
16
+ color: $alpha_gray;
17
+ border-radius: em(5) em(5) 0 0;
18
+ @media #{$mobile} {
19
+ width: 100%;
20
+ border-radius: 0;
21
+ font-size: 1.2em;
22
+ background: transparent;
23
+ color: $echo_gray;
24
+ border-top: 1px solid $echo_gray;
25
+ }
26
+ }
27
+ a {
28
+ color: $white;
29
+ @include linear_gradient_w3c ($bravo_gray, #{$bravo_gray 50%,$delta_gray 100%});
30
+ @media #{$mobile} {
31
+ background: transparent;
32
+ }
33
+ display: block;
34
+ &:hover {
35
+ text-decoration: none;
36
+ background: $white;
37
+ color: $alpha_gray;
38
+ border-radius: em(5) em(5) 0 0;
39
+ @media #{$mobile} {
40
+ border-radius: 0;
41
+ background: transparent;
42
+ color: $echo_gray;
43
+ }
44
+ }
45
+ }
46
+ }