dedovic-2021 0.1.0 → 0.2.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 +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/codeHeader.html +3 -0
- data/_includes/footer.html +47 -0
- data/_includes/head.html +33 -0
- data/_includes/sidebar.html +0 -0
- data/_layouts/about.html +17 -0
- data/_layouts/art.html +19 -0
- data/_layouts/default.html +20 -0
- data/_layouts/landing.html +42 -0
- data/_layouts/page.html +11 -0
- data/_layouts/post.html +34 -0
- data/_layouts/recipe.html +40 -0
- data/_layouts/recipes.html +90 -0
- data/_layouts/writing.html +90 -0
- data/_sass/includes/_buttons.scss +58 -0
- data/_sass/includes/_cards.scss +15 -0
- data/_sass/includes/_colors.scss +14 -0
- data/_sass/includes/_grid.scss +915 -0
- data/_sass/includes/_icons.scss +49 -0
- data/_sass/includes/_syntax.scss +84 -0
- data/_sass/includes/_typography.scss +89 -0
- data/_sass/main.scss +201 -0
- data/assets/fonts/icons.eot +0 -0
- data/assets/fonts/icons.svg +17 -0
- data/assets/fonts/icons.ttf +0 -0
- data/assets/fonts/icons.woff +0 -0
- data/assets/fonts/optima-webfont.woff +0 -0
- data/assets/fonts/optima-webfont.woff2 +0 -0
- data/assets/fonts/optima_b-webfont.woff +0 -0
- data/assets/fonts/optima_b-webfont.woff2 +0 -0
- data/assets/img/banana-bread.jpg +0 -0
- metadata +35 -17
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'icons';
|
|
3
|
+
src: url('../../assets/fonts/icons.eot?3xfjp9');
|
|
4
|
+
src: url('../../assets/fonts/icons.eot?3xfjp9#iefix') format('embedded-opentype'),
|
|
5
|
+
url('../../assets/fonts/icons.ttf?3xfjp9') format('truetype'),
|
|
6
|
+
url('../../assets/fonts/icons.woff?3xfjp9') format('woff'),
|
|
7
|
+
url('../../assets/fonts/icons.svg?3xfjp9#icomoon') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class^="icon-"], [class*=" icon-"] {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'icons' !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-check:before {
|
|
29
|
+
content: "\e906";
|
|
30
|
+
}
|
|
31
|
+
.icon-chevrons-right:before {
|
|
32
|
+
content: "\e904";
|
|
33
|
+
}
|
|
34
|
+
.icon-chevrons-left:before {
|
|
35
|
+
content: "\e905";
|
|
36
|
+
}
|
|
37
|
+
.icon-copy:before {
|
|
38
|
+
content: "\e903";
|
|
39
|
+
}
|
|
40
|
+
.icon-list:before {
|
|
41
|
+
content: "\e900";
|
|
42
|
+
}
|
|
43
|
+
.icon-grid:before {
|
|
44
|
+
content: "\e901";
|
|
45
|
+
}
|
|
46
|
+
.icon-arrow:before {
|
|
47
|
+
content: "\e902";
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
.highlight .hll { background-color: $black }
|
|
2
|
+
.highlight { background: $black; color: $grey }
|
|
3
|
+
.highlight .c { color: $green } /* Comment */
|
|
4
|
+
.highlight .err { color: $grey; border: 1px solid $red } /* Error */
|
|
5
|
+
.highlight .esc { color: $grey } /* Escape */
|
|
6
|
+
.highlight .g { color: $grey } /* Generic */
|
|
7
|
+
.highlight .k { color: $yellow } /* Keyword */
|
|
8
|
+
.highlight .l { color: $grey } /* Literal */
|
|
9
|
+
.highlight .n { color: $grey } /* Name */
|
|
10
|
+
.highlight .o { color: $white } /* Operator */
|
|
11
|
+
.highlight .x { color: $grey } /* Other */
|
|
12
|
+
.highlight .p { color: $grey } /* Punctuation */
|
|
13
|
+
.highlight .ch { color: $green } /* Comment.Hashbang */
|
|
14
|
+
.highlight .cm { color: $green } /* Comment.Multiline */
|
|
15
|
+
.highlight .cp { color: $green } /* Comment.Preproc */
|
|
16
|
+
.highlight .cpf { color: $green } /* Comment.PreprocFile */
|
|
17
|
+
.highlight .c1 { color: $green } /* Comment.Single */
|
|
18
|
+
.highlight .cs { color: $red; font-weight: bold } /* Comment.Special */
|
|
19
|
+
.highlight .gd { color: $red } /* Generic.Deleted */
|
|
20
|
+
.highlight .ge { color: $grey; font-style: italic } /* Generic.Emph */
|
|
21
|
+
.highlight .gr { color: $red } /* Generic.Error */
|
|
22
|
+
.highlight .gh { color: $green; font-weight: bold } /* Generic.Heading */
|
|
23
|
+
.highlight .gi { color: $liteGreen } /* Generic.Inserted */
|
|
24
|
+
.highlight .go { color: $grey } /* Generic.Output */
|
|
25
|
+
.highlight .gp { color: $green; font-weight: bold } /* Generic.Prompt */
|
|
26
|
+
.highlight .gs { color: $grey; font-weight: bold } /* Generic.Strong */
|
|
27
|
+
.highlight .gu { color: $green; font-weight: bold } /* Generic.Subheading */
|
|
28
|
+
.highlight .gt { color: $green } /* Generic.Traceback */
|
|
29
|
+
.highlight .kc { color: $yellow } /* Keyword.Constant */
|
|
30
|
+
.highlight .kd { color: $liteGreen } /* Keyword.Declaration */
|
|
31
|
+
.highlight .kn { color: $purple } /* Keyword.Namespace */
|
|
32
|
+
.highlight .kp { color: $yellow } /* Keyword.Pseudo */
|
|
33
|
+
.highlight .kr { color: $yellow } /* Keyword.Reserved */
|
|
34
|
+
.highlight .kt { color: $liteGreen } /* Keyword.Type */
|
|
35
|
+
.highlight .ld { color: $grey } /* Literal.Date */
|
|
36
|
+
.highlight .m { color: $purple } /* Literal.Number */
|
|
37
|
+
.highlight .s { color: $red } /* Literal.String */
|
|
38
|
+
.highlight .na { color: $grey } /* Name.Attribute */
|
|
39
|
+
.highlight .nb { color: $purple } /* Name.Builtin */
|
|
40
|
+
.highlight .nc { color: $aqua } /* Name.Class */
|
|
41
|
+
.highlight .no { color: $grey } /* Name.Constant */
|
|
42
|
+
.highlight .nd { color: $grey } /* Name.Decorator */
|
|
43
|
+
.highlight .ni { color: $grey } /* Name.Entity */
|
|
44
|
+
.highlight .ne { color: $green; font-weight: bold } /* Name.Exception */
|
|
45
|
+
.highlight .nf { color: $grey } /* Name.Function */
|
|
46
|
+
.highlight .nl { color: $grey } /* Name.Label */
|
|
47
|
+
.highlight .nn { color: $grey } /* Name.Namespace */
|
|
48
|
+
.highlight .nx { color: $grey } /* Name.Other */
|
|
49
|
+
.highlight .py { color: $grey } /* Name.Property */
|
|
50
|
+
.highlight .nt { color: $grey } /* Name.Tag */
|
|
51
|
+
.highlight .nv { color: $aqua } /* Name.Variable */
|
|
52
|
+
.highlight .ow { color: $liteGreen } /* Operator.Word */
|
|
53
|
+
.highlight .w { color: $grey } /* Text.Whitespace */
|
|
54
|
+
.highlight .mb { color: $purple } /* Literal.Number.Bin */
|
|
55
|
+
.highlight .mf { color: $purple } /* Literal.Number.Float */
|
|
56
|
+
.highlight .mh { color: $purple } /* Literal.Number.Hex */
|
|
57
|
+
.highlight .mi { color: $purple } /* Literal.Number.Integer */
|
|
58
|
+
.highlight .mo { color: $purple } /* Literal.Number.Oct */
|
|
59
|
+
.highlight .sa { color: $red } /* Literal.String.Affix */
|
|
60
|
+
.highlight .sb { color: $red } /* Literal.String.Backtick */
|
|
61
|
+
.highlight .sc { color: $red } /* Literal.String.Char */
|
|
62
|
+
.highlight .dl { color: $red } /* Literal.String.Delimiter */
|
|
63
|
+
.highlight .sd { color: $red } /* Literal.String.Doc */
|
|
64
|
+
.highlight .s2 { color: $red } /* Literal.String.Double */
|
|
65
|
+
.highlight .se { color: $red } /* Literal.String.Escape */
|
|
66
|
+
.highlight .sh { color: $red } /* Literal.String.Heredoc */
|
|
67
|
+
.highlight .si { color: $red } /* Literal.String.Interpol */
|
|
68
|
+
.highlight .sx { color: $red } /* Literal.String.Other */
|
|
69
|
+
.highlight .sr { color: $red } /* Literal.String.Regex */
|
|
70
|
+
.highlight .s1 { color: $red } /* Literal.String.Single */
|
|
71
|
+
.highlight .ss { color: $red } /* Literal.String.Symbol */
|
|
72
|
+
.highlight .bp { color: $purple } /* Name.Builtin.Pseudo */
|
|
73
|
+
.highlight .fm { color: $grey } /* Name.Function.Magic */
|
|
74
|
+
.highlight .vc { color: $aqua } /* Name.Variable.Class */
|
|
75
|
+
.highlight .vg { color: $aqua } /* Name.Variable.Global */
|
|
76
|
+
.highlight .vi { color: $aqua } /* Name.Variable.Instance */
|
|
77
|
+
.highlight .vm { color: $aqua } /* Name.Variable.Magic */
|
|
78
|
+
.highlight .il { color: $purple } /* Literal.Number.Integer.Long */
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
.highlight {
|
|
82
|
+
padding: .5rem;
|
|
83
|
+
border-radius: 4px;
|
|
84
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Source+Code+Pro&display=swap');
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: 'Optima';
|
|
5
|
+
src: url('../../assets/fonts/optima-webfont.woff2') format('woff2'),
|
|
6
|
+
url('../../assets/fonts/optima-webfont.woff') format('woff');
|
|
7
|
+
font-weight: normal;
|
|
8
|
+
font-style: normal;
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Optima';
|
|
14
|
+
src: url('../../assets/fonts/optima_b-webfont.woff2') format('woff2'),
|
|
15
|
+
url('../../assets/fonts/optima_b-webfont.woff') format('woff');
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
html {
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
font-family: 'Open Sans', sans-serif;
|
|
24
|
+
font-weight: 300;
|
|
25
|
+
color: $black;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
h1, h2, h3 {
|
|
29
|
+
font-family: 'Optima', sans-serif;
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h4, h5, h6 {
|
|
34
|
+
font-family: 'Open Sans', sans-serif;
|
|
35
|
+
font-weight: bold;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
h1 {
|
|
39
|
+
font-size: 4rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
h2 {
|
|
43
|
+
font-size: 3.2rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
h3 {
|
|
47
|
+
font-size: 2.6rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h4 {
|
|
51
|
+
font-size: 1.8rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
h5 {
|
|
55
|
+
font-size: 1.4rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
h6 {
|
|
59
|
+
font-size: 1.2rem;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
a {
|
|
63
|
+
color: $red;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
text-decoration: underline;
|
|
66
|
+
|
|
67
|
+
&.read-more {
|
|
68
|
+
text-transform: uppercase;
|
|
69
|
+
color: $black;
|
|
70
|
+
font-weight: 300;
|
|
71
|
+
text-decoration: none;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
ul {
|
|
76
|
+
list-style-type: none;
|
|
77
|
+
margin: 0;
|
|
78
|
+
padding: 0;
|
|
79
|
+
li {
|
|
80
|
+
padding: 0;
|
|
81
|
+
&:after {
|
|
82
|
+
|
|
83
|
+
}
|
|
84
|
+
&:last-child:after {
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
|
data/_sass/main.scss
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
// Import partials.
|
|
4
|
+
@import
|
|
5
|
+
"includes/colors",
|
|
6
|
+
"includes/grid",
|
|
7
|
+
"includes/typography",
|
|
8
|
+
"includes/icons",
|
|
9
|
+
"includes/buttons",
|
|
10
|
+
"includes/cards",
|
|
11
|
+
"includes/syntax"
|
|
12
|
+
;
|
|
13
|
+
|
|
14
|
+
html {
|
|
15
|
+
background-color: $white;
|
|
16
|
+
&.layout-art {
|
|
17
|
+
background-color: $liteGreen;
|
|
18
|
+
}
|
|
19
|
+
&.layout-recipes, &.layout-recipe {
|
|
20
|
+
background-color: $orange;
|
|
21
|
+
}
|
|
22
|
+
&.layout-about {
|
|
23
|
+
background-color: $liteAqua;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
body {
|
|
28
|
+
margin: 2rem 0 160px 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
footer {
|
|
32
|
+
position: fixed;
|
|
33
|
+
bottom: 1rem;
|
|
34
|
+
width: 100%;
|
|
35
|
+
|
|
36
|
+
.site-nav, .site-info {
|
|
37
|
+
border: 1px solid $black;
|
|
38
|
+
background-color: $white;
|
|
39
|
+
width: calc(100% - 2rem);
|
|
40
|
+
margin: 0 auto;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.site-info {
|
|
44
|
+
font-style: italic;
|
|
45
|
+
font-size: .8rem;
|
|
46
|
+
p {
|
|
47
|
+
margin: .5rem;
|
|
48
|
+
text-align: right;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.site-nav {
|
|
53
|
+
display: flex;
|
|
54
|
+
flex-wrap: wrap;
|
|
55
|
+
justify-content: space-between;
|
|
56
|
+
margin-bottom: 1rem;
|
|
57
|
+
align-items: center;
|
|
58
|
+
line-height: 2rem;
|
|
59
|
+
.icon {
|
|
60
|
+
font-size: 2rem;
|
|
61
|
+
padding: .6rem .5rem;
|
|
62
|
+
}
|
|
63
|
+
.trigger {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-wrap: wrap;
|
|
66
|
+
justify-content: space-evenly;
|
|
67
|
+
align-items: center;
|
|
68
|
+
justify-content: center;
|
|
69
|
+
.page-link {
|
|
70
|
+
font-family: 'Optima', sans-serif;
|
|
71
|
+
color: $black;
|
|
72
|
+
font-weight: 400;
|
|
73
|
+
text-decoration: none;
|
|
74
|
+
font-size: 1.2rem;
|
|
75
|
+
margin: 0;
|
|
76
|
+
padding: 1rem;
|
|
77
|
+
&.active {
|
|
78
|
+
font-size: 1.6rem;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.layout-recipe, .layout-recipes {
|
|
89
|
+
.page-link.active {
|
|
90
|
+
background-color: $yellow;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.layout-art, .layout-post, .layout-writing, .layout-about {
|
|
95
|
+
.page-link.active {
|
|
96
|
+
background-color: $aqua;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
// RECIPES & WRITING
|
|
102
|
+
|
|
103
|
+
.recipe-wrapper {
|
|
104
|
+
border: 1px solid $black;
|
|
105
|
+
background-color: $white;
|
|
106
|
+
border-radius: 4px 40px 4px 4px;
|
|
107
|
+
.recipe {
|
|
108
|
+
margin-right: 6rem;
|
|
109
|
+
margin-bottom: 4rem;
|
|
110
|
+
|
|
111
|
+
img {
|
|
112
|
+
width: 100%;
|
|
113
|
+
height: auto;
|
|
114
|
+
margin: 1rem 0;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.layout-recipe, .layout-recipes {
|
|
120
|
+
.post-title, .page-heading {
|
|
121
|
+
text-shadow: 3px 3px $yellow;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
h1 {
|
|
127
|
+
margin: 2rem 0 1rem 0;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
.post-title {
|
|
132
|
+
margin: 0 0 1rem 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
.post-header {
|
|
137
|
+
margin-top: 2rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.tag-list {
|
|
141
|
+
text-transform: uppercase;
|
|
142
|
+
font-weight: bold;
|
|
143
|
+
li {
|
|
144
|
+
display: inline;
|
|
145
|
+
margin: 0 1rem 0 0;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.filter-menu {
|
|
150
|
+
padding: 0;
|
|
151
|
+
|
|
152
|
+
label {
|
|
153
|
+
text-transform: uppercase;
|
|
154
|
+
font-weight: bold;
|
|
155
|
+
}
|
|
156
|
+
ul {
|
|
157
|
+
line-height: 4rem;
|
|
158
|
+
li {
|
|
159
|
+
display: inline;
|
|
160
|
+
border: 1px solid $black;
|
|
161
|
+
background-color: $white;
|
|
162
|
+
border-radius: 4px 40px 4px 4px;
|
|
163
|
+
width: fit-content;
|
|
164
|
+
padding: .5rem 2rem .5rem 1rem;
|
|
165
|
+
margin-right: 1rem;
|
|
166
|
+
text-transform: uppercase;
|
|
167
|
+
font-weight: bold;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.card-grid {
|
|
174
|
+
.post-link {
|
|
175
|
+
text-decoration: none;
|
|
176
|
+
color: $black;
|
|
177
|
+
font-weight: normal;
|
|
178
|
+
h3 {
|
|
179
|
+
|
|
180
|
+
margin: .5rem 0;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
.thumbnail {
|
|
184
|
+
margin-bottom: .5rem;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.layout-recipes .card-grid .post-link h3 {
|
|
189
|
+
text-shadow: 3px 3px $yellow;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.layout-writing .card-grid .post-link h3 {
|
|
193
|
+
text-shadow: 3px 3px $aqua;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.layout-post, .layout-art, .layout-writing, .layout-about {
|
|
197
|
+
.post-title, .page-heading {
|
|
198
|
+
text-shadow: 3px 3px $aqua;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
+
<defs>
|
|
6
|
+
<font id="icomoon" horiz-adv-x="1024">
|
|
7
|
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
+
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
+
<glyph unicode="" glyph-name="list" d="M436.224 578.048c107.52 0 214.016 0 321.536 0 34.816 0 34.816 53.248 0 53.248-107.52 0-214.016 0-321.536 0-33.792 0-33.792-53.248 0-53.248zM344.064 604.672c0-21.491-17.421-38.912-38.912-38.912s-38.912 17.421-38.912 38.912c0 21.491 17.421 38.912 38.912 38.912s38.912-17.421 38.912-38.912zM757.76 484.864c-107.52 0-214.016 0-321.536 0-34.816 0-34.816-53.248 0-53.248 107.52 0 214.016 0 321.536 0 34.816 0 34.816 53.248 0 53.248zM344.064 458.24c0-21.491-17.421-38.912-38.912-38.912s-38.912 17.421-38.912 38.912c0 21.491 17.421 38.912 38.912 38.912s38.912-17.421 38.912-38.912zM757.76 338.432c-107.52 0-214.016 0-321.536 0-34.816 0-34.816-53.248 0-53.248 107.52 0 214.016 0 321.536 0 34.816 0 34.816 53.248 0 53.248zM344.064 311.808c0-21.491-17.421-38.912-38.912-38.912s-38.912 17.421-38.912 38.912c0 21.491 17.421 38.912 38.912 38.912s38.912-17.421 38.912-38.912z" />
|
|
11
|
+
<glyph unicode="" glyph-name="grid" d="M381.952 873.984h-184.32c-62.464 0-112.64-50.176-112.64-112.64v-184.32c0-62.464 50.176-112.64 112.64-112.64h184.32c62.464 0 112.64 50.176 112.64 112.64v184.32c0 61.44-50.176 112.64-112.64 112.64zM433.152 577.024c0-28.672-22.528-51.2-51.2-51.2h-184.32c-28.672 0-51.2 22.528-51.2 51.2v184.32c0 28.672 22.528 51.2 51.2 51.2h184.32c28.672 0 51.2-22.528 51.2-51.2v-184.32zM825.344 873.984h-184.32c-62.464 0-112.64-50.176-112.64-112.64v-184.32c0-62.464 50.176-112.64 112.64-112.64h184.32c62.464 0 112.64 50.176 112.64 112.64v184.32c0 61.44-50.176 112.64-112.64 112.64zM876.544 577.024c0-28.672-22.528-51.2-51.2-51.2h-184.32c-28.672 0-51.2 22.528-51.2 51.2v184.32c0 28.672 22.528 51.2 51.2 51.2h184.32c28.672 0 51.2-22.528 51.2-51.2v-184.32zM381.952 428.544h-184.32c-62.464 0-112.64-50.176-112.64-112.64v-184.32c0-62.464 50.176-112.64 112.64-112.64h184.32c62.464 0 112.64 50.176 112.64 112.64v184.32c0 61.44-50.176 112.64-112.64 112.64zM433.152 131.584c0-28.672-22.528-51.2-51.2-51.2h-184.32c-28.672 0-51.2 22.528-51.2 51.2v184.32c0 28.672 22.528 51.2 51.2 51.2h184.32c28.672 0 51.2-22.528 51.2-51.2v-184.32zM825.344 428.544h-184.32c-62.464 0-112.64-50.176-112.64-112.64v-184.32c0-62.464 50.176-112.64 112.64-112.64h184.32c62.464 0 112.64 50.176 112.64 112.64v184.32c0 61.44-50.176 112.64-112.64 112.64zM876.544 131.584c0-28.672-22.528-51.2-51.2-51.2h-184.32c-28.672 0-51.2 22.528-51.2 51.2v184.32c0 28.672 22.528 51.2 51.2 51.2h184.32c28.672 0 51.2-22.528 51.2-51.2v-184.32z" />
|
|
12
|
+
<glyph unicode="" glyph-name="arrow" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
|
|
13
|
+
<glyph unicode="" glyph-name="copy" d="M810 42.667v598h-468v-598h468zM810 724.667q34 0 60-25t26-59v-598q0-34-26-60t-60-26h-468q-34 0-60 26t-26 60v598q0 34 26 59t60 25h468zM682 896.667v-86h-512v-598h-84v598q0 34 25 60t59 26h512z" />
|
|
14
|
+
<glyph unicode="" glyph-name="chevrons-right" d="M584.832 183.168l213.333 213.333c16.683 16.683 16.683 43.691 0 60.331l-213.333 213.333c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331l183.168-183.168-183.168-183.168c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0zM286.165 183.168l213.333 213.333c16.683 16.683 16.683 43.691 0 60.331l-213.333 213.333c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331l183.168-183.168-183.168-183.168c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0z" />
|
|
15
|
+
<glyph unicode="" glyph-name="chevrons-left" d="M499.499 243.499l-183.168 183.168 183.168 183.168c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-213.333-213.333c-16.683-16.683-16.683-43.691 0-60.331l213.333-213.333c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331zM798.165 243.499l-183.168 183.168 183.168 183.168c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-213.333-213.333c-16.683-16.683-16.683-43.691 0-60.331l213.333-213.333c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" />
|
|
16
|
+
<glyph unicode="" glyph-name="check" d="M823.168 712.832l-439.168-439.168-183.168 183.168c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331l213.333-213.333c16.683-16.683 43.691-16.683 60.331 0l469.333 469.333c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0z" />
|
|
17
|
+
</font></defs></svg>
|
|
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: dedovic-2021
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martha Hipley
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -24,27 +24,45 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '4.2'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: bundler
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '1.12'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '1.12'
|
|
41
27
|
description:
|
|
42
28
|
email:
|
|
43
29
|
- info@marthahipley.com
|
|
44
30
|
executables: []
|
|
45
31
|
extensions: []
|
|
46
32
|
extra_rdoc_files: []
|
|
47
|
-
files:
|
|
33
|
+
files:
|
|
34
|
+
- LICENSE.txt
|
|
35
|
+
- README.md
|
|
36
|
+
- _includes/codeHeader.html
|
|
37
|
+
- _includes/footer.html
|
|
38
|
+
- _includes/head.html
|
|
39
|
+
- _includes/sidebar.html
|
|
40
|
+
- _layouts/about.html
|
|
41
|
+
- _layouts/art.html
|
|
42
|
+
- _layouts/default.html
|
|
43
|
+
- _layouts/landing.html
|
|
44
|
+
- _layouts/page.html
|
|
45
|
+
- _layouts/post.html
|
|
46
|
+
- _layouts/recipe.html
|
|
47
|
+
- _layouts/recipes.html
|
|
48
|
+
- _layouts/writing.html
|
|
49
|
+
- _sass/includes/_buttons.scss
|
|
50
|
+
- _sass/includes/_cards.scss
|
|
51
|
+
- _sass/includes/_colors.scss
|
|
52
|
+
- _sass/includes/_grid.scss
|
|
53
|
+
- _sass/includes/_icons.scss
|
|
54
|
+
- _sass/includes/_syntax.scss
|
|
55
|
+
- _sass/includes/_typography.scss
|
|
56
|
+
- _sass/main.scss
|
|
57
|
+
- assets/fonts/icons.eot
|
|
58
|
+
- assets/fonts/icons.svg
|
|
59
|
+
- assets/fonts/icons.ttf
|
|
60
|
+
- assets/fonts/icons.woff
|
|
61
|
+
- assets/fonts/optima-webfont.woff
|
|
62
|
+
- assets/fonts/optima-webfont.woff2
|
|
63
|
+
- assets/fonts/optima_b-webfont.woff
|
|
64
|
+
- assets/fonts/optima_b-webfont.woff2
|
|
65
|
+
- assets/img/banana-bread.jpg
|
|
48
66
|
homepage: https://dedovic.com/
|
|
49
67
|
licenses:
|
|
50
68
|
- MIT
|