jekyll-theme-centos 2.42.0 → 2.44.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/base/social.yml +2 -2
- data/_includes/base/announcements.html +2 -4
- data/_includes/base/breakingnews.html +20 -0
- data/_includes/base/copyright.html +9 -8
- data/_includes/base/finale.html +6 -10
- data/_includes/base/navbar.html +1 -1
- data/_includes/base/script.html +1 -6
- data/_includes/base/toc-accordion.html +6 -1
- data/_includes/base/toc.html +12 -10
- data/_layouts/base/default.html +60 -18
- data/_sass/base/_customization.scss +36 -18
- data/_sass/base/_variables.scss +1 -2
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.svg +1 -1
- data/assets/img/anaconda-symbolic.svg +1 -1
- data/assets/img/anaconda.svg +1 -1
- data/assets/img/base/screenshot-base-default-layout.png +0 -0
- data/assets/img/base/screenshot-base-default-layout.svg +945 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -1
- data/assets/img/centos-dynamicmsg-type.svg +1 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -1
- data/assets/img/centos-gdm-whitelogo.svg +1 -1
- data/assets/img/centos-ipa-whiteheader.svg +1 -1
- data/assets/img/centos-logo-2bits.svg +1 -1
- data/assets/img/centos-logo.svg +1 -1
- data/assets/img/centos-message-logo.svg +1 -1
- data/assets/img/centos-poweredby-logo.svg +1 -1
- data/assets/img/centos-symbol-2bits.svg +1 -1
- data/assets/img/centos-symbol.svg +1 -1
- data/assets/img/centos-type.svg +1 -1
- data/assets/img/centos-vertical-logo.svg +1 -1
- data/assets/img/centos-vertical-message-logo.svg +1 -1
- data/assets/img/centos-whitelogo.svg +1 -1
- metadata +5 -6
- data/_includes/base/header.html +0 -19
- data/assets/img/base/screenshot-base-home-layout.png +0 -0
- data/assets/img/base/screenshot.svg +0 -1799
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d5be09942277b626781ad93820933bbf462536bb5961a1311a7150e71d19dfb
|
4
|
+
data.tar.gz: 0426044375a3e2d31eba8cf028601886f3b30d80c004a020f873869e15e8bea8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2db81c4c5e460cfaf4eb80afc9dd35f13f00b7d4a0c6722023d0c61558fe00d4fcfe6463ce54abff613ac04388befff91f09dd322cfa8d93fa220ab42434e025
|
7
|
+
data.tar.gz: 7e942b604897986d16ff295fe6fbcf9e6b94eef97fab87fa18e57cf384d36ddd8e6f94d170f2064f22276be36653441926299deaca98bddf307b91b443cca76a
|
data/_data/base/social.yml
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
- name: Facebook
|
6
6
|
icon: "fa-brands fa-facebook-f"
|
7
7
|
link: "https://www.facebook.com/groups/centosproject/"
|
8
|
-
- name:
|
9
|
-
icon: "fa-brands fa-twitter"
|
8
|
+
- name: X
|
9
|
+
icon: "fa-brands fa-x-twitter"
|
10
10
|
link: "https://twitter.com/centos"
|
11
11
|
- name: Youtube
|
12
12
|
icon: "fa-brands fa-youtube"
|
@@ -1,6 +1,4 @@
|
|
1
|
-
{
|
2
|
-
<
|
3
|
-
<i class="{{ alert.icon | default: 'fa-solid fa-bullhorn' }}"></i> <strong>{{ alert.title | default: "" }}</strong> {{ alert.content | default: "" }}
|
1
|
+
<div class="alert alert-{{ include.color | default: 'primary' }} alert-dismissible fade show shadow" role="alert">
|
2
|
+
<i class="fa-solid fa-bullhorn"></i> <strong>{{ include.title | default: '' }}</strong> {{ include.content | default: '' }}
|
4
3
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
5
4
|
</div>
|
6
|
-
{% endfor -%}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<div class="alert alert-{{ include.color | default: 'primary') }} rounded-0 m-0 border-0" role="alert">
|
2
|
+
<div class="container d-flex justify-content-between align-items-center">
|
3
|
+
<div class="me-3">
|
4
|
+
<div class="h5 mb-0"><i class="{{ include.icon | default: 'fa-solid fa-bullhorn' }}"></i></div>
|
5
|
+
</div>
|
6
|
+
<div class="flex-fill">
|
7
|
+
{% if include.title != "" %}
|
8
|
+
<div class="h5 mb-0">{{ include.title }}</div>
|
9
|
+
{% endif %}
|
10
|
+
{% if include.content != "" %}
|
11
|
+
<div>{{ include.content }}</div>
|
12
|
+
{% endif %}
|
13
|
+
</div>
|
14
|
+
{% if include.url != "" %}
|
15
|
+
<div class="">
|
16
|
+
<a class="btn btn-sm btn-{{ include.color | default: 'primary') }}" href="{{ include.url }}" role="button">Know more <i class="fa-solid fa-arrow-right"></i></a>
|
17
|
+
</div>
|
18
|
+
{% endif %}
|
19
|
+
</div>
|
20
|
+
</div>
|
@@ -1,12 +1,13 @@
|
|
1
|
+
{% assign copyright = site.data[site.navbar_data_dirname]["copyright"] %}
|
1
2
|
<div class="row my-3">
|
2
3
|
<div class="col">
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
<span>Copyright ©</span>
|
5
|
+
<span>{{ site.time | date: "%Y" }}</span>
|
6
|
+
<span>{{ copyright.author }}</span>
|
7
|
+
{% for item in copyright.legals -%}
|
8
|
+
<span class="border-start ms-2 ps-2">
|
9
|
+
<a class="link-light link-offset-3 link-underline-opacity-25 link-underline-opacity-100-hover link-underline-light" href="{{ item.link }}">{{ item.text }}</a>
|
10
|
+
</span>
|
11
|
+
{% endfor %}
|
11
12
|
</div>
|
12
13
|
</div>
|
data/_includes/base/finale.html
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
{% assign social_networks = site.data[site.navbar_data_dirname]["social"] %}
|
1
2
|
<div class="row">
|
2
3
|
|
3
4
|
{% if page.with_social != false %}
|
@@ -5,19 +6,14 @@
|
|
5
6
|
{% else %}
|
6
7
|
<div class="mt-3 col-sm-12">
|
7
8
|
{% endif %}
|
8
|
-
<
|
9
|
-
<p>{{ site.description }}</p>
|
9
|
+
<div class="lead">{{ site.description }}</div>
|
10
10
|
</div>
|
11
11
|
|
12
12
|
{% if page.with_social != false %}
|
13
|
-
<div class="
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<a class="btn{% if forloop.first %} ps-0{% endif %} fs-5 link-primary" href="{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
|
18
|
-
</li>
|
19
|
-
{% endfor %}
|
20
|
-
</ul>
|
13
|
+
<div class="my-3 col-sm-12 col-lg-4 d-flex justify-content-sm-start justify-content-lg-end">
|
14
|
+
{% for item in social_networks -%}
|
15
|
+
<a class="btn border-0 btn-outline-primary fs-4" href="{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
|
16
|
+
{% endfor %}
|
21
17
|
</div>
|
22
18
|
{% endif %}
|
23
19
|
</div>
|
data/_includes/base/navbar.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
|
2
|
-
<nav class="navbar
|
2
|
+
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark bg-image shadow">
|
3
3
|
<div class="container">
|
4
4
|
<a class="navbar-brand" href="{{ site.url }}{{ site.baseurl }}/"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_logo }}" height="32" alt="{{ site.title }}" />{% if page.with_manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ page.with_manifestation }}</span>{% endif %}</a>
|
5
5
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
|
data/_includes/base/script.html
CHANGED
@@ -33,16 +33,11 @@
|
|
33
33
|
<script>
|
34
34
|
addBackToTop({
|
35
35
|
diameter: 56,
|
36
|
-
backgroundColor: "
|
36
|
+
backgroundColor: "#a14f8c",
|
37
37
|
textColor: "#fff",
|
38
38
|
});
|
39
39
|
</script>
|
40
40
|
|
41
|
-
<!-- Copyright Year -->
|
42
|
-
<script>
|
43
|
-
document.getElementById("copyright_year").innerHTML = new Date().getFullYear();
|
44
|
-
</script>
|
45
|
-
|
46
41
|
<!-- Bootstrap -->
|
47
42
|
<script src="{{ site.url }}{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
|
48
43
|
<script>
|
@@ -4,7 +4,12 @@
|
|
4
4
|
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne"><i class="fa-solid fa-bars"></i> <span class="mx-3 fw-bold">Table of Contents</span></button>
|
5
5
|
</div>
|
6
6
|
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#pageTocAccordion">
|
7
|
-
<div class="accordion-body small">
|
7
|
+
<div class="accordion-body small">
|
8
|
+
{% include base/toc.html
|
9
|
+
html=content
|
10
|
+
anchor_class="link-underline link-underline-opacity-0 link-underline-opacity-75-hover"
|
11
|
+
%}
|
12
|
+
</div>
|
8
13
|
</div>
|
9
14
|
</div>
|
10
15
|
</div>
|
data/_includes/base/toc.html
CHANGED
@@ -33,6 +33,8 @@
|
|
33
33
|
{% assign maxHeader = include.h_max | default: 6 %}
|
34
34
|
{% assign nodes = include.html | split: '<h' %}
|
35
35
|
{% assign firstHeader = true %}
|
36
|
+
{% assign anchor_classes = include.anchor_class | split: " " %}
|
37
|
+
|
36
38
|
|
37
39
|
{% capture listModifier %}{% if orderedList %}1.{% else %}-{% endif %}{% endcapture %}
|
38
40
|
|
@@ -79,20 +81,20 @@
|
|
79
81
|
{% capture listItemClass %}{:.{{ include.item_class | replace: '%level%', headerLevel }}}{% endcapture %}
|
80
82
|
{% endif %}
|
81
83
|
|
82
|
-
|
83
|
-
|
84
|
-
{{ space }}{{ listModifier }} {{ listItemClass }} [{{ heading_body | replace: "|", "\|" }}]({% if include.baseurl %}{{ include.baseurl }}{% endif %}#{{ html_id }}){% if
|
85
|
-
|
84
|
+
{% capture heading_body %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %}
|
85
|
+
{% capture my_toc %}{{ my_toc }}
|
86
|
+
{{ space }}{{ listModifier }} {{ listItemClass }} [{{ heading_body | replace: "|", "\|" }}]({% if include.baseurl %}{{ include.baseurl }}{% endif %}#{{ html_id }}){% if anchor_classes %}{:{% for anchor_class in anchor_classes %}.{{ anchor_class }} {% endfor -%}}{% endif %}{% endcapture %}
|
87
|
+
{% endfor %}
|
86
88
|
|
87
|
-
|
88
|
-
|
89
|
+
{% if include.class and include.class != blank %}
|
90
|
+
{% capture my_toc %}{:.{{ include.class }}}
|
89
91
|
{{ my_toc | lstrip }}{% endcapture %}
|
90
|
-
|
92
|
+
{% endif %}
|
91
93
|
|
92
|
-
|
93
|
-
|
94
|
+
{% if include.id %}
|
95
|
+
{% capture my_toc %}{: #{{ include.id }}}
|
94
96
|
{{ my_toc | lstrip }}{% endcapture %}
|
95
|
-
|
97
|
+
{% endif %}{% endcapture %}
|
96
98
|
|
97
99
|
{% if my_toc != "" %}
|
98
100
|
{% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
|
data/_layouts/base/default.html
CHANGED
@@ -1,46 +1,87 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="{{ page.lang | default: 'en' }}">
|
3
3
|
{% include base/head.html -%}
|
4
|
-
<body id="top">
|
4
|
+
<body id="top" class="bg-dots">
|
5
5
|
{% include base/navbar.html -%}
|
6
|
-
|
7
|
-
{%
|
6
|
+
|
7
|
+
{% if page.with_breakingnews and page.with_breakingnews.size > 0 -%}
|
8
|
+
<header>
|
9
|
+
{% for news in page.with_breakingnews %}
|
10
|
+
{% include base/breakingnews.html
|
11
|
+
title=news.title
|
12
|
+
content=news.content
|
13
|
+
color=news.color
|
14
|
+
url=news.url
|
15
|
+
-%}
|
16
|
+
{% endfor %}
|
17
|
+
</header>
|
8
18
|
{% endif %}
|
9
|
-
|
19
|
+
|
20
|
+
<main class="container bg-body py-5">
|
21
|
+
|
22
|
+
{% if page.with_announcements and page.with_announcements.size > 0 -%}
|
23
|
+
{% for announcement in page.with_announcements %}
|
24
|
+
{% include base/announcements.html
|
25
|
+
title=announcement.title
|
26
|
+
content=announcement.content
|
27
|
+
color=announcement.color
|
28
|
+
-%}
|
29
|
+
{% endfor %}
|
30
|
+
{% endif -%}
|
10
31
|
|
11
32
|
{% if page.with_breadcrumbs == true %}
|
12
|
-
<div class="row justify-content-center
|
13
|
-
<div class="col-sm-12 col-
|
14
|
-
{% include base/breadcrumbs.html %}
|
33
|
+
<div class="row justify-content-center">
|
34
|
+
<div class="col-sm-12 col-lg-8">
|
35
|
+
<div class="mb-4">{% include base/breadcrumbs.html %}</div>
|
15
36
|
</div>
|
16
37
|
</div>
|
17
38
|
{% endif %}
|
18
39
|
|
19
|
-
{% if page.
|
20
|
-
<div class="row justify-content-center
|
21
|
-
<div class="col-sm-12 col-
|
22
|
-
|
40
|
+
{% if page.with_artwork != false %}
|
41
|
+
<div class="row justify-content-center">
|
42
|
+
<div class="col-sm-12 col-lg-8">
|
43
|
+
<div class="my-4 artwork">
|
44
|
+
<img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_artwork }}" class="img-fluid rounded" alt="{{ page.title }}">
|
45
|
+
</div>
|
23
46
|
</div>
|
24
47
|
</div>
|
25
48
|
{% endif %}
|
26
49
|
|
27
|
-
{% if page.
|
28
|
-
<div class="row justify-content-center
|
29
|
-
<div class="col-sm-12 col-
|
50
|
+
{% if page.with_title != false -%}
|
51
|
+
<div class="row justify-content-center">
|
52
|
+
<div class="col-sm-12 col-lg-8">
|
53
|
+
<div class="my-4">
|
54
|
+
<div class="h1">{{ page.title }}</div>
|
55
|
+
{% if page.with_preamble != false -%}
|
56
|
+
<div class="lead">{{ page.title_lead }}</div>
|
57
|
+
{% endif -%}
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
</div>
|
61
|
+
{% endif %}
|
62
|
+
|
63
|
+
{% if page.with_toc == true %}
|
64
|
+
<div class="row justify-content-center">
|
65
|
+
<div class="col-sm-12 col-lg-8">
|
66
|
+
<div class="my-4">{% include base/toc-accordion.html %}</div>
|
67
|
+
</div>
|
30
68
|
</div>
|
31
69
|
{% endif %}
|
32
70
|
|
33
71
|
{% if page.with_content == true %}
|
34
|
-
<div class="row justify-content-center
|
35
|
-
<div class="col-sm-12 col-
|
36
|
-
|
72
|
+
<div class="row justify-content-center">
|
73
|
+
<div class="col-sm-12 col-lg-8">
|
74
|
+
<div class="content">
|
75
|
+
{{ content }}
|
76
|
+
</div>
|
37
77
|
</div>
|
38
78
|
</div>
|
39
79
|
{% endif %}
|
40
80
|
|
41
81
|
</main>
|
42
82
|
|
43
|
-
|
83
|
+
{% if page.with_footer == true %}
|
84
|
+
<footer class="footer small bg-dark bg-image text-light">
|
44
85
|
{% if page.with_shortcuts != false %}
|
45
86
|
<div class="container">
|
46
87
|
{% include base/shortcuts.html %}
|
@@ -68,6 +109,7 @@
|
|
68
109
|
{% endif %}
|
69
110
|
|
70
111
|
</footer>
|
112
|
+
{% endif %}
|
71
113
|
|
72
114
|
{% include base/script.html -%}
|
73
115
|
|
@@ -1,6 +1,12 @@
|
|
1
1
|
// --------------------------------------------------------------------------------
|
2
2
|
// Adjustments
|
3
3
|
// --------------------------------------------------------------------------------
|
4
|
+
header,
|
5
|
+
main,
|
6
|
+
footer {
|
7
|
+
position: relative;
|
8
|
+
top: 59px;
|
9
|
+
}
|
4
10
|
|
5
11
|
// --------------------------------------------------------------------------------
|
6
12
|
// Backgrounds
|
@@ -9,9 +15,37 @@
|
|
9
15
|
background-image: url("../../img/centos-motif.png");
|
10
16
|
background-size: cover;
|
11
17
|
background-repeat: no-repeat;
|
18
|
+
}
|
19
|
+
.bg-image-center {
|
12
20
|
background-position: center;
|
13
21
|
}
|
14
22
|
|
23
|
+
.bg-image-top {
|
24
|
+
background-position: top;
|
25
|
+
}
|
26
|
+
|
27
|
+
.bg-image-bottom {
|
28
|
+
background-position: bottom;
|
29
|
+
}
|
30
|
+
|
31
|
+
.bg-dots {
|
32
|
+
background-image: radial-gradient(#fcfcfc 8px, transparent 8px);
|
33
|
+
background-size: 24px 24px;
|
34
|
+
background-color: #ffffff;
|
35
|
+
}
|
36
|
+
|
37
|
+
// --------------------------------------------------------------------------------
|
38
|
+
// Section
|
39
|
+
// --------------------------------------------------------------------------------
|
40
|
+
.h-polygon-ltr {
|
41
|
+
-webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 100%);
|
42
|
+
clip-path: polygon(0 0, 100% 0%, 100% 80%, 0 100%);
|
43
|
+
}
|
44
|
+
.h-polygon-rtl {
|
45
|
+
-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
|
46
|
+
clip-path: polygon(0 0, 100% 0%, 100% 100%, 100 80%);
|
47
|
+
}
|
48
|
+
|
15
49
|
// --------------------------------------------------------------------------------
|
16
50
|
// Backgrounds Gradients
|
17
51
|
// --------------------------------------------------------------------------------
|
@@ -33,10 +67,10 @@
|
|
33
67
|
background-clip: text;
|
34
68
|
}
|
35
69
|
.text-gradient-primary {
|
36
|
-
background-image: linear-gradient(90deg, #{$primary}
|
70
|
+
background-image: linear-gradient(90deg, #{$primary} 50%, #{$secondary} 60%);
|
37
71
|
}
|
38
72
|
.text-gradient-secondary {
|
39
|
-
background-image: linear-gradient(270deg, #{$primary}
|
73
|
+
background-image: linear-gradient(270deg, #{$primary} 50%, #{$secondary} 60%);
|
40
74
|
}
|
41
75
|
|
42
76
|
nav {
|
@@ -72,7 +106,6 @@ main {
|
|
72
106
|
scroll-margin-top: 80px;
|
73
107
|
scroll-margin-bottom: 100px;
|
74
108
|
}
|
75
|
-
|
76
109
|
.content {
|
77
110
|
// --------------------------------------------------------------------------------
|
78
111
|
// Highlightjs-copy
|
@@ -89,7 +122,6 @@ main {
|
|
89
122
|
--hljs-theme-background: var(--bs-body-color);
|
90
123
|
}
|
91
124
|
}
|
92
|
-
|
93
125
|
// --------------------------------------------------------------------------------
|
94
126
|
// Alerts
|
95
127
|
// --------------------------------------------------------------------------------
|
@@ -118,7 +150,6 @@ main {
|
|
118
150
|
background-image: $alert-success-icon;
|
119
151
|
}
|
120
152
|
}
|
121
|
-
|
122
153
|
// --------------------------------------------------------------------------------
|
123
154
|
// Tuneup first paragraph top margin when it is the first element inside
|
124
155
|
// content.
|
@@ -126,7 +157,6 @@ main {
|
|
126
157
|
> p:first-child {
|
127
158
|
margin-top: 3rem;
|
128
159
|
}
|
129
|
-
|
130
160
|
// --------------------------------------------------------------------------------
|
131
161
|
// Tables
|
132
162
|
// --------------------------------------------------------------------------------
|
@@ -143,15 +173,3 @@ main {
|
|
143
173
|
}
|
144
174
|
}
|
145
175
|
}
|
146
|
-
|
147
|
-
footer,
|
148
|
-
.accordion-body {
|
149
|
-
a {
|
150
|
-
&:link {
|
151
|
-
text-decoration: none;
|
152
|
-
}
|
153
|
-
&:hover {
|
154
|
-
text-decoration: underline;
|
155
|
-
}
|
156
|
-
}
|
157
|
-
}
|
data/_sass/base/_variables.scss
CHANGED
@@ -12,11 +12,11 @@ $centos-green: #9ccd2a;
|
|
12
12
|
// scss-docs-start theme-color-variables
|
13
13
|
$primary: $centos-purple;
|
14
14
|
$secondary: $centos-orange;
|
15
|
+
$dark: #200735;
|
15
16
|
$success: #198754;
|
16
17
|
$info: #0dcaf0;
|
17
18
|
$warning: #ffc107;
|
18
19
|
$danger: #dc3545;
|
19
|
-
$dark: #200735;
|
20
20
|
// scss-docs-end theme-color-variables
|
21
21
|
|
22
22
|
// scss-docs-start theme-text-variables
|
@@ -31,7 +31,6 @@ $danger-text-emphasis: shade-color($danger, 60%);
|
|
31
31
|
$font-family-sans-serif: "Montserrat", sans-serif;
|
32
32
|
$font-family-monospace: "Source Code Pro", monospace;
|
33
33
|
$headings-font-weight: 700;
|
34
|
-
$line-height-base: 1.65;
|
35
34
|
|
36
35
|
$dropdown-dark-bg: $dark;
|
37
36
|
$breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z'/></svg>");
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
data/assets/icons/favicon.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
|
@@ -1 +1 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="matrix(1.03353 0 0 1.03353 0 -177.767)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#000;fill-opacity:1"/></g></g><g transform="rotate(45 -279.113 -871.9)
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="matrix(1.03353 0 0 1.03353 0 -177.767)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#000;fill-opacity:1"/></g></g><g transform="rotate(45 -279.113 -871.9)scale(1.59251)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:#000;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:#fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000"/></g></svg>
|
data/assets/img/anaconda.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="matrix(1.03353 0 0 1.03353 0 -177.767)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#a14f8c;fill-opacity:1"/></g></g><g transform="matrix(1.59252 0 0 1.5925 -551.95 421.964)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="matrix(1.03353 0 0 1.03353 0 -177.767)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#a14f8c;fill-opacity:1"/></g></g><g transform="matrix(1.59252 0 0 1.5925 -551.95 421.964)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
|
Binary file
|