blog.sahithyen.com 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 94b2f955c0609c848eeab9b2bef300c495ce3cfc
4
+ data.tar.gz: 1c75ddac02c9c6c3518d1041d3f42a3b34196d34
5
+ SHA512:
6
+ metadata.gz: c178359e11b4b60653e7bf9776f31dbab7388aee9b429ce6059773552b12f6c36b5445fdc5bde121f8952275e020875e9f224c6fa838a70c59269ab4b6fb9ecd
7
+ data.tar.gz: c21556621334168b09534408966c6101c30b1f8ec82fe412f4177f575e1592baec6580b59456a91cdca1495d8b0f0bbdbf624c273123898a3d296e08a4f87669
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Sahithyen Kanaganayagam
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,48 @@
1
+ # blog.sahithyen.com
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's Gemfile:
10
+
11
+ ```ruby
12
+ gem "blog.sahithyen.com"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: blog.sahithyen.com
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install blog.sahithyen.com
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
48
+
@@ -0,0 +1,9 @@
1
+ <footer>
2
+ <div class="footer-bar">
3
+ <div class="footer-bar-inner">
4
+ <div class="u-cf u-full-width">
5
+ 2017 © Sahithyen
6
+ </div>
7
+ </div>
8
+ </div>
9
+ </footer>
@@ -0,0 +1,9 @@
1
+ <head>
2
+ <title>
3
+ {% if page.title %} {{ page.title | escape }} {% else %} {{ site.title | escape }} {% endif %}
4
+ </title>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+
8
+ <link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
9
+ </head>
@@ -0,0 +1,14 @@
1
+ <nav>
2
+ <div class="top-bar">
3
+ <div class="top-bar-inner">
4
+ <div class="u-cf u-full-width">
5
+ <div class="u-pull-left">
6
+ <a class="item" href="https://blog.sahithyen.com/">Sahithyen's blog</a>
7
+ </div>
8
+ <div class="u-pull-right">
9
+ <a class="item" href="https://sahithyen.com/">Landing</a>
10
+ </div>
11
+ </div>
12
+ </div>
13
+ </div>
14
+ </nav>
@@ -0,0 +1,2 @@
1
+ <script src="{{ "/assets/dropcap.min.js" | relative_url }}"></script>
2
+ <script src="{{ "/assets/script.js" | relative_url }}"></script>
@@ -0,0 +1,21 @@
1
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
2
+
3
+ {% include head.html %}
4
+
5
+ <body>
6
+ <div class="wrapper">
7
+ {% include navigation.html %}
8
+
9
+ <main>
10
+ <div class="container">
11
+ {{ content }}
12
+ </div>
13
+ </main>
14
+
15
+ {% include footer.html %}
16
+ </div>
17
+
18
+ {% include scripts.html %}
19
+ </body>
20
+
21
+ </html>
@@ -0,0 +1,30 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% for post in site.posts %}
6
+ <article>
7
+ <div class="content-title">
8
+ <h1>{{ post.title }}</h1>
9
+ </div>
10
+
11
+ <div class="content-wrapper">
12
+ <div class="content-info">
13
+ <div class="date">
14
+ {{ post.date | date: "%b %-d, %Y" }}
15
+ </div>
16
+ <div class="category">
17
+ {{ post.categories }}
18
+ </div>
19
+ </div>
20
+
21
+ <div class="content">
22
+ {{ post.excerpt }}
23
+ </div>
24
+
25
+ <a href="{{ post.url }}">Weiterlesen...</a>
26
+ </div>
27
+
28
+ <hr>
29
+ </article>
30
+ {% endfor %}
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article>
6
+ <div class="content-title">
7
+ <h1>{{ page.title }}</h1>
8
+ </div>
9
+
10
+ <div class="content-wrapper">
11
+ <div class="content">
12
+ {{ content }}
13
+ </div>
14
+ </div>
15
+
16
+ <hr>
17
+ </article>
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article>
6
+ <div class="content-title">
7
+ <h1>{{ page.title }}</h1>
8
+ </div>
9
+
10
+ <div class="content-wrapper">
11
+ <div class="content-info">
12
+ <div class="date">
13
+ {{ page.date | date: "%b %-d, %Y" }}
14
+ </div>
15
+ <div class="category">
16
+ {{ page.category }}
17
+ </div>
18
+ </div>
19
+
20
+ <div class="content">
21
+ {{ content }}
22
+ </div>
23
+ </div>
24
+
25
+ <hr>
26
+ </article>
@@ -0,0 +1,27 @@
1
+ /*
2
+ * Skeleton V2.0.4
3
+ * Copyright 2014, Dave Gamache
4
+ * www.getskeleton.com
5
+ * Free to use under the MIT license.
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * 12/9/2014
8
+ * Sass Version by Seth Coelen https://github.com/whatsnewsaes
9
+ */
10
+
11
+ /* Base files. */
12
+ @import "base/normalize";
13
+ @import "base/variables";
14
+ @import "base/functions";
15
+ @import "base/base-styles";
16
+ @import "base/utils";
17
+ @import "base/typography";
18
+
19
+ /* Modules */
20
+ @import "modules/grid";
21
+ @import "modules/buttons";
22
+ @import "modules/forms";
23
+ @import "modules/lists";
24
+ @import "modules/code";
25
+ @import "modules/tables";
26
+ @import "modules/spacing";
27
+ @import "modules/media-queries";
@@ -0,0 +1,50 @@
1
+ // Main colors
2
+ $primary-color: #1b428e;
3
+ $active-color: #5a92fe;
4
+ $content-color: #333333;
5
+ $seperator-color: #e1e1e1;
6
+
7
+ // Font
8
+ $font-size: 22px;
9
+ $line-height: 1.4;
10
+ $body-font: "adobe-caslon-pro", serif;
11
+ $heading-font: "myriad-pro", sans-serif;
12
+ $active-font: "myriad-pro", sans-serif;
13
+ $heading-sizes: ( h1: 3.125em, h2: 2.618em, h3: 1.931em, h4: 1.618em, h5: 1.194em, h6 : 1em );
14
+
15
+ // Dimensions
16
+ $container-width: 700px;
17
+ $content-info-left-min-size: 1200px;
18
+
19
+ // Loader
20
+ $loader-margin-top: 0;
21
+ $loader-margin-bottom: 50px;
22
+ $loader-animation-size: 60px;
23
+ $loader-animation-color: $content-color;
24
+ $loader-text-width: 250px;
25
+ $loader-text-margin-top: 15px;
26
+
27
+ // Top bar
28
+ $top-bar-color: rgba(255, 255, 255, 0.9);
29
+ $top-bar-padding-top: 20px;
30
+ $top-bar-padding-bottom: 20px;
31
+ $top-bar-padding-sides: 25px;
32
+ $top-bar-border-color: $seperator-color;
33
+ $top-bar-border-size: 1px;
34
+ $top-bar-margin-sides: 10px;
35
+ $top-bar-margin-bottom: 40px;
36
+ $top-bar-item-margin: 20px;
37
+ $search-input-border-size: 1px;
38
+
39
+ // Content
40
+ $content-info-margin: 25px;
41
+ $content-info-width: 200px;
42
+
43
+ // Footer bar
44
+ $footer-bar-color: white;
45
+ $footer-bar-padding-top: 25px;
46
+ $footer-bar-padding-bottom: 20px;
47
+ $footer-bar-padding-sides: $top-bar-padding-sides;
48
+ $footer-bar-border-color: $seperator-color;
49
+ $footer-bar-border-size: 1px;
50
+ $footer-bar-margin-sides: 10px;
@@ -0,0 +1,37 @@
1
+ // Base Styles
2
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
3
+ // NOTE
4
+ // html is set to 62.5% so that all the REM measurements throughout Skeleton
5
+ // are based on 10px sizing. So basically 1.5rem = 15px :)
6
+
7
+ html {
8
+ font-size: 62.5%;
9
+ }
10
+
11
+ body {
12
+ font-size: 1.5em; // currently ems cause chrome bug misinterpreting rems on body element
13
+ line-height: 1.6;
14
+ font-weight: 400;
15
+ font-family: $font-family;
16
+ color: $font-color;
17
+ }
18
+
19
+ // Links
20
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
21
+
22
+ a {
23
+ color: $link-color;
24
+ &:hover {
25
+ color: darken($link-color, 5%);
26
+ }
27
+ }
28
+
29
+ // Misc
30
+ //––––––––––––––––––––––––––––––––––––––––––––––––––
31
+
32
+ hr {
33
+ margin-top: 3rem;
34
+ margin-bottom: 3.5rem;
35
+ border-width: 0;
36
+ border-top: 1px solid $light-grey;
37
+ }
@@ -0,0 +1,17 @@
1
+ /*
2
+ * Skeleton V2.0.4
3
+ * Copyright 2014, Dave Gamache
4
+ * www.getskeleton.com
5
+ * Free to use under the MIT license.
6
+ * http://www.opensource.org/licenses/mit-license.php
7
+ * 12/9/2014
8
+ * Sass Version by Seth Coelen https://github.com/whatsnewsaes
9
+ */
10
+
11
+ @function grid-column-width($n) {
12
+ @return $column-width * $n - ($column-margin*($total-columns - $n)/$total-columns);
13
+ }
14
+
15
+ @function grid-offset-length($n) {
16
+ @return grid-column-width($n) + $column-margin;
17
+ }
@@ -0,0 +1,428 @@
1
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ //
4
+ // 1. Set default font family to sans-serif.
5
+ // 2. Prevent iOS and IE text size adjust after device orientation change,
6
+ // without disabling user zoom.
7
+ //
8
+
9
+ html {
10
+ font-family: sans-serif; // 1
11
+ -ms-text-size-adjust: 100%; // 2
12
+ -webkit-text-size-adjust: 100%; // 2
13
+ }
14
+
15
+ //
16
+ // Remove default margin.
17
+ //
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ // HTML5 display definitions
24
+ // ==========================================================================
25
+
26
+ //
27
+ // Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ // Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ // and Firefox.
30
+ // Correct `block` display not defined for `main` in IE 11.
31
+ //
32
+
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block;
47
+ }
48
+
49
+ //
50
+ // 1. Correct `inline-block` display not defined in IE 8/9.
51
+ // 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
+ //
53
+
54
+ audio,
55
+ canvas,
56
+ progress,
57
+ video {
58
+ display: inline-block; // 1
59
+ vertical-align: baseline; // 2
60
+ }
61
+
62
+ //
63
+ // Prevent modern browsers from displaying `audio` without controls.
64
+ // Remove excess height in iOS 5 devices.
65
+ //
66
+
67
+ audio:not([controls]) {
68
+ display: none;
69
+ height: 0;
70
+ }
71
+
72
+ //
73
+ // Address `[hidden]` styling not present in IE 8/9/10.
74
+ // Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
75
+ //
76
+
77
+ [hidden],
78
+ template {
79
+ display: none;
80
+ }
81
+
82
+ // Links
83
+ // ==========================================================================
84
+
85
+ //
86
+ // Remove the gray background color from active links in IE 10.
87
+ //
88
+
89
+ a {
90
+ background-color: transparent;
91
+ }
92
+
93
+ //
94
+ // Improve readability of focused elements when they are also in an
95
+ // active/hover state.
96
+ //
97
+
98
+ a {
99
+ &:active {
100
+ outline: 0;
101
+ }
102
+ &:hover {
103
+ outline: 0;
104
+ }
105
+ }
106
+
107
+ // Text-level semantics
108
+ // ==========================================================================
109
+
110
+ //
111
+ // Address styling not present in IE 8/9/10/11, Safari, and Chrome.
112
+ //
113
+
114
+ abbr[title] {
115
+ border-bottom: 1px dotted;
116
+ }
117
+
118
+ //
119
+ // Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
120
+ //
121
+
122
+ b,
123
+ strong {
124
+ font-weight: bold;
125
+ }
126
+
127
+ //
128
+ // Address styling not present in Safari and Chrome.
129
+ //
130
+
131
+ dfn {
132
+ font-style: italic;
133
+ }
134
+
135
+ //
136
+ // Address variable `h1` font-size and margin within `section` and `article`
137
+ // contexts in Firefox 4+, Safari, and Chrome.
138
+ //
139
+
140
+ h1 {
141
+ font-size: 2em;
142
+ margin: 0.67em 0;
143
+ }
144
+
145
+ //
146
+ // Address styling not present in IE 8/9.
147
+ //
148
+
149
+ mark {
150
+ background: #ff0;
151
+ color: #000;
152
+ }
153
+
154
+ //
155
+ // Address inconsistent and variable font size in all browsers.
156
+ //
157
+
158
+ small {
159
+ font-size: 80%;
160
+ }
161
+
162
+ //
163
+ // Prevent `sub` and `sup` affecting `line-height` in all browsers.
164
+ //
165
+
166
+ sub,
167
+ sup {
168
+ font-size: 75%;
169
+ line-height: 0;
170
+ position: relative;
171
+ vertical-align: baseline;
172
+ }
173
+
174
+ sup {
175
+ top: -0.5em;
176
+ }
177
+
178
+ sub {
179
+ bottom: -0.25em;
180
+ }
181
+
182
+ // Embedded content
183
+ // ==========================================================================
184
+
185
+ //
186
+ // Remove border when inside `a` element in IE 8/9/10.
187
+ //
188
+
189
+ img {
190
+ border: 0;
191
+ }
192
+
193
+ //
194
+ // Correct overflow not hidden in IE 9/10/11.
195
+ //
196
+
197
+ svg:not(:root) {
198
+ overflow: hidden;
199
+ }
200
+
201
+ // Grouping content
202
+ // ==========================================================================
203
+
204
+ //
205
+ // Address margin not present in IE 8/9 and Safari.
206
+ //
207
+
208
+ figure {
209
+ margin: 1em 40px;
210
+ }
211
+
212
+ //
213
+ // Address differences between Firefox and other browsers.
214
+ //
215
+
216
+ hr {
217
+ box-sizing: content-box;
218
+ height: 0;
219
+ }
220
+
221
+ //
222
+ // Contain overflow in all browsers.
223
+ //
224
+
225
+ pre {
226
+ overflow: auto;
227
+ }
228
+
229
+ //
230
+ // Address odd `em`-unit font size rendering in all browsers.
231
+ //
232
+
233
+ code,
234
+ kbd,
235
+ pre,
236
+ samp {
237
+ font-family: monospace, monospace;
238
+ font-size: 1em;
239
+ }
240
+
241
+ // Forms
242
+ // ==========================================================================
243
+
244
+ //
245
+ // Known limitation: by default, Chrome and Safari on OS X allow very limited
246
+ // styling of `select`, unless a `border` property is set.
247
+ //
248
+
249
+ //
250
+ // 1. Correct color not being inherited.
251
+ // Known issue: affects color of disabled elements.
252
+ // 2. Correct font properties not being inherited.
253
+ // 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
254
+ //
255
+
256
+ button,
257
+ input,
258
+ optgroup,
259
+ select,
260
+ textarea {
261
+ color: inherit; // 1
262
+ font: inherit; // 2
263
+ margin: 0; // 3
264
+ }
265
+
266
+ //
267
+ // Address `overflow` set to `hidden` in IE 8/9/10/11.
268
+ //
269
+
270
+ button {
271
+ overflow: visible;
272
+ }
273
+
274
+ //
275
+ // Address inconsistent `text-transform` inheritance for `button` and `select`.
276
+ // All other form control elements do not inherit `text-transform` values.
277
+ // Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
278
+ // Correct `select` style inheritance in Firefox.
279
+ //
280
+
281
+ button,
282
+ select {
283
+ text-transform: none;
284
+ }
285
+
286
+ //
287
+ // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
288
+ // and `video` controls.
289
+ // 2. Correct inability to style clickable `input` types in iOS.
290
+ // 3. Improve usability and consistency of cursor style between image-type
291
+ // `input` and others.
292
+ //
293
+
294
+ button,
295
+ html input[type="button"], // 1
296
+ input[type="reset"],
297
+ input[type="submit"] {
298
+ -webkit-appearance: button; // 2
299
+ cursor: pointer; // 3
300
+ }
301
+
302
+ //
303
+ // Re-set default cursor for disabled elements.
304
+ //
305
+
306
+ button[disabled],
307
+ html input[disabled] {
308
+ cursor: default;
309
+ }
310
+
311
+ //
312
+ // Remove inner padding and border in Firefox 4+.
313
+ //
314
+
315
+ button::-moz-focus-inner,
316
+ input::-moz-focus-inner {
317
+ border: 0;
318
+ padding: 0;
319
+ }
320
+
321
+ //
322
+ // Address Firefox 4+ setting `line-height` on `input` using `!important` in
323
+ // the UA stylesheet.
324
+ //
325
+
326
+ input {
327
+ line-height: normal;
328
+ }
329
+
330
+ //
331
+ // It's recommended that you don't attempt to style these elements.
332
+ // Firefox's implementation doesn't respect box-sizing, padding, or width.
333
+ //
334
+ // 1. Address box sizing set to `content-box` in IE 8/9/10.
335
+ // 2. Remove excess padding in IE 8/9/10.
336
+ //
337
+
338
+ input[type="checkbox"],
339
+ input[type="radio"] {
340
+ box-sizing: border-box; // 1
341
+ padding: 0; // 2
342
+ }
343
+
344
+ //
345
+ // Fix the cursor style for Chrome's increment/decrement buttons. For certain
346
+ // `font-size` values of the `input`, it causes the cursor style of the
347
+ // decrement button to change from `default` to `text`.
348
+ //
349
+
350
+ input[type="number"]::-webkit-inner-spin-button,
351
+ input[type="number"]::-webkit-outer-spin-button {
352
+ height: auto;
353
+ }
354
+
355
+ //
356
+ // 1. Address `appearance` set to `searchfield` in Safari and Chrome.
357
+ // 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
358
+ //
359
+
360
+ input[type="search"] {
361
+ -webkit-appearance: textfield; // 1
362
+ box-sizing: content-box; //2
363
+ }
364
+
365
+ //
366
+ // Remove inner padding and search cancel button in Safari and Chrome on OS X.
367
+ // Safari (but not Chrome) clips the cancel button when the search input has
368
+ // padding (and `textfield` appearance).
369
+ //
370
+
371
+ input[type="search"]::-webkit-search-cancel-button,
372
+ input[type="search"]::-webkit-search-decoration {
373
+ -webkit-appearance: none;
374
+ }
375
+
376
+ //
377
+ // Define consistent border, margin, and padding.
378
+ //
379
+
380
+ fieldset {
381
+ border: 1px solid #c0c0c0;
382
+ margin: 0 2px;
383
+ padding: 0.35em 0.625em 0.75em;
384
+ }
385
+
386
+ //
387
+ // 1. Correct `color` not being inherited in IE 8/9/10/11.
388
+ // 2. Remove padding so people aren't caught out if they zero out fieldsets.
389
+ //
390
+
391
+ legend {
392
+ border: 0; // 1
393
+ padding: 0; // 2
394
+ }
395
+
396
+ //
397
+ // Remove default vertical scrollbar in IE 8/9/10/11.
398
+ //
399
+
400
+ textarea {
401
+ overflow: auto;
402
+ }
403
+
404
+ //
405
+ // Don't inherit the `font-weight` (applied by a rule above).
406
+ // NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
407
+ //
408
+
409
+ optgroup {
410
+ font-weight: bold;
411
+ }
412
+
413
+ // Tables
414
+ // ==========================================================================
415
+
416
+ //
417
+ // Remove most spacing between table cells.
418
+ //
419
+
420
+ table {
421
+ border-collapse: collapse;
422
+ border-spacing: 0;
423
+ }
424
+
425
+ td,
426
+ th {
427
+ padding: 0;
428
+ }