jekyll-theme-merida 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/repos.yaml +23 -2
- data/_includes/footer.html +10 -8
- data/_includes/header.html +1 -1
- data/_includes/latest-news.html +2 -2
- data/_includes/latest-posts.html +1 -1
- data/_includes/navbar.html +20 -16
- data/_layouts/about.html +2 -2
- data/_layouts/bib.html +8 -4
- data/_layouts/projects.html +41 -6
- data/assets/css/merida.src.css +210 -0
- data/assets/img/profile_photo.jpg +0 -0
- metadata +3 -3
- data/assets/css/app.css +0 -2
- data/assets/img/profile_pic.jpg +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a31edecfddfde15f2f6ccdb13ecbf31e671dbea056baff8e8c2ed6980ba9bdd2
|
|
4
|
+
data.tar.gz: 81b77c9364b91f8147a77dd7f00dcadd8441b2a4ca33568f1f5848e739861af3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92344ee2c5afebcae798994cb7d47f77860d0194e60a0f6e374f6578cd3bd7c29be562d976d973f94820290da49d6f6391203ba415403599cd688325e468f3a4
|
|
7
|
+
data.tar.gz: 86f5a7b47f85c0d0435875669055fceea1bc7e5bf2b45e8fb2ff4f512a89e605134eb091c5d22cea511d0edca24e3102c5bd9d2f2d79e0650d4e277ed988cec6
|
data/_data/repos.yaml
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
items:
|
|
2
|
-
- name:
|
|
2
|
+
- name: Linux
|
|
3
3
|
description: Linux Kernel by Legendary Linus Torvalds
|
|
4
4
|
date: 2020-05-19
|
|
5
5
|
user_name: torvalds
|
|
6
6
|
repo_name: linux
|
|
7
7
|
host: https://github.com/
|
|
8
|
+
category: "Open Source Projects"
|
|
9
|
+
|
|
10
|
+
- name: Python Black
|
|
11
|
+
description: Python black formatter
|
|
12
|
+
date: 2023-05-07
|
|
13
|
+
user_name: python
|
|
14
|
+
repo_name: black
|
|
15
|
+
host: https://github.com/
|
|
16
|
+
category: "Open Source Projects"
|
|
17
|
+
|
|
18
|
+
- name: Numpy
|
|
19
|
+
description: Added the matrix multiplication algorithm
|
|
20
|
+
date: 2024-05-13
|
|
21
|
+
user_name: numpy
|
|
22
|
+
repo_name: numpy
|
|
23
|
+
host: https://github.com/
|
|
24
|
+
category: "Open Source Contributions"
|
|
8
25
|
|
|
9
26
|
- name: Project Beta
|
|
10
27
|
description: Python black formatter
|
|
@@ -12,10 +29,14 @@ items:
|
|
|
12
29
|
user_name: python
|
|
13
30
|
repo_name: black
|
|
14
31
|
host: https://github.com/
|
|
32
|
+
category: "Course Projects"
|
|
15
33
|
|
|
16
34
|
- name: Project Gamma
|
|
17
|
-
description:
|
|
35
|
+
description: Added the matrix multiplication algorithm
|
|
18
36
|
date: 2024-05-13
|
|
19
37
|
user_name: numpy
|
|
20
38
|
repo_name: numpy
|
|
21
39
|
host: https://github.com/
|
|
40
|
+
category: "Course Projects"
|
|
41
|
+
|
|
42
|
+
orders: [ "Open Source Projects", "Course Projects", "Open Source Contributions" ]
|
data/_includes/footer.html
CHANGED
|
@@ -8,14 +8,16 @@
|
|
|
8
8
|
<div class="flex space-x-4 mt-4 md:mt-0 font-medium! text-sm">
|
|
9
9
|
<a class="hover:text-blue-500 transition-colors" href="/">About</a>
|
|
10
10
|
<!-- Social links from _data/social.yml -->
|
|
11
|
-
{%
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
{% if site.data.social %}
|
|
12
|
+
{% for social in site.data.social.items %}
|
|
13
|
+
<a class="hover:text-blue-500 transition-colors"
|
|
14
|
+
href="{{ social.url }}"
|
|
15
|
+
rel="noopener noreferrer"
|
|
16
|
+
>
|
|
17
|
+
{{ social.name }}
|
|
18
|
+
</a>
|
|
19
|
+
{% endfor %}
|
|
20
|
+
{% endif %}
|
|
19
21
|
</div>
|
|
20
22
|
|
|
21
23
|
</div>
|
data/_includes/header.html
CHANGED
data/_includes/latest-news.html
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<!-- Displays the latest news as a list -->
|
|
2
|
-
<ul class="prose pl-0 sm:pl-6 space-y-4">
|
|
2
|
+
<ul class="prose pl-0 sm:pl-6 space-y-4 min-w-full">
|
|
3
3
|
{% assign sorted_news = site.news | sort: "date" | reverse %}
|
|
4
4
|
{% for news in sorted_news limit:5 %}
|
|
5
5
|
<li class="flex flex-row gap-4 sm:gap-6">
|
|
6
6
|
<time class="font-bold min-w-32">{{ news.date | date: "%b %d, %Y" }}</time>
|
|
7
7
|
<!-- Title always plain text -->
|
|
8
|
-
<p class="not-prose mb-0!
|
|
8
|
+
<p class="not-prose mb-0!">
|
|
9
9
|
{{ news.description }}
|
|
10
10
|
|
|
11
11
|
<!-- Only add [more] if news has content -->
|
data/_includes/latest-posts.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- Displays the latest posts as a list -->
|
|
2
|
-
<ul class="prose pl-0 sm:pl-6 space-y-4">
|
|
2
|
+
<ul class="prose pl-0 sm:pl-6 space-y-4 min-w-full">
|
|
3
3
|
{% for post in site.posts limit:5 %}
|
|
4
4
|
<li class="flex flex-row gap-4 sm:gap-6">
|
|
5
5
|
<time class="font-bold min-w-32">{{ post.date | date: "%b %d, %Y" }}</time>
|
data/_includes/navbar.html
CHANGED
|
@@ -13,14 +13,16 @@
|
|
|
13
13
|
|
|
14
14
|
<!-- Desktop Menu -->
|
|
15
15
|
<ul class="hidden md:flex items-center space-x-6">
|
|
16
|
-
{%
|
|
17
|
-
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
{% if site.data.menu %}
|
|
17
|
+
{% for item in site.data.menu.items %}
|
|
18
|
+
<li>
|
|
19
|
+
<a class="p-2 rounded text-white hover:text-blue-300 {% if item.url == page.url %}bg-blue-500 hover:text-white {% endif %}"
|
|
20
|
+
href="{{ item.url }}">
|
|
21
|
+
{{ item.title }}
|
|
22
|
+
</a>
|
|
23
|
+
</li>
|
|
24
|
+
{% endfor %}
|
|
25
|
+
{% endif %}
|
|
24
26
|
|
|
25
27
|
<!-- Search Icon -->
|
|
26
28
|
<li>
|
|
@@ -38,14 +40,16 @@
|
|
|
38
40
|
|
|
39
41
|
<!-- Mobile Menu -->
|
|
40
42
|
<ul class="hidden flex-col space-y-2 pb-4 md:hidden" id="mobile-menu">
|
|
41
|
-
{%
|
|
42
|
-
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
{% if site.data.menu %}
|
|
44
|
+
{% for item in site.data.menu.items %}
|
|
45
|
+
<li>
|
|
46
|
+
<a class="block p-2 rounded text-white hover:text-blue-300 {% if item.url == page.url %}bg-blue-500 hover:text-white {% endif %}"
|
|
47
|
+
href="{{ item.url }}">
|
|
48
|
+
{{ item.title }}
|
|
49
|
+
</a>
|
|
50
|
+
</li>
|
|
51
|
+
{% endfor %}
|
|
52
|
+
{% endif %}
|
|
49
53
|
|
|
50
54
|
<!-- Search -->
|
|
51
55
|
<li>
|
data/_layouts/about.html
CHANGED
|
@@ -8,10 +8,10 @@ layout: base
|
|
|
8
8
|
{{ content }}
|
|
9
9
|
</div>
|
|
10
10
|
{% if page.profile %}
|
|
11
|
-
<div>
|
|
11
|
+
<div class="md:ml-auto">
|
|
12
12
|
{% if page.profile.image %}
|
|
13
13
|
{% assign profile_image_path = page.profile.image | prepend: 'assets/img/' %}
|
|
14
|
-
<img alt="{{ page.profile.
|
|
14
|
+
<img alt="{{ page.profile.alt | escape }}" class="mx-auto md:mx-0 mb-0 mt-5 md:mt-0 rounded shrink-0 w-64 h-auto" src="{{ profile_image_path }}"/>
|
|
15
15
|
{% endif %}
|
|
16
16
|
{% if page.profile.caption %}
|
|
17
17
|
<p class="text-xs! mt-2 text-center text-gray-500">{{ page.profile.caption }}</p>
|
data/_layouts/bib.html
CHANGED
|
@@ -5,7 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
<!-- Title -->
|
|
7
7
|
<h2 class="mt-2! mb-0! text-center!">
|
|
8
|
+
{% if entry.url %}
|
|
9
|
+
<a href="{{ entry.url }}" target="_blank">{{ entry.title }}</a>
|
|
10
|
+
{% else %}
|
|
8
11
|
{{ entry.title }}
|
|
12
|
+
{% endif %}
|
|
9
13
|
</h2>
|
|
10
14
|
|
|
11
15
|
<!-- Venue / Conference / Journal -->
|
|
@@ -41,16 +45,16 @@
|
|
|
41
45
|
<!-- Links -->
|
|
42
46
|
<div class="flex flex-wrap gap-3 text-sm justify-center">
|
|
43
47
|
{% if entry.url %}
|
|
44
|
-
<a class="
|
|
48
|
+
<a class="prose px-2 text-[#55A194]! bg-[#EEF5F4] hover:bg-[#DDECE9]" href="{{ entry.url }}">Paper</a>
|
|
45
49
|
{% endif %}
|
|
46
50
|
{% if entry.code %}
|
|
47
|
-
<a class=" text-
|
|
51
|
+
<a class=" prose text-[#F16A6F]! px-2 bg-[#FDF0F0] hover:bg-[#FCE1E2]" href="{{ entry.code }}">Code</a>
|
|
48
52
|
{% endif %}
|
|
49
53
|
{% if entry.slides %}
|
|
50
|
-
<a class=" text-violet-500!
|
|
54
|
+
<a class=" prose text-violet-500! px-2 bg-violet-100 hover:bg-violet-200" href="{{ entry.slides }}">Slides</a>
|
|
51
55
|
{% endif %}
|
|
52
56
|
{% if entry.bibtex %}
|
|
53
|
-
<button class="hover:cursor-pointer
|
|
57
|
+
<button class="prose hover:cursor-pointer px-2 bg-gray-100 hover:bg-gray-200 bibtex-toggle" type="button">BibTeX</button>
|
|
54
58
|
{% endif %}
|
|
55
59
|
</div>
|
|
56
60
|
|
data/_layouts/projects.html
CHANGED
|
@@ -4,17 +4,50 @@ layout: base
|
|
|
4
4
|
|
|
5
5
|
<div class="prose max-w-full ">
|
|
6
6
|
{{ content }}
|
|
7
|
-
<div class="{% if content !=
|
|
7
|
+
<div class="{% if content != '' %}mt-16{% endif %}">
|
|
8
|
+
{% if site.data.repos %}
|
|
9
|
+
{% assign grouped_repos = site.data.repos.items | sort: "category" | group_by: "category" %}
|
|
10
|
+
{% assign category_order = site.data.repos.orders | default: empty %}
|
|
11
|
+
{% for category_name in category_order %}
|
|
12
|
+
{% assign group = grouped_repos | where: "name", category_name | first %}
|
|
13
|
+
{% if group %}
|
|
14
|
+
<h2>{{ group.name | default: "Uncategorized" }}</h2>
|
|
15
|
+
<ul class="divide-y divide-border-main pl-0! bg-gray-50 ">
|
|
16
|
+
{% assign sorted_repos = group.items | sort: "date" | reverse %}
|
|
17
|
+
{% for repo in sorted_repos %}
|
|
18
|
+
<li class="not-prose flex flex-col lg:flex-row lg:items-center py-6 gap-0 lg:gap-4 px-6">
|
|
19
|
+
<!-- Date column -->
|
|
20
|
+
<time class="min-w-[100px] max-w-[100px] flex-shrink-0 text-sm!">
|
|
21
|
+
{{ repo.date | date: "%b %d, %Y" }}
|
|
22
|
+
</time>
|
|
23
|
+
{% if repo.host %}
|
|
24
|
+
<a class="mb-0! min-w-[200px] max-w-[200px] font-bold! truncate lg:text-center" href="{{ repo.host }}/{{ repo.user_name }}/{{ repo.repo_name}}">
|
|
25
|
+
{{ repo.name }}
|
|
26
|
+
</a>
|
|
27
|
+
{% endif %}
|
|
28
|
+
|
|
29
|
+
<p class="not-prose mb-0! truncate grow">
|
|
30
|
+
{{ repo.description }}
|
|
31
|
+
</p>
|
|
32
|
+
<img alt="GitHub Repo stars" class="not-prose w-[100px] min-w-[100px] mt-1 lg:mt-0 h-auto" src="https://img.shields.io/github/stars/{{ repo.user_name }}/{{ repo.repo_name }}?style=flat-square&cacheSeconds=3600">
|
|
33
|
+
</li>
|
|
34
|
+
{% endfor %}
|
|
35
|
+
</ul>
|
|
36
|
+
{% endif %}
|
|
37
|
+
{% endfor %}
|
|
38
|
+
{% for group in grouped_repos %}
|
|
39
|
+
{% unless category_order contains group.name %}
|
|
40
|
+
<h2>{{ group.name | default: "Uncategorized" }}</h2>
|
|
8
41
|
<ul class="divide-y divide-border-main pl-0!">
|
|
9
|
-
{% assign sorted_repos =
|
|
42
|
+
{% assign sorted_repos = group.items | sort: "date" | reverse %}
|
|
10
43
|
{% for repo in sorted_repos %}
|
|
11
|
-
<li class="not-prose flex flex-col
|
|
44
|
+
<li class="not-prose flex flex-col lg:flex-row lg:items-center py-6 gap-0 lg:gap-4">
|
|
12
45
|
<!-- Date column -->
|
|
13
46
|
<time class="min-w-[100px] max-w-[100px] flex-shrink-0 text-sm!">
|
|
14
47
|
{{ repo.date | date: "%b %d, %Y" }}
|
|
15
48
|
</time>
|
|
16
49
|
{% if repo.host %}
|
|
17
|
-
<a class="mb-0! min-w-[200px] max-w-[200px] font-bold! truncate
|
|
50
|
+
<a class="mb-0! min-w-[200px] max-w-[200px] font-bold! truncate lg:text-center" href="{{ repo.host }}/{{ repo.user_name }}/{{ repo.repo_name}}">
|
|
18
51
|
{{ repo.name }}
|
|
19
52
|
</a>
|
|
20
53
|
{% endif %}
|
|
@@ -22,10 +55,12 @@ layout: base
|
|
|
22
55
|
<p class="not-prose mb-0! truncate grow">
|
|
23
56
|
{{ repo.description }}
|
|
24
57
|
</p>
|
|
25
|
-
<img alt="GitHub Repo stars" class="not-prose w-[100px] min-w-[100px] mt-1
|
|
58
|
+
<img alt="GitHub Repo stars" class="not-prose w-[100px] min-w-[100px] mt-1 lg:mt-0 h-auto" src="https://img.shields.io/github/stars/{{ repo.user_name }}/{{ repo.repo_name }}?style=flat-square&cacheSeconds=3600">
|
|
26
59
|
</li>
|
|
27
60
|
{% endfor %}
|
|
28
61
|
</ul>
|
|
62
|
+
{% endunless %}
|
|
63
|
+
{% endfor %}
|
|
64
|
+
{% endif %}
|
|
29
65
|
</div>
|
|
30
66
|
</div>
|
|
31
|
-
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
/* Overrides of Tailwind Theme */
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
|
|
3
|
+
|
|
4
|
+
@import "tailwindcss";
|
|
5
|
+
|
|
6
|
+
@source "../../_drafts/**/*.html";
|
|
7
|
+
@source "../../_includes/**/*.html";
|
|
8
|
+
@source "../../_layouts/**/*.html";
|
|
9
|
+
@source "../../_news/**/*.html";
|
|
10
|
+
@source "../../_pages/**/*.html";
|
|
11
|
+
@source "../../_posts/**/*.html";
|
|
12
|
+
|
|
13
|
+
@plugin "@tailwindcss/typography";
|
|
14
|
+
|
|
15
|
+
@theme {
|
|
16
|
+
--font-sans: "Source Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
17
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
18
|
+
--font-gilda: "Gilda Display";
|
|
19
|
+
--font-main: var(--font-sans);
|
|
20
|
+
--color-border-main: var(--color-gray-400);
|
|
21
|
+
--color-primary: var(--color-blue-600);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.max-w-theme {
|
|
25
|
+
@apply max-w-6xl;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/* ************************************************************** */
|
|
29
|
+
|
|
30
|
+
/* Styles of basic HTML elements */
|
|
31
|
+
html {
|
|
32
|
+
@apply overflow-y-scroll;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
em:not(li *) {
|
|
36
|
+
@apply block text-center
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
img:has(+ em) {
|
|
40
|
+
@apply mb-0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
.manual-h1 {
|
|
45
|
+
@apply text-2xl sm:text-4xl md:text-5xl lg:text-6xl;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* Task List Styling — checkboxes visible, bullets removed, checked items green */
|
|
49
|
+
ul.task-list {
|
|
50
|
+
@apply list-none p-0 m-0 space-y-2;
|
|
51
|
+
/* remove bullets, vertical spacing */
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
ul.task-list li {
|
|
55
|
+
@apply flex items-center;
|
|
56
|
+
/* align checkbox and text */
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
ul.task-list li input[type="checkbox"] {
|
|
60
|
+
@apply mr-2;
|
|
61
|
+
/* spacing between checkbox and text */
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Make checked tasks green */
|
|
65
|
+
ul.task-list li input[type="checkbox"]:checked + * {
|
|
66
|
+
@apply text-green-600 font-medium;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.main a {
|
|
70
|
+
@apply text-primary;
|
|
71
|
+
@apply no-underline;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/* All tables except ones inside .highlight */
|
|
75
|
+
|
|
76
|
+
.main table:not(.highlight table) {
|
|
77
|
+
@apply border-collapse border border-gray-200 text-left mb-4 min-w-full;
|
|
78
|
+
|
|
79
|
+
caption {
|
|
80
|
+
@apply text-sm font-semibold mb-2;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
thead {
|
|
84
|
+
@apply bg-gray-100;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
th {
|
|
88
|
+
@apply px-4 py-2 border-b border-gray-300 font-medium text-gray-700;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
td {
|
|
92
|
+
@apply px-4 py-2 border-b border-gray-200 text-gray-600;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
tbody tr:hover {
|
|
96
|
+
@apply bg-gray-50;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Optional: for color swatches or inner divs */
|
|
100
|
+
|
|
101
|
+
td div[data-theme] {
|
|
102
|
+
@apply w-12 aspect-square border border-gray-300;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.table-wrapper {
|
|
107
|
+
@apply overflow-x-auto mb-4;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* ************************************************************** */
|
|
111
|
+
|
|
112
|
+
/* Code Highlighting styles */
|
|
113
|
+
:not(pre) > code {
|
|
114
|
+
@apply text-gray-600;
|
|
115
|
+
@apply bg-blue-50;
|
|
116
|
+
@apply px-1.5;
|
|
117
|
+
@apply py-0.5;
|
|
118
|
+
@apply rounded;
|
|
119
|
+
@apply font-light;
|
|
120
|
+
@apply font-main;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
:not(pre) > code:before, :not(pre) > code:after {
|
|
124
|
+
content: "";
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/*
|
|
128
|
+
adds rounded corners, padding syntax and horizontal scroll bar to the code block
|
|
129
|
+
author: epigone707
|
|
130
|
+
*/
|
|
131
|
+
pre.highlight {
|
|
132
|
+
padding: 7px;
|
|
133
|
+
/* cause a scrolling mechanism to be provided for overflowing boxes */
|
|
134
|
+
overflow-x: auto;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
figure.highlight > pre {
|
|
138
|
+
padding: 7px;
|
|
139
|
+
overflow-x: auto;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* Default highlight spacing */
|
|
143
|
+
.highlight {
|
|
144
|
+
border-radius: 5px;
|
|
145
|
+
@apply mb-2;
|
|
146
|
+
margin-top: 1rem; /* default */
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/* Remove top margin if the highlight's parent is inside highlighter-rouge
|
|
150
|
+
AND the highlighter-rouge div is immediately after a paragraph */
|
|
151
|
+
p + .highlighter-rouge .highlight {
|
|
152
|
+
@apply mt-0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.rouge-gutter {
|
|
156
|
+
@apply border-r border-gray-300 pr-2;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.rouge-code pre {
|
|
160
|
+
@apply pl-2;
|
|
161
|
+
/* optional: spacing so code doesn’t touch line */
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.language-plaintext.highlighter-rouge {
|
|
165
|
+
position: relative; /* make outer div relative */
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.language-plaintext.highlighter-rouge pre.highlight {
|
|
169
|
+
position: static; /* remove relative from inner pre */
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/* for making copy button accessible in mobile and tablet */
|
|
173
|
+
.copy-button {
|
|
174
|
+
touch-action: manipulation; /* ensures the tap is recognized */
|
|
175
|
+
z-index: 10; /* above everything */
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/* ************************************************************** */
|
|
179
|
+
|
|
180
|
+
/* Styles for Bibliography */
|
|
181
|
+
.bibliography {
|
|
182
|
+
@apply pl-0!;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.bibliography li {
|
|
186
|
+
@apply list-none!;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* ************************************************************** */
|
|
190
|
+
|
|
191
|
+
/* Search utility styles */
|
|
192
|
+
|
|
193
|
+
@keyframes modal-overshoot {
|
|
194
|
+
0% {
|
|
195
|
+
transform: scale(0.9);
|
|
196
|
+
opacity: 0;
|
|
197
|
+
}
|
|
198
|
+
70% {
|
|
199
|
+
transform: scale(1.03);
|
|
200
|
+
opacity: 1;
|
|
201
|
+
}
|
|
202
|
+
100% {
|
|
203
|
+
transform: scale(1);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.modal-animate {
|
|
208
|
+
animation: modal-overshoot 150ms ease-out;
|
|
209
|
+
}
|
|
210
|
+
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-merida
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javad Mokhtari Koushyar
|
|
@@ -134,8 +134,8 @@ files:
|
|
|
134
134
|
- _layouts/post.html
|
|
135
135
|
- _layouts/projects.html
|
|
136
136
|
- _layouts/publications.html
|
|
137
|
-
- assets/css/app.css
|
|
138
137
|
- assets/css/github-dark.css
|
|
138
|
+
- assets/css/merida.src.css
|
|
139
139
|
- assets/favicon/android-chrome-192x192.png
|
|
140
140
|
- assets/favicon/android-chrome-512x512.png
|
|
141
141
|
- assets/favicon/apple-touch-icon.png
|
|
@@ -144,7 +144,7 @@ files:
|
|
|
144
144
|
- assets/favicon/favicon.ico
|
|
145
145
|
- assets/favicon/site.webmanifest
|
|
146
146
|
- assets/img/backgrounds/bg-1.jpg
|
|
147
|
-
- assets/img/
|
|
147
|
+
- assets/img/profile_photo.jpg
|
|
148
148
|
- assets/scripts/copy-code.js
|
|
149
149
|
- assets/scripts/mathjax-config.js
|
|
150
150
|
- assets/scripts/navbar.js
|
data/assets/css/app.css
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@import "https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap";@import "https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap";@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}@layer theme{:root,:host{--font-sans:"Source Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-green-50:oklch(98.2% .018 155.826);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-violet-50:oklch(96.9% .016 293.756);--color-violet-500:oklch(60.6% .25 292.717);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-neutral-200:oklch(92.2% 0 0);--color-neutral-500:oklch(55.6% 0 0);--color-neutral-600:oklch(43.9% 0 0);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-2xl:42rem;--container-6xl:72rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5 / 2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--font-weight-light:300;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--radius-lg:.5rem;--ease-out:cubic-bezier(0, 0, .2, 1);--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--font-main:var(--font-sans);--color-border-main:var(--color-gray-400);--color-primary:var(--color-blue-600)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}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;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.invisible{visibility:hidden}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing) * 0)}.start{inset-inline-start:var(--spacing)}.end{inset-inline-end:var(--spacing)}.top-0{top:calc(var(--spacing) * 0)}.top-1\/2{top:50%}.top-2{top:calc(var(--spacing) * 2)}.right-0{right:calc(var(--spacing) * 0)}.right-2{right:calc(var(--spacing) * 2)}.-z-10{z-index:calc(10 * -1)}.z-50{z-index:50}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.-mx-2{margin-inline:calc(var(--spacing) * -2)}.mx-4{margin-inline:calc(var(--spacing) * 4)}.mx-auto{margin-inline:auto}.my-0\!{margin-block:calc(var(--spacing) * 0)!important}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose{--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:oklab(21% -.00316127 -.0338527/.1);--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:#ffffff1a;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose-sm{font-size:.875rem;line-height:1.71429}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.11111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.8em;font-size:2.14286em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:.8em;font-size:1.42857em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.55556em;margin-bottom:.444444em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.42857em;margin-bottom:.571429em;line-height:1.42857}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.142857em;padding-inline-end:.357143em;padding-bottom:.142857em;border-radius:.3125rem;padding-inline-start:.357143em;font-size:.857143em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;border-radius:.25rem;margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em;font-size:.857143em;line-height:1.66667}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em;padding-inline-start:1.57143em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;margin-bottom:.285714em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.428571em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;padding-inline-start:1.57143em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.85714em;margin-bottom:2.85714em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;font-size:.857143em;line-height:1.33333}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-0{margin-top:calc(var(--spacing) * 0)}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-2\!{margin-top:calc(var(--spacing) * 2)!important}.mt-3{margin-top:calc(var(--spacing) * 3)}.mt-4{margin-top:calc(var(--spacing) * 4)}.mt-5{margin-top:calc(var(--spacing) * 5)}.mt-16{margin-top:calc(var(--spacing) * 16)}.mb-0{margin-bottom:calc(var(--spacing) * 0)}.mb-0\!{margin-bottom:calc(var(--spacing) * 0)!important}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-3{margin-bottom:calc(var(--spacing) * 3)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.mb-8{margin-bottom:calc(var(--spacing) * 8)}.mb-8\!{margin-bottom:calc(var(--spacing) * 8)!important}.mb-10{margin-bottom:calc(var(--spacing) * 10)}.ml-1{margin-left:calc(var(--spacing) * 1)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.table{display:table}.size-4{width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}.size-5{width:calc(var(--spacing) * 5);height:calc(var(--spacing) * 5)}.size-10{width:calc(var(--spacing) * 10);height:calc(var(--spacing) * 10)}.h-\[376px\]{height:376px}.h-auto{height:auto}.h-full{height:100%}.min-h-\[1\.5rem\]{min-height:1.5rem}.min-h-\[70vh\]{min-height:70vh}.min-h-screen{min-height:100vh}.w-64{width:calc(var(--spacing) * 64)}.w-\[100px\]{width:100px}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-\[100px\]{max-width:100px}.max-w-\[200px\]{max-width:200px}.max-w-full{max-width:100%}.min-w-0{min-width:calc(var(--spacing) * 0)}.min-w-32{min-width:calc(var(--spacing) * 32)}.min-w-\[100px\]{min-width:100px}.min-w-\[200px\]{min-width:200px}.min-w-full{min-width:100%}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.grow,.grow-1{flex-grow:1}.-translate-y-1\/2{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.cursor-pointer{cursor:pointer}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0{gap:calc(var(--spacing) * 0)}.gap-1{gap:calc(var(--spacing) * 1)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-6{gap:calc(var(--spacing) * 6)}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-6>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px * var(--tw-divide-y-reverse));border-bottom-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-border-main>:not(:last-child)){border-color:var(--color-border-main)}:where(.divide-gray-200>:not(:last-child)){border-color:var(--color-gray-200)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-lg{border-radius:var(--radius-lg)}.rounded-tl-lg{border-top-left-radius:var(--radius-lg)}.rounded-tr-lg{border-top-right-radius:var(--radius-lg)}.rounded-b-lg{border-bottom-right-radius:var(--radius-lg);border-bottom-left-radius:var(--radius-lg)}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-t-1{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-blue-100{border-color:var(--color-blue-100)}.border-border-main{border-color:var(--color-border-main)}.border-gray-200{border-color:var(--color-gray-200)}.border-white{border-color:var(--color-white)}.border-x-gray-200{border-inline-color:var(--color-gray-200)}.border-b-gray-200{border-bottom-color:var(--color-gray-200)}.bg-black\/40{background-color:#0006}@supports (color:color-mix(in lab, red, red)){.bg-black\/40{background-color:color-mix(in oklab, var(--color-black) 40%, transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-gray-600{background-color:var(--color-gray-600)}.bg-gray-700{background-color:var(--color-gray-700)}.bg-gray-800{background-color:var(--color-gray-800)}.bg-green-50{background-color:var(--color-green-50)}.bg-neutral-200{background-color:var(--color-neutral-200)}.bg-violet-50{background-color:var(--color-violet-50)}.bg-white{background-color:var(--color-white)}.stroke-blue-300{stroke:var(--color-blue-300)}.p-2{padding:calc(var(--spacing) * 2)}.p-4{padding:calc(var(--spacing) * 4)}.p-6{padding:calc(var(--spacing) * 6)}.px-0{padding-inline:calc(var(--spacing) * 0)}.px-1{padding-inline:calc(var(--spacing) * 1)}.px-2{padding-inline:calc(var(--spacing) * 2)}.px-6{padding-inline:calc(var(--spacing) * 6)}.py-1{padding-block:calc(var(--spacing) * 1)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-6{padding-block:calc(var(--spacing) * 6)}.py-8{padding-block:calc(var(--spacing) * 8)}.pt-6\!{padding-top:calc(var(--spacing) * 6)!important}.pt-24{padding-top:calc(var(--spacing) * 24)}.pr-8{padding-right:calc(var(--spacing) * 8)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pb-4{padding-bottom:calc(var(--spacing) * 4)}.pb-16{padding-bottom:calc(var(--spacing) * 16)}.pl-0{padding-left:calc(var(--spacing) * 0)}.pl-0\!{padding-left:calc(var(--spacing) * 0)!important}.text-center{text-align:center}.text-center\!{text-align:center!important}.text-left{text-align:left}.font-main{font-family:var(--font-main)}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-7xl{font-size:var(--text-7xl);line-height:var(--tw-leading,var(--text-7xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-sm\!{font-size:var(--text-sm)!important;line-height:var(--tw-leading,var(--text-sm--line-height))!important}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-xs\!{font-size:var(--text-xs)!important;line-height:var(--tw-leading,var(--text-xs--line-height))!important}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-bold\!{--tw-font-weight:var(--font-weight-bold)!important;font-weight:var(--font-weight-bold)!important}.font-medium\!{--tw-font-weight:var(--font-weight-medium)!important;font-weight:var(--font-weight-medium)!important}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.break-words,.wrap-break-word{overflow-wrap:break-word}.whitespace-pre-wrap{white-space:pre-wrap}.text-black{color:var(--color-black)}.text-blue-600{color:var(--color-blue-600)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-green-500\!{color:var(--color-green-500)!important}.text-neutral-500{color:var(--color-neutral-500)}.text-neutral-600{color:var(--color-neutral-600)}.text-primary{color:var(--color-primary)}.text-violet-500\!{color:var(--color-violet-500)!important}.text-white{color:var(--color-white)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.blur{--tw-blur:blur(8px);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,)}.filter{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,)}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.last\:mb-0:last-child{margin-bottom:calc(var(--spacing) * 0)}.last\:pb-0:last-child{padding-bottom:calc(var(--spacing) * 0)}.even\:bg-gray-100:nth-child(2n){background-color:var(--color-gray-100)}@media (hover:hover){.hover\:cursor-pointer:hover{cursor:pointer}.hover\:bg-gray-100:hover{background-color:var(--color-gray-100)}.hover\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\:text-blue-300:hover{color:var(--color-blue-300)}.hover\:text-blue-500:hover{color:var(--color-blue-500)}.hover\:text-gray-800:hover{color:var(--color-gray-800)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}}@media (min-width:40rem){.sm\:prose-sm{font-size:.875rem;line-height:1.71429}.sm\:prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.sm\:prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em;font-size:1.28571em;line-height:1.55556}.sm\:prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.11111em}.sm\:prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.8em;font-size:2.14286em;line-height:1.2}.sm\:prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:.8em;font-size:1.42857em;line-height:1.4}.sm\:prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.55556em;margin-bottom:.444444em;font-size:1.28571em;line-height:1.55556}.sm\:prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.42857em;margin-bottom:.571429em;line-height:1.42857}.sm\:prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.sm\:prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.sm\:prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.sm\:prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.142857em;padding-inline-end:.357143em;padding-bottom:.142857em;border-radius:.3125rem;padding-inline-start:.357143em;font-size:.857143em}.sm\:prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em}.sm\:prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.sm\:prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.sm\:prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;border-radius:.25rem;margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em;font-size:.857143em;line-height:1.66667}.sm\:prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em;padding-inline-start:1.57143em}.sm\:prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;margin-bottom:.285714em}.sm\:prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.428571em}.sm\:prose-sm :where(.sm\:prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.sm\:prose-sm :where(.sm\:prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.sm\:prose-sm :where(.sm\:prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.sm\:prose-sm :where(.sm\:prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.sm\:prose-sm :where(.sm\:prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.sm\:prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.sm\:prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.sm\:prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.sm\:prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;padding-inline-start:1.57143em}.sm\:prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.85714em;margin-bottom:2.85714em}.sm\:prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.sm\:prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.sm\:prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em;line-height:1.5}.sm\:prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.sm\:prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.sm\:prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.sm\:prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.sm\:prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.sm\:prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.sm\:prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.sm\:prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.sm\:prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;font-size:.857143em;line-height:1.33333}.sm\:prose-sm :where(.sm\:prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.sm\:prose-sm :where(.sm\:prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.sm\:mt-0{margin-top:calc(var(--spacing) * 0)}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:gap-2{gap:calc(var(--spacing) * 2)}.sm\:gap-4{gap:calc(var(--spacing) * 4)}.sm\:gap-6{gap:calc(var(--spacing) * 6)}.sm\:pl-6{padding-left:calc(var(--spacing) * 6)}.sm\:text-center{text-align:center}.sm\:text-left{text-align:left}.sm\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.sm\:text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}}@media (min-width:48rem){.md\:mx-0{margin-inline:calc(var(--spacing) * 0)}.md\:prose-lg{font-size:1.125rem;line-height:1.77778}.md\:prose-lg :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em}.md\:prose-lg :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.09091em;margin-bottom:1.09091em;font-size:1.22222em;line-height:1.45455}.md\:prose-lg :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em}.md\:prose-lg :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.833333em;font-size:2.66667em;line-height:1}.md\:prose-lg :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.86667em;margin-bottom:1.06667em;font-size:1.66667em;line-height:1.33333}.md\:prose-lg :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.66667em;margin-bottom:.666667em;font-size:1.33333em;line-height:1.5}.md\:prose-lg :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:.444444em;line-height:1.55556}.md\:prose-lg :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.md\:prose-lg :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.md\:prose-lg :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.md\:prose-lg :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.222222em;padding-inline-end:.444444em;padding-bottom:.222222em;border-radius:.3125rem;padding-inline-start:.444444em;font-size:.888889em}.md\:prose-lg :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.md\:prose-lg :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.866667em}.md\:prose-lg :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em}.md\:prose-lg :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:1em;padding-inline-end:1.5em;padding-bottom:1em;border-radius:.375rem;margin-top:2em;margin-bottom:2em;padding-inline-start:1.5em;font-size:.888889em;line-height:1.75}.md\:prose-lg :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.55556em}.md\:prose-lg :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;margin-bottom:.666667em}.md\:prose-lg :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.444444em}.md\:prose-lg :where(.md\:prose-lg>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em}.md\:prose-lg :where(.md\:prose-lg>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.md\:prose-lg :where(.md\:prose-lg>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.33333em}.md\:prose-lg :where(.md\:prose-lg>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.md\:prose-lg :where(.md\:prose-lg>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.33333em}.md\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em}.md\:prose-lg :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em}.md\:prose-lg :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em}.md\:prose-lg :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;padding-inline-start:1.55556em}.md\:prose-lg :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:3.11111em;margin-bottom:3.11111em}.md\:prose-lg :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-lg :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em;line-height:1.5}.md\:prose-lg :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.75em;padding-bottom:.75em;padding-inline-start:.75em}.md\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.md\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.md\:prose-lg :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.75em;padding-inline-end:.75em;padding-bottom:.75em;padding-inline-start:.75em}.md\:prose-lg :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.md\:prose-lg :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.md\:prose-lg :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.77778em;margin-bottom:1.77778em}.md\:prose-lg :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.md\:prose-lg :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1em;font-size:.888889em;line-height:1.5}.md\:prose-lg :where(.md\:prose-lg>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(.md\:prose-lg>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.md\:mt-0{margin-top:calc(var(--spacing) * 0)}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}.md\:justify-start{justify-content:flex-start}.md\:px-3{padding-inline:calc(var(--spacing) * 3)}.md\:px-4{padding-inline:calc(var(--spacing) * 4)}.md\:text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}}@media (min-width:64rem){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:px-0{padding-inline:calc(var(--spacing) * 0)}}@media (min-width:80rem){.xl\:gap-16{gap:calc(var(--spacing) * 16)}.xl\:px-0{padding-inline:calc(var(--spacing) * 0)}}}.max-w-theme{max-width:var(--container-6xl)}html{overflow-y:scroll}em:not(li *){text-align:center;display:block}img:has(+em){margin-bottom:calc(var(--spacing) * 0)}.manual-h1{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}@media (min-width:40rem){.manual-h1{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}}@media (min-width:48rem){.manual-h1{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}}@media (min-width:64rem){.manual-h1{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}}ul.task-list{margin:calc(var(--spacing) * 0);list-style-type:none}:where(ul.task-list>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}ul.task-list{padding:calc(var(--spacing) * 0)}ul.task-list li{align-items:center;display:flex}ul.task-list li input[type=checkbox]{margin-right:calc(var(--spacing) * 2)}ul.task-list li input[type=checkbox]:checked+*{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--color-green-600)}.main a{color:var(--color-primary);text-decoration-line:none}.main table:not(.highlight table){margin-bottom:calc(var(--spacing) * 4);border-collapse:collapse;border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-gray-200);text-align:left;min-width:100%}.main table:not(.highlight table) caption{margin-bottom:calc(var(--spacing) * 2);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.main table:not(.highlight table) thead{background-color:var(--color-gray-100)}.main table:not(.highlight table) th{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-gray-300);padding-inline:calc(var(--spacing) * 4);padding-block:calc(var(--spacing) * 2);--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--color-gray-700)}.main table:not(.highlight table) td{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-gray-200);padding-inline:calc(var(--spacing) * 4);padding-block:calc(var(--spacing) * 2);color:var(--color-gray-600)}.main table:not(.highlight table) tbody tr:hover{background-color:var(--color-gray-50)}.main table:not(.highlight table) td div[data-theme]{aspect-ratio:1;width:calc(var(--spacing) * 12);border-style:var(--tw-border-style);border-width:1px;border-color:var(--color-gray-300)}.table-wrapper{margin-bottom:calc(var(--spacing) * 4);overflow-x:auto}:not(pre)>code{color:var(--color-gray-600);background-color:var(--color-blue-50);padding-inline:calc(var(--spacing) * 1.5);padding-block:calc(var(--spacing) * .5);--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light);font-family:var(--font-main);background-color:var(--color-blue-50);padding-inline:calc(var(--spacing) * 1.5);padding-block:calc(var(--spacing) * .5);font-weight:var(--font-weight-light);font-family:var(--font-main);border-radius:.25rem}pre.highlight,figure.highlight>pre{padding:7px;overflow-x:auto}.highlight{margin-bottom:calc(var(--spacing) * 2);border-radius:5px;margin-top:1rem}p+.highlighter-rouge .highlight{margin-top:calc(var(--spacing) * 0)}.rouge-gutter{border-right-style:var(--tw-border-style);border-right-width:1px;border-color:var(--color-gray-300);padding-right:calc(var(--spacing) * 2)}.rouge-code pre{padding-left:calc(var(--spacing) * 2)}.language-plaintext.highlighter-rouge{position:relative}.language-plaintext.highlighter-rouge pre.highlight{position:static}.copy-button{touch-action:manipulation;z-index:10}.bibliography{padding-left:calc(var(--spacing) * 0)!important}.bibliography li{list-style-type:none!important}@keyframes modal-overshoot{0%{opacity:0;transform:scale(.9)}70%{opacity:1;transform:scale(1.03)}to{transform:scale(1)}}.modal-animate{animation:.15s ease-out modal-overshoot}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}
|
data/assets/img/profile_pic.jpg
DELETED
|
Binary file
|