jekyll-theme-collider 0.1.6 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_sass/jekyll-theme-collider/components/_contact.scss +1 -1
- data/_sass/jekyll-theme-collider/components/_header.scss +6 -4
- data/_sass/jekyll-theme-collider/components/_post-list.scss +3 -3
- data/_sass/jekyll-theme-collider/components/_site-title.scss +1 -1
- data/_sass/jekyll-theme-collider/elements/_elements.scss +2 -1
- data/_sass/jekyll-theme-collider/generic/_font.scss +78 -8
- data/_sass/jekyll-theme-collider/generic/_normalize.scss +1 -1
- data/_sass/jekyll-theme-collider/helpers/_syntax-highlighting.scss +82 -0
- data/assets/fonts/{OperatorMonoSSm-Bold.otf → Operator/OperatorMonoSSm-Bold.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-BoldItalic.otf → Operator/OperatorMonoSSm-BoldItalic.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-Book.otf → Operator/OperatorMonoSSm-Book.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-BookItalic.otf → Operator/OperatorMonoSSm-BookItalic.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-Light.otf → Operator/OperatorMonoSSm-Light.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-LightItalic.otf → Operator/OperatorMonoSSm-LightItalic.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-Medium.otf → Operator/OperatorMonoSSm-Medium.otf} +0 -0
- data/assets/fonts/{OperatorMonoSSm-MediumItalic.otf → Operator/OperatorMonoSSm-MediumItalic.otf} +0 -0
- data/assets/fonts/Watford/wotfard-bold-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-bolditalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-extralight-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-extralightitalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-light-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-lightitalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-medium-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-mediumitalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-regular-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-regularitalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-semibold-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-semibolditalic-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-thin-webfont.woff2 +0 -0
- data/assets/fonts/Watford/wotfard-thinitalic-webfont.woff2 +0 -0
- metadata +24 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9be78b51a1595904eaef3f3a907eac5f2655e5b5019322d4ea16a23e07520f4e
|
4
|
+
data.tar.gz: f5ca09705f51d51f1f0a8eed637165bce6ef027f32a2fa83bd8c65fb8c6b134f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cd2637f8c25ae45abc3d3a033cfb9d504b6dc7d8c5342f3b458b0da1f7cd55f9c8a4731aad50618613fbfca4c6a4882e1fd8e65ffb7b2312ec2822633765474
|
7
|
+
data.tar.gz: 37ea05610834bd71bf7abf95dadb3058d203de0c3e7c0c5592a05a4798f063cff039d77855d207f296f09fe9ac996cb51d56d2d0a1625a6be5aa1cd080eb3d74
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ This theme has two main nifty features, the use of [particles.js](https://vincen
|
|
21
21
|
|
22
22
|
I'm also using the powers of [ITCSS](https://github.com/ahmadajmi/awesome-itcss) and [BEM](http://getbem.com/introduction/) in an attempt to keep the SCSS as clean as possible. You may also notice that I'm trying to avoid the use of any libraries to keep things nice and simple. This also allows for greater learning opportunities.
|
23
23
|
|
24
|
-
The font I'm using is a favorite of mine,
|
24
|
+
The font I'm using is a favorite of mine, Watford. Also notice the fun use of colors on tags and each page, these are easily customizable by design and is detailed below.
|
25
25
|
|
26
26
|
## Installation
|
27
27
|
#### Jekyll requirements
|
@@ -13,7 +13,7 @@ nav {
|
|
13
13
|
margin: 0;
|
14
14
|
padding-top: 0.2em;
|
15
15
|
float: right;
|
16
|
-
font-family: "
|
16
|
+
font-family: "Watford Light";
|
17
17
|
}
|
18
18
|
& li {
|
19
19
|
display: inline;
|
@@ -24,7 +24,8 @@ nav {
|
|
24
24
|
|
25
25
|
.header__home {
|
26
26
|
float: left;
|
27
|
-
font-family: "
|
27
|
+
font-family: "Watford Bold Italic";
|
28
|
+
font-size: 18px;
|
28
29
|
text-decoration: none;
|
29
30
|
color: $white;
|
30
31
|
pointer-events: all;
|
@@ -35,6 +36,7 @@ nav {
|
|
35
36
|
}
|
36
37
|
|
37
38
|
.header__link {
|
39
|
+
font-size: 18px;
|
38
40
|
text-decoration: none;
|
39
41
|
color: $white;
|
40
42
|
transition: color 0.5s;
|
@@ -58,8 +60,8 @@ header.header__homepage {
|
|
58
60
|
padding-left: 4.5rem;
|
59
61
|
padding-right: 4.5rem;
|
60
62
|
text-align: center;
|
61
|
-
font-family: "
|
62
|
-
font-size:
|
63
|
+
font-family: "Watford Bold";
|
64
|
+
font-size: 3em;
|
63
65
|
color: $white;
|
64
66
|
}
|
65
67
|
|
@@ -13,9 +13,9 @@
|
|
13
13
|
|
14
14
|
.post-list__link {
|
15
15
|
text-decoration: none;
|
16
|
-
font-size:
|
16
|
+
font-size: 36px;
|
17
17
|
transition: color 0.5s;
|
18
|
-
font-family: "
|
18
|
+
font-family: "Watford Medium";
|
19
19
|
&:hover {
|
20
20
|
color: lighten($mine-shaft, $lighten--button);
|
21
21
|
}
|
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
@media all and (max-width: 800px) {
|
25
25
|
.post-list__link {
|
26
|
-
font-size:
|
26
|
+
font-size: 30px;
|
27
27
|
}
|
28
28
|
}
|
29
29
|
|
@@ -1,39 +1,109 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: "Operator Mono SSm-Bold";
|
3
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-Bold.otf");
|
3
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-Bold.otf");
|
4
4
|
}
|
5
5
|
|
6
6
|
@font-face {
|
7
7
|
font-family: "Operator Mono SSm-Bold Italic";
|
8
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-BoldItalic.otf");
|
8
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-BoldItalic.otf");
|
9
9
|
}
|
10
10
|
|
11
11
|
@font-face {
|
12
12
|
font-family: "Operator Mono SSm-Book";
|
13
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-Book.otf");
|
13
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-Book.otf");
|
14
14
|
}
|
15
15
|
|
16
16
|
@font-face {
|
17
17
|
font-family: "Operator Mono SSm-BookItalic";
|
18
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-BookItalic.otf");
|
18
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-BookItalic.otf");
|
19
19
|
}
|
20
20
|
|
21
21
|
@font-face {
|
22
22
|
font-family: "Operator Mono SSm-Light";
|
23
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-Light.otf");
|
23
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-Light.otf");
|
24
24
|
}
|
25
25
|
|
26
26
|
@font-face {
|
27
27
|
font-family: "Operator Mono SSm-LightItalic";
|
28
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-LightItalic.otf");
|
28
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-LightItalic.otf");
|
29
29
|
}
|
30
30
|
|
31
31
|
@font-face {
|
32
32
|
font-family: "Operator Mono SSm-Medium";
|
33
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-Medium.otf");
|
33
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-Medium.otf");
|
34
34
|
}
|
35
35
|
|
36
36
|
@font-face {
|
37
37
|
font-family: "Operator Mono SSm-MediumItalic";
|
38
|
-
src: url("../../../assets/fonts/OperatorMonoSSm-MediumItalic.otf");
|
38
|
+
src: url("../../../assets/fonts/Operator/OperatorMonoSSm-MediumItalic.otf");
|
39
39
|
}
|
40
|
+
|
41
|
+
@font-face {
|
42
|
+
font-family: "Watford Regular";
|
43
|
+
src: url("../../../assets/fonts/Watford/wotfard-regular-webfont.woff2");
|
44
|
+
}
|
45
|
+
|
46
|
+
@font-face {
|
47
|
+
font-family: "Watford Regular Italic";
|
48
|
+
src: url("../../../assets/fonts/Watford/wotfard-regularitalic-webfont.woff2");
|
49
|
+
}
|
50
|
+
|
51
|
+
@font-face {
|
52
|
+
font-family: "Watford Light";
|
53
|
+
src: url("../../../assets/fonts/Watford/wotfard-light-webfont.woff2");
|
54
|
+
}
|
55
|
+
|
56
|
+
@font-face {
|
57
|
+
font-family: "Watford Light Italic";
|
58
|
+
src: url("../../../assets/fonts/Watford/wotfard-lightitalic-webfont.woff2");
|
59
|
+
}
|
60
|
+
|
61
|
+
@font-face {
|
62
|
+
font-family: "Watford Extra Light";
|
63
|
+
src: url("../../../assets/fonts/Watford/wotfard-extralight-webfont.woff2");
|
64
|
+
}
|
65
|
+
|
66
|
+
@font-face {
|
67
|
+
font-family: "Watford Extra Light Italic";
|
68
|
+
src: url("../../../assets/fonts/Watford/wotfard-extralightitalic-webfont.woff2");
|
69
|
+
}
|
70
|
+
|
71
|
+
@font-face {
|
72
|
+
font-family: "Watford Bold";
|
73
|
+
src: url("../../../assets/fonts/Watford/wotfard-bold-webfont.woff2");
|
74
|
+
}
|
75
|
+
|
76
|
+
@font-face {
|
77
|
+
font-family: "Watford Bold Italic";
|
78
|
+
src: url("../../../assets/fonts/Watford/wotfard-bolditalic-webfont.woff2");
|
79
|
+
}
|
80
|
+
|
81
|
+
@font-face {
|
82
|
+
font-family: "Watford Medium";
|
83
|
+
src: url("../../../assets/fonts/Watford/wotfard-medium-webfont.woff2");
|
84
|
+
}
|
85
|
+
|
86
|
+
@font-face {
|
87
|
+
font-family: "Watford Medium Italic";
|
88
|
+
src: url("../../../assets/fonts/Watford/wotfard-mediumitalic-webfont.woff2");
|
89
|
+
}
|
90
|
+
|
91
|
+
@font-face {
|
92
|
+
font-family: "Watford Semibold";
|
93
|
+
src: url("../../../assets/fonts/Watford/wotfard-semibold-webfont.woff2");
|
94
|
+
}
|
95
|
+
|
96
|
+
@font-face {
|
97
|
+
font-family: "Watford Semibold Italic";
|
98
|
+
src: url("../../../assets/fonts/Watford/wotfard-semibolditalic-webfont.woff2");
|
99
|
+
}
|
100
|
+
|
101
|
+
@font-face {
|
102
|
+
font-family: "Watford Thin";
|
103
|
+
src: url("../../../assets/fonts/Watford/wotfard-thin-webfont.woff2");
|
104
|
+
}
|
105
|
+
|
106
|
+
@font-face {
|
107
|
+
font-family: "Watford Thin Italic";
|
108
|
+
src: url("../../../assets/fonts/Watford/wotfard-thinitalic-webfont.woff2");
|
109
|
+
}
|
@@ -1,219 +1,301 @@
|
|
1
1
|
/**
|
2
2
|
* Syntax highlighting styles
|
3
3
|
*/
|
4
|
+
|
5
|
+
.code span {
|
6
|
+
font-family: Operator Mono SSm-Medium;
|
7
|
+
}
|
4
8
|
|
5
9
|
.highlight {
|
6
10
|
display: flex;
|
7
11
|
margin-left: 0;
|
8
12
|
margin-right: 0;
|
13
|
+
font-family: Operator Mono SSm-Medium !important;
|
9
14
|
}
|
10
15
|
|
11
16
|
.highlight pre {
|
12
17
|
background-color: #272822;
|
13
18
|
padding: 1em;
|
14
19
|
white-space: pre-wrap;
|
20
|
+
font-family: Operator Mono SSm-Medium !important;
|
15
21
|
}
|
16
22
|
.highlight .hll {
|
23
|
+
font-family: Operator Mono SSm-Medium;
|
17
24
|
background-color: #272822;
|
18
25
|
}
|
19
26
|
.highlight .c {
|
27
|
+
font-family: Operator Mono SSm-Medium;
|
20
28
|
color: #75715e;
|
21
29
|
} /* Comment */
|
22
30
|
.highlight .err {
|
31
|
+
font-family: Operator Mono SSm-Medium;
|
23
32
|
color: #960050;
|
24
33
|
background-color: #1e0010;
|
25
34
|
} /* Error */
|
26
35
|
.highlight .k {
|
36
|
+
font-family: Operator Mono SSm-Medium;
|
27
37
|
color: #66d9ef;
|
28
38
|
} /* Keyword */
|
29
39
|
.highlight .l {
|
40
|
+
font-family: Operator Mono SSm-Medium;
|
30
41
|
color: #ae81ff;
|
31
42
|
} /* Literal */
|
32
43
|
.highlight .n {
|
44
|
+
font-family: Operator Mono SSm-Medium;
|
33
45
|
color: #f8f8f2;
|
34
46
|
} /* Name */
|
35
47
|
.highlight .o {
|
48
|
+
font-family: Operator Mono SSm-Medium;
|
36
49
|
color: #f92672;
|
37
50
|
} /* Operator */
|
38
51
|
.highlight .p {
|
52
|
+
font-family: Operator Mono SSm-Medium;
|
39
53
|
color: #f8f8f2;
|
40
54
|
} /* Punctuation */
|
41
55
|
.highlight .cm {
|
56
|
+
font-family: Operator Mono SSm-Medium;
|
42
57
|
color: #75715e;
|
43
58
|
} /* Comment.Multiline */
|
44
59
|
.highlight .cp {
|
60
|
+
font-family: Operator Mono SSm-Medium;
|
45
61
|
color: #75715e;
|
46
62
|
} /* Comment.Preproc */
|
47
63
|
.highlight .c1 {
|
64
|
+
font-family: Operator Mono SSm-Medium;
|
48
65
|
color: #75715e;
|
49
66
|
} /* Comment.Single */
|
50
67
|
.highlight .cs {
|
68
|
+
font-family: Operator Mono SSm-Medium;
|
51
69
|
color: #75715e;
|
52
70
|
} /* Comment.Special */
|
53
71
|
.highlight .ge {
|
72
|
+
font-family: Operator Mono SSm-Medium;
|
54
73
|
font-style: italic;
|
55
74
|
} /* Generic.Emph */
|
56
75
|
.highlight .gs {
|
76
|
+
font-family: Operator Mono SSm-Medium;
|
57
77
|
font-weight: bold;
|
58
78
|
} /* Generic.Strong */
|
59
79
|
.highlight .kc {
|
80
|
+
font-family: Operator Mono SSm-Medium;
|
60
81
|
color: #66d9ef;
|
61
82
|
} /* Keyword.Constant */
|
62
83
|
.highlight .kd {
|
84
|
+
font-family: Operator Mono SSm-Medium;
|
63
85
|
color: #66d9ef;
|
64
86
|
} /* Keyword.Declaration */
|
65
87
|
.highlight .kn {
|
88
|
+
font-family: Operator Mono SSm-Medium;
|
66
89
|
color: #f92672;
|
67
90
|
} /* Keyword.Namespace */
|
68
91
|
.highlight .kp {
|
92
|
+
font-family: Operator Mono SSm-Medium;
|
69
93
|
color: #66d9ef;
|
70
94
|
} /* Keyword.Pseudo */
|
71
95
|
.highlight .kr {
|
96
|
+
font-family: Operator Mono SSm-Medium;
|
72
97
|
color: #66d9ef;
|
73
98
|
} /* Keyword.Reserved */
|
74
99
|
.highlight .kt {
|
100
|
+
font-family: Operator Mono SSm-Medium;
|
75
101
|
color: #66d9ef;
|
76
102
|
} /* Keyword.Type */
|
77
103
|
.highlight .ld {
|
104
|
+
font-family: Operator Mono SSm-Medium;
|
78
105
|
color: #e6db74;
|
79
106
|
} /* Literal.Date */
|
80
107
|
.highlight .m {
|
108
|
+
font-family: Operator Mono SSm-Medium;
|
81
109
|
color: #ae81ff;
|
82
110
|
} /* Literal.Number */
|
83
111
|
.highlight .s {
|
112
|
+
font-family: Operator Mono SSm-Medium;
|
84
113
|
color: #e6db74;
|
85
114
|
} /* Literal.String */
|
86
115
|
.highlight .na {
|
116
|
+
font-family: Operator Mono SSm-Medium;
|
87
117
|
color: #a6e22e;
|
88
118
|
} /* Name.Attribute */
|
89
119
|
.highlight .nb {
|
120
|
+
font-family: Operator Mono SSm-Medium;
|
90
121
|
color: #f8f8f2;
|
91
122
|
} /* Name.Builtin */
|
92
123
|
.highlight .nc {
|
124
|
+
font-family: Operator Mono SSm-Medium;
|
93
125
|
color: #a6e22e;
|
94
126
|
} /* Name.Class */
|
95
127
|
.highlight .no {
|
128
|
+
font-family: Operator Mono SSm-Medium;
|
96
129
|
color: #66d9ef;
|
97
130
|
} /* Name.Constant */
|
98
131
|
.highlight .nd {
|
132
|
+
font-family: Operator Mono SSm-Medium;
|
99
133
|
color: #a6e22e;
|
100
134
|
} /* Name.Decorator */
|
101
135
|
.highlight .ni {
|
136
|
+
font-family: Operator Mono SSm-Medium;
|
102
137
|
color: #f8f8f2;
|
103
138
|
} /* Name.Entity */
|
104
139
|
.highlight .ne {
|
140
|
+
font-family: Operator Mono SSm-Medium;
|
105
141
|
color: #a6e22e;
|
106
142
|
} /* Name.Exception */
|
107
143
|
.highlight .nf {
|
144
|
+
font-family: Operator Mono SSm-Medium;
|
108
145
|
color: #a6e22e;
|
109
146
|
} /* Name.Function */
|
110
147
|
.highlight .nl {
|
148
|
+
font-family: Operator Mono SSm-Medium;
|
111
149
|
color: #f8f8f2;
|
112
150
|
} /* Name.Label */
|
113
151
|
.highlight .nn {
|
152
|
+
font-family: Operator Mono SSm-Medium;
|
114
153
|
color: #f8f8f2;
|
115
154
|
} /* Name.Namespace */
|
116
155
|
.highlight .nx {
|
156
|
+
font-family: Operator Mono SSm-Medium;
|
117
157
|
color: #a6e22e;
|
118
158
|
} /* Name.Other */
|
119
159
|
.highlight .py {
|
160
|
+
font-family: Operator Mono SSm-Medium;
|
120
161
|
color: #f8f8f2;
|
121
162
|
} /* Name.Property */
|
122
163
|
.highlight .nt {
|
164
|
+
font-family: Operator Mono SSm-Medium;
|
123
165
|
color: #f92672;
|
124
166
|
} /* Name.Tag */
|
125
167
|
.highlight .nv {
|
168
|
+
font-family: Operator Mono SSm-Medium;
|
126
169
|
color: #f8f8f2;
|
127
170
|
} /* Name.Variable */
|
128
171
|
.highlight .ow {
|
172
|
+
font-family: Operator Mono SSm-Medium;
|
129
173
|
color: #f92672;
|
130
174
|
} /* Operator.Word */
|
131
175
|
.highlight .w {
|
176
|
+
font-family: Operator Mono SSm-Medium;
|
132
177
|
color: #f8f8f2;
|
133
178
|
} /* Text.Whitespace */
|
134
179
|
.highlight .mf {
|
180
|
+
font-family: Operator Mono SSm-Medium;
|
135
181
|
color: #ae81ff;
|
136
182
|
} /* Literal.Number.Float */
|
137
183
|
.highlight .mh {
|
184
|
+
font-family: Operator Mono SSm-Medium;
|
138
185
|
color: #ae81ff;
|
139
186
|
} /* Literal.Number.Hex */
|
140
187
|
.highlight .mi {
|
188
|
+
font-family: Operator Mono SSm-Medium;
|
141
189
|
color: #ae81ff;
|
142
190
|
}
|
143
191
|
/* Literal.Number.Integer */
|
144
192
|
.highlight .mo {
|
193
|
+
font-family: Operator Mono SSm-Medium;
|
145
194
|
color: #ae81ff;
|
146
195
|
} /* Literal.Number.Oct */
|
147
196
|
.highlight .sb {
|
197
|
+
font-family: Operator Mono SSm-Medium;
|
148
198
|
color: #e6db74;
|
149
199
|
} /* Literal.String.Backtick */
|
150
200
|
.highlight .sc {
|
201
|
+
font-family: Operator Mono SSm-Medium;
|
151
202
|
color: #e6db74;
|
152
203
|
} /* Literal.String.Char */
|
153
204
|
.highlight .sd {
|
205
|
+
font-family: Operator Mono SSm-Medium;
|
154
206
|
color: #e6db74;
|
155
207
|
} /* Literal.String.Doc */
|
156
208
|
.highlight .s2 {
|
209
|
+
font-family: Operator Mono SSm-Medium;
|
157
210
|
color: #e6db74;
|
158
211
|
} /* Literal.String.Double */
|
159
212
|
.highlight .se {
|
213
|
+
font-family: Operator Mono SSm-Medium;
|
160
214
|
color: #ae81ff;
|
161
215
|
} /* Literal.String.Escape */
|
162
216
|
.highlight .sh {
|
217
|
+
font-family: Operator Mono SSm-Medium;
|
163
218
|
color: #e6db74;
|
164
219
|
} /* Literal.String.Heredoc */
|
165
220
|
.highlight .si {
|
221
|
+
font-family: Operator Mono SSm-Medium;
|
166
222
|
color: #e6db74;
|
167
223
|
} /* Literal.String.Interpol */
|
168
224
|
.highlight .sx {
|
225
|
+
font-family: Operator Mono SSm-Medium;
|
169
226
|
color: #e6db74;
|
170
227
|
} /* Literal.String.Other */
|
171
228
|
.highlight .sr {
|
229
|
+
font-family: Operator Mono SSm-Medium;
|
172
230
|
color: #e6db74;
|
173
231
|
} /* Literal.String.Regex */
|
174
232
|
.highlight .s1 {
|
233
|
+
font-family: Operator Mono SSm-Medium;
|
175
234
|
color: #e6db74;
|
176
235
|
} /* Literal.String.Single */
|
177
236
|
.highlight .ss {
|
237
|
+
font-family: Operator Mono SSm-Medium;
|
178
238
|
color: #e6db74;
|
179
239
|
} /* Literal.String.Symbol */
|
180
240
|
.highlight .bp {
|
241
|
+
font-family: Operator Mono SSm-Medium;
|
181
242
|
color: #f8f8f2;
|
182
243
|
} /* Name.Builtin.Pseudo */
|
183
244
|
.highlight .vc {
|
245
|
+
font-family: Operator Mono SSm-Medium;
|
184
246
|
color: #f8f8f2;
|
185
247
|
} /* Name.Variable.Class */
|
186
248
|
.highlight .vg {
|
249
|
+
font-family: Operator Mono SSm-Medium;
|
187
250
|
color: #f8f8f2;
|
188
251
|
} /* Name.Variable.Global */
|
189
252
|
.highlight .vi {
|
253
|
+
font-family: Operator Mono SSm-Medium;
|
190
254
|
color: #f8f8f2;
|
191
255
|
} /* Name.Variable.Instance */
|
192
256
|
.highlight .il {
|
257
|
+
font-family: Operator Mono SSm-Medium;
|
193
258
|
color: #ae81ff;
|
194
259
|
} /* Literal.Number.Integer.Long */
|
195
260
|
|
196
261
|
.highlight .gh {
|
262
|
+
font-family: Operator Mono SSm-Medium;
|
197
263
|
} /* Generic Heading & Diff Header */
|
198
264
|
.highlight .gu {
|
265
|
+
font-family: Operator Mono SSm-Medium;
|
199
266
|
color: #75715e;
|
200
267
|
} /* Generic.Subheading & Diff Unified/Comment? */
|
201
268
|
.highlight .gd {
|
269
|
+
font-family: Operator Mono SSm-Medium;
|
202
270
|
color: #f92672;
|
203
271
|
} /* Generic.Deleted & Diff Deleted */
|
204
272
|
.highlight .gi {
|
273
|
+
font-family: Operator Mono SSm-Medium;
|
205
274
|
color: #a6e22e;
|
206
275
|
} /* Generic.Inserted & Diff Inserted */
|
207
276
|
|
208
277
|
.highlight span.dl {
|
278
|
+
font-family: Operator Mono SSm-Medium;
|
209
279
|
color: #e6db74;
|
210
280
|
}
|
211
281
|
/* Colon */
|
212
282
|
.highlight .pi {
|
283
|
+
font-family: Operator Mono SSm-Medium;
|
213
284
|
color: #a6e22e;
|
214
285
|
}
|
215
286
|
|
216
287
|
.language-html {
|
288
|
+
font-family: Operator Mono SSm-Medium;
|
217
289
|
color: #a6e22e;
|
218
290
|
display: flex;
|
291
|
+
}
|
292
|
+
|
293
|
+
.highlighter-rouge {
|
294
|
+
font-family: Operator Mono SSm-Medium;
|
295
|
+
background-color: #f0f0f0;
|
296
|
+
}
|
297
|
+
|
298
|
+
.language-shell {
|
299
|
+
font-family: Operator Mono SSm-Medium;
|
300
|
+
color: white;
|
219
301
|
}
|
File without changes
|
data/assets/fonts/{OperatorMonoSSm-BoldItalic.otf → Operator/OperatorMonoSSm-BoldItalic.otf}
RENAMED
File without changes
|
File without changes
|
data/assets/fonts/{OperatorMonoSSm-BookItalic.otf → Operator/OperatorMonoSSm-BookItalic.otf}
RENAMED
File without changes
|
File without changes
|
data/assets/fonts/{OperatorMonoSSm-LightItalic.otf → Operator/OperatorMonoSSm-LightItalic.otf}
RENAMED
File without changes
|
File without changes
|
data/assets/fonts/{OperatorMonoSSm-MediumItalic.otf → Operator/OperatorMonoSSm-MediumItalic.otf}
RENAMED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-collider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Brown
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -129,14 +129,28 @@ files:
|
|
129
129
|
- _sass/jekyll-theme-collider/jekyll-theme-collider.scss
|
130
130
|
- _sass/jekyll-theme-collider/settings/_colors.scss
|
131
131
|
- assets/css/main.scss
|
132
|
-
- assets/fonts/OperatorMonoSSm-Bold.otf
|
133
|
-
- assets/fonts/OperatorMonoSSm-BoldItalic.otf
|
134
|
-
- assets/fonts/OperatorMonoSSm-Book.otf
|
135
|
-
- assets/fonts/OperatorMonoSSm-BookItalic.otf
|
136
|
-
- assets/fonts/OperatorMonoSSm-Light.otf
|
137
|
-
- assets/fonts/OperatorMonoSSm-LightItalic.otf
|
138
|
-
- assets/fonts/OperatorMonoSSm-Medium.otf
|
139
|
-
- assets/fonts/OperatorMonoSSm-MediumItalic.otf
|
132
|
+
- assets/fonts/Operator/OperatorMonoSSm-Bold.otf
|
133
|
+
- assets/fonts/Operator/OperatorMonoSSm-BoldItalic.otf
|
134
|
+
- assets/fonts/Operator/OperatorMonoSSm-Book.otf
|
135
|
+
- assets/fonts/Operator/OperatorMonoSSm-BookItalic.otf
|
136
|
+
- assets/fonts/Operator/OperatorMonoSSm-Light.otf
|
137
|
+
- assets/fonts/Operator/OperatorMonoSSm-LightItalic.otf
|
138
|
+
- assets/fonts/Operator/OperatorMonoSSm-Medium.otf
|
139
|
+
- assets/fonts/Operator/OperatorMonoSSm-MediumItalic.otf
|
140
|
+
- assets/fonts/Watford/wotfard-bold-webfont.woff2
|
141
|
+
- assets/fonts/Watford/wotfard-bolditalic-webfont.woff2
|
142
|
+
- assets/fonts/Watford/wotfard-extralight-webfont.woff2
|
143
|
+
- assets/fonts/Watford/wotfard-extralightitalic-webfont.woff2
|
144
|
+
- assets/fonts/Watford/wotfard-light-webfont.woff2
|
145
|
+
- assets/fonts/Watford/wotfard-lightitalic-webfont.woff2
|
146
|
+
- assets/fonts/Watford/wotfard-medium-webfont.woff2
|
147
|
+
- assets/fonts/Watford/wotfard-mediumitalic-webfont.woff2
|
148
|
+
- assets/fonts/Watford/wotfard-regular-webfont.woff2
|
149
|
+
- assets/fonts/Watford/wotfard-regularitalic-webfont.woff2
|
150
|
+
- assets/fonts/Watford/wotfard-semibold-webfont.woff2
|
151
|
+
- assets/fonts/Watford/wotfard-semibolditalic-webfont.woff2
|
152
|
+
- assets/fonts/Watford/wotfard-thin-webfont.woff2
|
153
|
+
- assets/fonts/Watford/wotfard-thinitalic-webfont.woff2
|
140
154
|
- assets/images/theme-image.png
|
141
155
|
- assets/js/app.js
|
142
156
|
- assets/js/particles.js
|