portfolyou-jekyll-theme 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +17 -0
  4. data/_includes/404.html +129 -0
  5. data/_includes/about/skills.html +11 -0
  6. data/_includes/about/timeline.html +13 -0
  7. data/_includes/blog/index.html +76 -0
  8. data/_includes/blog/search.html +25 -0
  9. data/_includes/blog/tags.html +31 -0
  10. data/_includes/elements/button.html +9 -0
  11. data/_includes/elements/carousel.html +40 -0
  12. data/_includes/elements/figure.html +6 -0
  13. data/_includes/elements/highlight.html +1 -0
  14. data/_includes/elements/list.html +19 -0
  15. data/_includes/elements/video.html +3 -0
  16. data/_includes/footer.html +16 -0
  17. data/_includes/head.html +23 -0
  18. data/_includes/landing.html +15 -0
  19. data/_includes/navbar.html +67 -0
  20. data/_includes/projects/index.html +55 -0
  21. data/_includes/projects/project-card.html +21 -0
  22. data/_includes/scripts.html +25 -0
  23. data/_includes/social.html +20 -0
  24. data/_layouts/default.html +25 -0
  25. data/_layouts/element.html +141 -0
  26. data/_layouts/page.html +7 -0
  27. data/_layouts/post.html +36 -0
  28. data/_sass/_404.scss +257 -0
  29. data/_sass/_base.scss +7 -0
  30. data/_sass/_blog.scss +144 -0
  31. data/_sass/_footer.scss +21 -0
  32. data/_sass/_landing.scss +28 -0
  33. data/_sass/_navbar.scss +35 -0
  34. data/_sass/_projects.scss +13 -0
  35. data/_sass/_skills.scss +73 -0
  36. data/_sass/_timeline.scss +47 -0
  37. data/_sass/_variables.scss +10 -0
  38. data/_sass/autumn.scss +67 -0
  39. data/_sass/portfolYOU.scss +17 -0
  40. data/assets/css/style.scss +3 -0
  41. data/assets/favicon.ico +0 -0
  42. data/assets/js/card-animation.js +11 -0
  43. data/assets/js/remote-projects.js +26 -0
  44. metadata +170 -0
data/_sass/_404.scss ADDED
@@ -0,0 +1,257 @@
1
+ .cls-1 {
2
+ fill: #ffc541;
3
+ }
4
+
5
+ .cls-2 {
6
+ fill: #4e4066;
7
+ }
8
+
9
+ .cls-3 {
10
+ fill: #6f5b92;
11
+ }
12
+
13
+ .cls-4 {
14
+ fill: #f78d5e;
15
+ }
16
+
17
+ .cls-5 {
18
+ fill: #fa976c;
19
+ }
20
+
21
+ .cls-6 {
22
+ fill: #b65c32;
23
+ opacity: 0.6;
24
+ }
25
+
26
+ .cls-7 {
27
+ fill: #b65c32;
28
+ opacity: 0.4;
29
+ }
30
+
31
+ .cls-8 {
32
+ fill: #b65c32;
33
+ }
34
+
35
+ .cls-9 {
36
+ fill: #f4b73b;
37
+ }
38
+
39
+ .cls-10 {
40
+ opacity: 0.6;
41
+ }
42
+
43
+ .cls-11 {
44
+ fill: #f9c358;
45
+ }
46
+
47
+ .cls-12 {
48
+ fill: #9b462c;
49
+ }
50
+
51
+ .cls-13 {
52
+ fill: #aa512e;
53
+ }
54
+
55
+ .cls-14 {
56
+ fill: #7d6aa5;
57
+ }
58
+
59
+ /* animations */
60
+
61
+ .wheel {
62
+ animation: wheel-rotate 6s ease infinite;
63
+ transform-origin: center;
64
+ transform-box: fill-box;
65
+ }
66
+
67
+ @keyframes wheel-rotate {
68
+ 50% {
69
+ transform: rotate(360deg);
70
+ animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
71
+ }
72
+ 100% {
73
+ transform: rotate(960deg);
74
+ }
75
+ }
76
+
77
+ .clock-hand-1 {
78
+ animation: clock-rotate 3s linear infinite;
79
+ transform-origin: bottom;
80
+ transform-box: fill-box;
81
+ }
82
+
83
+ .clock-hand-2 {
84
+ animation: clock-rotate 6s linear infinite;
85
+ transform-origin: bottom;
86
+ transform-box: fill-box;
87
+ }
88
+
89
+ @keyframes clock-rotate {
90
+ 100% {
91
+ transform: rotate(360deg);
92
+ }
93
+ }
94
+
95
+ #box-top {
96
+ animation: box-top-anim 2s linear infinite;
97
+ transform-origin: right top;
98
+ transform-box: fill-box;
99
+ }
100
+
101
+ @keyframes box-top-anim {
102
+ 50% {
103
+ transform: rotate(-5deg);
104
+ }
105
+ }
106
+
107
+ #umbrella {
108
+ animation: umbrella-anim 6s linear infinite;
109
+ transform-origin: center;
110
+ transform-box: fill-box;
111
+ }
112
+
113
+ @keyframes umbrella-anim {
114
+ 25% {
115
+ transform: translateY(10px) rotate(5deg);
116
+ }
117
+ 75% {
118
+ transform: rotate(-5deg);
119
+ }
120
+ }
121
+
122
+ #cup {
123
+ animation: cup-rotate 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
124
+ transform-origin: top left;
125
+ transform-box: fill-box;
126
+ }
127
+
128
+ @keyframes cup-rotate {
129
+ 50% {
130
+ transform: rotate(-5deg);
131
+ }
132
+ }
133
+
134
+ #pillow {
135
+ animation: pillow-anim 3s linear infinite;
136
+ transform-origin: center;
137
+ transform-box: fill-box;
138
+ }
139
+
140
+ @keyframes pillow-anim {
141
+ 25% {
142
+ transform: rotate(10deg) translateY(5px);
143
+ }
144
+ 75% {
145
+ transform: rotate(-10deg);
146
+ }
147
+ }
148
+
149
+ #stripe {
150
+ animation: stripe-anim 3s linear infinite;
151
+ transform-origin: center;
152
+ transform-box: fill-box;
153
+ }
154
+
155
+ @keyframes stripe-anim {
156
+ 25% {
157
+ transform: translate(10px, 0) rotate(-10deg);
158
+ }
159
+ 75% {
160
+ transform: translateX(10px);
161
+ }
162
+ }
163
+
164
+ #bike {
165
+ animation: bike-anim 6s ease infinite;
166
+ }
167
+
168
+ @keyframes bike-anim {
169
+ 0% {
170
+ transform: translateX(-1300px);
171
+ }
172
+ 50% {
173
+ transform: translateX(0);
174
+ animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
175
+ }
176
+ 100% {
177
+ transform: translateX(1300px);
178
+ }
179
+ }
180
+
181
+ #rucksack {
182
+ animation: ruck-anim 3s linear infinite;
183
+ transform-origin: top;
184
+ transform-box: fill-box;
185
+ }
186
+
187
+ @keyframes ruck-anim {
188
+ 50% {
189
+ transform: rotate(5deg);
190
+ }
191
+ }
192
+
193
+ .circle {
194
+ animation: circle-anim ease infinite;
195
+ transform-origin: center;
196
+ transform-box: fill-box;
197
+ perspective: 0px;
198
+ }
199
+
200
+ .circle.c1 {
201
+ animation-duration: 2s;
202
+ }
203
+
204
+ .circle.c2 {
205
+ animation-duration: 3s;
206
+ }
207
+
208
+ .circle.c3 {
209
+ animation-duration: 1s;
210
+ }
211
+
212
+ .circle.c4 {
213
+ animation-duration: 1s;
214
+ }
215
+
216
+ .circle.c5 {
217
+ animation-duration: 2s;
218
+ }
219
+
220
+ .circle.c6 {
221
+ animation-duration: 3s;
222
+ }
223
+
224
+ @keyframes circle-anim {
225
+ 50% {
226
+ transform: scale(0.2) rotateX(360deg) rotateY(360deg);
227
+ }
228
+ }
229
+
230
+ .four,
231
+ #ou {
232
+ animation: four-anim cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
233
+ }
234
+
235
+ .four.a {
236
+ transform-origin: bottom left;
237
+ animation-duration: 3s;
238
+ transform-box: fill-box;
239
+ }
240
+
241
+ .four.b {
242
+ transform-origin: bottom right;
243
+ animation-duration: 3s;
244
+ transform-box: fill-box;
245
+ }
246
+
247
+ #ou {
248
+ animation-duration: 6s;
249
+ transform-origin: center;
250
+ transform-box: fill-box;
251
+ }
252
+
253
+ @keyframes four-anim {
254
+ 50% {
255
+ transform: scale(0.98);
256
+ }
257
+ }
data/_sass/_base.scss ADDED
@@ -0,0 +1,7 @@
1
+ body {
2
+ font-family: "Poppins", sans-serif;
3
+ }
4
+
5
+ .badge {
6
+ font-weight: 500;
7
+ }
data/_sass/_blog.scss ADDED
@@ -0,0 +1,144 @@
1
+ .search-box {
2
+ box-shadow: none !important;
3
+ }
4
+
5
+ .post.card {
6
+ border-radius: $rounded-borders;
7
+ text-decoration: none !important;
8
+ padding: 15px;
9
+ height: 100%;
10
+
11
+ .card-footer {
12
+ font-size: 14px;
13
+ margin: 0 -15px -15px -15px;
14
+ padding: 15px 35px;
15
+ }
16
+ }
17
+
18
+ .post {
19
+ .post-metadata {
20
+ font-size: 14px;
21
+ margin-top: -6px;
22
+ }
23
+
24
+ .tag:hover {
25
+ background-color: $primary;
26
+ color: white !important;
27
+ }
28
+
29
+ footer {
30
+ font-size: 10px;
31
+ color: #6c757d;
32
+ text-decoration: underline;
33
+ text-decoration-color: yellow;
34
+ text-align: right;
35
+ margin-top: 4em;
36
+ margin-right: 2em;
37
+ }
38
+
39
+ h1,
40
+ h2 {
41
+ margin-top: 32px;
42
+ }
43
+
44
+ hr {
45
+ background: $secondary;
46
+ }
47
+
48
+ img:not(.emoji) {
49
+ display: block;
50
+ max-width: 100%;
51
+ height: auto;
52
+ margin: 1rem auto;
53
+ }
54
+
55
+ .video {
56
+ position: relative;
57
+ padding-bottom: 56.25%;
58
+ margin-bottom: 1rem;
59
+ width: 100%;
60
+ iframe {
61
+ position: absolute;
62
+ height: 100%;
63
+ width: 100%;
64
+ }
65
+ }
66
+
67
+ a:not(.btn):not([class^="carousel-"]):not([class^="list-"]):not(.no-underline) {
68
+ display: inline-block;
69
+ text-decoration: none;
70
+
71
+ &:hover {
72
+ color: $primary;
73
+ }
74
+
75
+ &::after {
76
+ content: "";
77
+ display: block;
78
+ height: 0.15em;
79
+ margin-top: -0.15em;
80
+ width: 0;
81
+ background: $primary;
82
+ transition: width 0.35s;
83
+ }
84
+
85
+ &:hover::after {
86
+ width: 100%;
87
+ }
88
+ }
89
+
90
+ pre {
91
+ background: $light;
92
+ border: 1px solid #ddd;
93
+ color: $dark;
94
+ font-family: monospace;
95
+ font-size: 14px;
96
+ line-height: 20px;
97
+ margin-bottom: 1.6em;
98
+ max-width: 100%;
99
+ padding: 1em 1.5em;
100
+ display: block;
101
+ page-break-inside: avoid;
102
+ overflow: auto;
103
+ word-wrap: break-word;
104
+ }
105
+
106
+ code.highlighter-rouge {
107
+ background-color: $light;
108
+ color: $dark;
109
+ border-radius: 3px;
110
+ margin: 0;
111
+ padding: 0.2em 0.65em;
112
+ }
113
+
114
+ blockquote {
115
+ border-left: 0.25em solid $primary;
116
+ color: $secondary;
117
+ padding: 0 1em;
118
+ }
119
+
120
+ table {
121
+ display: block;
122
+ overflow-x: auto;
123
+ margin: 1rem 0;
124
+
125
+ td {
126
+ border: 1px solid #ddd;
127
+ padding: 8px 16px;
128
+ }
129
+
130
+ th {
131
+ @extend td;
132
+ padding-top: 12px;
133
+ padding-bottom: 12px;
134
+ font-weight: 500;
135
+ text-align: left;
136
+ background-color: $primary;
137
+ color: white;
138
+ }
139
+
140
+ tr:nth-child(even) {
141
+ background-color: $light;
142
+ }
143
+ }
144
+ }
@@ -0,0 +1,21 @@
1
+ .social {
2
+ text-decoration: none !important;
3
+ }
4
+
5
+ #attribution {
6
+ opacity: 0.5;
7
+ a {
8
+ text-decoration: none;
9
+ font-weight: bold;
10
+ }
11
+ }
12
+
13
+ @media only screen and (min-width: 768px) {
14
+ #attribution {
15
+ writing-mode: vertical-rl;
16
+ transform: rotate(180deg);
17
+ position: fixed;
18
+ bottom: 56px;
19
+ right: 22px;
20
+ }
21
+ }
@@ -0,0 +1,28 @@
1
+ // Fine Circle Responsive Image
2
+ // Inspired by https://stackoverflow.com/a/6615994/10194811
3
+
4
+ #container {
5
+ display: inline-block;
6
+ position: relative;
7
+ width: 100%;
8
+ }
9
+
10
+ #dummy {
11
+ padding-top: 100%; /* 1:1 aspect ratio */
12
+ }
13
+
14
+ #element {
15
+ position: absolute;
16
+ top: 0;
17
+ bottom: 0;
18
+ left: 0;
19
+ right: 0;
20
+ }
21
+
22
+ .circle-image {
23
+ width: 100%;
24
+ height: 100%;
25
+ border-radius: 50%;
26
+ object-fit: cover;
27
+ object-position: center;
28
+ }