forked from LaconicNetwork/icns-frontend
Update style of home page
This commit is contained in:
parent
6f3fe64125
commit
dacccbecdf
@ -8,19 +8,18 @@ import styled from "styled-components";
|
||||
import color from "../styles/color";
|
||||
|
||||
// Components
|
||||
import { PrimaryButton } from "../components/primary-button";
|
||||
import { ConnectWalletModal } from "../components/connect-wallet-modal";
|
||||
import { PrimaryButton } from "../components/primary-button";
|
||||
|
||||
// Image Assets
|
||||
import MainTitle from "../public/images/svg/main-title.svg";
|
||||
import MainLogo from "../public/images/svg/main-logo.svg";
|
||||
import CheckIcon from "../public/images/svg/check-icon.svg";
|
||||
import StarIcon from "../public/images/svg/bg-asset-3.svg";
|
||||
import { Logo } from "../components/logo";
|
||||
import { useEffect, useState } from "react";
|
||||
import { MINIMUM_OSMO_FEE, SELECTED_WALLET_KEY } from "../constants/wallet";
|
||||
import { replaceToInstallPage } from "../utils/url";
|
||||
import { Logo } from "../components/logo";
|
||||
import { REFERRAL_KEY } from "../constants/icns";
|
||||
import { SELECTED_WALLET_KEY } from "../constants/wallet";
|
||||
import StarIcon from "../public/images/svg/bg-asset-3.svg";
|
||||
import CheckIcon from "../public/images/svg/check-icon.svg";
|
||||
import MainLogo from "../public/images/svg/main-logo.svg";
|
||||
import MainTitle from "../public/images/svg/main-title.svg";
|
||||
|
||||
export default function Home() {
|
||||
const [isModalOpen, setModalOpen] = useState(false);
|
||||
@ -81,7 +80,7 @@ export default function Home() {
|
||||
<CTAContainer>
|
||||
<ConnectButtonContainer>
|
||||
<PrimaryButton onClick={onClickConnectWalletButton}>
|
||||
Connect Wallet
|
||||
Claim Now
|
||||
</PrimaryButton>
|
||||
</ConnectButtonContainer>
|
||||
<ICNSDescription>
|
||||
@ -106,9 +105,7 @@ export default function Home() {
|
||||
alt="Check Icon"
|
||||
/>
|
||||
</CheckIconContainer>
|
||||
You are a <CheckBoldText> keplr </CheckBoldText> user.
|
||||
if not, you can install
|
||||
<InstallLInk onClick={replaceToInstallPage}>HERE</InstallLInk>
|
||||
Osmo is required for this transaction
|
||||
</CheckContainer>
|
||||
<CheckContainer>
|
||||
<CheckIconContainer>
|
||||
@ -119,8 +116,7 @@ export default function Home() {
|
||||
alt="Check Icon"
|
||||
/>
|
||||
</CheckIconContainer>
|
||||
<CheckBoldText>{MINIMUM_OSMO_FEE} </CheckBoldText> is
|
||||
required for this transaction
|
||||
More wallet support coming soon
|
||||
</CheckContainer>
|
||||
</SubContainer>
|
||||
</MainTitleContainer>
|
||||
@ -171,7 +167,7 @@ const MainContainer = styled.div`
|
||||
}
|
||||
|
||||
&.last {
|
||||
right: -23px;
|
||||
right: -24px;
|
||||
top: -24px;
|
||||
}
|
||||
}
|
||||
@ -190,7 +186,7 @@ const MainTitleImageBackground = styled.div`
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
width: 70rem;
|
||||
width: calc(70rem - 1.5px);
|
||||
height: 19.9rem;
|
||||
|
||||
background-color: ${color.black};
|
||||
@ -210,7 +206,7 @@ const MainTitleImageContainer = styled.div`
|
||||
const MainLogoContainer = styled.div`
|
||||
position: relative;
|
||||
|
||||
right: 2.5rem;
|
||||
right: 2.58rem;
|
||||
|
||||
min-width: 25rem;
|
||||
height: 25rem;
|
||||
@ -221,17 +217,23 @@ const CTAContainer = styled.div`
|
||||
`;
|
||||
|
||||
const ConnectButtonContainer = styled.div`
|
||||
width: 19.9rem;
|
||||
height: 5rem;
|
||||
width: calc(20rem - 2px);
|
||||
height: calc(5rem - 1.5px);
|
||||
|
||||
margin-left: 5rem;
|
||||
margin-right: 26px;
|
||||
margin: 1.5px 1.5px 1.5px 5.01rem;
|
||||
`;
|
||||
|
||||
const ICNSDescription = styled.p`
|
||||
background-color: ${color.black};
|
||||
|
||||
width: calc(40rem - 3px);
|
||||
height: calc(5rem - 1.5px);
|
||||
margin: 1.5px;
|
||||
padding: 13.5px 26px;
|
||||
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
line-height: 150%;
|
||||
line-height: 162%;
|
||||
color: #6c6c6c;
|
||||
`;
|
||||
|
||||
@ -240,7 +242,8 @@ const LearnMoreLink = styled.a`
|
||||
|
||||
&:link,
|
||||
&:hover,
|
||||
&:active &:visited {
|
||||
&:active,
|
||||
&:visited {
|
||||
color: #6c6c6c;
|
||||
}
|
||||
`;
|
||||
@ -254,7 +257,7 @@ const SubContainer = styled.div`
|
||||
width: 29.9rem;
|
||||
height: 4.9rem;
|
||||
|
||||
margin-top: 5.1rem;
|
||||
margin-top: 5rem;
|
||||
margin-left: 5rem;
|
||||
|
||||
background-color: ${color.black};
|
||||
@ -267,30 +270,14 @@ const CheckContainer = styled.div`
|
||||
|
||||
font-family: "Inter", serif;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-size: 0.8rem;
|
||||
line-height: 16px;
|
||||
|
||||
text-transform: uppercase;
|
||||
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 117.5%;
|
||||
padding-left: 0.75rem;
|
||||
|
||||
color: ${color.grey["400"]};
|
||||
`;
|
||||
|
||||
const InstallLInk = styled.a`
|
||||
color: ${color.grey["400"]};
|
||||
text-decoration: underline;
|
||||
|
||||
cursor: pointer;
|
||||
`;
|
||||
|
||||
const CheckBoldText = styled.span`
|
||||
font-size: 0.8rem;
|
||||
|
||||
color: ${color.grey["100"]};
|
||||
`;
|
||||
|
||||
const CheckIconContainer = styled.div`
|
||||
position: relative;
|
||||
|
||||
|
@ -1,37 +1,38 @@
|
||||
<svg width="920" height="202" viewBox="0 0 920 202" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M149.971 78.9997V64.5897H112.021V49.1897H147.001V34.7797H112.021V19.3797H149.311V4.96969H110.151C99.9213 4.96969 95.9613 10.3597 95.9613 18.8297V65.2497C95.9613 73.7197 99.9213 78.9997 110.151 78.9997H149.971Z" fill="#DAECD5"/>
|
||||
<path d="M218.139 4.96969H158.519V19.8197H180.299V78.9997H196.359V19.8197H218.139V4.96969Z" fill="#DAECD5"/>
|
||||
<path d="M272.027 46.5497C274.007 51.1697 276.977 54.3597 280.277 56.3397V78.9997H296.337V56.2297C299.637 54.2497 302.497 51.0597 304.367 46.5497L322.407 4.96969H305.027L289.957 42.1497C289.297 43.4697 288.967 44.3497 288.307 44.3497C287.647 44.3497 287.317 43.5797 286.657 42.1497L271.477 4.96969H254.207L272.027 46.5497Z" fill="#DAECD5"/>
|
||||
<path d="M450.853 80.2097C472.853 80.2097 483.083 67.4497 483.083 46.1097V4.96969H467.023V45.7797C467.023 58.6497 461.743 64.9197 450.853 64.9197C439.963 64.9197 434.683 58.6497 434.683 45.7797V4.96969H418.623V46.1097C418.623 67.4497 428.743 80.2097 450.853 80.2097Z" fill="#DAECD5"/>
|
||||
<path d="M518.075 78.9997L518.185 55.3497H524.455C532.815 55.3497 536.005 58.9797 539.415 65.7997L546.015 78.9997H563.395L556.245 64.3697C552.395 56.6697 549.645 51.6097 544.915 48.9697C554.375 46.4397 560.315 38.6297 560.315 28.5097C560.315 12.7797 547.445 4.96969 530.725 4.96969H502.235V78.9997H518.075ZM530.945 19.8197C538.205 19.8197 543.815 22.8997 543.815 30.1597C543.815 37.0897 538.315 41.0497 530.725 41.0497H518.185L518.295 19.8197H530.945Z" fill="#DAECD5"/>
|
||||
<path d="M626.206 78.9997V24.2197L655.466 74.7097C657.886 78.7797 661.956 80.4297 666.686 80.4297C672.516 80.4297 677.906 76.2497 677.906 68.8797V4.96969H662.726V59.4197L633.466 9.25969C631.046 5.18969 627.196 3.42969 622.356 3.42969C616.306 3.42969 610.916 7.71969 610.916 15.0897V78.9997H626.206Z" fill="#DAECD5"/>
|
||||
<path d="M689.501 78.9997H705.891L710.181 63.9297L740.211 63.8197L744.501 78.9997H760.891L741.311 15.4197C738.781 7.38969 732.181 3.53969 725.141 3.53969C718.211 3.53969 711.611 7.38969 709.081 15.4197L689.501 78.9997ZM722.831 20.1497C723.271 18.6097 724.041 17.9497 725.251 17.9497C726.571 17.9497 727.231 18.6097 727.671 20.1497L736.031 49.5197H714.361L722.831 20.1497Z" fill="#DAECD5"/>
|
||||
<path d="M919.812 78.9997V64.5897H881.862V49.1897H916.842V34.7797H881.862V19.3797H919.152V4.96969H879.992C869.762 4.96969 865.802 10.3597 865.802 18.8297V65.2497C865.802 73.7197 869.762 78.9997 879.992 78.9997H919.812Z" fill="#DAECD5"/>
|
||||
<path d="M69.3608 200V145.22L98.6208 195.71C101.041 199.78 105.111 201.43 109.841 201.43C115.671 201.43 121.061 197.25 121.061 189.88V125.97H105.881V180.42L76.6208 130.26C74.2008 126.19 70.3508 124.43 65.5108 124.43C59.4608 124.43 54.0708 128.72 54.0708 136.09V200H69.3608Z" fill="#DAECD5"/>
|
||||
<path d="M179.247 189.55C180.897 197.36 186.177 201.54 192.997 201.54C199.377 201.54 204.877 197.36 206.527 190.21L217.747 141.26L229.077 189.88C230.837 197.36 236.117 201.54 242.717 201.54C249.867 201.54 254.707 197.03 256.357 189.22L269.557 125.97H253.497L242.277 184.6C242.167 184.93 242.167 185.15 242.057 185.15C241.837 185.15 241.837 185.04 241.727 184.6L230.837 137.63C228.747 128.72 224.347 124.87 217.747 124.87C211.147 124.87 206.637 128.72 204.657 137.74L193.987 184.6C193.877 185.04 193.767 185.15 193.657 185.15C193.547 185.15 193.437 185.04 193.327 184.6L181.667 125.97H165.607L179.247 189.55Z" fill="#DAECD5"/>
|
||||
<path d="M381.671 125.97H365.611V186.25C365.611 194.72 369.571 200 379.801 200H416.211V185.15H381.671V125.97Z" fill="#DAECD5"/>
|
||||
<path d="M444.399 125.97H428.339V186.25C428.339 194.72 432.299 200 442.529 200H478.939V185.15H444.399V125.97Z" fill="#DAECD5"/>
|
||||
<path d="M543.978 200V185.59H506.028V170.19H541.008V155.78H506.028V140.38H543.318V125.97H504.158C493.928 125.97 489.968 131.36 489.968 139.83V186.25C489.968 194.72 493.928 200 504.158 200H543.978Z" fill="#DAECD5"/>
|
||||
<path d="M612.146 125.97H552.526V140.82H574.306V200H590.366V140.82H612.146V125.97Z" fill="#DAECD5"/>
|
||||
<rect y="120" width="39.4428" height="40.0003" rx="19.7214" fill="#FB5232"/>
|
||||
<rect y="160" width="39.4428" height="40.0003" fill="#F4CC3E"/>
|
||||
<path d="M773 3C794.784 3 812.444 20.6595 812.444 42.4435V43.001H773V3Z" fill="#00B86E"/>
|
||||
<path d="M812.445 42.4435C812.445 20.6595 830.105 3 851.889 3V43.001H812.445V42.4435Z" fill="#FF77F3"/>
|
||||
<rect x="773" y="42.9971" width="39.4435" height="40.001" fill="#F4CC3E"/>
|
||||
<rect x="812.445" y="42.9971" width="39.4435" height="40.001" fill="#FB5232"/>
|
||||
<path d="M314.448 121C336.233 121 353.893 138.91 353.893 161.002H334.17C323.278 161.002 314.448 152.048 314.448 141.001V121Z" fill="#FF77F3"/>
|
||||
<path d="M314.448 180.999C314.448 169.953 323.278 160.998 334.17 160.998H353.893V201.001H314.448V180.999Z" fill="#00B86E"/>
|
||||
<path d="M275 161.002C275 138.91 292.66 121 314.445 121V141.001C314.445 152.048 305.615 161.002 294.722 161.002H275Z" fill="#F4CC3E"/>
|
||||
<path d="M275 160.998H294.722C305.615 160.998 314.445 169.953 314.445 180.999V201.001H275V160.998Z" fill="#5A4CFA"/>
|
||||
<path d="M408 42C408 18.804 389.196 0 366 0V20.25C366 32.2622 375.738 42 387.75 42H408Z" fill="#5A4CFA"/>
|
||||
<path d="M408 42C408 65.196 389.196 84 366 84V63.75C366 51.7378 375.738 42 387.75 42H408Z" fill="#F4CC3E"/>
|
||||
<path d="M324 42C324 18.804 342.804 0 366 0V20.25C366 32.2622 356.262 42 344.25 42H324Z" fill="#FF77F3"/>
|
||||
<path d="M324 42C324 65.196 342.804 84 366 84V63.75C366 51.7378 356.262 42 344.25 42H324Z" fill="#00B86E"/>
|
||||
<path d="M0 23C0 11.9543 8.95431 3 20 3H40V43H20C8.95431 43 0 34.0457 0 23Z" fill="#00B86E"/>
|
||||
<path d="M0 43H40V83H0V43Z" fill="#5A4CFA"/>
|
||||
<rect x="40" y="3" width="40" height="40" fill="#FF77F3"/>
|
||||
<path d="M40 43H60C71.0457 43 80 51.9543 80 63C80 74.0457 71.0457 83 60 83H40V43Z" fill="#F4CC3E"/>
|
||||
<path d="M627.496 199L623.391 184.455H626.224L628.845 195.143H628.98L631.778 184.455H634.357L637.162 195.151H637.29L639.911 184.455H642.744L638.639 199H636.04L633.128 188.794H633.014L630.095 199H627.496ZM648.606 184.455V199H645.971V184.455H648.606ZM652.22 186.663V184.455H663.826V186.663H659.33V199H656.716V186.663H652.22ZM667.463 199V184.455H670.098V190.612H676.838V184.455H679.48V199H676.838V192.821H670.098V199H667.463ZM689.112 184.455H692.088L695.646 190.889H695.788L699.347 184.455H702.322L697.031 193.574V199H694.403V193.574L689.112 184.455ZM717.765 191.727C717.765 193.295 717.472 194.637 716.885 195.754C716.302 196.867 715.507 197.719 714.498 198.311C713.495 198.903 712.356 199.199 711.082 199.199C709.809 199.199 708.667 198.903 707.659 198.311C706.655 197.714 705.86 196.86 705.273 195.747C704.69 194.63 704.399 193.29 704.399 191.727C704.399 190.16 704.69 188.82 705.273 187.707C705.86 186.59 706.655 185.735 707.659 185.143C708.667 184.552 709.809 184.256 711.082 184.256C712.356 184.256 713.495 184.552 714.498 185.143C715.507 185.735 716.302 186.59 716.885 187.707C717.472 188.82 717.765 190.16 717.765 191.727ZM715.116 191.727C715.116 190.624 714.943 189.694 714.598 188.936C714.257 188.174 713.783 187.598 713.177 187.21C712.571 186.817 711.873 186.621 711.082 186.621C710.291 186.621 709.593 186.817 708.987 187.21C708.381 187.598 707.905 188.174 707.559 188.936C707.219 189.694 707.048 190.624 707.048 191.727C707.048 192.83 707.219 193.763 707.559 194.526C707.905 195.283 708.381 195.858 708.987 196.251C709.593 196.64 710.291 196.834 711.082 196.834C711.873 196.834 712.571 196.64 713.177 196.251C713.783 195.858 714.257 195.283 714.598 194.526C714.943 193.763 715.116 192.83 715.116 191.727ZM730.826 184.455H733.461V193.957C733.461 194.999 733.214 195.915 732.722 196.706C732.234 197.497 731.548 198.115 730.662 198.56C729.777 199 728.742 199.22 727.559 199.22C726.37 199.22 725.333 199 724.448 198.56C723.562 198.115 722.876 197.497 722.388 196.706C721.9 195.915 721.657 194.999 721.657 193.957V184.455H724.291V193.737C724.291 194.343 724.424 194.883 724.689 195.357C724.959 195.83 725.338 196.202 725.826 196.472C726.313 196.737 726.891 196.869 727.559 196.869C728.226 196.869 728.804 196.737 729.291 196.472C729.784 196.202 730.163 195.83 730.428 195.357C730.693 194.883 730.826 194.343 730.826 193.737V184.455ZM737.724 199V184.455H743.179C744.296 184.455 745.234 184.649 745.992 185.037C746.754 185.425 747.329 185.97 747.717 186.67C748.11 187.366 748.307 188.179 748.307 189.107C748.307 190.039 748.108 190.849 747.71 191.536C747.317 192.217 746.737 192.745 745.97 193.119C745.203 193.489 744.261 193.673 743.144 193.673H739.259V191.486H742.788C743.442 191.486 743.977 191.396 744.394 191.216C744.81 191.031 745.118 190.764 745.317 190.413C745.52 190.058 745.622 189.623 745.622 189.107C745.622 188.59 745.52 188.15 745.317 187.786C745.113 187.416 744.803 187.137 744.386 186.947C743.97 186.753 743.432 186.656 742.774 186.656H740.359V199H737.724ZM745.239 192.409L748.84 199H745.899L742.362 192.409H745.239Z" fill="#5B5B5B"/>
|
||||
<path d="M757.854 186.663V184.455H769.459V186.663H764.963V199H762.35V186.663H757.854ZM776.157 199L772.052 184.455H774.886L777.507 195.143H777.642L780.44 184.455H783.018L785.824 195.151H785.951L788.572 184.455H791.406L787.301 199H784.701L781.79 188.794H781.676L778.757 199H776.157ZM797.268 184.455V199H794.633V184.455H797.268ZM800.882 186.663V184.455H812.487V186.663H807.992V199H805.378V186.663H800.882ZM815.485 186.663V184.455H827.09V186.663H822.595V199H819.981V186.663H815.485ZM830.728 199V184.455H840.188V186.663H833.363V190.612H839.698V192.821H833.363V196.791H840.245V199H830.728ZM844.276 199V184.455H849.731C850.848 184.455 851.786 184.649 852.543 185.037C853.305 185.425 853.881 185.97 854.269 186.67C854.662 187.366 854.858 188.179 854.858 189.107C854.858 190.039 854.66 190.849 854.262 191.536C853.869 192.217 853.289 192.745 852.522 193.119C851.755 193.489 850.813 193.673 849.695 193.673H845.81V191.486H849.34C849.993 191.486 850.528 191.396 850.945 191.216C851.362 191.031 851.67 190.764 851.868 190.413C852.072 190.058 852.174 189.623 852.174 189.107C852.174 188.59 852.072 188.15 851.868 187.786C851.665 187.416 851.355 187.137 850.938 186.947C850.521 186.753 849.984 186.656 849.326 186.656H846.911V199H844.276ZM851.79 192.409L855.391 199H852.451L848.914 192.409H851.79ZM867.68 184.455V199H865.045V184.455H867.68ZM876.862 199H871.933V184.455H876.962C878.406 184.455 879.646 184.746 880.683 185.328C881.725 185.906 882.525 186.737 883.084 187.821C883.642 188.905 883.922 190.203 883.922 191.713C883.922 193.228 883.64 194.53 883.077 195.619C882.518 196.708 881.711 197.544 880.655 198.126C879.604 198.709 878.339 199 876.862 199ZM874.568 196.72H876.734C877.747 196.72 878.593 196.536 879.27 196.166C879.947 195.792 880.456 195.236 880.797 194.497C881.138 193.754 881.308 192.826 881.308 191.713C881.308 190.6 881.138 189.677 880.797 188.943C880.456 188.205 879.952 187.653 879.284 187.288C878.621 186.919 877.797 186.734 876.812 186.734H874.568V196.72Z" fill="#03A9F4"/>
|
||||
<path d="M919 184.247C918.118 184.631 917.169 184.887 916.169 185.008C917.186 184.414 917.969 183.468 918.336 182.349C917.384 182.898 916.33 183.301 915.208 183.513C914.312 182.579 913.034 182 911.618 182C908.898 182 906.694 184.148 906.694 186.796C906.694 187.171 906.738 187.536 906.822 187.89C902.731 187.688 899.102 185.776 896.674 182.875C896.247 183.584 896.007 184.414 896.007 185.29C896.007 186.955 896.875 188.421 898.197 189.284C897.39 189.26 896.63 189.039 895.965 188.685C895.965 188.7 895.965 188.721 895.965 188.742C895.965 191.068 897.662 193.006 899.913 193.447C899.502 193.557 899.067 193.619 898.619 193.619C898.301 193.619 897.991 193.583 897.691 193.53C898.318 195.432 900.136 196.821 902.289 196.863C900.604 198.147 898.482 198.916 896.174 198.916C895.775 198.916 895.385 198.894 895 198.848C897.18 200.205 899.77 201 902.549 201C911.605 201 916.559 193.691 916.559 187.35C916.559 187.142 916.552 186.935 916.542 186.731C917.509 186.06 918.342 185.214 919 184.247Z" fill="#03A9F4"/>
|
||||
<svg width="946" height="202" viewBox="0 0 946 202" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M691.953 69.1477H690.18C690.112 68.7689 689.985 68.4356 689.8 68.1477C689.614 67.8598 689.387 67.6155 689.118 67.4148C688.849 67.214 688.548 67.0625 688.214 66.9602C687.885 66.858 687.534 66.8068 687.163 66.8068C686.493 66.8068 685.892 66.9754 685.362 67.3125C684.836 67.6496 684.419 68.1439 684.112 68.7955C683.809 69.447 683.657 70.2424 683.657 71.1818C683.657 72.1288 683.809 72.928 684.112 73.5795C684.419 74.2311 684.837 74.7235 685.368 75.0568C685.898 75.3902 686.495 75.5568 687.157 75.5568C687.525 75.5568 687.873 75.5076 688.203 75.4091C688.536 75.3068 688.837 75.1572 689.106 74.9602C689.375 74.7633 689.603 74.5227 689.788 74.2386C689.978 73.9508 690.108 73.6212 690.18 73.25L691.953 73.2557C691.858 73.8277 691.675 74.3542 691.402 74.8352C691.133 75.3125 690.786 75.7254 690.362 76.0739C689.942 76.4186 689.461 76.6856 688.919 76.875C688.377 77.0644 687.786 77.1591 687.146 77.1591C686.139 77.1591 685.241 76.9205 684.453 76.4432C683.665 75.9621 683.044 75.2746 682.589 74.3807C682.139 73.4867 681.913 72.4205 681.913 71.1818C681.913 69.9394 682.14 68.8731 682.595 67.983C683.05 67.089 683.671 66.4034 684.459 65.9261C685.247 65.4451 686.142 65.2045 687.146 65.2045C687.764 65.2045 688.339 65.2936 688.873 65.4716C689.411 65.6458 689.894 65.9034 690.322 66.2443C690.75 66.5814 691.104 66.9943 691.385 67.483C691.665 67.9678 691.854 68.5227 691.953 69.1477ZM696.256 65.3636V77H694.557V65.3636H696.256ZM700.301 77H698.437L702.625 65.3636H704.653L708.841 77H706.977L703.687 67.4773H703.597L700.301 77ZM700.614 72.4432H706.659V73.9205H700.614V72.4432ZM712.917 65.3636V77H711.161V65.3636H712.917ZM716.114 65.3636H718.244L721.949 74.4091H722.085L725.79 65.3636H727.921V77H726.25V68.5795H726.142L722.71 76.983H721.324L717.892 68.5739H717.784V77H716.114V65.3636ZM738.266 77L735.039 65.3636H736.885L739.152 74.375H739.26L741.618 65.3636H743.448L745.806 74.3807H745.914L748.175 65.3636H750.027L746.794 77H745.027L742.578 68.2841H742.488L740.039 77H738.266ZM754.024 65.3636V77H752.268V65.3636H754.024ZM756.647 66.875V65.3636H765.652V66.875H762.022V77H760.272V66.875H756.647ZM768.283 77V65.3636H770.038V70.4205H775.839V65.3636H777.601V77H775.839V71.9261H770.038V77H768.283ZM785.098 66.875V65.3636H794.104V66.875H790.473V77H788.723V66.875H785.098ZM799.012 77L795.785 65.3636H797.632L799.899 74.375H800.007L802.364 65.3636H804.194L806.552 74.3807H806.66L808.921 65.3636H810.774L807.541 77H805.774L803.325 68.2841H803.234L800.785 77H799.012ZM814.77 65.3636V77H813.014V65.3636H814.77ZM817.393 66.875V65.3636H826.399V66.875H822.768V77H821.018V66.875H817.393ZM828.455 66.875V65.3636H837.461V66.875H833.83V77H832.08V66.875H828.455ZM840.091 77V65.3636H847.386V66.875H841.846V70.4205H847.005V71.9261H841.846V75.4886H847.454V77H840.091ZM850.371 77V65.3636H854.519C855.421 65.3636 856.169 65.5189 856.763 65.8295C857.362 66.1402 857.809 66.5701 858.104 67.1193C858.4 67.6648 858.547 68.2955 858.547 69.0114C858.547 69.7235 858.398 70.3504 858.099 70.892C857.803 71.4299 857.356 71.8485 856.758 72.1477C856.163 72.447 855.415 72.5966 854.513 72.5966H851.371V71.0852H854.354C854.922 71.0852 855.385 71.0038 855.741 70.8409C856.1 70.678 856.364 70.4413 856.53 70.1307C856.697 69.8201 856.78 69.447 856.78 69.0114C856.78 68.572 856.695 68.1913 856.525 67.8693C856.358 67.5473 856.095 67.3011 855.735 67.1307C855.379 66.9564 854.911 66.8693 854.332 66.8693H852.127V77H850.371ZM856.116 71.75L858.991 77H856.991L854.172 71.75H856.116Z" fill="#5B5B5B"/>
|
||||
<path d="M891.544 65.2736C890.826 65.5767 890.054 65.779 889.24 65.8747C890.067 65.406 890.704 64.6586 891.003 63.7757C890.229 64.2086 889.37 64.5267 888.457 64.6943C887.728 63.9572 886.688 63.5 885.535 63.5C883.322 63.5 881.527 65.1955 881.527 67.2862C881.527 67.5821 881.564 67.8702 881.632 68.15C878.302 67.9907 875.348 66.4814 873.372 64.191C873.025 64.7507 872.83 65.406 872.83 66.0976C872.83 67.4119 873.535 68.569 874.612 69.2507C873.955 69.2316 873.336 69.0572 872.795 68.7779C872.795 68.7893 872.795 68.8064 872.795 68.8224C872.795 70.6591 874.177 72.1886 876.008 72.5367C875.674 72.6241 875.32 72.6728 874.955 72.6728C874.697 72.6728 874.444 72.6448 874.2 72.6029C874.71 74.104 876.19 75.201 877.943 75.2336C876.571 76.2474 874.844 76.8547 872.965 76.8547C872.641 76.8547 872.323 76.8371 872.01 76.8009C873.785 77.8721 875.892 78.5 878.154 78.5C885.525 78.5 889.557 72.7297 889.557 67.7238C889.557 67.5598 889.551 67.3964 889.543 67.235C890.33 66.7053 891.008 66.0371 891.544 65.2736Z" fill="#03A9F4"/>
|
||||
<path d="M516.01 0.916016C536.72 0.916016 553.509 17.7049 553.509 38.4151V38.9452H516.01V0.916016Z" fill="#00B86E"/>
|
||||
<path d="M553.511 38.4151C553.511 17.7049 570.3 0.916016 591.01 0.916016V38.9452H553.511V38.4151Z" fill="#FF77F3"/>
|
||||
<rect x="516.01" y="38.9414" width="37.4991" height="38.0292" fill="#F4CC3E"/>
|
||||
<rect x="553.511" y="38.9414" width="37.4991" height="38.0292" fill="#FB5232"/>
|
||||
<path d="M155.51 41.5C155.51 18.5802 136.93 0 114.01 0V19.75C114.01 31.7622 123.748 41.5 135.76 41.5H155.51Z" fill="#5A4CFA"/>
|
||||
<path d="M155.51 41.5C155.51 64.4198 136.93 83 114.01 83V63.25C114.01 51.2378 123.748 41.5 135.76 41.5H155.51Z" fill="#F4CC3E"/>
|
||||
<path d="M72.5098 41.5C72.5098 18.5802 91.0899 0 114.01 0V19.75C114.01 31.7622 104.272 41.5 92.2598 41.5H72.5098Z" fill="#FF77F3"/>
|
||||
<path d="M72.5098 41.5C72.5098 64.4198 91.0899 83 114.01 83V63.25C114.01 51.2378 104.272 41.5 92.2598 41.5H72.5098Z" fill="#00B86E"/>
|
||||
<path d="M17.82 44.5497C19.8 49.1697 22.77 52.3597 26.07 54.3397V76.9997H42.13V54.2297C45.43 52.2497 48.29 49.0597 50.16 44.5497L68.2 2.96969H50.82L35.75 40.1497C35.09 41.4697 34.76 42.3497 34.1 42.3497C33.44 42.3497 33.11 41.5797 32.45 40.1497L17.27 2.96969H0L17.82 44.5497Z" fill="#DAECD5"/>
|
||||
<path d="M199.842 78.2097C221.842 78.2097 232.072 65.4497 232.072 44.1097V2.96969H216.012V43.7797C216.012 56.6497 210.732 62.9197 199.842 62.9197C188.952 62.9197 183.672 56.6497 183.672 43.7797V2.96969H167.612V44.1097C167.612 65.4497 177.732 78.2097 199.842 78.2097Z" fill="#DAECD5"/>
|
||||
<path d="M265.889 76.9997L265.999 53.3497H272.269C280.629 53.3497 283.819 56.9797 287.229 63.7997L293.829 76.9997H311.209L304.059 62.3697C300.209 54.6697 297.459 49.6097 292.729 46.9697C302.189 44.4397 308.129 36.6297 308.129 26.5097C308.129 10.7797 295.259 2.96969 278.539 2.96969H250.049V76.9997H265.889ZM278.759 17.8197C286.019 17.8197 291.629 20.8997 291.629 28.1597C291.629 35.0897 286.129 39.0497 278.539 39.0497H265.999L266.109 17.8197H278.759Z" fill="#DAECD5"/>
|
||||
<path d="M371.668 76.9997V22.2197L400.928 72.7097C403.348 76.7797 407.418 78.4297 412.148 78.4297C417.978 78.4297 423.368 74.2497 423.368 66.8797V2.96969H408.188V57.4197L378.928 7.25969C376.508 3.18969 372.658 1.42969 367.818 1.42969C361.768 1.42969 356.378 5.71969 356.378 13.0897V76.9997H371.668Z" fill="#DAECD5"/>
|
||||
<path d="M434.787 76.9997H451.177L455.467 61.9297L485.497 61.8197L489.787 76.9997H506.177L486.597 13.4197C484.067 5.38969 477.467 1.53969 470.427 1.53969C463.497 1.53969 456.897 5.38969 454.367 13.4197L434.787 76.9997ZM468.117 18.1497C468.557 16.6097 469.327 15.9497 470.537 15.9497C471.857 15.9497 472.517 16.6097 472.957 18.1497L481.317 47.5197H459.647L468.117 18.1497Z" fill="#DAECD5"/>
|
||||
<path d="M658.406 76.9997V62.5897H620.456V47.1897H655.436V32.7797H620.456V17.3797H657.746V2.96969H618.586C608.356 2.96969 604.396 8.35969 604.396 16.8297V63.2497C604.396 71.7197 608.356 76.9997 618.586 76.9997H658.406Z" fill="#DAECD5"/>
|
||||
<path d="M24.2 200V174.92H58.74V160.18H24.2V140.82H61.27V125.97H22.33C12.21 125.97 8.14 131.36 8.14 139.83V200H24.2Z" fill="#DAECD5"/>
|
||||
<path d="M106.673 201.43C128.562 201.43 145.283 184.93 145.283 163.04C145.283 141.26 128.673 124.65 106.673 124.65C84.7825 124.65 68.1725 141.26 68.1725 163.04C68.1725 184.93 84.7825 201.43 106.673 201.43ZM106.673 186.25C94.3525 186.25 84.6725 176.13 84.6725 163.04C84.6725 149.95 94.3525 139.83 106.673 139.83C119.103 139.83 128.673 149.95 128.673 163.04C128.673 176.13 118.993 186.25 106.673 186.25Z" fill="#DAECD5"/>
|
||||
<path d="M171.711 200L171.821 176.35H178.091C186.451 176.35 189.641 179.98 193.051 186.8L199.651 200H217.031L209.881 185.37C206.031 177.67 203.281 172.61 198.551 169.97C208.011 167.44 213.951 159.63 213.951 149.51C213.951 133.78 201.081 125.97 184.361 125.97H155.871V200H171.711ZM184.581 140.82C191.841 140.82 197.451 143.9 197.451 151.16C197.451 158.09 191.951 162.05 184.361 162.05H171.821L171.931 140.82H184.581Z" fill="#DAECD5"/>
|
||||
<path d="M324.979 199.395V144.742L354.171 195.115C356.585 199.176 360.646 200.822 365.365 200.822C371.182 200.822 376.559 196.651 376.559 189.299V125.536H361.414V179.86L332.222 129.817C329.808 125.756 325.966 124 321.138 124C315.102 124 309.724 128.28 309.724 135.633V199.395H324.979Z" fill="#DAECD5"/>
|
||||
<path d="M445.739 125.536H386.257V140.352H407.987V199.395H424.009V140.352H445.739V125.536Z" fill="#DAECD5"/>
|
||||
<path d="M510.082 199.395V185.018H472.219V169.654H507.118V155.277H472.219V139.913H509.423V125.536H470.354C460.147 125.536 456.197 130.914 456.197 139.364V185.677C456.197 194.127 460.147 199.395 470.354 199.395H510.082Z" fill="#DAECD5"/>
|
||||
<path d="M639.731 200.932C652.571 200.932 664.863 194.127 670.35 182.604L657.29 175.251C653.888 181.616 647.962 185.677 639.073 185.677C626.671 185.677 617.892 175.91 617.892 162.521C617.892 149.132 626.781 139.364 639.073 139.364C647.962 139.364 653.669 143.425 657.29 149.79L670.35 142.437C664.863 130.914 652.571 124.11 639.731 124.11C618.221 124.11 601.43 141.12 601.43 162.521C601.43 183.921 618.221 200.932 639.731 200.932Z" fill="#DAECD5"/>
|
||||
<path d="M697.76 199.395V169.983H731.452V199.395H747.475V125.536H731.452V155.277H697.76V125.536H681.737V199.395H697.76Z" fill="#DAECD5"/>
|
||||
<path d="M843.719 125.536V199.395H859.742V125.536H843.719Z" fill="#DAECD5"/>
|
||||
<path d="M893.894 199.395V144.742L923.086 195.115C925.5 199.176 929.561 200.822 934.28 200.822C940.097 200.822 945.474 196.651 945.474 189.299V125.536H930.329V179.86L901.137 129.817C898.723 125.756 894.882 124 890.053 124C884.017 124 878.639 128.28 878.639 135.633V199.395H893.894Z" fill="#DAECD5"/>
|
||||
<path d="M522.01 125.018H559.547V162.555H522.01V125.018Z" fill="#FB5232"/>
|
||||
<path d="M522.01 162.554H559.547V200.091H522.01V162.554Z" fill="#F4CC3E"/>
|
||||
<path d="M559.548 125.018H578.317C588.682 125.018 597.085 133.421 597.085 143.786C597.085 154.152 588.682 162.555 578.317 162.555H559.548V125.018Z" fill="#00B86E"/>
|
||||
<path d="M559.548 162.554L597.085 200.091H559.548V162.554Z" fill="#5A4CFA"/>
|
||||
<path d="M796.354 124.018C817.169 124.018 834.044 140.892 834.044 161.707H815.199C804.791 161.707 796.354 153.27 796.354 142.862V124.018Z" fill="#FF77F3"/>
|
||||
<path d="M796.354 180.551C796.354 170.143 804.791 161.706 815.199 161.706H834.044V199.396H796.354V180.551Z" fill="#00B86E"/>
|
||||
<path d="M758.664 161.707C758.664 140.892 775.538 124.018 796.353 124.018V142.862C796.353 153.27 787.916 161.707 777.508 161.707H758.664Z" fill="#F4CC3E"/>
|
||||
<path d="M758.664 161.706H777.508C787.916 161.706 796.353 170.143 796.353 180.551V199.396H758.664V161.706Z" fill="#5A4CFA"/>
|
||||
<rect x="259.005" y="124.019" width="37.9915" height="37.9915" rx="18.9957" fill="#FB5232"/>
|
||||
<rect x="259.005" y="162.01" width="37.9915" height="37.9915" fill="#F4CC3E"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 11 KiB |
Loading…
Reference in New Issue
Block a user