first commit
@@ -0,0 +1,229 @@
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| Hamburgers
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
.page[data-page=hamburgers] .hamburgers {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page[data-page=hamburgers] .hamburgers .content-block {
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.page[data-page=hamburgers] .hamburgers .content-block p {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| Layout Grids
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
.page[data-page=layout-grids] .row {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #2196F3;
|
||||
border: 1px dotted #BDC3C7;
|
||||
color: #FFFFFF;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.theme-red .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #F44336;
|
||||
}
|
||||
|
||||
.theme-pink .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #E91E63;
|
||||
}
|
||||
|
||||
.theme-purple .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #9C27B0;
|
||||
}
|
||||
|
||||
.theme-deeppurple .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #673AB7;
|
||||
}
|
||||
|
||||
.theme-indigo .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #3F51B5;
|
||||
}
|
||||
|
||||
.theme-blue .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #2196F3;
|
||||
}
|
||||
|
||||
.theme-lightblue .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #03A9F4;
|
||||
}
|
||||
|
||||
.theme-cyan .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #00BCD4;
|
||||
}
|
||||
|
||||
.theme-teal .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #009688;
|
||||
}
|
||||
|
||||
.theme-green .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #4CAF50;
|
||||
}
|
||||
|
||||
.theme-lightgreen .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #8BC34A;
|
||||
}
|
||||
|
||||
.theme-lime .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #CDDC39;
|
||||
}
|
||||
|
||||
.theme-yellow .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #FFEB3B;
|
||||
}
|
||||
|
||||
.theme-amber .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #FFC107;
|
||||
}
|
||||
|
||||
.theme-orange .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #FF9800;
|
||||
}
|
||||
|
||||
.theme-deeporange .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #FF5722;
|
||||
}
|
||||
|
||||
.theme-brown .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #795548;
|
||||
}
|
||||
|
||||
.theme-gray .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #9E9E9E;
|
||||
}
|
||||
|
||||
.theme-bluegray .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #607D8B;
|
||||
}
|
||||
|
||||
.theme-white .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
.theme-black .page[data-page=layout-grids] [class*='col-'] {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| Pricing Table
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
.page[data-page=pricing-table] .page-content > .content-block {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.page[data-page=pricing-table] .row [class*='col-'] {
|
||||
margin-bottom: 8px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.page[data-page=pricing-table] .row [class*='tablet-'] {
|
||||
margin-bottom: 8px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| Swiper Slider
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
.page[data-page=swiper-slider] .swiper-container {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.page[data-page=swiper-slider] .swiper-slide {
|
||||
background-color: #F1F2F1;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
box-sizing: border-box;
|
||||
padding: 16px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.page[data-page=swiper-slider] .swiper-slide:before {
|
||||
background-color: rgba(128, 128, 128, 0.5);
|
||||
content: '';
|
||||
display: block;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.page[data-page=swiper-slider] .slide-content {
|
||||
align-items: center;
|
||||
color: #FFFFFF;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: calc(100% - 32px);
|
||||
justify-content: flex-end;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| Scroll Bar
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
*::-webkit-scrollbar {
|
||||
height: 2px;
|
||||
width: 3px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-button {
|
||||
height: 0px;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background: #666666;
|
||||
border: 0px none #FFFFFF;
|
||||
border-radius: 50px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:hover {
|
||||
background: #444444;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:active {
|
||||
background: #222222;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #EEEEEE;
|
||||
border: 0px none #FFFFFF;
|
||||
border-radius: 50px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track:hover {
|
||||
background: #EEEEEE;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track:active {
|
||||
background: #EEEEEE;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 7.8 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square70x70logo src="assets/custom/favicons/mstile-70x70.png"/>
|
||||
<square150x150logo src="assets/custom/favicons/mstile-150x150.png"/>
|
||||
<square310x310logo src="assets/custom/favicons/mstile-310x310.png"/>
|
||||
<wide310x150logo src="assets/custom/favicons/mstile-310x150.png"/>
|
||||
<TileColor>#333333</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
|
After Width: | Height: | Size: 645 B |
|
After Width: | Height: | Size: 885 B |
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "Nectar",
|
||||
"icons": [
|
||||
{
|
||||
"src": "android-chrome-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-384x384.png",
|
||||
"sizes": "384x384",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#333333",
|
||||
"background_color": "#333333",
|
||||
"start_url": "http://nectar.appcart.website/material",
|
||||
"display": "standalone"
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 364 B |
|
After Width: | Height: | Size: 414 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 738 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 372 B |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="40" viewBox="0 0 80 40">
|
||||
<path fill="#28252b" fill-opacity=".4" fill-rule="evenodd" d="M2.01 39.976c.02-4.594 1.786-9.182 5.302-12.687.475-.475.97-.917 1.483-1.327v9.77L4.54 39.977H2.01zm5.374 0L23.842 23.57c.687 5.35-1.03 10.95-5.154 15.06-.483.482-.987.93-1.508 1.346H7.384zm-7.384 0c.018-5.107 1.982-10.208 5.89-14.104 5.263-5.247 12.718-6.978 19.428-5.192 1.783 6.658.07 14.053-5.137 19.296H0zm10.806-15.41c3.537-2.116 7.644-2.92 11.614-2.415L10.806 33.73v-9.164zM65.25.75C58.578-1.032 51.164.694 45.93 5.93c-5.236 5.234-6.962 12.648-5.18 19.32 6.672 1.782 14.086.056 19.32-5.18 5.236-5.234 6.962-12.648 5.18-19.32zM43.632 23.783c5.338.683 10.925-1.026 15.025-5.126 4.1-4.1 5.81-9.687 5.126-15.025l-20.15 20.15zm7.186-19.156c3.518-2.112 7.602-2.915 11.55-2.41l-11.55 11.55v-9.14zm-3.475 2.716c-4.1 4.1-5.81 9.687-5.126 15.025l6.6-6.6V6.02c-.51.41-1 .85-1.474 1.323zM.07 0C.066 1.766.29 3.533.75 5.25c6.672 1.782 14.086.056 19.32-5.18l.072-.07H.072zm17.087 0C13.25 3.125 8.345 4.386 3.632 3.783L7.414 0h9.743zM2.07 0c-.002.79.047 1.582.147 2.368L4.587 0H2.07z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 776 B |
|
After Width: | Height: | Size: 761 B |
|
After Width: | Height: | Size: 446 B |
|
After Width: | Height: | Size: 415 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 853 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 872 B |
|
After Width: | Height: | Size: 431 B |
|
After Width: | Height: | Size: 887 B |
|
After Width: | Height: | Size: 360 B |
|
After Width: | Height: | Size: 924 B |
|
After Width: | Height: | Size: 606 B |
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="245" viewBox="0 0 256 245" preserveAspectRatio="xMidYMid">
|
||||
<path fill="#444" d="M232.727273 244.363636h-41.454546l2.909091-34.909091h-20.363636l-2.909091 34.909091H85.0909091l-2.9090909-34.909091H61.8181818l2.9090909 34.909091H23.2727273L0 93.0909091 58.1818182 0H197.818182L256 93.0909091 232.727273 244.363636zM186.181818 46.5454545h-37.402909L151.272727 64h-46.545454l2.493818-17.4545455H69.8181818L46.5454545 93.0909091l11.6363637 93.0909089H197.818182l11.636363-93.0909089-23.272727-46.5454546zM165.818182 155.287273c-3.213091 0-5.818182-9.690182-5.818182-21.643637C160 121.690182 162.605091 112 165.818182 112c3.213091 0 5.818182 9.690182 5.818182 21.643636 0 11.953455-2.605091 21.643637-5.818182 21.643637zm-73.4545456 1.803636c-3.2130909 0-5.8181819-9.690182-5.8181819-21.643636 0-11.953455 2.605091-21.643637 5.8181819-21.643637s5.8181818 9.690182 5.8181818 21.643637c0 11.953454-2.6050909 21.643636-5.8181818 21.643636z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1003 B |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 139 B |
|
After Width: | Height: | Size: 631 B |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.5 47.5">
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path d="M0 38h38V0H0v38z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 0 47.5)">
|
||||
<path fill="#fdcb58" d="M36 19c0-9.389-7.611-17-17-17C9.612 2 2 9.611 2 19c0 9.388 7.612 17 17 17 9.389 0 17-7.612 17-17"/>
|
||||
<path fill="#664500" d="M26.4854 7.1211c-.045.179-1.168 4.379-7.485 4.379-6.318 0-7.441-4.2-7.485-4.379-.055-.217.043-.442.237-.554.195-.109.439-.079.599.077.019.019 1.954 1.856 6.649 1.856 4.694 0 6.63-1.837 6.648-1.856.096-.094.224-.144.352-.144.084 0 .169.021.246.064.196.112.294.339.239.557M16.707 19.707C13.452 22.962 8.221 23 8 23c-.552 0-.999-.447-.999-.999-.001-.551.446-1 .998-1.001.029 0 1.925-.022 3.983-.737-.593-.64-.982-1.634-.982-2.763 0-1.934 1.119-3.5 2.5-3.5s2.5 1.566 2.5 3.5c0 .174-.019.34-.037.507.013 0 .025-.007.037-.007.256 0 .512.098.707.293.391.391.391 1.023 0 1.414M30 23c-.221 0-5.451-.038-8.707-3.293-.391-.391-.391-1.023 0-1.414.195-.195.451-.293.707-.293.013 0 .024.007.036.007-.016-.167-.036-.333-.036-.507 0-1.934 1.119-3.5 2.5-3.5s2.5 1.566 2.5 3.5c0 1.129-.389 2.123-.982 2.763 2.058.715 3.954.737 3.984.737.551.001.998.45.997 1.001-.001.552-.447.999-.999.999"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.5 47.5">
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path d="M0 38h38V0H0v38z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 0 47.5)">
|
||||
<path fill="#ffcc4d" d="M36 19c0-9.389-7.611-17-17-17C9.612 2 2 9.611 2 19c0 9.388 7.612 17 17 17 9.389 0 17-7.612 17-17"/>
|
||||
<path fill="#664500" d="M11 24s0 2 2 2 2-2 2-2v-2s0-2-2-2-2 2-2 2v2zm12 0s0 2 2 2 2-2 2-2v-2s0-2-2-2-2 2-2 2v2zm5.335-9.6289c-.178.161-.444.171-.635.029-.039-.029-3.922-2.9-8.7-2.9-4.766 0-8.662 2.871-8.7 2.9-.191.142-.457.13-.635-.029-.177-.16-.217-.424-.094-.628.129-.215 3.217-5.243 9.429-5.243s9.301 5.028 9.429 5.243c.123.205.084.468-.094.628"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 722 B |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.5 47.5">
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path d="M0 38h38V0H0v38z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 0 47.5)">
|
||||
<path fill="#ffcc4d" d="M36 19c0-9.389-7.611-17-17-17C9.612 2 2 9.611 2 19c0 9.388 7.612 17 17 17 9.389 0 17-7.612 17-17"/>
|
||||
<path fill="#664500" d="M15 20.5c0-1.934-1.119-3.5-2.5-3.5S10 18.566 10 20.5c0 1.933 1.119 3.5 2.5 3.5s2.5-1.567 2.5-3.5m13 0c0-1.934-1.119-3.5-2.5-3.5S23 18.566 23 20.5c0 1.933 1.119 3.5 2.5 3.5s2.5-1.567 2.5-3.5M26 11H12c-.552 0-1 .447-1 1 0 .553.448 1 1 1h14c.553 0 1-.447 1-1 0-.553-.447-1-1-1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 672 B |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.5 47.5">
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path d="M0 38h38V0H0v38z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 0 47.5)">
|
||||
<path fill="#ffcc4d" d="M36 19c0-9.389-7.611-17-17-17C9.612 2 2 9.611 2 19c0 9.388 7.612 17 17 17 9.389 0 17-7.612 17-17"/>
|
||||
<path fill="#664500" d="M11 24s0 2 2 2 2-2 2-2v-2s0-2-2-2-2 2-2 2v2zm12 0s0 2 2 2 2-2 2-2v-2s0-2-2-2-2 2-2 2v2zM9.6652 8.6286c.178-.161.444-.171.635-.029.039.029 3.922 2.9 8.7 2.9 4.766 0 8.662-2.871 8.7-2.9.191-.142.457-.13.635.029.177.16.217.424.094.628-.129.215-3.217 5.243-9.429 5.243s-9.301-5.028-9.429-5.243c-.123-.205-.084-.468.094-.628"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 718 B |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.5 47.5">
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path d="M0 38h38V0H0v38z"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path="url(#a)" transform="matrix(1.25 0 0 -1.25 0 47.5)">
|
||||
<path fill="#ffcc4d" d="M36 19c0-9.389-7.611-17-17-17S2 9.611 2 19s7.611 17 17 17 17-7.611 17-17"/>
|
||||
<path fill="#664500" d="M22 11.5C22 9.566 20.655 8 19 8c-1.657 0-3 1.566-3 3.5 0 1.932 1.343 3.5 3 3.5 1.655 0 3-1.568 3-3.5m9.4995 14c-.305 0-.605.138-.801.4-2.64 3.521-6.061 3.599-6.206 3.6-.55.006-.994.456-.991 1.005.003.551.447.995.997.995.184 0 4.537-.05 7.8-4.4.332-.442.242-1.069-.2-1.4-.18-.135-.39-.2-.599-.2m-25.0004 0c-.208 0-.419.065-.599.2-.442.331-.531.958-.2 1.4 3.262 4.35 7.616 4.4 7.8 4.4.552 0 1-.448 1-1 0-.551-.445-.998-.996-1-.155-.002-3.568-.086-6.204-3.6-.197-.262-.497-.4-.801-.4M15 22c0-1.657-.96-3-2.143-3-1.184 0-2.143 1.343-2.143 3s.959 3 2.143 3C14.04 25 15 23.657 15 22m12 .2002c0-1.547-.895-2.8-2-2.8-1.104 0-2 1.253-2 2.8 0 1.546.896 2.8 2 2.8 1.105 0 2-1.254 2-2.8"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 998 B |
|
After Width: | Height: | Size: 868 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 810 B |
|
After Width: | Height: | Size: 230 B |
|
After Width: | Height: | Size: 928 B |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 485 B |
|
After Width: | Height: | Size: 195 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 928 B |
@@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
|
||||
<circle cx="40" cy="40" r="40" fill="#333"/>
|
||||
<path fill="#f44336" d="M44.49509 54.279427H64.8677L52.05671 28.252954 38.43329 55.896h-1.99977l15.62319-31.792187L67.67987 55.896H44.49509v-1.616573z"/>
|
||||
<path fill="#ffeb3b" d="M35.50478 54.279427h-20.3726l12.81099-26.026473L41.56657 55.896h1.99977L27.94317 24.103813 12.32 55.896h23.18478v-1.616573z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 447 B |
|
After Width: | Height: | Size: 260 B |
|
After Width: | Height: | Size: 274 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 485 B |
|
After Width: | Height: | Size: 474 B |
|
After Width: | Height: | Size: 350 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 272 B |
|
After Width: | Height: | Size: 177 B |
|
After Width: | Height: | Size: 303 B |