jekyll-theme-simplex-v2 0.9.8.15

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.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +240 -0
  4. data/_includes/footer.html +5 -0
  5. data/_includes/head.html +49 -0
  6. data/_includes/header.html +20 -0
  7. data/_includes/nav.html +30 -0
  8. data/_includes/scripts.html +3 -0
  9. data/_includes/snippet.html +38 -0
  10. data/_layouts/category.html +25 -0
  11. data/_layouts/default.html +20 -0
  12. data/_layouts/home.html +16 -0
  13. data/_layouts/page.html +7 -0
  14. data/_layouts/post.html +60 -0
  15. data/_sass/_feed.scss +173 -0
  16. data/_sass/_footer.scss +52 -0
  17. data/_sass/_global.scss +157 -0
  18. data/_sass/_header.scss +308 -0
  19. data/_sass/_index.scss +8 -0
  20. data/_sass/_mixins.scss +67 -0
  21. data/_sass/_page.scss +21 -0
  22. data/_sass/_post.scss +138 -0
  23. data/_sass/_variables.scss +290 -0
  24. data/assets/fonts/Roboto-Bold.ttf +0 -0
  25. data/assets/fonts/Roboto-Bold.woff +0 -0
  26. data/assets/fonts/Roboto-Bold.woff2 +0 -0
  27. data/assets/fonts/Roboto-Regular.ttf +0 -0
  28. data/assets/fonts/Roboto-Regular.woff +0 -0
  29. data/assets/fonts/Roboto-Regular.woff2 +0 -0
  30. data/assets/fonts/RobotoMono-Bold.ttf +0 -0
  31. data/assets/fonts/RobotoMono-Bold.woff +0 -0
  32. data/assets/fonts/RobotoMono-Bold.woff2 +0 -0
  33. data/assets/fonts/RobotoMono-Regular.ttf +0 -0
  34. data/assets/fonts/RobotoMono-Regular.woff +0 -0
  35. data/assets/fonts/RobotoMono-Regular.woff2 +0 -0
  36. data/assets/fonts/RobotoSlab-Bold.ttf +0 -0
  37. data/assets/fonts/RobotoSlab-Bold.woff +0 -0
  38. data/assets/fonts/RobotoSlab-Bold.woff2 +0 -0
  39. data/assets/fonts/RobotoSlab-Regular.ttf +0 -0
  40. data/assets/fonts/RobotoSlab-Regular.woff +0 -0
  41. data/assets/fonts/RobotoSlab-Regular.woff2 +0 -0
  42. data/assets/fonts/fonts.css +54 -0
  43. data/assets/img/icons/arrow_left.svg +1 -0
  44. data/assets/img/icons/arrow_right.svg +1 -0
  45. data/assets/img/icons/simplex_logo.svg +96 -0
  46. data/assets/js/jquery.slim.min.js +2 -0
  47. data/assets/js/lity.min.css +3 -0
  48. data/assets/js/lity.min.js +5 -0
  49. data/assets/js/tools.js +14 -0
  50. data/assets/style.scss +31 -0
  51. metadata +136 -0
@@ -0,0 +1,67 @@
1
+ // =============================
2
+ // mixins.scss
3
+ // =============================
4
+ // Useful functions.
5
+
6
+
7
+ // responsivity
8
+ // ===============================================
9
+ @mixin for-size($size, $width: 1000px) {
10
+
11
+ // ▼▼▼▼ DO NOT EDIT ▼▼▼▼
12
+ // by resolution
13
+ @if $size == 'hd-up' {
14
+ @media (min-width: 720px) { @content; }
15
+ } @else if $size == 'fhd-up' {
16
+ @media (min-width: 1080px) { @content; }
17
+ } @else if $size == 'qhd-up' {
18
+ @media (min-width: 1440px) { @content; }
19
+ } @else if $size == 'uhd-up' {
20
+ @media (min-width: 2160px) { @content; }
21
+ }
22
+
23
+ // by devices
24
+ @else if $size == 'tablet' {
25
+ @media (max-width: 768px) { @content; }
26
+ }
27
+ @else if $size == 'tablet-up' {
28
+ @media (min-width: 768px) { @content; }
29
+ }
30
+ @else if $size == 'desktop' {
31
+ @media (min-width: 769px) { @content; }
32
+ }
33
+
34
+ // custom natural breakpoints (project+element-specific)
35
+ @else if $size == 'bp-up'{
36
+ @media (min-width: $width) { @content; }
37
+ }
38
+
39
+ // custom natural breakpoints down (project+element-specific)
40
+ @else if $size == 'bp-down'{
41
+ @media (max-width: $width) { @content; }
42
+ }
43
+
44
+ // ▲▲▲▲ DO NOT EDIT ▲▲▲▲
45
+
46
+ // natural breakpoints (project-specific)
47
+ @else if $size == 'menu-width'{
48
+
49
+ @media (max-width: $s-menuWidth) { @content; }
50
+ }
51
+
52
+ @else if $size == 'menu-width-up'{
53
+
54
+ @media (min-width: $s-menuWidth) { @content; }
55
+ }
56
+ }
57
+
58
+ // flexbox
59
+ // ===============================================
60
+ @mixin flexbox($align: center, $justify: center, $direction: row){
61
+
62
+ display: flex;
63
+ align-items: $align;
64
+ justify-content: $justify;
65
+ flex-direction: $direction;
66
+ @content;
67
+ }
data/_sass/_page.scss ADDED
@@ -0,0 +1,21 @@
1
+ // =============================
2
+ // global.scss
3
+ // =============================
4
+ // Used for single page styles.
5
+
6
+ .page{
7
+
8
+ color: var(--c-pageText);
9
+ justify-self: center;
10
+ margin: 0 2rem;
11
+ max-width: 1000px;
12
+ @include flexbox{
13
+ flex-direction: column;
14
+ justify-content: flex-start;
15
+ align-items: center;
16
+ }
17
+
18
+ img{
19
+ max-width: 100%;
20
+ }
21
+ }
data/_sass/_post.scss ADDED
@@ -0,0 +1,138 @@
1
+ // =============================
2
+ // post.scss
3
+ // =============================
4
+ // Used for single post view.
5
+
6
+ .post{
7
+
8
+ justify-self: center;
9
+ margin: 0 2rem;
10
+ max-width: 1000px;
11
+ @include flexbox{
12
+ flex-direction: column;
13
+ justify-content: flex-start;
14
+ align-items: center;
15
+ }
16
+
17
+ &__title{
18
+
19
+ &__text{
20
+ text-align: center;
21
+ color: var(--c-postTitle);
22
+ margin-bottom: 0;
23
+ }
24
+ }
25
+
26
+ &__meta{
27
+
28
+ @include flexbox;
29
+ width: 100%;
30
+
31
+ &__divider{
32
+ color: var(--c-postText);
33
+ margin: 0 1rem;
34
+
35
+ @include for-size('tablet'){
36
+ display: none;
37
+ }
38
+ }
39
+
40
+ &__category{
41
+ text-transform: uppercase;
42
+ margin: 0;
43
+ @include flexbox;
44
+
45
+ &__title{
46
+ color: var(--c-noCategoryText);
47
+ background: var(--c-noCategoryBackground);
48
+ padding: .2rem .5rem;
49
+ }
50
+
51
+ @include for-size('tablet'){
52
+
53
+ display: none;
54
+ margin-top: 1rem;
55
+ p{
56
+ margin: 0;
57
+ width: 100%;
58
+ text-align: center;
59
+ }
60
+ flex-direction: column;
61
+ }
62
+ }
63
+
64
+ &__date{
65
+
66
+ color: var(--c-postText);
67
+ @include for-size('tablet'){
68
+ margin-top: .5rem;
69
+ }
70
+ }
71
+
72
+ &__author{
73
+
74
+ color: var(--c-postText);
75
+ width: fit-content;
76
+ @include flexbox;
77
+
78
+ &__photo{
79
+ margin: 0 1rem;
80
+ width: 2rem;
81
+ border-radius: 100%;
82
+ }
83
+ }
84
+
85
+ @include for-size('tablet'){
86
+ flex-direction: column;
87
+ }
88
+ }
89
+
90
+ &__content{
91
+
92
+ color: var(--c-postText);
93
+ h1{
94
+ font-size: 1.8rem;
95
+ }
96
+ img{
97
+ max-width: 100%;
98
+ }
99
+ }
100
+
101
+ &__navigator{
102
+
103
+ margin-top: 1rem;
104
+ width: 100%;
105
+
106
+ &__buttons{
107
+
108
+ @include flexbox{
109
+ justify-content: space-between;
110
+ };
111
+
112
+ a{
113
+ transition: $t-smooth;
114
+ text-decoration: none;
115
+ font-weight: bold;
116
+ font-size: 1.25rem;
117
+ color: var(--c-navigator);
118
+ filter: var(--c-navigatorFilter);
119
+
120
+ display: flex;
121
+ align-items: center;
122
+
123
+ &:hover{
124
+ letter-spacing: .25rem;
125
+ }
126
+
127
+ .arrow-left{
128
+ margin-right: .5rem;
129
+ height: 1em;
130
+ }
131
+ .arrow-right{
132
+ margin-left: .5rem;
133
+ height: 1em;
134
+ }
135
+ }
136
+ }
137
+ }
138
+ }
@@ -0,0 +1,290 @@
1
+ // =============================
2
+ // variables.scss
3
+ // =============================
4
+ // Contains all the useful variables for colors, sizes...
5
+
6
+ // THEME COLORS
7
+ :root{
8
+
9
+ --c-themePrimaryLight: #EFEFEF;
10
+ --c-themePrimaryDark: #101010;
11
+ --c-themeSecondaryLight: #DADADA;
12
+ --c-themeSecondaryDark: #252525;
13
+ --c-themeTerniaryLight: #AEAEAE;
14
+ --c-themeTerniaryDark: #515151;
15
+ --c-themeQuaternaryLight: #919191;
16
+ --c-themeQuaternaryDark: #888888;
17
+
18
+ --c-themeHueRed: #C02717;
19
+ --c-themeHueGreen: #8EA604;
20
+ --c-themeHueBlue: #2E86AB;
21
+ --c-themeHueOrange: #E59500;
22
+ --c-themeHuePurple: #9F00CE;
23
+ --c-themeHueBrown: #230007;
24
+ }
25
+
26
+ // ELEMENT COLORS
27
+ :root{
28
+
29
+ // *** Default light. ***
30
+ --c-articleHeading: var(--c-themePrimaryDark);
31
+ --c-articleParagraph: var(--c-themeSecondaryDark);
32
+ --c-articleBackground: var(--c-themePrimaryLight);
33
+
34
+ --c-pageBackground: var(--c-themePrimaryLight);
35
+
36
+ --c-headerImageFilter: none;
37
+ --c-menuLinks: var(--c-themePrimaryDark);
38
+ --c-menuDepth0: var(--c-themeSecondaryLight);
39
+ --c-menuItemsFilter: brightness(0);
40
+ --c-menuItemsFilterHover: none;
41
+ --c-menuShadow: rgba(0,0,0,0.5);
42
+
43
+ --c-snippetBackgroundExternal: rgba(239, 239, 239, 0.425);
44
+ --c-snippetBackgroundInternal: var(--c-pageBackground);
45
+ --c-snippetHeading: var(--c-themePrimaryDark);
46
+ --c-snippetDate: var(--c-themeSecondaryDark);
47
+ --c-snippetAuthor: var(--c-themePrimaryDark);
48
+ --c-snippetShadowHover: rgba(0,0,0,0.5);
49
+ --c-snippetShadow: rgba(0, 0, 0, 0);
50
+
51
+ --c-postTitle: var(--c-themePrimaryDark);
52
+ --c-postText: var(--c-themePrimaryDark);
53
+ --c-pageTitle: var(--c-themePrimaryDark);
54
+ --c-pageText: var(--c-themePrimaryDark);
55
+
56
+ --c-feed-title: var(--c-themePrimaryDark);
57
+
58
+ --c-link: var(--c-themeTerniaryDark);
59
+ --c-linkVisited: var(--c-themeQuaternaryDark);
60
+ --c-linkHover: var(--c-themePrimaryDark);
61
+ --c-linkActive: var(--c-themePrimaryDark);
62
+
63
+ --c-footerText: var(--c-themePrimaryDark);
64
+ --c-footerImageFilter: none;
65
+
66
+ --c-codeShadow: rgba(0, 0, 0, 0.5);
67
+ --c-codeShadowHover: rgba(0, 0, 0, 0.1);
68
+
69
+ --c-navigator: var(--c-themePrimaryDark);
70
+ --c-navigatorFilter: none;
71
+
72
+ --c-noCategoryBackground: var(--c-themePrimaryDark);
73
+ --c-noCategoryText: var(--c-themePrimaryLight);
74
+
75
+ --c-tableBorder: var(--c-themePrimaryDark);
76
+
77
+ --c-subtitle: var(--c-themeTerniaryDark);
78
+
79
+ //Syntax highlighting.
80
+ .highlight .hll { background-color: #ffffcc }
81
+ .highlight .c { color: #8f5902; font-style: italic } /* Comment */
82
+ .highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
83
+ .highlight .g { color: #000000 } /* Generic */
84
+ .highlight .k { color: #204a87; font-weight: bold } /* Keyword */
85
+ .highlight .l { color: #000000 } /* Literal */
86
+ .highlight .n { color: #000000 } /* Name */
87
+ .highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
88
+ .highlight .x { color: #000000 } /* Other */
89
+ .highlight .p { color: #000000; font-weight: bold } /* Punctuation */
90
+ .highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
91
+ .highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
92
+ .highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
93
+ .highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
94
+ .highlight .gd { color: #a40000 } /* Generic.Deleted */
95
+ .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
96
+ .highlight .gr { color: #ef2929 } /* Generic.Error */
97
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
98
+ .highlight .gi { color: #00A000 } /* Generic.Inserted */
99
+ .highlight .go { color: #000000; font-style: italic } /* Generic.Output */
100
+ .highlight .gp { color: #8f5902 } /* Generic.Prompt */
101
+ .highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
102
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
103
+ .highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
104
+ .highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
105
+ .highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
106
+ .highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
107
+ .highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
108
+ .highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
109
+ .highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
110
+ .highlight .ld { color: #000000 } /* Literal.Date */
111
+ .highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
112
+ .highlight .s { color: #4e9a06 } /* Literal.String */
113
+ .highlight .na { color: #c4a000 } /* Name.Attribute */
114
+ .highlight .nb { color: #204a87 } /* Name.Builtin */
115
+ .highlight .nc { color: #000000 } /* Name.Class */
116
+ .highlight .no { color: #000000 } /* Name.Constant */
117
+ .highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
118
+ .highlight .ni { color: #ce5c00 } /* Name.Entity */
119
+ .highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
120
+ .highlight .nf { color: #000000 } /* Name.Function */
121
+ .highlight .nl { color: #f57900 } /* Name.Label */
122
+ .highlight .nn { color: #000000 } /* Name.Namespace */
123
+ .highlight .nx { color: #000000 } /* Name.Other */
124
+ .highlight .py { color: #000000 } /* Name.Property */
125
+ .highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
126
+ .highlight .nv { color: #000000 } /* Name.Variable */
127
+ .highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
128
+ .highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
129
+ .highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
130
+ .highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
131
+ .highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
132
+ .highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
133
+ .highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
134
+ .highlight .sc { color: #4e9a06 } /* Literal.String.Char */
135
+ .highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
136
+ .highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
137
+ .highlight .se { color: #4e9a06 } /* Literal.String.Escape */
138
+ .highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
139
+ .highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
140
+ .highlight .sx { color: #4e9a06 } /* Literal.String.Other */
141
+ .highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
142
+ .highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
143
+ .highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
144
+ .highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
145
+ .highlight .vc { color: #000000 } /* Name.Variable.Class */
146
+ .highlight .vg { color: #000000 } /* Name.Variable.Global */
147
+ .highlight .vi { color: #000000 } /* Name.Variable.Instance */
148
+ .highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
149
+
150
+
151
+ // *** Dark mode ***
152
+ @media (prefers-color-scheme: dark){
153
+
154
+ --c-headerImageFilter: invert(1);
155
+ --c-menuLinks: var(--c-themePrimaryLight);
156
+ --c-menuDepth0: var(--c-themeSecondaryLight);
157
+ --c-menuItemsFilter: none;
158
+ --c-menuItemsFilterHover: brightness(100);
159
+ --c-menuShadow: rgba(255, 255, 255, 0.2);
160
+
161
+ --c-articleHeading: var(--c-themePrimaryLight);
162
+ --c-articleParagraph: var(--c-themeSecondaryLight);
163
+ --c-articleBackground: var(--c-themePrimaryDark);
164
+
165
+ --c-snippetHeading: var(--c-themePrimaryLight);
166
+ --c-snippetDate: var(--c-themeSecondaryLight);
167
+ --c-snippetAuthor: var(--c-themePrimaryLight);
168
+
169
+ --c-snippetShadowHover: rgba(255, 255, 255, 0.5);
170
+ --c-snippetShadow: rgba(0, 0, 0, 0);
171
+
172
+ --c-postTitle: var(--c-themePrimaryLight);
173
+ --c-postText: var(--c-themePrimaryLight);
174
+ --c-pageTitle: var(--c-themePrimaryLight);
175
+ --c-pageText: var(--c-themePrimaryLight);
176
+
177
+ --c-feed-title: var(--c-themePrimaryLight);
178
+
179
+ --c-pageBackground: var(--c-themePrimaryDark);
180
+
181
+ --c-link: var(--c-themeTerniaryLight);
182
+ --c-linkVisited: var(--c-themeQuaternaryLight);
183
+ --c-linkHover: var(--c-themePrimaryLight);
184
+ --c-linkActive: var(--c-themePrimaryLight);
185
+
186
+ --c-footerText: var(--c-themePrimaryLight);
187
+ --c-footerImageFilter: invert(1);
188
+
189
+ --c-codeShadow: rgba(0, 0, 0, 0);
190
+ --c-codeShadowHover: rgba(0, 0, 0, 0);
191
+
192
+ --c-navigator: var(--c-themePrimaryDark);
193
+ --c-navigatorFilter: invert(1);
194
+
195
+ --c-noCategoryBackground: var(--c-themePrimaryLight);
196
+ --c-noCategoryText: var(--c-themePrimaryDark);
197
+
198
+ --c-tableBorder: var(--c-themePrimaryLight);
199
+
200
+ --c-subtitle: var(--c-themeTerniaryLight);
201
+
202
+ //Syntax highlighting.
203
+ .highlight pre { background-color: #272822; }
204
+ .highlight .hll { background-color: #272822; }
205
+ .highlight .c { color: #75715e } /* Comment */
206
+ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */
207
+ .highlight .k { color: #66d9ef } /* Keyword */
208
+ .highlight .l { color: #ae81ff } /* Literal */
209
+ .highlight .n { color: #f8f8f2 } /* Name */
210
+ .highlight .o { color: #f92672 } /* Operator */
211
+ .highlight .p { color: #f8f8f2 } /* Punctuation */
212
+ .highlight .cm { color: #75715e } /* Comment.Multiline */
213
+ .highlight .cp { color: #75715e } /* Comment.Preproc */
214
+ .highlight .c1 { color: #75715e } /* Comment.Single */
215
+ .highlight .cs { color: #75715e } /* Comment.Special */
216
+ .highlight .ge { font-style: italic } /* Generic.Emph */
217
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
218
+ .highlight .kc { color: #66d9ef } /* Keyword.Constant */
219
+ .highlight .kd { color: #66d9ef } /* Keyword.Declaration */
220
+ .highlight .kn { color: #f92672 } /* Keyword.Namespace */
221
+ .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
222
+ .highlight .kr { color: #66d9ef } /* Keyword.Reserved */
223
+ .highlight .kt { color: #66d9ef } /* Keyword.Type */
224
+ .highlight .ld { color: #e6db74 } /* Literal.Date */
225
+ .highlight .m { color: #ae81ff } /* Literal.Number */
226
+ .highlight .s { color: #e6db74 } /* Literal.String */
227
+ .highlight .na { color: #a6e22e } /* Name.Attribute */
228
+ .highlight .nb { color: #f8f8f2 } /* Name.Builtin */
229
+ .highlight .nc { color: #a6e22e } /* Name.Class */
230
+ .highlight .no { color: #66d9ef } /* Name.Constant */
231
+ .highlight .nd { color: #a6e22e } /* Name.Decorator */
232
+ .highlight .ni { color: #f8f8f2 } /* Name.Entity */
233
+ .highlight .ne { color: #a6e22e } /* Name.Exception */
234
+ .highlight .nf { color: #a6e22e } /* Name.Function */
235
+ .highlight .nl { color: #f8f8f2 } /* Name.Label */
236
+ .highlight .nn { color: #f8f8f2 } /* Name.Namespace */
237
+ .highlight .nx { color: #a6e22e } /* Name.Other */
238
+ .highlight .py { color: #f8f8f2 } /* Name.Property */
239
+ .highlight .nt { color: #f92672 } /* Name.Tag */
240
+ .highlight .nv { color: #f8f8f2 } /* Name.Variable */
241
+ .highlight .ow { color: #f92672 } /* Operator.Word */
242
+ .highlight .w { color: #f8f8f2 } /* Text.Whitespace */
243
+ .highlight .mf { color: #ae81ff } /* Literal.Number.Float */
244
+ .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
245
+ .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
246
+ .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
247
+ .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
248
+ .highlight .sc { color: #e6db74 } /* Literal.String.Char */
249
+ .highlight .sd { color: #e6db74 } /* Literal.String.Doc */
250
+ .highlight .s2 { color: #e6db74 } /* Literal.String.Double */
251
+ .highlight .se { color: #ae81ff } /* Literal.String.Escape */
252
+ .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
253
+ .highlight .si { color: #e6db74 } /* Literal.String.Interpol */
254
+ .highlight .sx { color: #e6db74 } /* Literal.String.Other */
255
+ .highlight .sr { color: #e6db74 } /* Literal.String.Regex */
256
+ .highlight .s1 { color: #e6db74 } /* Literal.String.Single */
257
+ .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
258
+ .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
259
+ .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
260
+ .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
261
+ .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
262
+ .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
263
+
264
+ //.highlight .gh { } /* Generic Heading & Diff Header */
265
+ .highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
266
+ .highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
267
+ .highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
268
+ }
269
+ }
270
+
271
+ // SIZES
272
+ :root{
273
+
274
+ --s-p: 1rem;
275
+ }
276
+
277
+ // FONTS
278
+ :root{
279
+
280
+ --f-header: Roboto;
281
+ --f-text: Roboto Slab;
282
+ }
283
+
284
+ // FIXED SIZES
285
+ $s-menuItemWidth: 8rem;
286
+ $s-menuItemPadding: 1rem;
287
+ $s-m-menuMaxHeight: 1000px;
288
+
289
+ // TRANSITIONS
290
+ $t-smooth: ease .5s;
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
@@ -0,0 +1,54 @@
1
+ @font-face {
2
+ font-family: 'Roboto Slab';
3
+ src: url('RobotoSlab-Bold.woff2') format('woff2'),
4
+ url('RobotoSlab-Bold.woff') format('woff'),
5
+ url('RobotoSlab-Bold.ttf') format('truetype');
6
+ font-weight: bold;
7
+ font-style: normal;
8
+ }
9
+
10
+ @font-face {
11
+ font-family: 'Roboto Mono';
12
+ src: url('RobotoMono-Bold.woff2') format('woff2'),
13
+ url('RobotoMono-Bold.woff') format('woff'),
14
+ url('RobotoMono-Bold.ttf') format('truetype');
15
+ font-weight: bold;
16
+ font-style: normal;
17
+ }
18
+
19
+ @font-face {
20
+ font-family: 'Roboto Slab';
21
+ src: url('RobotoSlab-Regular.woff2') format('woff2'),
22
+ url('RobotoSlab-Regular.woff') format('woff'),
23
+ url('RobotoSlab-Regular.ttf') format('truetype');
24
+ font-weight: normal;
25
+ font-style: normal;
26
+ }
27
+
28
+ @font-face {
29
+ font-family: 'Roboto';
30
+ src: url('Roboto-Regular.woff2') format('woff2'),
31
+ url('Roboto-Regular.woff') format('woff'),
32
+ url('Roboto-Regular.ttf') format('truetype');
33
+ font-weight: normal;
34
+ font-style: normal;
35
+ }
36
+
37
+ @font-face {
38
+ font-family: 'Roboto';
39
+ src: url('Roboto-Bold.woff2') format('woff2'),
40
+ url('Roboto-Bold.woff') format('woff'),
41
+ url('Roboto-Bold.ttf') format('truetype');
42
+ font-weight: bold;
43
+ font-style: normal;
44
+ }
45
+
46
+ @font-face {
47
+ font-family: 'Roboto Mono';
48
+ src: url('RobotoMono-Regular.woff2') format('woff2'),
49
+ url('RobotoMono-Regular.woff') format('woff'),
50
+ url('RobotoMono-Regular.ttf') format('truetype');
51
+ font-weight: normal;
52
+ font-style: normal;
53
+ }
54
+
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><polygon points="368 64 144 256 368 448 368 64"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><polygon points="144 448 368 256 144 64 144 448"/></svg>