jekyll-theme-centos 2.2.2 → 2.2.3
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/footer.yml +32 -0
- data/_data/base/identity.yml +20 -0
- data/_data/base/navbar.yml +74 -0
- data/_data/base/navbar_absolute.yml +74 -0
- data/_data/base/navbar_component.yml +60 -0
- data/_data/download/cards.yml +148 -0
- data/_data/download/navbar.yml +48 -0
- data/_data/people/navbar.yml +34 -0
- data/_includes/base/announcements.html +6 -0
- data/_includes/base/breadcrumbs.html +13 -0
- data/_includes/base/footer.html +61 -0
- data/_includes/base/head.html +17 -0
- data/_includes/base/header.html +17 -0
- data/_includes/base/navbar.html +32 -0
- data/_includes/base/script.html +70 -0
- data/_includes/base/toc-accordion.html +10 -0
- data/_includes/base/toc.html +99 -0
- data/_includes/download/cards-body-convert.html +10 -0
- data/_includes/download/cards-body-doc.html +9 -0
- data/_includes/download/cards-body-eol.html +16 -0
- data/_includes/download/cards-body-screenshot.html +26 -0
- data/_includes/download/cards-body.html +8 -0
- data/_includes/download/cards-footer.html +3 -0
- data/_includes/download/cards-header-convert.html +8 -0
- data/_includes/download/cards-header-doc.html +8 -0
- data/_includes/download/cards-header-eol.html +8 -0
- data/_includes/download/cards-header-screenshot.html +8 -0
- data/_includes/download/cards-header.html +13 -0
- data/_includes/download/cards.html +62 -0
- data/_includes/people/about.html +25 -0
- data/_includes/people/header.html +11 -0
- data/_includes/people/posts.html +35 -0
- data/_includes/people/projects.html +32 -0
- data/_includes/people/pubkeys.html +31 -0
- data/_includes/people/support.html +25 -0
- data/_layouts/base/default.html +31 -0
- data/_layouts/download/cards.html +7 -0
- data/_layouts/people/default.html +20 -0
- data/_sass/base/_centos-lists.scss +132 -0
- data/_sass/base/_centos.scss +80 -0
- data/_sass/base/_variables.scss +24 -0
- data/_sass/bootstrap/_accordion.scss +158 -0
- data/_sass/bootstrap/_alert.scss +68 -0
- data/_sass/bootstrap/_badge.scss +38 -0
- data/_sass/bootstrap/_breadcrumb.scss +40 -0
- data/_sass/bootstrap/_button-group.scss +142 -0
- data/_sass/bootstrap/_buttons.scss +207 -0
- data/_sass/bootstrap/_card.scss +239 -0
- data/_sass/bootstrap/_carousel.scss +244 -0
- data/_sass/bootstrap/_close.scss +63 -0
- data/_sass/bootstrap/_containers.scss +41 -0
- data/_sass/bootstrap/_dropdown.scss +250 -0
- data/_sass/bootstrap/_forms.scss +9 -0
- data/_sass/bootstrap/_functions.scss +302 -0
- data/_sass/bootstrap/_grid.scss +39 -0
- data/_sass/bootstrap/_helpers.scss +12 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_list-group.scss +197 -0
- data/_sass/bootstrap/_maps.scss +174 -0
- data/_sass/bootstrap/_mixins.scss +42 -0
- data/_sass/bootstrap/_modal.scss +237 -0
- data/_sass/bootstrap/_nav.scss +209 -0
- data/_sass/bootstrap/_navbar.scss +289 -0
- data/_sass/bootstrap/_offcanvas.scss +146 -0
- data/_sass/bootstrap/_pagination.scss +109 -0
- data/_sass/bootstrap/_placeholders.scss +51 -0
- data/_sass/bootstrap/_popover.scss +196 -0
- data/_sass/bootstrap/_progress.scss +68 -0
- data/_sass/bootstrap/_reboot.scss +610 -0
- data/_sass/bootstrap/_root.scss +184 -0
- data/_sass/bootstrap/_spinners.scss +85 -0
- data/_sass/bootstrap/_tables.scss +171 -0
- data/_sass/bootstrap/_toasts.scss +73 -0
- data/_sass/bootstrap/_tooltip.scss +119 -0
- data/_sass/bootstrap/_transitions.scss +27 -0
- data/_sass/bootstrap/_type.scss +106 -0
- data/_sass/bootstrap/_utilities.scss +806 -0
- data/_sass/bootstrap/_variables-dark.scss +85 -0
- data/_sass/bootstrap/_variables.scss +1743 -0
- data/_sass/bootstrap/bootstrap-grid.scss +62 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
- data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
- data/_sass/bootstrap/bootstrap.scss +52 -0
- data/_sass/bootstrap/forms/_floating-labels.scss +94 -0
- data/_sass/bootstrap/forms/_form-check.scss +188 -0
- data/_sass/bootstrap/forms/_form-control.scss +214 -0
- data/_sass/bootstrap/forms/_form-range.scss +91 -0
- data/_sass/bootstrap/forms/_form-select.scss +80 -0
- data/_sass/bootstrap/forms/_form-text.scss +11 -0
- data/_sass/bootstrap/forms/_input-group.scss +132 -0
- data/_sass/bootstrap/forms/_labels.scss +36 -0
- data/_sass/bootstrap/forms/_validation.scss +12 -0
- data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
- data/_sass/bootstrap/helpers/_color-bg.scss +8 -0
- data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
- data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
- data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
- data/_sass/bootstrap/helpers/_position.scss +36 -0
- data/_sass/bootstrap/helpers/_ratio.scss +26 -0
- data/_sass/bootstrap/helpers/_stacks.scss +15 -0
- data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
- data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
- data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/_sass/bootstrap/helpers/_vr.scss +8 -0
- data/_sass/bootstrap/mixins/_alert.scss +18 -0
- data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
- data/_sass/bootstrap/mixins/_banner.scss +7 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +18 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
- data/_sass/bootstrap/mixins/_buttons.scss +70 -0
- data/_sass/bootstrap/mixins/_caret.scss +69 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
- data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
- data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
- data/_sass/bootstrap/mixins/_container.scss +11 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_forms.scss +153 -0
- data/_sass/bootstrap/mixins/_gradients.scss +47 -0
- data/_sass/bootstrap/mixins/_grid.scss +151 -0
- data/_sass/bootstrap/mixins/_image.scss +16 -0
- data/_sass/bootstrap/mixins/_list-group.scss +26 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_pagination.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_utilities.scss +97 -0
- data/_sass/bootstrap/mixins/_visually-hidden.scss +33 -0
- data/_sass/bootstrap/utilities/_api.scss +47 -0
- data/_sass/bootstrap/vendor/_rfs.scss +348 -0
- data/assets/css/dataTables.bootstrap5.css +430 -0
- data/assets/css/dataTables.bootstrap5.min.css +5 -0
- 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.ico +0 -0
- data/assets/icons/favicon.svg +1 -0
- data/assets/img/anaconda-symbolic.svg +1 -0
- data/assets/img/anaconda.svg +1 -0
- data/assets/img/centos-dynamicmsg-logo.svg +1 -0
- data/assets/img/centos-dynamicmsg-type.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
- data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
- data/assets/img/centos-gdm-whitelogo.svg +1 -0
- data/assets/img/centos-ipa-whiteheader.svg +1 -0
- data/assets/img/centos-logo-2bits.svg +1 -0
- data/assets/img/centos-logo.svg +1 -0
- data/assets/img/centos-message-logo.svg +1 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/centos-poweredby-logo.svg +1 -0
- data/assets/img/centos-symbol-2bits.svg +1 -0
- data/assets/img/centos-symbol.svg +1 -0
- data/assets/img/centos-type.svg +1 -0
- data/assets/img/centos-vertical-logo.svg +1 -0
- data/assets/img/centos-vertical-message-logo.svg +1 -0
- data/assets/img/centos-whitelogo.svg +1 -0
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +128 -0
- data/assets/img/people/YourUsername.svg +64 -0
- data/assets/img/people/screenshot.svg +135 -0
- data/assets/img/sort_asc.png +0 -0
- data/assets/img/sort_asc_disabled.png +0 -0
- data/assets/img/sort_both.png +0 -0
- data/assets/img/sort_desc.png +0 -0
- data/assets/img/sort_desc_disabled.png +0 -0
- data/assets/js/bootstrap.bundle.js +6306 -0
- data/assets/js/bootstrap.bundle.js.map +1 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/bootstrap.esm.js +4439 -0
- data/assets/js/bootstrap.esm.js.map +1 -0
- data/assets/js/bootstrap.esm.min.js +7 -0
- data/assets/js/bootstrap.esm.min.js.map +1 -0
- data/assets/js/bootstrap.js +4486 -0
- data/assets/js/bootstrap.js.map +1 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/bootstrap.min.js.map +1 -0
- data/assets/js/clipboard.min.js +7 -0
- data/assets/js/dataTables.bootstrap5.min.js +4 -0
- data/assets/js/jquery.dataTables.min.js +4 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.slim.min.js +2 -0
- data/assets/js/vanilla-back-to-top.min.js +1 -0
- metadata +192 -1
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
:root {
|
|
3
|
+
--dt-row-selected: 13, 110, 253;
|
|
4
|
+
--dt-row-selected-text: 255, 255, 255;
|
|
5
|
+
--dt-row-selected-link: 9, 10, 11;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
table.dataTable td.dt-control {
|
|
9
|
+
text-align: center;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
table.dataTable td.dt-control:before {
|
|
13
|
+
height: 1em;
|
|
14
|
+
width: 1em;
|
|
15
|
+
margin-top: -9px;
|
|
16
|
+
display: inline-block;
|
|
17
|
+
color: white;
|
|
18
|
+
border: 0.15em solid white;
|
|
19
|
+
border-radius: 1em;
|
|
20
|
+
box-shadow: 0 0 0.2em #444;
|
|
21
|
+
box-sizing: content-box;
|
|
22
|
+
text-align: center;
|
|
23
|
+
text-indent: 0 !important;
|
|
24
|
+
font-family: "Courier New", Courier, monospace;
|
|
25
|
+
line-height: 1em;
|
|
26
|
+
content: "+";
|
|
27
|
+
background-color: #31b131;
|
|
28
|
+
}
|
|
29
|
+
table.dataTable tr.dt-hasChild td.dt-control:before {
|
|
30
|
+
content: "-";
|
|
31
|
+
background-color: #d33333;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
|
|
35
|
+
table.dataTable thead > tr > td.sorting,
|
|
36
|
+
table.dataTable thead > tr > td.sorting_asc,
|
|
37
|
+
table.dataTable thead > tr > td.sorting_desc,
|
|
38
|
+
table.dataTable thead > tr > td.sorting_asc_disabled,
|
|
39
|
+
table.dataTable thead > tr > td.sorting_desc_disabled {
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
position: relative;
|
|
42
|
+
padding-right: 26px;
|
|
43
|
+
}
|
|
44
|
+
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
|
45
|
+
table.dataTable thead > tr > td.sorting:before,
|
|
46
|
+
table.dataTable thead > tr > td.sorting:after,
|
|
47
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
|
48
|
+
table.dataTable thead > tr > td.sorting_asc:after,
|
|
49
|
+
table.dataTable thead > tr > td.sorting_desc:before,
|
|
50
|
+
table.dataTable thead > tr > td.sorting_desc:after,
|
|
51
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
|
52
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
|
53
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:before,
|
|
54
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
|
55
|
+
position: absolute;
|
|
56
|
+
display: block;
|
|
57
|
+
opacity: 0.125;
|
|
58
|
+
right: 10px;
|
|
59
|
+
line-height: 9px;
|
|
60
|
+
font-size: 0.8em;
|
|
61
|
+
}
|
|
62
|
+
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
|
|
63
|
+
table.dataTable thead > tr > td.sorting:before,
|
|
64
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
|
65
|
+
table.dataTable thead > tr > td.sorting_desc:before,
|
|
66
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
|
67
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:before {
|
|
68
|
+
bottom: 50%;
|
|
69
|
+
content: "▲";
|
|
70
|
+
content: "▲"/"";
|
|
71
|
+
}
|
|
72
|
+
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
|
73
|
+
table.dataTable thead > tr > td.sorting:after,
|
|
74
|
+
table.dataTable thead > tr > td.sorting_asc:after,
|
|
75
|
+
table.dataTable thead > tr > td.sorting_desc:after,
|
|
76
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
|
77
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
|
78
|
+
top: 50%;
|
|
79
|
+
content: "▼";
|
|
80
|
+
content: "▼"/"";
|
|
81
|
+
}
|
|
82
|
+
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
|
|
83
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
|
84
|
+
table.dataTable thead > tr > td.sorting_desc:after {
|
|
85
|
+
opacity: 0.6;
|
|
86
|
+
}
|
|
87
|
+
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
|
|
88
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after,
|
|
89
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before {
|
|
90
|
+
display: none;
|
|
91
|
+
}
|
|
92
|
+
table.dataTable thead > tr > th:active,
|
|
93
|
+
table.dataTable thead > tr > td:active {
|
|
94
|
+
outline: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
|
|
98
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
|
|
99
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
|
|
100
|
+
display: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
div.dataTables_processing {
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 50%;
|
|
106
|
+
left: 50%;
|
|
107
|
+
width: 200px;
|
|
108
|
+
margin-left: -100px;
|
|
109
|
+
margin-top: -26px;
|
|
110
|
+
text-align: center;
|
|
111
|
+
padding: 2px;
|
|
112
|
+
}
|
|
113
|
+
div.dataTables_processing > div:last-child {
|
|
114
|
+
position: relative;
|
|
115
|
+
width: 80px;
|
|
116
|
+
height: 15px;
|
|
117
|
+
margin: 1em auto;
|
|
118
|
+
}
|
|
119
|
+
div.dataTables_processing > div:last-child > div {
|
|
120
|
+
position: absolute;
|
|
121
|
+
top: 0;
|
|
122
|
+
width: 13px;
|
|
123
|
+
height: 13px;
|
|
124
|
+
border-radius: 50%;
|
|
125
|
+
background: #0d6efd;
|
|
126
|
+
background: rgb(var(--dt-row-selected));
|
|
127
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
128
|
+
}
|
|
129
|
+
div.dataTables_processing > div:last-child > div:nth-child(1) {
|
|
130
|
+
left: 8px;
|
|
131
|
+
animation: datatables-loader-1 0.6s infinite;
|
|
132
|
+
}
|
|
133
|
+
div.dataTables_processing > div:last-child > div:nth-child(2) {
|
|
134
|
+
left: 8px;
|
|
135
|
+
animation: datatables-loader-2 0.6s infinite;
|
|
136
|
+
}
|
|
137
|
+
div.dataTables_processing > div:last-child > div:nth-child(3) {
|
|
138
|
+
left: 32px;
|
|
139
|
+
animation: datatables-loader-2 0.6s infinite;
|
|
140
|
+
}
|
|
141
|
+
div.dataTables_processing > div:last-child > div:nth-child(4) {
|
|
142
|
+
left: 56px;
|
|
143
|
+
animation: datatables-loader-3 0.6s infinite;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@keyframes datatables-loader-1 {
|
|
147
|
+
0% {
|
|
148
|
+
transform: scale(0);
|
|
149
|
+
}
|
|
150
|
+
100% {
|
|
151
|
+
transform: scale(1);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
@keyframes datatables-loader-3 {
|
|
155
|
+
0% {
|
|
156
|
+
transform: scale(1);
|
|
157
|
+
}
|
|
158
|
+
100% {
|
|
159
|
+
transform: scale(0);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
@keyframes datatables-loader-2 {
|
|
163
|
+
0% {
|
|
164
|
+
transform: translate(0, 0);
|
|
165
|
+
}
|
|
166
|
+
100% {
|
|
167
|
+
transform: translate(24px, 0);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
|
171
|
+
white-space: nowrap;
|
|
172
|
+
}
|
|
173
|
+
table.dataTable th.dt-left,
|
|
174
|
+
table.dataTable td.dt-left {
|
|
175
|
+
text-align: left;
|
|
176
|
+
}
|
|
177
|
+
table.dataTable th.dt-center,
|
|
178
|
+
table.dataTable td.dt-center,
|
|
179
|
+
table.dataTable td.dataTables_empty {
|
|
180
|
+
text-align: center;
|
|
181
|
+
}
|
|
182
|
+
table.dataTable th.dt-right,
|
|
183
|
+
table.dataTable td.dt-right {
|
|
184
|
+
text-align: right;
|
|
185
|
+
}
|
|
186
|
+
table.dataTable th.dt-justify,
|
|
187
|
+
table.dataTable td.dt-justify {
|
|
188
|
+
text-align: justify;
|
|
189
|
+
}
|
|
190
|
+
table.dataTable th.dt-nowrap,
|
|
191
|
+
table.dataTable td.dt-nowrap {
|
|
192
|
+
white-space: nowrap;
|
|
193
|
+
}
|
|
194
|
+
table.dataTable thead th,
|
|
195
|
+
table.dataTable thead td,
|
|
196
|
+
table.dataTable tfoot th,
|
|
197
|
+
table.dataTable tfoot td {
|
|
198
|
+
text-align: left;
|
|
199
|
+
}
|
|
200
|
+
table.dataTable thead th.dt-head-left,
|
|
201
|
+
table.dataTable thead td.dt-head-left,
|
|
202
|
+
table.dataTable tfoot th.dt-head-left,
|
|
203
|
+
table.dataTable tfoot td.dt-head-left {
|
|
204
|
+
text-align: left;
|
|
205
|
+
}
|
|
206
|
+
table.dataTable thead th.dt-head-center,
|
|
207
|
+
table.dataTable thead td.dt-head-center,
|
|
208
|
+
table.dataTable tfoot th.dt-head-center,
|
|
209
|
+
table.dataTable tfoot td.dt-head-center {
|
|
210
|
+
text-align: center;
|
|
211
|
+
}
|
|
212
|
+
table.dataTable thead th.dt-head-right,
|
|
213
|
+
table.dataTable thead td.dt-head-right,
|
|
214
|
+
table.dataTable tfoot th.dt-head-right,
|
|
215
|
+
table.dataTable tfoot td.dt-head-right {
|
|
216
|
+
text-align: right;
|
|
217
|
+
}
|
|
218
|
+
table.dataTable thead th.dt-head-justify,
|
|
219
|
+
table.dataTable thead td.dt-head-justify,
|
|
220
|
+
table.dataTable tfoot th.dt-head-justify,
|
|
221
|
+
table.dataTable tfoot td.dt-head-justify {
|
|
222
|
+
text-align: justify;
|
|
223
|
+
}
|
|
224
|
+
table.dataTable thead th.dt-head-nowrap,
|
|
225
|
+
table.dataTable thead td.dt-head-nowrap,
|
|
226
|
+
table.dataTable tfoot th.dt-head-nowrap,
|
|
227
|
+
table.dataTable tfoot td.dt-head-nowrap {
|
|
228
|
+
white-space: nowrap;
|
|
229
|
+
}
|
|
230
|
+
table.dataTable tbody th.dt-body-left,
|
|
231
|
+
table.dataTable tbody td.dt-body-left {
|
|
232
|
+
text-align: left;
|
|
233
|
+
}
|
|
234
|
+
table.dataTable tbody th.dt-body-center,
|
|
235
|
+
table.dataTable tbody td.dt-body-center {
|
|
236
|
+
text-align: center;
|
|
237
|
+
}
|
|
238
|
+
table.dataTable tbody th.dt-body-right,
|
|
239
|
+
table.dataTable tbody td.dt-body-right {
|
|
240
|
+
text-align: right;
|
|
241
|
+
}
|
|
242
|
+
table.dataTable tbody th.dt-body-justify,
|
|
243
|
+
table.dataTable tbody td.dt-body-justify {
|
|
244
|
+
text-align: justify;
|
|
245
|
+
}
|
|
246
|
+
table.dataTable tbody th.dt-body-nowrap,
|
|
247
|
+
table.dataTable tbody td.dt-body-nowrap {
|
|
248
|
+
white-space: nowrap;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/*! Bootstrap 5 integration for DataTables
|
|
252
|
+
*
|
|
253
|
+
* ©2020 SpryMedia Ltd, all rights reserved.
|
|
254
|
+
* License: MIT datatables.net/license/mit
|
|
255
|
+
*/
|
|
256
|
+
table.dataTable {
|
|
257
|
+
clear: both;
|
|
258
|
+
margin-top: 6px !important;
|
|
259
|
+
margin-bottom: 6px !important;
|
|
260
|
+
max-width: none !important;
|
|
261
|
+
border-collapse: separate !important;
|
|
262
|
+
border-spacing: 0;
|
|
263
|
+
}
|
|
264
|
+
table.dataTable td,
|
|
265
|
+
table.dataTable th {
|
|
266
|
+
-webkit-box-sizing: content-box;
|
|
267
|
+
box-sizing: content-box;
|
|
268
|
+
}
|
|
269
|
+
table.dataTable td.dataTables_empty,
|
|
270
|
+
table.dataTable th.dataTables_empty {
|
|
271
|
+
text-align: center;
|
|
272
|
+
}
|
|
273
|
+
table.dataTable.nowrap th,
|
|
274
|
+
table.dataTable.nowrap td {
|
|
275
|
+
white-space: nowrap;
|
|
276
|
+
}
|
|
277
|
+
table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
|
|
278
|
+
box-shadow: none;
|
|
279
|
+
}
|
|
280
|
+
table.dataTable > tbody > tr {
|
|
281
|
+
background-color: transparent;
|
|
282
|
+
}
|
|
283
|
+
table.dataTable > tbody > tr.selected > * {
|
|
284
|
+
box-shadow: inset 0 0 0 9999px #0d6efd;
|
|
285
|
+
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
|
|
286
|
+
color: white;
|
|
287
|
+
color: rgb(var(--dt-row-selected-text));
|
|
288
|
+
}
|
|
289
|
+
table.dataTable > tbody > tr.selected a {
|
|
290
|
+
color: #090a0b;
|
|
291
|
+
color: rgb(var(--dt-row-selected-link));
|
|
292
|
+
}
|
|
293
|
+
table.dataTable.table-striped > tbody > tr.odd > * {
|
|
294
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
|
|
295
|
+
}
|
|
296
|
+
table.dataTable.table-striped > tbody > tr.odd.selected > * {
|
|
297
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.95);
|
|
298
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95);
|
|
299
|
+
}
|
|
300
|
+
table.dataTable.table-hover > tbody > tr:hover > * {
|
|
301
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.075);
|
|
302
|
+
}
|
|
303
|
+
table.dataTable.table-hover > tbody > tr.selected:hover > * {
|
|
304
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.975);
|
|
305
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
div.dataTables_wrapper div.dataTables_length label {
|
|
309
|
+
font-weight: normal;
|
|
310
|
+
text-align: left;
|
|
311
|
+
white-space: nowrap;
|
|
312
|
+
}
|
|
313
|
+
div.dataTables_wrapper div.dataTables_length select {
|
|
314
|
+
width: auto;
|
|
315
|
+
display: inline-block;
|
|
316
|
+
}
|
|
317
|
+
div.dataTables_wrapper div.dataTables_filter {
|
|
318
|
+
text-align: right;
|
|
319
|
+
}
|
|
320
|
+
div.dataTables_wrapper div.dataTables_filter label {
|
|
321
|
+
font-weight: normal;
|
|
322
|
+
white-space: nowrap;
|
|
323
|
+
text-align: left;
|
|
324
|
+
}
|
|
325
|
+
div.dataTables_wrapper div.dataTables_filter input {
|
|
326
|
+
margin-left: 0.5em;
|
|
327
|
+
display: inline-block;
|
|
328
|
+
width: auto;
|
|
329
|
+
}
|
|
330
|
+
div.dataTables_wrapper div.dataTables_info {
|
|
331
|
+
padding-top: 0.85em;
|
|
332
|
+
}
|
|
333
|
+
div.dataTables_wrapper div.dataTables_paginate {
|
|
334
|
+
margin: 0;
|
|
335
|
+
white-space: nowrap;
|
|
336
|
+
text-align: right;
|
|
337
|
+
}
|
|
338
|
+
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
|
|
339
|
+
margin: 2px 0;
|
|
340
|
+
white-space: nowrap;
|
|
341
|
+
justify-content: flex-end;
|
|
342
|
+
}
|
|
343
|
+
div.dataTables_wrapper div.dt-row {
|
|
344
|
+
position: relative;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
div.dataTables_scrollHead table.dataTable {
|
|
348
|
+
margin-bottom: 0 !important;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
div.dataTables_scrollBody > table {
|
|
352
|
+
border-top: none;
|
|
353
|
+
margin-top: 0 !important;
|
|
354
|
+
margin-bottom: 0 !important;
|
|
355
|
+
}
|
|
356
|
+
div.dataTables_scrollBody > table > thead .sorting:before,
|
|
357
|
+
div.dataTables_scrollBody > table > thead .sorting_asc:before,
|
|
358
|
+
div.dataTables_scrollBody > table > thead .sorting_desc:before,
|
|
359
|
+
div.dataTables_scrollBody > table > thead .sorting:after,
|
|
360
|
+
div.dataTables_scrollBody > table > thead .sorting_asc:after,
|
|
361
|
+
div.dataTables_scrollBody > table > thead .sorting_desc:after {
|
|
362
|
+
display: none;
|
|
363
|
+
}
|
|
364
|
+
div.dataTables_scrollBody > table > tbody tr:first-child th,
|
|
365
|
+
div.dataTables_scrollBody > table > tbody tr:first-child td {
|
|
366
|
+
border-top: none;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
div.dataTables_scrollFoot > .dataTables_scrollFootInner {
|
|
370
|
+
box-sizing: content-box;
|
|
371
|
+
}
|
|
372
|
+
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
|
|
373
|
+
margin-top: 0 !important;
|
|
374
|
+
border-top: none;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
@media screen and (max-width: 767px) {
|
|
378
|
+
div.dataTables_wrapper div.dataTables_length,
|
|
379
|
+
div.dataTables_wrapper div.dataTables_filter,
|
|
380
|
+
div.dataTables_wrapper div.dataTables_info,
|
|
381
|
+
div.dataTables_wrapper div.dataTables_paginate {
|
|
382
|
+
text-align: center;
|
|
383
|
+
}
|
|
384
|
+
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
|
|
385
|
+
justify-content: center !important;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {
|
|
389
|
+
padding-right: 20px;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
table.table-bordered.dataTable {
|
|
393
|
+
border-right-width: 0;
|
|
394
|
+
}
|
|
395
|
+
table.table-bordered.dataTable thead tr:first-child th,
|
|
396
|
+
table.table-bordered.dataTable thead tr:first-child td {
|
|
397
|
+
border-top-width: 1px;
|
|
398
|
+
}
|
|
399
|
+
table.table-bordered.dataTable th,
|
|
400
|
+
table.table-bordered.dataTable td {
|
|
401
|
+
border-left-width: 0;
|
|
402
|
+
}
|
|
403
|
+
table.table-bordered.dataTable th:first-child, table.table-bordered.dataTable th:first-child,
|
|
404
|
+
table.table-bordered.dataTable td:first-child,
|
|
405
|
+
table.table-bordered.dataTable td:first-child {
|
|
406
|
+
border-left-width: 1px;
|
|
407
|
+
}
|
|
408
|
+
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
|
|
409
|
+
table.table-bordered.dataTable td:last-child,
|
|
410
|
+
table.table-bordered.dataTable td:last-child {
|
|
411
|
+
border-right-width: 1px;
|
|
412
|
+
}
|
|
413
|
+
table.table-bordered.dataTable th,
|
|
414
|
+
table.table-bordered.dataTable td {
|
|
415
|
+
border-bottom-width: 1px;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
div.dataTables_scrollHead table.table-bordered {
|
|
419
|
+
border-bottom-width: 0;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
div.table-responsive > div.dataTables_wrapper > div.row {
|
|
423
|
+
margin: 0;
|
|
424
|
+
}
|
|
425
|
+
div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
|
|
426
|
+
padding-left: 0;
|
|
427
|
+
}
|
|
428
|
+
div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
|
|
429
|
+
padding-right: 0;
|
|
430
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
:root{--dt-row-selected: 13, 110, 253;--dt-row-selected-text: 255, 255, 255;--dt-row-selected-link: 9, 10, 11}table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:before{height:1em;width:1em;margin-top:-9px;display:inline-block;color:white;border:.15em solid white;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable tr.dt-hasChild td.dt-control:before{content:"-";background-color:#d33333}table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting_asc_disabled,table.dataTable thead>tr>th.sorting_desc_disabled,table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting_asc_disabled,table.dataTable thead>tr>td.sorting_desc_disabled{cursor:pointer;position:relative;padding-right:26px}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after{position:absolute;display:block;opacity:.125;right:10px;line-height:9px;font-size:.8em}table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:before,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:before{bottom:50%;content:"▲";content:"▲"/""}table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:after{top:50%;content:"▼";content:"▼"/""}table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:after{opacity:.6}table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting_asc_disabled:before{display:none}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}div.dataTables_scrollBody>table.dataTable>thead>tr>th:before,div.dataTables_scrollBody>table.dataTable>thead>tr>th:after,div.dataTables_scrollBody>table.dataTable>thead>tr>td:before,div.dataTables_scrollBody>table.dataTable>thead>tr>td:after{display:none}div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:2px}div.dataTables_processing>div:last-child{position:relative;width:80px;height:15px;margin:1em auto}div.dataTables_processing>div:last-child>div{position:absolute;top:0;width:13px;height:13px;border-radius:50%;background:#0d6efd;background:rgb(var(--dt-row-selected));animation-timing-function:cubic-bezier(0, 1, 1, 0)}div.dataTables_processing>div:last-child>div:nth-child(1){left:8px;animation:datatables-loader-1 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(2){left:8px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(3){left:32px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(4){left:56px;animation:datatables-loader-3 .6s infinite}@keyframes datatables-loader-1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes datatables-loader-3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes datatables-loader-2{0%{transform:translate(0, 0)}100%{transform:translate(24px, 0)}}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th,table.dataTable thead td,table.dataTable tfoot th,table.dataTable tfoot td{text-align:left}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}/*! Bootstrap 5 integration for DataTables
|
|
2
|
+
*
|
|
3
|
+
* ©2020 SpryMedia Ltd, all rights reserved.
|
|
4
|
+
* License: MIT datatables.net/license/mit
|
|
5
|
+
*/table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>*{box-shadow:none}table.dataTable>tbody>tr{background-color:transparent}table.dataTable>tbody>tr.selected>*{box-shadow:inset 0 0 0 9999px #0d6efd;box-shadow:inset 0 0 0 9999px rgb(var(--dt-row-selected));color:white;color:rgb(var(--dt-row-selected-text))}table.dataTable>tbody>tr.selected a{color:#090a0b;color:rgb(var(--dt-row-selected-link))}table.dataTable.table-striped>tbody>tr.odd>*{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.05)}table.dataTable.table-striped>tbody>tr.odd.selected>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.95);box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95)}table.dataTable.table-hover>tbody>tr:hover>*{box-shadow:inset 0 0 0 9999px rgba(0, 0, 0, 0.075)}table.dataTable.table-hover>tbody>tr.selected:hover>*{box-shadow:inset 0 0 0 9999px rgba(13, 110, 253, 0.975);box-shadow:inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975)}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dt-row{position:relative}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody>table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody>table>thead .sorting:before,div.dataTables_scrollBody>table>thead .sorting_asc:before,div.dataTables_scrollBody>table>thead .sorting_desc:before,div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after{display:none}div.dataTables_scrollBody>table>tbody tr:first-child th,div.dataTables_scrollBody>table>tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center !important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable thead tr:first-child th,table.table-bordered.dataTable thead tr:first-child td{border-top-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable th:first-child,table.table-bordered.dataTable td:first-child,table.table-bordered.dataTable td:first-child{border-left-width:1px}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-bottom-width:1px}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +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) 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>
|
|
@@ -0,0 +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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="650" height="210" viewBox="0 0 171.979 55.562"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M63.997 37.042c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.549-2.69-6.549-6.549 0-3.859 2.72-6.548 6.55-6.548 2.046 0 3.77.818 5.145 2.397l3.04-2.807c-1.93-2.339-4.882-3.625-8.42-3.625-6.373 0-11.11 4.415-11.11 10.583 0 6.17 4.737 10.584 11.081 10.584zM90.163 28.885c0-5.058-3.567-8.157-8.186-8.157-4.795 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.835 0 5.028-.877 6.49-2.544l-2.427-2.631c-1.081 1.023-2.28 1.52-3.946 1.52-2.398 0-4.064-1.198-4.503-3.157h11.9c.028-.38.087-.877.087-1.228zm-8.157-4.707c2.047 0 3.538 1.286 3.86 3.274h-7.748c.321-2.017 1.812-3.274 3.888-3.274zM102.763 20.728c-2.134 0-3.976.731-5.203 2.076v-1.842h-4.357v15.729h4.561v-7.777c0-2.894 1.579-4.239 3.772-4.239 2.017 0 3.186 1.17 3.186 3.713v8.303h4.561v-9.005c0-4.794-2.807-6.958-6.52-6.958zM122.322 32.715c-.497.38-1.17.584-1.842.584-1.228 0-1.958-.73-1.958-2.075V24.82h3.917v-3.508h-3.917v-3.83h-4.561v3.83h-2.427v3.508h2.427v6.461c0 3.742 2.163 5.643 5.876 5.643 1.403 0 2.778-.322 3.713-.994zM136.355 37.042c6.432 0 11.198-4.473 11.198-10.584 0-6.11-4.766-10.583-11.198-10.583-6.46 0-11.197 4.502-11.197 10.583s4.736 10.584 11.197 10.584zm0-4.035c-3.654 0-6.402-2.66-6.402-6.549 0-3.888 2.748-6.548 6.402-6.548 3.655 0 6.403 2.66 6.403 6.548 0 3.889-2.748 6.55-6.403 6.55zM157.844 37.042c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.082-2.34 3.889-2.34 1.813 0 3.771.527 5.672 1.609l1.461-3.596c-1.9-1.199-4.531-1.813-7.104-1.813-5.818 0-8.624 2.894-8.624 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.029-.877-6.754-2.134l-1.608 3.567c1.813 1.403 5.087 2.368 8.333 2.368z"/></g><text xml:space="preserve" x="52.489" y="50.139" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#a14f8c;stroke-width:.274085"><tspan x="52.489" y="50.139" style="font-weight:700;fill:#a14f8c;stroke-width:.274085">=MSG=</tspan></text><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="429.392" height="130" viewBox="0 0 113.61 34.396"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M11.08 21.167c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.548-2.69-6.548-6.549 0-3.859 2.719-6.548 6.548-6.548 2.047 0 3.772.818 5.146 2.397l3.04-2.807C17.6 1.286 14.647 0 11.11 0 4.737 0 0 4.415 0 10.583c0 6.17 4.736 10.584 11.08 10.584zM37.246 13.01c0-5.058-3.567-8.157-8.186-8.157-4.794 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.836 0 5.029-.877 6.49-2.544l-2.426-2.631c-1.082 1.023-2.28 1.52-3.947 1.52-2.397 0-4.064-1.198-4.502-3.157h11.899c.029-.38.087-.877.087-1.228zM29.09 8.303c2.047 0 3.538 1.286 3.86 3.274H25.2c.322-2.017 1.813-3.274 3.888-3.274zM49.847 4.853c-2.134 0-3.976.731-5.204 2.076V5.087h-4.356v15.729h4.56v-7.777c0-2.894 1.58-4.24 3.772-4.24 2.017 0 3.187 1.17 3.187 3.714v8.303h4.56V11.81c0-4.794-2.806-6.958-6.52-6.958zM69.405 16.84c-.497.38-1.169.584-1.841.584-1.228 0-1.96-.73-1.96-2.075V8.946h3.918V5.438h-3.917v-3.83h-4.56v3.83h-2.427v3.508h2.426v6.461c0 3.742 2.164 5.643 5.876 5.643 1.404 0 2.778-.322 3.713-.994zM83.439 21.167c6.431 0 11.197-4.473 11.197-10.584C94.636 4.473 89.87 0 83.439 0 76.978 0 72.24 4.502 72.24 10.583s4.737 10.584 11.198 10.584zm0-4.035c-3.655 0-6.403-2.66-6.403-6.549 0-3.888 2.748-6.548 6.403-6.548 3.654 0 6.402 2.66 6.402 6.548 0 3.889-2.748 6.55-6.402 6.55zM104.927 21.167c5.847 0 8.683-2.924 8.683-6.345 0-7.513-11.9-4.911-11.9-8.683 0-1.286 1.083-2.338 3.89-2.338 1.812 0 3.77.526 5.671 1.608l1.462-3.596C110.833.614 108.2 0 105.629 0c-5.818 0-8.625 2.894-8.625 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.028-.877-6.753-2.134l-1.608 3.567c1.812 1.403 5.087 2.368 8.332 2.368z"/></g><text xml:space="preserve" x="-.428" y="34.264" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#a14f8c;stroke-width:.274085"><tspan x="-.428" y="34.264" style="font-weight:700;fill:#a14f8c;stroke-width:.274085">=MSG=</tspan></text></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="650" height="210" viewBox="0 0 171.979 55.562"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713 0-3.955 2.787-6.712 6.712-6.712 2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848zM892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259zm-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356zM905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131zM925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848 0-6.263-4.885-10.848-11.477-10.848-6.623 0-11.477 4.615-11.477 10.848 0 6.233 4.854 10.848 11.477 10.848zm0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712 3.746 0 6.563 2.727 6.563 6.712 0 3.986-2.817 6.713-6.563 6.713zM962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427z" style="fill:#fff" transform="matrix(.97561 0 0 .97561 -780.823 -316.525)"/></g><text xml:space="preserve" x="52.489" y="50.139" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#fff;stroke-width:.274085"><tspan x="52.489" y="50.139" style="font-weight:700;fill:#fff;stroke-width:.274085">=MSG=</tspan></text><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="429.392" height="130" viewBox="0 0 113.61 34.396"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713 0-3.955 2.787-6.712 6.712-6.712 2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848zM892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259zm-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356zM905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131zM925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848 0-6.263-4.885-10.848-11.477-10.848-6.623 0-11.477 4.615-11.477 10.848 0 6.233 4.854 10.848 11.477 10.848zm0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712 3.746 0 6.563 2.727 6.563 6.712 0 3.986-2.817 6.713-6.563 6.713zM962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427z" style="fill:#fff" transform="matrix(.97561 0 0 .97561 -833.74 -332.4)"/></g><text xml:space="preserve" x="-.428" y="34.264" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#fff;stroke-width:.274085"><tspan x="-.428" y="34.264" style="font-weight:700;fill:#fff;stroke-width:.274085">=MSG=</tspan></text></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#fff;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713 0-3.955 2.787-6.712 6.712-6.712 2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848zM892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259zm-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356zM905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131zM925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848 0-6.263-4.885-10.848-11.477-10.848-6.623 0-11.477 4.615-11.477 10.848 0 6.233 4.854 10.848 11.477 10.848zm0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712 3.746 0 6.563 2.727 6.563 6.712 0 3.986-2.817 6.713-6.563 6.713zM962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427z" style="fill:#fff" transform="matrix(.97561 0 0 .97561 -786.115 -321.817)"/></g><g style="fill:#6e5b98;fill-opacity:1" 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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="461.382" height="20" viewBox="0 0 122.074 5.292"><defs><filter id="a" width="1" height="1" x="0" y="0" style="color-interpolation-filters:sRGB"><feGaussianBlur/></filter></defs><path d="M2125.968 188.76c.892 0 1.63-.322 2.113-.914l-.76-.702c-.344.402-.775.607-1.287.607-.957 0-1.637-.673-1.637-1.638 0-.964.68-1.637 1.637-1.637.512 0 .943.205 1.287.6l.76-.702c-.483-.585-1.22-.907-2.105-.907-1.594 0-2.778 1.104-2.778 2.646 0 1.542 1.184 2.646 2.77 2.646zM2132.51 186.72c0-1.264-.892-2.04-2.046-2.04-1.2 0-2.098.849-2.098 2.025 0 1.17.884 2.025 2.244 2.025.709 0 1.257-.22 1.622-.636l-.606-.658c-.27.256-.57.38-.987.38-.6 0-1.016-.3-1.126-.79h2.975c.01-.094.022-.218.022-.306zm-2.04-1.177c.512 0 .885.322.966.819h-1.937c.08-.504.453-.819.972-.819zM2135.66 184.68c-.533 0-.994.183-1.3.52v-.46h-1.09v3.931h1.14v-1.944c0-.723.395-1.06.943-1.06.504 0 .797.293.797.929v2.075h1.14v-2.25c0-1.2-.702-1.74-1.63-1.74zM2140.55 187.677a.769.769 0 0 1-.46.147c-.308 0-.49-.183-.49-.52v-1.6h.979v-.877h-.98v-.958h-1.14v.958h-.606v.877h.606v1.615c0 .936.541 1.41 1.47 1.41.35 0 .694-.08.928-.248zM2144.058 188.76c1.608 0 2.8-1.12 2.8-2.647 0-1.527-1.192-2.646-2.8-2.646-1.615 0-2.8 1.126-2.8 2.646s1.185 2.646 2.8 2.646zm0-1.01c-.913 0-1.6-.665-1.6-1.637s.687-1.637 1.6-1.637c.914 0 1.6.665 1.6 1.637s-.686 1.638-1.6 1.638zM2149.43 188.76c1.462 0 2.17-.732 2.17-1.587 0-1.878-2.974-1.228-2.974-2.17 0-.322.27-.585.972-.585.453 0 .943.131 1.418.402l.366-.9c-.475-.299-1.133-.453-1.776-.453-1.455 0-2.157.724-2.157 1.594 0 1.9 2.975 1.242 2.975 2.2 0 .314-.285.548-.987.548-.613 0-1.257-.22-1.688-.534l-.402.892c.453.35 1.272.592 2.083.592z" style="font-weight:700;font-size:35.8707px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";letter-spacing:0;word-spacing:0;fill:#fff;stroke-width:.0408834" transform="translate(-2123.198 -183.467)"/><g aria-label="IDENTITY MANAGEMENT" style="font-size:7.30893px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#fff;stroke-width:.182724;filter:url(#a)" transform="matrix(.99974 0 0 .99974 501.796 .181)"><path d="M-470.394 5.023h.373V-.093h-.373zM-468.238 5.023h2.025c1.622 0 2.719-1.067 2.719-2.558 0-1.49-1.097-2.558-2.72-2.558h-2.024zm.373-.336V.243h1.622c1.448 0 2.376.921 2.376 2.222s-.928 2.222-2.376 2.222zM-461.828 4.687V2.59h2.726v-.33h-2.726V.244h3.048v-.336h-3.42v5.116h3.53v-.336ZM-453.518-.093v4.444l-3.479-4.444h-.314v5.116h.373V.58l3.486 4.443h.307V-.093zM-450.382 5.023h.373V.243h1.841v-.336h-4.056v.336h1.842zM-447.247 5.023h.373V-.093h-.373zM-444.111 5.023h.373V.243h1.841v-.336h-4.056v.336h1.842zM-437.358-.093h-.387l-1.85 3.011-1.848-3.01h-.41l2.061 3.354v1.761h.373V3.262ZM-429.347 5.023l-.007-5.116h-.307l-2.288 3.954-2.288-3.954h-.314v5.116h.366V.66l2.141 3.684h.183l2.141-3.699.007 4.378zM-423.741 5.023h.402l-2.354-5.116h-.372l-2.354 5.116h.402l.65-1.44h2.968zm-3.48-1.754 1.338-2.953 1.345 2.953zM-418.618-.093v4.444l-3.479-4.444h-.314v5.116h.373V.58l3.486 4.443h.307V-.093zM-412.639 5.023h.402l-2.353-5.116h-.373l-2.354 5.116h.402l.65-1.44h2.968zm-3.479-1.754 1.338-2.953 1.344 2.953zM-407.727 4.249c-.417.336-.914.467-1.455.467-1.33 0-2.317-.972-2.317-2.25 0-1.287.987-2.252 2.317-2.252.621 0 1.155.168 1.6.607l.235-.249c-.453-.468-1.104-.701-1.842-.701-1.55 0-2.683 1.103-2.683 2.594 0 1.491 1.133 2.595 2.676 2.595.701 0 1.366-.22 1.827-.658V2.487h-.358zM-405.36 4.687V2.59h2.727v-.33h-2.726V.244h3.048v-.336h-3.421v5.116h3.53v-.336ZM-395.638 5.023l-.007-5.116h-.307l-2.288 3.954-2.288-3.954h-.314v5.116h.365V.66l2.142 3.684h.183l2.141-3.699.007 4.378zM-393.482 4.687V2.59h2.726v-.33h-2.726V.244h3.048v-.336h-3.421v5.116h3.53v-.336ZM-385.172-.093v4.444l-3.48-4.444h-.313v5.116h.372V.58l3.487 4.443h.307V-.093zM-382.037 5.023h.373V.243h1.842v-.336h-4.056v.336h1.841z" style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:7.30893px;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Light";font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#000;fill-opacity:1;stroke-width:.749167"><path d="M865.94 362.406c3.657 0 6.683-1.319 8.66-3.746l-3.116-2.877c-1.408 1.649-3.176 2.488-5.274 2.488-3.925 0-6.712-2.757-6.712-6.713 0-3.955 2.787-6.712 6.712-6.712 2.098 0 3.866.839 5.274 2.457l3.117-2.877c-1.978-2.397-5.004-3.716-8.63-3.716-6.533 0-11.388 4.525-11.388 10.848s4.855 10.848 11.358 10.848zM892.76 354.045c0-5.184-3.655-8.36-8.39-8.36-4.915 0-8.6 3.476-8.6 8.3 0 4.795 3.626 8.301 9.2 8.301 2.906 0 5.154-.899 6.652-2.607l-2.487-2.697c-1.11 1.049-2.338 1.558-4.046 1.558-2.457 0-4.165-1.228-4.615-3.236h12.197c.03-.39.09-.9.09-1.259zm-8.36-4.824c2.098 0 3.626 1.318 3.956 3.356h-7.942c.33-2.068 1.858-3.356 3.986-3.356zM905.676 345.685c-2.187 0-4.075.749-5.334 2.127v-1.888h-4.465v16.122h4.675v-7.97c0-2.967 1.618-4.346 3.866-4.346 2.067 0 3.266 1.199 3.266 3.806v8.51h4.675v-9.23c0-4.914-2.877-7.131-6.683-7.131zM925.724 357.971c-.51.39-1.199.6-1.888.6-1.259 0-2.008-.75-2.008-2.128v-6.563h4.016v-3.596h-4.016v-3.926h-4.675v3.926h-2.487v3.596h2.487v6.623c0 3.835 2.218 5.783 6.024 5.783 1.438 0 2.847-.33 3.805-1.019zM940.108 362.406c6.592 0 11.477-4.585 11.477-10.848 0-6.263-4.885-10.848-11.477-10.848-6.623 0-11.477 4.615-11.477 10.848 0 6.233 4.854 10.848 11.477 10.848zm0-4.135c-3.746 0-6.563-2.727-6.563-6.713 0-3.985 2.817-6.712 6.563-6.712 3.746 0 6.563 2.727 6.563 6.712 0 3.986-2.817 6.713-6.563 6.713zM962.133 362.406c5.994 0 8.9-2.997 8.9-6.503 0-7.701-12.196-5.034-12.196-8.9 0-1.318 1.109-2.397 3.986-2.397 1.857 0 3.865.54 5.813 1.648l1.498-3.686c-1.947-1.228-4.644-1.858-7.282-1.858-5.963 0-8.84 2.967-8.84 6.533 0 7.791 12.197 5.094 12.197 9.02 0 1.288-1.169 2.247-4.046 2.247-2.517 0-5.154-.899-6.922-2.187l-1.648 3.656c1.858 1.438 5.214 2.427 8.54 2.427z" style="fill:#000" transform="matrix(.97561 0 0 .97561 -786.115 -321.817)"/></g><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><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>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="609.392" height="160" viewBox="0 0 161.235 42.333"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M58.705 31.75c3.567 0 6.52-1.286 8.45-3.654l-3.041-2.807c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.548-2.69-6.548-6.548 0-3.86 2.719-6.55 6.548-6.55 2.047 0 3.772.82 5.146 2.398l3.04-2.806c-1.93-2.34-4.882-3.626-8.42-3.626-6.373 0-11.109 4.415-11.109 10.584 0 6.168 4.736 10.583 11.08 10.583zM84.871 23.593c0-5.058-3.567-8.157-8.186-8.157-4.794 0-8.39 3.392-8.39 8.099 0 4.677 3.537 8.098 8.975 8.098 2.836 0 5.029-.877 6.49-2.543l-2.426-2.632c-1.082 1.024-2.28 1.52-3.947 1.52-2.397 0-4.064-1.198-4.502-3.157h11.899c.029-.38.087-.877.087-1.228zm-8.157-4.707c2.047 0 3.538 1.287 3.86 3.275h-7.748c.322-2.018 1.813-3.275 3.888-3.275zM97.472 15.436c-2.134 0-3.976.731-5.204 2.076V15.67h-4.356V31.4h4.56v-7.778c0-2.894 1.58-4.239 3.772-4.239 2.017 0 3.187 1.17 3.187 3.713V31.4h4.56v-9.004c0-4.795-2.806-6.959-6.52-6.959zM117.03 27.423c-.497.38-1.169.585-1.841.585-1.228 0-1.96-.731-1.96-2.076V19.53h3.918v-3.508h-3.917v-3.83h-4.56v3.83h-2.427v3.508h2.426v6.462c0 3.742 2.164 5.642 5.876 5.642 1.404 0 2.778-.322 3.713-.994zM131.064 31.75c6.431 0 11.197-4.473 11.197-10.583s-4.766-10.584-11.197-10.584c-6.461 0-11.198 4.503-11.198 10.584 0 6.08 4.737 10.583 11.198 10.583zm0-4.035c-3.655 0-6.403-2.66-6.403-6.548 0-3.889 2.748-6.55 6.403-6.55 3.654 0 6.402 2.661 6.402 6.55 0 3.888-2.748 6.548-6.402 6.548zM152.552 31.75c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.083-2.339 3.89-2.339 1.812 0 3.77.526 5.671 1.608l1.462-3.596c-1.9-1.199-4.532-1.813-7.104-1.813-5.818 0-8.625 2.895-8.625 6.374 0 7.601 11.899 4.97 11.899 8.8 0 1.257-1.14 2.192-3.947 2.192-2.456 0-5.028-.877-6.753-2.134l-1.608 3.567c1.812 1.403 5.087 2.368 8.332 2.368z"/></g><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="710" height="270" viewBox="0 0 187.854 71.437"><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M63.997 37.042c3.567 0 6.52-1.287 8.45-3.655l-3.041-2.806c-1.374 1.608-3.1 2.426-5.146 2.426-3.83 0-6.549-2.69-6.549-6.549 0-3.859 2.72-6.548 6.55-6.548 2.046 0 3.77.818 5.145 2.397l3.04-2.807c-1.93-2.339-4.882-3.625-8.42-3.625-6.373 0-11.11 4.415-11.11 10.583 0 6.17 4.737 10.584 11.081 10.584zM90.163 28.885c0-5.058-3.567-8.157-8.186-8.157-4.795 0-8.39 3.391-8.39 8.098 0 4.678 3.537 8.099 8.975 8.099 2.835 0 5.028-.877 6.49-2.544l-2.427-2.631c-1.081 1.023-2.28 1.52-3.946 1.52-2.398 0-4.064-1.198-4.503-3.157h11.9c.028-.38.087-.877.087-1.228zm-8.157-4.707c2.047 0 3.538 1.286 3.86 3.274h-7.748c.321-2.017 1.812-3.274 3.888-3.274zM102.763 20.728c-2.134 0-3.976.731-5.203 2.076v-1.842h-4.357v15.729h4.561v-7.777c0-2.894 1.579-4.239 3.772-4.239 2.017 0 3.186 1.17 3.186 3.713v8.303h4.561v-9.005c0-4.794-2.807-6.958-6.52-6.958zM122.322 32.715c-.497.38-1.17.584-1.842.584-1.228 0-1.958-.73-1.958-2.075V24.82h3.917v-3.508h-3.917v-3.83h-4.561v3.83h-2.427v3.508h2.427v6.461c0 3.742 2.163 5.643 5.876 5.643 1.403 0 2.778-.322 3.713-.994zM136.355 37.042c6.432 0 11.198-4.473 11.198-10.584 0-6.11-4.766-10.583-11.198-10.583-6.46 0-11.197 4.502-11.197 10.583s4.736 10.584 11.197 10.584zm0-4.035c-3.654 0-6.402-2.66-6.402-6.549 0-3.888 2.748-6.548 6.402-6.548 3.655 0 6.403 2.66 6.403 6.548 0 3.889-2.748 6.55-6.403 6.55zM157.844 37.042c5.847 0 8.683-2.924 8.683-6.344 0-7.514-11.9-4.912-11.9-8.683 0-1.287 1.082-2.34 3.889-2.34 1.813 0 3.771.527 5.672 1.609l1.461-3.596c-1.9-1.199-4.531-1.813-7.104-1.813-5.818 0-8.624 2.894-8.624 6.373 0 7.602 11.899 4.97 11.899 8.8 0 1.257-1.14 2.193-3.947 2.193-2.456 0-5.029-.877-6.754-2.134l-1.608 3.567c1.813 1.403 5.087 2.368 8.333 2.368z"/></g><g aria-label="Community Enterprise" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#a14f8c;stroke-width:.289529"><path d="M57.072 50.27c1.337 0 2.445-.482 3.168-1.37l-1.14-1.052c-.515.603-1.162.91-1.93.91-1.436 0-2.455-1.009-2.455-2.456s1.02-2.456 2.455-2.456c.768 0 1.415.307 1.93.9l1.14-1.053c-.723-.877-1.83-1.36-3.157-1.36-2.39 0-4.166 1.656-4.166 3.97 0 2.312 1.776 3.968 4.155 3.968zM63.913 50.227c1.875 0 3.234-1.26 3.234-3.037 0-1.776-1.36-3.037-3.234-3.037-1.875 0-3.245 1.261-3.245 3.037s1.37 3.037 3.245 3.037zm0-1.403c-.855 0-1.513-.614-1.513-1.634s.658-1.633 1.513-1.633c.855 0 1.502.614 1.502 1.633 0 1.02-.647 1.634-1.502 1.634zM75.841 44.153c-.888 0-1.655.362-2.127.965-.416-.647-1.118-.965-1.94-.965-.757 0-1.415.263-1.853.768v-.68h-1.634v5.898h1.71v-2.96c0-1.052.538-1.546 1.294-1.546.713 0 1.119.439 1.119 1.393v3.113h1.71v-2.96c0-1.052.537-1.546 1.304-1.546.691 0 1.119.439 1.119 1.393v3.113h1.71v-3.376c0-1.798-1.009-2.61-2.412-2.61zM87.342 44.153c-.888 0-1.656.362-2.127.965-.417-.647-1.118-.965-1.94-.965-.757 0-1.415.263-1.854.768v-.68h-1.633v5.898h1.71v-2.96c0-1.052.537-1.546 1.294-1.546.713 0 1.118.439 1.118 1.393v3.113h1.71v-2.96c0-1.052.538-1.546 1.305-1.546.69 0 1.118.439 1.118 1.393v3.113h1.71v-3.376c0-1.798-1.008-2.61-2.411-2.61zM95.52 47.157c0 1.086-.57 1.59-1.36 1.59-.756 0-1.194-.439-1.194-1.425V44.24h-1.71v3.333c0 1.82 1.041 2.653 2.521 2.653.724 0 1.382-.274 1.831-.79v.702h1.623v-5.898h-1.71zM102.405 44.153c-.8 0-1.49.274-1.951.779v-.691H98.82v5.898h1.71v-2.916c0-1.085.593-1.59 1.415-1.59.756 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.445-2.61zM107.251 43.419c.636 0 1.064-.417 1.064-.987 0-.526-.428-.92-1.064-.92-.636 0-1.063.416-1.063.953 0 .537.427.954 1.063.954zm.855 6.72v-5.898h-1.71v5.898zM113.04 48.648c-.186.143-.439.22-.69.22-.461 0-.735-.275-.735-.779v-2.4h1.469v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.403.812 2.116 2.204 2.116.526 0 1.042-.12 1.392-.373z" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/><path d="m116.899 48.243-1.655-4.002h-1.766l2.555 5.942-.022.055c-.23.526-.493.734-.965.734-.34 0-.701-.142-.965-.372l-.624 1.217c.383.34 1.041.537 1.644.537 1.063 0 1.875-.428 2.445-1.853l2.664-6.26h-1.645zM125.9 46.938h3.563v-1.381H125.9V43.89h4.034v-1.425h-5.8v7.674h5.943v-1.425H125.9zM134.956 44.153c-.8 0-1.491.274-1.952.779v-.691h-1.633v5.898h1.71v-2.916c0-1.085.592-1.59 1.414-1.59.757 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.444-2.61zM142.29 48.648c-.186.143-.438.22-.69.22-.46 0-.735-.275-.735-.779v-2.4h1.47v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.403.811 2.116 2.203 2.116.527 0 1.042-.12 1.393-.373zM149.307 47.212c0-1.897-1.338-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.365 3.037 1.064 0 1.886-.329 2.434-.954l-.91-.987c-.405.384-.855.57-1.48.57-.899 0-1.524-.449-1.688-1.183h4.462c.01-.143.033-.33.033-.461zm-3.059-1.765c.767 0 1.327.482 1.447 1.228h-2.905c.12-.757.68-1.228 1.458-1.228zM152.08 44.241h-1.633v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.029.866zM158.615 44.153c-.79 0-1.426.252-1.853.768v-.68h-1.634v8.025h1.71v-2.752c.44.483 1.042.713 1.777.713 1.655 0 2.938-1.184 2.938-3.037s-1.283-3.037-2.938-3.037zm-.296 4.67c-.855 0-1.502-.613-1.502-1.633s.647-1.633 1.502-1.633 1.502.614 1.502 1.633c0 1.02-.647 1.634-1.502 1.634zM164.327 44.241h-1.634v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.028.866zM168.23 43.419c.635 0 1.063-.417 1.063-.987 0-.526-.428-.92-1.063-.92-.636 0-1.064.416-1.064.953 0 .537.428.954 1.064.954zm.855 6.72v-5.898h-1.71v5.898zM172.659 50.227c1.765 0 2.784-.778 2.784-1.875 0-2.324-3.563-1.348-3.563-2.357 0-.307.33-.548 1.097-.548.537 0 1.118.11 1.699.438l.57-1.216c-.559-.33-1.458-.516-2.27-.516-1.72 0-2.73.79-2.73 1.908 0 2.357 3.564 1.37 3.564 2.335 0 .329-.296.537-1.085.537-.724 0-1.524-.23-2.05-.57l-.57 1.228c.547.362 1.556.636 2.554.636zM182.274 47.212c0-1.897-1.338-3.059-3.07-3.059-1.798 0-3.147 1.272-3.147 3.037 0 1.754 1.327 3.037 3.366 3.037 1.064 0 1.886-.329 2.434-.954l-.91-.987c-.406.384-.855.57-1.48.57-.899 0-1.524-.449-1.688-1.183h4.462c.01-.143.033-.33.033-.461zm-3.06-1.765c.768 0 1.327.482 1.448 1.228h-2.905c.12-.757.68-1.228 1.458-1.228z" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/></g><g aria-label="Operating System" style="font-size:10.9634px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#a14f8c;stroke-width:.289529"><path d="M57.116 63.5c2.412 0 4.199-1.677 4.199-3.969 0-2.291-1.787-3.969-4.2-3.969-2.422 0-4.198 1.689-4.198 3.97 0 2.28 1.776 3.968 4.199 3.968zm0-1.513c-1.37 0-2.401-.998-2.401-2.456s1.03-2.456 2.4-2.456c1.371 0 2.402.998 2.402 2.456s-1.03 2.456-2.401 2.456zM66.018 57.382c-.79 0-1.425.253-1.853.768v-.68h-1.633v8.025h1.71v-2.751c.438.482 1.041.712 1.776.712 1.655 0 2.938-1.184 2.938-3.037s-1.283-3.037-2.938-3.037zm-.296 4.67c-.855 0-1.502-.613-1.502-1.633s.647-1.633 1.502-1.633 1.502.614 1.502 1.633c0 1.02-.647 1.634-1.502 1.634zM75.874 60.441c0-1.896-1.338-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.366 3.037 1.063 0 1.885-.329 2.433-.954l-.91-.986c-.405.383-.855.57-1.48.57-.899 0-1.524-.45-1.688-1.184h4.462c.011-.143.033-.33.033-.46zm-3.059-1.765c.768 0 1.327.482 1.447 1.228h-2.905c.12-.756.68-1.228 1.458-1.228zM78.648 57.47h-1.634v5.898h1.71v-2.784c0-1.13.625-1.645 1.568-1.645.132 0 .241.011.384.022v-1.579c-.91 0-1.612.296-2.028.867zM83.69 57.382c-.942 0-1.896.253-2.543.713l.614 1.195c.428-.34 1.075-.548 1.7-.548.92 0 1.36.427 1.36 1.162h-1.36c-1.798 0-2.533.724-2.533 1.765 0 1.02.822 1.787 2.204 1.787.866 0 1.48-.285 1.798-.822v.734h1.6v-3.365c0-1.787-1.041-2.62-2.84-2.62zm-.13 4.923c-.604 0-.965-.285-.965-.713 0-.394.252-.69 1.052-.69h1.173v.603c-.197.537-.69.8-1.26.8zM91.42 61.877c-.186.143-.438.22-.69.22-.461 0-.735-.274-.735-.779v-2.4h1.469v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.404.812 2.116 2.204 2.116.526 0 1.042-.12 1.393-.373zM93.7 56.648c.636 0 1.064-.417 1.064-.987 0-.526-.428-.92-1.064-.92-.635 0-1.063.416-1.063.953 0 .537.428.954 1.063.954zm.856 6.72V57.47h-1.71v5.898zM99.73 57.382c-.8 0-1.49.275-1.951.779v-.69h-1.634v5.897h1.71v-2.916c0-1.085.593-1.59 1.415-1.59.756 0 1.195.439 1.195 1.393v3.113h1.71v-3.376c0-1.798-1.052-2.61-2.445-2.61zM108.227 58.227c-.45-.57-1.13-.845-1.952-.845-1.633 0-2.949 1.13-2.949 2.85 0 1.722 1.316 2.851 2.95 2.851.767 0 1.414-.24 1.863-.734v.252c0 1.063-.526 1.612-1.732 1.612-.756 0-1.579-.264-2.083-.67l-.68 1.229c.69.537 1.776.811 2.895.811 2.126 0 3.31-1.009 3.31-3.201V57.47h-1.622zm-1.612 3.453c-.899 0-1.556-.581-1.556-1.447 0-.866.657-1.447 1.556-1.447.9 0 1.546.58 1.546 1.447 0 .866-.647 1.447-1.546 1.447zM117.184 63.5c2.193 0 3.256-1.096 3.256-2.38 0-2.817-4.462-1.84-4.462-3.255 0-.483.406-.877 1.458-.877.68 0 1.414.197 2.127.603l.548-1.349c-.712-.45-1.7-.68-2.664-.68-2.182 0-3.234 1.086-3.234 2.39 0 2.851 4.462 1.864 4.462 3.3 0 .472-.428.823-1.48.823-.921 0-1.886-.33-2.533-.8l-.603 1.337c.68.526 1.908.888 3.125.888ZM123.97 61.472l-1.655-4.002h-1.765l2.554 5.942-.022.055c-.23.526-.493.735-.964.735-.34 0-.702-.143-.965-.373l-.625 1.217c.384.34 1.041.537 1.644.537 1.064 0 1.875-.428 2.445-1.853l2.664-6.26h-1.644zM129.88 63.456c1.765 0 2.784-.778 2.784-1.875 0-2.324-3.563-1.348-3.563-2.357 0-.307.33-.548 1.097-.548.537 0 1.118.11 1.699.439l.57-1.217c-.56-.33-1.458-.516-2.27-.516-1.72 0-2.73.79-2.73 1.908 0 2.357 3.564 1.37 3.564 2.335 0 .33-.296.537-1.086.537-.723 0-1.524-.23-2.05-.57l-.57 1.228c.548.362 1.557.636 2.555.636zM137.06 61.877c-.186.143-.438.22-.69.22-.46 0-.735-.274-.735-.779v-2.4h1.47v-1.316h-1.47v-1.437h-1.71v1.437h-.91v1.315h.91v2.423c0 1.404.811 2.116 2.204 2.116.526 0 1.041-.12 1.392-.373zM144.077 60.441c0-1.896-1.337-3.059-3.07-3.059-1.798 0-3.146 1.272-3.146 3.037 0 1.754 1.326 3.037 3.366 3.037 1.063 0 1.885-.329 2.434-.954l-.91-.986c-.406.383-.856.57-1.48.57-.9 0-1.524-.45-1.689-1.184h4.462c.011-.143.033-.33.033-.46zm-3.059-1.765c.768 0 1.327.482 1.448 1.228h-2.906c.12-.756.68-1.228 1.458-1.228zM152.771 57.382c-.888 0-1.655.362-2.127.965-.416-.647-1.118-.965-1.94-.965-.757 0-1.415.264-1.853.768v-.68h-1.634v5.898h1.71v-2.96c0-1.052.538-1.546 1.294-1.546.713 0 1.119.439 1.119 1.393v3.113h1.71v-2.96c0-1.052.537-1.546 1.305-1.546.69 0 1.118.439 1.118 1.393v3.113h1.71v-3.376c0-1.798-1.009-2.61-2.412-2.61z" style="font-weight:700;-inkscape-font-specification:Montserrat" transform="translate(0 .132)"/></g><g transform="matrix(1.0529 0 0 1.05289 -382.2 271.277)"><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="250" height="80.267" viewBox="0 0 66.146 21.237"><g aria-label="Powered by" style="font-size:6.1858px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat, Normal";fill:#000;stroke-width:.154645"><path d="M8.193 1.673v4.33h.458V4.636h1.163c1.101 0 1.77-.557 1.77-1.478 0-.928-.669-1.485-1.77-1.485zm.458 2.561V2.069h1.15c.867 0 1.324.396 1.324 1.089 0 .68-.457 1.076-1.323 1.076zM13.791 6.034c.953 0 1.652-.693 1.652-1.658s-.699-1.651-1.652-1.651c-.952 0-1.657.686-1.657 1.651s.705 1.658 1.657 1.658zm0-.39c-.692 0-1.212-.507-1.212-1.268 0-.76.52-1.268 1.212-1.268.693 0 1.207.507 1.207 1.268s-.514 1.268-1.207 1.268zM19.588 5.514l-1.04-2.765h-.377l-1.045 2.765-1.021-2.765h-.42l1.224 3.254h.415l1.026-2.666 1.027 2.666h.415l1.23-3.254h-.401zM24.431 4.376c0-.977-.662-1.651-1.577-1.651-.916 0-1.59.686-1.59 1.651s.693 1.658 1.707 1.658c.514 0 .965-.186 1.256-.532l-.248-.285c-.247.285-.6.427-.996.427-.71 0-1.23-.451-1.28-1.132h2.722c0-.05.006-.099.006-.136zm-1.577-1.274c.637 0 1.1.445 1.156 1.082h-2.307c.056-.637.52-1.082 1.15-1.082zM25.749 2.75h-.421v3.253h.44V4.345c0-.767.414-1.2 1.094-1.2.03 0 .068.006.105.006v-.426c-.6 0-1.014.228-1.218.662zM30.567 4.376c0-.977-.662-1.651-1.577-1.651-.916 0-1.59.686-1.59 1.651s.693 1.658 1.707 1.658c.514 0 .965-.186 1.256-.532l-.247-.285c-.248.285-.6.427-.996.427-.712 0-1.231-.451-1.28-1.132h2.721c0-.05.006-.099.006-.136zM28.99 3.102c.637 0 1.101.445 1.157 1.082h-2.308c.056-.637.52-1.082 1.15-1.082zM33.994 3.368c-.272-.42-.717-.643-1.237-.643-.928 0-1.62.668-1.62 1.651 0 .984.692 1.658 1.62 1.658.538 0 .99-.235 1.256-.674v.643h.42v-4.59h-.439zm-1.2 2.276c-.693 0-1.212-.507-1.212-1.268 0-.76.52-1.268 1.212-1.268.687 0 1.206.507 1.206 1.268s-.52 1.268-1.206 1.268zM38.955 2.725c-.52 0-.965.222-1.237.643V1.413h-.44v4.59h.421V5.36c.266.439.718.674 1.256.674.928 0 1.62-.674 1.62-1.658 0-.983-.692-1.651-1.62-1.651zm-.03 2.92c-.694 0-1.213-.508-1.213-1.269 0-.76.52-1.268 1.212-1.268.687 0 1.213.507 1.213 1.268s-.526 1.268-1.213 1.268zM42.456 5.514 41.232 2.75h-.458l1.453 3.248-.142.315c-.185.409-.383.545-.674.545a.813.813 0 0 1-.594-.248l-.204.328c.198.198.489.297.792.297.464 0 .81-.204 1.082-.841l1.627-3.644h-.433z" style="fill:#000" transform="matrix(.48307 0 0 .48307 -3.958 -.683)"/></g><g aria-label="CentOS" style="font-weight:700;font-size:29.9666px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:"Montserrat Bold";fill:#a14f8c;fill-opacity:1;stroke-width:.749167"><path d="M23.849 16.867c1.449 0 2.649-.522 3.432-1.484l-1.235-1.14c-.558.653-1.259.985-2.09.985-1.556 0-2.66-1.093-2.66-2.66 0-1.568 1.104-2.66 2.66-2.66.831 0 1.532.332 2.09.973l1.235-1.14c-.783-.95-1.983-1.473-3.42-1.473-2.59 0-4.513 1.794-4.513 4.3s1.924 4.3 4.501 4.3zM34.479 13.553c0-2.054-1.449-3.313-3.326-3.313-1.947 0-3.408 1.378-3.408 3.29 0 1.9 1.437 3.29 3.646 3.29 1.152 0 2.043-.357 2.637-1.034l-.986-1.069c-.44.416-.927.618-1.604.618-.973 0-1.65-.487-1.829-1.283h4.834c.012-.154.036-.356.036-.499zm-3.314-1.912c.832 0 1.437.523 1.568 1.33h-3.147c.13-.819.736-1.33 1.58-1.33zM39.598 10.24c-.867 0-1.615.297-2.114.843v-.748h-1.77v6.39h1.853v-3.16c0-1.175.641-1.722 1.532-1.722.82 0 1.295.475 1.295 1.509v3.373h1.852v-3.658c0-1.948-1.14-2.827-2.648-2.827zM47.544 15.11a1.249 1.249 0 0 1-.749.237c-.498 0-.795-.297-.795-.843v-2.601h1.591v-1.426H46V8.921h-1.853v1.556h-.986v1.426h.986v2.624c0 1.52.879 2.293 2.387 2.293.57 0 1.128-.131 1.508-.404zM53.245 16.867c2.613 0 4.548-1.817 4.548-4.3 0-2.482-1.935-4.299-4.548-4.299-2.625 0-4.55 1.83-4.55 4.3 0 2.47 1.925 4.3 4.55 4.3zm0-1.639c-1.485 0-2.601-1.08-2.601-2.66s1.116-2.66 2.6-2.66c1.485 0 2.602 1.08 2.602 2.66s-1.117 2.66-2.601 2.66zM61.974 16.867c2.376 0 3.528-1.188 3.528-2.577 0-3.053-4.834-1.995-4.834-3.528 0-.522.44-.95 1.58-.95.736 0 1.531.214 2.303.653l.594-1.46c-.772-.487-1.84-.737-2.886-.737-2.363 0-3.503 1.176-3.503 2.59 0 3.087 4.833 2.019 4.833 3.574 0 .511-.463.891-1.603.891-.998 0-2.043-.356-2.744-.867l-.653 1.45c.737.57 2.067.961 3.385.961z"/></g><g transform="translate(-157.419 112.025) scale(.42774)"><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/><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="matrix(1.15 0 0 1.15 -53.772 39.325)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><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>
|