catgirl 0.3.1 → 0.4.1
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/_config.yml +2 -0
- data/_includes/head.html +1 -1
- data/_layouts/default.html +5 -0
- data/_sass/catgirl.scss +26 -0
- data/_sass/syntax.scss +238 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f838026dcf9973fd5dbf36784d2c4fc43599b08880ccfe122d57b5f86353a37
|
4
|
+
data.tar.gz: 4d895e7ea1d95ff75a5dd6290c311f1f0f8e03d0e38879ddeabfa25e62ac3893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c9054f7cbc4bd1262f6c07034c99a72c9033c67f8d73094c12531fc9fd7482401bff756530ccc0ffacc9fdb7860d417b333658f1559233d41f0eb81f8c09f65
|
7
|
+
data.tar.gz: 7f5d0babbdbd9145ceed7b378644976862499729918e390f71359472c79357246f90cfa826d18254a1d8846a13feba061c1035abd07ab218d52e804ab96eca05
|
data/_config.yml
CHANGED
data/_includes/head.html
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
5
|
{%- if page.layout == "home" -%}
|
6
6
|
<link rel="stylesheet" href="/assets/css/home.css">
|
7
|
-
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
|
8
7
|
{%- else -%}
|
9
8
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
10
9
|
{%- endif -%}
|
10
|
+
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
|
11
11
|
<title>
|
12
12
|
{%- unless page.layout == "home" -%}
|
13
13
|
{{ page.title | append: " | " }}
|
data/_layouts/default.html
CHANGED
data/_sass/catgirl.scss
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
@import "fonts";
|
2
2
|
@import "colors";
|
3
|
+
@import "syntax";
|
3
4
|
|
4
5
|
$sidebar-size: 280px;
|
5
6
|
|
@@ -16,6 +17,15 @@ body {
|
|
16
17
|
position: absolute;
|
17
18
|
}
|
18
19
|
|
20
|
+
p {
|
21
|
+
img {
|
22
|
+
display: inline-block;
|
23
|
+
height: 1em;
|
24
|
+
transform: translate(0, 0.1em);
|
25
|
+
width: 1em;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
19
29
|
#main {
|
20
30
|
display: flex;
|
21
31
|
flex: 0 0 50px;
|
@@ -81,6 +91,22 @@ a:visited {
|
|
81
91
|
color: $dark-text;
|
82
92
|
}
|
83
93
|
|
94
|
+
blockquote {
|
95
|
+
border-left: 5px solid #ccc;
|
96
|
+
border-left-color: rgb(62, 68, 70);
|
97
|
+
margin: 1.5em 10px;
|
98
|
+
padding: 0em 10px;
|
99
|
+
}
|
100
|
+
|
101
|
+
table, th, td {
|
102
|
+
border: 1px solid;
|
103
|
+
border-collapse: collapse;
|
104
|
+
}
|
105
|
+
|
106
|
+
td {
|
107
|
+
padding: 3px 5px;
|
108
|
+
}
|
109
|
+
|
84
110
|
@media all and (max-width: 960px) {
|
85
111
|
#wrapper {
|
86
112
|
flex-direction: column;
|
data/_sass/syntax.scss
ADDED
@@ -0,0 +1,238 @@
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap");
|
2
|
+
|
3
|
+
$code-fonts: "Fira Code", monospace;
|
4
|
+
|
5
|
+
code {
|
6
|
+
font-family: $code-fonts;
|
7
|
+
color: #9da0aa;
|
8
|
+
}
|
9
|
+
.highlight code {
|
10
|
+
color: #fff;
|
11
|
+
}
|
12
|
+
.highlight pre {
|
13
|
+
font-family: $code-fonts;
|
14
|
+
font-size: 14px;
|
15
|
+
}
|
16
|
+
.highlight pre .lineno {
|
17
|
+
font-family: $code-fonts;
|
18
|
+
color: #465457;
|
19
|
+
}
|
20
|
+
.highlight table td pre {
|
21
|
+
tab-size: 4;
|
22
|
+
}
|
23
|
+
.highlight table td {
|
24
|
+
padding: 5px;
|
25
|
+
}
|
26
|
+
.highlight {
|
27
|
+
table, td, pre {
|
28
|
+
border: 0;
|
29
|
+
border-collapse: separate;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
.highlight table pre { margin: 0; }
|
33
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
34
|
+
color: #5e5d83;
|
35
|
+
font-style: italic;
|
36
|
+
}
|
37
|
+
.highlight .cm {
|
38
|
+
color: #5e5d83;
|
39
|
+
font-style: italic;
|
40
|
+
}
|
41
|
+
.highlight .c1 {
|
42
|
+
color: #5e5d83;
|
43
|
+
font-style: italic;
|
44
|
+
}
|
45
|
+
.highlight .cp {
|
46
|
+
color: #465457;
|
47
|
+
font-weight: bold;
|
48
|
+
}
|
49
|
+
.highlight .cs {
|
50
|
+
color: #465457;
|
51
|
+
font-weight: bold;
|
52
|
+
font-style: italic;
|
53
|
+
}
|
54
|
+
.highlight .err {
|
55
|
+
color: #f8f8f2;
|
56
|
+
background-color: #403d3d;
|
57
|
+
}
|
58
|
+
.highlight .gi {
|
59
|
+
color: #a6e22e;
|
60
|
+
}
|
61
|
+
.highlight .gd {
|
62
|
+
color: #f92672;
|
63
|
+
}
|
64
|
+
.highlight .ge {
|
65
|
+
color: #1b1d1e;
|
66
|
+
font-style: italic;
|
67
|
+
}
|
68
|
+
.highlight .gr {
|
69
|
+
color: #f92672;
|
70
|
+
}
|
71
|
+
.highlight .gt {
|
72
|
+
color: #f92672;
|
73
|
+
}
|
74
|
+
.highlight .gh {
|
75
|
+
color: #403d3d;
|
76
|
+
}
|
77
|
+
.highlight .go {
|
78
|
+
color: #403d3d;
|
79
|
+
}
|
80
|
+
.highlight .gp {
|
81
|
+
color: #66d9ef;
|
82
|
+
}
|
83
|
+
.highlight .gs {
|
84
|
+
font-weight: bold;
|
85
|
+
}
|
86
|
+
.highlight .gu {
|
87
|
+
color: #465457;
|
88
|
+
}
|
89
|
+
.highlight .k, .highlight .kv {
|
90
|
+
color: #66d9ef;
|
91
|
+
font-weight: bold;
|
92
|
+
}
|
93
|
+
.highlight .kc {
|
94
|
+
color: #66d9ef;
|
95
|
+
font-weight: bold;
|
96
|
+
}
|
97
|
+
.highlight .kd {
|
98
|
+
color: #66d9ef;
|
99
|
+
font-weight: bold;
|
100
|
+
}
|
101
|
+
.highlight .kp {
|
102
|
+
color: #66d9ef;
|
103
|
+
font-weight: bold;
|
104
|
+
}
|
105
|
+
.highlight .kr {
|
106
|
+
color: #66d9ef;
|
107
|
+
font-weight: bold;
|
108
|
+
}
|
109
|
+
.highlight .kt {
|
110
|
+
color: #66d9ef;
|
111
|
+
font-weight: bold;
|
112
|
+
}
|
113
|
+
.highlight .kn {
|
114
|
+
color: #f92672;
|
115
|
+
font-weight: bold;
|
116
|
+
}
|
117
|
+
.highlight .ow {
|
118
|
+
color: #f92672;
|
119
|
+
font-weight: bold;
|
120
|
+
}
|
121
|
+
.highlight .o {
|
122
|
+
color: #f92672;
|
123
|
+
font-weight: bold;
|
124
|
+
}
|
125
|
+
.highlight .mf {
|
126
|
+
color: #af87ff;
|
127
|
+
}
|
128
|
+
.highlight .mh {
|
129
|
+
color: #af87ff;
|
130
|
+
}
|
131
|
+
.highlight .il {
|
132
|
+
color: #af87ff;
|
133
|
+
}
|
134
|
+
.highlight .mi {
|
135
|
+
color: #af87ff;
|
136
|
+
}
|
137
|
+
.highlight .mo {
|
138
|
+
color: #af87ff;
|
139
|
+
}
|
140
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
141
|
+
color: #af87ff;
|
142
|
+
}
|
143
|
+
.highlight .se {
|
144
|
+
color: #af87ff;
|
145
|
+
}
|
146
|
+
.highlight .sb {
|
147
|
+
color: #d7d787;
|
148
|
+
}
|
149
|
+
.highlight .sc {
|
150
|
+
color: #d7d787;
|
151
|
+
}
|
152
|
+
.highlight .sd {
|
153
|
+
color: #d7d787;
|
154
|
+
}
|
155
|
+
.highlight .s2 {
|
156
|
+
color: #d7d787;
|
157
|
+
}
|
158
|
+
.highlight .sh {
|
159
|
+
color: #d7d787;
|
160
|
+
}
|
161
|
+
.highlight .si {
|
162
|
+
color: #d7d787;
|
163
|
+
}
|
164
|
+
.highlight .sx {
|
165
|
+
color: #d7d787;
|
166
|
+
}
|
167
|
+
.highlight .sr {
|
168
|
+
color: #d7d787;
|
169
|
+
}
|
170
|
+
.highlight .s1 {
|
171
|
+
color: #d7d787;
|
172
|
+
}
|
173
|
+
.highlight .ss {
|
174
|
+
color: #d7d787;
|
175
|
+
}
|
176
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
177
|
+
color: #d7d787;
|
178
|
+
}
|
179
|
+
.highlight .na {
|
180
|
+
color: #a6e22e;
|
181
|
+
}
|
182
|
+
.highlight .nc {
|
183
|
+
color: #a6e22e;
|
184
|
+
font-weight: bold;
|
185
|
+
}
|
186
|
+
.highlight .nd {
|
187
|
+
color: #a6e22e;
|
188
|
+
font-weight: bold;
|
189
|
+
}
|
190
|
+
.highlight .ne {
|
191
|
+
color: #a6e22e;
|
192
|
+
font-weight: bold;
|
193
|
+
}
|
194
|
+
.highlight .nf, .highlight .fm {
|
195
|
+
color: #a6e22e;
|
196
|
+
font-weight: bold;
|
197
|
+
}
|
198
|
+
.highlight .no {
|
199
|
+
color: #66d9ef;
|
200
|
+
}
|
201
|
+
.highlight .bp {
|
202
|
+
color: #f8f8f2;
|
203
|
+
}
|
204
|
+
.highlight .nb {
|
205
|
+
color: #f8f8f2;
|
206
|
+
}
|
207
|
+
.highlight .ni {
|
208
|
+
color: #f8f8f2;
|
209
|
+
}
|
210
|
+
.highlight .nn {
|
211
|
+
color: #f8f8f2;
|
212
|
+
}
|
213
|
+
.highlight .vc {
|
214
|
+
color: #f8f8f2;
|
215
|
+
}
|
216
|
+
.highlight .vg {
|
217
|
+
color: #f8f8f2;
|
218
|
+
}
|
219
|
+
.highlight .vi {
|
220
|
+
color: #f8f8f2;
|
221
|
+
}
|
222
|
+
.highlight .nv, .highlight .vm {
|
223
|
+
color: #f8f8f2;
|
224
|
+
}
|
225
|
+
.highlight .w {
|
226
|
+
color: #f8f8f2;
|
227
|
+
}
|
228
|
+
.highlight .nl {
|
229
|
+
color: #f8f8f2;
|
230
|
+
font-weight: bold;
|
231
|
+
}
|
232
|
+
.highlight .nt {
|
233
|
+
color: #f92672;
|
234
|
+
}
|
235
|
+
.highlight {
|
236
|
+
color: #f8f8f2;
|
237
|
+
background-color: #1b1d1e;
|
238
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: catgirl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- j1nxie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- _sass/colors.scss
|
78
78
|
- _sass/fonts.scss
|
79
79
|
- _sass/homepage.scss
|
80
|
+
- _sass/syntax.scss
|
80
81
|
- assets/css/home.scss
|
81
82
|
- assets/css/styles.scss
|
82
83
|
- assets/img/favicons/android-chrome-192x192.png
|