jekyll-theme-fica 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,117 @@
1
+ //Main Color Scheme
2
+ $background-color: #2b2b2b !default;
3
+ $text-color: #ffffff !default;
4
+
5
+
6
+ $site-title-color: #ffffff !default;
7
+ $site-header-bg: darken($background-color, 5%) !default;
8
+
9
+ $btn-bg-color: #525252 !default;
10
+ $btn-color-hover: #353535 !default;
11
+ $btn-text-hover-color: darken($text-color, 20%) !default;
12
+
13
+ $header-bg-color: #80ffd4 !default;
14
+ $home-header-title-color: darken($background-color, 3%) !default;
15
+
16
+ $button-download: #0097A7 !default;
17
+ $button-download-hover: #80ffd4 !default;
18
+
19
+
20
+ $code-background-color: darken($background-color, 3%) !default;
21
+
22
+ $code-text-color: #cfcc13 !default;
23
+ $blockquote-text-color: darken(#ffffff, 30%) !default;
24
+
25
+ $link-base-color: #80ffd4 !default;
26
+ $link-visited-color: darken($link-base-color, 15%) !default;
27
+ $link-hover-color: darken(#80ffd4, 40%) !default;
28
+
29
+ $header-link-color: darken($text-color, 40%) !default;
30
+
31
+ $border-color-01: $code-background-color !default;
32
+
33
+ $menu-bdr-color: darken($background-color, 6%) !default;
34
+ $menu-color: #ffffff !default;
35
+ $menu-bg-color-chae: darken($background-color, 6%) !default;
36
+
37
+ $table-text-color: $text-color !default;
38
+ $table-zebra-color: darken($background-color, 2%) !default;
39
+ $table-header-bg-color: darken($background-color, 3%) !default;
40
+ $table-header-border: darken($background-color, 10%) !default;
41
+ $table-border-color: darken($background-color, 100%) !default;
42
+
43
+ $footer-bg-color: darken($background-color, 2%) !default;
44
+
45
+ .highlight .hll { background-color: #515151 }
46
+ /*.highlight { background: #2d2d2d; color: #f2f0ec }*/
47
+ .highlight { background: #1A1F35; color: #f2f0ec }
48
+ .highlight .c { color: #747369 } /* Comment */
49
+ .highlight .err { color: #f2777a } /* Error */
50
+ .highlight .k { color: #cc99cc } /* Keyword */
51
+ .highlight .l { color: #f99157 } /* Literal */
52
+ .highlight .n { color: #f2f0ec } /* Name */
53
+ .highlight .o { color: #66cccc } /* Operator */
54
+ .highlight .p { color: #f2f0ec } /* Punctuation */
55
+ .highlight .ch { color: #747369 } /* Comment.Hashbang */
56
+ .highlight .cm { color: #747369 } /* Comment.Multiline */
57
+ .highlight .cp { color: #747369 } /* Comment.Preproc */
58
+ .highlight .cpf { color: #747369 } /* Comment.PreprocFile */
59
+ .highlight .c1 { color: #747369 } /* Comment.Single */
60
+ .highlight .cs { color: #747369 } /* Comment.Special */
61
+ .highlight .gd { color: #f2777a } /* Generic.Deleted */
62
+ .highlight .ge { font-style: italic } /* Generic.Emph */
63
+ .highlight .gh { color: #f2f0ec; font-weight: bold } /* Generic.Heading */
64
+ .highlight .gi { color: #99cc99 } /* Generic.Inserted */
65
+ .highlight .gp { color: #747369; font-weight: bold } /* Generic.Prompt */
66
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
67
+ .highlight .gu { color: #66cccc; font-weight: bold } /* Generic.Subheading */
68
+ .highlight .kc { color: #cc99cc } /* Keyword.Constant */
69
+ .highlight .kd { color: #cc99cc } /* Keyword.Declaration */
70
+ .highlight .kn { color: #66cccc } /* Keyword.Namespace */
71
+ .highlight .kp { color: #cc99cc } /* Keyword.Pseudo */
72
+ .highlight .kr { color: #cc99cc } /* Keyword.Reserved */
73
+ .highlight .kt { color: #ffcc66 } /* Keyword.Type */
74
+ .highlight .ld { color: #99cc99 } /* Literal.Date */
75
+ .highlight .m { color: #f99157 } /* Literal.Number */
76
+ .highlight .s { color: #99cc99 } /* Literal.String */
77
+ .highlight .na { color: #6699cc } /* Name.Attribute */
78
+ .highlight .nb { color: #f2f0ec } /* Name.Builtin */
79
+ .highlight .nc { color: #ffcc66 } /* Name.Class */
80
+ .highlight .no { color: #f2777a } /* Name.Constant */
81
+ .highlight .nd { color: #66cccc } /* Name.Decorator */
82
+ .highlight .ni { color: #f2f0ec } /* Name.Entity */
83
+ .highlight .ne { color: #f2777a } /* Name.Exception */
84
+ .highlight .nf { color: #6699cc } /* Name.Function */
85
+ .highlight .nl { color: #f2f0ec } /* Name.Label */
86
+ .highlight .nn { color: #ffcc66 } /* Name.Namespace */
87
+ .highlight .nx { color: #6699cc } /* Name.Other */
88
+ .highlight .py { color: #f2f0ec } /* Name.Property */
89
+ .highlight .nt { color: #66cccc } /* Name.Tag */
90
+ .highlight .nv { color: #f2777a } /* Name.Variable */
91
+ .highlight .ow { color: #66cccc } /* Operator.Word */
92
+ .highlight .w { color: #f2f0ec } /* Text.Whitespace */
93
+ .highlight .mb { color: #f99157 } /* Literal.Number.Bin */
94
+ .highlight .mf { color: #f99157 } /* Literal.Number.Float */
95
+ .highlight .mh { color: #f99157 } /* Literal.Number.Hex */
96
+ .highlight .mi { color: #f99157 } /* Literal.Number.Integer */
97
+ .highlight .mo { color: #f99157 } /* Literal.Number.Oct */
98
+ .highlight .sa { color: #99cc99 } /* Literal.String.Affix */
99
+ .highlight .sb { color: #99cc99 } /* Literal.String.Backtick */
100
+ .highlight .sc { color: #f2f0ec } /* Literal.String.Char */
101
+ .highlight .dl { color: #99cc99 } /* Literal.String.Delimiter */
102
+ .highlight .sd { color: #747369 } /* Literal.String.Doc */
103
+ .highlight .s2 { color: #99cc99 } /* Literal.String.Double */
104
+ .highlight .se { color: #f99157 } /* Literal.String.Escape */
105
+ .highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */
106
+ .highlight .si { color: #f99157 } /* Literal.String.Interpol */
107
+ .highlight .sx { color: #99cc99 } /* Literal.String.Other */
108
+ .highlight .sr { color: #99cc99 } /* Literal.String.Regex */
109
+ .highlight .s1 { color: #99cc99 } /* Literal.String.Single */
110
+ .highlight .ss { color: #99cc99 } /* Literal.String.Symbol */
111
+ .highlight .bp { color: #f2f0ec } /* Name.Builtin.Pseudo */
112
+ .highlight .fm { color: #6699cc } /* Name.Function.Magic */
113
+ .highlight .vc { color: #f2777a } /* Name.Variable.Class */
114
+ .highlight .vg { color: #f2777a } /* Name.Variable.Global */
115
+ .highlight .vi { color: #f2777a } /* Name.Variable.Instance */
116
+ .highlight .vm { color: #f2777a } /* Name.Variable.Magic */
117
+ .highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,2 @@
1
+ // Placeholder to allow defining custom styles that override everything else.
2
+ // (Use `_sass/minima/custom-variables.scss` to override variable defaults)
@@ -0,0 +1 @@
1
+ // Placeholder to allow overriding predefined variables smoothly.
@@ -0,0 +1,71 @@
1
+ @charset "utf-8";
2
+
3
+ // Define defaults for each variable.
4
+
5
+ //transitions
6
+ $transition-btn: color 0.2s, background-color 0.2s, border-color 0.2s;
7
+ $transition-links: color 0.3s;
8
+
9
+ $base-font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif !default;
10
+ $code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
11
+ $base-font-size: 16px !default;
12
+ $base-font-weight: 400 !default;
13
+ $small-font-size: $base-font-size * 0.875 !default;
14
+ $base-line-height: 1.5 !default;
15
+
16
+ $spacing-unit: 30px !default;
17
+
18
+ $table-text-align: left !default;
19
+
20
+ // Width of the content area
21
+ $content-width: 800px !default;
22
+
23
+ $on-palm: 600px !default;
24
+ $on-laptop: 800px !default;
25
+
26
+ $on-medium: $on-palm !default;
27
+ $on-large: $on-laptop !default;
28
+
29
+ // Use media queries like this:
30
+ // @include media-query($on-palm) {
31
+ // .wrapper {
32
+ // padding-right: $spacing-unit / 2;
33
+ // padding-left: $spacing-unit / 2;
34
+ // }
35
+ // }
36
+ // Notice the following mixin uses max-width, in a deprecated, desktop-first
37
+ // approach, whereas media queries used elsewhere now use min-width.
38
+ @mixin media-query($device) {
39
+ @media screen and (max-width: $device) {
40
+ @content;
41
+ }
42
+ }
43
+
44
+ @mixin relative-font-size($ratio) {
45
+ font-size: #{$ratio}rem;
46
+ }
47
+ @mixin large {
48
+ @media screen and (min-width: #{$large-breakpoint}) {
49
+ @content;
50
+ }
51
+ }
52
+
53
+ @mixin medium {
54
+ @media screen and (min-width: #{$medium-breakpoint}) and (max-width: #{$large-breakpoint}) {
55
+ @content;
56
+ }
57
+ }
58
+
59
+ @mixin small {
60
+ @media screen and (max-width: #{$medium-breakpoint}) {
61
+ @content;
62
+ }
63
+ }
64
+
65
+ // Import pre-styling-overrides hook and style-partials.
66
+ @import
67
+ "Base", // Defines element resets.
68
+ "Layout", // Defines structure and style based on CSS selectors.
69
+ "Custom-Variables", // Override predefined variables.
70
+ "Custom-Styles" // Override existing styles .
71
+ ;
data/_sass/Layout.scss ADDED
@@ -0,0 +1,526 @@
1
+ /*
2
+ * Site header
3
+ */
4
+
5
+ .site-header {
6
+ background-color: $site-header-bg;
7
+ border-top: 5px solid $site-header-bg;
8
+ border-bottom: 5px solid $site-header-bg;
9
+ min-height: $spacing-unit * 1.865;
10
+ line-height: $base-line-height * $base-font-size * 2.25;
11
+
12
+ // Positioning context for the mobile navigation icon
13
+ position: relative;
14
+ }
15
+
16
+ .site-title {
17
+ @include relative-font-size(1.625);
18
+ font-weight: 690;
19
+ letter-spacing: -1px;
20
+ margin-bottom: 0;
21
+ float: left;
22
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
23
+
24
+ @include media-query($on-palm) {
25
+ padding-right: 45px;
26
+ }
27
+
28
+ &,
29
+ &:visited {
30
+ color: $site-title-color;
31
+ }
32
+
33
+ &:hover {
34
+ color: $header-link-color;
35
+ }
36
+ }
37
+ //Header Banner
38
+ .header-pic {
39
+ position: relative;
40
+ animation-name: pic_app;
41
+ animation-duration: 2s;
42
+ -webkit-animation-timing-function: linear;
43
+ animation-timing-function: linear;
44
+ @keyframes pic_app {
45
+ 0% {opacity: 0%;}
46
+ 20% {opacity: 20%;}
47
+ 50% {opacity: 50%;}
48
+ 70% {opacity: 70%;}
49
+ 90% {opacity: 90%;}
50
+ 100% {opacity: 100%;}
51
+ }
52
+ }
53
+ .page-header {
54
+ border-top: 10px solid $home-header-title-color;
55
+ color: $site-title-color;
56
+ background-color: $home-header-title-color;
57
+ border-bottom: 5px solid $home-header-title-color;
58
+ padding-bottom: 10px;
59
+ text-align: center;
60
+ }
61
+ .page-header-title {
62
+ border-top: 8px;
63
+ margin-bottom: 0%;
64
+ font-size: 2.20rem;
65
+ color: $header-bg-color;
66
+ text-align: center;
67
+ font-weight: bold;
68
+ font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
69
+ padding-bottom: 7px;
70
+ }
71
+
72
+ .page-header-description {
73
+ margin-bottom: 0%;
74
+ padding-bottom: 10px;
75
+ font-size: 1.2rem;
76
+ color: $header-bg-color;
77
+ text-align: center;
78
+ font-weight: lighter;
79
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
80
+ position: relative;
81
+ animation-name: des_app;
82
+ animation-duration: 1s;
83
+ -webkit-animation-timing-function: linear;
84
+ animation-timing-function: linear;
85
+ @keyframes des_app {
86
+ 0% {opacity: 0%;}
87
+ 20% {opacity: 20%;}
88
+ 50% {opacity: 50%;}
89
+ 70% {opacity: 70%;}
90
+ 90% {opacity: 90%;}
91
+ 100% {opacity: 100%;}
92
+ }
93
+ }
94
+
95
+ //Side Navigation
96
+ .sidenav {
97
+ width: 130px;
98
+ z-index: 1;
99
+ top: 110px;
100
+ left: 15px;
101
+ background: $menu-bdr-color;
102
+ overflow-x: hidden;
103
+ padding: 8px 0;
104
+ border-radius: 5%;
105
+ }
106
+
107
+ .sidenav a {
108
+ display: list-item;
109
+ list-style-type: disc;
110
+ list-style-position: inside;
111
+ padding: 6px 8px 6px 16px;
112
+ font-size: 17px;
113
+ color: $link-base-color;
114
+ display: block;
115
+ }
116
+
117
+ .sidenav a:hover {
118
+ color: $link-hover-color;
119
+ }
120
+
121
+ @media screen and (max-height: 450px) {
122
+ .sidenav {
123
+ padding-top: 15px;
124
+ }
125
+ .sidenav a {
126
+ font-size: 18px;
127
+ }
128
+ }
129
+
130
+ .site-nav {
131
+ position: absolute;
132
+ top: 9px;
133
+ right: $spacing-unit / 2;
134
+ background-color: $menu-bdr-color;
135
+ border-radius: 10px;
136
+ text-align: right;
137
+
138
+ .nav-trigger {
139
+ display: none;
140
+ float: right;
141
+ padding-right: 100px;
142
+ padding-left: 1px;
143
+ }
144
+
145
+ .menu-icon {
146
+ float: right;
147
+ width: 36px;
148
+ height: 26px;
149
+ line-height: 0;
150
+ padding-top: 10px;
151
+ text-align: center;
152
+
153
+ > svg path {
154
+ fill: $menu-color;
155
+ }
156
+ }
157
+
158
+ label[for="nav-trigger"] {
159
+ display: block;
160
+ float: right;
161
+ width: 36px;
162
+ height: 36px;
163
+ z-index: 2;
164
+ cursor: pointer;
165
+ }
166
+
167
+ input ~ .trigger {
168
+ clear: both;
169
+ display: none;
170
+ }
171
+
172
+ input:checked ~ .trigger {
173
+ display: block;
174
+ padding-bottom: 5px;
175
+ }
176
+
177
+ .page-link {
178
+ font-weight: 600;
179
+ color: $text-color;
180
+ line-height: $base-line-height;
181
+ letter-spacing: 0rem;
182
+ display: block;
183
+ padding: 5px 10px;
184
+
185
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
186
+
187
+ // Gaps between nav items, but not on the last one
188
+ &:not(:last-child) {
189
+ margin-right: 0;
190
+ }
191
+ margin-left: 20px;
192
+
193
+ &:hover {
194
+ color: $header-link-color;
195
+ }
196
+ }
197
+
198
+ @media screen and (min-width: $on-medium) {
199
+ position: static;
200
+ float: right;
201
+ border: none;
202
+ background-color: inherit;
203
+
204
+ label[for="nav-trigger"] {
205
+ display: none;
206
+ }
207
+
208
+ .menu-icon {
209
+ display: none;
210
+ }
211
+
212
+ input ~ .trigger {
213
+ display: block;
214
+ }
215
+
216
+ .page-link {
217
+ display: inline;
218
+ padding: 0;
219
+
220
+ &:not(:last-child) {
221
+ margin-right: 20px;
222
+ }
223
+ margin-left: auto;
224
+ }
225
+ }
226
+ }
227
+
228
+ /**
229
+ * Site footer
230
+ */
231
+ .site-footer {
232
+ background-color: $footer-bg-color;
233
+ padding: $spacing-unit 0;
234
+ }
235
+
236
+ .footer-heading {
237
+ @include relative-font-size(1.125);
238
+ margin-bottom: $spacing-unit / 2;
239
+ }
240
+
241
+ .footer-col {
242
+ margin-bottom: $spacing-unit / 2;
243
+ }
244
+
245
+ .footer-col-1,
246
+ .footer-col-2 {
247
+ width: calc(50% - (#{$spacing-unit} / 2));
248
+ }
249
+
250
+ .footer-col-3 {
251
+ width: calc(100% - (#{$spacing-unit} / 2));
252
+ }
253
+
254
+ @media screen and (min-width: $on-large) {
255
+ .footer-col-1 {
256
+ width: calc(35% - (#{$spacing-unit} / 2));
257
+ }
258
+
259
+ .footer-col-2 {
260
+ width: calc(20% - (#{$spacing-unit} / 2));
261
+ }
262
+
263
+ .footer-col-3 {
264
+ width: calc(45% - (#{$spacing-unit} / 2));
265
+ }
266
+ }
267
+ .Links_footer {
268
+ list-style: none;
269
+ color: $link-base-color;
270
+ width: calc(100% - (#{$spacing-unit} / 2));
271
+ padding: 0 ($spacing-unit / 2);
272
+ transition: $transition-links;
273
+
274
+
275
+ &:first-child {
276
+ font-weight: bolder;
277
+ padding-right: $spacing-unit / 2;
278
+ padding-left: 0;
279
+ padding-bottom: 4px;
280
+ font-size: larger;
281
+ color: #f0ffff;
282
+ }
283
+
284
+ &:first-child:hover {
285
+ color: #f0ffff;
286
+ }
287
+
288
+ &:last-child {
289
+ padding-right: 0;
290
+ padding-left: $spacing-unit / 2;
291
+ }
292
+
293
+ &:hover {
294
+ color: $link-hover-color;
295
+ text-decoration: none;
296
+
297
+
298
+ }
299
+ }
300
+ .Product_footer {
301
+ list-style: none;
302
+ color: #f0ffff;
303
+ width: calc(100% - (#{$spacing-unit} / 2));
304
+ padding: 0 ($spacing-unit / 2);
305
+
306
+ &:first-child {
307
+ padding-right: $spacing-unit / 2;
308
+ padding-left: 0;
309
+ padding-bottom: 1px;
310
+ font-size: 0.6cm;
311
+ color: #f0ffff;
312
+ font-weight: 900;
313
+ }
314
+
315
+ &:last-child:hover {
316
+ color: #f0ffff;
317
+ }
318
+
319
+ &:last-child {
320
+ padding-right: 0;
321
+ padding-left: $spacing-unit / 2;
322
+ font-size: 40;
323
+ }
324
+
325
+ &:hover {
326
+ color: #f0ffff;
327
+ text-decoration: none;
328
+ }
329
+ }
330
+
331
+ @media screen and (min-width: $on-medium) {
332
+ .footer-col-wrapper {
333
+ display: flex;
334
+ }
335
+
336
+ .footer-col {
337
+ width: calc(28% - (#{$spacing-unit} / 2));
338
+ padding: 0 ($spacing-unit / 2);
339
+
340
+ &:first-child {
341
+ padding-right: $spacing-unit / 2;
342
+ padding-left: 0;
343
+ }
344
+
345
+ &:last-child {
346
+ padding-right: 0;
347
+ padding-left: $spacing-unit / 2;
348
+ }
349
+ }
350
+ .footer-middle {
351
+ width: calc(35% - (#{$spacing-unit} / 2));
352
+ padding: 0 ($spacing-unit / 2);
353
+
354
+ &:first-child {
355
+ padding-right: $spacing-unit / 2;
356
+ padding-left: 0;
357
+ }
358
+
359
+ &:last-child {
360
+ padding-right: 0;
361
+ padding-left: $spacing-unit / 2;
362
+ }
363
+ }
364
+ .footer-last {
365
+ width: calc(35% - (#{$spacing-unit} / 2));
366
+ padding: 0 ($spacing-unit / 2);
367
+
368
+ &:first-child {
369
+ padding-right: $spacing-unit / 2;
370
+ padding-left: 0;
371
+ }
372
+
373
+ &:last-child {
374
+ padding-right: 0;
375
+ padding-left: $spacing-unit / 2;
376
+ }
377
+ }
378
+ }
379
+
380
+ /**
381
+ * Page content
382
+ */
383
+ .page-content {
384
+ padding: $spacing-unit 0;
385
+ flex: 1 0 auto;
386
+ }
387
+
388
+ .page-heading {
389
+ @include relative-font-size(2);
390
+ }
391
+
392
+ .post-list-heading {
393
+ @include relative-font-size(1.75);
394
+ }
395
+
396
+ .post-list {
397
+ margin-left: 0;
398
+ list-style: none;
399
+
400
+ > li {
401
+ margin-bottom: $spacing-unit;
402
+ }
403
+ }
404
+
405
+ .post-meta {
406
+ font-size: $small-font-size;
407
+ color: $site-title-color;
408
+ }
409
+
410
+ .post-link {
411
+ display: block;
412
+ @include relative-font-size(1.5);
413
+ }
414
+
415
+ /**
416
+ * Posts
417
+ */
418
+ .post-header {
419
+ margin-bottom: $spacing-unit;
420
+ }
421
+
422
+ .post-title,
423
+ .post-content h1 {
424
+ @include relative-font-size(2.625);
425
+ letter-spacing: -1px;
426
+ line-height: 1.15;
427
+
428
+ @media screen and (min-width: $on-large) {
429
+ @include relative-font-size(2.625);
430
+ }
431
+ }
432
+
433
+ .post-content {
434
+ margin-bottom: $spacing-unit;
435
+ h4,
436
+ h5,
437
+ h6 {
438
+ margin-top: $spacing-unit;
439
+ }
440
+
441
+ h2 {
442
+ @include relative-font-size(1.75);
443
+
444
+ @media screen and (min-width: $on-large) {
445
+ @include relative-font-size(2);
446
+ }
447
+ }
448
+
449
+ h3 {
450
+ @include relative-font-size(1.375);
451
+
452
+ @media screen and (min-width: $on-large) {
453
+ @include relative-font-size(1.625);
454
+ }
455
+ }
456
+
457
+ h4 {
458
+ @include relative-font-size(1.25);
459
+ }
460
+
461
+ h5 {
462
+ @include relative-font-size(1.125);
463
+ }
464
+ h6 {
465
+ @include relative-font-size(1.0625);
466
+ }
467
+ }
468
+
469
+
470
+ /**
471
+ * Pagination navbar
472
+ */
473
+ .pagination {
474
+ margin-bottom: $spacing-unit;
475
+ li {
476
+ a,
477
+ div {
478
+ min-width: 41px;
479
+ text-align: center;
480
+ box-sizing: border-box;
481
+ }
482
+ div {
483
+ display: block;
484
+ padding: $spacing-unit / 4;
485
+ border: 1px solid transparent;
486
+
487
+ &.pager-edge {
488
+ color: $border-color-01;
489
+ border: 1px dashed;
490
+ }
491
+ }
492
+ }
493
+ }
494
+
495
+
496
+ /**
497
+ * Grid helpers
498
+ */
499
+ @media screen and (min-width: $on-large) {
500
+ .one-half {
501
+ width: calc(50% - (#{$spacing-unit} / 2));
502
+ }
503
+ }
504
+
505
+ .btn {
506
+ padding: 7px 25px;
507
+ border: none;
508
+ border-radius: 5px;
509
+ cursor: pointer;
510
+ color: $text-color;
511
+ background-color: $btn-bg-color;
512
+ border-color: $btn-bg-color;
513
+ transition: $transition-btn;
514
+
515
+ &,
516
+ &:visited {
517
+ color: $text-color;
518
+ }
519
+
520
+ &:hover {
521
+ color: $btn-text-hover-color;
522
+ text-decoration: none;
523
+ background-color: $btn-color-hover;
524
+ border-color: $btn-color-hover;
525
+ }
526
+ }