jekyll-theme-default-blue 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ca400be8bbbed484c649f2ca870e916982ba37373c56031fe3570dcaaaa3d11e
4
+ data.tar.gz: 6ee06a648710b132438aebc77df324e01bdd2934bf49732cc3d56f2a576ea909
5
+ SHA512:
6
+ metadata.gz: 1e45f8e1402a1ceacf0b64d361bd12200bce97171f412d0620ed642a98a7924540f1dd331c5d94109369b9c38808b7efb7694f6ebeb991b2cd8f43531bdfb0db
7
+ data.tar.gz: 54a1d3212abc2595f12923c70b58c8c79c2bb6892548e82eacb49dc11fb10ae695049a23cbf1098a31908c3d490ecd53339e44b66662f37d1c84160b598863b8
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ The current page has been built using a Jekyll template for a simple cover page / unofficial cv
2
+ Welcome to my personal website👉
@@ -0,0 +1,33 @@
1
+ <div class="col-sm-12 col-md-6 col-education">
2
+ <div class="education">
3
+ <div class="section-title">
4
+ <h3>{{ site.education }}</h3>
5
+ </div>
6
+ <div class="section-wrapper">
7
+ <div class="timeline content">
8
+ {% for post in site.posts %}
9
+ {% if post.category == "education" %}
10
+ <div class="exp">
11
+ <div class="exp-header">
12
+ <h4>
13
+ {{ post.institution }}
14
+ </h4>
15
+ <h6>
16
+ {{ post.degree }}
17
+ </h6>
18
+ <h6>
19
+ <i class="fa fa-graduation-cap"></i>
20
+ {{ post.duration }}
21
+ </h6>
22
+ <p>
23
+ {{ post.content }}
24
+ </p>
25
+ </div>
26
+ </div>
27
+ {% endif %}
28
+ {% endfor%}
29
+
30
+ </div>
31
+ </div>
32
+ </div>
33
+ </div>
@@ -0,0 +1,30 @@
1
+ <div class="col-sm-12 col-md-6 col-experience">
2
+ <div class="experience">
3
+ <div class="section-title">
4
+ <h3>{{ site.experience }}</h3>
5
+ </div>
6
+ <div class="section-wrapper">
7
+ <div class="timeline content">
8
+ {% for post in site.posts %}
9
+ {% if post.category == "experience" %}
10
+ <div class="exp">
11
+ <div class="exp-header">
12
+ <h4>
13
+ {{ post.title }} - {{ post.company }}
14
+ </h4>
15
+ <h6>
16
+ <i class="fa fa-calendar-o"></i>
17
+ {{ post.duration }}
18
+ </h6>
19
+ <p>
20
+ {{ post.content }}
21
+ </p>
22
+ </div>
23
+ </div>
24
+ {% endif %}
25
+ {% endfor %}
26
+
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </div>
@@ -0,0 +1,24 @@
1
+ <head>
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
4
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
5
+ <link rel="icon" href="favicon.ico" type="image/x-icon">
6
+
7
+ <!-- Enable responsiveness on mobile devices-->
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
9
+ <meta name="description" content="{{ site.description}}">
10
+ <title>
11
+ {{ site.name }}
12
+ </title>
13
+
14
+ <!-- CSS -->
15
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
16
+ <link rel="stylesheet" href="css/main.css">
17
+
18
+ <!-- Icons -->
19
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
20
+
21
+ <!-- JS -->
22
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
23
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
24
+ </head>
@@ -0,0 +1,22 @@
1
+ <div class="hobbies-wrapper">
2
+ <div class="hobbies">
3
+ <div class="section-title">
4
+ <h3>{{ site.hobbies }}</h3>
5
+ </div>
6
+ <div class="section-wrapper">
7
+ <div class="row">
8
+ {% for post in site.posts %}
9
+ {% if post.category == "hobby" %}
10
+ <div class="hobby col-xs-12 col-sm-6 col-md-6">
11
+ <div class="hobby-header">
12
+ <p> {{ post.name }}
13
+ {{ post.content }}
14
+ </p>
15
+ </div>
16
+ </div>
17
+ {% endif %}
18
+ {% endfor %}
19
+ </div>
20
+ </div>
21
+ </div>
22
+ </div>
@@ -0,0 +1,15 @@
1
+ <div class="">
2
+ <div class="intro">
3
+ <div class="section-title">
4
+ <h2 class="name">
5
+ {{ site.name }}
6
+ </h2>
7
+ <h3 class="current-title">
8
+ {{ site.title }}
9
+ </h3>
10
+ </div>
11
+ <div class="abstract">
12
+ {{ site.abstract }}
13
+ </div>
14
+ </div>
15
+ </div>
@@ -0,0 +1,25 @@
1
+ <div class="col-sm-12 col-md-6 col-languages">
2
+ <div class="skills">
3
+ <div class="section-title">
4
+ <h3>{{ site.languages }}</h3>
5
+ </div>
6
+ {% for post in site.posts %}
7
+ {% if post.category == "language" %}
8
+ <div class="skill">
9
+ <h6 class="skill-title">
10
+ <i class="fa fa-flag"></i>
11
+ {{ post.name }} - {{ post.level }}
12
+ </h6>
13
+ <div class="skill-level">
14
+ <div class="dot-position" style="width: {{ post.value }}">
15
+ <i class="dot fa fa-circle"></i>
16
+ </div>
17
+ </div>
18
+ <div class="skill-description">
19
+ {{ post.content }}
20
+ </div>
21
+ </div>
22
+ {% endif %}
23
+ {% endfor%}
24
+ </div>
25
+ </div>
@@ -0,0 +1,26 @@
1
+ <div class="col-sm-12 col-md-6 col-projects">
2
+ <div class="projects">
3
+ <div class="section-title">
4
+ <h3>{{ site.projects}}</h3>
5
+ </div>
6
+ {% for post in site.posts %}
7
+ {% if post.category == "project" %}
8
+ <div class="project">
9
+ <div class="project-header">
10
+ <h4>
11
+ {{ post.name }}
12
+ {% if post.repo and post.repo_url %}
13
+ <a href="{{ post.repo_url }}" target="_blank" title="{{ post.repo }}">
14
+ <i class=" fa fa-{{ post.repo }}"></i>
15
+ </a>
16
+ {% endif %}
17
+ </h4>
18
+ <p>
19
+ {{ post.content }}
20
+ </p>
21
+ </div>
22
+ </div>
23
+ {% endif %}
24
+ {% endfor %}
25
+ </div>
26
+ </div>
@@ -0,0 +1,40 @@
1
+ <div id="bar">
2
+ <div class="barbar">
3
+ {% if site.image %}
4
+ <div class="center">
5
+ <img class="site-image" src="{{ site.image }}"/>
6
+ </div>
7
+ {% endif %}
8
+ <div class="site-title">
9
+ <h1>
10
+ {{ site.name }}
11
+ </h1>
12
+ <p class="description">{{ site.tagline }}</p>
13
+ </div>
14
+ <div class="contact-info center">
15
+ {% if site.email %}
16
+ <p><strong>{{ site.email_text}}: </strong><a href="mailto:{{ site.email }}" title="{{ site.email }}">{{ site.email }}</a> </p>
17
+ {% endif%}
18
+ {% if site.phone %}
19
+ <p><strong>{{ site.phone_text }}: </strong>{{ site.phone }}</p>
20
+ {% endif%}
21
+ {% if site.dob %}
22
+ <p><strong>{{ site.dob_text}}: </strong>{{ site.dob }} </p>
23
+ {% endif%}
24
+ {% if site.address %}
25
+ <p><strong>{{site.address_text}}: </strong>{{ site.address }} </p>
26
+ {% endif%}
27
+ </div>
28
+ <div class="icons">
29
+ {% if site.github_username %}
30
+ <a class="icon-link" target="_blank" title="Github" href="https://github.com/{{ site.github_username }}"><span class="fa fa-github"></span></a>
31
+ {% endif %}
32
+ {% if site.linkedin_url %}
33
+ <a class="icon-link" target="_blank" title="LinkedIn" href="{{ site.linkedin_url }}"><span class="fa fa-linkedin"></span></a>
34
+ {% endif %}
35
+ {% if site.twitter_handle %}
36
+ <a class="icon-link" target="_blank" title="Twitter" href="https://twitter.com/{{ site.twitter_handle }}"><span class="fa fa-twitter"></span></a>
37
+ {% endif %}
38
+ </div>
39
+ </div>
40
+ </div>
@@ -0,0 +1,27 @@
1
+ <div class="col-sm-12 col-md-6 col-skills">
2
+ <div class="skills">
3
+ <div class="section-title">
4
+ <h3>{{ site.skills }}</h3>
5
+ </div>
6
+ <div class="section-wrapper">
7
+ {% for post in site.posts %}
8
+ {% if post.category == "skill" %}
9
+ <div class="skill">
10
+ <h6 class="skill-title">
11
+ <i class="fa fa-cogs"></i>
12
+ {{ post.name }} - {{ post.level }}
13
+ </h6>
14
+ <div class="skill-level">
15
+ <div class="dot-position" style="width: {{ post.value }}">
16
+ <i class="dot fa fa-circle"></i>
17
+ </div>
18
+ </div>
19
+ <div class="skill-description">
20
+ {{ post.content }}
21
+ </div>
22
+ </div>
23
+ {% endif %}
24
+ {% endfor%}
25
+ </div>
26
+ </div>
27
+ </div>
@@ -0,0 +1,29 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ {% include head.html %}
5
+
6
+ <body class="{{ site.theme }}">
7
+ <div id="wrapper">
8
+ {% include sidebar.html %}
9
+ <div id="content-wrapper">
10
+ <div class="container-fluid content-core">
11
+ {% include intro.html %}
12
+ <div class="row">
13
+ {% include skills.html %}
14
+ {% include education.html %}
15
+ </div>
16
+ <div class="row">
17
+ {% include experience.html %}
18
+ {% include projects.html %}
19
+ {% include languages.html %}
20
+ </div>
21
+ <div class="row">
22
+ {% include hobbies.html %}
23
+ </div>
24
+ </div>
25
+ </div>
26
+ </div>
27
+ </body>
28
+
29
+ </html>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="post">
6
+ <h1 class="section-title">{{ page.title }}</h1>
7
+ {{ content }}
8
+ </div>
@@ -0,0 +1,4 @@
1
+ // Placeholder file. If your site uses
2
+ // @import "{{ site.theme }}";
3
+ // Then using this theme with jekyll-remote-theme will work fine.
4
+ @import "jekyll-theme-default-blue";
@@ -0,0 +1,340 @@
1
+ @import "timeline";
2
+ @import "skills";
3
+ @import "themes";
4
+
5
+ #bar {
6
+ text-align: center;
7
+ padding: 2rem 1rem;
8
+ .site-image {
9
+ width: 180px;
10
+ height: 180px;
11
+ -webkit-border-radius: 160px;
12
+ -moz-border-radius: 160px;
13
+ border-radius: 160px;
14
+ }
15
+ }
16
+
17
+ @media screen {
18
+
19
+ .content-core {
20
+ padding: 4rem;
21
+ }
22
+
23
+ #bar {
24
+ .site-title {
25
+ position: relative;
26
+ text-align: center;
27
+ }
28
+ .icons {
29
+ text-align: center;
30
+ }
31
+ .icon-link {
32
+ margin-left: 5px;
33
+ margin-right: 5px;
34
+ font-size: 3rem;
35
+ outline: none;
36
+ }
37
+ .icon-link:focus, .icon-link:hover, .icon-link:active {
38
+ outline: none;
39
+ }
40
+ }
41
+
42
+ /* 768px */
43
+ @media (min-width: 48em) {
44
+ #bar {
45
+ position: fixed;
46
+ top: 0;
47
+ left: 0;
48
+ bottom: 0;
49
+ width: 30rem;
50
+ text-align: left;
51
+ .site-image {
52
+ margin: 0 auto;
53
+ width: 180px;
54
+ height: 180px;
55
+ -webkit-border-radius: 160px;
56
+ -moz-border-radius: 160px;
57
+ border-radius: 160px;
58
+ display: inline-block;
59
+ }
60
+ .center {
61
+ margin: 0 auto;
62
+ text-align: center;
63
+ width: 100%;
64
+ }
65
+ }
66
+ #content-wrapper {
67
+ margin-left: 30rem;
68
+ }
69
+ }
70
+
71
+ /* 992px */
72
+ @media (min-width: 62em) {
73
+ #bar {
74
+ width: 34rem;
75
+ }
76
+ #content-wrapper {
77
+ margin-left: 34rem;
78
+ max-width: 90rem;
79
+ }
80
+ }
81
+ }
82
+
83
+ @media print {
84
+
85
+ body {
86
+ font: 11pt Georgia, "Times New Roman", Times, serif;
87
+ line-height: 1.3;
88
+ }
89
+
90
+ a {
91
+ display: none;
92
+ visibility: hidden;
93
+ &:after {
94
+ content: " (" attr(title) ")";
95
+ }
96
+ }
97
+ .content-core {
98
+ padding-left: unset !important;
99
+ padding-right: unset !important;
100
+
101
+ .col-experience, .col-skills {
102
+ float: left;
103
+ }
104
+ .col-education, .col-languages {
105
+ float: right;
106
+ }
107
+ .col-experience, .col-education, .col-skills, .col-languages {
108
+ max-width: 50%;
109
+
110
+ .exp {
111
+ page-break-inside: avoid;
112
+ padding-left: unset !important;
113
+ padding-top: unset !important;
114
+ padding-bottom: 20px;
115
+ &:after {
116
+
117
+ border: unset !important;
118
+ }
119
+ }
120
+ .skills {
121
+ page-break-inside: avoid;
122
+ }
123
+ .skill-level {
124
+ display: none;
125
+ }
126
+ }
127
+ .projects-wrapper {
128
+ max-width: 49%;
129
+ margin-right: 1%;
130
+ float: left;
131
+ }
132
+ .hobbies-wrapper {
133
+ max-width: 49%;
134
+ margin-left: 1%;
135
+ float: right;
136
+ }
137
+ }
138
+ #bar {
139
+ min-height: 250px;
140
+ .center {
141
+ position: relative;
142
+ float: left;
143
+ .site-image {
144
+ margin-left: 50px;
145
+ }
146
+
147
+ }
148
+ .barbar {
149
+ .contact-info {
150
+ position: unset !important;
151
+ float: unset !important;
152
+ a {
153
+ display: unset !important;
154
+ visibility: unset !important;
155
+ &:after {
156
+ content: " " !important;
157
+ }
158
+ }
159
+ }
160
+ }
161
+ }
162
+ .intro {
163
+ .section-title {
164
+ .name {
165
+ display: none;
166
+ }
167
+ }
168
+ }
169
+ }
170
+
171
+ // @import "{{ site.theme }}";
172
+ // @import "_sass/timeline";
173
+ // @import "_sass/skills";
174
+ // @import "_sass/themes";
175
+
176
+ // #bar {
177
+ // text-align: center;
178
+ // padding: 2rem 1rem;
179
+ // .site-image {
180
+ // width: 180px;
181
+ // height: 180px;
182
+ // -webkit-border-radius: 160px;
183
+ // -moz-border-radius: 160px;
184
+ // border-radius: 160px;
185
+ // }
186
+ // }
187
+
188
+ // @media screen {
189
+
190
+ // .content-core {
191
+ // padding: 4rem;
192
+ // }
193
+
194
+ // #bar {
195
+ // .site-title {
196
+ // position: relative;
197
+ // text-align: center;
198
+ // }
199
+ // .icons {
200
+ // text-align: center;
201
+ // }
202
+ // .icon-link {
203
+ // margin-left: 5px;
204
+ // margin-right: 5px;
205
+ // font-size: 3rem;
206
+ // outline: none;
207
+ // }
208
+ // .icon-link:focus, .icon-link:hover, .icon-link:active {
209
+ // outline: none;
210
+ // }
211
+ // }
212
+
213
+ // /* 768px */
214
+ // @media (min-width: 48em) {
215
+ // #bar {
216
+ // position: fixed;
217
+ // top: 0;
218
+ // left: 0;
219
+ // bottom: 0;
220
+ // width: 30rem;
221
+ // text-align: left;
222
+ // .site-image {
223
+ // margin: 0 auto;
224
+ // width: 180px;
225
+ // height: 180px;
226
+ // -webkit-border-radius: 160px;
227
+ // -moz-border-radius: 160px;
228
+ // border-radius: 160px;
229
+ // display: inline-block;
230
+ // }
231
+ // .center {
232
+ // margin: 0 auto;
233
+ // text-align: center;
234
+ // width: 100%;
235
+ // }
236
+ // }
237
+ // #content-wrapper {
238
+ // margin-left: 30rem;
239
+ // }
240
+ // }
241
+
242
+ // /* 992px */
243
+ // @media (min-width: 62em) {
244
+ // #bar {
245
+ // width: 34rem;
246
+ // }
247
+ // #content-wrapper {
248
+ // margin-left: 34rem;
249
+ // max-width: 90rem;
250
+ // }
251
+ // }
252
+ // }
253
+
254
+ // @media print {
255
+
256
+ // body {
257
+ // font: 11pt Georgia, "Times New Roman", Times, serif;
258
+ // line-height: 1.3;
259
+ // }
260
+
261
+ // a {
262
+ // display: none;
263
+ // visibility: hidden;
264
+ // &:after {
265
+ // content: " (" attr(title) ")";
266
+ // }
267
+ // }
268
+ // .content-core {
269
+ // padding-left: unset !important;
270
+ // padding-right: unset !important;
271
+
272
+ // .col-experience, .col-skills {
273
+ // float: left;
274
+ // }
275
+ // .col-education, .col-languages {
276
+ // float: right;
277
+ // }
278
+ // .col-experience, .col-education, .col-skills, .col-languages {
279
+ // max-width: 50%;
280
+
281
+ // .exp {
282
+ // page-break-inside: avoid;
283
+ // padding-left: unset !important;
284
+ // padding-top: unset !important;
285
+ // padding-bottom: 20px;
286
+ // &:after {
287
+
288
+ // border: unset !important;
289
+ // }
290
+ // }
291
+ // .skills {
292
+ // page-break-inside: avoid;
293
+ // }
294
+ // .skill-level {
295
+ // display: none;
296
+ // }
297
+ // }
298
+ // .projects-wrapper {
299
+ // max-width: 49%;
300
+ // margin-right: 1%;
301
+ // float: left;
302
+ // }
303
+ // .hobbies-wrapper {
304
+ // max-width: 49%;
305
+ // margin-left: 1%;
306
+ // float: right;
307
+ // }
308
+ // }
309
+ // #bar {
310
+ // min-height: 250px;
311
+ // .center {
312
+ // position: relative;
313
+ // float: left;
314
+ // .site-image {
315
+ // margin-left: 50px;
316
+ // }
317
+
318
+ // }
319
+ // .barbar {
320
+ // .contact-info {
321
+ // position: unset !important;
322
+ // float: unset !important;
323
+ // a {
324
+ // display: unset !important;
325
+ // visibility: unset !important;
326
+ // &:after {
327
+ // content: " " !important;
328
+ // }
329
+ // }
330
+ // }
331
+ // }
332
+ // }
333
+ // .intro {
334
+ // .section-title {
335
+ // .name {
336
+ // display: none;
337
+ // }
338
+ // }
339
+ // }
340
+ // }
data/_sass/skills.scss ADDED
@@ -0,0 +1,32 @@
1
+ // ---
2
+ // ---
3
+ .skills{
4
+ h4, h6 {
5
+ margin-bottom: 10px;
6
+ }
7
+ .skill {
8
+ margin-bottom: 30px;
9
+ margin-top: 10px;
10
+ .skill-level {
11
+ height: 3px;
12
+ .dot-position {
13
+ position: relative;
14
+ height: 3px;
15
+ .dot {
16
+ font-size: 16px;
17
+ position: absolute;
18
+ right: 0;
19
+ margin-top: -6px;
20
+ margin-left: 50%;
21
+ &:hover {
22
+ cursor: default;
23
+ }
24
+ }
25
+ }
26
+ }
27
+ .skill-description {
28
+ margin-top: 4px;
29
+ }
30
+
31
+ }
32
+ }
data/_sass/themes.scss ADDED
@@ -0,0 +1,219 @@
1
+ // ---
2
+ // ---
3
+ // Theme colors from https://github.com/chriskempson/base16
4
+
5
+ @mixin theme ($theme-bar-bg, $theme-content-bg, $theme-color, $theme-accent) {
6
+ $theme-a: $theme-accent;
7
+ $theme-a-hover: darken($theme-a, 20%);
8
+
9
+ #bar {
10
+ background-color: $theme-bar-bg;
11
+ color: $theme-color;
12
+ a {
13
+ color: $theme-a;
14
+ &:hover {
15
+ color: $theme-a-hover
16
+ }
17
+ }
18
+ }
19
+ #wrapper {
20
+ background-color: $theme-content-bg;
21
+ }
22
+ #content-wrapper {
23
+ color: $theme-bar-bg;
24
+ .exp {
25
+ &:after {
26
+ background: $theme-accent;
27
+ border: 3px solid $theme-content-bg;
28
+ }
29
+ h6 {
30
+ color: darken($theme-color, 30%);
31
+ }
32
+ }
33
+ .skills {
34
+ .dot {
35
+ color: $theme-accent;
36
+ }
37
+ .skill-level {
38
+ background-color: $theme-color;
39
+ .dot-position {
40
+ background-color: $theme-accent;
41
+ }
42
+ }
43
+ }
44
+ .project {
45
+ a {
46
+ color: $theme-a;
47
+ &:hover {
48
+ color: $theme-a-hover;
49
+ }
50
+ }
51
+ }
52
+ .timeline {
53
+ &:before {
54
+ background: $theme-color; /* Old browsers */
55
+ background: -moz-linear-gradient(top, $theme-color 1%, $theme-color 75%, $theme-content-bg 100%); /* FF3.6+ */
56
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, $theme-color), color-stop(75%, $theme-color), color-stop(100%, $theme-content-bg)); /* Chrome,Safari4+ */
57
+ background: -webkit-linear-gradient(top, $theme-color 1%, $theme-color 75%, $theme-content-bg 100%); /* Chrome10+,Safari5.1+ */
58
+ background: -o-linear-gradient(top, $theme-color 1%, $theme-color 75%, $theme-content-bg 100%); /* Opera 11.10+ */
59
+ background: -ms-linear-gradient(top, $theme-color 1%, $theme-color 75%, $theme-content-bg 100%); /* IE10+ */
60
+ background: linear-gradient(to bottom, $theme-color 1%, $theme-color 75%, $theme-content-bg 100%); /* W3C */
61
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$theme-1-color', endColorstr='$theme-1-content-bg',GradientType=0 ); /* IE6-9 */
62
+ }
63
+ }
64
+ }
65
+ }
66
+
67
+ //Default Red
68
+ .theme-default-red {
69
+ $theme-default-bar-bg: #151515; // 00
70
+ $theme-default-content-bg: #F5F5F5; // 07
71
+ $theme-default-color: #B0B0B0; // 04
72
+ $theme-default-accent: #AC4142; // 08
73
+ @include theme($theme-default-bar-bg, $theme-default-content-bg, $theme-default-color, $theme-default-accent)
74
+ }
75
+
76
+ //Default Orange
77
+ .theme-default-orange {
78
+ $theme-default-bar-bg: #151515; // 00
79
+ $theme-default-content-bg: #F5F5F5; // 07
80
+ $theme-default-color: #B0B0B0; // 04
81
+ $theme-default-accent: #D28445; // 09
82
+ @include theme($theme-default-bar-bg, $theme-default-content-bg, $theme-default-color, $theme-default-accent)
83
+
84
+ }
85
+
86
+ //Default Green
87
+ .theme-default-green {
88
+ $theme-default-bar-bg: #151515; // 00
89
+ $theme-default-content-bg: #F5F5F5; // 07
90
+ $theme-default-color: #B0B0B0; // 04
91
+ $theme-default-accent: #90A959; // 0B
92
+ @include theme($theme-default-bar-bg, $theme-default-content-bg, $theme-default-color, $theme-default-accent)
93
+ }
94
+
95
+ //Default Blue
96
+ .theme-default-blue {
97
+ $theme-default-bar-bg: #151515; // 00
98
+ $theme-default-content-bg: #F5F5F5; // 07
99
+ $theme-default-color: #B0B0B0; // 04
100
+ $theme-default-accent: #6A9FB5; // 0D
101
+ @include theme($theme-default-bar-bg, $theme-default-content-bg, $theme-default-color, $theme-default-accent)
102
+
103
+ }
104
+
105
+ //Twilight Red
106
+ .theme-twilight-red {
107
+ $theme-twilight-bar-bg: #1E1E1E; // 00
108
+ $theme-twilight-content-bg: #FFF; // 07
109
+ $theme-twilight-color: #838184; // 04
110
+ $theme-twilight-accent: #F92672; // 08
111
+ @include theme($theme-twilight-bar-bg, $theme-twilight-content-bg, $theme-twilight-color, $theme-twilight-accent)
112
+ }
113
+
114
+ //Twilight Orange
115
+ .theme-twilight-orange {
116
+ $theme-twilight-bar-bg: #1E1E1E; // 00
117
+ $theme-twilight-content-bg: #FFF; // 07
118
+ $theme-twilight-color: #838184; // 04
119
+ $theme-twilight-accent: #CDA869; // 09
120
+ @include theme($theme-twilight-bar-bg, $theme-twilight-content-bg, $theme-twilight-color, $theme-twilight-accent)
121
+ }
122
+
123
+ //Twilight Green
124
+ .theme-twilight-green {
125
+ $theme-twilight-bar-bg: #1E1E1E; // 00
126
+ $theme-twilight-content-bg: #FFF; // 07
127
+ $theme-twilight-color: #838184; // 04
128
+ $theme-twilight-accent: #A6E22E; // 0B
129
+ @include theme($theme-twilight-bar-bg, $theme-twilight-content-bg, $theme-twilight-color, $theme-twilight-accent)
130
+ }
131
+
132
+ //Twilight Blue
133
+ .theme-twilight-blue {
134
+ $theme-twilight-bar-bg: #1E1E1E; // 00
135
+ $theme-twilight-content-bg: #FFF; // 07
136
+ $theme-twilight-color: #838184; // 04
137
+ $theme-twilight-accent: #66D9EF; // 0D
138
+ @include theme($theme-twilight-bar-bg, $theme-twilight-content-bg, $theme-twilight-color, $theme-twilight-accent)
139
+ }
140
+
141
+ // Atelier Sulphurpool Red
142
+ .theme-sulphur-red {
143
+ $theme-sulphur-bar-bg: #202746; // 00
144
+ $theme-sulphur-content-bg: #F5F7FF; // 07
145
+ $theme-sulphur-color: #898EA4; // 04
146
+ $theme-sulphur-accent: #C94922; // 08
147
+ @include theme($theme-sulphur-bar-bg, $theme-sulphur-content-bg, $theme-sulphur-color, $theme-sulphur-accent)
148
+ }
149
+
150
+ // Atelier Sulphurpool Orange
151
+ .theme-sulphur-orange {
152
+ $theme-sulphur-bar-bg: #202746; // 00
153
+ $theme-sulphur-content-bg: #F5F7FF; // 07
154
+ $theme-sulphur-color: #898EA4; // 04
155
+ $theme-sulphur-accent: #C76B29; // 09
156
+ @include theme($theme-sulphur-bar-bg, $theme-sulphur-content-bg, $theme-sulphur-color, $theme-sulphur-accent)
157
+ }
158
+
159
+ // Atelier Sulphurpool Green
160
+ .theme-sulphur-green {
161
+ $theme-sulphur-bar-bg: #202746; // 00
162
+ $theme-sulphur-content-bg: #F5F7FF; // 07
163
+ $theme-sulphur-color: #898EA4; // 04
164
+ $theme-sulphur-accent: #AC9739; // 0B
165
+ }
166
+
167
+ // Atelier Sulphurpool Blue
168
+ .theme-sulphur-blue {
169
+ $theme-sulphur-bar-bg: #202746; // 00
170
+ $theme-sulphur-content-bg: #F5F7FF; // 07
171
+ $theme-sulphur-color: #898EA4; // 04
172
+ $theme-sulphur-accent: #3D8FD1; // 0D
173
+ @include theme($theme-sulphur-bar-bg, $theme-sulphur-content-bg, $theme-sulphur-color, $theme-sulphur-accent)
174
+ }
175
+
176
+ // Greyscale
177
+ .theme-greyscale {
178
+ $theme-greyscale-bar-bg: #101010; // 00
179
+ $theme-greyscale-content-bg: #F7F7F7; // 07
180
+ $theme-greyscale-color: #ABABAB; // 04
181
+ $theme-greyscale-accent: #999; // 09
182
+ @include theme($theme-greyscale-bar-bg, $theme-greyscale-content-bg, $theme-greyscale-color, $theme-greyscale-accent)
183
+ }
184
+
185
+ // Ocean Red
186
+ .theme-ocean-red {
187
+ $theme-ocean-bar-bg: #2B303B; // 00
188
+ $theme-ocean-content-bg: #EFF1F5; // 07
189
+ $theme-ocean-color: #A7ADBA; // 04
190
+ $theme-ocean-accent: #BF616A; // 08
191
+ @include theme($theme-ocean-bar-bg, $theme-ocean-content-bg, $theme-ocean-color, $theme-ocean-accent)
192
+ }
193
+
194
+ // Ocean Orange
195
+ .theme-ocean-orange {
196
+ $theme-ocean-bar-bg: #2B303B; // 00
197
+ $theme-ocean-content-bg: #EFF1F5; // 07
198
+ $theme-ocean-color: #A7ADBA; // 04
199
+ $theme-ocean-accent: #D08770; // 09
200
+ @include theme($theme-ocean-bar-bg, $theme-ocean-content-bg, $theme-ocean-color, $theme-ocean-accent)
201
+ }
202
+
203
+ // Ocean Green
204
+ .theme-ocean-green {
205
+ $theme-ocean-bar-bg: #2B303B; // 00
206
+ $theme-ocean-content-bg: #EFF1F5; // 07
207
+ $theme-ocean-color: #A7ADBA; // 04
208
+ $theme-ocean-accent: #A3BE8C; // 0B
209
+ @include theme($theme-ocean-bar-bg, $theme-ocean-content-bg, $theme-ocean-color, $theme-ocean-accent)
210
+ }
211
+
212
+ // Ocean Blue
213
+ .theme-ocean-blue {
214
+ $theme-ocean-bar-bg: #2B303B; // 00
215
+ $theme-ocean-content-bg: #EFF1F5; // 07
216
+ $theme-ocean-color: #A7ADBA; // 04
217
+ $theme-ocean-accent: #8FA1B3; // 0D
218
+ @include theme($theme-ocean-bar-bg, $theme-ocean-content-bg, $theme-ocean-color, $theme-ocean-accent)
219
+ }
@@ -0,0 +1,56 @@
1
+ // ---
2
+ // ---
3
+ .timeline {
4
+ position: relative;
5
+
6
+ &:before {
7
+ bottom: 0;
8
+ content: "";
9
+ left: 18px;
10
+ position: absolute;
11
+ top: 0;
12
+ width: 3px;
13
+ height:100%;
14
+ margin-top: 25px;
15
+ }
16
+ }
17
+
18
+ .exp{
19
+ padding-left: 50px;
20
+ padding-top: 20px;
21
+ position:relative;
22
+ margin-bottom:10px;
23
+ }
24
+
25
+ .exp:after{
26
+ content: "";
27
+ height: 15px;
28
+ left: 12px;
29
+ position: absolute;
30
+ text-align: center;
31
+ top: 24px;
32
+ width: 15px;
33
+ border-radius: 12px;
34
+ }
35
+
36
+ .exp .exp-header h4, h6{
37
+ margin-bottom:0;
38
+ }
39
+
40
+ .exp .exp-header h4{
41
+ text-transform:none;
42
+
43
+ }
44
+
45
+ .exp .exp-header{
46
+ margin-bottom:5px;
47
+ }
48
+
49
+ .exp .exp-header h6{
50
+ text-transform:none;
51
+ font-size:12px;
52
+ }
53
+
54
+ .exp .exp-header h6 i{
55
+ margin-right:5px;
56
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "jekyll-theme-default-blue";
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-default-blue
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Papaioannou
8
+ - ''
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2023-07-18 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: jekyll
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.5'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '5.0'
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ requirements:
28
+ - - ">"
29
+ - !ruby/object:Gem::Version
30
+ version: '3.5'
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '5.0'
34
+ - !ruby/object:Gem::Dependency
35
+ name: jekyll-seo-tag
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ type: :runtime
42
+ prerelease: false
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ - !ruby/object:Gem::Dependency
49
+ name: html-proofer
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rubocop-github
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.16'
69
+ type: :development
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.16'
76
+ - !ruby/object:Gem::Dependency
77
+ name: w3c_validators
78
+ requirement: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.3'
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.3'
90
+ description:
91
+ email:
92
+ - opensource+jekyll-theme-default-blue@github.com
93
+ executables: []
94
+ extensions: []
95
+ extra_rdoc_files: []
96
+ files:
97
+ - README.md
98
+ - _includes/education.html
99
+ - _includes/experience.html
100
+ - _includes/head.html
101
+ - _includes/hobbies.html
102
+ - _includes/intro.html
103
+ - _includes/languages.html
104
+ - _includes/projects.html
105
+ - _includes/sidebar.html
106
+ - _includes/skills.html
107
+ - _layouts/default.html
108
+ - _layouts/post.html
109
+ - _sass/default-blue.scss
110
+ - _sass/jekyll-theme-default-blue.scss
111
+ - _sass/skills.scss
112
+ - _sass/themes.scss
113
+ - _sass/timeline.scss
114
+ - assets/css/style.scss
115
+ - assets/images/AP_professional_photo.png
116
+ - assets/images/AP_professional_photo_squared.jpg
117
+ - assets/images/cbs_logo.png
118
+ - assets/images/columbia_logo.png
119
+ - assets/images/indiana_logo.png
120
+ - assets/images/kmeans.png
121
+ - assets/images/tuc_logo.png
122
+ homepage: https://github.com/pages-themes/default-blue
123
+ licenses:
124
+ - CC0-1.0
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 2.4.0
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubygems_version: 3.0.3.1
142
+ signing_key:
143
+ specification_version: 4
144
+ summary: Default blue is a Jekyll theme for GitHub Pages
145
+ test_files: []