tear-jekyll-theme 1.0.3 → 1.0.4
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_includes/footer.html +57 -130
- data/assets/css/output.css +94 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb51a8356478b2eee6b834c59341e7d80a29e2fc66d596e28b4550908a1af1e8
|
4
|
+
data.tar.gz: 55c8457ebb78814fd843e4ad690018a00cb3dc41f56cab9a8c5c62e5131bc0eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67fc63d3a9619dfc9833f5d4f4428281922069300998be021c5731a192bb8e8740d2facb93d0d30972226362c4c24e429a19e6d19cf24fd52ede84ec997bf814
|
7
|
+
data.tar.gz: 0a5e01eba4f35639f8e88d5b4878ea6a96324d264aaf720f54c5af8b586fc524423a72b3d2d86f7f1985c17ca3ba3c2602c4298196d8c6e0cc07609b7da90508
|
data/README.md
CHANGED
data/_includes/footer.html
CHANGED
@@ -1,157 +1,84 @@
|
|
1
1
|
<footer class="bg-white dark:bg-gray-800 shadow-inner mt-12">
|
2
|
-
<div class="max-w-7xl mx-auto grid md:grid-cols-3 gap-8">
|
3
|
-
<!-- General -->
|
4
|
-
<div class="mt-4 ml-4"></div>
|
2
|
+
<div class="max-w-7xl mx-auto grid md:grid-cols-3 gap-8 px-4 py-8">
|
5
3
|
|
6
|
-
<!--
|
7
|
-
<div
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
>
|
14
|
-
|
15
|
-
<a
|
16
|
-
href="{{ '/gb' | prepend: site.baseurl }}"
|
17
|
-
class="hover:text-blue-400 transition"
|
18
|
-
>Guest Book</a
|
19
|
-
>
|
4
|
+
<!-- Spacer / Branding area -->
|
5
|
+
<div></div>
|
6
|
+
|
7
|
+
<!-- Navigation & Social Links -->
|
8
|
+
<div class="text-center">
|
9
|
+
<!-- Navigation Links -->
|
10
|
+
<p class="mb-2 text-gray-700 dark:text-gray-300">
|
11
|
+
<a href="{{ '/feed' | prepend: site.baseurl }}" class="hover:text-blue-400 transition">RSS Feed</a>
|
12
|
+
<span class="mx-2">|</span>
|
13
|
+
<a href="{{ '/gb' | prepend: site.baseurl }}" class="hover:text-blue-400 transition">Guest Book</a>
|
20
14
|
</p>
|
21
15
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
xmlns="http://www.w3.org/2000/svg"
|
30
|
-
fill="none"
|
31
|
-
viewBox="0 0 24 24"
|
32
|
-
stroke-width="1.5"
|
33
|
-
stroke="currentColor"
|
34
|
-
class="w-6 h-6"
|
35
|
-
>
|
36
|
-
<path
|
37
|
-
stroke-linecap="round"
|
38
|
-
stroke-linejoin="round"
|
39
|
-
d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75"
|
40
|
-
/>
|
16
|
+
<!-- Social Icons -->
|
17
|
+
<div class="flex justify-center items-center space-x-4 text-gray-600 dark:text-gray-300 text-xl">
|
18
|
+
<!-- Email -->
|
19
|
+
<a href="mailto:{{ site.email }}" class="hover:text-blue-400 transition" aria-label="Email">
|
20
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
|
21
|
+
<path stroke-linecap="round" stroke-linejoin="round"
|
22
|
+
d="M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0a2.25 2.25 0 0 0-2.25-2.25h-15A2.25 2.25 0 0 0 1.5 6.75m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" />
|
41
23
|
</svg>
|
42
24
|
</a>
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
xmlns="http://www.w3.org/2000/svg"
|
50
|
-
fill="none"
|
51
|
-
viewBox="0 0 24 24"
|
52
|
-
stroke-width="1.5"
|
53
|
-
stroke="currentColor"
|
54
|
-
class="w-6 h-6"
|
55
|
-
>
|
56
|
-
<path
|
57
|
-
stroke-linecap="round"
|
58
|
-
stroke-linejoin="round"
|
59
|
-
d="M12 2.25A9.75 9.75 0 0 0 2.25 12c0 4.29 2.77 7.93 6.6 9.22.48.09.65-.21.65-.47v-1.69c-2.68.58-3.25-1.3-3.25-1.3-.44-1.12-1.07-1.42-1.07-1.42-.88-.6.07-.59.07-.59.98.07 1.5.95 1.5.95.87 1.49 2.28 1.06 2.84.81.09-.64.34-1.06.62-1.3-2.16-.24-4.43-1.08-4.43-4.82 0-1.06.38-1.93 1-2.61-.1-.24-.44-1.14.1-2.38 0 0 .75-.24 2.46.92a8.44 8.44 0 0 1 4.5 0c1.71-1.16 2.46-.92 2.46-.92.54 1.24.2 2.14.1 2.38.62.68 1 1.55 1 2.61 0 3.75-2.28 4.58-4.45 4.82.35.3.66.89.66 1.8v2.67c0 .26.17.56.66.47A9.75 9.75 0 0 0 21.75 12 9.75 9.75 0 0 0 12 2.25Z"
|
60
|
-
/>
|
25
|
+
|
26
|
+
<!-- GitHub -->
|
27
|
+
<a href="https://github.com/{{ site.github_username }}" class="hover:text-blue-400 transition" aria-label="GitHub">
|
28
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
|
29
|
+
<path stroke-linecap="round" stroke-linejoin="round"
|
30
|
+
d="M12 2.25A9.75 9.75 0 0 0 2.25 12c0 4.29 2.77 7.93 6.6 9.22.48.09.65-.21.65-.47v-1.69c-2.68.58-3.25-1.3-3.25-1.3-.44-1.12-1.07-1.42-1.07-1.42-.88-.6.07-.59.07-.59.98.07 1.5.95 1.5.95.87 1.49 2.28 1.06 2.84.81.09-.64.34-1.06.62-1.3-2.16-.24-4.43-1.08-4.43-4.82 0-1.06.38-1.93 1-2.61-.1-.24-.44-1.14.1-2.38 0 0 .75-.24 2.46.92a8.44 8.44 0 0 1 4.5 0c1.71-1.16 2.46-.92 2.46-.92.54 1.24.2 2.14.1 2.38.62.68 1 1.55 1 2.61 0 3.75-2.28 4.58-4.45 4.82.35.3.66.89.66 1.8v2.67c0 .26.17.56.66.47A9.75 9.75 0 0 0 21.75 12 9.75 9.75 0 0 0 12 2.25Z" />
|
61
31
|
</svg>
|
62
32
|
</a>
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
>
|
68
|
-
<svg
|
69
|
-
xmlns="http://www.w3.org/2000/svg"
|
70
|
-
fill="currentColor"
|
71
|
-
viewBox="0 0 24 24"
|
72
|
-
class="w-5 h-5"
|
73
|
-
>
|
33
|
+
|
34
|
+
<!-- X / Twitter -->
|
35
|
+
<a href="https://x.com/{{ site.twitter_username }}" class="hover:text-blue-400 transition" aria-label="X">
|
36
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
74
37
|
<path
|
75
|
-
d="M14.24 10.32 22.03 0h-2.01l-6.73 8.39L7.81 0H0l8.19 11.64L0 24h2.01l7.07-8.81L16.19 24H24l-9.76-13.68Zm-2.51 3.13-.82-1.18L3.27 1.53h3.33l6.2 8.94.82 1.18 7.99 11.54h-3.33l-6.2-8.94Z"
|
76
|
-
/>
|
38
|
+
d="M14.24 10.32 22.03 0h-2.01l-6.73 8.39L7.81 0H0l8.19 11.64L0 24h2.01l7.07-8.81L16.19 24H24l-9.76-13.68Zm-2.51 3.13-.82-1.18L3.27 1.53h3.33l6.2 8.94.82 1.18 7.99 11.54h-3.33l-6.2-8.94Z" />
|
77
39
|
</svg>
|
78
40
|
</a>
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
>
|
84
|
-
<svg
|
85
|
-
xmlns="http://www.w3.org/2000/svg"
|
86
|
-
fill="currentColor"
|
87
|
-
class="w-5 h-5"
|
88
|
-
viewBox="0 0 24 24"
|
89
|
-
>
|
41
|
+
|
42
|
+
<!-- LinkedIn -->
|
43
|
+
<a href="https://linkedin.com/{{ site.linkedin_username }}" class="hover:text-blue-400 transition" aria-label="LinkedIn">
|
44
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
90
45
|
<path
|
91
|
-
d="M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1 4.98 2.12 4.98 3.5zM.48 8h4V24h-4V8zm7.5 0h3.83v2.16h.05c.53-1 1.82-2.16 3.75-2.16 4 0 4.74 2.62 4.74 6.03V24h-4v-8.38c0-2-.03-4.59-2.8-4.59-2.8 0-3.23 2.19-3.23 4.44V24h-4V8z"
|
92
|
-
/>
|
46
|
+
d="M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1 4.98 2.12 4.98 3.5zM.48 8h4V24h-4V8zm7.5 0h3.83v2.16h.05c.53-1 1.82-2.16 3.75-2.16 4 0 4.74 2.62 4.74 6.03V24h-4v-8.38c0-2-.03-4.59-2.8-4.59-2.8 0-3.23 2.19-3.23 4.44V24h-4V8z" />
|
93
47
|
</svg>
|
94
48
|
</a>
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
>
|
100
|
-
<svg
|
101
|
-
xmlns="http://www.w3.org/2000/svg"
|
102
|
-
fill="currentColor"
|
103
|
-
class="w-5 h-5"
|
104
|
-
viewBox="0 0 24 24"
|
105
|
-
>
|
49
|
+
|
50
|
+
<!-- YouTube -->
|
51
|
+
<a href="https://youtube.com/{{ site.youtube_username }}" class="hover:text-blue-400 transition" aria-label="YouTube">
|
52
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
|
106
53
|
<path
|
107
|
-
d="M23.5 6.5s-.2-1.6-.8-2.3c-.7-.9-1.5-1-1.9-1.1C17.7 3 12 3 12 3s-5.7 0-8.8.1c-.4 0-1.2.2-1.9 1.1C.7 4.9.5 6.5.5 6.5S0 8.4 0 10.3v1.4c0 1.9.5 3.8.5 3.8s.2 1.6.8 2.3c.7.9 1.7.9 2.2 1 1.6.2 6.5.2 6.5.2s5.7 0 8.8-.1c.4 0 1.2-.2 1.9-1.1.6-.7.8-2.3.8-2.3s.5-1.9.5-3.8v-1.4c0-1.9-.5-3.8-.5-3.8zM9.5 15.5v-7l6 3.5-6 3.5z"
|
108
|
-
/>
|
54
|
+
d="M23.5 6.5s-.2-1.6-.8-2.3c-.7-.9-1.5-1-1.9-1.1C17.7 3 12 3 12 3s-5.7 0-8.8.1c-.4 0-1.2.2-1.9 1.1C.7 4.9.5 6.5.5 6.5S0 8.4 0 10.3v1.4c0 1.9.5 3.8.5 3.8s.2 1.6.8 2.3c.7.9 1.7.9 2.2 1 1.6.2 6.5.2 6.5.2s5.7 0 8.8-.1c.4 0 1.2-.2 1.9-1.1.6-.7.8-2.3.8-2.3s.5-1.9.5-3.8v-1.4c0-1.9-.5-3.8-.5-3.8zM9.5 15.5v-7l6 3.5-6 3.5z" />
|
109
55
|
</svg>
|
110
56
|
</a>
|
111
57
|
</div>
|
112
58
|
</div>
|
113
59
|
|
114
|
-
|
115
|
-
|
116
|
-
<a
|
117
|
-
|
118
|
-
|
119
|
-
aria-label="Up"
|
120
|
-
>
|
121
|
-
<svg
|
122
|
-
xmlns="http://www.w3.org/2000/svg"
|
123
|
-
fill="none"
|
124
|
-
viewBox="0 0 24 24"
|
125
|
-
stroke-width="1.5"
|
126
|
-
stroke="currentColor"
|
127
|
-
class="w-6 h-6"
|
128
|
-
>
|
129
|
-
<path
|
130
|
-
stroke-linecap="round"
|
131
|
-
stroke-linejoin="round"
|
132
|
-
d="M8.25 6.75 12 3m0 0 3.75 3.75M12 3v18"
|
133
|
-
/>
|
60
|
+
<!-- Back to top -->
|
61
|
+
<div class="flex justify-end items-start">
|
62
|
+
<a href="#top" class="mt-1 w-10 h-10 flex items-center justify-center border border-gray-300 dark:border-gray-700 rounded-full hover:bg-gray-300 dark:hover:bg-gray-600 hover:text-black dark:hover:text-white transition" aria-label="Back to top">
|
63
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
|
64
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 6.75 12 3m0 0 3.75 3.75M12 3v18" />
|
134
65
|
</svg>
|
135
66
|
</a>
|
136
67
|
</div>
|
137
68
|
</div>
|
138
69
|
|
139
|
-
<!--
|
140
|
-
<div class="
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
>Tear Theme</a
|
153
|
-
>.
|
154
|
-
</p>
|
155
|
-
</div>
|
70
|
+
<!-- Divider -->
|
71
|
+
<div class="border-t border-gray-100 dark:border-gray-700"></div>
|
72
|
+
|
73
|
+
<!-- Footer Note -->
|
74
|
+
<div class="max-w-6xl mx-auto px-4 py-6 text-center text-sm text-gray-500 dark:text-gray-400">
|
75
|
+
<p>{{ site.footer }}</p>
|
76
|
+
<p>
|
77
|
+
Powered by <a href="https://jekyllrb.com/" class="text-blue-400 hover:underline">Jekyll</a>
|
78
|
+
</p>
|
79
|
+
<p>
|
80
|
+
©{{ site.time | date: '%Y' }}
|
81
|
+
<a href="https://github.com/rokhimin/jekyll-tear" class="text-blue-400 hover:underline">Tear Theme</a>.
|
82
|
+
</p>
|
156
83
|
</div>
|
157
84
|
</footer>
|
data/assets/css/output.css
CHANGED
@@ -207,6 +207,9 @@
|
|
207
207
|
max-width: 96rem;
|
208
208
|
}
|
209
209
|
}
|
210
|
+
.mx-2 {
|
211
|
+
margin-inline: calc(var(--spacing) * 2);
|
212
|
+
}
|
210
213
|
.mx-auto {
|
211
214
|
margin-inline: auto;
|
212
215
|
}
|
@@ -824,6 +827,9 @@
|
|
824
827
|
margin-bottom: 0;
|
825
828
|
}
|
826
829
|
}
|
830
|
+
.mt-1 {
|
831
|
+
margin-top: calc(var(--spacing) * 1);
|
832
|
+
}
|
827
833
|
.mt-2 {
|
828
834
|
margin-top: calc(var(--spacing) * 2);
|
829
835
|
}
|
@@ -842,6 +848,9 @@
|
|
842
848
|
.mr-4 {
|
843
849
|
margin-right: calc(var(--spacing) * 4);
|
844
850
|
}
|
851
|
+
.mr-6 {
|
852
|
+
margin-right: calc(var(--spacing) * 6);
|
853
|
+
}
|
845
854
|
.mb-1 {
|
846
855
|
margin-bottom: calc(var(--spacing) * 1);
|
847
856
|
}
|
@@ -863,6 +872,9 @@
|
|
863
872
|
.ml-4 {
|
864
873
|
margin-left: calc(var(--spacing) * 4);
|
865
874
|
}
|
875
|
+
.ml-6 {
|
876
|
+
margin-left: calc(var(--spacing) * 6);
|
877
|
+
}
|
866
878
|
.block {
|
867
879
|
display: block;
|
868
880
|
}
|
@@ -968,6 +980,9 @@
|
|
968
980
|
.justify-center {
|
969
981
|
justify-content: center;
|
970
982
|
}
|
983
|
+
.justify-end {
|
984
|
+
justify-content: flex-end;
|
985
|
+
}
|
971
986
|
.gap-6 {
|
972
987
|
gap: calc(var(--spacing) * 6);
|
973
988
|
}
|
@@ -1042,6 +1057,18 @@
|
|
1042
1057
|
border-top-style: var(--tw-border-style);
|
1043
1058
|
border-top-width: 1px;
|
1044
1059
|
}
|
1060
|
+
.border-gray-100 {
|
1061
|
+
border-color: var(--color-gray-100);
|
1062
|
+
}
|
1063
|
+
.border-gray-200 {
|
1064
|
+
border-color: var(--color-gray-200);
|
1065
|
+
}
|
1066
|
+
.border-gray-300 {
|
1067
|
+
border-color: var(--color-gray-300);
|
1068
|
+
}
|
1069
|
+
.border-gray-400 {
|
1070
|
+
border-color: var(--color-gray-400);
|
1071
|
+
}
|
1045
1072
|
.border-gray-700 {
|
1046
1073
|
border-color: var(--color-gray-700);
|
1047
1074
|
}
|
@@ -1093,6 +1120,9 @@
|
|
1093
1120
|
.py-4 {
|
1094
1121
|
padding-block: calc(var(--spacing) * 4);
|
1095
1122
|
}
|
1123
|
+
.py-6 {
|
1124
|
+
padding-block: calc(var(--spacing) * 6);
|
1125
|
+
}
|
1096
1126
|
.py-8 {
|
1097
1127
|
padding-block: calc(var(--spacing) * 8);
|
1098
1128
|
}
|
@@ -1225,6 +1255,13 @@
|
|
1225
1255
|
}
|
1226
1256
|
}
|
1227
1257
|
}
|
1258
|
+
.hover\:bg-gray-300 {
|
1259
|
+
&:hover {
|
1260
|
+
@media (hover: hover) {
|
1261
|
+
background-color: var(--color-gray-300);
|
1262
|
+
}
|
1263
|
+
}
|
1264
|
+
}
|
1228
1265
|
.hover\:bg-gray-400 {
|
1229
1266
|
&:hover {
|
1230
1267
|
@media (hover: hover) {
|
@@ -1232,6 +1269,13 @@
|
|
1232
1269
|
}
|
1233
1270
|
}
|
1234
1271
|
}
|
1272
|
+
.hover\:text-black {
|
1273
|
+
&:hover {
|
1274
|
+
@media (hover: hover) {
|
1275
|
+
color: var(--color-black);
|
1276
|
+
}
|
1277
|
+
}
|
1278
|
+
}
|
1235
1279
|
.hover\:text-blue-400 {
|
1236
1280
|
&:hover {
|
1237
1281
|
@media (hover: hover) {
|
@@ -1246,6 +1290,13 @@
|
|
1246
1290
|
}
|
1247
1291
|
}
|
1248
1292
|
}
|
1293
|
+
.hover\:underline {
|
1294
|
+
&:hover {
|
1295
|
+
@media (hover: hover) {
|
1296
|
+
text-decoration-line: underline;
|
1297
|
+
}
|
1298
|
+
}
|
1299
|
+
}
|
1249
1300
|
.focus\:ring-2 {
|
1250
1301
|
&:focus {
|
1251
1302
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
@@ -1325,6 +1376,31 @@
|
|
1325
1376
|
padding-inline: calc(var(--spacing) * 8);
|
1326
1377
|
}
|
1327
1378
|
}
|
1379
|
+
.dark\:border-gray-100 {
|
1380
|
+
&:where(.dark, .dark *) {
|
1381
|
+
border-color: var(--color-gray-100);
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
.dark\:border-gray-300 {
|
1385
|
+
&:where(.dark, .dark *) {
|
1386
|
+
border-color: var(--color-gray-300);
|
1387
|
+
}
|
1388
|
+
}
|
1389
|
+
.dark\:border-gray-600 {
|
1390
|
+
&:where(.dark, .dark *) {
|
1391
|
+
border-color: var(--color-gray-600);
|
1392
|
+
}
|
1393
|
+
}
|
1394
|
+
.dark\:border-gray-700 {
|
1395
|
+
&:where(.dark, .dark *) {
|
1396
|
+
border-color: var(--color-gray-700);
|
1397
|
+
}
|
1398
|
+
}
|
1399
|
+
.dark\:border-gray-900 {
|
1400
|
+
&:where(.dark, .dark *) {
|
1401
|
+
border-color: var(--color-gray-900);
|
1402
|
+
}
|
1403
|
+
}
|
1328
1404
|
.dark\:bg-gray-700 {
|
1329
1405
|
&:where(.dark, .dark *) {
|
1330
1406
|
background-color: var(--color-gray-700);
|
@@ -1393,6 +1469,15 @@
|
|
1393
1469
|
--tw-prose-td-borders: var(--tw-prose-invert-td-borders);
|
1394
1470
|
}
|
1395
1471
|
}
|
1472
|
+
.dark\:hover\:bg-gray-600 {
|
1473
|
+
&:where(.dark, .dark *) {
|
1474
|
+
&:hover {
|
1475
|
+
@media (hover: hover) {
|
1476
|
+
background-color: var(--color-gray-600);
|
1477
|
+
}
|
1478
|
+
}
|
1479
|
+
}
|
1480
|
+
}
|
1396
1481
|
.dark\:hover\:bg-gray-700 {
|
1397
1482
|
&:where(.dark, .dark *) {
|
1398
1483
|
&:hover {
|
@@ -1402,6 +1487,15 @@
|
|
1402
1487
|
}
|
1403
1488
|
}
|
1404
1489
|
}
|
1490
|
+
.dark\:hover\:text-white {
|
1491
|
+
&:where(.dark, .dark *) {
|
1492
|
+
&:hover {
|
1493
|
+
@media (hover: hover) {
|
1494
|
+
color: var(--color-white);
|
1495
|
+
}
|
1496
|
+
}
|
1497
|
+
}
|
1498
|
+
}
|
1405
1499
|
.\[\&\:\:-webkit-scrollbar\]\:w-4\.5 {
|
1406
1500
|
&::-webkit-scrollbar {
|
1407
1501
|
width: calc(var(--spacing) * 4.5);
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tear-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rokhimin
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-05-
|
10
|
+
date: 2025-05-22 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll
|