Skip to content
This repository was archived by the owner on Dec 26, 2025. It is now read-only.

Commit 74f5ef0

Browse files
committed
Reorder color table
1 parent 8486f5c commit 74f5ef0

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

_includes/color-table.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<table class="color-table">
22
<thead>
33
<tr>
4+
<td class="color-code-column">Farbcode</td>
45
<td class="color-preview-column">Vorschau</td>
56
<td class="color-name-column">Name</td>
6-
<td class="color-code-column">Farbcode</td>
77
<td class="format-column">Andere Formate</td>
88
</tr>
99
</thead>
1010
<tbody>
1111
{%- for color in include.colors -%}
1212
<tr>
13+
<td class="color-code-column"><code>#{{ color.color }}</code></td>
1314
<td class="color-preview-column"><span class="color-preview" style="color: #{{color.color}}; background-color: #{{color.color}}">#{{ color.color }}</span></td>
1415
<td class="color-name-column">{{ color.name }}</td>
15-
<td class="color-code-column"><code>#{{ color.color }}</code></td>
1616
<td class="format-column"><a href="http://www.color-hex.com/color/{{color.color}}" {% if color.css != '' %}title="CSS-Klasse: {{ color.css }}"{% endif %}>Formate</a></td>
1717
</tr>
1818
{%- endfor -%}

css/main.scss

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ $post-padding: 20px;
3535
$post-padding-negative: -20px;
3636

3737
@mixin media-query($device) {
38-
@media screen and (max-width: $device) {
39-
@content;
40-
}
38+
@media screen and (max-width: $device) {
39+
@content;
40+
}
4141
}
4242

4343

4444
// Import partials from `sass_dir` (defaults to `_sass`)
4545
@import
46-
"base",
47-
"layout",
48-
"syntax-highlighting"
46+
"base",
47+
"layout",
48+
"syntax-highlighting"
4949
;
5050

5151
body {
@@ -73,6 +73,7 @@ article h2 > small {
7373
color: $pr0-headlink;
7474
}
7575

76+
7677
.pr0-button {
7778
font-weight: normal;
7879
display: inline-block;

0 commit comments

Comments
 (0)