Skip to content

Commit 3ce12de

Browse files
committed
reindented everything, 2 spaces ftw
1 parent 1d595ed commit 3ce12de

35 files changed

+839
-839
lines changed

archetypes/default.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ title: "{{ replace .Name "-" " " | title }}"
33
date: {{ .Date }}
44
draft: true
55
---
6-

assets/css/custom.css

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,108 @@
11
/* custom classes: */
22
.btn {
3-
@apply inline-block border rounded no-underline px-4 py-2;
3+
@apply inline-block border rounded no-underline px-4 py-2;
44
}
55

66
.btn:hover,
77
.btn:focus {
8-
@apply no-underline outline-none;
9-
8+
@apply no-underline outline-none;
9+
1010
}
1111

1212
.btn:disabled,
1313
.btn:hover:disabled,
1414
.btn:focus:disabled {
15-
@apply cursor-not-allowed bg-gray-300 border-gray-300;
15+
@apply cursor-not-allowed bg-gray-300 border-gray-300;
1616
}
1717

1818
.btn-primary {
19-
@apply bg-primary border-primary text-white;
19+
@apply bg-primary border-primary text-white;
2020
}
2121

2222
.btn-primary:hover,
2323
.btn-primary:focus {
24-
@apply text-white transition transform duration-200 ease-in-out shadow-md -translate-y-px;
24+
@apply text-white transition transform duration-200 ease-in-out shadow-md -translate-y-px;
2525
}
2626

2727
.btn-primary:disabled {
28-
@apply shadow-none translate-y-0;
28+
@apply shadow-none translate-y-0;
2929
}
3030

3131
.btn-outline-gray-500 {
32-
@apply border border-transparent text-gray-500;
32+
@apply border border-transparent text-gray-500;
3333
}
3434

3535
.btn-outline-gray-500:hover,
3636
.btn-outline-gray-500:focus {
37-
@apply border-gray-500;
37+
@apply border-gray-500;
3838
}
3939

4040
input,
4141
select,
4242
textarea,
4343
.StripeElement {
44-
@apply border rounded p-2;
44+
@apply border rounded p-2;
4545
}
4646

4747
input:focus,
4848
select:focus,
4949
textarea:focus,
5050
.StripeElement--focus {
51-
@apply border-secondary outline-none;
51+
@apply border-secondary outline-none;
5252
}
5353

5454
input:focus:invalid,
5555
input.show-invalid:invalid {
56-
@apply border-red-500;
56+
@apply border-red-500;
5757
}
5858

5959
@keyframes hover {
60-
0% {
61-
transform: rotate(0deg) translateY(0);
62-
}
63-
50% {
64-
transform: rotate(-3deg) translateY(-10px);
65-
}
66-
to {
67-
transform: rotate(0deg) translateY(0);
68-
}
60+
0% {
61+
transform: rotate(0deg) translateY(0);
62+
}
63+
50% {
64+
transform: rotate(-3deg) translateY(-10px);
65+
}
66+
to {
67+
transform: rotate(0deg) translateY(0);
68+
}
6969
}
7070

7171
.animate-hover {
72-
animation: hover 10s ease-in-out infinite;
72+
animation: hover 10s ease-in-out infinite;
7373
}
7474

7575
.aspect-16x9 {
76-
padding-bottom: 56.25%;
76+
padding-bottom: 56.25%;
7777
}
7878

7979
.img-muted {
80-
filter: grayscale(100%);
81-
opacity: .5;
82-
transition: filter .1s, opacity .1s;
80+
filter: grayscale(100%);
81+
opacity: .5;
82+
transition: filter .1s, opacity .1s;
8383
}
8484

8585
.img-muted:hover {
86-
filter: none;
87-
opacity: 1;
86+
filter: none;
87+
opacity: 1;
8888
}
8989

9090
.min-vh-66 {
91-
min-height: 66vh;
91+
min-height: 66vh;
9292
}
9393

9494
.min-vh-80 {
95-
min-height: 80vh;
95+
min-height: 80vh;
9696
}
9797

9898
nav a {
99-
color: inherit;
99+
color: inherit;
100100
}
101101

102102
nav a:hover {
103-
color: inherit;
103+
color: inherit;
104104
}
105105

106106
.bg-trans-white {
107-
background-color: rgba(255, 255, 255, 0.05);
107+
background-color: rgba(255, 255, 255, 0.05);
108108
}

assets/css/default.css

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,84 @@
11
/* margins for text elements */
22
blockquote, h1, h2, h3, ol, p, pre, table, ul {
3-
@apply mb-4;
3+
@apply mb-4;
44
}
55

66
blockquote:last-child, h1:last-child, h2:last-child, h3:last-child, ol:last-child, p:last-child, pre:last-child, table:last-child, ul:last-child {
7-
@apply mb-0;
7+
@apply mb-0;
88
}
99

1010
hr {
11-
@apply my-8;
11+
@apply my-8;
1212
}
1313

1414
/* list styles */
1515
ul {
16-
@apply list-disc ml-8;
16+
@apply list-disc ml-8;
1717
}
1818

1919
ol {
20-
@apply list-decimal ml-8;
20+
@apply list-decimal ml-8;
2121
}
2222

2323
/* text styles */
2424
h1 {
25-
@apply text-xl font-headline font-medium;
25+
@apply text-xl font-headline font-medium;
2626
}
2727

2828
h2 {
29-
@apply text-lg font-headline font-medium;
29+
@apply text-lg font-headline font-medium;
3030
}
3131

3232
h3 {
33-
@apply text-lg font-headline;
33+
@apply text-lg font-headline;
3434
}
3535

3636
@screen md {
37-
h1 {
38-
@apply text-2xl;
39-
}
40-
41-
h2 {
42-
@apply text-xl;
43-
}
44-
45-
h3 {
46-
@apply text-lg;
47-
}
37+
h1 {
38+
@apply text-2xl;
39+
}
40+
41+
h2 {
42+
@apply text-xl;
43+
}
44+
45+
h3 {
46+
@apply text-lg;
47+
}
4848
}
4949

5050
@screen lg {
51-
h1 {
52-
@apply text-4xl;
53-
}
54-
55-
h2 {
56-
@apply text-2xl;
57-
}
58-
59-
h3 {
60-
@apply text-xl;
61-
}
51+
h1 {
52+
@apply text-4xl;
53+
}
54+
55+
h2 {
56+
@apply text-2xl;
57+
}
58+
59+
h3 {
60+
@apply text-xl;
61+
}
6262
}
6363

6464
a {
65-
@apply text-primary no-underline;
65+
@apply text-primary no-underline;
6666
}
6767

6868
a:hover {
69-
@apply text-primary underline;
69+
@apply text-primary underline;
7070
}
7171

7272
blockquote {
73-
@apply text-lg border-l-4 px-3 py-2;
73+
@apply text-lg border-l-4 px-3 py-2;
7474
}
7575

7676
pre, code {
77-
@apply text-sm bg-gray-300 rounded p-1;
77+
@apply text-sm bg-gray-300 rounded p-1;
7878
}
7979

8080
th {
81-
@apply text-left;
81+
@apply text-left;
8282
}
8383

8484
/* see https://github.com/alpinejs/alpine#x-cloak */

0 commit comments

Comments
 (0)