jekyll-theme-centos 2.42.0 → 2.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +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 +3 -2
- data/_includes/base/finale.html +6 -10
- data/_includes/base/navbar.html +1 -1
- data/_includes/base/script.html +1 -1
- data/_layouts/base/default.html +60 -18
- data/_sass/base/_customization.scss +36 -2
- 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: ed08f57a7acdf8ff35ac9eff556bc3473e7efb82e1eb8ea813516e3af19bf093
|
|
4
|
+
data.tar.gz: ad8c332a06fd22c81f4c8759ae0732e437cf4dab4253680c4400a5ce883d6bdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b768baf097a9d51450bd621b014533612cee0133ce3ce485e41f4ff6fcaf658c33a13bd6d962aac06531b442d8caf05f27a172d40c602cc80c3faa32bfa6df8
|
|
7
|
+
data.tar.gz: 07774a24892026498316d04b42aa9dbd2812bccf09927dae8324f76d644ef9fa3f26add54049d305028e5a88229b099be7478970e0d89fdd5c78374aec44e322
|
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,9 +1,10 @@
|
|
|
1
|
+
{% assign copyright = site.data[site.navbar_data_dirname]["copyright"] %}
|
|
1
2
|
<div class="row my-3">
|
|
2
3
|
<div class="col">
|
|
3
4
|
<span>Copyright ©</span>
|
|
4
5
|
<span id="copyright_year"></span>
|
|
5
|
-
<span>{{
|
|
6
|
-
{% for item in
|
|
6
|
+
<span>{{ copyright.author }}</span>
|
|
7
|
+
{% for item in copyright.legals -%}
|
|
7
8
|
<span class="border-start ms-2 ps-2">
|
|
8
9
|
<a class="link-light" href="{{ item.link }}">{{ item.text }}</a>
|
|
9
10
|
</span>
|
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
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 {
|
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
|