imdhemy-jekyll-theme 0.1.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +2 -0
- data/_data/.gitinclude +0 -0
- data/_includes/archive-header.html +13 -0
- data/_includes/content.html +3 -0
- data/_includes/contributions.html +20 -0
- data/_includes/footer.html +10 -0
- data/_includes/header.html +54 -0
- data/_includes/hero.html +16 -0
- data/_includes/latest-posts.html +18 -0
- data/_includes/math.html +12 -0
- data/_includes/page-header.html +10 -0
- data/_includes/pagination-links.html +19 -0
- data/_includes/post-header.html +32 -0
- data/_includes/post-item.html +24 -0
- data/_includes/post-tags.html +9 -0
- data/_includes/social.html +26 -0
- data/_includes/testimonials.html +36 -0
- data/_layouts/archive.html +13 -0
- data/_layouts/blog.html +16 -0
- data/_layouts/default.html +34 -0
- data/_layouts/home.html +12 -0
- data/_layouts/page.html +8 -0
- data/_layouts/post.html +6 -0
- data/_sass/.gitinclude +0 -0
- data/_sass/_highlight.scss +374 -0
- data/_sass/style.scss +275 -0
- data/_sass/tailwind.src.scss +4 -0
- data/assets/css/main.scss +8 -0
- data/assets/css/tailwind.css +1 -0
- data/assets/js/dist/main.js +1 -0
- data/assets/js/src/index.js +1 -0
- metadata +89 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1515c0ede2f0e2f57a4ba4a73ab0d572884b971d7d403eddfc3eb10effc63711
|
4
|
+
data.tar.gz: 7fd36ddbd7002a8942de8be2395de69e6498c62947d1db15437898729b73ace4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 74e4c503fbcdc91e5b21a1076f0928286dec9d50350a883460bdefce263f33b2d0090d59764e0163a48f620b06367d225ea404d37785d44c31fe44c4966e46bb
|
7
|
+
data.tar.gz: cab8c356554ef5cb0e598eda95ebad05bce0897209183d74af96e4ee8638eed3abf6a120f0e3ffb92478ac661ac7a23704de4e83b04b82782b29fec1b65ebae2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2022 Mohamad Eldhemy
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
data/_data/.gitinclude
ADDED
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<section class="bg-white p-0">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="max-w-screen-md mx-auto border-b border-b-gray-200 py-16 mb-16">
|
4
|
+
<div class="flex-col px-5 lg:px-0">
|
5
|
+
<h1 class="text-8xl mb-8 font-bold text-center relative">{{ page.title }}</h1>
|
6
|
+
<p class="text-center text-xl text-gray-700">Check out the <a
|
7
|
+
class="text-black font-bold border-b-2 border-transparent hover:border-b-violet-600 ease-in duration-300"
|
8
|
+
href="{{ site.baseurl }}/blog">blog</a> for all
|
9
|
+
posts.</p>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</section>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<section class="mb-8">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="p-5 max-w-screen-lg mx-auto">
|
4
|
+
<h2 class="text-3xl font-bold text-center mb-8">Contributions</h2>
|
5
|
+
|
6
|
+
<p class="text-center text-2xl text-gray-500 mb-8">I have contributed to some great projects</p>
|
7
|
+
|
8
|
+
<div class="grid gap-4 grid-cols-1 lg:grid-cols-3">
|
9
|
+
{% for contribution in site.contributions %}
|
10
|
+
<div class="py-5 flex items-center flex-col">
|
11
|
+
<a href="{{ contribution.url }}" class="block ease-linear">
|
12
|
+
<img src="{{ site.baseurl }}{{ contribution.logo }}"
|
13
|
+
class="h-8 block" alt="{{ contribution.name }}">
|
14
|
+
</a>
|
15
|
+
</div>
|
16
|
+
{% endfor %}
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</section>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<section class="sticky top-[100vh]">
|
2
|
+
<div class="p-10">
|
3
|
+
<div class="max-w-screen-md mx-auto">
|
4
|
+
<p class="text-center">
|
5
|
+
<!-- 2001 - jekyll current year -->
|
6
|
+
© 2021 - {{ site.time | date: '%Y' }} . imdhemy.com Published by Jekyll, hosted on GitHub Pages.
|
7
|
+
</p>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</section>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<header class="relative" id="main-header">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="flex py-6 lg:py-14 p-5 lg:px-0">
|
4
|
+
<!-- begin logo -->
|
5
|
+
<div class="flex-auto">
|
6
|
+
<div>
|
7
|
+
<a href="{{ site.baseurl }}/" class="text-gray-900 text-3xl font-bold">
|
8
|
+
{{ site.title }}
|
9
|
+
</a>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
<!-- end logo -->
|
13
|
+
<!-- begin right part -->
|
14
|
+
<div class="flex-auto">
|
15
|
+
<div class="flex justify-end lg:hidden">
|
16
|
+
<button type="button">
|
17
|
+
<ion-icon name="menu-outline"></ion-icon>
|
18
|
+
</button>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
<div class="hidden lg:flex justify-end">
|
22
|
+
<ul class="flex items-center">
|
23
|
+
{% for page in site.navigation %}
|
24
|
+
<li class="ml-10">
|
25
|
+
<a href="{{ site.baseurl }}{{ page.url }}"
|
26
|
+
class="text-base font-semibold p-2 text-gray-900 ease-linear hover:text-blue-600 active:text-blue-600">
|
27
|
+
{{ page.title }}
|
28
|
+
</a>
|
29
|
+
</li>
|
30
|
+
{% endfor %}
|
31
|
+
</ul>
|
32
|
+
</div>
|
33
|
+
<!-- end right part -->
|
34
|
+
</div>
|
35
|
+
<!-- begin mobile nav -->
|
36
|
+
<nav id="mobile-nav"
|
37
|
+
class="-z-10 opacity-0 absolute top-32 right-6 block min-w-fit w-40 bg-white p-5 rounded-md shadow-md ease-linear">
|
38
|
+
<div class="ml-auto">
|
39
|
+
<ul class="p-0 m-0 flex-column items-center">
|
40
|
+
{% for page in site.navigation %}
|
41
|
+
<li class="block flex-1 w-full m-0">
|
42
|
+
<a href="{{ site.baseurl }}{{ page.url }}"
|
43
|
+
class="block text-right text-base font-semibold p-2 text-gray-900 ease-linear hover:text-blue-600 active:text-blue-600">
|
44
|
+
{{ page.title }}
|
45
|
+
</a>
|
46
|
+
</li>
|
47
|
+
{% endfor %}
|
48
|
+
</ul>
|
49
|
+
</div>
|
50
|
+
</nav>
|
51
|
+
<!-- end mobile nav -->
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
</header>
|
data/_includes/hero.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
<section class="bg-white py-16">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="flex flex-col items-center flex-wrap">
|
4
|
+
<div class="flex-1 px-8 max-w-2xl">
|
5
|
+
<div class="text-center mx-auto">
|
6
|
+
<h1 class="text-3xl lg:text-6xl mb-8 lg:text-5xl font-bold">
|
7
|
+
Hi, I'm <span class="text-blue-500">{{ site.author.name }}</span>
|
8
|
+
</h1>
|
9
|
+
<p class="text-lg lg:text-2xl leading-8 lg:leading-10 text-gray-500">
|
10
|
+
{{ site.author.description }}
|
11
|
+
</p>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</section>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<section class="mb-8">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="p-5">
|
4
|
+
<h2 class="text-3xl font-bold text-center mb-8">Latest Posts</h2>
|
5
|
+
<div class="max-w-screen-md mx-auto">
|
6
|
+
{% for post in site.posts limit:3 %}
|
7
|
+
{% include post-item.html %}
|
8
|
+
{% endfor %}
|
9
|
+
</div>
|
10
|
+
<div class="mt-16 text-center">
|
11
|
+
<a href="{{ site.baseurl }}/blog"
|
12
|
+
class="py-4 px-6 bg-violet-700 text-lg font-semibold rounded-3xl text-white ease-in duration-300 hover:bg-violet-800">
|
13
|
+
All Posts →
|
14
|
+
</a>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</section>
|
data/_includes/math.html
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<script>
|
2
|
+
MathJax = {
|
3
|
+
tex: {
|
4
|
+
inlineMath: [['$', '$'], ['\\(', '\\)']],
|
5
|
+
},
|
6
|
+
svg: {
|
7
|
+
fontCache: 'global',
|
8
|
+
},
|
9
|
+
};
|
10
|
+
</script>
|
11
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
12
|
+
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<section class="bg-white p-0">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="max-w-screen-xl mx-auto border-b border-b-gray-200 py-16 mb-16">
|
4
|
+
<div class="flex flex-col lg:flex-row justify-between px-5 lg:px-0">
|
5
|
+
<h1 class="text-8xl mb-8 font-bold">{{ page.title }}</h1>
|
6
|
+
<p class="max-w-screen-sm text-xl text-gray-600">{{ page.description }} </p>
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</section>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{% if paginator.total_pages > 1 %}
|
2
|
+
<section class="mx-auto max-w-screen-md px-5">
|
3
|
+
<nav class="flex items-center justify-between">
|
4
|
+
{% if paginator.previous_page %}
|
5
|
+
<a class="inline-block font-semibold border-b-2 border-transparent hover:border-indigo-600"
|
6
|
+
href="{{ paginator.previous_page_path | relative_url }}">Prev</a>
|
7
|
+
{% else %}
|
8
|
+
<span class="inline-block font-semibold text-gray-300 cursor-not-allowed">Previous</span>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
{% if paginator.next_page %}
|
12
|
+
<a class="inline-block font-semibold border-b-2 border-transparent hover:border-indigo-600"
|
13
|
+
href="{{ paginator.next_page_path | relative_url }}">Next</a>
|
14
|
+
{% else %}
|
15
|
+
<span class="inline-block font-semibold text-gray-300 cursor-not-allowed">Next</span>
|
16
|
+
{% endif %}
|
17
|
+
</nav>
|
18
|
+
</section>
|
19
|
+
{% endif %}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="max-w-screen-lg mx-auto bg-white p-5">
|
2
|
+
<h1 class="font-black font-sans text-2xl lg:text-7xl post-title">{{ page.title }}</h1>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<div class="max-w-screen-md mx-auto bg-white p-5">
|
6
|
+
<div class="flex justify-between flex-wrap my-2">
|
7
|
+
<div class="flex items-center mr-8">
|
8
|
+
<img src="{{ site.baseurl }}/{{ site.author.avatar }}" alt="{{ author.name }}"
|
9
|
+
class="rounded-full w-10 h-10 mr-3 block"/>
|
10
|
+
<div>
|
11
|
+
<p class="text-gray-700 text-sm font-bold">{{ site.author.name }}</p>
|
12
|
+
<p class="text-gray-500 text-xs">
|
13
|
+
{{ page.date | date: "%B %-d, %Y" }} - {{ page.content |
|
14
|
+
number_of_words | divided_by: 200 }} min read
|
15
|
+
</p>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div>
|
21
|
+
{% assign tags = page.tags %}
|
22
|
+
{% include post-tags.html %}
|
23
|
+
</div>
|
24
|
+
|
25
|
+
{% if page.image %}
|
26
|
+
<div class="relative overflow-hidden">
|
27
|
+
<img src="{{ site.baseurl }}/{{ page.image }}"
|
28
|
+
alt="{{ page.title }}"
|
29
|
+
class="w-full h-auto rounded"/>
|
30
|
+
</div>
|
31
|
+
{% endif %}
|
32
|
+
</div>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<article class="flex flex-col lg:flex-row items-center mb-8 pb-8 border-b border-gray-200">
|
2
|
+
<!-- thumbnail -->
|
3
|
+
<a href="{{ site.baseurl }}{{ post.url }}"
|
4
|
+
class="w-full relative block lg:min-w-[250px] lg:max-w-[250px] lg:max-h-[250px] aspect-square lg:mr-5 mb-5 lg:mb-0 rounded-lg overflow-hidden">
|
5
|
+
<img src="{{ site.baseurl }}{{ post.image }}"
|
6
|
+
class="absolute inset-0 w-full h-full object-cover hover:scale-105 ease-in duration-300"
|
7
|
+
alt="{{ post.title }}"/>
|
8
|
+
</a>
|
9
|
+
<!-- content -->
|
10
|
+
<div>
|
11
|
+
{% assign tags = post.tags %}
|
12
|
+
{% include post-tags.html %}
|
13
|
+
<!-- title -->
|
14
|
+
<h2 class="text-3xl font-black mb-5 font-sans">
|
15
|
+
<a class="border-b-2 border-transparent hover:border-b-violet-600 ease-in duration-300"
|
16
|
+
href="{{ site.baseurl }}{{ post.url }}">{{
|
17
|
+
post.title }}</a>
|
18
|
+
</h2>
|
19
|
+
<!-- excerpt -->
|
20
|
+
<div class="text-gray-500 text-lg mb-0">
|
21
|
+
{{ post.excerpt | strip_html | truncatewords: 20 }}
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
</article>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<section class="mb-0 mt-24">
|
2
|
+
<div class="relative py-16">
|
3
|
+
<div class="max-w-screen-md mx-auto">
|
4
|
+
<div class="p-5 text-center">
|
5
|
+
<h3 class="text-white font-sans font-bold text-5xl">{{ site.author.name }}</h3>
|
6
|
+
<div class="relative mb-5 py-10">
|
7
|
+
<ul class="flex items-center justify-center flex-wrap m-0 p-0">
|
8
|
+
{% for social in site.footer.social %}
|
9
|
+
<li class="mr-5">
|
10
|
+
<a class="block bg-white relative w-[48px] h-[48px] rounded-full flex items-center justify-center ease-linear duration-300 hover:bg-indigo-600 hover:text-white"
|
11
|
+
href="{{ social.url }}">
|
12
|
+
<ion-icon name="{{ social.icon }}"></ion-icon>
|
13
|
+
</a>
|
14
|
+
</li>
|
15
|
+
{% endfor %}
|
16
|
+
</ul>
|
17
|
+
</div>
|
18
|
+
<div class="text-xl text-white drop-shadow-md">
|
19
|
+
<p>{{ site.author.description }}</p>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
<div class="bg-[url('{{ site.baseurl }}{{ site.footer.bg_image }}')] opacity-75 absolute top-0 left-0 w-full h-full bg-bottom bg-cover -z-10"></div>
|
24
|
+
<div class="absolute top-0 left-0 w-full h-full bg-black -z-20"></div>
|
25
|
+
</div>
|
26
|
+
</section>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<section class="mb-8">
|
2
|
+
<div class="container mx-auto">
|
3
|
+
<div class="p-5 max-w-screen-lg mx-auto">
|
4
|
+
<h2 class="text-3xl font-bold text-center mb-8">Testimonials</h2>
|
5
|
+
<div class="grid gap-5 grid-cols-1 lg:grid-cols-3">
|
6
|
+
{% for testimonial in site.testimonials %}
|
7
|
+
<!-- Item start -->
|
8
|
+
<div class="w-full">
|
9
|
+
<div class="relative p-8 overflow-hidden bg-violet-100 rounded-3xl">
|
10
|
+
<div class="relative z-1 flex items-center mb-8">
|
11
|
+
<div class="relative w-[68px] h-[68px] mr-3 border-2 border-indigo-600 rounded-full">
|
12
|
+
<img class="absolute top-0 left-0 w-full h-full object-cover rounded-full select-none p-[2px]"
|
13
|
+
src="{{ testimonial.image }}"
|
14
|
+
alt=""/>
|
15
|
+
</div>
|
16
|
+
<div>
|
17
|
+
<h3 class="font-sans mb-1 text-lg font-bold">
|
18
|
+
<a href="#">{{ testimonial.name }}</a>
|
19
|
+
</h3>
|
20
|
+
<p class="mb-0 text-sm text-gray-500">{{ testimonial.description }}</p>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<p class="relative text-base mb-0 before:font-sans before:font-serif
|
25
|
+
before:content-['\0022'] before:absolute before:top-[50px] before:-left-[10px] before:block before:text-[182px] before:opacity-10
|
26
|
+
">
|
27
|
+
{{ testimonial.content }}
|
28
|
+
</p>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
<!-- Item end -->
|
32
|
+
{% endfor %}
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
</section>
|
data/_layouts/blog.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
{% include page-header.html %}
|
5
|
+
|
6
|
+
<div class="max-w-screen-md mx-auto bg-white p-5">
|
7
|
+
{% for post in paginator.posts %}
|
8
|
+
{% if post.title != null %}
|
9
|
+
{% include post-item.html %}
|
10
|
+
{% endif %}
|
11
|
+
{% endfor %}
|
12
|
+
</div>
|
13
|
+
|
14
|
+
{% include pagination-links.html %}
|
15
|
+
|
16
|
+
{% include social.html %}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8">
|
5
|
+
<meta name="viewport"
|
6
|
+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
8
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
9
|
+
<meta name="description"
|
10
|
+
content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
11
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html', '' | absolute_url }}">
|
12
|
+
<link rel="stylesheet" href="{{ '/assets/css/main.css?v=' | append: site.github.build_revision | relative_url }}">
|
13
|
+
{% if page.math %}
|
14
|
+
{% include math.html %}
|
15
|
+
{% endif %}
|
16
|
+
</head>
|
17
|
+
<body class="min-h-screen">
|
18
|
+
<div class="min-h-screen">
|
19
|
+
{% include header.html %}
|
20
|
+
<main>
|
21
|
+
{{ content }}
|
22
|
+
</main>
|
23
|
+
{% include footer.html %}
|
24
|
+
</div>
|
25
|
+
|
26
|
+
|
27
|
+
<!-- Ion icons -->
|
28
|
+
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
29
|
+
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
30
|
+
|
31
|
+
<!-- Main JS file -->
|
32
|
+
<script src="{{ '/assets/js/dist/main.js?v=' | append: site.github.build_revision | relative_url }}"></script>
|
33
|
+
</body>
|
34
|
+
</html>
|
data/_layouts/home.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_sass/.gitinclude
ADDED
File without changes
|
@@ -0,0 +1,374 @@
|
|
1
|
+
$color_1: #999988;
|
2
|
+
$color_2: #a61717;
|
3
|
+
$color_3: #000000;
|
4
|
+
$color_4: #999999;
|
5
|
+
$color_5: #aa0000;
|
6
|
+
$color_6: #888888;
|
7
|
+
$color_7: #555555;
|
8
|
+
$color_8: #aaaaaa;
|
9
|
+
$color_9: #445588;
|
10
|
+
$color_10: #009999;
|
11
|
+
$color_11: #d01040;
|
12
|
+
$color_12: #008080;
|
13
|
+
$color_13: #0086B3;
|
14
|
+
$color_14: #3c5d5d;
|
15
|
+
$color_15: #800080;
|
16
|
+
$color_16: #990000;
|
17
|
+
$color_17: #000080;
|
18
|
+
$color_18: #bbbbbb;
|
19
|
+
$color_19: #009926;
|
20
|
+
$color_20: #990073;
|
21
|
+
|
22
|
+
$background-color_1: #ffffcc;
|
23
|
+
$background-color_2: #e3d2d2;
|
24
|
+
$background-color_3: #ffdddd;
|
25
|
+
$background-color_4: #ddffdd;
|
26
|
+
|
27
|
+
figure.highlight, div.highlight {
|
28
|
+
margin-bottom: 1.5rem;
|
29
|
+
margin-top: 1.5rem;
|
30
|
+
background: #f9f9f9;
|
31
|
+
padding: 1rem;
|
32
|
+
max-width: 100%;
|
33
|
+
overflow: auto;
|
34
|
+
border-radius: 0.25rem;
|
35
|
+
}
|
36
|
+
|
37
|
+
code.language-plaintext {
|
38
|
+
font-family: monospace;
|
39
|
+
font-size: 0.9rem;
|
40
|
+
line-height: 1.4rem;
|
41
|
+
background: #f9f9f9;
|
42
|
+
padding: 0.3rem;
|
43
|
+
color: black;
|
44
|
+
border-radius: 0.25rem;
|
45
|
+
}
|
46
|
+
|
47
|
+
.highlight {
|
48
|
+
font-family: monospace;
|
49
|
+
font-size: 0.9rem;
|
50
|
+
line-height: 1.4rem;
|
51
|
+
|
52
|
+
.gutter {
|
53
|
+
float: left;
|
54
|
+
text-align: center;
|
55
|
+
min-width: 1.5rem;
|
56
|
+
padding-right: 0.5rem;
|
57
|
+
color: #999;
|
58
|
+
border-right: 1px solid #eaeaea;
|
59
|
+
margin-right: 0.5rem;
|
60
|
+
}
|
61
|
+
|
62
|
+
.hll {
|
63
|
+
background-color: $background-color_1;
|
64
|
+
}
|
65
|
+
|
66
|
+
/* Comment */
|
67
|
+
.c {
|
68
|
+
color: $color_1;
|
69
|
+
font-style: italic;
|
70
|
+
}
|
71
|
+
|
72
|
+
/* Error */
|
73
|
+
.err {
|
74
|
+
color: $color_2;
|
75
|
+
background-color: $background-color_2;
|
76
|
+
}
|
77
|
+
|
78
|
+
/* Keyword */
|
79
|
+
.k {
|
80
|
+
color: $color_3;
|
81
|
+
}
|
82
|
+
|
83
|
+
/* Operator */
|
84
|
+
.o {
|
85
|
+
color: $color_3;
|
86
|
+
}
|
87
|
+
|
88
|
+
/* Comment.Multiline */
|
89
|
+
.cm {
|
90
|
+
color: $color_1;
|
91
|
+
font-style: italic;
|
92
|
+
}
|
93
|
+
|
94
|
+
/* Comment.Preproc */
|
95
|
+
.cp {
|
96
|
+
color: $color_4;
|
97
|
+
font-style: italic;
|
98
|
+
}
|
99
|
+
|
100
|
+
/* Comment.Single */
|
101
|
+
.c1 {
|
102
|
+
color: $color_1;
|
103
|
+
font-style: italic;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* Comment.Special */
|
107
|
+
.cs {
|
108
|
+
color: $color_4;
|
109
|
+
font-style: italic;
|
110
|
+
}
|
111
|
+
|
112
|
+
/* Generic.Deleted */
|
113
|
+
.gd {
|
114
|
+
color: $color_3;
|
115
|
+
background-color: $background-color_3;
|
116
|
+
}
|
117
|
+
|
118
|
+
/* Generic.Emph */
|
119
|
+
.ge {
|
120
|
+
color: $color_3;
|
121
|
+
font-style: italic;
|
122
|
+
}
|
123
|
+
|
124
|
+
/* Generic.Error */
|
125
|
+
.gr {
|
126
|
+
color: $color_5;
|
127
|
+
}
|
128
|
+
|
129
|
+
/* Generic.Heading */
|
130
|
+
.gh {
|
131
|
+
color: $color_4;
|
132
|
+
}
|
133
|
+
|
134
|
+
/* Generic.Inserted */
|
135
|
+
.gi {
|
136
|
+
color: $color_3;
|
137
|
+
background-color: $background-color_4;
|
138
|
+
}
|
139
|
+
|
140
|
+
/* Generic.Output */
|
141
|
+
.go {
|
142
|
+
color: $color_6;
|
143
|
+
}
|
144
|
+
|
145
|
+
/* Generic.Prompt */
|
146
|
+
.gp {
|
147
|
+
color: $color_7;
|
148
|
+
}
|
149
|
+
|
150
|
+
/* Generic.Strong */
|
151
|
+
.gs {
|
152
|
+
font-weight: bold;
|
153
|
+
}
|
154
|
+
|
155
|
+
/* Generic.Subheading */
|
156
|
+
.gu {
|
157
|
+
color: $color_8;
|
158
|
+
}
|
159
|
+
|
160
|
+
/* Generic.Traceback */
|
161
|
+
.gt {
|
162
|
+
color: $color_5;
|
163
|
+
}
|
164
|
+
|
165
|
+
/* Keyword.Constant */
|
166
|
+
.kc {
|
167
|
+
color: $color_3;
|
168
|
+
}
|
169
|
+
|
170
|
+
/* Keyword.Declaration */
|
171
|
+
.kd {
|
172
|
+
color: $color_3;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* Keyword.Namespace */
|
176
|
+
.kn {
|
177
|
+
color: $color_3;
|
178
|
+
}
|
179
|
+
|
180
|
+
/* Keyword.Pseudo */
|
181
|
+
.kp {
|
182
|
+
color: $color_3;
|
183
|
+
}
|
184
|
+
|
185
|
+
/* Keyword.Reserved */
|
186
|
+
.kr {
|
187
|
+
color: $color_3;
|
188
|
+
}
|
189
|
+
|
190
|
+
/* Keyword.Type */
|
191
|
+
.kt {
|
192
|
+
color: $color_9;
|
193
|
+
}
|
194
|
+
|
195
|
+
/* Literal.Number */
|
196
|
+
.m {
|
197
|
+
color: $color_10;
|
198
|
+
}
|
199
|
+
|
200
|
+
/* Literal.String */
|
201
|
+
.s {
|
202
|
+
color: $color_11;
|
203
|
+
}
|
204
|
+
|
205
|
+
/* Name.Attribute */
|
206
|
+
.na {
|
207
|
+
color: $color_12;
|
208
|
+
}
|
209
|
+
|
210
|
+
/* Name.Builtin */
|
211
|
+
.nb {
|
212
|
+
color: $color_13;
|
213
|
+
}
|
214
|
+
|
215
|
+
/* Name.Class */
|
216
|
+
.nc {
|
217
|
+
color: $color_9;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* Name.Constant */
|
221
|
+
.no {
|
222
|
+
color: $color_12;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Name.Decorator */
|
226
|
+
.nd {
|
227
|
+
color: $color_14;
|
228
|
+
}
|
229
|
+
|
230
|
+
/* Name.Entity */
|
231
|
+
.ni {
|
232
|
+
color: $color_15;
|
233
|
+
}
|
234
|
+
|
235
|
+
/* Name.Exception */
|
236
|
+
.ne {
|
237
|
+
color: $color_16;
|
238
|
+
}
|
239
|
+
|
240
|
+
/* Name.Function */
|
241
|
+
.nf {
|
242
|
+
color: $color_16;
|
243
|
+
}
|
244
|
+
|
245
|
+
/* Name.Label */
|
246
|
+
.nl {
|
247
|
+
color: $color_16;
|
248
|
+
}
|
249
|
+
|
250
|
+
/* Name.Namespace */
|
251
|
+
.nn {
|
252
|
+
color: $color_7;
|
253
|
+
}
|
254
|
+
|
255
|
+
/* Name.Tag */
|
256
|
+
.nt {
|
257
|
+
color: $color_17;
|
258
|
+
}
|
259
|
+
|
260
|
+
/* Name.Variable */
|
261
|
+
.nv {
|
262
|
+
color: $color_12;
|
263
|
+
}
|
264
|
+
|
265
|
+
/* Operator.Word */
|
266
|
+
.ow {
|
267
|
+
color: $color_3;
|
268
|
+
}
|
269
|
+
|
270
|
+
/* Text.Whitespace */
|
271
|
+
.w {
|
272
|
+
color: $color_18;
|
273
|
+
}
|
274
|
+
|
275
|
+
/* Literal.Number.Float */
|
276
|
+
.mf {
|
277
|
+
color: $color_10;
|
278
|
+
}
|
279
|
+
|
280
|
+
/* Literal.Number.Hex */
|
281
|
+
.mh {
|
282
|
+
color: $color_10;
|
283
|
+
}
|
284
|
+
|
285
|
+
/* Literal.Number.Integer */
|
286
|
+
.mi {
|
287
|
+
color: $color_10;
|
288
|
+
}
|
289
|
+
|
290
|
+
/* Literal.Number.Oct */
|
291
|
+
.mo {
|
292
|
+
color: $color_10;
|
293
|
+
}
|
294
|
+
|
295
|
+
/* Literal.String.Backtick */
|
296
|
+
.sb {
|
297
|
+
color: $color_11;
|
298
|
+
}
|
299
|
+
|
300
|
+
/* Literal.String.Char */
|
301
|
+
.sc {
|
302
|
+
color: $color_11;
|
303
|
+
}
|
304
|
+
|
305
|
+
/* Literal.String.Doc */
|
306
|
+
.sd {
|
307
|
+
color: $color_11;
|
308
|
+
}
|
309
|
+
|
310
|
+
/* Literal.String.Double */
|
311
|
+
.s2 {
|
312
|
+
color: $color_11;
|
313
|
+
}
|
314
|
+
|
315
|
+
/* Literal.String.Escape */
|
316
|
+
.se {
|
317
|
+
color: $color_11;
|
318
|
+
}
|
319
|
+
|
320
|
+
/* Literal.String.Heredoc */
|
321
|
+
.sh {
|
322
|
+
color: $color_11;
|
323
|
+
}
|
324
|
+
|
325
|
+
/* Literal.String.Interpol */
|
326
|
+
.si {
|
327
|
+
color: $color_11;
|
328
|
+
}
|
329
|
+
|
330
|
+
/* Literal.String.Other */
|
331
|
+
.sx {
|
332
|
+
color: $color_11;
|
333
|
+
}
|
334
|
+
|
335
|
+
/* Literal.String.Regex */
|
336
|
+
.sr {
|
337
|
+
color: $color_19;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* Literal.String.Single */
|
341
|
+
.s1 {
|
342
|
+
color: $color_11;
|
343
|
+
}
|
344
|
+
|
345
|
+
/* Literal.String.Symbol */
|
346
|
+
.ss {
|
347
|
+
color: $color_20;
|
348
|
+
}
|
349
|
+
|
350
|
+
/* Name.Builtin.Pseudo */
|
351
|
+
.bp {
|
352
|
+
color: $color_4;
|
353
|
+
}
|
354
|
+
|
355
|
+
/* Name.Variable.Class */
|
356
|
+
.vc {
|
357
|
+
color: $color_12;
|
358
|
+
}
|
359
|
+
|
360
|
+
/* Name.Variable.Global */
|
361
|
+
.vg {
|
362
|
+
color: $color_12;
|
363
|
+
}
|
364
|
+
|
365
|
+
/* Name.Variable.Instance */
|
366
|
+
.vi {
|
367
|
+
color: $color_12;
|
368
|
+
}
|
369
|
+
|
370
|
+
/* Literal.Number.Integer.Long */
|
371
|
+
.il {
|
372
|
+
color: $color_10;
|
373
|
+
}
|
374
|
+
}
|
data/_sass/style.scss
ADDED
@@ -0,0 +1,275 @@
|
|
1
|
+
* {
|
2
|
+
-webkit-font-smoothing: antialiased;
|
3
|
+
}
|
4
|
+
|
5
|
+
::selection {
|
6
|
+
background: #4d41e0;
|
7
|
+
color: #fff;
|
8
|
+
}
|
9
|
+
|
10
|
+
::-moz-selection {
|
11
|
+
background: #4d41e0;
|
12
|
+
color: #fff;
|
13
|
+
}
|
14
|
+
|
15
|
+
#main-header {
|
16
|
+
ion-icon[name="menu-outline"], ion-icon[name="close-outline"] {
|
17
|
+
font-size: 3rem;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
h1, h2, h3, h4, h5, h6 {
|
22
|
+
font-family: "Noto Serif", Georgia, Cambria, Times New Roman, Times, serif;
|
23
|
+
}
|
24
|
+
|
25
|
+
.organization-logo {
|
26
|
+
filter: invert(51%) sepia(4%) saturate(1703%) hue-rotate(179deg) brightness(85%) contrast(89%)
|
27
|
+
}
|
28
|
+
|
29
|
+
.post-title {
|
30
|
+
//line-height: 4rem;
|
31
|
+
}
|
32
|
+
|
33
|
+
.content {
|
34
|
+
color: #333;
|
35
|
+
|
36
|
+
p {
|
37
|
+
margin-bottom: 1.5rem;
|
38
|
+
}
|
39
|
+
|
40
|
+
hr {
|
41
|
+
margin-bottom: 4rem;
|
42
|
+
margin-top: 4rem;
|
43
|
+
}
|
44
|
+
|
45
|
+
h1, h2, h3, h4, h5, h6 {
|
46
|
+
margin-bottom: 2rem;
|
47
|
+
margin-top: 2rem;
|
48
|
+
font-weight: 800;
|
49
|
+
}
|
50
|
+
|
51
|
+
h1 {
|
52
|
+
font-size: 2.5rem;
|
53
|
+
}
|
54
|
+
|
55
|
+
h2 {
|
56
|
+
font-size: 2rem;
|
57
|
+
}
|
58
|
+
|
59
|
+
h3 {
|
60
|
+
font-size: 1.75rem;
|
61
|
+
}
|
62
|
+
|
63
|
+
h4 {
|
64
|
+
font-size: 1.5rem;
|
65
|
+
}
|
66
|
+
|
67
|
+
h5 {
|
68
|
+
font-size: 1.25rem;
|
69
|
+
}
|
70
|
+
|
71
|
+
h6 {
|
72
|
+
font-size: 1rem;
|
73
|
+
}
|
74
|
+
|
75
|
+
ul, ol, dd {
|
76
|
+
margin-left: 1rem;
|
77
|
+
padding-left: 0.25rem;
|
78
|
+
margin-bottom: 1.5rem;
|
79
|
+
}
|
80
|
+
|
81
|
+
ol {
|
82
|
+
list-style-type: decimal;
|
83
|
+
}
|
84
|
+
|
85
|
+
ul {
|
86
|
+
list-style-type: disc;
|
87
|
+
}
|
88
|
+
|
89
|
+
ol, ul {
|
90
|
+
li {
|
91
|
+
margin-bottom: 0.75rem;
|
92
|
+
display: list-item;
|
93
|
+
text-align: -webkit-match-parent;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
a:link, a:visited {
|
98
|
+
text-decoration: underline;
|
99
|
+
text-decoration-color: #4d41e0;
|
100
|
+
transition: all 0.2s ease-in-out;
|
101
|
+
}
|
102
|
+
|
103
|
+
a:hover, a:active {
|
104
|
+
text-decoration: none;
|
105
|
+
}
|
106
|
+
|
107
|
+
strong {
|
108
|
+
font-weight: 500;
|
109
|
+
color: #000;
|
110
|
+
}
|
111
|
+
|
112
|
+
> table {
|
113
|
+
font-size: 0.9rem;
|
114
|
+
max-width: 100%;
|
115
|
+
overflow: auto;
|
116
|
+
border-collapse: collapse;
|
117
|
+
border-spacing: 0;
|
118
|
+
margin-bottom: 1.5rem;
|
119
|
+
|
120
|
+
thead {
|
121
|
+
background: #f9f9f9;
|
122
|
+
}
|
123
|
+
|
124
|
+
th {
|
125
|
+
font-weight: 700;
|
126
|
+
border: 1px solid #eee;
|
127
|
+
padding: 0.5rem;
|
128
|
+
text-align: left;
|
129
|
+
}
|
130
|
+
|
131
|
+
td {
|
132
|
+
padding: 0.5rem;
|
133
|
+
}
|
134
|
+
|
135
|
+
tbody tr:nth-child(odd) {
|
136
|
+
background: #fff;
|
137
|
+
|
138
|
+
td {
|
139
|
+
border: 1px solid #f9f9f9;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
tbody tr:nth-child(even) {
|
144
|
+
background: #f9f9f9;
|
145
|
+
|
146
|
+
td {
|
147
|
+
border: 1px solid #eee;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
152
|
+
img {
|
153
|
+
max-width: 100%;
|
154
|
+
height: auto;
|
155
|
+
}
|
156
|
+
|
157
|
+
iframe {
|
158
|
+
max-width: 100%;
|
159
|
+
margin-bottom: 1.5rem;
|
160
|
+
}
|
161
|
+
|
162
|
+
mjx-container {
|
163
|
+
max-width: 100%;
|
164
|
+
overflow: auto;
|
165
|
+
}
|
166
|
+
|
167
|
+
blockquote, div.note, div.tip, div.info, div.caution, div.danger {
|
168
|
+
position: relative;
|
169
|
+
padding: 2rem;
|
170
|
+
margin-bottom: 1.5rem;
|
171
|
+
margin-top: 1.5rem;
|
172
|
+
font-size: 1.25rem;
|
173
|
+
line-height: 1.5;
|
174
|
+
|
175
|
+
p:last-child {
|
176
|
+
margin-bottom: 0;
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
blockquote::before, div.note::before, div.tip::before, div.info::before, div.caution::before, div.danger::before {
|
181
|
+
content: "";
|
182
|
+
position: absolute;
|
183
|
+
top: 0;
|
184
|
+
left: 0;
|
185
|
+
width: 100%;
|
186
|
+
height: 100%;
|
187
|
+
opacity: .08;
|
188
|
+
border-radius: 1rem;
|
189
|
+
}
|
190
|
+
|
191
|
+
blockquote::after, div.note::after, div.tip::after, div.info::after, div.caution::after, div.danger::after {
|
192
|
+
font-family: "Noto Serif", Georgia, Cambria, Times New Roman, Times, serif;
|
193
|
+
position: absolute;
|
194
|
+
top: 40px;
|
195
|
+
left: 10px;
|
196
|
+
z-index: 1;
|
197
|
+
font-size: 3rem;
|
198
|
+
line-height: 0;
|
199
|
+
color: #4d41e0;
|
200
|
+
}
|
201
|
+
|
202
|
+
blockquote {
|
203
|
+
&::before {
|
204
|
+
background: #4d41e0;
|
205
|
+
}
|
206
|
+
|
207
|
+
&::after {
|
208
|
+
content: "\0022";
|
209
|
+
font-style: italic;
|
210
|
+
font-size: 9rem;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
div.note {
|
215
|
+
&::before {
|
216
|
+
border: 1px solid #000;
|
217
|
+
}
|
218
|
+
|
219
|
+
&::after {
|
220
|
+
content: "\0021";
|
221
|
+
color: #000;
|
222
|
+
}
|
223
|
+
}
|
224
|
+
|
225
|
+
div.tip {
|
226
|
+
&::before {
|
227
|
+
background: #4d41e0;
|
228
|
+
}
|
229
|
+
|
230
|
+
&::after {
|
231
|
+
content: "\0021";
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
div.info {
|
236
|
+
&::before {
|
237
|
+
background: #eef9fc;
|
238
|
+
border: 1px solid #4bb3d4;
|
239
|
+
opacity: 0.2;
|
240
|
+
}
|
241
|
+
|
242
|
+
&::after {
|
243
|
+
content: "\0021";
|
244
|
+
color: #4bb3d4;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
div.caution {
|
249
|
+
&::before {
|
250
|
+
background: #fff9e6;
|
251
|
+
border: 1px solid #f0c14b;
|
252
|
+
opacity: 0.2;
|
253
|
+
}
|
254
|
+
|
255
|
+
&::after {
|
256
|
+
content: "\0021";
|
257
|
+
color: #f0c14b;
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
div.danger {
|
262
|
+
&::before {
|
263
|
+
background: #ffe6e6;
|
264
|
+
border: 1px solid #e03e2d;
|
265
|
+
opacity: 0.2;
|
266
|
+
}
|
267
|
+
|
268
|
+
&::after {
|
269
|
+
content: "\0021";
|
270
|
+
color: #e03e2d;
|
271
|
+
}
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
@import "highlight";
|
@@ -0,0 +1 @@
|
|
1
|
+
/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:"Noto Sans Display, ",Helvetica Neue,Helvetica,Arial,sans-serif;font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.top-\[100vh\]{top:100vh}.top-32{top:8rem}.right-6{right:1.5rem}.top-0{top:0}.left-0{left:0}.-z-10{z-index:-10}.-z-20{z-index:-20}.m-0{margin:0}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mb-16{margin-bottom:4rem}.mb-8{margin-bottom:2rem}.ml-10{margin-left:2.5rem}.ml-auto{margin-left:auto}.mt-16{margin-top:4rem}.mr-8{margin-right:2rem}.mr-3{margin-right:.75rem}.mb-5{margin-bottom:1.25rem}.mb-0{margin-bottom:0}.mt-24{margin-top:6rem}.mr-5{margin-right:1.25rem}.mb-1{margin-bottom:.25rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.grid{display:grid}.contents{display:contents}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.aspect-video{aspect-ratio:16/9}.aspect-auto{aspect-ratio:auto}.h-8{height:2rem}.h-10{height:2.5rem}.h-auto{height:auto}.h-full{height:100%}.h-\[48px\]{height:48px}.h-\[68px\]{height:68px}.min-h-screen{min-height:100vh}.w-40{width:10rem}.w-full{width:100%}.w-10{width:2.5rem}.w-\[48px\]{width:48px}.w-\[68px\]{width:68px}.min-w-fit{min-width:-moz-fit-content;min-width:fit-content}.max-w-screen-md{max-width:768px}.max-w-screen-lg{max-width:1024px}.max-w-2xl{max-width:42rem}.max-w-screen-xl{max-width:1280px}.max-w-screen-sm{max-width:640px}.flex-auto{flex:1 1 auto}.flex-1{flex:1 1 0%}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.rounded-md{border-radius:.375rem}.rounded-3xl{border-radius:1.5rem}.rounded-full{border-radius:9999px}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-transparent{border-color:#0000}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-indigo-600{--tw-border-opacity:1;border-color:rgb(79 70 229/var(--tw-border-opacity))}.border-b-gray-200{--tw-border-opacity:1;border-bottom-color:rgb(229 231 235/var(--tw-border-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-violet-700{--tw-bg-opacity:1;background-color:rgb(109 40 217/var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-violet-100{--tw-bg-opacity:1;background-color:rgb(237 233 254/var(--tw-bg-opacity))}.bg-\[url\(\'\/example\/images\/theme\/social\.png\'\)\]{background-image:url(/example/images/theme/social.png)}.bg-cover{background-size:cover}.bg-bottom{background-position:bottom}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-5{padding:1.25rem}.p-10{padding:2.5rem}.p-2{padding:.5rem}.p-8{padding:2rem}.p-\[2px\]{padding:2px}.py-16{padding-top:4rem;padding-bottom:4rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.pb-8{padding-bottom:2rem}.text-center{text-align:center}.text-right{text-align:right}.font-sans{font-family:"Noto Sans Display, ",Helvetica Neue,Helvetica,Arial,sans-serif}.text-8xl{font-size:6rem;line-height:1}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-5xl{font-size:3rem;line-height:1}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-black{font-weight:900}.italic{font-style:italic}.leading-8{line-height:2rem}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.opacity-0{opacity:0}.opacity-75{opacity:.75}.shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px #00000012) drop-shadow(0 2px 2px #0000000f);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.duration-300{transition-duration:.3s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.before\:absolute:before{content:var(--tw-content);position:absolute}.before\:top-\[50px\]:before{content:var(--tw-content);top:50px}.before\:-left-\[10px\]:before{content:var(--tw-content);left:-10px}.before\:block:before{content:var(--tw-content);display:block}.before\:font-sans:before{content:var(--tw-content);font-family:"Noto Sans Display, ",Helvetica Neue,Helvetica,Arial,sans-serif}.before\:font-serif:before{content:var(--tw-content);font-family:"Noto Serif",Georgia,Cambria,Times New Roman,Times,serif}.before\:text-\[182px\]:before{content:var(--tw-content);font-size:182px}.before\:opacity-10:before{content:var(--tw-content);opacity:.1}.before\:content-\[\'\\0022\'\]:before{--tw-content:"\0022";content:var(--tw-content)}.hover\:scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05;transform:translate(var(--tw-translate-x),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))}.hover\:border-indigo-600:hover{--tw-border-opacity:1;border-color:rgb(79 70 229/var(--tw-border-opacity))}.hover\:border-b-violet-600:hover{--tw-border-opacity:1;border-bottom-color:rgb(124 58 237/var(--tw-border-opacity))}.hover\:bg-violet-800:hover{--tw-bg-opacity:1;background-color:rgb(91 33 182/var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity:1;background-color:rgb(79 70 229/var(--tw-bg-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.active\:text-blue-600:active{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}@media (min-width:1024px){.lg\:mr-5{margin-right:1.25rem}.lg\:mb-0{margin-bottom:0}.lg\:flex{display:flex}.lg\:hidden{display:none}.lg\:max-h-\[250px\]{max-height:250px}.lg\:min-w-\[250px\]{min-width:250px}.lg\:max-w-\[250px\]{max-width:250px}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:flex-row{flex-direction:row}.lg\:px-0{padding-left:0;padding-right:0}.lg\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.lg\:text-6xl{font-size:3.75rem;line-height:1}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-2xl{font-size:1.5rem;line-height:2rem}.lg\:text-7xl{font-size:4.5rem;line-height:1}.lg\:leading-10{line-height:2.5rem}}
|
@@ -0,0 +1 @@
|
|
1
|
+
console.log("Hello World!");
|
@@ -0,0 +1 @@
|
|
1
|
+
console.log('Hello World!');
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: imdhemy-jekyll-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mohamad Eldhemy
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- imdhemy@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- _data/.gitinclude
|
37
|
+
- _includes/archive-header.html
|
38
|
+
- _includes/content.html
|
39
|
+
- _includes/contributions.html
|
40
|
+
- _includes/footer.html
|
41
|
+
- _includes/header.html
|
42
|
+
- _includes/hero.html
|
43
|
+
- _includes/latest-posts.html
|
44
|
+
- _includes/math.html
|
45
|
+
- _includes/page-header.html
|
46
|
+
- _includes/pagination-links.html
|
47
|
+
- _includes/post-header.html
|
48
|
+
- _includes/post-item.html
|
49
|
+
- _includes/post-tags.html
|
50
|
+
- _includes/social.html
|
51
|
+
- _includes/testimonials.html
|
52
|
+
- _layouts/archive.html
|
53
|
+
- _layouts/blog.html
|
54
|
+
- _layouts/default.html
|
55
|
+
- _layouts/home.html
|
56
|
+
- _layouts/page.html
|
57
|
+
- _layouts/post.html
|
58
|
+
- _sass/.gitinclude
|
59
|
+
- _sass/_highlight.scss
|
60
|
+
- _sass/style.scss
|
61
|
+
- _sass/tailwind.src.scss
|
62
|
+
- assets/css/main.scss
|
63
|
+
- assets/css/tailwind.css
|
64
|
+
- assets/js/dist/main.js
|
65
|
+
- assets/js/src/index.js
|
66
|
+
homepage: https://imdhemy.com
|
67
|
+
licenses:
|
68
|
+
- MIT
|
69
|
+
metadata: {}
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options: []
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
requirements: []
|
85
|
+
rubygems_version: 3.0.3.1
|
86
|
+
signing_key:
|
87
|
+
specification_version: 4
|
88
|
+
summary: Write a short summary, because Rubygems requires one.
|
89
|
+
test_files: []
|