jekyll-theme-satellite 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/_config.yml +82 -0
- data/_includes/loading.html +6 -0
- data/_includes/navigation.html +84 -0
- data/_includes/pagination.html +71 -0
- data/_includes/post.html +65 -0
- data/_includes/search.html +21 -0
- data/_includes/sidebar.html +83 -0
- data/_layouts/default.html +113 -0
- data/_sass/darkmode.scss +211 -0
- data/_sass/layout.scss +57 -0
- data/_sass/navigation.scss +178 -0
- data/_sass/pagination.scss +253 -0
- data/_sass/post.scss +640 -0
- data/_sass/search.scss +248 -0
- data/_sass/sidebar.scss +309 -0
- data/_sass/toc.scss +52 -0
- data/_sass/vars.scss +15 -0
- data/assets/css/highlight-dark.min.css +1 -0
- data/assets/css/highlight-default.min.css +1 -0
- data/assets/css/style.scss +89 -0
- data/assets/fonts/Lato-Regular.ttf +0 -0
- data/assets/fonts/NunitoSans-Regular.ttf +0 -0
- data/assets/fonts/Righteous-Regular.ttf +0 -0
- data/assets/img/La-Mancha.jpg +0 -0
- data/assets/img/example.jpg +0 -0
- data/assets/img/favicon.webp +0 -0
- data/assets/img/icon/book-solid.svg +1 -0
- data/assets/img/icon/calendar-days-regular.svg +1 -0
- data/assets/img/icon/clipboard-regular.svg +1 -0
- data/assets/img/icon/folder-open-regular.svg +1 -0
- data/assets/img/icon/tags-solid.svg +1 -0
- data/assets/img/loading.webp +0 -0
- data/assets/img/profile.jpg +0 -0
- data/assets/img/sorry.png +0 -0
- data/assets/img/thumbnail/book.jpg +0 -0
- data/assets/img/thumbnail/bricks.webp +0 -0
- data/assets/img/thumbnail/empty.jpg +0 -0
- data/assets/img/thumbnail/nightgardenflower.jpg +0 -0
- data/assets/img/thumbnail/sample.png +0 -0
- data/assets/img/tile.png +0 -0
- data/assets/js/404.js +22 -0
- data/assets/js/highlight.min.js +1213 -0
- data/assets/js/main.js +709 -0
- data/assets/js/stars.js +700 -0
- data/assets/js/sweet-scroll.min.js +2 -0
- data/assets/js/tocbot.min.js +1 -0
- metadata +104 -0
data/_sass/search.scss
ADDED
@@ -0,0 +1,248 @@
|
|
1
|
+
#search
|
2
|
+
{
|
3
|
+
width: 100%;
|
4
|
+
height: 100%;
|
5
|
+
top: 0;
|
6
|
+
left: 0;
|
7
|
+
position: fixed;
|
8
|
+
display: none;
|
9
|
+
background: rgba(255,255,255,0.875);
|
10
|
+
z-index: 999;
|
11
|
+
text-align: center;
|
12
|
+
|
13
|
+
ul, input {
|
14
|
+
min-width: 20rem;
|
15
|
+
width: 50vw;
|
16
|
+
}
|
17
|
+
|
18
|
+
ul {
|
19
|
+
margin: auto;
|
20
|
+
margin-top: -1px;
|
21
|
+
padding: 0;
|
22
|
+
overflow-y: auto;
|
23
|
+
max-height: 60vh;
|
24
|
+
border-bottom: 2px solid #aaa;
|
25
|
+
box-shadow: 0px 4px 8px 0 #ccc;
|
26
|
+
|
27
|
+
i {
|
28
|
+
margin-right: 0.5rem;
|
29
|
+
color: #666;
|
30
|
+
}
|
31
|
+
|
32
|
+
&::-webkit-scrollbar {
|
33
|
+
width: 8px;
|
34
|
+
background-color: #ddd;
|
35
|
+
}
|
36
|
+
|
37
|
+
&::-webkit-scrollbar-thumb { background-color: rosybrown; }
|
38
|
+
}
|
39
|
+
|
40
|
+
&.active{ display: flex; }
|
41
|
+
}
|
42
|
+
|
43
|
+
.wave {
|
44
|
+
background: rgba(253, 177, 55, 0.5);
|
45
|
+
border-radius: 0 0 250% 250%;
|
46
|
+
position: fixed;
|
47
|
+
width: 200%;
|
48
|
+
height: 12rem;
|
49
|
+
animation: wave 10s -3s linear infinite;
|
50
|
+
transform: translate3d(0, 0, 0);
|
51
|
+
opacity: 0.75;
|
52
|
+
top: 0;
|
53
|
+
left: 0;
|
54
|
+
z-index: -1;
|
55
|
+
}
|
56
|
+
|
57
|
+
.wave:nth-of-type(2) {
|
58
|
+
top: -1.5em;
|
59
|
+
animation: wave 18s linear reverse infinite;
|
60
|
+
opacity: 0.75;
|
61
|
+
}
|
62
|
+
|
63
|
+
.wave:nth-of-type(3) {
|
64
|
+
top: -3em;
|
65
|
+
animation: wave 20s -1s reverse infinite;
|
66
|
+
opacity: 0.875;
|
67
|
+
}
|
68
|
+
|
69
|
+
@keyframes wave {
|
70
|
+
2% { transform: translateX(1); }
|
71
|
+
|
72
|
+
25% { transform: translateX(-25%); }
|
73
|
+
|
74
|
+
50% { transform: translateX(-50%); }
|
75
|
+
|
76
|
+
75% { transform: translateX(-25%); }
|
77
|
+
|
78
|
+
100% { transform: translateX(1); }
|
79
|
+
}
|
80
|
+
|
81
|
+
.search-box {
|
82
|
+
margin: auto;
|
83
|
+
margin-top: 2rem;
|
84
|
+
|
85
|
+
h1 {
|
86
|
+
margin-bottom: 1rem;
|
87
|
+
color: #fff;
|
88
|
+
opacity: 0.8;
|
89
|
+
font-size: 1.5rem;
|
90
|
+
font-weight: 200;
|
91
|
+
font-family: 'Righteous', sans-serif;
|
92
|
+
}
|
93
|
+
|
94
|
+
input {
|
95
|
+
font-size: 1.25rem;
|
96
|
+
padding: 0.5rem;
|
97
|
+
border: 2px solid #aaa;
|
98
|
+
background: none;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
.input-box {
|
103
|
+
position: relative;
|
104
|
+
|
105
|
+
&:before,
|
106
|
+
&:after {
|
107
|
+
content: "";
|
108
|
+
position: absolute;
|
109
|
+
width: 100%;
|
110
|
+
height: 100%;
|
111
|
+
top: 0;
|
112
|
+
left: 0;
|
113
|
+
z-index: -1;
|
114
|
+
}
|
115
|
+
|
116
|
+
&:before { background: #fff; }
|
117
|
+
|
118
|
+
&:after { background-image: url('/assets/img/tile.png'); }
|
119
|
+
|
120
|
+
button {
|
121
|
+
position: absolute;
|
122
|
+
display: none;
|
123
|
+
cursor: pointer;
|
124
|
+
top: 0;
|
125
|
+
right: 8px;
|
126
|
+
width: 22px;
|
127
|
+
aspect-ratio: 1.0;
|
128
|
+
border-radius: 50%;
|
129
|
+
transform: translateY(50%);
|
130
|
+
font-size: 14px;
|
131
|
+
background: slategrey !important;
|
132
|
+
|
133
|
+
svg {
|
134
|
+
fill: #fff !important;
|
135
|
+
width: 14px;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.result-item {
|
141
|
+
list-style: none;
|
142
|
+
text-align: justify;
|
143
|
+
padding: 0.5rem;
|
144
|
+
border: 1px solid #aaa;
|
145
|
+
background: #fff;
|
146
|
+
|
147
|
+
&:hover { background: #ffe7a0; }
|
148
|
+
|
149
|
+
table {
|
150
|
+
th, td {
|
151
|
+
text-align: left;
|
152
|
+
vertical-align: top;
|
153
|
+
}
|
154
|
+
|
155
|
+
th { font-size: 1rem; }
|
156
|
+
|
157
|
+
td { font-size: 0.875rem; }
|
158
|
+
|
159
|
+
svg {
|
160
|
+
background-color: darkslategrey;
|
161
|
+
mask-repeat: no-repeat;
|
162
|
+
display: inline-flex;
|
163
|
+
width: 14px;
|
164
|
+
margin-right: 8px;
|
165
|
+
transform: translateY(2px);
|
166
|
+
}
|
167
|
+
|
168
|
+
.ico-book {
|
169
|
+
background-color: dodgerblue !important;
|
170
|
+
-webkit-mask-image: url(/assets/img/icon/book-solid.svg);
|
171
|
+
mask-image: url(/assets/img/icon/book-solid.svg);
|
172
|
+
}
|
173
|
+
|
174
|
+
.ico-folder {
|
175
|
+
-webkit-mask-image: url(/assets/img/icon/folder-open-regular.svg);
|
176
|
+
mask-image: url(/assets/img/icon/folder-open-regular.svg);
|
177
|
+
}
|
178
|
+
|
179
|
+
.ico-tags {
|
180
|
+
-webkit-mask-image: url(/assets/img/icon/tags-solid.svg);
|
181
|
+
mask-image: url(/assets/img/icon/tags-solid.svg);
|
182
|
+
}
|
183
|
+
|
184
|
+
.ico-calendar {
|
185
|
+
-webkit-mask-image: url(/assets/img/icon/calendar-days-regular.svg);
|
186
|
+
mask-image: url(/assets/img/icon/calendar-days-regular.svg);
|
187
|
+
}
|
188
|
+
|
189
|
+
th .ico-folder { background-color: mediumseagreen !important; }
|
190
|
+
|
191
|
+
.ico-book, th .ico-folder { width: 18px; }
|
192
|
+
}
|
193
|
+
|
194
|
+
.highlight {
|
195
|
+
font-weight: 900;
|
196
|
+
color: yellowgreen !important;
|
197
|
+
}
|
198
|
+
}
|
199
|
+
|
200
|
+
@include mq(tablet) {
|
201
|
+
#search {
|
202
|
+
ul, input { width: 40rem; }
|
203
|
+
|
204
|
+
ul {
|
205
|
+
div { font-size: 1.125rem; }
|
206
|
+
|
207
|
+
i { margin-right: 1rem; }
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
211
|
+
.search-box {
|
212
|
+
margin-top: 4rem;
|
213
|
+
|
214
|
+
h1 {
|
215
|
+
font-size: 2.5rem;
|
216
|
+
margin-bottom: 2rem;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
.search-box input {
|
221
|
+
font-size: 2rem;
|
222
|
+
padding: 1rem;
|
223
|
+
width: 40rem;
|
224
|
+
}
|
225
|
+
|
226
|
+
.input-box button {
|
227
|
+
width: 36px;
|
228
|
+
right: 16px;
|
229
|
+
|
230
|
+
svg { width: 20px; }
|
231
|
+
}
|
232
|
+
|
233
|
+
.result-item {
|
234
|
+
padding: 1rem;
|
235
|
+
|
236
|
+
table {
|
237
|
+
th { font-size: 1.25rem; }
|
238
|
+
|
239
|
+
td { font-size: 1rem; }
|
240
|
+
|
241
|
+
svg { width: 16px; }
|
242
|
+
|
243
|
+
.ico-book, th .ico-folder { width: 20px; }
|
244
|
+
}
|
245
|
+
|
246
|
+
.title { font-size: 1.25rem; }
|
247
|
+
}
|
248
|
+
}
|
data/_sass/sidebar.scss
ADDED
@@ -0,0 +1,309 @@
|
|
1
|
+
.sidebar {
|
2
|
+
z-index: 1;
|
3
|
+
flex-wrap: wrap;
|
4
|
+
|
5
|
+
ul, li {
|
6
|
+
list-style: none;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
.sidebar-left {
|
11
|
+
display: flex;
|
12
|
+
background-color: $color-beige;
|
13
|
+
}
|
14
|
+
|
15
|
+
.side-banner {
|
16
|
+
width: 100%;
|
17
|
+
text-align:center;
|
18
|
+
box-shadow: 0px 4px 8px 0 #aaa;
|
19
|
+
|
20
|
+
button {
|
21
|
+
position: absolute;
|
22
|
+
background-color: $color-beige;
|
23
|
+
height: 100%;
|
24
|
+
aspect-ratio: 1;
|
25
|
+
top: 0;
|
26
|
+
|
27
|
+
svg { width: 20px; }
|
28
|
+
|
29
|
+
&:hover { background-color: rgba(212, 201, 191, 0.7); }
|
30
|
+
}
|
31
|
+
|
32
|
+
#btn-nav { right: 0; }
|
33
|
+
|
34
|
+
#btn-search { right: 38px; }
|
35
|
+
|
36
|
+
#btn-brightness { right: 76px; }
|
37
|
+
|
38
|
+
.ico-dark {
|
39
|
+
display: block;
|
40
|
+
|
41
|
+
&.active{ display: none; }
|
42
|
+
}
|
43
|
+
|
44
|
+
.ico-light {
|
45
|
+
display: none;
|
46
|
+
|
47
|
+
&.active{ display: block; }
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.site-avatar {
|
52
|
+
img {
|
53
|
+
display: none;
|
54
|
+
width: 9rem;
|
55
|
+
aspect-ratio: 1;
|
56
|
+
border-radius: 50%;
|
57
|
+
outline: 4.5rem solid rgba(64,64,64,0.5);
|
58
|
+
outline-offset: -4.5rem;
|
59
|
+
transition: .3s;
|
60
|
+
|
61
|
+
&:hover {
|
62
|
+
outline: 4px solid orange;
|
63
|
+
outline-offset: 8px;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
img + img { border-radius: 50%; }
|
68
|
+
}
|
69
|
+
|
70
|
+
.site-name {
|
71
|
+
padding: 0.5rem;
|
72
|
+
font-size: 1rem;
|
73
|
+
text-align: left;
|
74
|
+
position: relative;
|
75
|
+
|
76
|
+
a, span { letter-spacing: 2px; }
|
77
|
+
}
|
78
|
+
|
79
|
+
.side-info {
|
80
|
+
position: relative;
|
81
|
+
width: 100%;
|
82
|
+
}
|
83
|
+
|
84
|
+
#contact{
|
85
|
+
display: none;
|
86
|
+
position: relative;
|
87
|
+
width: 75%;
|
88
|
+
transform: translateX(12.5%);
|
89
|
+
text-align: center;
|
90
|
+
padding: 1rem 0;
|
91
|
+
|
92
|
+
&.contact-open { display: block; }
|
93
|
+
|
94
|
+
hr {
|
95
|
+
border: 0;
|
96
|
+
margin: 0;
|
97
|
+
}
|
98
|
+
|
99
|
+
h3 { display: none; }
|
100
|
+
|
101
|
+
ul{
|
102
|
+
text-align: center;
|
103
|
+
padding: 0;
|
104
|
+
margin: 0;
|
105
|
+
overflow: hidden;
|
106
|
+
white-space: nowrap;
|
107
|
+
text-overflow: ellipsis;
|
108
|
+
|
109
|
+
li{
|
110
|
+
display: inline-block;
|
111
|
+
margin-top: 0.5rem;
|
112
|
+
|
113
|
+
a {
|
114
|
+
display: block;
|
115
|
+
padding: 6px;
|
116
|
+
transition: .3s;
|
117
|
+
|
118
|
+
svg {
|
119
|
+
width: 16px;
|
120
|
+
fill: dimgrey;
|
121
|
+
}
|
122
|
+
|
123
|
+
&:hover{
|
124
|
+
svg { fill: orange; }
|
125
|
+
|
126
|
+
transform: scale(1.5) translateY(-12.5%);
|
127
|
+
}
|
128
|
+
}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
span { font-size: 0.875rem; }
|
133
|
+
|
134
|
+
a { color: $color-darkorange; }
|
135
|
+
}
|
136
|
+
|
137
|
+
.sidebar-right{
|
138
|
+
display: none;
|
139
|
+
}
|
140
|
+
|
141
|
+
.tools {
|
142
|
+
position: fixed;
|
143
|
+
top: 1rem;
|
144
|
+
|
145
|
+
button {
|
146
|
+
width: 2.75rem;
|
147
|
+
aspect-ratio: 1;
|
148
|
+
text-align: center;
|
149
|
+
background: #ffe390;
|
150
|
+
border: none;
|
151
|
+
border-radius: 50%;
|
152
|
+
margin-left: 1rem;
|
153
|
+
cursor: pointer;
|
154
|
+
|
155
|
+
&:hover {
|
156
|
+
border: 2px solid midnightblue;
|
157
|
+
animation: leaves .75s ease-in-out infinite alternate;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
@keyframes leaves {
|
162
|
+
0% {
|
163
|
+
transform: scale(1.0);
|
164
|
+
background: #ffe390;
|
165
|
+
}
|
166
|
+
100% {
|
167
|
+
transform: scale(1.25);
|
168
|
+
background: #ffd044;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
svg {
|
173
|
+
fill: #3A241A !important;
|
174
|
+
width: 24px;
|
175
|
+
position: relative;
|
176
|
+
}
|
177
|
+
|
178
|
+
.ico-dark {
|
179
|
+
display: block;
|
180
|
+
|
181
|
+
&.active{ display: none; }
|
182
|
+
}
|
183
|
+
|
184
|
+
.ico-light {
|
185
|
+
display: none;
|
186
|
+
|
187
|
+
&.active{ display: block; }
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
@include mq(tablet){
|
192
|
+
.side-banner {
|
193
|
+
button { font-size: 1.75rem; }
|
194
|
+
|
195
|
+
#btn-search { right: 60px; }
|
196
|
+
|
197
|
+
#btn-brightness { right: 120px; }
|
198
|
+
}
|
199
|
+
|
200
|
+
.site-name {
|
201
|
+
padding: 1rem;
|
202
|
+
font-size: 1.375rem;
|
203
|
+
}
|
204
|
+
|
205
|
+
#contact {
|
206
|
+
ul li a svg { width: 18px; }
|
207
|
+
|
208
|
+
span { font-size: 1rem; }
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
@include mq(desktop){
|
213
|
+
.sidebar { position: fixed; }
|
214
|
+
|
215
|
+
.sidebar-left{
|
216
|
+
flex-flow: column nowrap;
|
217
|
+
width: #{$sidebarwd};
|
218
|
+
min-height: 100%;
|
219
|
+
background: none;
|
220
|
+
align-items: flex-end;
|
221
|
+
}
|
222
|
+
|
223
|
+
.side-banner{
|
224
|
+
width: #{$sidebarwd};
|
225
|
+
box-shadow: none !important;
|
226
|
+
|
227
|
+
button {
|
228
|
+
display: none;
|
229
|
+
font-size: 1.5rem;
|
230
|
+
}
|
231
|
+
|
232
|
+
#btn-search { right: 69px; }
|
233
|
+
|
234
|
+
#btn-brightness { right: 138px; }
|
235
|
+
}
|
236
|
+
|
237
|
+
.site-avatar img { display: inline-block; }
|
238
|
+
|
239
|
+
.site-name {
|
240
|
+
font-size: 1.375rem;
|
241
|
+
padding: 1rem;
|
242
|
+
text-align: center;
|
243
|
+
|
244
|
+
.highlight {
|
245
|
+
font-weight: 600;
|
246
|
+
font-family: 'Righteous', sans-serif;
|
247
|
+
background-image: -webkit-linear-gradient(left, #a95770 25%, #ff4d7c 32.5%, #97d0ec 50%, #ff4d7c 67.5%, #a95770 75%);
|
248
|
+
background-image: linear-gradient(90deg, #a95770 25%, #ff4d7c 32.5%, #97d0ec 50%, #ff4d7c 67.5%, #a95770 75%);
|
249
|
+
background-position: right center;
|
250
|
+
background-size: 400% auto;
|
251
|
+
-webkit-background-clip: text;
|
252
|
+
background-clip: text;
|
253
|
+
-webkit-text-fill-color: transparent;
|
254
|
+
|
255
|
+
&:hover {
|
256
|
+
color: #ef9671;
|
257
|
+
animation: slide 2s ease-in infinite;
|
258
|
+
}
|
259
|
+
|
260
|
+
@keyframes slide {
|
261
|
+
100% {
|
262
|
+
background-position: left center;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
.side-info {
|
269
|
+
width: #{$sidebarwd};
|
270
|
+
height: calc(100% - 14rem);
|
271
|
+
display: contents;
|
272
|
+
}
|
273
|
+
|
274
|
+
#contact{
|
275
|
+
display: block;
|
276
|
+
width: calc(#{$sidebarwd} - 4rem);
|
277
|
+
margin-top: 2rem;
|
278
|
+
padding: 1rem 2rem;
|
279
|
+
transform: none;
|
280
|
+
|
281
|
+
hr {
|
282
|
+
border-top: 1px solid lightgrey;
|
283
|
+
margin: 0.5rem;
|
284
|
+
}
|
285
|
+
|
286
|
+
h3{
|
287
|
+
display: block;
|
288
|
+
position: absolute;
|
289
|
+
margin: 0;
|
290
|
+
top: 14px;
|
291
|
+
font-size: 1rem;
|
292
|
+
transform: translateX(-50%);
|
293
|
+
left: 50%;
|
294
|
+
background-color: #fff;
|
295
|
+
}
|
296
|
+
}
|
297
|
+
}
|
298
|
+
|
299
|
+
@include mq(wide){
|
300
|
+
.sidebar-left{ width: calc((100vw - #{$contentwd})/2); }
|
301
|
+
|
302
|
+
.sidebar-right{
|
303
|
+
display: flex;
|
304
|
+
height: 100%;
|
305
|
+
align-items: flex-end;
|
306
|
+
width: calc((100vw - #{$contentwd})/2);
|
307
|
+
margin-left: calc(#{$contentwd} + (100vw - #{$contentwd})/2);
|
308
|
+
}
|
309
|
+
}
|
data/_sass/toc.scss
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
.toc {
|
2
|
+
position: fixed;
|
3
|
+
top: 6rem;
|
4
|
+
}
|
5
|
+
|
6
|
+
.toc-header {
|
7
|
+
font-size: 1.25rem;
|
8
|
+
font-weight: 600;
|
9
|
+
padding-left: 0.75rem;
|
10
|
+
padding-bottom: 4px;
|
11
|
+
border-bottom: burlywood 2px solid;
|
12
|
+
|
13
|
+
svg {
|
14
|
+
width: 16px;
|
15
|
+
display: inline-flex;
|
16
|
+
transform: translateY(2px);
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
.toc-board {
|
21
|
+
max-width: #{$sidebarwd};
|
22
|
+
margin: 0;
|
23
|
+
margin-left: 2rem;
|
24
|
+
}
|
25
|
+
|
26
|
+
.toc-list {
|
27
|
+
font-size: 1.125rem;
|
28
|
+
padding: 0;
|
29
|
+
|
30
|
+
li:last-child { margin-bottom: 0; }
|
31
|
+
|
32
|
+
li a { display:inline-block; }
|
33
|
+
|
34
|
+
.node-name--H1 { margin-top: 0.5rem; }
|
35
|
+
|
36
|
+
.node-name--H2 {
|
37
|
+
font-size: 1rem;
|
38
|
+
margin-top: 0.375rem;
|
39
|
+
padding-left: 0.5rem;
|
40
|
+
}
|
41
|
+
|
42
|
+
.toc-list-item {
|
43
|
+
word-break: normal;
|
44
|
+
display: block;
|
45
|
+
line-height: 150%;
|
46
|
+
}
|
47
|
+
|
48
|
+
.is-active-link{
|
49
|
+
color: indianred !important;
|
50
|
+
font-weight:950;
|
51
|
+
}
|
52
|
+
}
|
data/_sass/vars.scss
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
$color-wenge: #66545E;
|
2
|
+
$color-beige: #F1EBE5;
|
3
|
+
$color-darkbrown: #3A241A;
|
4
|
+
$color-darkorange: #B04008;
|
5
|
+
$color-rose: #fa4251;
|
6
|
+
$color-aqua: #64c8c8;
|
7
|
+
$sidebarwd: 18rem;
|
8
|
+
$contentwd: 54rem;
|
9
|
+
|
10
|
+
$mediawd: (
|
11
|
+
mobile: 320px,
|
12
|
+
tablet: 769px,
|
13
|
+
desktop: 1025px,
|
14
|
+
wide: 1441px,
|
15
|
+
) !default;
|
@@ -0,0 +1 @@
|
|
1
|
+
pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#abb2bf !important;background:#282c34 !important}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#c678dd !important}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e06c75 !important}.hljs-literal{color:#56b6c2 !important}.hljs-addition,.hljs-attribute,.hljs-comment,.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#98c379 !important}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#d19a66 !important}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#61aeee !important}.hljs-built_in,.hljs-class .hljs-title,.hljs-title.class_{color:#e6c07b !important}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}
|
@@ -0,0 +1 @@
|
|
1
|
+
pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#383a42;background:#fafafa}.hljs-comment,.hljs-attribute{color:#0184bb !important}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e45649 !important}.hljs-literal{color:#0184bb !important}.hljs-addition,.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#50a14f !important}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#4078f2 !important}.hljs-built_in,.hljs-class .hljs-title,.hljs-title.class_{color:#c18401 !important}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
@font-face {
|
5
|
+
font-family: 'Nunito Sans';
|
6
|
+
font-style: normal;
|
7
|
+
font-weight: 400;
|
8
|
+
font-display: swap;
|
9
|
+
src: url(/assets/fonts/NunitoSans-Regular.ttf);
|
10
|
+
}
|
11
|
+
|
12
|
+
@font-face {
|
13
|
+
font-family: 'Righteous';
|
14
|
+
font-style: normal;
|
15
|
+
font-weight: 600;
|
16
|
+
font-display: swap;
|
17
|
+
src: url(/assets/fonts/Righteous-Regular.ttf);
|
18
|
+
}
|
19
|
+
|
20
|
+
@font-face {
|
21
|
+
font-family: 'Lato';
|
22
|
+
font-style: normal;
|
23
|
+
font-weight: 400;
|
24
|
+
font-display: swap;
|
25
|
+
src: url(/assets/fonts/Lato-Regular.ttf);
|
26
|
+
}
|
27
|
+
|
28
|
+
html, body {
|
29
|
+
margin: 0;
|
30
|
+
padding: 0;
|
31
|
+
}
|
32
|
+
|
33
|
+
a {
|
34
|
+
text-decoration: none;
|
35
|
+
}
|
36
|
+
|
37
|
+
a, span, p, h1, h2, h3, i {
|
38
|
+
color: #3A241A;
|
39
|
+
font-family: "Nunito Sans", sans-serif;
|
40
|
+
}
|
41
|
+
|
42
|
+
h1, h2, h3 {
|
43
|
+
margin: 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
svg {
|
47
|
+
width: 16px;
|
48
|
+
aspect-ratio: 1.0;
|
49
|
+
fill: #3A241A;
|
50
|
+
display: block;
|
51
|
+
margin: auto;
|
52
|
+
}
|
53
|
+
|
54
|
+
button {
|
55
|
+
border: none;
|
56
|
+
background: none;
|
57
|
+
padding: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
/* Disable default input cancel button */
|
61
|
+
input::-ms-clear,
|
62
|
+
input::-ms-reveal{
|
63
|
+
display:none;
|
64
|
+
width:0;
|
65
|
+
height:0;
|
66
|
+
}
|
67
|
+
|
68
|
+
input::-webkit-search-decoration,
|
69
|
+
input::-webkit-search-cancel-button,
|
70
|
+
input::-webkit-search-results-button,
|
71
|
+
input::-webkit-search-results-decoration{
|
72
|
+
display:none;
|
73
|
+
}
|
74
|
+
|
75
|
+
@import 'vars';
|
76
|
+
@import 'layout';
|
77
|
+
|
78
|
+
:root{
|
79
|
+
--pagewidth-desktop: calc(max(min(100vw - #{$sidebarwd} - 2rem, #{$contentwd}), 44rem));
|
80
|
+
}
|
81
|
+
|
82
|
+
@import "sidebar";
|
83
|
+
@import "navigation";
|
84
|
+
@import "pagination";
|
85
|
+
@import "toc";
|
86
|
+
@import "post";
|
87
|
+
@import "search";
|
88
|
+
|
89
|
+
@import "darkmode";
|
Binary file
|
Binary file
|
Binary file
|