jekyll-waterfall 0.6.0 → 0.10.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 564913bd5ad55325eab72f7554905a54840bc90a10ada80d714c55b680b5bde8
4
- data.tar.gz: 6569884ecbfb60abb1f4dc338b433640bb2520db1f8237427b5167e82769f476
3
+ metadata.gz: ec2407ad069902824d715ed6fe9ec6b65fc94ba5912e818795454f748798a842
4
+ data.tar.gz: 1216fd4ec49114962b328db8c62c14726a4ea695d1ee082efb17fbb6e8bf9330
5
5
  SHA512:
6
- metadata.gz: 5f3d71d31196911d2fd6818b432a47700a5eb49d71c3ef1d585b3a5239d3c60060585fc2ce68fa683a050581084e242c2fb3a110ff72f9b520ee8841e0655451
7
- data.tar.gz: 373dd987a445c1d9efddc164fc9e3de6a4080596fca69a7d8e1f43ee47ff5dadef9f60bbf81722526dc7c2e2bbec0b66c7133e3dbf063c574ceb42700648e149
6
+ metadata.gz: b55b2fdafc45af55f23380e45fa6ff454735a718bc21e1f036cc05e2bc7af076f663388937606a625abd9c91a5e7d4f025fe4fe49d446d0cb0a0812dddbd7d92
7
+ data.tar.gz: c46d3c52f71e37e148c5419ac84dfd1aa556b9f8434c1ce55d576587b5edc01e21fcfd7f8c51a6d3fd0534088fa368647b57ae8ab9d9d71905b6936b18d7644d
@@ -1,23 +1,50 @@
1
1
  title: Waterfall Theme
2
2
 
3
+ lang: &LANG "pt"
4
+
3
5
  exclude: ['front']
4
6
 
5
7
  collections:
6
8
  experiences:
7
9
  output: false
8
10
  projects:
9
- output: false
11
+ output: true
12
+
13
+ defaults:
14
+ - scope:
15
+ path: ""
16
+ type: "posts"
17
+ values:
18
+ layout: "post"
19
+ - scope:
20
+ path: ""
21
+ type: "projects"
22
+ values:
23
+ layout: "project"
24
+ - scope:
25
+ path: ""
26
+ values:
27
+ lang: *LANG
28
+ layout: "default"
10
29
 
11
30
  # Uncomment the section below to add items on your top navigation
12
31
  # header_items:
13
- # -
14
- # title: Projects
15
- # href: "/projects"
16
- # - contact.md
17
- # -
18
- # title: Resume
19
- # href: https://drive.google.com
20
- # featured: true
32
+ # *LANG:
33
+ # -
34
+ # title: Item 1
35
+ # href: "/item-1"
36
+ # -
37
+ # title: Resume
38
+ # href: https://drive.google.com
39
+ # featured: true
40
+ # en:
41
+ # -
42
+ # title: Projects
43
+ # href: "/projects"
44
+ # -
45
+ # title: Resume
46
+ # href: https://drive.google.com
47
+ # featured: true
21
48
 
22
49
  waterfall:
23
50
  author:
@@ -27,4 +54,13 @@ waterfall:
27
54
  social_links:
28
55
  github: jekyll
29
56
  linkedin: jekyll
30
- email: jekyll@jekyll.io
57
+ email: jekyll@jekyll.io
58
+
59
+ home:
60
+ last_posts_items: 4
61
+
62
+ analytics:
63
+ tracking_id: "UX-12345678"
64
+
65
+ disqus:
66
+ shortname: jekyll
@@ -0,0 +1,11 @@
1
+ <!-- Global site tag (gtag.js) - Google Analytics -->
2
+ {%- if jekyll.environment == 'production' and site.analytics.tracking_id -%}
3
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics.tracking_id }}"></script>
4
+ <script>
5
+ window.dataLayer = window.dataLayer || [];
6
+ function gtag(){dataLayer.push(arguments);}
7
+ gtag('js', new Date());
8
+
9
+ gtag('config', '{{ site.analytics.tracking_id }}');
10
+ </script>
11
+ {%- endif -%}
@@ -0,0 +1,20 @@
1
+ {%- if page.comments != false and jekyll.environment == "production" -%}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script>
5
+ var disqus_config = function () {
6
+ this.page.url = '{{ page.url | absolute_url }}';
7
+ this.page.identifier = '{{ page.url | absolute_url }}';
8
+ };
9
+
10
+ (function() {
11
+ var d = document, s = d.createElement('script');
12
+
13
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14
+
15
+ s.setAttribute('data-timestamp', +new Date());
16
+ (d.head || d.body).appendChild(s);
17
+ })();
18
+ </script>
19
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20
+ {%- endif -%}
@@ -1,10 +1,16 @@
1
+ {%- assign experiences = site.experiences -%}
2
+
3
+ {%- if page.lang != null -%}
4
+ {%- assign experiences = site.experiences | where: "lang", page.lang -%}
5
+ {%- endif -%}
6
+
1
7
  <div id="experience" class="min-h-screen pt-32">
2
8
  <h2 class="text-primary-700 mb-10 text-3xl">Where I've Worked</h2>
3
9
 
4
10
  <div class="flex flex-wrap">
5
11
  <div class="w-1/4">
6
12
  <div class="nav flex flex-col nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
7
- {% for experience in site.experiences %}
13
+ {% for experience in experiences %}
8
14
  <a class="px-4 py-2 text-gray-400 nav-link" data-toggle="pill" href="#v-pills-{{ experience.slug }}"
9
15
  aria-controls="v-pills-settings" aria-selected="false">{{ experience.company.name }}</a>
10
16
  {% endfor %}
@@ -1,5 +1,5 @@
1
- <header class="z-10">
2
- <div class="py-5 border-b border-gray-200 fixed w-full bg-gray-50 z-10">
1
+ <header class="z-10 fixed w-full bg-gray-50 transition-all duration-500" data-collapse="scroll" data-collapse-trigger-height="100">
2
+ <div class="py-5 border-b border-gray-200 dark:border-gray-800 dark:bg-gray-900 z-10">
3
3
  <div class="container mx-auto">
4
4
  <div class="flex items-center">
5
5
 
@@ -20,13 +20,13 @@
20
20
  </div>
21
21
  </div>
22
22
 
23
- <aside class="fixed h-full top-0 w-64 -right-64 bg-gray-50 z-20 flex items-center justify-center transition-all">
24
- <ul class="flex flex-col items-center justify-center">
25
- {%- include nav.html -%}
26
- </ul>
27
- </aside>
28
-
29
23
  <a href="#top-nav" class="w-1/4 md:hidden text-3xl text-primary-700 z-20 text-right fixed top-8 right-8" nav-toggler>
30
24
  {%- include svg/bars.svg -%}
31
25
  </a>
32
- </header>
26
+ </header>
27
+
28
+ <aside class="fixed h-full top-0 w-64 -right-64 bg-gray-50 z-20 flex items-center justify-center transition-all">
29
+ <ul class="flex flex-col items-center justify-center">
30
+ {%- include nav.html -%}
31
+ </ul>
32
+ </aside>
@@ -1,11 +1,27 @@
1
+ {%- assign posts = site.posts -%}
2
+
3
+ {%- if page.lang != null -%}
4
+ {%- assign posts = site.posts | where: "lang", page.lang -%}
5
+ {%- endif -%}
6
+
7
+ {%- assign limit = null -%}
8
+
9
+ {%- if site.waterfall.home.last_posts_items -%}
10
+ {%- assign limit = site.waterfall.home.last_posts_items -%}
11
+ {%- endif -%}
12
+
13
+
14
+ {%- if page.last_posts_items -%}
15
+ {%- assign limit = page.last_posts_items -%}
16
+ {%- endif -%}
17
+
1
18
  <div id="last-posts" class="min-h-screen pt-32">
2
19
  <h2 class="text-primary-700 mb-10 text-3xl">Last Posts</h2>
3
-
4
20
  <div class="row">
5
- {% for post in site.posts %}
21
+ {% for post in posts limit: limit %}
6
22
  <div class="col w-full sm:w-1/2 md:w-1/3">
7
- <a href="{{ post.url }}" class="card p-5 bg-gray-50 hover:shadow-lg rounded-md relative transition-all border-t-4 border-primary-600 block mb-3">
8
- <h2 class="text-gray-800 text-xl mb-3">{{ post.title }}</h2>
23
+ <a href="{{ post.url }}" class="card p-5 bg-gray-50 dark:bg-gray-800 hover:shadow-lg rounded-md relative transition-all border-t-4 border-primary-600 block mb-3">
24
+ <h2 class="text-gray-800 dark:text-gray-100 text-xl mb-3">{{ post.title }}</h2>
9
25
  <p class="text-gray-500">{{ post.excerpt }}</p>
10
26
 
11
27
  <div class="absolute bottom-0 py-5">
@@ -17,4 +33,10 @@
17
33
  </div>
18
34
  {% endfor %}
19
35
  </div>
36
+
37
+ {%- if page.posts -%}
38
+ <div class="flex justify-center my-5">
39
+ <a href="{{ page.posts.url }}" class="btn border-primary-700 border rounded-md text-center text-primary-700 hover:bg-primary-700 hover:text-white transition-all">{{ page.posts.see_more_label }}</a>
40
+ </div>
41
+ {%- endif -%}
20
42
  </div>
@@ -1,14 +1,30 @@
1
- {%- assign header_items = page.header_items | default: site.header_items -%}
1
+ {%- assign header_items = site.header_items[page.lang] | default: site.header_items[site.lang ] -%}
2
+
3
+ {%- if page.header_items -%}
4
+ {%- assign header_items = page.header_items -%}
5
+ {%- endif -%}
2
6
 
3
7
  {%- for item in header_items -%}
4
8
  {%- assign cssClass = '' -%}
9
+ {%- assign target = '' -%}
10
+ {%- assign anchorTransition = '' -%}
11
+
5
12
  {%- if item.title -%}
6
13
  {%- assign title = item.title | escape -%}
7
14
  {%- assign href = item.href | escape -%}
15
+ {%- assign target = item.target -%}
16
+
17
+ {%- assign aux = href | split: "#" -%}
18
+
19
+ {%- if aux.size == 2 -%}
20
+ {%- assign anchorTransition = "data-anchor-transition" -%}
21
+ {%- else -%}
22
+ {%- assign anchorTransition = "" -%}
23
+ {%- endif -%}
8
24
 
9
25
  {%- if item.featured -%}
10
26
  {%- assign cssClass = 'btn btn-primary inline-block' -%}
11
- {%- endif -%}
27
+ {%- endif -%}
12
28
  {%- else -%}
13
29
  {%- assign page = site.pages | where: "path", item | first -%}
14
30
  {%- assign title = page.title | escape -%}
@@ -16,7 +32,7 @@
16
32
  {%- endif -%}
17
33
 
18
34
  <li class="pl-5">
19
- <a class="nav-link {{ cssClass }}" href="{{ href }}">
35
+ <a class="nav-link block {{ cssClass }}" href="{{ href }}" target="{{ target }}" {{anchorTransition}}>
20
36
  <span class="text-gray-500">{{ title }}</span>
21
37
  </a>
22
38
  </li>
@@ -1,21 +1,38 @@
1
+ {%- assign projects = site.projects -%}
2
+
3
+ {%- if page.lang != null -%}
4
+ {%- assign projects = site.projects | where: "lang", page.lang -%}
5
+ {%- endif -%}
6
+
1
7
  <div id="projects" class="min-h-screen pt-32">
2
8
  <h2 class="text-primary-700 mb-10 text-3xl">Some Things I've Built</h2>
3
9
 
10
+
4
11
  <div class="row">
5
- {% for project in site.projects %}
6
- <div class="col w-full sm:w-1/2 md:w-1/3">
7
- <a href="{{ project.permalink }}"
8
- class="card p-5 bg-gray-50 hover:shadow-lg rounded-md relative transition-all border-t-4 border-primary-600 block mb-3">
9
- <h2 class="text-gray-800 text-xl mb-3">{{ project.title }}</h2>
10
- <p class="text-gray-500">{{ project.excerpt }}</p>
12
+ {% for project in projects | where: "featured", true %}
13
+ <div class="col w-full sm:w-1/2">
14
+ <a href="{{ project.url }}" class="card featured">
15
+ <div class="py-5 pt-2">
16
+ {% for category in project.categories %}
17
+ <span class="text-gray-300 text-sm pr-5 py-1">{{ category }}</span>
18
+ {% endfor %}
19
+ </div>
11
20
 
12
- <div class="absolute bottom-0 py-5">
13
- {% for category in project.categories %}
14
- <span class="text-gray-400 text-sm pr-5 py-1">{{ category }}</span>
15
- {% endfor %}
16
- </div>
17
- </a>
18
- </div>
21
+ <h2 class="text-gray-800 text-2xl mb-3">{{ project.title }}</h2>
22
+
23
+ <div class="absolute bottom-0">
24
+ <div class="h-36 overflow-hidden w-4/5 mx-auto">
25
+ <img src="{{ project.thumbnail }}" alt="{{ project.title }}">
26
+ </div>
27
+ </div>
28
+ </a>
29
+ </div>
19
30
  {% endfor %}
20
31
  </div>
32
+
33
+ {%- if page.projects -%}
34
+ <div class="flex justify-center my-5">
35
+ <a href="{{ page.projects.url }}" class="btn border-primary-700 border rounded-md text-center text-primary-700 hover:bg-primary-700 hover:text-white transition-all">{{ page.projects.see_more_label }}</a>
36
+ </div>
37
+ {%- endif -%}
21
38
  </div>
@@ -2,7 +2,7 @@
2
2
  <div class="social-media fixed bottom-0 h-screen-1/2 hidden md:block sm:left-3 md:left-4 lg:left-9">
3
3
  <div class="relative h-full">
4
4
 
5
- <div class="bg-gray-100">
5
+ <div class="bg-gray-100 dark:bg-gray-900">
6
6
  {%- if social.email -%}
7
7
  <a href="mailto:{{ social.email | cgi_escape | escape }}" class="text-primary-700 text-lg block p-3">
8
8
  {%- include svg/envelope.svg -%}
@@ -16,7 +16,7 @@
16
16
  {%- endif -%}
17
17
 
18
18
  {%- if social.linkedin -%}
19
- <a href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" class="text-primary-700 text-lg block p-3">
19
+ <a href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" target="_blank" class="text-primary-700 text-lg block p-3">
20
20
  {%- include svg/linkedin.svg -%}
21
21
  </a>
22
22
  {%- endif -%}
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="moon" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-moon fa-w-16"><path fill="currentColor" d="M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z" class=""></path></svg>
@@ -0,0 +1 @@
1
+ <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="sun" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-sun fa-w-16"><path fill="currentColor" d="M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z" class=""></path></svg>
@@ -0,0 +1,17 @@
1
+ <div class="toolbox fixed bottom-0 h-screen-1/2 hidden md:block sm:right-3 md:right-4 lg:right-9">
2
+ <div class="relative h-full">
3
+ <div class="bg-gray-100 dark:bg-gray-900">
4
+ <a class="cursor-pointer text-primary-700" data-night-mode-toggler alt="Toggle night mode">
5
+ <div class="day hidden dark:inline">
6
+ {%- include svg/sun.svg -%}
7
+ </div>
8
+
9
+ <div class="night dark:hidden">
10
+ {%- include svg/moon.svg -%}
11
+ </div>
12
+ </a>
13
+ </div>
14
+
15
+ <div class="vertical-line h-full absolute top-0 bottom-0 bg-primary-700 -z-10" style="width: 2px; left: calc(50% - 1px);"></div>
16
+ </div>
17
+ </div>
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% assign collection = page.collection %}
6
+
7
+ {%- if page.lang -%}
8
+ {% assign items = site[collection] | where: "lang", page.lang %}
9
+ {%- else -%}
10
+ {% assign items = site[collection] %}
11
+ {%- endif -%}
12
+
13
+ <div class="row">
14
+ {% for item in items %}
15
+ <div class="col w-full sm:w-1/2 md:w-1/3 entries-{{ collection }}">
16
+ <a href="{{ item.url }}" class="card p-5 bg-gray-50 dark:bg-gray-800 hover:shadow-lg rounded-md relative transition-all border-t-4 border-primary-600 block mb-3">
17
+ <h2 class="text-gray-800 dark:text-gray-100 text-xl mb-3">{{ item.title }}</h2>
18
+ <p class="text-gray-500">{{ item.excerpt }}</p>
19
+ </a>
20
+ </div>
21
+ {% endfor %}
22
+ </div>
@@ -8,10 +8,10 @@
8
8
 
9
9
  <link rel="stylesheet" href="/assets/styles.css">
10
10
  <link rel="preconnect" href="https://fonts.gstatic.com">
11
- <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
11
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap" rel="stylesheet">
12
12
  </head>
13
13
 
14
- <body class="bg-gray-100">
14
+ <body class="bg-gray-100 dark:bg-gray-900">
15
15
  {%- include header.html -%}
16
16
 
17
17
  <main class="container mx-auto pt-32">
@@ -20,8 +20,11 @@
20
20
 
21
21
  {%- include social.html -%}
22
22
 
23
+ {%- include toolbox.html -%}
24
+
23
25
  <div class="overlay hidden bg-gray-900 opacity-60 absolute top-0 bottom-0 w-full z-0 transition-all"></div>
24
26
 
27
+ {% include analytics.html %}
25
28
  <script async src="/assets/scripts.bundle.js"></script>
26
29
  </body>
27
30
 
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post">
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
8
+
9
+ {%- if site.disqus.shortname -%}
10
+ {%- include disqus_comments.html -%}
11
+ {%- endif -%}
12
+ </article>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article class="post">
6
+ <h1 class="text-3xl text-primary-700 dark:text-gray-100 mb-10">{{ page.title }}</h1>
7
+
8
+ <img class="mx-auto mb-10" src="{{ page.thumbnail }}" alt="{{ page.title }}">
9
+
10
+ <h2 class="text-2xl text-primary-700 dark:text-gray-100 mb-10">About this project</h2>
11
+ {{ content }}
12
+ </article>
@@ -1 +1 @@
1
- (()=>{"use strict";function e(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}var t=function(){function t(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this.panels=[],this.init()}var n,a;return n=t,(a=[{key:"init",value:function(){var e=this;document.querySelectorAll("[nav-toggler]").forEach((function(t){t.addEventListener("click",(function(e){e.preventDefault(),e.stopPropagation(),document.querySelector("body").classList.toggle("nav-opened")})),e.panels.push(document.querySelector(t.getAttribute("href")))})),window.onclick=function(t){e.elementIsAPanel(t.target)||document.querySelector("body").classList.remove("nav-opened")}}},{key:"elementIsAPanel",value:function(e){var t=!1;return this.panels.forEach((function(n){n==e&&(t=!0)})),t}}])&&e(n.prototype,a),t}();function n(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}var a=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.init()}var t,a;return t=e,(a=[{key:"init",value:function(){var e=this,t=document.querySelectorAll('[data-toggle="pill"]');if(console.log("Found ".concat(t.length," pills on this page")),t.forEach((function(t){t.addEventListener("click",(function(t){t.preventDefault();var n=t.target.getAttribute("href");e.deactivateAllPills(t.target),t.target.classList.add("active");var a=document.querySelector(n);e.hideAllTabs(a).then((function(){a.classList.add("active"),setTimeout((function(){a.classList.add("show")}),100)}))}))})),t.length>0){var n=document.querySelector(t[0].getAttribute("href"));n.classList.add("show"),n.classList.add("active")}}},{key:"deactivateAllPills",value:function(e){e.parentNode.querySelectorAll('[data-toggle="pill"]').forEach((function(e){e.classList.remove("show"),e.classList.remove("active")}))}},{key:"hideAllTabs",value:function(e){var t=[];return e.parentNode.querySelectorAll('[role="tabpanel"]').forEach((function(e){e.classList.remove("show"),t.push(new Promise((function(t){setTimeout((function(){e.classList.remove("active"),t()}),100)})))})),Promise.all(t)}}])&&n(t.prototype,a),e}();new t,new a})();
1
+ (()=>{"use strict";function e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}var t=function(){function t(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this.panels=[],this.init()}var n,o;return n=t,(o=[{key:"init",value:function(){var e=this;document.querySelectorAll("[nav-toggler]").forEach((function(t){t.addEventListener("click",(function(e){e.preventDefault(),e.stopPropagation(),document.querySelector("body").classList.toggle("nav-opened")})),e.panels.push(document.querySelector(t.getAttribute("href")))})),window.onclick=function(t){e.elementIsAPanel(t.target)||document.querySelector("body").classList.remove("nav-opened")}}},{key:"elementIsAPanel",value:function(e){var t=!1;return this.panels.forEach((function(n){n==e&&(t=!0)})),t}}])&&e(n.prototype,o),t}();function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}var o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.init()}var t,o;return t=e,(o=[{key:"init",value:function(){var e=this,t=document.querySelectorAll('[data-toggle="pill"]');if(console.log("Found ".concat(t.length," pills on this page")),t.forEach((function(t){t.addEventListener("click",(function(t){t.preventDefault();var n=t.target.getAttribute("href");e.deactivateAllPills(t.target),t.target.classList.add("active");var o=document.querySelector(n);e.hideAllTabs(o).then((function(){o.classList.add("active"),setTimeout((function(){o.classList.add("show")}),100)}))}))})),t.length>0){var n=document.querySelector(t[0].getAttribute("href"));n.classList.add("show"),n.classList.add("active")}}},{key:"deactivateAllPills",value:function(e){e.parentNode.querySelectorAll('[data-toggle="pill"]').forEach((function(e){e.classList.remove("show"),e.classList.remove("active")}))}},{key:"hideAllTabs",value:function(e){var t=[];return e.parentNode.querySelectorAll('[role="tabpanel"]').forEach((function(e){e.classList.remove("show"),t.push(new Promise((function(t){setTimeout((function(){e.classList.remove("active"),t()}),100)})))})),Promise.all(t)}}])&&n(t.prototype,o),e}();function a(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}var r=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.init()}var t,n;return t=e,(n=[{key:"init",value:function(){var e=this;this.setThemeOption(this.getThemeOption()),document.querySelectorAll("[data-night-mode-toggler]").forEach((function(t){t.addEventListener("click",(function(t){e.toggleThemeOption()}))}))}},{key:"toggleThemeOption",value:function(){var e=this.getThemeOption();document.querySelector("html").classList.add("night-mode-transitioning"),e="dark"==e?"light":"dark",this.setThemeOption(e),setTimeout((function(){document.querySelector("html").classList.remove("night-mode-transitioning")}),500)}},{key:"getDefaultThemeOption",value:function(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}},{key:"getThemeOption",value:function(){return localStorage.getItem("theme")||this.getDefaultThemeOption()}},{key:"setThemeOption",value:function(e){"dark"==e?document.querySelector("html").classList.add("dark"):document.querySelector("html").classList.remove("dark"),localStorage.setItem("theme",e)}}])&&a(t.prototype,n),e}();function i(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}var l=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.panels=[],this.lastScrollTop=0,this.init()}var t,n;return t=e,(n=[{key:"init",value:function(){var e=this;document.querySelectorAll("[data-collapse]").forEach((function(t){e.panels.push(t)})),window.addEventListener("scroll",(function(t){e.panels.forEach((function(t){var n=t.dataset.collapseTriggerHeight,o=window.pageYOffset||document.documentElement.scrollTop,a=o>e.lastScrollTop;e.lastScrollTop=o<=0?0:o,window.scrollY>n&&(t.style.transform=a?"translateY(".concat(-1*t.clientHeight,"px)"):"")}))}))}}])&&i(t.prototype,n),e}();function c(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}var s=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.init()}var t,n;return t=e,(n=[{key:"init",value:function(){document.querySelectorAll("[data-anchor-transition").forEach((function(e){e.addEventListener("click",(function(e){e.preventDefault();for(var t=e.target;t&&!(t instanceof HTMLAnchorElement);)t=t.parentNode;var n=t.getAttribute("href"),o=document.querySelector(n);return!!o&&(window.scroll({top:o.offsetTop,left:0,behavior:"smooth"}),!1)}))}))}}])&&c(t.prototype,n),e}();new t,new o,new r,new l,new s})();
@@ -21,8 +21,7 @@ Use a more readable tab size (opinionated).
21
21
 
22
22
  :root {
23
23
  -moz-tab-size: 4;
24
- -o-tab-size: 4;
25
- tab-size: 4;
24
+ tab-size: 4;
26
25
  }
27
26
 
28
27
  /**
@@ -54,7 +53,8 @@ Improve consistency of default fonts in all browsers. (https://github.com/sindre
54
53
 
55
54
  body {
56
55
  font-family:
57
- system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif,
56
+ system-ui,
57
+ -apple-system, /* Firefox supports this but not yet `system-ui` */
58
58
  'Segoe UI',
59
59
  Roboto,
60
60
  Helvetica,
@@ -89,8 +89,7 @@ Add the correct text decoration in Chrome, Edge, and Safari.
89
89
  */
90
90
 
91
91
  abbr[title] {
92
- -webkit-text-decoration: underline dotted;
93
- text-decoration: underline dotted;
92
+ text-decoration: underline dotted;
94
93
  }
95
94
 
96
95
  /**
@@ -199,8 +198,7 @@ select { /* 1 */
199
198
  Correct the inability to style clickable types in iOS and Safari.
200
199
  */
201
200
 
202
- button,
203
- [type='button'] {
201
+ button {
204
202
  -webkit-appearance: button;
205
203
  }
206
204
 
@@ -404,14 +402,6 @@ textarea {
404
402
  resize: vertical;
405
403
  }
406
404
 
407
- input::-moz-placeholder, textarea::-moz-placeholder {
408
- color: #9ca3af;
409
- }
410
-
411
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
412
- color: #9ca3af;
413
- }
414
-
415
405
  input::placeholder,
416
406
  textarea::placeholder {
417
407
  color: #9ca3af;
@@ -577,6 +567,21 @@ video {
577
567
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
578
568
  }
579
569
 
570
+ .hover\:bg-primary-700:hover {
571
+ --tw-bg-opacity: 1;
572
+ background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
573
+ }
574
+
575
+ .dark .dark\:bg-gray-800 {
576
+ --tw-bg-opacity: 1;
577
+ background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
578
+ }
579
+
580
+ .dark .dark\:bg-gray-900 {
581
+ --tw-bg-opacity: 1;
582
+ background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
583
+ }
584
+
580
585
  .border-gray-200 {
581
586
  --tw-border-opacity: 1;
582
587
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
@@ -587,6 +592,16 @@ video {
587
592
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
588
593
  }
589
594
 
595
+ .border-primary-700 {
596
+ --tw-border-opacity: 1;
597
+ border-color: rgba(67, 56, 202, var(--tw-border-opacity));
598
+ }
599
+
600
+ .dark .dark\:border-gray-800 {
601
+ --tw-border-opacity: 1;
602
+ border-color: rgba(31, 41, 55, var(--tw-border-opacity));
603
+ }
604
+
590
605
  .rounded-md {
591
606
  border-radius: 0.375rem;
592
607
  }
@@ -595,6 +610,10 @@ video {
595
610
  border-radius: 0.5rem;
596
611
  }
597
612
 
613
+ .border {
614
+ border-width: 1px;
615
+ }
616
+
598
617
  .border-t-4 {
599
618
  border-top-width: 4px;
600
619
  }
@@ -603,6 +622,10 @@ video {
603
622
  border-bottom-width: 1px;
604
623
  }
605
624
 
625
+ .cursor-pointer {
626
+ cursor: pointer;
627
+ }
628
+
606
629
  .block {
607
630
  display: block;
608
631
  }
@@ -623,6 +646,14 @@ video {
623
646
  display: none;
624
647
  }
625
648
 
649
+ .dark .dark\:inline {
650
+ display: inline;
651
+ }
652
+
653
+ .dark .dark\:hidden {
654
+ display: none;
655
+ }
656
+
626
657
  .flex-col {
627
658
  flex-direction: column;
628
659
  }
@@ -639,6 +670,10 @@ video {
639
670
  justify-content: center;
640
671
  }
641
672
 
673
+ .h-36 {
674
+ height: 9rem;
675
+ }
676
+
642
677
  .h-full {
643
678
  height: 100%;
644
679
  }
@@ -662,6 +697,11 @@ video {
662
697
  line-height: 1.75rem;
663
698
  }
664
699
 
700
+ .text-2xl {
701
+ font-size: 1.5rem;
702
+ line-height: 2rem;
703
+ }
704
+
665
705
  .text-3xl {
666
706
  font-size: 1.875rem;
667
707
  line-height: 2.25rem;
@@ -702,6 +742,10 @@ video {
702
742
  opacity: 0.6;
703
743
  }
704
744
 
745
+ .overflow-hidden {
746
+ overflow: hidden;
747
+ }
748
+
705
749
  .p-3 {
706
750
  padding: 0.75rem;
707
751
  }
@@ -710,6 +754,11 @@ video {
710
754
  padding: 1.25rem;
711
755
  }
712
756
 
757
+ .py-1 {
758
+ padding-top: 0.25rem;
759
+ padding-bottom: 0.25rem;
760
+ }
761
+
713
762
  .py-4 {
714
763
  padding-top: 1rem;
715
764
  padding-bottom: 1rem;
@@ -725,6 +774,14 @@ video {
725
774
  padding-right: 2rem;
726
775
  }
727
776
 
777
+ .pt-2 {
778
+ padding-top: 0.5rem;
779
+ }
780
+
781
+ .pr-5 {
782
+ padding-right: 1.25rem;
783
+ }
784
+
728
785
  .pl-5 {
729
786
  padding-left: 1.25rem;
730
787
  }
@@ -766,13 +823,12 @@ video {
766
823
  }
767
824
 
768
825
  * {
769
- --tw-shadow: 0 0 rgba(0,0,0,0);
826
+ --tw-shadow: 0 0 #0000;
770
827
  }
771
828
 
772
829
  .hover\:shadow-lg:hover {
773
830
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
774
- box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow);
775
- box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
831
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
776
832
  }
777
833
 
778
834
  * {
@@ -780,8 +836,8 @@ video {
780
836
  --tw-ring-offset-width: 0px;
781
837
  --tw-ring-offset-color: #fff;
782
838
  --tw-ring-color: rgba(59, 130, 246, 0.5);
783
- --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
784
- --tw-ring-shadow: 0 0 rgba(0,0,0,0);
839
+ --tw-ring-offset-shadow: 0 0 #0000;
840
+ --tw-ring-shadow: 0 0 #0000;
785
841
  }
786
842
 
787
843
  .text-center {
@@ -792,6 +848,11 @@ video {
792
848
  text-align: right;
793
849
  }
794
850
 
851
+ .text-gray-300 {
852
+ --tw-text-opacity: 1;
853
+ color: rgba(209, 213, 219, var(--tw-text-opacity));
854
+ }
855
+
795
856
  .text-gray-400 {
796
857
  --tw-text-opacity: 1;
797
858
  color: rgba(156, 163, 175, var(--tw-text-opacity));
@@ -817,6 +878,16 @@ video {
817
878
  color: rgba(255, 255, 255, var(--tw-text-opacity));
818
879
  }
819
880
 
881
+ .hover\:text-white:hover {
882
+ --tw-text-opacity: 1;
883
+ color: rgba(255, 255, 255, var(--tw-text-opacity));
884
+ }
885
+
886
+ .dark .dark\:text-gray-100 {
887
+ --tw-text-opacity: 1;
888
+ color: rgba(243, 244, 246, var(--tw-text-opacity));
889
+ }
890
+
820
891
  .w-64 {
821
892
  width: 16rem;
822
893
  }
@@ -833,6 +904,10 @@ video {
833
904
  width: 75%;
834
905
  }
835
906
 
907
+ .w-4\/5 {
908
+ width: 80%;
909
+ }
910
+
836
911
  .w-full {
837
912
  width: 100%;
838
913
  }
@@ -859,10 +934,8 @@ video {
859
934
  transition-duration: 150ms;
860
935
  }
861
936
 
862
- @-webkit-keyframes spin {
863
- to {
864
- transform: rotate(360deg);
865
- }
937
+ .duration-500 {
938
+ transition-duration: 500ms;
866
939
  }
867
940
 
868
941
  @keyframes spin {
@@ -871,13 +944,6 @@ video {
871
944
  }
872
945
  }
873
946
 
874
- @-webkit-keyframes ping {
875
- 75%, 100% {
876
- transform: scale(2);
877
- opacity: 0;
878
- }
879
- }
880
-
881
947
  @keyframes ping {
882
948
  75%, 100% {
883
949
  transform: scale(2);
@@ -885,44 +951,67 @@ video {
885
951
  }
886
952
  }
887
953
 
888
- @-webkit-keyframes pulse {
889
- 50% {
890
- opacity: .5;
891
- }
892
- }
893
-
894
954
  @keyframes pulse {
895
955
  50% {
896
956
  opacity: .5;
897
957
  }
898
958
  }
899
959
 
900
- @-webkit-keyframes bounce {
960
+ @keyframes bounce {
901
961
  0%, 100% {
902
962
  transform: translateY(-25%);
903
- -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
904
- animation-timing-function: cubic-bezier(0.8,0,1,1);
963
+ animation-timing-function: cubic-bezier(0.8,0,1,1);
905
964
  }
906
965
 
907
966
  50% {
908
967
  transform: none;
909
- -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
910
- animation-timing-function: cubic-bezier(0,0,0.2,1);
968
+ animation-timing-function: cubic-bezier(0,0,0.2,1);
911
969
  }
912
970
  }
913
971
 
914
- @keyframes bounce {
915
- 0%, 100% {
916
- transform: translateY(-25%);
917
- -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
918
- animation-timing-function: cubic-bezier(0.8,0,1,1);
919
- }
972
+ pre {
973
+ background: #222;
974
+ color: #ffffff;
975
+ padding: 10px;
976
+ overflow: auto;
977
+ width: 100%;
978
+ }
920
979
 
921
- 50% {
922
- transform: none;
923
- -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
924
- animation-timing-function: cubic-bezier(0,0,0.2,1);
925
- }
980
+ pre code {
981
+ width: auto;
982
+ }
983
+
984
+ .highlight .cm {
985
+ color: #608B4E;
986
+ }
987
+
988
+ .highlight .kd,
989
+ .highlight .kc {
990
+ color: #3F9CCA;
991
+ }
992
+
993
+ .highlight .nx {
994
+ color: #68D0FE;
995
+ }
996
+
997
+ .highlight .k {
998
+ color: #C586A1;
999
+ }
1000
+
1001
+ .highlight .p {
1002
+ color: #DCD285;
1003
+ }
1004
+
1005
+ .highlight .s2 {
1006
+ color: #CE743A;
1007
+ }
1008
+
1009
+ .highlight .mi {
1010
+ color: #B5CEA8;
1011
+ }
1012
+
1013
+ .highlighter-rouge {
1014
+ margin-bottom: 1.25rem
926
1015
  }
927
1016
 
928
1017
  svg:not(:root).svg-inline--fa {
@@ -971,6 +1060,120 @@ svg:not(:root).svg-inline--fa {
971
1060
  border-left: solid 4.2426px #4338ca;
972
1061
  }
973
1062
 
1063
+ .dark .hexagon {
1064
+ background-color: var(--bg-gray-700);
1065
+ }
1066
+
1067
+ .post h1 {
1068
+ font-weight: 600;
1069
+ font-size: 1.875rem;
1070
+ line-height: 2.25rem;
1071
+ margin-bottom: 1.25rem;
1072
+ --tw-text-opacity: 1;
1073
+ color: rgba(67, 56, 202, var(--tw-text-opacity))
1074
+ }
1075
+
1076
+ .post h2 {
1077
+ font-weight: 600;
1078
+ font-size: 1.25rem;
1079
+ line-height: 1.75rem;
1080
+ margin-bottom: 1.25rem;
1081
+ margin-top: 2.5rem;
1082
+ --tw-text-opacity: 1;
1083
+ color: rgba(67, 56, 202, var(--tw-text-opacity))
1084
+ }
1085
+
1086
+ .post p {
1087
+ font-weight: 300;
1088
+ line-height: 2.25rem;
1089
+ --tw-text-opacity: 1;
1090
+ color: rgba(17, 24, 39, var(--tw-text-opacity));
1091
+ letter-spacing: 0.025em
1092
+ }
1093
+
1094
+ .dark .post p {
1095
+ font-weight: 300;
1096
+ line-height: 2.25rem;
1097
+ --tw-text-opacity: 1;
1098
+ color: rgba(243, 244, 246, var(--tw-text-opacity));
1099
+ letter-spacing: 0.025em
1100
+ }
1101
+
1102
+ .row {
1103
+ display: flex;
1104
+ flex-wrap: wrap;
1105
+ margin-left: -0.75rem;
1106
+ margin-right: -0.75rem
1107
+ }
1108
+
1109
+ .col {
1110
+ padding-left: 0.75rem;
1111
+ padding-right: 0.75rem
1112
+ }
1113
+
1114
+ .card {
1115
+ min-height: 16rem
1116
+ }
1117
+
1118
+ .card.featured {
1119
+ --tw-bg-opacity: 1;
1120
+ background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
1121
+ border-radius: 0.375rem;
1122
+ display: block;
1123
+ margin-bottom: 0.75rem;
1124
+ padding: 1.25rem;
1125
+ padding-bottom: 12rem;
1126
+ position: relative;
1127
+ --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
1128
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1129
+ --tw-translate-x: 0;
1130
+ --tw-translate-y: 0;
1131
+ --tw-rotate: 0;
1132
+ --tw-skew-x: 0;
1133
+ --tw-skew-y: 0;
1134
+ --tw-scale-x: 1;
1135
+ --tw-scale-y: 1;
1136
+ transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1137
+ transition-property: all;
1138
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1139
+ transition-duration: 150ms;
1140
+ transition-duration: 300ms;
1141
+ }
1142
+
1143
+ .card.featured h2, .card.featured p, .card.featured span {
1144
+ transition-property: all;
1145
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1146
+ transition-duration: 150ms;
1147
+ transition-duration: 300ms
1148
+ }
1149
+
1150
+ .dark .card.featured {
1151
+ --tw-bg-opacity: 1;
1152
+ background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
1153
+ }
1154
+
1155
+ .dark .card.featured h2 {
1156
+ --tw-text-opacity: 1;
1157
+ color: rgba(255, 255, 255, var(--tw-text-opacity))
1158
+ }
1159
+
1160
+ .card.featured:hover {
1161
+ --tw-bg-opacity: 1;
1162
+ background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
1163
+ --tw-scale-x: 0.98;
1164
+ --tw-scale-y: 0.98;
1165
+ }
1166
+
1167
+ .card.featured:hover h2 {
1168
+ --tw-text-opacity: 1;
1169
+ color: rgba(255, 255, 255, var(--tw-text-opacity))
1170
+ }
1171
+
1172
+ .card.featured:hover p, .card.featured:hover span {
1173
+ --tw-text-opacity: 1;
1174
+ color: rgba(165, 180, 252, var(--tw-text-opacity))
1175
+ }
1176
+
974
1177
  .btn {
975
1178
  border-radius: 0.5rem;
976
1179
  padding-top: 0.5rem;
@@ -1018,15 +1221,15 @@ p {
1018
1221
  }
1019
1222
 
1020
1223
  .experience ul {
1021
- list-style-type: disc;
1022
- padding-left: 0.75rem;
1023
- --tw-text-opacity: 1;
1024
- color: rgba(107, 114, 128, var(--tw-text-opacity))
1025
- }
1224
+ list-style-type: disc;
1225
+ padding-left: 0.75rem;
1226
+ --tw-text-opacity: 1;
1227
+ color: rgba(107, 114, 128, var(--tw-text-opacity))
1228
+ }
1026
1229
 
1027
1230
  .experience li {
1028
- margin-bottom: 0.75rem
1029
- }
1231
+ margin-bottom: 0.75rem
1232
+ }
1030
1233
 
1031
1234
  .btn-primary {
1032
1235
  --tw-bg-opacity: 1;
@@ -1034,12 +1237,12 @@ p {
1034
1237
  }
1035
1238
 
1036
1239
  .nav-opened aside {
1037
- right: 0;
1038
- }
1240
+ right: 0;
1241
+ }
1039
1242
 
1040
1243
  .nav-opened .overlay {
1041
- display: block;
1042
- }
1244
+ display: block;
1245
+ }
1043
1246
 
1044
1247
  body {
1045
1248
  --white: #fff;
@@ -1065,27 +1268,16 @@ body {
1065
1268
  --gray-900: #111827;
1066
1269
  }
1067
1270
 
1068
- .transition-all {
1069
- transition: all 0.5s !important;
1070
- }
1071
-
1072
- .row {
1073
- display: flex;
1074
- flex-wrap: wrap;
1075
- margin-left: -0.75rem;
1076
- margin-right: -0.75rem
1077
- }
1078
-
1079
- .col {
1080
- padding-left: 0.75rem;
1081
- padding-right: 0.75rem
1082
- }
1083
-
1084
- .card {
1085
- min-height: 16rem
1271
+ .night-mode-transitioning * {
1272
+ transition-property: all;
1273
+ transition-duration: 500ms;
1086
1274
  }
1087
1275
 
1088
1276
  @media (min-width: 640px) {
1277
+ .sm\:right-3 {
1278
+ right: 0.75rem;
1279
+ }
1280
+
1089
1281
  .sm\:left-3 {
1090
1282
  left: 0.75rem;
1091
1283
  }
@@ -1120,6 +1312,10 @@ body {
1120
1312
  padding-top: 10rem;
1121
1313
  }
1122
1314
 
1315
+ .md\:right-4 {
1316
+ right: 1rem;
1317
+ }
1318
+
1123
1319
  .md\:left-4 {
1124
1320
  left: 1rem;
1125
1321
  }
@@ -1142,6 +1338,10 @@ body {
1142
1338
  }
1143
1339
 
1144
1340
  @media (min-width: 1024px) {
1341
+ .lg\:right-9 {
1342
+ right: 2.25rem;
1343
+ }
1344
+
1145
1345
  .lg\:left-9 {
1146
1346
  left: 2.25rem;
1147
1347
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-waterfall
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo-Vargas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-12 00:00:00.000000000 Z
11
+ date: 2020-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -34,6 +34,8 @@ files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
36
  - _config.yml
37
+ - _includes/analytics.html
38
+ - _includes/disqus_comments.html
37
39
  - _includes/experience.html
38
40
  - _includes/header.html
39
41
  - _includes/last_posts.html
@@ -44,8 +46,14 @@ files:
44
46
  - _includes/svg/envelope.svg
45
47
  - _includes/svg/github.svg
46
48
  - _includes/svg/linkedin.svg
49
+ - _includes/svg/moon.svg
50
+ - _includes/svg/sun.svg
51
+ - _includes/toolbox.html
52
+ - _layouts/collection.html
47
53
  - _layouts/default.html
48
54
  - _layouts/home.html
55
+ - _layouts/post.html
56
+ - _layouts/project.html
49
57
  - assets/scripts.bundle.js
50
58
  - assets/styles.css
51
59
  homepage: https://rodrigovargas.com.br