Fuck it, I'll just vendor my deps
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
description: ""
|
||||||
|
---
|
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
externalUrl: ""
|
||||||
|
summary: ""
|
||||||
|
showReadingTime: false
|
||||||
|
_build:
|
||||||
|
render: "false"
|
||||||
|
list: "local"
|
||||||
|
---
|
@ -0,0 +1,16 @@
|
|||||||
|
#zen-mode-button {
|
||||||
|
cursor:pointer
|
||||||
|
}
|
||||||
|
|
||||||
|
.zen-mode {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.zen-mode-enable {
|
||||||
|
#bmc-wbtn, .author {
|
||||||
|
display:none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,655 @@
|
|||||||
|
/*! Blowfish | MIT License | https://github.com/nunocoracao/blowfish */
|
||||||
|
|
||||||
|
@import 'components/zen-mode.css';
|
||||||
|
|
||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
|
|
||||||
|
body a,
|
||||||
|
body button {
|
||||||
|
@apply transition-colors;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Scale SVG icons to text size */
|
||||||
|
.icon svg {
|
||||||
|
@apply h-[1em] w-[1em];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Search */
|
||||||
|
#search-query::-webkit-search-cancel-button,
|
||||||
|
#search-query::-webkit-search-decoration,
|
||||||
|
#search-query::-webkit-search-results-button,
|
||||||
|
#search-query::-webkit-search-results-decoration {
|
||||||
|
@apply hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hamburger menu */
|
||||||
|
body:has(#menu-controller:checked) {
|
||||||
|
@apply overflow-y-hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu-button:has(#menu-controller:checked) {
|
||||||
|
@apply invisible;
|
||||||
|
}
|
||||||
|
|
||||||
|
#menu-controller:checked~#menu-wrapper {
|
||||||
|
@apply visible opacity-100;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RTL support */
|
||||||
|
.prose blockquote {
|
||||||
|
@apply rtl:pr-4 rtl:border-l-0 rtl:border-r-4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose ul>li,
|
||||||
|
.prose ol>li {
|
||||||
|
@apply rtl:pl-0 rtl:pr-2 rtl:mr-7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose ol>li:before,
|
||||||
|
.prose ul>li:before {
|
||||||
|
@apply rtl:left-auto rtl:right-1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose thead td:first-child,
|
||||||
|
.prose thead th:first-child {
|
||||||
|
@apply rtl:pr-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prose thead td:last-child,
|
||||||
|
.prose thead th:last-child {
|
||||||
|
@apply rtl:pl-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Adjust first child within prose */
|
||||||
|
.prose div.min-w-0.max-w-prose>*:first-child {
|
||||||
|
@apply mt-3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Table of Contents */
|
||||||
|
.toc ul,
|
||||||
|
.toc li {
|
||||||
|
@apply px-0 leading-snug list-none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc ul ul {
|
||||||
|
@apply ltr:pl-4 rtl:pr-4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc a {
|
||||||
|
@apply font-normal text-neutral-700 dark:text-neutral-400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc ul>li {
|
||||||
|
@apply rtl:mr-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code Copy */
|
||||||
|
.highlight-wrapper {
|
||||||
|
@apply block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
@apply relative z-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight:hover>.copy-button {
|
||||||
|
@apply visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-button {
|
||||||
|
@apply absolute top-0 right-0 z-10 invisible w-20 py-1 font-mono text-sm cursor-pointer opacity-90 bg-neutral-200 whitespace-nowrap rounded-bl-md rounded-tr-md text-neutral-700 dark:bg-neutral-600 dark:text-neutral-200;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-button:hover,
|
||||||
|
.copy-button:focus,
|
||||||
|
.copy-button:active,
|
||||||
|
.copy-button:active:hover {
|
||||||
|
@apply bg-primary-100 dark:bg-primary-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-textarea {
|
||||||
|
@apply absolute opacity-5 -z-10;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix long KaTeX equations on mobile (see https://katex.org/docs/issues.html#css-customization) */
|
||||||
|
.katex-display { overflow: auto hidden }
|
||||||
|
|
||||||
|
/* Fix long tables breaking out of article on mobile */
|
||||||
|
table {
|
||||||
|
display: block;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix long inline code sections breaking out of article on mobile */
|
||||||
|
code {
|
||||||
|
word-wrap: break-word; /* All browsers since IE 5.5+ */
|
||||||
|
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -- Chroma Highlight -- */
|
||||||
|
/* Background */
|
||||||
|
.prose .chroma {
|
||||||
|
@apply static rounded-md text-neutral-700 bg-neutral-50 dark:bg-neutral-700 dark:text-neutral-200;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LineTableTD */
|
||||||
|
.chroma .lntd,
|
||||||
|
.chroma .lntd pre {
|
||||||
|
@apply p-0 m-0 align-top border-none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LineTable */
|
||||||
|
.chroma .lntable {
|
||||||
|
@apply block w-auto px-4 py-3 overflow-hidden text-base;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LineHighlight */
|
||||||
|
.chroma .hl {
|
||||||
|
@apply block w-auto px-4 -mx-4 bg-primary-100 dark:bg-primary-900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chroma .lntd .hl {
|
||||||
|
@apply p-0 m-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LineNumbersTable */
|
||||||
|
/* LineNumbers */
|
||||||
|
.chroma .lnt,
|
||||||
|
.chroma .ln {
|
||||||
|
@apply text-neutral-600 dark:text-neutral-300 mr-[0.4em] px-[0.4em] py-0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keyword */
|
||||||
|
/* KeywordDeclaration */
|
||||||
|
/* KeywordNamespace */
|
||||||
|
/* KeywordPseudo */
|
||||||
|
/* KeywordReserved */
|
||||||
|
/* NameClass */
|
||||||
|
/* NameFunctionMagic */
|
||||||
|
/* NameNamespace */
|
||||||
|
/* NameVariableClass */
|
||||||
|
/* Operator */
|
||||||
|
.chroma .k,
|
||||||
|
.chroma .kd,
|
||||||
|
.chroma .kn,
|
||||||
|
.chroma .kp,
|
||||||
|
.chroma .kr,
|
||||||
|
.chroma .nc,
|
||||||
|
.chroma .fm,
|
||||||
|
.chroma .nn,
|
||||||
|
.chroma .vc,
|
||||||
|
.chroma .o {
|
||||||
|
@apply text-primary-600 dark:text-primary-300;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* KeywordConstant */
|
||||||
|
.chroma .kc {
|
||||||
|
@apply font-semibold text-secondary-400 dark:text-secondary-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* KeywordType */
|
||||||
|
/* NameVariable */
|
||||||
|
/* NameVariableInstance */
|
||||||
|
/* NameVariableMagic */
|
||||||
|
/* LiteralNumber */
|
||||||
|
/* LiteralNumberBin */
|
||||||
|
/* LiteralNumberFloat */
|
||||||
|
/* LiteralNumberHex */
|
||||||
|
/* LiteralNumberInteger */
|
||||||
|
/* LiteralNumberIntegerLong */
|
||||||
|
/* LiteralNumberOct */
|
||||||
|
.chroma .kt,
|
||||||
|
.chroma .nv,
|
||||||
|
.chroma .vi,
|
||||||
|
.chroma .vm,
|
||||||
|
.chroma .m,
|
||||||
|
.chroma .mb,
|
||||||
|
.chroma .mf,
|
||||||
|
.chroma .mh,
|
||||||
|
.chroma .mi,
|
||||||
|
.chroma .il,
|
||||||
|
.chroma .mo {
|
||||||
|
@apply text-secondary-400 dark:text-secondary-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Name */
|
||||||
|
/* NameDecorator */
|
||||||
|
/* NameEntity */
|
||||||
|
/* NameLabel */
|
||||||
|
.chroma .n,
|
||||||
|
.chroma .nd,
|
||||||
|
.chroma .ni,
|
||||||
|
.chroma .nl {
|
||||||
|
@apply text-secondary-900 dark:text-secondary-200;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NameAttribute */
|
||||||
|
/* NameBuiltin */
|
||||||
|
/* NameBuiltinPseudo */
|
||||||
|
/* NameOther */
|
||||||
|
/* NameProperty */
|
||||||
|
/* NameTag */
|
||||||
|
.chroma .na,
|
||||||
|
.chroma .nb,
|
||||||
|
.chroma .bp,
|
||||||
|
.chroma .nx,
|
||||||
|
.chroma .py,
|
||||||
|
.chroma .nt {
|
||||||
|
@apply text-secondary-800 dark:text-secondary-300;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NameConstant */
|
||||||
|
/* NameException */
|
||||||
|
/* NameVariableGlobal */
|
||||||
|
.chroma .no,
|
||||||
|
.chroma .ne,
|
||||||
|
.chroma .vg {
|
||||||
|
@apply font-semibold text-secondary-400 dark:text-secondary-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NameFunction */
|
||||||
|
.chroma .nf {
|
||||||
|
@apply text-secondary-600 dark:text-secondary-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Literal */
|
||||||
|
/* LiteralDate */
|
||||||
|
/* LiteralString */
|
||||||
|
/* LiteralStringAffix */
|
||||||
|
/* LiteralStringBacktick */
|
||||||
|
/* LiteralStringChar */
|
||||||
|
/* LiteralStringDelimiter */
|
||||||
|
/* LiteralStringDoc */
|
||||||
|
/* LiteralStringDouble */
|
||||||
|
/* LiteralStringHeredoc */
|
||||||
|
/* LiteralStringInterpol */
|
||||||
|
/* LiteralStringOther */
|
||||||
|
/* LiteralStringSingle */
|
||||||
|
/* GenericInserted */
|
||||||
|
/* GenericOutput */
|
||||||
|
/* GenericPrompt */
|
||||||
|
.chroma .l,
|
||||||
|
.chroma .ld,
|
||||||
|
.chroma .s,
|
||||||
|
.chroma .sa,
|
||||||
|
.chroma .sb,
|
||||||
|
.chroma .sc,
|
||||||
|
.chroma .dl,
|
||||||
|
.chroma .sd,
|
||||||
|
.chroma .s2,
|
||||||
|
.chroma .sh,
|
||||||
|
.chroma .si,
|
||||||
|
.chroma .sx,
|
||||||
|
.chroma .s1,
|
||||||
|
.chroma .gi,
|
||||||
|
.chroma .go,
|
||||||
|
.chroma .gp {
|
||||||
|
@apply text-primary-800 dark:text-primary-400;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LiteralStringEscape */
|
||||||
|
.chroma .se {
|
||||||
|
@apply font-semibold text-secondary-400 dark:text-secondary-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LiteralStringRegex */
|
||||||
|
/* LiteralStringSymbol */
|
||||||
|
.chroma .sr,
|
||||||
|
.chroma .ss {
|
||||||
|
@apply font-semibold text-primary-800 dark:text-primary-400;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* OperatorWord */
|
||||||
|
.chroma .ow {
|
||||||
|
@apply font-semibold text-primary-400 dark:text-primary-600;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Comment */
|
||||||
|
/* CommentMultiline */
|
||||||
|
/* CommentSingle */
|
||||||
|
/* CommentSpecial */
|
||||||
|
/* CommentPreproc */
|
||||||
|
/* CommentPreprocFile */
|
||||||
|
.chroma .c,
|
||||||
|
.chroma .cm,
|
||||||
|
.chroma .c1,
|
||||||
|
.chroma .cs,
|
||||||
|
.chroma .cp,
|
||||||
|
.chroma .cpf {
|
||||||
|
@apply italic text-neutral-500 dark:text-neutral-400;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* CommentHashbang */
|
||||||
|
.chroma .ch {
|
||||||
|
@apply italic font-semibold text-neutral-500 dark:text-neutral-400;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GenericEmph */
|
||||||
|
.chroma .ge {
|
||||||
|
@apply italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GenericHeading */
|
||||||
|
.chroma .gh {
|
||||||
|
@apply font-semibold text-neutral-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GenericStrong */
|
||||||
|
.chroma .gs {
|
||||||
|
@apply font-semibold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GenericSubheading */
|
||||||
|
/* GenericTraceback */
|
||||||
|
.chroma .gu,
|
||||||
|
.chroma .gt {
|
||||||
|
@apply text-neutral-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GenericUnderline */
|
||||||
|
.chroma .gl {
|
||||||
|
@apply underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Custom */
|
||||||
|
|
||||||
|
pre {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail {
|
||||||
|
min-width: 300px;
|
||||||
|
height: 180px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail_card {
|
||||||
|
height: 200px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail_card_related {
|
||||||
|
height: 150px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail_card_term {
|
||||||
|
height: 150px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.single_hero_basic {
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.single_hero_round {
|
||||||
|
max-height: 50vh;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.single_hero_background {
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-size:cover;
|
||||||
|
background-position:center;
|
||||||
|
width: calc(100% + 40px);
|
||||||
|
z-index: -10;
|
||||||
|
margin-left: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero_gradient {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnailshadow {
|
||||||
|
box-shadow: 5px 5px 20px 1px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.anchor {
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
top: -150px;
|
||||||
|
height: 0px;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen sm {
|
||||||
|
.thumbnail {
|
||||||
|
min-width: 100%;
|
||||||
|
height: 180px;
|
||||||
|
}
|
||||||
|
.article {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen md {
|
||||||
|
.thumbnail {
|
||||||
|
min-width: 300px;
|
||||||
|
min-height: 180px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.article {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.medium-zoom-image--opened {
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nested-menu:hover + .menuhide {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
transition: visibility 0.3s, opacity 0.3s ease-in-out ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuhide:hover {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
transition: visibility 0.3s, opacity 0.3s ease-in-out ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuhide {
|
||||||
|
visibility: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
transition: visibility 0.3s, opacity 0.3s ease-in-out ;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
text-decoration-line: underline;
|
||||||
|
text-decoration-thickness: 3px;
|
||||||
|
text-underline-offset: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Gallery Specific Styles */
|
||||||
|
.grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
|
||||||
|
@screen sm {
|
||||||
|
.sm\:grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.sm\:grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen md {
|
||||||
|
.md\:grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.md\:grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen lg {
|
||||||
|
.lg\:grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.lg\:grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen xl {
|
||||||
|
.xl\:grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.xl\:grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen 2xl {
|
||||||
|
.2xl\:grid-w10 { width: calc(10% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w15 { width: calc(15% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w20 { width: calc(20% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w25 { width: calc(25% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w30 { width: calc(30% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w33 { width: calc(33% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w35 { width: calc(35% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w40 { width: calc(40% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w45 { width: calc(45% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w50 { width: calc(50% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w55 { width: calc(55% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w60 { width: calc(60% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w65 { width: calc(65% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w66 { width: calc(66% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w70 { width: calc(70% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w75 { width: calc(75% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w80 { width: calc(80% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w85 { width: calc(85% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w90 { width: calc(90% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w95 { width: calc(95% - 5px); margin: 0px !important; }
|
||||||
|
.2xl\:grid-w100 { width: calc(100% - 5px); margin: 0px !important; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Carousel Specific Styles */
|
||||||
|
.ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
|
||||||
|
@screen sm {
|
||||||
|
.sm\:ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.sm\:ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.sm\:ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen md {
|
||||||
|
.md\:ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.md\:ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.md\:ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen lg {
|
||||||
|
.lg\:ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.lg\:ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.lg\:ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen xl {
|
||||||
|
.xl\:ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.xl\:ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.xl\:ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
}
|
||||||
|
|
||||||
|
@screen 2xl {
|
||||||
|
.2xl\:ratio-16-9 { padding-top: 56.25%; } /* 16:9 Aspect Ratio */
|
||||||
|
.2xl\:ratio-21-9 { padding-top: 42.85%; } /* 21:9 Aspect Ratio */
|
||||||
|
.2xl\:ratio-32-9 { padding-top: 28.125%; } /* 32:9 Aspect Ratio */
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 214,251,252;
|
||||||
|
--color-neutral-200: 142,245,247;
|
||||||
|
--color-neutral-300: 70,239,243;
|
||||||
|
--color-neutral-400: 15,217,222;
|
||||||
|
--color-neutral-500: 10,147,150;
|
||||||
|
--color-neutral-600: 7,110,112;
|
||||||
|
--color-neutral-700: 5,72,74;
|
||||||
|
--color-neutral-800: 2,35,35;
|
||||||
|
--color-neutral-900: 0,0,0;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 255,240,212;
|
||||||
|
--color-primary-300: 255,213,136;
|
||||||
|
--color-primary-400: 255,187,59;
|
||||||
|
--color-primary-500: 238,155,0;
|
||||||
|
--color-primary-600: 197,128,0;
|
||||||
|
--color-primary-700: 156,102,0;
|
||||||
|
--color-primary-800: 116,75,0;
|
||||||
|
--color-primary-900: 75,49,0;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 255,246,241;
|
||||||
|
--color-secondary-200: 254,194,166;
|
||||||
|
--color-secondary-300: 252,142,91;
|
||||||
|
--color-secondary-400: 251,91,15;
|
||||||
|
--color-secondary-500: 187,62,3;
|
||||||
|
--color-secondary-600: 147,49,2;
|
||||||
|
--color-secondary-700: 107,35,2;
|
||||||
|
--color-secondary-800: 67,22,1;
|
||||||
|
--color-secondary-900: 26,9,0;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Avocado scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Stone */
|
||||||
|
--color-neutral-50: 250, 250, 249;
|
||||||
|
--color-neutral-100: 245, 245, 244;
|
||||||
|
--color-neutral-200: 231, 229, 228;
|
||||||
|
--color-neutral-300: 214, 211, 209;
|
||||||
|
--color-neutral-400: 168, 162, 158;
|
||||||
|
--color-neutral-500: 120, 113, 108;
|
||||||
|
--color-neutral-600: 87, 83, 78;
|
||||||
|
--color-neutral-700: 68, 64, 60;
|
||||||
|
--color-neutral-800: 41, 37, 36;
|
||||||
|
--color-neutral-900: 28, 25, 23;
|
||||||
|
/* Lime */
|
||||||
|
--color-primary-50: 247, 254, 231;
|
||||||
|
--color-primary-100: 236, 252, 203;
|
||||||
|
--color-primary-200: 217, 249, 157;
|
||||||
|
--color-primary-300: 190, 242, 100;
|
||||||
|
--color-primary-400: 163, 230, 53;
|
||||||
|
--color-primary-500: 132, 204, 22;
|
||||||
|
--color-primary-600: 101, 163, 13;
|
||||||
|
--color-primary-700: 77, 124, 15;
|
||||||
|
--color-primary-800: 63, 98, 18;
|
||||||
|
--color-primary-900: 54, 83, 20;
|
||||||
|
/* Emerald */
|
||||||
|
--color-secondary-50: 236, 253, 245;
|
||||||
|
--color-secondary-100: 209, 250, 229;
|
||||||
|
--color-secondary-200: 167, 243, 208;
|
||||||
|
--color-secondary-300: 110, 231, 183;
|
||||||
|
--color-secondary-400: 52, 211, 153;
|
||||||
|
--color-secondary-500: 16, 185, 129;
|
||||||
|
--color-secondary-600: 5, 150, 105;
|
||||||
|
--color-secondary-700: 4, 120, 87;
|
||||||
|
--color-secondary-800: 6, 95, 70;
|
||||||
|
--color-secondary-900: 6, 78, 59;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 254,197,207;
|
||||||
|
--color-neutral-200: 253,121,144;
|
||||||
|
--color-neutral-300: 251,46,82;
|
||||||
|
--color-neutral-400: 217,4,41;
|
||||||
|
--color-neutral-500: 177,3,33;
|
||||||
|
--color-neutral-600: 137,3,26;
|
||||||
|
--color-neutral-700: 97,2,18;
|
||||||
|
--color-neutral-800: 57,1,11;
|
||||||
|
--color-neutral-900: 17,0,3;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 230,233,238;
|
||||||
|
--color-primary-300: 186,193,206;
|
||||||
|
--color-primary-400: 141,153,174;
|
||||||
|
--color-primary-500: 117,132,157;
|
||||||
|
--color-primary-600: 97,111,136;
|
||||||
|
--color-primary-700: 80,92,113;
|
||||||
|
--color-primary-800: 63,72,89;
|
||||||
|
--color-primary-900: 46,53,65;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 217,230,238;
|
||||||
|
--color-secondary-200: 164,195,215;
|
||||||
|
--color-secondary-300: 111,160,192;
|
||||||
|
--color-secondary-400: 69,123,157;
|
||||||
|
--color-secondary-500: 57,101,129;
|
||||||
|
--color-secondary-600: 44,79,100;
|
||||||
|
--color-secondary-700: 32,56,72;
|
||||||
|
--color-secondary-800: 19,34,44;
|
||||||
|
--color-secondary-900: 7,12,15;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Blowfish scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Gray */
|
||||||
|
--color-neutral-50: 248, 250, 252;
|
||||||
|
--color-neutral-100: 241, 245, 249;
|
||||||
|
--color-neutral-200: 226, 232, 240;
|
||||||
|
--color-neutral-300: 203, 213, 225;
|
||||||
|
--color-neutral-400: 148, 163, 184;
|
||||||
|
--color-neutral-500: 100, 116, 139;
|
||||||
|
--color-neutral-600: 71, 85, 105;
|
||||||
|
--color-neutral-700: 51, 65, 85;
|
||||||
|
--color-neutral-800: 30, 41, 59;
|
||||||
|
--color-neutral-900: 15, 23, 42;
|
||||||
|
/* Blue */
|
||||||
|
--color-primary-50: 239, 246, 255;
|
||||||
|
--color-primary-100: 219, 234, 254;
|
||||||
|
--color-primary-200: 191, 219, 254;
|
||||||
|
--color-primary-300: 147, 197, 253;
|
||||||
|
--color-primary-400: 96, 165, 250;
|
||||||
|
--color-primary-500: 59, 130, 246;
|
||||||
|
--color-primary-600: 37, 99, 235;
|
||||||
|
--color-primary-700: 29, 78, 216;
|
||||||
|
--color-primary-800: 30, 64, 175;
|
||||||
|
--color-primary-900: 30, 58, 138;
|
||||||
|
/* Cyan */
|
||||||
|
--color-secondary-50: 236, 254, 255;
|
||||||
|
--color-secondary-100: 207, 250, 254;
|
||||||
|
--color-secondary-200: 165, 243, 252;
|
||||||
|
--color-secondary-300: 103, 232, 249;
|
||||||
|
--color-secondary-400: 34, 211, 238;
|
||||||
|
--color-secondary-500: 6, 182, 212;
|
||||||
|
--color-secondary-600: 8, 145, 178;
|
||||||
|
--color-secondary-700: 14, 116, 144;
|
||||||
|
--color-secondary-800: 21, 94, 117;
|
||||||
|
--color-secondary-900: 22, 78, 99;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Blowfish scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Gray */
|
||||||
|
--color-neutral-50: 250, 250, 250;
|
||||||
|
--color-neutral-100: 244, 244, 245;
|
||||||
|
--color-neutral-200: 228, 228, 231;
|
||||||
|
--color-neutral-300: 212, 212, 216;
|
||||||
|
--color-neutral-400: 161, 161, 170;
|
||||||
|
--color-neutral-500: 113, 113, 122;
|
||||||
|
--color-neutral-600: 82, 82, 91;
|
||||||
|
--color-neutral-700: 63, 63, 70;
|
||||||
|
--color-neutral-800: 39, 39, 42;
|
||||||
|
--color-neutral-900: 24, 24, 27;
|
||||||
|
/* Violet */
|
||||||
|
--color-primary-50: 245, 243, 255;
|
||||||
|
--color-primary-100: 237, 233, 254;
|
||||||
|
--color-primary-200: 221, 214, 254;
|
||||||
|
--color-primary-300: 196, 181, 253;
|
||||||
|
--color-primary-400: 167, 139, 250;
|
||||||
|
--color-primary-500: 139, 92, 246;
|
||||||
|
--color-primary-600: 124, 58, 237;
|
||||||
|
--color-primary-700: 109, 40, 217;
|
||||||
|
--color-primary-800: 91, 33, 182;
|
||||||
|
--color-primary-900: 76, 29, 149;
|
||||||
|
/* Fuchsia */
|
||||||
|
--color-secondary-50: 253, 244, 255;
|
||||||
|
--color-secondary-100: 250, 232, 255;
|
||||||
|
--color-secondary-200: 245, 208, 254;
|
||||||
|
--color-secondary-300: 240, 171, 252;
|
||||||
|
--color-secondary-400: 232, 121, 249;
|
||||||
|
--color-secondary-500: 217, 70, 239;
|
||||||
|
--color-secondary-600: 192, 38, 211;
|
||||||
|
--color-secondary-700: 162, 28, 175;
|
||||||
|
--color-secondary-800: 134, 25, 143;
|
||||||
|
--color-secondary-900: 112, 26, 117;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Fire scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Stone */
|
||||||
|
--color-neutral-50: 250, 250, 249;
|
||||||
|
--color-neutral-100: 245, 245, 244;
|
||||||
|
--color-neutral-200: 231, 229, 228;
|
||||||
|
--color-neutral-300: 214, 211, 209;
|
||||||
|
--color-neutral-400: 168, 162, 158;
|
||||||
|
--color-neutral-500: 120, 113, 108;
|
||||||
|
--color-neutral-600: 87, 83, 78;
|
||||||
|
--color-neutral-700: 68, 64, 60;
|
||||||
|
--color-neutral-800: 41, 37, 36;
|
||||||
|
--color-neutral-900: 28, 25, 23;
|
||||||
|
/* Orange */
|
||||||
|
--color-primary-50: 255, 247, 237;
|
||||||
|
--color-primary-100: 255, 237, 213;
|
||||||
|
--color-primary-200: 254, 215, 170;
|
||||||
|
--color-primary-300: 253, 186, 116;
|
||||||
|
--color-primary-400: 251, 146, 60;
|
||||||
|
--color-primary-500: 249, 115, 22;
|
||||||
|
--color-primary-600: 234, 88, 12;
|
||||||
|
--color-primary-700: 194, 65, 12;
|
||||||
|
--color-primary-800: 154, 52, 18;
|
||||||
|
--color-primary-900: 124, 45, 18;
|
||||||
|
/* Rose */
|
||||||
|
--color-secondary-50: 255, 241, 242;
|
||||||
|
--color-secondary-100: 255, 228, 230;
|
||||||
|
--color-secondary-200: 254, 205, 211;
|
||||||
|
--color-secondary-300: 253, 164, 175;
|
||||||
|
--color-secondary-400: 251, 113, 133;
|
||||||
|
--color-secondary-500: 244, 63, 94;
|
||||||
|
--color-secondary-600: 225, 29, 72;
|
||||||
|
--color-secondary-700: 190, 18, 60;
|
||||||
|
--color-secondary-800: 159, 18, 57;
|
||||||
|
--color-secondary-900: 136, 19, 55;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 232,238,237;
|
||||||
|
--color-neutral-200: 188,206,203;
|
||||||
|
--color-neutral-300: 143,174,170;
|
||||||
|
--color-neutral-400: 101,140,134;
|
||||||
|
--color-neutral-500: 84,116,111;
|
||||||
|
--color-neutral-600: 67,93,89;
|
||||||
|
--color-neutral-700: 50,69,66;
|
||||||
|
--color-neutral-800: 33,45,43;
|
||||||
|
--color-neutral-900: 16,21,21;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 205,252,247;
|
||||||
|
--color-primary-300: 132,249,235;
|
||||||
|
--color-primary-400: 59,245,223;
|
||||||
|
--color-primary-500: 20,243,217;
|
||||||
|
--color-primary-600: 11,212,188;
|
||||||
|
--color-primary-700: 9,173,153;
|
||||||
|
--color-primary-800: 7,134,119;
|
||||||
|
--color-primary-900: 5,95,84;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 194,253,219;
|
||||||
|
--color-secondary-200: 120,251,175;
|
||||||
|
--color-secondary-300: 45,249,130;
|
||||||
|
--color-secondary-400: 6,212,92;
|
||||||
|
--color-secondary-500: 5,172,75;
|
||||||
|
--color-secondary-600: 4,133,58;
|
||||||
|
--color-secondary-700: 3,93,40;
|
||||||
|
--color-secondary-800: 2,53,23;
|
||||||
|
--color-secondary-900: 0,14,6;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 255,255,255;
|
||||||
|
--color-neutral-200: 201,209,244;
|
||||||
|
--color-neutral-300: 137,156,231;
|
||||||
|
--color-neutral-400: 74,103,217;
|
||||||
|
--color-neutral-500: 37,65,178;
|
||||||
|
--color-neutral-600: 30,53,144;
|
||||||
|
--color-neutral-700: 23,40,110;
|
||||||
|
--color-neutral-800: 16,28,77;
|
||||||
|
--color-neutral-900: 9,16,43;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 252,211,226;
|
||||||
|
--color-primary-300: 246,140,178;
|
||||||
|
--color-primary-400: 240,69,131;
|
||||||
|
--color-primary-500: 216,17,89;
|
||||||
|
--color-primary-600: 178,14,73;
|
||||||
|
--color-primary-700: 140,11,58;
|
||||||
|
--color-primary-800: 103,8,42;
|
||||||
|
--color-primary-900: 65,5,27;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 255,255,255;
|
||||||
|
--color-secondary-200: 255,255,255;
|
||||||
|
--color-secondary-300: 255,242,219;
|
||||||
|
--color-secondary-400: 255,215,143;
|
||||||
|
--color-secondary-500: 255,188,66;
|
||||||
|
--color-secondary-600: 255,174,25;
|
||||||
|
--color-secondary-700: 239,155,0;
|
||||||
|
--color-secondary-800: 199,128,0;
|
||||||
|
--color-secondary-900: 158,102,0;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 255,255,255;
|
||||||
|
--color-neutral-200: 218,196,249;
|
||||||
|
--color-neutral-300: 175,126,243;
|
||||||
|
--color-neutral-400: 131,56,236;
|
||||||
|
--color-neutral-500: 108,22,229;
|
||||||
|
--color-neutral-600: 91,18,192;
|
||||||
|
--color-neutral-700: 73,15,155;
|
||||||
|
--color-neutral-800: 56,11,118;
|
||||||
|
--color-neutral-900: 38,8,80;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,230,241;
|
||||||
|
--color-primary-200: 255,153,197;
|
||||||
|
--color-primary-300: 255,77,154;
|
||||||
|
--color-primary-400: 255,0,110;
|
||||||
|
--color-primary-500: 214,0,92;
|
||||||
|
--color-primary-600: 173,0,75;
|
||||||
|
--color-primary-700: 133,0,57;
|
||||||
|
--color-primary-800: 92,0,40;
|
||||||
|
--color-primary-900: 51,0,22;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 255,255,255;
|
||||||
|
--color-secondary-200: 211,228,255;
|
||||||
|
--color-secondary-300: 135,181,255;
|
||||||
|
--color-secondary-400: 58,134,255;
|
||||||
|
--color-secondary-500: 17,109,255;
|
||||||
|
--color-secondary-600: 0,89,231;
|
||||||
|
--color-secondary-700: 0,74,191;
|
||||||
|
--color-secondary-800: 0,58,150;
|
||||||
|
--color-secondary-900: 0,42,109;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 255,255,255;
|
||||||
|
--color-neutral-200: 214,219,222;
|
||||||
|
--color-neutral-300: 172,183,188;
|
||||||
|
--color-neutral-400: 129,146,154;
|
||||||
|
--color-neutral-500: 92,107,115;
|
||||||
|
--color-neutral-600: 74,86,92;
|
||||||
|
--color-neutral-700: 56,65,70;
|
||||||
|
--color-neutral-800: 38,44,47;
|
||||||
|
--color-neutral-900: 19,23,24;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 255,255,255;
|
||||||
|
--color-primary-300: 250,251,252;
|
||||||
|
--color-primary-400: 204,216,222;
|
||||||
|
--color-primary-500: 157,180,192;
|
||||||
|
--color-primary-600: 132,161,176;
|
||||||
|
--color-primary-700: 107,142,160;
|
||||||
|
--color-primary-800: 89,121,138;
|
||||||
|
--color-primary-900: 73,99,113;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 255,255,255;
|
||||||
|
--color-secondary-200: 182,240,255;
|
||||||
|
--color-secondary-300: 105,225,255;
|
||||||
|
--color-secondary-400: 28,209,255;
|
||||||
|
--color-secondary-500: 0,165,207;
|
||||||
|
--color-secondary-600: 0,132,166;
|
||||||
|
--color-secondary-700: 0,100,125;
|
||||||
|
--color-secondary-800: 0,67,85;
|
||||||
|
--color-secondary-900: 0,35,44;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Ocean scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Gray */
|
||||||
|
--color-neutral-50: 248, 250, 252;
|
||||||
|
--color-neutral-100: 241, 245, 249;
|
||||||
|
--color-neutral-200: 226, 232, 240;
|
||||||
|
--color-neutral-300: 203, 213, 225;
|
||||||
|
--color-neutral-400: 148, 163, 184;
|
||||||
|
--color-neutral-500: 100, 116, 139;
|
||||||
|
--color-neutral-600: 71, 85, 105;
|
||||||
|
--color-neutral-700: 51, 65, 85;
|
||||||
|
--color-neutral-800: 30, 41, 59;
|
||||||
|
--color-neutral-900: 15, 23, 42;
|
||||||
|
/* Blue */
|
||||||
|
--color-primary-50: 239, 246, 255;
|
||||||
|
--color-primary-100: 219, 234, 254;
|
||||||
|
--color-primary-200: 191, 219, 254;
|
||||||
|
--color-primary-300: 147, 197, 253;
|
||||||
|
--color-primary-400: 96, 165, 250;
|
||||||
|
--color-primary-500: 59, 130, 246;
|
||||||
|
--color-primary-600: 37, 99, 235;
|
||||||
|
--color-primary-700: 29, 78, 216;
|
||||||
|
--color-primary-800: 30, 64, 175;
|
||||||
|
--color-primary-900: 30, 58, 138;
|
||||||
|
/* Cyan */
|
||||||
|
--color-secondary-50: 236, 254, 255;
|
||||||
|
--color-secondary-100: 207, 250, 254;
|
||||||
|
--color-secondary-200: 165, 243, 252;
|
||||||
|
--color-secondary-300: 103, 232, 249;
|
||||||
|
--color-secondary-400: 34, 211, 238;
|
||||||
|
--color-secondary-500: 6, 182, 212;
|
||||||
|
--color-secondary-600: 8, 145, 178;
|
||||||
|
--color-secondary-700: 14, 116, 144;
|
||||||
|
--color-secondary-800: 21, 94, 117;
|
||||||
|
--color-secondary-900: 22, 78, 99;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 255,255,255;
|
||||||
|
--color-neutral-100: 238,232,238;
|
||||||
|
--color-neutral-200: 206,188,206;
|
||||||
|
--color-neutral-300: 174,143,174;
|
||||||
|
--color-neutral-400: 140,101,140;
|
||||||
|
--color-neutral-500: 116,84,116;
|
||||||
|
--color-neutral-600: 93,67,93;
|
||||||
|
--color-neutral-700: 69,50,69;
|
||||||
|
--color-neutral-800: 45,33,45;
|
||||||
|
--color-neutral-900: 21,16,21;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 255,255,255;
|
||||||
|
--color-primary-200: 252,205,252;
|
||||||
|
--color-primary-300: 249,132,247;
|
||||||
|
--color-primary-400: 245,59,242;
|
||||||
|
--color-primary-500: 243,20,239;
|
||||||
|
--color-primary-600: 212,11,208;
|
||||||
|
--color-primary-700: 173,9,170;
|
||||||
|
--color-primary-800: 134,7,132;
|
||||||
|
--color-primary-900: 95,5,94;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 227,194,253;
|
||||||
|
--color-secondary-200: 192,120,251;
|
||||||
|
--color-secondary-300: 157,45,249;
|
||||||
|
--color-secondary-400: 119,6,212;
|
||||||
|
--color-secondary-500: 97,5,172;
|
||||||
|
--color-secondary-600: 74,4,133;
|
||||||
|
--color-secondary-700: 52,3,93;
|
||||||
|
--color-secondary-800: 30,2,53;
|
||||||
|
--color-secondary-900: 8,0,14;
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/* Slate scheme */
|
||||||
|
:root {
|
||||||
|
--color-neutral: 255, 255, 255;
|
||||||
|
/* Gray */
|
||||||
|
--color-neutral-50: 249, 250, 251;
|
||||||
|
--color-neutral-100: 243, 244, 246;
|
||||||
|
--color-neutral-200: 229, 231, 235;
|
||||||
|
--color-neutral-300: 209, 213, 219;
|
||||||
|
--color-neutral-400: 156, 163, 175;
|
||||||
|
--color-neutral-500: 107, 114, 128;
|
||||||
|
--color-neutral-600: 75, 85, 99;
|
||||||
|
--color-neutral-700: 55, 65, 81;
|
||||||
|
--color-neutral-800: 31, 41, 55;
|
||||||
|
--color-neutral-900: 17, 24, 39;
|
||||||
|
/* Slate */
|
||||||
|
--color-primary-50: 248, 250, 252;
|
||||||
|
--color-primary-100: 241, 245, 249;
|
||||||
|
--color-primary-200: 226, 232, 240;
|
||||||
|
--color-primary-300: 203, 213, 225;
|
||||||
|
--color-primary-400: 148, 163, 184;
|
||||||
|
--color-primary-500: 100, 116, 139;
|
||||||
|
--color-primary-600: 71, 85, 105;
|
||||||
|
--color-primary-700: 51, 65, 85;
|
||||||
|
--color-primary-800: 30, 41, 59;
|
||||||
|
--color-primary-900: 15, 23, 42;
|
||||||
|
/* Gray */
|
||||||
|
--color-secondary-50: 249, 250, 251;
|
||||||
|
--color-secondary-100: 243, 244, 246;
|
||||||
|
--color-secondary-200: 229, 231, 235;
|
||||||
|
--color-secondary-300: 209, 213, 219;
|
||||||
|
--color-secondary-400: 156, 163, 175;
|
||||||
|
--color-secondary-500: 107, 114, 128;
|
||||||
|
--color-secondary-600: 75, 85, 99;
|
||||||
|
--color-secondary-700: 55, 65, 81;
|
||||||
|
--color-secondary-800: 31, 41, 55;
|
||||||
|
--color-secondary-900: 17, 24, 39;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
:root { --color-neutral: 255, 255, 255;
|
||||||
|
--color-neutral-50: 203,255,227;
|
||||||
|
--color-neutral-100: 126,255,186;
|
||||||
|
--color-neutral-200: 49,255,145;
|
||||||
|
--color-neutral-300: 0,228,106;
|
||||||
|
--color-neutral-400: 0,152,71;
|
||||||
|
--color-neutral-500: 0,75,35;
|
||||||
|
--color-neutral-600: 0,50,23;
|
||||||
|
--color-neutral-700: 0,24,11;
|
||||||
|
--color-neutral-800: 0,24,11;
|
||||||
|
--color-neutral-900: 0,0,0;
|
||||||
|
--color-primary-50: 255,255,255;
|
||||||
|
--color-primary-100: 236,255,227;
|
||||||
|
--color-primary-200: 184,255,150;
|
||||||
|
--color-primary-300: 132,255,74;
|
||||||
|
--color-primary-400: 80,252,0;
|
||||||
|
--color-primary-500: 56,176,0;
|
||||||
|
--color-primary-600: 48,151,0;
|
||||||
|
--color-primary-700: 40,125,0;
|
||||||
|
--color-primary-800: 40,125,0;
|
||||||
|
--color-primary-900: 7,23,0;
|
||||||
|
--color-secondary-50: 255,255,255;
|
||||||
|
--color-secondary-100: 239,248,252;
|
||||||
|
--color-secondary-200: 173,220,242;
|
||||||
|
--color-secondary-300: 107,192,231;
|
||||||
|
--color-secondary-400: 41,164,220;
|
||||||
|
--color-secondary-500: 26,117,159;
|
||||||
|
--color-secondary-600: 22,101,137;
|
||||||
|
--color-secondary-700: 19,85,115;
|
||||||
|
--color-secondary-800: 19,85,115;
|
||||||
|
--color-secondary-900: 4,20,28;
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"/></svg>
|
After Width: | Height: | Size: 741 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg>
|
After Width: | Height: | Size: 536 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z"/></svg>
|
After Width: | Height: | Size: 454 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z"/></svg>
|
After Width: | Height: | Size: 488 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z"/></svg>
|
After Width: | Height: | Size: 921 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256,232.562c-21.183,-41.196 -78.868,-117.97 -132.503,-155.834c-51.378,-36.272 -70.978,-29.987 -83.828,-24.181c-14.872,6.72 -17.577,29.554 -17.577,42.988c0,13.433 7.365,110.138 12.169,126.281c15.873,53.336 72.376,71.358 124.413,65.574c2.66,-0.395 5.357,-0.759 8.089,-1.097c-2.68,0.429 -5.379,0.796 -8.089,1.097c-76.259,11.294 -143.984,39.085 -55.158,137.972c97.708,101.165 133.908,-21.692 152.484,-83.983c18.576,62.291 39.972,180.718 150.734,83.983c83.174,-83.983 22.851,-126.674 -53.408,-137.969c-2.71,-0.302 -5.409,-0.667 -8.089,-1.096c2.732,0.337 5.429,0.702 8.089,1.096c52.037,5.785 108.54,-12.239 124.413,-65.574c4.804,-16.142 12.169,-112.847 12.169,-126.281c-0,-13.434 -2.705,-36.267 -17.577,-42.988c-12.85,-5.806 -32.45,-12.09 -83.829,24.181c-53.634,37.864 -111.319,114.635 -132.502,155.831Z"/></svg>
|
After Width: | Height: | Size: 898 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z"/></svg>
|
After Width: | Height: | Size: 707 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M352 96V99.56C352 115.3 339.3 128 323.6 128H188.4C172.7 128 159.1 115.3 159.1 99.56V96C159.1 42.98 202.1 0 255.1 0C309 0 352 42.98 352 96zM41.37 105.4C53.87 92.88 74.13 92.88 86.63 105.4L150.6 169.4C151.3 170 151.9 170.7 152.5 171.4C166.8 164.1 182.9 160 199.1 160H312C329.1 160 345.2 164.1 359.5 171.4C360.1 170.7 360.7 170 361.4 169.4L425.4 105.4C437.9 92.88 458.1 92.88 470.6 105.4C483.1 117.9 483.1 138.1 470.6 150.6L406.6 214.6C405.1 215.3 405.3 215.9 404.6 216.5C410.7 228.5 414.6 241.9 415.7 256H480C497.7 256 512 270.3 512 288C512 305.7 497.7 320 480 320H416C416 344.6 410.5 367.8 400.6 388.6C402.7 389.9 404.8 391.5 406.6 393.4L470.6 457.4C483.1 469.9 483.1 490.1 470.6 502.6C458.1 515.1 437.9 515.1 425.4 502.6L362.3 439.6C337.8 461.4 306.5 475.8 272 479.2V240C272 231.2 264.8 224 255.1 224C247.2 224 239.1 231.2 239.1 240V479.2C205.5 475.8 174.2 461.4 149.7 439.6L86.63 502.6C74.13 515.1 53.87 515.1 41.37 502.6C28.88 490.1 28.88 469.9 41.37 457.4L105.4 393.4C107.2 391.5 109.3 389.9 111.4 388.6C101.5 367.8 96 344.6 96 320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H96.3C97.38 241.9 101.3 228.5 107.4 216.5C106.7 215.9 106 215.3 105.4 214.6L41.37 150.6C28.88 138.1 28.88 117.9 41.37 105.4H41.37z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z"/></svg>
|
After Width: | Height: | Size: 349 B |
@ -0,0 +1,12 @@
|
|||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 20 20"
|
||||||
|
fill="currentColor"
|
||||||
|
aria-hidden="true"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 317 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 128c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S224 177.7 224 160C224 142.3 238.3 128 256 128zM296 384h-80C202.8 384 192 373.3 192 360s10.75-24 24-24h16v-64H224c-13.25 0-24-10.75-24-24S210.8 224 224 224h32c13.25 0 24 10.75 24 24v88h16c13.25 0 24 10.75 24 24S309.3 384 296 384z"/></svg>
|
After Width: | Height: | Size: 463 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"/></svg>
|
After Width: | Height: | Size: 564 B |
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<svg fill="currentColor" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><path d="M11.955.49A12 12 0 0 0 0 12.49a12 12 0 0 0 1.832 6.373L11.838 5.928a.187.14 0 0 1 .324 0l10.006 12.935A12 12 0 0 0 24 12.49a12 12 0 0 0-12-12 12 12 0 0 0-.045 0zm.375 6.467 4.416 16.553a12 12 0 0 0 5.137-4.213z"/></svg>
|
After Width: | Height: | Size: 359 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"/></svg>
|
After Width: | Height: | Size: 766 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 32C114.6 32 .0272 125.1 .0272 240c0 49.63 21.35 94.98 56.97 130.7c-12.5 50.37-54.27 95.27-54.77 95.77c-2.25 2.25-2.875 5.734-1.5 8.734C1.979 478.2 4.75 480 8 480c66.25 0 115.1-31.76 140.6-51.39C181.2 440.9 217.6 448 256 448c141.4 0 255.1-93.13 255.1-208S397.4 32 256 32z"/></svg>
|
After Width: | Height: | Size: 376 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z"/></svg>
|
After Width: | Height: | Size: 786 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"/></svg>
|
After Width: | Height: | Size: 364 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z"/></svg>
|
After Width: | Height: | Size: 684 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zM432 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"/></svg>
|
After Width: | Height: | Size: 539 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path fill="currentColor" d="M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z"/></svg>
|
After Width: | Height: | Size: 776 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M207.8 20.73c-93.45 18.32-168.7 93.66-187 187.1c-27.64 140.9 68.65 266.2 199.1 285.1c19.01 2.888 36.17-12.26 36.17-31.49l.0001-.6631c0-15.74-11.44-28.88-26.84-31.24c-84.35-12.98-149.2-86.13-149.2-174.2c0-102.9 88.61-185.5 193.4-175.4c91.54 8.869 158.6 91.25 158.6 183.2l0 16.16c0 22.09-17.94 40.05-40 40.05s-40.01-17.96-40.01-40.05v-120.1c0-8.847-7.161-16.02-16.01-16.02l-31.98 .0036c-7.299 0-13.2 4.992-15.12 11.68c-24.85-12.15-54.24-16.38-86.06-5.106c-38.75 13.73-68.12 48.91-73.72 89.64c-9.483 69.01 43.81 128 110.9 128c26.44 0 50.43-9.544 69.59-24.88c24 31.3 65.23 48.69 109.4 37.49C465.2 369.3 496 324.1 495.1 277.2V256.3C495.1 107.1 361.2-9.332 207.8 20.73zM239.1 304.3c-26.47 0-48-21.56-48-48.05s21.53-48.05 48-48.05s48 21.56 48 48.05S266.5 304.3 239.1 304.3z"/></svg>
|
After Width: | Height: | Size: 867 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg>
|
After Width: | Height: | Size: 359 B |
@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px">
|
||||||
|
<path fill="currentColor" d="M 12.980469 4 C 9.1204688 4 5.9804688 7.14 5.9804688 11 L 6 26 L 9.9804688 26 L 9.9804688 11 C 9.9804688 9.35 11.320469 8 12.980469 8 L 40.019531 8 C 41.679531 8 43.019531 9.35 43.019531 11 L 43.019531 39 C 43.019531 40.65 41.679531 42 40.019531 42 L 29 42 C 29 43.54 28.420938 44.94 27.460938 46 L 40.019531 46 C 43.879531 46 47.019531 42.86 47.019531 39 L 47.019531 11 C 47.019531 7.14 43.879531 4 40.019531 4 L 12.980469 4 z M 7 28 C 4.794 28 3 29.794 3 32 L 3 42 C 3 44.206 4.794 46 7 46 L 23 46 C 25.206 46 27 44.206 27 42 L 27 32 C 27 29.794 25.206 28 23 28 L 7 28 z M 7 32 L 23 32 L 23.001953 42 L 7 42 L 7 32 z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 749 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
|
||||||
|
<path fill="currentColor" d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg>
|
After Width: | Height: | Size: 633 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"/></svg>
|
After Width: | Height: | Size: 365 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-2.8-5.6-5.6-11.2-9.8-16.8l-50.6 58.8s-81.4-103.6-87.1-110.6C133.1 243.8 112 273.2 112 306.8C112 375.4 162.6 416 225.7 416z"/></svg>
|
After Width: | Height: | Size: 572 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"/></svg>
|
After Width: | Height: | Size: 400 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg>
|
After Width: | Height: | Size: 691 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 368 512"><path fill="currentColor" d="M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z"/></svg>
|
After Width: | Height: | Size: 644 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||||
|
<path fill="currentColor" d="M50.8 452.1L19.2 477.4c-2.1 1.7-4.7 2.6-7.4 2.6C5.3 480 0 474.7 0 468.2V192C0 86 86 0 192 0S384 86 384 192V468.2c0 6.5-5.3 11.8-11.8 11.8c-2.7 0-5.3-.9-7.4-2.6l-31.6-25.3c-3.3-2.7-7.5-4.1-11.8-4.1c-5.9 0-11.5 2.8-15 7.5l-37.6 50.1c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4l-38.4-51.2c-3-4-7.8-6.4-12.8-6.4s-9.8 2.4-12.8 6.4l-38.4 51.2c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L77.6 455.5c-3.6-4.7-9.1-7.5-15-7.5c-4.3 0-8.4 1.5-11.7 4.1zM160 192c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zm96 32c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z"/></svg>
|
After Width: | Height: | Size: 678 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M510.486,284.482l-27.262-83.963c.012.038.016.077.028.115-.013-.044-.021-.088-.033-.132v-.01L429.1,33.871a21.328,21.328,0,0,0-20.445-14.6A21.038,21.038,0,0,0,388.466,34L337.094,192.154H175L123.533,33.989A21.033,21.033,0,0,0,103.35,19.274h-.113A21.467,21.467,0,0,0,82.86,34L28.888,200.475l-.008.021v0c-.013.042-.019.084-.033.127.012-.038.017-.077.029-.115L1.514,284.482a30.6,30.6,0,0,0,11.117,34.283L248.893,490.427c.035.026.074.041.109.067.1.072.2.146.3.214-.1-.065-.187-.136-.282-.2l0,0c.015.012.033.02.05.031s.027.015.041.024l.006,0a11.992,11.992,0,0,0,1.137.7c.054.03.1.068.157.1l0,0c.033.016.064.038.1.054s.053.02.077.032.038.015.056.023c.044.021.092.034.136.057.205.1.421.178.633.264.2.082.389.177.592.248l.025.011c.034.012.064.028.1.04s.083.032.125.046l.05.012c.053.016.11.024.163.039.019.006.042.009.063.015.284.086.579.148.872.213.115.026.225.062.341.083.017,0,.032.009.05.012.038.008.073.021.112.027.062.011.122.031.186.04.049.007.1,0,.151.012h.033a11.918,11.918,0,0,0,1.7.136h.019a11.971,11.971,0,0,0,1.7-.136h.033c.05-.008.1,0,.153-.012s.124-.029.187-.04c.038-.006.073-.019.11-.027.017,0,.032-.009.049-.012.118-.023.231-.059.349-.084.288-.064.578-.126.861-.21.019-.006.039-.008.059-.014.055-.017.113-.024.169-.041.016-.006.035-.007.051-.012.044-.013.086-.032.129-.047s.063-.028.1-.041l.026-.01c.214-.076.417-.175.627-.261s.394-.154.584-.245c.047-.023.1-.036.142-.059.018-.009.04-.015.058-.024s.053-.02.078-.033.068-.04.1-.056l0,0c.056-.028.106-.069.161-.1a12.341,12.341,0,0,0,1.132-.695c.029-.02.062-.035.092-.056.008-.006.017-.009.024-.015.035-.026.076-.043.11-.068l236.3-171.666A30.6,30.6,0,0,0,510.486,284.482ZM408.8,49.48l46.342,142.674H362.46Zm-305.6,0,46.428,142.675H56.948ZM26.817,299.251a6.526,6.526,0,0,1-2.361-7.308l20.34-62.42L193.835,420.6Zm38.245-82.972h92.411L223.354,419.22Zm183.416,273.83c-.047-.038-.092-.079-.138-.118-.009-.008-.018-.018-.028-.026-.091-.075-.18-.152-.268-.231-.172-.15-.341-.3-.5-.462.014.012.029.022.043.035l.055.046a12.191,12.191,0,0,0,1.091.929l.012.011c.018.013.033.03.051.045C248.689,490.263,248.58,490.19,248.478,490.109Zm7.514-48.482L217.226,322.21,182.839,216.279H329.253Zm7.935,48.107c-.091.079-.178.157-.27.233l-.032.028c-.047.038-.091.079-.136.117-.1.08-.209.152-.313.229.018-.013.033-.032.053-.044l.009-.009a11.69,11.69,0,0,0,1.086-.926c.014-.013.03-.024.044-.036s.038-.03.054-.047C264.262,489.435,264.1,489.586,263.927,489.734Zm90.7-273.455h92.4l-18.91,24.23-139.468,178.7Zm130.567,82.967L318.2,420.563,467.284,229.538l20.258,62.393A6.528,6.528,0,0,1,485.189,299.246Z"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.6-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z"/></svg>
|
After Width: | Height: | Size: 832 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 512"><path fill="currentColor" d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"/></svg>
|
After Width: | Height: | Size: 348 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z"/></svg>
|
After Width: | Height: | Size: 857 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z"/></svg>
|
After Width: | Height: | Size: 281 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z"/></svg>
|
After Width: | Height: | Size: 456 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M244 84L255.1 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84C243.1 84 244 84.01 244 84L244 84zM255.1 163.9L210.1 117.1C188.4 96.28 157.6 86.4 127.3 91.44C81.55 99.07 48 138.7 48 185.1V190.9C48 219.1 59.71 246.1 80.34 265.3L256 429.3L431.7 265.3C452.3 246.1 464 219.1 464 190.9V185.1C464 138.7 430.4 99.07 384.7 91.44C354.4 86.4 323.6 96.28 301.9 117.1L255.1 163.9z"/></svg>
|
After Width: | Height: | Size: 722 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"/></svg>
|
After Width: | Height: | Size: 373 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"/></svg>
|
After Width: | Height: | Size: 518 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>
|
After Width: | Height: | Size: 1023 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="235.452" width="261.728" viewBox="0 0 245.37069 220.73612"><path fill="currentColor" d="M31.99 1.365C21.287 7.72.2 31.945 0 38.298v10.516C0 62.144 12.46 73.86 23.773 73.86c13.584 0 24.902-11.258 24.903-24.62 0 13.362 10.93 24.62 24.515 24.62 13.586 0 24.165-11.258 24.165-24.62 0 13.362 11.622 24.62 25.207 24.62h.246c13.586 0 25.208-11.258 25.208-24.62 0 13.362 10.58 24.62 24.164 24.62 13.585 0 24.515-11.258 24.515-24.62 0 13.362 11.32 24.62 24.903 24.62 11.313 0 23.773-11.714 23.773-25.046V38.298c-.2-6.354-21.287-30.58-31.988-36.933C180.118.197 157.056-.005 122.685 0c-34.37.003-81.228.54-90.697 1.365zm65.194 66.217a28.025 28.025 0 0 1-4.78 6.155c-5.128 5.014-12.157 8.122-19.906 8.122a28.482 28.482 0 0 1-19.948-8.126c-1.858-1.82-3.27-3.766-4.563-6.032l-.006.004c-1.292 2.27-3.092 4.215-4.954 6.037a28.5 28.5 0 0 1-19.948 8.12c-.934 0-1.906-.258-2.692-.528-1.092 11.372-1.553 22.24-1.716 30.164l-.002.045c-.02 4.024-.04 7.333-.06 11.93.21 23.86-2.363 77.334 10.52 90.473 19.964 4.655 56.7 6.775 93.555 6.788h.006c36.854-.013 73.59-2.133 93.554-6.788 12.883-13.14 10.31-66.614 10.52-90.474-.022-4.596-.04-7.905-.06-11.93l-.003-.045c-.162-7.926-.623-18.793-1.715-30.165-.786.27-1.757.528-2.692.528a28.5 28.5 0 0 1-19.948-8.12c-1.862-1.822-3.662-3.766-4.955-6.037l-.006-.004c-1.294 2.266-2.705 4.213-4.563 6.032a28.48 28.48 0 0 1-19.947 8.125c-7.748 0-14.778-3.11-19.906-8.123a28.025 28.025 0 0 1-4.78-6.155 27.99 27.99 0 0 1-4.736 6.155 28.49 28.49 0 0 1-19.95 8.124c-.27 0-.54-.012-.81-.02h-.007c-.27.008-.54.02-.813.02a28.49 28.49 0 0 1-19.95-8.123 27.992 27.992 0 0 1-4.736-6.155zm-20.486 26.49l-.002.01h.015c8.113.017 15.32 0 24.25 9.746 7.028-.737 14.372-1.105 21.722-1.094h.006c7.35-.01 14.694.357 21.723 1.094 8.93-9.747 16.137-9.73 24.25-9.746h.014l-.002-.01c3.833 0 19.166 0 29.85 30.007L210 165.244c8.504 30.624-2.723 31.373-16.727 31.4-20.768-.773-32.267-15.855-32.267-30.935-11.496 1.884-24.907 2.826-38.318 2.827h-.006c-13.412 0-26.823-.943-38.318-2.827 0 15.08-11.5 30.162-32.267 30.935-14.004-.027-25.23-.775-16.726-31.4L46.85 124.08c10.684-30.007 26.017-30.007 29.85-30.007zm45.985 23.582v.006c-.02.02-21.863 20.08-25.79 27.215l14.304-.573v12.474c0 .584 5.74.346 11.486.08h.006c5.744.266 11.485.504 11.485-.08v-12.474l14.304.573c-3.928-7.135-25.79-27.215-25.79-27.215v-.006l-.003.002z"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z"/></svg>
|
After Width: | Height: | Size: 393 B |
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
<svg width="211.67mm" height="211.67mm" version="1.1" viewBox="0 0 211.67 211.67" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clipPath25">
|
||||||
|
<path d="m0 600h1654.8v-600h-1654.8z" fill="currentColor"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
<g transform="translate(-3.0786 -29.59)">
|
||||||
|
<g transform="matrix(.35278 0 0 -.35278 3.0785 241.26)">
|
||||||
|
<g clip-path="url(#clipPath25)">
|
||||||
|
<g transform="translate(600 300)">
|
||||||
|
<path d="m-300 300c-165.69 0-300-134.31-300-300 0-165.69 134.31-300 300-300 165.68 0 300 134.31 300 300 0 165.69-134.32 300-300 300zm-188.93-166.99h329.58c23.223 0 46.032-6.8325 65.073-20.125 18.412-12.856 36.378-33.646 42.697-67.02 14.674-77.514-43.568-135.76-126.12-131.18 0.438-21.268-3.8105-59.422-44.878-69.696-3.282-0.821-6.6604-1.186-10.044-1.207-72.13-0.448-222.53-0.88916-222.53-0.88916s-46.066-0.01555-49.176 45.962c-1.023 77.88-0.48339 223.69-0.48339 223.69s-0.02651 2.9267-0.02051 3.6577c0.043 5.607 4.4359 16.8 15.901 16.8zm312.71-55.573v-107.8s14.302-1.6507 31.907 0.54932c20.356 6.6 39.06 20.901 39.06 57.199 0 14.85-5.2614 25.601-11.837 33.239-9.341 10.848-23.152 16.809-37.469 16.809h-21.661z" fill="currentColor"/>
|
||||||
|
</g>
|
||||||
|
<g transform="translate(256.61 203.37)">
|
||||||
|
<path d="m0 0c3.585-1.806 5.876 0.437 5.876 0.437s52.457 47.878 76.089 75.452c21.018 24.667 22.389 66.234-13.708 81.766-36.096 15.532-65.795-18.272-65.795-18.272-25.755 28.326-64.734 26.891-82.763 7.721-18.027-19.169-11.732-52.072 1.717-70.383 12.626-17.19 68.119-66.65 76.529-75.015 0 0 0.614-0.641 2.055-1.706" fill="currentColor"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z"/></svg>
|
After Width: | Height: | Size: 968 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z"/></svg>
|
After Width: | Height: | Size: 670 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M112.1 454.3c0 6.297 1.816 12.44 5.284 17.69l17.14 25.69c5.25 7.875 17.17 14.28 26.64 14.28h61.67c9.438 0 21.36-6.401 26.61-14.28l17.08-25.68c2.938-4.438 5.348-12.37 5.348-17.7L272 415.1h-160L112.1 454.3zM191.4 .0132C89.44 .3257 16 82.97 16 175.1c0 44.38 16.44 84.84 43.56 115.8c16.53 18.84 42.34 58.23 52.22 91.45c.0313 .25 .0938 .5166 .125 .7823h160.2c.0313-.2656 .0938-.5166 .125-.7823c9.875-33.22 35.69-72.61 52.22-91.45C351.6 260.8 368 220.4 368 175.1C368 78.61 288.9-.2837 191.4 .0132zM192 96.01c-44.13 0-80 35.89-80 79.1C112 184.8 104.8 192 96 192S80 184.8 80 176c0-61.76 50.25-111.1 112-111.1c8.844 0 16 7.159 16 16S200.8 96.01 192 96.01z"/></svg>
|
After Width: | Height: | Size: 747 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M172.5 131.1C228.1 75.51 320.5 75.51 376.1 131.1C426.1 181.1 433.5 260.8 392.4 318.3L391.3 319.9C381 334.2 361 337.6 346.7 327.3C332.3 317 328.9 297 339.2 282.7L340.3 281.1C363.2 249 359.6 205.1 331.7 177.2C300.3 145.8 249.2 145.8 217.7 177.2L105.5 289.5C73.99 320.1 73.99 372 105.5 403.5C133.3 431.4 177.3 435 209.3 412.1L210.9 410.1C225.3 400.7 245.3 404 255.5 418.4C265.8 432.8 262.5 452.8 248.1 463.1L246.5 464.2C188.1 505.3 110.2 498.7 60.21 448.8C3.741 392.3 3.741 300.7 60.21 244.3L172.5 131.1zM467.5 380C411 436.5 319.5 436.5 263 380C213 330 206.5 251.2 247.6 193.7L248.7 192.1C258.1 177.8 278.1 174.4 293.3 184.7C307.7 194.1 311.1 214.1 300.8 229.3L299.7 230.9C276.8 262.1 280.4 306.9 308.3 334.8C339.7 366.2 390.8 366.2 422.3 334.8L534.5 222.5C566 191 566 139.1 534.5 108.5C506.7 80.63 462.7 76.99 430.7 99.9L429.1 101C414.7 111.3 394.7 107.1 384.5 93.58C374.2 79.2 377.5 59.21 391.9 48.94L393.5 47.82C451 6.731 529.8 13.25 579.8 63.24C636.3 119.7 636.3 211.3 579.8 267.7L467.5 380z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg>
|
After Width: | Height: | Size: 525 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M88 48C101.3 48 112 58.75 112 72V120C112 133.3 101.3 144 88 144H40C26.75 144 16 133.3 16 120V72C16 58.75 26.75 48 40 48H88zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H480zM480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H192C174.3 288 160 273.7 160 256C160 238.3 174.3 224 192 224H480zM480 384C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416C160 398.3 174.3 384 192 384H480zM16 232C16 218.7 26.75 208 40 208H88C101.3 208 112 218.7 112 232V280C112 293.3 101.3 304 88 304H40C26.75 304 16 293.3 16 280V232zM88 368C101.3 368 112 378.7 112 392V440C112 453.3 101.3 464 88 464H40C26.75 464 16 453.3 16 440V392C16 378.7 26.75 368 40 368H88z"/></svg>
|
After Width: | Height: | Size: 863 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||||
|
<path fill="currentColor" d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"/></svg>
|
After Width: | Height: | Size: 298 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"/></svg>
|
After Width: | Height: | Size: 313 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z"/></svg>
|
After Width: | Height: | Size: 716 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M180.5,74.262C80.813,74.262,0,155.633,0,256S80.819,437.738,180.5,437.738,361,356.373,361,256,280.191,74.262,180.5,74.262Zm288.25,10.646c-49.845,0-90.245,76.619-90.245,171.095s40.406,171.1,90.251,171.1,90.251-76.619,90.251-171.1H559C559,161.5,518.6,84.908,468.752,84.908Zm139.506,17.821c-17.526,0-31.735,68.628-31.735,153.274s14.2,153.274,31.735,153.274S640,340.631,640,256C640,171.351,625.785,102.729,608.258,102.729Z"/></svg>
|
After Width: | Height: | Size: 518 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"/></svg>
|
After Width: | Height: | Size: 208 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M32 256c0-123.8 100.3-224 223.8-224c11.36 0 29.7 1.668 40.9 3.746c9.616 1.777 11.75 14.63 3.279 19.44C245 86.5 211.2 144.6 211.2 207.8c0 109.7 99.71 193 208.3 172.3c9.561-1.805 16.28 9.324 10.11 16.95C387.9 448.6 324.8 480 255.8 480C132.1 480 32 379.6 32 256z"/></svg>
|
After Width: | Height: | Size: 360 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z"/></svg>
|
After Width: | Height: | Size: 690 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
||||||
|
<path fill="currentColor" d="M511.1 367.1c0 44.18-42.98 80-95.1 80s-95.1-35.82-95.1-79.1c0-44.18 42.98-79.1 95.1-79.1c11.28 0 21.95 1.92 32.01 4.898V148.1L192 224l-.0023 208.1C191.1 476.2 149 512 95.1 512S0 476.2 0 432c0-44.18 42.98-79.1 95.1-79.1c11.28 0 21.95 1.92 32 4.898V126.5c0-12.97 10.06-26.63 22.41-30.52l319.1-94.49C472.1 .6615 477.3 0 480 0c17.66 0 31.97 14.34 32 31.99L511.1 367.1z"/></svg>
|
After Width: | Height: | Size: 465 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z"/></svg>
|
After Width: | Height: | Size: 464 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"/></svg>
|
After Width: | Height: | Size: 258 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
|
||||||
|
<path fill="currentColor" d="M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"/></svg>
|
After Width: | Height: | Size: 654 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M421.7 220.3L188.5 453.4L154.6 419.5L158.1 416H112C103.2 416 96 408.8 96 400V353.9L92.51 357.4C87.78 362.2 84.31 368 82.42 374.4L59.44 452.6L137.6 429.6C143.1 427.7 149.8 424.2 154.6 419.5L188.5 453.4C178.1 463.8 165.2 471.5 151.1 475.6L30.77 511C22.35 513.5 13.24 511.2 7.03 504.1C.8198 498.8-1.502 489.7 .976 481.2L36.37 360.9C40.53 346.8 48.16 333.9 58.57 323.5L291.7 90.34L421.7 220.3zM492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L444.3 197.7L314.3 67.72L362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75z"/></svg>
|
After Width: | Height: | Size: 623 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zm40-176c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40z"/></svg>
|
After Width: | Height: | Size: 428 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg>
|
After Width: | Height: | Size: 378 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z"/></svg>
|
After Width: | Height: | Size: 767 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 320c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm160-32c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm0 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z"/></svg>
|
After Width: | Height: | Size: 849 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z"/></svg>
|
After Width: | Height: | Size: 1009 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"/></svg>
|
After Width: | Height: | Size: 833 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm64 120c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32z"/></svg>
|
After Width: | Height: | Size: 544 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM128 416c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
|
After Width: | Height: | Size: 439 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 640 512">
|
||||||
|
<path fill="currentColor" d="M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"/></svg>
|
After Width: | Height: | Size: 840 B |
@ -0,0 +1 @@
|
|||||||
|
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="search" class="svg-inline--fa fa-search fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"/></svg>
|
After Width: | Height: | Size: 572 B |
@ -0,0 +1,2 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||||
|
<path fill="currentColor" d="M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8l0 0z"/></svg>
|
After Width: | Height: | Size: 366 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M368 128C368 172.4 342.6 211.5 304 234.4V256C304 273.7 289.7 288 272 288H176C158.3 288 144 273.7 144 256V234.4C105.4 211.5 80 172.4 80 128C80 57.31 144.5 0 224 0C303.5 0 368 57.31 368 128V128zM168 176C185.7 176 200 161.7 200 144C200 126.3 185.7 112 168 112C150.3 112 136 126.3 136 144C136 161.7 150.3 176 168 176zM280 112C262.3 112 248 126.3 248 144C248 161.7 262.3 176 280 176C297.7 176 312 161.7 312 144C312 126.3 297.7 112 280 112zM3.379 273.7C11.28 257.9 30.5 251.5 46.31 259.4L224 348.2L401.7 259.4C417.5 251.5 436.7 257.9 444.6 273.7C452.5 289.5 446.1 308.7 430.3 316.6L295.6 384L430.3 451.4C446.1 459.3 452.5 478.5 444.6 494.3C436.7 510.1 417.5 516.5 401.7 508.6L224 419.8L46.31 508.6C30.5 516.5 11.28 510.1 3.379 494.3C-4.525 478.5 1.882 459.3 17.69 451.4L152.4 384L17.69 316.6C1.882 308.7-4.525 289.5 3.379 273.7V273.7z"/></svg>
|
After Width: | Height: | Size: 929 B |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M496.926,366.6c-3.373-9.176-9.8-14.086-17.112-18.153-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a102.889,102.889,0,0,1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.221,10.221,0,0,1,2.914-3.038c3.918-2.591,7.96-5.22,10.7-6.993,4.885-3.162,8.754-5.667,11.246-7.44,9.362-6.547,15.909-13.5,20-21.278a42.371,42.371,0,0,0,2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.543,55.543,0,0,0-11.718,1.24c-1.029.224-2.059.459-3.063.72.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.167,130.167,0,0,0,332.1,36.443C309.515,23.547,283.91,17,256,17S202.6,23.547,180,36.443a129.735,129.735,0,0,0-33.281,26.783c-14.88,17.038-29.152,38.44-32.673,79.161-.992,11.594-1.24,23.435-1.079,34.533-1-.26-2.021-.5-3.051-.719a55.461,55.461,0,0,0-11.717-1.24c-18.687,0-34.125,10.131-40.3,26.449a42.423,42.423,0,0,0,2.046,35.228c4.105,7.774,10.652,14.731,20.014,21.278,2.48,1.736,6.361,4.24,11.246,7.44,2.641,1.711,6.5,4.216,10.28,6.72a11.054,11.054,0,0,1,3.3,3.311c.794,1.624.818,3.373-.36,6.6a102.02,102.02,0,0,1-8.94,15.785c-12.077,17.669-29.363,32.648-51.434,44.639C32.355,348.608,20.2,352.75,15.069,366.7c-3.868,10.528-1.339,22.506,8.494,32.6a49.137,49.137,0,0,0,12.4,9.387,134.337,134.337,0,0,0,30.342,12.139,20.024,20.024,0,0,1,6.126,2.741c3.583,3.137,3.075,7.861,7.849,14.78a34.468,34.468,0,0,0,8.977,9.127c10.019,6.919,21.278,7.353,33.207,7.811,10.776.41,22.989.881,36.939,5.481,5.778,1.91,11.78,5.605,18.736,9.92C194.842,480.951,217.707,495,255.973,495s61.292-14.123,78.118-24.428c6.907-4.24,12.872-7.9,18.489-9.758,13.949-4.613,26.163-5.072,36.939-5.481,11.928-.459,23.187-.893,33.206-7.812a34.584,34.584,0,0,0,10.218-11.16c3.434-5.84,3.348-9.919,6.572-12.771a18.971,18.971,0,0,1,5.753-2.629A134.893,134.893,0,0,0,476.02,408.71a48.344,48.344,0,0,0,13.019-10.193l.124-.149C498.389,388.5,500.708,376.867,496.926,366.6Zm-34.013,18.277c-20.745,11.458-34.533,10.23-45.259,17.137-9.114,5.865-3.72,18.513-10.342,23.076-8.134,5.617-32.177-.4-63.239,9.858-25.618,8.469-41.961,32.822-88.038,32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937,75.143-36.381,87.133-92.552,87.666-96.719.645-5.046,1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638,2.48-6.485,8.531-8.928,14.879-8.928a27.643,27.643,0,0,1,5.965.67c12,2.6,23.659,8.617,30.392,10.242a10.749,10.749,0,0,0,2.48.335c3.6,0,4.86-1.811,4.612-5.927-.768-13.132-2.628-38.725-.558-62.644,2.84-32.909,13.442-49.215,26.04-63.636,6.051-6.932,34.484-36.976,88.857-36.976s82.88,29.92,88.931,36.827c12.611,14.421,23.225,30.727,26.04,63.636,2.071,23.919.285,49.525-.558,62.644-.285,4.327,1.017,5.927,4.613,5.927a10.648,10.648,0,0,0,2.48-.335c6.745-1.624,18.4-7.638,30.4-10.242a27.641,27.641,0,0,1,5.964-.67c6.386,0,12.4,2.48,14.88,8.928,3.546,9.374-1.24,17-12.189,24.639-6.609,4.612-30.429,19.343-35.8,24.315-5.568,5.134-4.836,9.1-4.191,14.149.533,4.228,12.511,60.4,87.666,96.718C468.629,373.011,476.119,377.524,462.913,384.877Z"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |