[ADD] report_carbone, jsonifier, export_json : carbone is an alternative to Py3o
297
report_carbone/static/description/assets/description.css
Normal file
@@ -0,0 +1,297 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
a {
|
||||
color: "#5e17eb";
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Inter", sans-serif;
|
||||
line-height: 1.7;
|
||||
color: #001e2b;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.header {
|
||||
border-radius: 0;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
}
|
||||
.header-title-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.header-icon {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header-icon img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
color: #5e17eb;
|
||||
font-size: 3em;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.header .subtitle {
|
||||
font-size: 1.8em;
|
||||
opacity: 0.85;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 250;
|
||||
color: #e6fffa;
|
||||
}
|
||||
.badge {
|
||||
display: inline-block;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(245, 243, 237, 0.3);
|
||||
padding: 10px 24px;
|
||||
border-radius: 2px;
|
||||
margin: 10px 8px;
|
||||
font-size: 0.85em;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 80px;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
color: #001e2b;
|
||||
font-size: 2.2em;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid #001e2b;
|
||||
padding-bottom: 15px;
|
||||
font-weight: 400;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #001e2b;
|
||||
font-size: 1.4em;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background: #ffffff;
|
||||
padding: 35px;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.feature-card h4 {
|
||||
color: #001e2b;
|
||||
font-size: 1.15em;
|
||||
margin-bottom: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.feature-card .icon {
|
||||
font-size: 1.4em;
|
||||
margin-right: 12px;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.feature-card p {
|
||||
color: #5a5a5a;
|
||||
line-height: 1.6;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
.screenshot-placeholder {
|
||||
background: #ffffff;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
color: #8a8a8a;
|
||||
font-size: 1em;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.02em;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.screenshot-placeholder img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
}
|
||||
.benefits-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.benefits-list li {
|
||||
padding: 20px 0;
|
||||
border-bottom: 1px solid #e8e6df;
|
||||
display: flex;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.benefits-list li:before {
|
||||
content: "—";
|
||||
color: #5e17eb;
|
||||
font-weight: 400;
|
||||
font-size: 1.3em;
|
||||
margin-right: 20px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.tech-specs {
|
||||
background: #ffffff;
|
||||
padding: 30px;
|
||||
border-radius: 0;
|
||||
margin-top: 30px;
|
||||
border: 1px solid #e8e6df;
|
||||
}
|
||||
|
||||
.tech-specs table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.tech-specs td {
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid #e8e6df;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.tech-specs td:first-child {
|
||||
font-weight: 500;
|
||||
color: #001e2b;
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.tech-specs td:last-child {
|
||||
color: #5a5a5a;
|
||||
}
|
||||
|
||||
.cta-section {
|
||||
background: #001e2b;
|
||||
color: #f5f3ed;
|
||||
padding: 70px 60px;
|
||||
border-radius: 0;
|
||||
text-align: center;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
background: transparent;
|
||||
color: #f5f3ed;
|
||||
border: 2px solid #f5f3ed;
|
||||
padding: 16px 45px;
|
||||
border-radius: 2px;
|
||||
text-decoration: none;
|
||||
font-weight: 400;
|
||||
font-size: 1em;
|
||||
margin-top: 25px;
|
||||
transition: all 0.3s ease;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.cta-button:hover {
|
||||
background: #f5f3ed;
|
||||
color: #001e2b;
|
||||
transform: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.doc-ressource-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin-left: 40px;
|
||||
line-height: 2;
|
||||
}
|
||||
.doc-ressource-list li:before {
|
||||
content: "—";
|
||||
color: #5e17eb;
|
||||
font-weight: 400;
|
||||
font-size: 1.3em;
|
||||
margin-right: 20px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.highlight-box {
|
||||
background: #5e17eb;
|
||||
border-left: 3px solid #001e2b;
|
||||
padding: 25px 30px;
|
||||
margin: 30px 0;
|
||||
border-radius: 0;
|
||||
color: #001e2b;
|
||||
}
|
||||
|
||||
.highlight-box strong {
|
||||
color: #001e2b;
|
||||
}
|
||||
.green-horizontal {
|
||||
width: 70px;
|
||||
height: 1px;
|
||||
background-color: #5e17eb;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
right: 90px;
|
||||
}
|
||||
|
||||
.text-item .text-bottom {
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.text-item .text-item .text-bottom {
|
||||
font-size: 44px;
|
||||
}
|
||||
.title-item h3 {
|
||||
margin: 0;
|
||||
}
|
||||
.title-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #666;
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 892 KiB |
|
After Width: | Height: | Size: 799 KiB |
|
After Width: | Height: | Size: 2.6 MiB |
BIN
report_carbone/static/description/assets/gifs/pop-up-worflow.gif
Normal file
|
After Width: | Height: | Size: 376 KiB |
|
After Width: | Height: | Size: 736 KiB |
|
After Width: | Height: | Size: 3.4 MiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 140 KiB |
BIN
report_carbone/static/description/assets/logo/icon-use-case.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 57 KiB |
BIN
report_carbone/static/description/assets/logo/mangono-logo.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
report_carbone/static/description/assets/logo/mangono_logo.jpg
Normal file
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 201 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 221 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 258 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 114 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 166 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 114 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg
|
||||
width="100%"
|
||||
height="100%"
|
||||
viewBox="0 0 229 48"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xml:space="preserve"
|
||||
xmlns:serif="http://www.serif.com/"
|
||||
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
|
||||
>
|
||||
<g id="original">
|
||||
<path
|
||||
d="M35.015,0l-32.18,0c-1.566,0 -2.835,1.269 -2.835,2.835l-0,42.132c-0,1.566 1.269,2.835 2.835,2.835c7.732,0 29.127,0 36.859,0c0.752,0 1.473,-0.299 2.004,-0.83c0.532,-0.532 0.831,-1.253 0.831,-2.005c-0,-9.176 -0,-37.478 -0,-37.478l-7.514,-7.489Z"
|
||||
style="fill:#a544c5;"
|
||||
/>
|
||||
<path
|
||||
d="M60.53,37.702c-3.43,0 -6.114,-0.671 -8.052,-2.013c-1.939,-1.342 -2.908,-3.309 -2.908,-5.901c-0,-2.336 0.759,-4.126 2.276,-5.37c1.517,-1.244 3.675,-1.999 6.476,-2.266l7.362,-0.742l0,-1.172c0,-1.559 -0.507,-2.693 -1.523,-3.402c-1.015,-0.709 -2.409,-1.063 -4.181,-1.063c-1.41,-0 -2.772,0.192 -4.087,0.576c-1.315,0.385 -2.485,0.827 -3.51,1.328c-0.332,-0.268 -0.625,-0.614 -0.879,-1.038c-0.255,-0.425 -0.382,-0.863 -0.382,-1.316c-0,-1.136 0.621,-1.981 1.863,-2.535c0.974,-0.465 2.108,-0.818 3.402,-1.058c1.294,-0.24 2.623,-0.36 3.987,-0.36c3.291,-0 5.91,0.716 7.855,2.148c1.946,1.432 2.919,3.682 2.919,6.749l-0,12.368c-0,0.817 -0.18,1.453 -0.54,1.909c-0.36,0.456 -0.855,0.87 -1.485,1.244c-0.927,0.519 -2.127,0.967 -3.6,1.346c-1.472,0.379 -3.137,0.568 -4.993,0.568Zm0,-4.359c1.237,-0 2.306,-0.125 3.209,-0.376c0.902,-0.251 1.556,-0.508 1.96,-0.771l0,-6.72l-5.8,0.585c-1.6,0.122 -2.807,0.474 -3.621,1.056c-0.814,0.582 -1.221,1.43 -1.221,2.544c0,1.139 0.452,2.037 1.356,2.695c0.904,0.658 2.276,0.987 4.117,0.987Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M87.41,17.492l0,7.721l-5.575,0l-0,-7.878c-0,-0.872 0.184,-1.586 0.554,-2.142c0.37,-0.556 0.932,-1.079 1.688,-1.568c1.008,-0.64 2.317,-1.174 3.927,-1.6c1.609,-0.427 3.361,-0.641 5.255,-0.641c3.114,0 4.67,0.89 4.67,2.669c0,0.433 -0.063,0.834 -0.188,1.203c-0.126,0.37 -0.287,0.686 -0.483,0.947c-0.354,-0.07 -0.803,-0.136 -1.349,-0.197c-0.545,-0.061 -1.105,-0.091 -1.681,-0.091c-1.417,0 -2.71,0.151 -3.877,0.451c-1.168,0.301 -2.148,0.676 -2.941,1.126Zm-5.575,5.446l5.575,0.458l0,13.443c-0.236,0.081 -0.583,0.168 -1.04,0.261c-0.457,0.093 -0.957,0.14 -1.5,0.14c-1.019,0 -1.779,-0.192 -2.282,-0.577c-0.502,-0.384 -0.753,-1.046 -0.753,-1.984l-0,-11.741Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M118.188,11.37c2.23,-0 4.242,0.48 6.036,1.441c1.794,0.961 3.209,2.411 4.245,4.348c1.037,1.938 1.555,4.378 1.555,7.321c-0,2.958 -0.541,5.413 -1.623,7.365c-1.082,1.953 -2.586,3.411 -4.512,4.374c-1.927,0.963 -4.173,1.445 -6.74,1.445c-1.899,0 -3.579,-0.232 -5.039,-0.695c-1.46,-0.464 -2.666,-0.983 -3.619,-1.557c-0.742,-0.504 -1.271,-1.008 -1.589,-1.511c-0.317,-0.503 -0.475,-1.146 -0.475,-1.927l-0,-17.338l5.56,0l0,17.115c0.491,0.339 1.181,0.658 2.072,0.957c0.891,0.299 1.912,0.449 3.061,0.449c2.175,-0 3.924,-0.708 5.247,-2.124c1.323,-1.415 1.984,-3.6 1.984,-6.553c0,-2.999 -0.66,-5.185 -1.981,-6.558c-1.321,-1.373 -3.026,-2.06 -5.115,-2.06c-1.314,0 -2.479,0.252 -3.495,0.755c-1.017,0.502 -1.863,1.073 -2.54,1.71l-0.572,-4.513c0.787,-0.551 1.809,-1.097 3.067,-1.636c1.258,-0.539 2.749,-0.808 4.473,-0.808Zm-6.186,4.485l-5.575,0l-0,-13.328c0.235,-0.081 0.588,-0.168 1.058,-0.261c0.47,-0.093 0.977,-0.14 1.52,-0.14c1.029,-0 1.786,0.19 2.27,0.569c0.485,0.38 0.727,1.044 0.727,1.992l0,11.168Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M163.493,24.509c-0,2.674 -0.516,4.997 -1.549,6.969c-1.032,1.973 -2.488,3.497 -4.367,4.573c-1.88,1.075 -4.092,1.613 -6.635,1.613c-2.537,0 -4.752,-0.535 -6.646,-1.605c-1.894,-1.07 -3.358,-2.591 -4.392,-4.564c-1.034,-1.974 -1.551,-4.302 -1.551,-6.986c0,-2.694 0.526,-5.02 1.578,-6.978c1.052,-1.958 2.524,-3.474 4.418,-4.549c1.894,-1.075 4.094,-1.612 6.598,-1.612c2.506,-0 4.698,0.539 6.577,1.619c1.879,1.079 3.344,2.599 4.394,4.56c1.05,1.96 1.575,4.281 1.575,6.96Zm-12.554,-8.647c-2.108,0 -3.78,0.765 -5.018,2.295c-1.237,1.53 -1.856,3.647 -1.856,6.352c-0,2.751 0.604,4.882 1.813,6.394c1.21,1.512 2.898,2.269 5.064,2.269c2.146,-0 3.822,-0.765 5.029,-2.295c1.207,-1.53 1.81,-3.652 1.81,-6.368c0,-2.695 -0.606,-4.81 -1.817,-6.345c-1.211,-1.535 -2.886,-2.302 -5.025,-2.302Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M195.564,20.647l0,5.257l-5.575,-0l-0,-5.03c-0,-1.731 -0.493,-3 -1.477,-3.804c-0.984,-0.805 -2.299,-1.208 -3.944,-1.208c-1.216,0 -2.305,0.152 -3.267,0.456c-0.961,0.304 -1.801,0.661 -2.519,1.07l0,8.516l-5.575,-0l-0,-8.704c-0,-0.802 0.165,-1.458 0.494,-1.97c0.33,-0.512 0.861,-1.002 1.593,-1.471c0.998,-0.619 2.302,-1.172 3.91,-1.659c1.608,-0.487 3.406,-0.73 5.393,-0.73c3.433,-0 6.119,0.772 8.059,2.318c1.939,1.545 2.908,3.865 2.908,6.959Zm-22.357,2.52l5.575,-0l0,13.672c-0.236,0.081 -0.583,0.168 -1.04,0.261c-0.457,0.093 -0.957,0.14 -1.5,0.14c-1.019,0 -1.779,-0.192 -2.282,-0.577c-0.502,-0.384 -0.753,-1.046 -0.753,-1.984l-0,-11.512Zm16.782,-0l5.575,-0l0,13.672c-0.236,0.081 -0.589,0.168 -1.059,0.261c-0.47,0.093 -0.963,0.14 -1.481,0.14c-1.044,0 -1.811,-0.192 -2.301,-0.577c-0.49,-0.384 -0.734,-1.046 -0.734,-1.984l-0,-11.512Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M208.92,27.583l-0.242,-4.066l14.952,-2.128c-0.121,-1.597 -0.703,-2.946 -1.746,-4.047c-1.043,-1.102 -2.516,-1.652 -4.418,-1.652c-1.973,-0 -3.606,0.695 -4.899,2.084c-1.292,1.389 -1.948,3.377 -1.968,5.964l0.089,2.086c0.277,2.49 1.17,4.352 2.679,5.586c1.508,1.234 3.485,1.851 5.931,1.851c1.484,0 2.846,-0.233 4.087,-0.698c1.241,-0.465 2.229,-0.965 2.966,-1.501c0.438,0.277 0.794,0.626 1.068,1.045c0.274,0.42 0.412,0.882 0.412,1.385c-0,0.81 -0.395,1.531 -1.185,2.164c-0.789,0.632 -1.848,1.125 -3.176,1.478c-1.329,0.353 -2.83,0.53 -4.504,0.53c-2.73,0 -5.123,-0.502 -7.179,-1.506c-2.056,-1.004 -3.652,-2.504 -4.789,-4.5c-1.137,-1.995 -1.706,-4.451 -1.706,-7.367c0,-2.103 0.317,-3.958 0.949,-5.565c0.633,-1.607 1.503,-2.954 2.609,-4.039c1.107,-1.085 2.402,-1.91 3.885,-2.473c1.483,-0.563 3.068,-0.844 4.754,-0.844c2.254,-0 4.235,0.466 5.942,1.4c1.707,0.933 3.047,2.227 4.018,3.88c0.971,1.653 1.456,3.549 1.456,5.688c0,0.897 -0.221,1.555 -0.663,1.974c-0.443,0.42 -1.061,0.68 -1.856,0.78l-17.466,2.491Z"
|
||||
style="fill:#a544c5;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M23.852,15.915c-2.224,0 -4.089,0.743 -5.596,2.23c-1.506,1.487 -2.259,3.631 -2.259,6.432c0,2.776 0.727,4.898 2.18,6.364c1.453,1.467 3.34,2.201 5.66,2.201c1.366,-0 2.521,-0.184 3.466,-0.55c0.944,-0.367 1.776,-0.78 2.493,-1.241c0.469,0.29 0.839,0.63 1.111,1.017c0.271,0.387 0.407,0.86 0.407,1.418c0,1.109 -0.723,2.03 -2.169,2.763c-1.447,0.734 -3.32,1.1 -5.619,1.1c-2.577,0 -4.862,-0.48 -6.857,-1.442c-1.995,-0.961 -3.553,-2.413 -4.673,-4.355c-1.12,-1.943 -1.68,-4.367 -1.68,-7.275c-0,-2.931 0.59,-5.375 1.77,-7.33c1.18,-1.955 2.766,-3.423 4.756,-4.405c1.99,-0.982 4.167,-1.472 6.533,-1.472c2.28,-0 4.13,0.395 5.551,1.187c1.422,0.791 2.132,1.733 2.132,2.826c0,0.493 -0.133,0.936 -0.4,1.328c-0.268,0.392 -0.6,0.711 -0.999,0.957c-0.728,-0.461 -1.547,-0.868 -2.459,-1.222c-0.912,-0.354 -2.028,-0.531 -3.348,-0.531Z"
|
||||
style="fill:#fff;fill-rule:nonzero;"
|
||||
/>
|
||||
<path
|
||||
d="M35.015,6.638c-0,0.226 0.089,0.442 0.249,0.602c0.159,0.159 0.375,0.249 0.601,0.249c1.967,-0 6.664,-0 6.664,-0l-7.514,-7.489l-0,6.638Z"
|
||||
style="fill:#e8a4ff;fill-rule:nonzero;"
|
||||
/>
|
||||
</g>
|
||||
<script xmlns=""/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="28" height="28" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
||||
<circle cx="12" cy="12" r="11" stroke="#5e17eb" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 193 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
||||
<circle cx="9.5" cy="9.5" r="9.5" fill="#5e17eb"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 177 B |