webdesign-sopelnik 0.1.2 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +62 -0
  3. data/_includes/google-analytics.html +9 -0
  4. data/_includes/head.html +27 -0
  5. data/_layouts/default.html +3 -22
  6. data/_layouts/home.html +3 -22
  7. data/_sass/_fonts.scss +57 -0
  8. data/_sass/_normalize.scss +341 -0
  9. data/_sass/_settings.scss +10 -0
  10. data/_sass/bootstrap/scss/_alert.scss +52 -0
  11. data/_sass/bootstrap/scss/_badge.scss +54 -0
  12. data/_sass/bootstrap/scss/_breadcrumb.scss +44 -0
  13. data/_sass/bootstrap/scss/_button-group.scss +163 -0
  14. data/_sass/bootstrap/scss/_buttons.scss +142 -0
  15. data/_sass/bootstrap/scss/_card.scss +286 -0
  16. data/_sass/bootstrap/scss/_carousel.scss +197 -0
  17. data/_sass/bootstrap/scss/_close.scss +40 -0
  18. data/_sass/bootstrap/scss/_code.scss +48 -0
  19. data/_sass/bootstrap/scss/_custom-forms.scss +524 -0
  20. data/_sass/bootstrap/scss/_dropdown.scss +192 -0
  21. data/_sass/bootstrap/scss/_forms.scss +347 -0
  22. data/_sass/bootstrap/scss/_functions.scss +144 -0
  23. data/_sass/bootstrap/scss/_grid.scss +73 -0
  24. data/_sass/bootstrap/scss/_images.scss +42 -0
  25. data/_sass/bootstrap/scss/_input-group.scss +192 -0
  26. data/_sass/bootstrap/scss/_jumbotron.scss +17 -0
  27. data/_sass/bootstrap/scss/_list-group.scss +154 -0
  28. data/_sass/bootstrap/scss/_media.scss +8 -0
  29. data/_sass/bootstrap/scss/_mixins.scss +47 -0
  30. data/_sass/bootstrap/scss/_modal.scss +240 -0
  31. data/_sass/bootstrap/scss/_nav.scss +123 -0
  32. data/_sass/bootstrap/scss/_navbar.scss +324 -0
  33. data/_sass/bootstrap/scss/_pagination.scss +74 -0
  34. data/_sass/bootstrap/scss/_popover.scss +170 -0
  35. data/_sass/bootstrap/scss/_print.scss +141 -0
  36. data/_sass/bootstrap/scss/_progress.scss +47 -0
  37. data/_sass/bootstrap/scss/_reboot.scss +484 -0
  38. data/_sass/bootstrap/scss/_root.scss +20 -0
  39. data/_sass/bootstrap/scss/_spinners.scss +56 -0
  40. data/_sass/bootstrap/scss/_tables.scss +185 -0
  41. data/_sass/bootstrap/scss/_toasts.scss +46 -0
  42. data/_sass/bootstrap/scss/_tooltip.scss +115 -0
  43. data/_sass/bootstrap/scss/_transitions.scss +20 -0
  44. data/_sass/bootstrap/scss/_type.scss +125 -0
  45. data/_sass/bootstrap/scss/_utilities.scss +18 -0
  46. data/_sass/bootstrap/scss/_variables.scss +1142 -0
  47. data/_sass/bootstrap/scss/bootstrap-grid.scss +29 -0
  48. data/_sass/bootstrap/scss/bootstrap-reboot.scss +12 -0
  49. data/_sass/bootstrap/scss/bootstrap.scss +44 -0
  50. data/_sass/bootstrap/scss/mixins/_alert.scss +13 -0
  51. data/_sass/bootstrap/scss/mixins/_background-variant.scss +23 -0
  52. data/_sass/bootstrap/scss/mixins/_badge.scss +17 -0
  53. data/_sass/bootstrap/scss/mixins/_border-radius.scss +76 -0
  54. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +20 -0
  55. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +123 -0
  56. data/_sass/bootstrap/scss/mixins/_buttons.scss +110 -0
  57. data/_sass/bootstrap/scss/mixins/_caret.scss +62 -0
  58. data/_sass/bootstrap/scss/mixins/_clearfix.scss +7 -0
  59. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  60. data/_sass/bootstrap/scss/mixins/_float.scss +14 -0
  61. data/_sass/bootstrap/scss/mixins/_forms.scss +178 -0
  62. data/_sass/bootstrap/scss/mixins/_gradients.scss +45 -0
  63. data/_sass/bootstrap/scss/mixins/_grid-framework.scss +80 -0
  64. data/_sass/bootstrap/scss/mixins/_grid.scss +69 -0
  65. data/_sass/bootstrap/scss/mixins/_hover.scss +37 -0
  66. data/_sass/bootstrap/scss/mixins/_image.scss +36 -0
  67. data/_sass/bootstrap/scss/mixins/_list-group.scss +21 -0
  68. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  69. data/_sass/bootstrap/scss/mixins/_nav-divider.scss +11 -0
  70. data/_sass/bootstrap/scss/mixins/_pagination.scss +22 -0
  71. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  72. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  73. data/_sass/bootstrap/scss/mixins/_screen-reader.scss +34 -0
  74. data/_sass/bootstrap/scss/mixins/_size.scss +7 -0
  75. data/_sass/bootstrap/scss/mixins/_table-row.scss +39 -0
  76. data/_sass/bootstrap/scss/mixins/_text-emphasis.scss +17 -0
  77. data/_sass/bootstrap/scss/mixins/_text-hide.scss +11 -0
  78. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  79. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  80. data/_sass/bootstrap/scss/mixins/_visibility.scss +8 -0
  81. data/_sass/bootstrap/scss/utilities/_align.scss +8 -0
  82. data/_sass/bootstrap/scss/utilities/_background.scss +19 -0
  83. data/_sass/bootstrap/scss/utilities/_borders.scss +75 -0
  84. data/_sass/bootstrap/scss/utilities/_clearfix.scss +3 -0
  85. data/_sass/bootstrap/scss/utilities/_display.scss +26 -0
  86. data/_sass/bootstrap/scss/utilities/_embed.scss +39 -0
  87. data/_sass/bootstrap/scss/utilities/_flex.scss +51 -0
  88. data/_sass/bootstrap/scss/utilities/_float.scss +11 -0
  89. data/_sass/bootstrap/scss/utilities/_interactions.scss +5 -0
  90. data/_sass/bootstrap/scss/utilities/_overflow.scss +5 -0
  91. data/_sass/bootstrap/scss/utilities/_position.scss +32 -0
  92. data/_sass/bootstrap/scss/utilities/_screenreaders.scss +11 -0
  93. data/_sass/bootstrap/scss/utilities/_shadows.scss +6 -0
  94. data/_sass/bootstrap/scss/utilities/_sizing.scss +20 -0
  95. data/_sass/bootstrap/scss/utilities/_spacing.scss +73 -0
  96. data/_sass/bootstrap/scss/utilities/_stretched-link.scss +19 -0
  97. data/_sass/bootstrap/scss/utilities/_text.scss +72 -0
  98. data/_sass/bootstrap/scss/utilities/_visibility.scss +13 -0
  99. data/_sass/bootstrap/scss/vendor/_rfs.scss +204 -0
  100. data/_sass/fontawesome/_animated.scss +20 -0
  101. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  102. data/_sass/fontawesome/_core.scss +20 -0
  103. data/_sass/fontawesome/_fixed-width.scss +6 -0
  104. data/_sass/fontawesome/_icons.scss +1194 -0
  105. data/_sass/fontawesome/_larger.scss +23 -0
  106. data/_sass/fontawesome/_list.scss +18 -0
  107. data/_sass/fontawesome/_mixins.scss +57 -0
  108. data/_sass/fontawesome/_rotated-flipped.scss +23 -0
  109. data/_sass/fontawesome/_screen-reader.scss +5 -0
  110. data/_sass/fontawesome/_shims.scss +2066 -0
  111. data/_sass/fontawesome/_stacked.scss +31 -0
  112. data/_sass/fontawesome/_variables.scss +1207 -0
  113. data/_sass/fontawesome/brands.scss +21 -0
  114. data/_sass/fontawesome/fontawesome.scss +16 -0
  115. data/_sass/fontawesome/regular.scss +22 -0
  116. data/_sass/fontawesome/solid.scss +23 -0
  117. data/_sass/fontawesome/v4-shims.scss +6 -0
  118. data/_sass/main.scss +41 -0
  119. data/_sass/modules/_contact-form.scss +52 -0
  120. data/_sass/modules/_foot.scss +20 -0
  121. data/_sass/modules/_head.scss +176 -0
  122. data/_sass/modules/_video-head.scss +170 -0
  123. data/_sass/widgets/_logo.scss +42 -0
  124. data/_sass/widgets/_portfolio.scss +155 -0
  125. data/_sass/widgets/_social-network.scss +38 -0
  126. data/_sass/widgets/_typo.scss +115 -0
  127. data/assets/css/style.scss +6 -0
  128. data/assets/favicon.ico +0 -0
  129. metadata +126 -2
  130. data/assets/css/styles.scss +0 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a533e3f3af93720bcc2a746f0bc93eb21b77d9708f7fca023927fc66569feecc
4
- data.tar.gz: b13dfd3b72471c61278e1fbebfbe70c98c6143f3d74d6a0cd3806124c17aae10
3
+ metadata.gz: 46f39ee805d5d5db9b9cdfb7a2bebf71d3c16a424030e6a5ae48886561b225b8
4
+ data.tar.gz: 5b2778ff02687ae7f2033ba59aed40ddfbd83eeb0fe8157df9b381e4cffbf920
5
5
  SHA512:
6
- metadata.gz: 94db6ff8b9151b7227a3f95a6eeaae0e32b728b6f7cf3f16f38ccfa05d3e41cadf48d78b0efccde04812d462e5a334dece87ee4c00df1584f6c47ec7eb36fb1c
7
- data.tar.gz: e6741efb57a09622aab2fe79f460ca18c62ddaf602ea520324f36631a131b8cae2198feb0cbcd8e5378c959ecf23c476663800ead3dad7b90fe46715d267b094
6
+ metadata.gz: 7cf79e14b1656d3d2848e3a1deb9adcd76d46af66a8d95842316a638a55a36f76e7c71511b17cddf2aaa73530d8b4d6c4290ad3beb2948f40f4ca2223e5c2f3a
7
+ data.tar.gz: f51f4ea1a6a831729208c9b0fea65fc359481bab5fa75458e5c981bd29dc8a0a8b2d92e639fc871d27d25e45418e2a695e04a780635c148ff07e434053405133
@@ -0,0 +1,62 @@
1
+ title: Webdesign Sopelnik
2
+ email: artur@webdesign-sopelnik.de
3
+ author:
4
+ name: Artur Sopelnik
5
+ email: artur@webdesign-sopelnik.de
6
+ description: > # this means to ignore newlines until "show_excerpts:"
7
+ Write an awesome description for your new site here. You can edit this
8
+ line in _config.yml. It will appear in your document head meta (for
9
+ Google search results) and in your feed.xml site description.
10
+
11
+ show_excerpts: false # set to true to show excerpts on the homepage
12
+
13
+ # Minima date format
14
+ # refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
15
+ minima:
16
+ date_format: "%b %-d, %Y"
17
+
18
+ # generate social links in footer
19
+ social_links:
20
+ twitter: jekyllrb
21
+ github: jekyll
22
+ # devto: jekyll
23
+ # dribbble: jekyll
24
+ # facebook: jekyll
25
+ # flickr: jekyll
26
+ # instagram: jekyll
27
+ # linkedin: jekyll
28
+ # pinterest: jekyll
29
+ # youtube: jekyll
30
+ # youtube_channel: UC8CXR0-3I70i1tfPg1PAE1g
31
+ # youtube_channel_name: CloudCannon
32
+ # telegram: jekyll
33
+ # googleplus: +jekyll
34
+ # microdotblog: jekyll
35
+ # keybase: jekyll
36
+
37
+ # Mastodon instances
38
+ # mastodon:
39
+ # - username: jekyll
40
+ # instance: example.com
41
+ # - username: jekyll2
42
+ # instance: example.com
43
+
44
+ # GitLab instances
45
+ # gitlab:
46
+ # - username: jekyll
47
+ # instance: example.com
48
+ # - username: jekyll2
49
+ # instance: example.com
50
+
51
+ # If you want to link only specific pages in your header, uncomment
52
+ # this and add the path to the pages in order as they should show up
53
+ #header_pages:
54
+ # - about.md
55
+
56
+ # Build settings
57
+ theme: webdesign-sopelnik
58
+
59
+ include: ["node_modules"]
60
+
61
+ exclude:
62
+ - Gemfile.lock
@@ -0,0 +1,9 @@
1
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
+ <script>
3
+ window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', '{{ site.google_analytics }}');
9
+ </script>
@@ -0,0 +1,27 @@
1
+ <head>
2
+ <script async src="https://www.googletagmanager.com/gtag/js?id=UA-126210788-1"></script>
3
+ <script src="https://www.youtube.com/iframe_api"></script>
4
+ <script>
5
+ window.dataLayer = window.dataLayer || [];
6
+
7
+ function gtag() {
8
+ dataLayer.push(arguments);
9
+ }
10
+
11
+ gtag('js', new Date());
12
+
13
+ gtag('config', 'UA-126210788-1', {'anonymize_ip': true});
14
+ </script>
15
+ <meta charset="utf-8">
16
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
17
+ <title> {{ page.title }}</title>
18
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
19
+ <meta name="author" content="Artur Sopelnik">
20
+ <script src="/assets/js/main.min.js"></script>
21
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
22
+ <link rel="shortcut icon" href="{{ "/assets/favicon.ico" | relative_url }}">
23
+
24
+ {%- if jekyll.environment == 'production' and site.google_analytics -%}
25
+ {%- include google-analytics.html -%}
26
+ {%- endif -%}
27
+ </head>
@@ -1,27 +1,8 @@
1
- <!doctype html>
2
- <html lang="de">
3
- <head>
4
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-126210788-1"></script>
5
- <script src="https://www.youtube.com/iframe_api"></script>
6
- <script>
7
- window.dataLayer = window.dataLayer || [];
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "de" }}">
8
3
 
9
- function gtag() {
10
- dataLayer.push(arguments);
11
- }
4
+ {%- include head.html -%}
12
5
 
13
- gtag('js', new Date());
14
-
15
- gtag('config', 'UA-126210788-1', {'anonymize_ip': true});
16
- </script>
17
- <meta charset="utf-8">
18
- <meta http-equiv="x-ua-compatible" content="ie=edge">
19
- <title> {{ page.title }}</title>
20
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
21
- <meta name="author" content="Artur Sopelnik">
22
- <link rel="stylesheet" href="/assets/css/styles.css">
23
- <script src="/assets/js/main.min.js"></script>
24
- </head>
25
6
  <body>
26
7
 
27
8
  <header class="video-head">
@@ -1,27 +1,8 @@
1
- <!doctype html>
2
- <html lang="de">
3
- <head>
4
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-126210788-1"></script>
5
- <script src="https://www.youtube.com/iframe_api"></script>
6
- <script>
7
- window.dataLayer = window.dataLayer || [];
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "de" }}">
8
3
 
9
- function gtag() {
10
- dataLayer.push(arguments);
11
- }
4
+ {%- include head.html -%}
12
5
 
13
- gtag('js', new Date());
14
-
15
- gtag('config', 'UA-126210788-1', {'anonymize_ip': true});
16
- </script>
17
- <meta charset="utf-8">
18
- <meta http-equiv="x-ua-compatible" content="ie=edge">
19
- <title> {{ page.title }}</title>
20
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
21
- <meta name="author" content="Artur Sopelnik">
22
- <link rel="stylesheet" href="/assets/css/styles.css">
23
- <script src="/assets/js/main.min.js"></script>
24
- </head>
25
6
  <body>
26
7
 
27
8
  <header class="video-head">
@@ -0,0 +1,57 @@
1
+ @font-face {
2
+ font-family: 'Montserrat';
3
+ font-style: normal;
4
+ font-weight: 300;
5
+ src: url('../fonts/montserrat-v12-latin-300.woff2') format('woff2'),
6
+ url('../fonts/montserrat-v12-latin-300.woff') format('woff');
7
+ }
8
+
9
+ /* montserrat-600 - latin */
10
+ @font-face {
11
+ font-family: 'Montserrat';
12
+ font-style: normal;
13
+ font-weight: 600;
14
+ src: url('../fonts/montserrat-v12-latin-600.woff2') format('woff2'),
15
+ url('../fonts/montserrat-v12-latin-600.woff') format('woff');
16
+ }
17
+
18
+ $fa-font-path: '../fonts';
19
+
20
+ @font-face {
21
+ font-family: 'Font Awesome 5 Free';
22
+ font-style: normal;
23
+ font-weight: 900;
24
+ src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
25
+ url('#{$fa-font-path}/fa-solid-900.woff') format('woff');
26
+ }
27
+
28
+ .fa,
29
+ .fas {
30
+ font-family: 'Font Awesome 5 Free';
31
+ font-weight: 900;
32
+ }
33
+
34
+ @font-face {
35
+ font-family: 'Font Awesome 5 Free';
36
+ font-style: normal;
37
+ font-weight: 400;
38
+ src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
39
+ url('#{$fa-font-path}/fa-regular-400.woff') format('woff');
40
+ }
41
+
42
+ .far {
43
+ font-family: 'Font Awesome 5 Free';
44
+ font-weight: 400;
45
+ }
46
+
47
+ @font-face {
48
+ font-family: 'Font Awesome 5 Brands';
49
+ font-style: normal;
50
+ font-weight: normal;
51
+ src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
52
+ url('#{$fa-font-path}/fa-brands-400.woff') format('woff');
53
+ }
54
+
55
+ .fab {
56
+ font-family: 'Font Awesome 5 Brands';
57
+ }
@@ -0,0 +1,341 @@
1
+ /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+
19
+ /**
20
+ * Remove the margin in all browsers.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
26
+
27
+ /**
28
+ * Correct the font size and margin on `h1` elements within `section` and
29
+ * `article` contexts in Chrome, Firefox, and Safari.
30
+ */
31
+
32
+ h1 {
33
+ font-size: 2em;
34
+ margin: 0.67em 0;
35
+ }
36
+
37
+ /* Grouping content
38
+ ========================================================================== */
39
+
40
+ /**
41
+ * 1. Add the correct box sizing in Firefox.
42
+ * 2. Show the overflow in Edge and IE.
43
+ */
44
+
45
+ hr {
46
+ box-sizing: content-box; /* 1 */
47
+ height: 0; /* 1 */
48
+ overflow: visible; /* 2 */
49
+ }
50
+
51
+ /**
52
+ * 1. Correct the inheritance and scaling of font size in all browsers.
53
+ * 2. Correct the odd `em` font sizing in all browsers.
54
+ */
55
+
56
+ pre {
57
+ font-family: monospace, monospace; /* 1 */
58
+ font-size: 1em; /* 2 */
59
+ }
60
+
61
+ /* Text-level semantics
62
+ ========================================================================== */
63
+
64
+ /**
65
+ * Remove the gray background on active links in IE 10.
66
+ */
67
+
68
+ a {
69
+ background-color: transparent;
70
+ }
71
+
72
+ /**
73
+ * 1. Remove the bottom border in Chrome 57-
74
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
75
+ */
76
+
77
+ abbr[title] {
78
+ border-bottom: none; /* 1 */
79
+ text-decoration: underline; /* 2 */
80
+ text-decoration: underline dotted; /* 2 */
81
+ }
82
+
83
+ /**
84
+ * Add the correct font weight in Chrome, Edge, and Safari.
85
+ */
86
+
87
+ b,
88
+ strong {
89
+ font-weight: bolder;
90
+ }
91
+
92
+ /**
93
+ * 1. Correct the inheritance and scaling of font size in all browsers.
94
+ * 2. Correct the odd `em` font sizing in all browsers.
95
+ */
96
+
97
+ code,
98
+ kbd,
99
+ samp {
100
+ font-family: monospace, monospace; /* 1 */
101
+ font-size: 1em; /* 2 */
102
+ }
103
+
104
+ /**
105
+ * Add the correct font size in all browsers.
106
+ */
107
+
108
+ small {
109
+ font-size: 80%;
110
+ }
111
+
112
+ /**
113
+ * Prevent `sub` and `sup` elements from affecting the line height in
114
+ * all browsers.
115
+ */
116
+
117
+ sub,
118
+ sup {
119
+ font-size: 75%;
120
+ line-height: 0;
121
+ position: relative;
122
+ vertical-align: baseline;
123
+ }
124
+
125
+ sub {
126
+ bottom: -0.25em;
127
+ }
128
+
129
+ sup {
130
+ top: -0.5em;
131
+ }
132
+
133
+ /* Embedded content
134
+ ========================================================================== */
135
+
136
+ /**
137
+ * Remove the border on images inside links in IE 10.
138
+ */
139
+
140
+ img {
141
+ border-style: none;
142
+ }
143
+
144
+ /* Forms
145
+ ========================================================================== */
146
+
147
+ /**
148
+ * 1. Change the font styles in all browsers.
149
+ * 2. Remove the margin in Firefox and Safari.
150
+ */
151
+
152
+ button,
153
+ input,
154
+ optgroup,
155
+ select,
156
+ textarea {
157
+ font-family: inherit; /* 1 */
158
+ font-size: 100%; /* 1 */
159
+ line-height: 1.15; /* 1 */
160
+ margin: 0; /* 2 */
161
+ }
162
+
163
+ /**
164
+ * Show the overflow in IE.
165
+ * 1. Show the overflow in Edge.
166
+ */
167
+
168
+ button,
169
+ input { /* 1 */
170
+ overflow: visible;
171
+ }
172
+
173
+ /**
174
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
175
+ * 1. Remove the inheritance of text transform in Firefox.
176
+ */
177
+
178
+ button,
179
+ select { /* 1 */
180
+ text-transform: none;
181
+ }
182
+
183
+ /**
184
+ * Correct the inability to style clickable types in iOS and Safari.
185
+ */
186
+
187
+ button,
188
+ [type="button"],
189
+ [type="reset"],
190
+ [type="submit"] {
191
+ -webkit-appearance: button;
192
+ }
193
+
194
+ /**
195
+ * Remove the inner border and padding in Firefox.
196
+ */
197
+
198
+ button::-moz-focus-inner,
199
+ [type="button"]::-moz-focus-inner,
200
+ [type="reset"]::-moz-focus-inner,
201
+ [type="submit"]::-moz-focus-inner {
202
+ border-style: none;
203
+ padding: 0;
204
+ }
205
+
206
+ /**
207
+ * Restore the focus styles unset by the previous rule.
208
+ */
209
+
210
+ button:-moz-focusring,
211
+ [type="button"]:-moz-focusring,
212
+ [type="reset"]:-moz-focusring,
213
+ [type="submit"]:-moz-focusring {
214
+ outline: 1px dotted ButtonText;
215
+ }
216
+
217
+ /**
218
+ * Correct the padding in Firefox.
219
+ */
220
+
221
+ fieldset {
222
+ padding: 0.35em 0.75em 0.625em;
223
+ }
224
+
225
+ /**
226
+ * 1. Correct the text wrapping in Edge and IE.
227
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
228
+ * 3. Remove the padding so developers are not caught out when they zero out
229
+ * `fieldset` elements in all browsers.
230
+ */
231
+
232
+ legend {
233
+ box-sizing: border-box; /* 1 */
234
+ color: inherit; /* 2 */
235
+ display: table; /* 1 */
236
+ max-width: 100%; /* 1 */
237
+ padding: 0; /* 3 */
238
+ white-space: normal; /* 1 */
239
+ }
240
+
241
+ /**
242
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
243
+ */
244
+
245
+ progress {
246
+ vertical-align: baseline;
247
+ }
248
+
249
+ /**
250
+ * Remove the default vertical scrollbar in IE 10+.
251
+ */
252
+
253
+ textarea {
254
+ overflow: auto;
255
+ }
256
+
257
+ /**
258
+ * 1. Add the correct box sizing in IE 10.
259
+ * 2. Remove the padding in IE 10.
260
+ */
261
+
262
+ [type="checkbox"],
263
+ [type="radio"] {
264
+ box-sizing: border-box; /* 1 */
265
+ padding: 0; /* 2 */
266
+ }
267
+
268
+ /**
269
+ * Correct the cursor style of increment and decrement buttons in Chrome.
270
+ */
271
+
272
+ [type="number"]::-webkit-inner-spin-button,
273
+ [type="number"]::-webkit-outer-spin-button {
274
+ height: auto;
275
+ }
276
+
277
+ /**
278
+ * 1. Correct the odd appearance in Chrome and Safari.
279
+ * 2. Correct the outline style in Safari.
280
+ */
281
+
282
+ [type="search"] {
283
+ -webkit-appearance: textfield; /* 1 */
284
+ outline-offset: -2px; /* 2 */
285
+ }
286
+
287
+ /**
288
+ * Remove the inner padding in Chrome and Safari on macOS.
289
+ */
290
+
291
+ [type="search"]::-webkit-search-decoration {
292
+ -webkit-appearance: none;
293
+ }
294
+
295
+ /**
296
+ * 1. Correct the inability to style clickable types in iOS and Safari.
297
+ * 2. Change font properties to `inherit` in Safari.
298
+ */
299
+
300
+ ::-webkit-file-upload-button {
301
+ -webkit-appearance: button; /* 1 */
302
+ font: inherit; /* 2 */
303
+ }
304
+
305
+ /* Interactive
306
+ ========================================================================== */
307
+
308
+ /*
309
+ * Add the correct display in Edge, IE 10+, and Firefox.
310
+ */
311
+
312
+ details {
313
+ display: block;
314
+ }
315
+
316
+ /*
317
+ * Add the correct display in all browsers.
318
+ */
319
+
320
+ summary {
321
+ display: list-item;
322
+ }
323
+
324
+ /* Misc
325
+ ========================================================================== */
326
+
327
+ /**
328
+ * Add the correct display in IE 10+.
329
+ */
330
+
331
+ template {
332
+ display: none;
333
+ }
334
+
335
+ /**
336
+ * Add the correct display in IE 10.
337
+ */
338
+
339
+ [hidden] {
340
+ display: none;
341
+ }