seminima 0.1.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +59 -0
- data/_config.yml +23 -0
- data/_includes/comments.html +18 -0
- data/_includes/custom-head.html +6 -0
- data/_includes/footer.html +32 -0
- data/_includes/google-analytics.html +8 -0
- data/_includes/head.html +14 -0
- data/_includes/header.html +20 -0
- data/_includes/nav-items.html +8 -0
- data/_includes/past_talk.html +15 -0
- data/_includes/social.html +22 -0
- data/_includes/sub-footer.html +4 -0
- data/_includes/talk.html +14 -0
- data/_layouts/base.html +22 -0
- data/_layouts/default.html +1 -0
- data/_layouts/home.html +76 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +50 -0
- data/_layouts/reading_seminar.html +45 -0
- data/_layouts/talk.html +40 -0
- data/_plugins/calendar.rb +59 -0
- data/_plugins/talks.rb +26 -0
- data/_sass/minima/_base.scss +296 -0
- data/_sass/minima/_layout.scss +418 -0
- data/_sass/minima/custom-styles.scss +2 -0
- data/_sass/minima/custom-variables.scss +1 -0
- data/_sass/minima/initialize.scss +51 -0
- data/_sass/minima/seminima.scss +26 -0
- data/_sass/minima/skins/auto.scss +399 -0
- data/_sass/minima/skins/classic.scss +5 -0
- data/_sass/minima/skins/dark.scss +5 -0
- data/_sass/minima/skins/solarized-dark.scss +5 -0
- data/_sass/minima/skins/solarized-light.scss +4 -0
- data/_sass/minima/skins/solarized.scss +258 -0
- data/assets/css/style.scss +7 -0
- metadata +155 -0
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
// Solarized skin
|
|
4
|
+
// ==============
|
|
5
|
+
// Created by Sander Voerman <mailto:sander@savoerman.nl> using the Solarized
|
|
6
|
+
// color scheme by Ethan Schoonover <https://ethanschoonover.com/solarized>.
|
|
7
|
+
|
|
8
|
+
// This style sheet implements three options for the minima.skin setting:
|
|
9
|
+
// "solarized-light" for light mode, "solarized-dark" for dark mode, and
|
|
10
|
+
// "solarized" for light or dark mode depending on user preference.
|
|
11
|
+
$sol-is-auto: true !default;
|
|
12
|
+
$sol-is-dark: false !default;
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
// Color scheme
|
|
16
|
+
// ------------
|
|
17
|
+
// The inline comments show the canonical L*a*b values for each color.
|
|
18
|
+
//
|
|
19
|
+
// Some colors were altered from the canonical scheme to comply with
|
|
20
|
+
// WCAG-contrast criteria between foreground and background colors.
|
|
21
|
+
|
|
22
|
+
$sol-base03: #002b36; // 15 -12 -12
|
|
23
|
+
$sol-base02: #073642; // 20 -12 -12
|
|
24
|
+
$sol-base01: #586e75; // 45 -07 -07
|
|
25
|
+
$sol-base00: #4e626a; // original hex: #657b83 ; L*a*b: 50 -07 -07
|
|
26
|
+
$sol-base0: #91a0a1; // original hex: #839496 ; L*a*b: 60 -06 -03
|
|
27
|
+
$sol-base1: #93a1a1; // 65 -05 -02
|
|
28
|
+
$sol-base2: #eee8d5; // 92 -00 10
|
|
29
|
+
$sol-base3: #fdf6e3; // 97 00 10
|
|
30
|
+
$sol-yellow: #b58900; // 60 10 65
|
|
31
|
+
$sol-orange: #cb4b16; // 50 50 55
|
|
32
|
+
$sol-red: #dc322f; // 50 65 45
|
|
33
|
+
$sol-magenta: #d33682; // 50 65 -05
|
|
34
|
+
$sol-violet: #6c71c4; // 50 15 -45
|
|
35
|
+
$sol-blue: #268bd2; // 55 -10 -45
|
|
36
|
+
$sol-cyan: #2aa198; // 60 -35 -05
|
|
37
|
+
$sol-green: #859900; // 60 -20 65
|
|
38
|
+
|
|
39
|
+
// Non-canonical; Derived to comply with WCAG-contrast criterion.
|
|
40
|
+
$sol-light-blue: #469edd;
|
|
41
|
+
$sol-light-blue2: #64a5ce;
|
|
42
|
+
$sol-dark-blue: #2072ac;
|
|
43
|
+
$sol-dark-blue2: #376a8b;
|
|
44
|
+
|
|
45
|
+
// Mixed colors
|
|
46
|
+
// ------------
|
|
47
|
+
// While not part of the original Solarized base tones, these derived tones
|
|
48
|
+
// are meant to replicate the visual style of the classic skin. They should
|
|
49
|
+
// not be used in cases where sufficiently contrasting colors are needed.
|
|
50
|
+
|
|
51
|
+
$sol-light-mix1: mix($sol-base1, $sol-base3);
|
|
52
|
+
$sol-light-mix2: mix($sol-blue, $sol-base00);
|
|
53
|
+
$sol-light-mix3: mix($sol-base2, $sol-base3);
|
|
54
|
+
$sol-light-mix4: #e8e3d4; // custom mixture of `$sol-base1` and `$sol-base3`.
|
|
55
|
+
$sol-dark-mix1: mix($sol-base01, $sol-base03);
|
|
56
|
+
$sol-dark-mix2: mix($sol-blue, $sol-base0);
|
|
57
|
+
$sol-dark-mix3: mix($sol-base02, $sol-base03);
|
|
58
|
+
$sol-dark-mix4: #193843; // custom mixture of `$sol-base01` and `$sol-base03`.
|
|
59
|
+
|
|
60
|
+
// Mode selection
|
|
61
|
+
// --------------
|
|
62
|
+
|
|
63
|
+
$sol-mono3: $sol-base3;
|
|
64
|
+
$sol-mono2: $sol-base2;
|
|
65
|
+
$sol-mono1: $sol-base1;
|
|
66
|
+
$sol-mono00: $sol-base00;
|
|
67
|
+
$sol-mono01: $sol-base01;
|
|
68
|
+
$sol-mix1: $sol-light-mix1;
|
|
69
|
+
$sol-mix2: $sol-light-mix2;
|
|
70
|
+
$sol-mix3: $sol-light-mix3;
|
|
71
|
+
$sol-mix4: $sol-light-mix4;
|
|
72
|
+
|
|
73
|
+
$sol-mono1-dimmed: darken($sol-base1, 20%);
|
|
74
|
+
$sol-link-color: $sol-dark-blue;
|
|
75
|
+
$sol-link-visited: $sol-dark-blue2;
|
|
76
|
+
|
|
77
|
+
$sol-mark-line-bgcolor: #ffffcc;
|
|
78
|
+
|
|
79
|
+
@if $sol-is-dark {
|
|
80
|
+
$sol-mono3: $sol-base03;
|
|
81
|
+
$sol-mono2: $sol-base02;
|
|
82
|
+
$sol-mono1: $sol-base01;
|
|
83
|
+
$sol-mono00: $sol-base0;
|
|
84
|
+
$sol-mono01: $sol-base1;
|
|
85
|
+
$sol-mix1: $sol-dark-mix1;
|
|
86
|
+
$sol-mix2: $sol-dark-mix2;
|
|
87
|
+
$sol-mix3: $sol-dark-mix3;
|
|
88
|
+
$sol-mix4: $sol-dark-mix4;
|
|
89
|
+
|
|
90
|
+
$sol-mono1-dimmed: lighten($sol-base01, 16%);
|
|
91
|
+
$sol-link-color: $sol-light-blue;
|
|
92
|
+
$sol-link-visited: $sol-light-blue2;
|
|
93
|
+
|
|
94
|
+
$sol-mark-line-bgcolor: #164145;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@if $sol-is-auto {
|
|
98
|
+
:root {
|
|
99
|
+
--solarized-mono3: #{$sol-base3};
|
|
100
|
+
--solarized-mono2: #{$sol-base2};
|
|
101
|
+
--solarized-mono1: #{$sol-base1};
|
|
102
|
+
--solarized-mono00: #{$sol-base00};
|
|
103
|
+
--solarized-mono01: #{$sol-base01};
|
|
104
|
+
--solarized-mix1: #{$sol-light-mix1};
|
|
105
|
+
--solarized-mix2: #{$sol-light-mix2};
|
|
106
|
+
--solarized-mix3: #{$sol-light-mix3};
|
|
107
|
+
--solarized-mix4: #{$sol-light-mix4};
|
|
108
|
+
|
|
109
|
+
--solarized-mono1-dimmed: #{darken($sol-base1, 20%)};
|
|
110
|
+
--solarized-link-color: #{$sol-dark-blue};
|
|
111
|
+
--solarized-link-visited: #{$sol-dark-blue2};
|
|
112
|
+
|
|
113
|
+
--solarized-mark-line-bg-color: #ffffcc;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@media (prefers-color-scheme: dark) {
|
|
117
|
+
:root {
|
|
118
|
+
--solarized-mono3: #{$sol-base03};
|
|
119
|
+
--solarized-mono2: #{$sol-base02};
|
|
120
|
+
--solarized-mono1: #{$sol-base01};
|
|
121
|
+
--solarized-mono00: #{$sol-base0};
|
|
122
|
+
--solarized-mono01: #{$sol-base1};
|
|
123
|
+
--solarized-mix1: #{$sol-dark-mix1};
|
|
124
|
+
--solarized-mix2: #{$sol-dark-mix2};
|
|
125
|
+
--solarized-mix3: #{$sol-dark-mix3};
|
|
126
|
+
--solarized-mix4: #{$sol-dark-mix4};
|
|
127
|
+
|
|
128
|
+
--solarized-mono1-dimmed: #{lighten($sol-base01, 16%)};
|
|
129
|
+
--solarized-link-color: #{$sol-light-blue};
|
|
130
|
+
--solarized-link-visited: #{$sol-light-blue2};
|
|
131
|
+
|
|
132
|
+
--solarized-mark-line-bg-color: #164145;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
$sol-mono3: var(--solarized-mono3);
|
|
137
|
+
$sol-mono2: var(--solarized-mono2);
|
|
138
|
+
$sol-mono1: var(--solarized-mono1);
|
|
139
|
+
$sol-mono00: var(--solarized-mono00);
|
|
140
|
+
$sol-mono01: var(--solarized-mono01);
|
|
141
|
+
$sol-mix1: var(--solarized-mix1);
|
|
142
|
+
$sol-mix2: var(--solarized-mix2);
|
|
143
|
+
$sol-mix3: var(--solarized-mix3);
|
|
144
|
+
$sol-mix4: var(--solarized-mix4);
|
|
145
|
+
|
|
146
|
+
$sol-mono1-dimmed: var(--solarized-mono1-dimmed);
|
|
147
|
+
$sol-link-color: var(--solarized-link-color);
|
|
148
|
+
$sol-link-visited: var(--solarized-link-visited);
|
|
149
|
+
|
|
150
|
+
$sol-mark-line-bgcolor: var(--solarized-mark-line-bg-color);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
// Minima color variables
|
|
155
|
+
// ----------------------
|
|
156
|
+
|
|
157
|
+
$brand-color: $sol-mono1 !default;
|
|
158
|
+
$brand-color-light: $sol-mix4 !default;
|
|
159
|
+
$brand-color-dimmed: $sol-mono1-dimmed !default;
|
|
160
|
+
$brand-color-dark: $sol-mono00 !default;
|
|
161
|
+
|
|
162
|
+
$site-title-color: $sol-mono00 !default;
|
|
163
|
+
|
|
164
|
+
$heading-color: $sol-mono01 !default;
|
|
165
|
+
$text-color: $sol-mono00 !default;
|
|
166
|
+
$background-color: $sol-mono3 !default;
|
|
167
|
+
$code-background-color: $sol-mix3 !default;
|
|
168
|
+
|
|
169
|
+
$link-base-color: $sol-link-color !default;
|
|
170
|
+
$link-visited-color: $sol-link-visited !default;
|
|
171
|
+
$link-hover-color: $sol-mono00 !default;
|
|
172
|
+
|
|
173
|
+
$border-color-01: $brand-color-light !default;
|
|
174
|
+
$border-color-02: $sol-mono1 !default;
|
|
175
|
+
$border-color-03: $sol-mono00 !default;
|
|
176
|
+
|
|
177
|
+
$table-text-color: $sol-mono00 !default;
|
|
178
|
+
$table-zebra-color: $sol-mix3 !default;
|
|
179
|
+
$table-header-bg-color: $sol-mono2 !default;
|
|
180
|
+
$table-header-border: $sol-mix1 !default;
|
|
181
|
+
$table-border-color: $sol-mix1 !default;
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
// Syntax highlighting styles
|
|
185
|
+
// --------------------------
|
|
186
|
+
|
|
187
|
+
.highlight {
|
|
188
|
+
.err { color: #fefeec; background-color: $sol-red } // Error
|
|
189
|
+
|
|
190
|
+
.c { color: $sol-mono1 } // Comment
|
|
191
|
+
.c1 { color: $sol-mono1 } // Comment.Single
|
|
192
|
+
.cm { color: $sol-mono1 } // Comment.Multiline
|
|
193
|
+
.cp { color: $sol-mono1 } // Comment.Preproc
|
|
194
|
+
.cs { color: $sol-mono1; font-style: italic } // Comment.Special
|
|
195
|
+
|
|
196
|
+
.gd { color: $sol-red } // Generic.Deleted
|
|
197
|
+
.gd .x { color: $sol-red } // Generic.Deleted.Specific
|
|
198
|
+
.ge { color: $sol-mono00; font-style: italic } // Generic.Emph
|
|
199
|
+
.gh { color: $sol-mono1 } // Generic.Heading
|
|
200
|
+
.gi { color: $sol-green } // Generic.Inserted
|
|
201
|
+
.gi .x { color: $sol-green } // Generic.Inserted.Specific
|
|
202
|
+
.go { color: $sol-mono00 } // Generic.Output
|
|
203
|
+
.gp { color: $sol-mono00 } // Generic.Prompt
|
|
204
|
+
.gr { color: $sol-red } // Generic.Error
|
|
205
|
+
.gs { color: $sol-mono01; font-weight: bold } // Generic.Strong
|
|
206
|
+
.gt { color: $sol-red } // Generic.Traceback
|
|
207
|
+
.gu { color: $sol-mono1 } // Generic.Subheading
|
|
208
|
+
|
|
209
|
+
.k { color: $sol-orange } // Keyword
|
|
210
|
+
.kc { color: $sol-orange } // Keyword.Constant
|
|
211
|
+
.kd { color: $sol-orange } // Keyword.Declaration
|
|
212
|
+
.kp { color: $sol-orange } // Keyword.Pseudo
|
|
213
|
+
.kr { color: $sol-orange } // Keyword.Reserved
|
|
214
|
+
.kt { color: $sol-violet } // Keyword.Type
|
|
215
|
+
|
|
216
|
+
.na { color: $sol-cyan } // Name.Attribute
|
|
217
|
+
.nb { color: $sol-orange } // Name.Builtin
|
|
218
|
+
.bp { color: $sol-blue } // Name.Builtin.Pseudo
|
|
219
|
+
.nc { color: $sol-violet } // Name.Class
|
|
220
|
+
.ne { color: $sol-violet } // Name.Exception
|
|
221
|
+
.nf { color: $sol-blue } // Name.Function
|
|
222
|
+
.ni { color: $sol-violet } // Name.Entity
|
|
223
|
+
.nn { color: $sol-violet } // Name.Namespace
|
|
224
|
+
.no { color: $sol-violet } // Name.Constant
|
|
225
|
+
.nt { color: $sol-orange } // Name.Tag
|
|
226
|
+
.nv { color: $sol-cyan } // Name.Variable
|
|
227
|
+
.vc { color: $sol-cyan } // Name.Variable.Class
|
|
228
|
+
.vg { color: $sol-cyan } // Name.Variable.Global
|
|
229
|
+
.vi { color: $sol-cyan } // Name.Variable.Instance
|
|
230
|
+
|
|
231
|
+
.o { color: $sol-green } // Operator
|
|
232
|
+
.ow { color: $sol-green } // Operator.Word
|
|
233
|
+
|
|
234
|
+
.m { color: $sol-violet } // Literal.Number
|
|
235
|
+
.mf { color: $sol-violet } // Literal.Number.Float
|
|
236
|
+
.mh { color: $sol-violet } // Literal.Number.Hex
|
|
237
|
+
.mi { color: $sol-violet } // Literal.Number.Integer
|
|
238
|
+
.il { color: $sol-violet } // Literal.Number.Integer.Long
|
|
239
|
+
.mo { color: $sol-violet } // Literal.Number.Oct
|
|
240
|
+
|
|
241
|
+
.s { color: $sol-magenta } // Literal.String
|
|
242
|
+
.s1 { color: $sol-magenta } // Literal.String.Single
|
|
243
|
+
.s2 { color: $sol-magenta } // Literal.String.Double
|
|
244
|
+
.sb { color: $sol-magenta } // Literal.String.Backtick
|
|
245
|
+
.sc { color: $sol-magenta } // Literal.String.Char
|
|
246
|
+
.sd { color: $sol-magenta } // Literal.String.Doc
|
|
247
|
+
.se { color: $sol-magenta } // Literal.String.Escape
|
|
248
|
+
.sh { color: $sol-magenta } // Literal.String.Heredoc
|
|
249
|
+
.si { color: $sol-magenta } // Literal.String.Interpol
|
|
250
|
+
.sr { color: $sol-green } // Literal.String.Regex
|
|
251
|
+
.ss { color: $sol-magenta } // Literal.String.Symbol
|
|
252
|
+
.sx { color: $sol-magenta } // Literal.String.Other
|
|
253
|
+
|
|
254
|
+
.w { color: $sol-mono1 } // Text.Whitespace
|
|
255
|
+
|
|
256
|
+
.lineno, .gl { color: $sol-mono1 } // Line Number
|
|
257
|
+
.hll { background-color: $sol-mark-line-bgcolor } // Marked-lines
|
|
258
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: seminima
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Douwe Hoekstra
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.4'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.4'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-feed
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0.9'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0.9'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jekyll-seo-tag
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.1'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.1'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: tzinfo
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '2.0'
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: 2.0.6
|
|
65
|
+
type: :runtime
|
|
66
|
+
prerelease: false
|
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - "~>"
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '2.0'
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 2.0.6
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: icalendar
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '2.12'
|
|
82
|
+
type: :runtime
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '2.12'
|
|
89
|
+
description:
|
|
90
|
+
email:
|
|
91
|
+
- dev@dhoekstra.xyz
|
|
92
|
+
executables: []
|
|
93
|
+
extensions: []
|
|
94
|
+
extra_rdoc_files: []
|
|
95
|
+
files:
|
|
96
|
+
- LICENSE.txt
|
|
97
|
+
- README.md
|
|
98
|
+
- _config.yml
|
|
99
|
+
- _includes/comments.html
|
|
100
|
+
- _includes/custom-head.html
|
|
101
|
+
- _includes/footer.html
|
|
102
|
+
- _includes/google-analytics.html
|
|
103
|
+
- _includes/head.html
|
|
104
|
+
- _includes/header.html
|
|
105
|
+
- _includes/nav-items.html
|
|
106
|
+
- _includes/past_talk.html
|
|
107
|
+
- _includes/social.html
|
|
108
|
+
- _includes/sub-footer.html
|
|
109
|
+
- _includes/talk.html
|
|
110
|
+
- _layouts/base.html
|
|
111
|
+
- _layouts/default.html
|
|
112
|
+
- _layouts/home.html
|
|
113
|
+
- _layouts/page.html
|
|
114
|
+
- _layouts/post.html
|
|
115
|
+
- _layouts/reading_seminar.html
|
|
116
|
+
- _layouts/talk.html
|
|
117
|
+
- _plugins/calendar.rb
|
|
118
|
+
- _plugins/talks.rb
|
|
119
|
+
- _sass/minima/_base.scss
|
|
120
|
+
- _sass/minima/_layout.scss
|
|
121
|
+
- _sass/minima/custom-styles.scss
|
|
122
|
+
- _sass/minima/custom-variables.scss
|
|
123
|
+
- _sass/minima/initialize.scss
|
|
124
|
+
- _sass/minima/seminima.scss
|
|
125
|
+
- _sass/minima/skins/auto.scss
|
|
126
|
+
- _sass/minima/skins/classic.scss
|
|
127
|
+
- _sass/minima/skins/dark.scss
|
|
128
|
+
- _sass/minima/skins/solarized-dark.scss
|
|
129
|
+
- _sass/minima/skins/solarized-light.scss
|
|
130
|
+
- _sass/minima/skins/solarized.scss
|
|
131
|
+
- assets/css/style.scss
|
|
132
|
+
homepage: https://github.com/seminar-tools/seminima
|
|
133
|
+
licenses:
|
|
134
|
+
- MIT
|
|
135
|
+
metadata: {}
|
|
136
|
+
post_install_message:
|
|
137
|
+
rdoc_options: []
|
|
138
|
+
require_paths:
|
|
139
|
+
- lib
|
|
140
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
|
+
requirements:
|
|
147
|
+
- - ">="
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '0'
|
|
150
|
+
requirements: []
|
|
151
|
+
rubygems_version: 3.3.26
|
|
152
|
+
signing_key:
|
|
153
|
+
specification_version: 4
|
|
154
|
+
summary: A Jekyll-theme for seminar sites based on Minima.
|
|
155
|
+
test_files: []
|