Add project files.
This commit is contained in:
35
TaxPayerFull/App.razor
Normal file
35
TaxPayerFull/App.razor
Normal file
@@ -0,0 +1,35 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||||
</Found>
|
||||
<NotFound>
|
||||
<PageTitle>Not found</PageTitle>
|
||||
<LayoutView Layout="@typeof(MainLayout)">
|
||||
<main>
|
||||
<div class="tp-error-area tp-error-ptb p-relative">
|
||||
<div class="tp-error-left-shape">
|
||||
<img src="img/login/error-shape.png" alt="">
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="tp-error-content-box text-center mb-40">
|
||||
<img src="img/login/text-404.png" alt="">
|
||||
</div>
|
||||
<div class="tp-error-text-box text-center">
|
||||
<h4 class="error-title-sm">صفحه پیدا نشد</h4>
|
||||
<p>صفحه ای که به دنبال آن هستید، یافت نشد</p>
|
||||
<a class="tp-btn-inner tp-btn-hover alt-color-black" href="#">
|
||||
<span> برگشت به صفحه اصلی</span>
|
||||
<b style="top: -8.02078px; left: 116.625px;"></b>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</LayoutView>
|
||||
</NotFound>
|
||||
</Router>
|
14
TaxPayerFull/Front.csproj
Normal file
14
TaxPayerFull/Front.csproj
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.3" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.3" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
110
TaxPayerFull/Layout/Blog.razor
Normal file
110
TaxPayerFull/Layout/Blog.razor
Normal file
@@ -0,0 +1,110 @@
|
||||
<div class="tp-project__area grey-bg pt-50 pb-50 fix" id="blog">
|
||||
<div class="blog-grid-inner mb-10">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="popular-blog-title mb-40 text-center">
|
||||
<h4>آخرین پست ها</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-6 col-md-6 mb-30">
|
||||
<div class="tp-blog-item">
|
||||
<div class="tp-blog-thumb fix">
|
||||
<a href="blog-details.html"><img src="img/blog/blog-grid-1.jpg" alt=""></a>
|
||||
</div>
|
||||
<div class="tp-blog-content">
|
||||
<div class="tp-blog-meta d-flex align-items-center">
|
||||
<div class="tp-blog-category category-color-1">
|
||||
<span>نرم افزار مدیریت</span>
|
||||
</div>
|
||||
<div class="tp-blog-date">
|
||||
<span>28 آذر, 1402</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-blog-title-box">
|
||||
<a class="tp-blog-title-sm" href="blog-details.html">سال حرفه ای 2023 در حال بررسی</a>
|
||||
</div>
|
||||
<div class="tp-blog-author-info-box d-flex align-items-center">
|
||||
<div class="tp-blog-avata">
|
||||
<img src="img/avata/avata-1.png" alt="">
|
||||
</div>
|
||||
<div class="tp-blog-author-info">
|
||||
<h5>محمد محمدی</h5>
|
||||
<span>مدیر سایت</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-6 col-md-6 mb-30">
|
||||
<div class="tp-blog-item">
|
||||
<div class="tp-blog-thumb fix">
|
||||
<a href="blog-details.html"><img src="img/blog/blog-grid-2.jpg" alt=""></a>
|
||||
</div>
|
||||
<div class="tp-blog-content">
|
||||
<div class="tp-blog-meta d-flex align-items-center">
|
||||
<div class="tp-blog-category category-color-1">
|
||||
<span>نرم افزار مدیریت</span>
|
||||
</div>
|
||||
<div class="tp-blog-date">
|
||||
<span>28 آذر, 1402</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-blog-title-box">
|
||||
<a class="tp-blog-title-sm" href="blog-details.html">بهترین استفاده از بازخورد</a>
|
||||
</div>
|
||||
<div class="tp-blog-author-info-box d-flex align-items-center">
|
||||
<div class="tp-blog-avata">
|
||||
<img src="img/avata/avata-2.png" alt="">
|
||||
</div>
|
||||
<div class="tp-blog-author-info">
|
||||
<h5>محمد محمدی</h5>
|
||||
<span>مدیر سایت</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-6 col-md-6 mb-30">
|
||||
<div class="tp-blog-item">
|
||||
<div class="tp-blog-thumb fix">
|
||||
<a href="#"><img src="img/blog/blog-grid-3.jpg" alt=""></a>
|
||||
</div>
|
||||
<div class="tp-blog-content">
|
||||
<div class="tp-blog-meta d-flex align-items-center">
|
||||
<div class="tp-blog-category category-color-1">
|
||||
<span>نرم افزار مدیریت=</span>
|
||||
</div>
|
||||
<div class="tp-blog-date">
|
||||
<span>28 آذر, 1402</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-blog-title-box">
|
||||
<a class="tp-blog-title-sm" href="blog-details.html">
|
||||
مدیریت پروژه در <br> در دسترس
|
||||
شماست.
|
||||
</a>
|
||||
</div>
|
||||
<div class="tp-blog-author-info-box d-flex align-items-center">
|
||||
<div class="tp-blog-avata">
|
||||
<img src="img/avata/avata-3.png" alt="">
|
||||
</div>
|
||||
<div class="tp-blog-author-info">
|
||||
<h5>محمد محمدی</h5>
|
||||
<span>مدیر سایت</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a href="">ادامه...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
95
TaxPayerFull/Layout/Contact.razor
Normal file
95
TaxPayerFull/Layout/Contact.razor
Normal file
@@ -0,0 +1,95 @@
|
||||
<div class="contact-info-area pb-90" id="contact">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-form-area pb-120">
|
||||
<div class="container">
|
||||
<div class="row gx-0">
|
||||
<div class="col-xl-5 col-lg-6">
|
||||
<div class="contact-form-left">
|
||||
<div class="contact-form-section-box pb-80">
|
||||
<h5 class="inner-section-subtitle">ارتباط با ما</h5>
|
||||
<h4 class="tp-section-title pb-10">
|
||||
ما مشتاقانه منتظر <br> نظرات شما هستیم
|
||||
|
||||
</h4>
|
||||
</div>
|
||||
<div class="contact-form-social-box p-relative">
|
||||
|
||||
<div class="contact-form-section-img">
|
||||
<img src="img/contact/contact-icon-sm-4.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-7 col-lg-6">
|
||||
<div class="contact-form-right-warp">
|
||||
<div class="postbox__comment-form">
|
||||
<form action="#" class="box">
|
||||
<div class="row gx-20">
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">نام شما</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">ایمیل شما</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-35">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">شماره تماس</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__select mb-30">
|
||||
<select style="display: none;">
|
||||
<option>موضوع</option>
|
||||
<option>موضوع 1</option>
|
||||
<option>موضوع 2</option>
|
||||
<option>موضوع 3</option>
|
||||
<option>موضوع 4</option>
|
||||
<option>موضوع 5</option>
|
||||
</select>
|
||||
<div class="nice-select" tabindex="0">
|
||||
<span class="current">موضوع</span>
|
||||
<ul class="list">
|
||||
<li data-value="موضوع" class="option selected">موضوع</li>
|
||||
<li data-value="موضوع 1" class="option">موضوع 1</li>
|
||||
<li data-value="موضوع 2" class="option">موضوع 2</li>
|
||||
<li data-value="موضوع 3" class="option">موضوع 3</li>
|
||||
<li data-value="موضوع 4" class="option">موضوع 4</li>
|
||||
<li data-value="موضوع 5" class="option">موضوع 5</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xxl-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<textarea class="textareaText" required=""></textarea>
|
||||
<span class="floating-label-2">پیام شما ...</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xxl-12">
|
||||
<div class="postbox__btn-box">
|
||||
<button class="submit-btn w-100">ارسال پیام</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
130
TaxPayerFull/Layout/Lfooter.razor
Normal file
130
TaxPayerFull/Layout/Lfooter.razor
Normal file
@@ -0,0 +1,130 @@
|
||||
<footer class="pb-50">
|
||||
<!-- tp-footer-area-start -->
|
||||
<div class="tp-footer__pl-pr p-relative">
|
||||
<div class="footer-black-bg tp-gsap-bg" style="translate: none; rotate: none; scale: none; transform: scale(0.95, 1); transform-origin: 50% 50%; border-radius: 30px;"></div>
|
||||
<div class="tp-footer__area pt-50">
|
||||
<div class="container">
|
||||
|
||||
<div class="tp-footer__top-space">
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-4 col-md-7 pb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".5s">
|
||||
<div class="tp-footer__widget footer-col-1">
|
||||
<a href="index-2.html" class="tp-footer__widget-logo mb-10">
|
||||
<img src="img/logo/logo-white.png" alt="">
|
||||
</a>
|
||||
<div class="tp-footer__text">
|
||||
<p>
|
||||
تیم توسعه بسیار ماهر <br> متخصص در تجزیه و تحلیل داده ها
|
||||
</p>
|
||||
</div>
|
||||
<div class="tp-footer__social">
|
||||
<a href="#"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href="#"><i class="fab fa-twitter"></i></a>
|
||||
<a href="#"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="#"><i class="fab fa-vimeo-v"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-3 col-lg-3 col-md-5 pb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".7s">
|
||||
<div class="tp-footer__widget footer-col-2">
|
||||
<h4 class="tp-footer__widget-title">سایت های مرتبط</h4>
|
||||
<div class="tp-footer__content">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://www.intamedia.ir/">
|
||||
پورتال رسمی سازمان امور مالیاتی کشور
|
||||
</a>
|
||||
</li>
|
||||
<li><a href="https://my.tax.gov.ir/?url_back=https://tp.tax.gov.ir">درگاه ملی خدمات الکترونیک سازمان امور مالیاتی کشور</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-2 col-lg-2 col-md-6 pb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".9s">
|
||||
<div class="tp-footer__widget footer-col-3">
|
||||
<h4 class="tp-footer__widget-title">مسیر سایت</h4>
|
||||
<div class="tp-footer__content">
|
||||
<ul>
|
||||
<li><a href="#">صفحه اصلی</a></li>
|
||||
<li><a href="#">وبلاگ</a></li>
|
||||
<li><a href="#">ابزار</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-3 col-lg-3 col-md-6 pb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay="1s">
|
||||
<div class="tp-footer__widget footer-col-4">
|
||||
<h4 class="tp-footer__widget-title">ارتباط با ما</h4>
|
||||
<div class="tp-footer__contact-info tp-footer__icon-space">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="22" height="22" viewBox="0 0 26 26" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.332 1C14.332 1 17.2651 1.26664 20.9981 4.99966C24.7311 8.73267 24.9978 11.6658 24.9978 11.6658"
|
||||
stroke="#FF3C82" stroke-width="2" stroke-linecap="round" />
|
||||
<path d="M14.6079 5.71289C14.6079 5.71289 15.9277 6.08998 17.9075 8.06971C19.8872 10.0494 20.2643 11.3693 20.2643 11.3693"
|
||||
stroke="#FF3C82" stroke-width="2" stroke-linecap="round" />
|
||||
<path opacity="0.5"
|
||||
d="M9.04943 5.42369L9.91471 6.97413C10.6956 8.37332 10.3821 10.2088 9.15225 11.4387C9.15225 11.4387 9.15225 11.4387 9.15225 11.4387C9.15213 11.4388 7.66057 12.9306 10.3652 15.6352C13.0692 18.3392 14.561 16.849 14.5618 16.8482C14.5618 16.8482 14.5618 16.8482 14.5618 16.8482C15.7917 15.6183 17.6271 15.3049 19.0263 16.0857L20.5768 16.951C22.6896 18.1301 22.9391 21.0931 21.082 22.9502C19.9661 24.0661 18.599 24.9344 17.0878 24.9917C14.5439 25.0882 10.2236 24.4443 5.88985 20.1106C1.55612 15.7769 0.912294 11.4566 1.00873 8.91261C1.06602 7.40143 1.93432 6.03439 3.05023 4.91848C4.90734 3.06137 7.87031 3.31089 9.04943 5.42369Z"
|
||||
stroke="#FF3C82" stroke-width="2" stroke-linecap="round" />
|
||||
</svg>
|
||||
</span>
|
||||
<a href="tel:09121234567">09121234567</a>
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 10.2797 1.30049 11.4893 1.83477 12.562C1.97675 12.847 2.02401 13.1729 1.94169 13.4805L1.46521 15.2613C1.25836 16.0344 1.96561 16.7416 2.73868 16.5348L4.51951 16.0583C4.82715 15.976 5.15297 16.0233 5.43802 16.1652C6.51069 16.6995 7.72025 17 9 17Z"
|
||||
stroke="#FF3C82" stroke-width="1.5" />
|
||||
<path opacity="0.5" d="M5.7998 7.80078H12.1998" stroke="#FF3C82"
|
||||
stroke-width="1.5" stroke-linecap="round" />
|
||||
<path opacity="0.5" d="M5.7998 10.6006H10.1998" stroke="#FF3C82"
|
||||
stroke-width="1.5" stroke-linecap="round" />
|
||||
</svg>
|
||||
</span>
|
||||
<a href="mailto:contact@info.com">contact@info.com</a>
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5"
|
||||
d="M3.7002 6.86317C3.7002 3.62503 6.5208 1 10.0002 1C13.4796 1 16.3002 3.62503 16.3002 6.86317C16.3002 10.0759 14.2895 13.8249 11.1523 15.1656C10.4209 15.4781 9.57947 15.4781 8.84814 15.1656C5.71094 13.8249 3.7002 10.0759 3.7002 6.86317Z"
|
||||
stroke="#FF3C82" stroke-width="1.5" />
|
||||
<path d="M11.8002 7.3C11.8002 8.29411 10.9943 9.1 10.0002 9.1C9.00608 9.1 8.2002 8.29411 8.2002 7.3C8.2002 6.30589 9.00608 5.5 10.0002 5.5C10.9943 5.5 11.8002 6.30589 11.8002 7.3Z"
|
||||
stroke="#FF3C82" stroke-width="1.5" />
|
||||
<path d="M18.0645 13.1504C18.6633 13.6926 19 14.3038 19 14.9504C19 17.1871 14.9706 19.0004 10 19.0004C5.02944 19.0004 1 17.1871 1 14.9504C1 14.3038 1.33671 13.6926 1.93552 13.1504"
|
||||
stroke="#FF3C82" stroke-width="1.5" stroke-linecap="round" />
|
||||
</svg>
|
||||
</span>
|
||||
<a target="_blank">ایران، تهران، آزادی</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-copyright__area pt-20 pb-20">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".7s">
|
||||
<div class="tp-copyright__text">
|
||||
<span>کپی رایت با <a href="#">مهدی</a> – 2023</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-footer-area-end -->
|
||||
</footer>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
9
TaxPayerFull/Layout/Lheader.razor
Normal file
9
TaxPayerFull/Layout/Lheader.razor
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
<header class="header-bottom__transparent z-index-6 tp-header-height">
|
||||
<Lheadertop />
|
||||
<Lheaderbottom />
|
||||
</header>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
66
TaxPayerFull/Layout/Lheaderbottom.razor
Normal file
66
TaxPayerFull/Layout/Lheaderbottom.razor
Normal file
@@ -0,0 +1,66 @@
|
||||
<div id="header-sticky" class="header-bottom__area header-mob-space header-bottom__area-2 header-bottom__transparent z-index-5">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-xxl-2 col-xl-2 col-lg-2 col-md-4 col-6">
|
||||
<div class="header-bottom__logo">
|
||||
<a href="index.html"><img height="37" src="img/logo/logo-black.png" alt=""></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xxl-6 col-xl-5 col-lg-5 d-none d-lg-block">
|
||||
<div class="header-bottom__main-menu">
|
||||
<nav id="mobile-menu">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#about">درباره محصول</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#services">خدمات</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#price">تعرفه</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#blog">وبلاگ</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="#">ابزار</a>
|
||||
</li>
|
||||
<li><a href="#contact">ارتباط با ما</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xxl-4 col-xl-5 col-lg-5 col-md-8 col-6">
|
||||
<div class="header-bottom__right d-flex align-items-center justify-content-end">
|
||||
<div class="header-bottom__btn d-flex align-items-center">
|
||||
<NavLink class="tp-btn-white" href="Register">
|
||||
<span>ثبت نام</span>
|
||||
<b></b>
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="header-bottom__action">
|
||||
<NavLink class="d-none d-lg-inline-block last-child" href="Sign-in">
|
||||
|
||||
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7 8C8.92882 8 10.4924 6.433 10.4924 4.5C10.4924 2.567 8.92882 1 7 1C5.07118 1 3.50757 2.567 3.50757 4.5C3.50757 6.433 5.07118 8 7 8Z"
|
||||
stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
||||
stroke-linejoin="round" />
|
||||
<path d="M13 15C13 12.291 10.3108 10.1 7 10.1C3.68917 10.1 1 12.291 1 15"
|
||||
stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
|
||||
stroke-linejoin="round" />
|
||||
</svg>
|
||||
<span>ورود</span>
|
||||
</NavLink>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@code {
|
||||
|
||||
}
|
160
TaxPayerFull/Layout/Lheadertop.razor
Normal file
160
TaxPayerFull/Layout/Lheadertop.razor
Normal file
@@ -0,0 +1,160 @@
|
||||
@using System.Globalization
|
||||
<!-- header top area -->
|
||||
<div class="header-top__area header-top__space z-index-3 d-none d-md-block tp-header-top-animation">
|
||||
<div class="container">
|
||||
<div class="row align-items-start">
|
||||
<div class="col-6">
|
||||
<div class="header-top__link">
|
||||
<span>امروز <i>@GetTodyPersianDatetime()</i></span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="header-top__support text-end">
|
||||
<span>پیشتیبانی: <a href="tel:+989121234569">09121234567</a></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- header bottom -->
|
||||
|
||||
@code {
|
||||
|
||||
}
|
||||
@functions{
|
||||
public static string GetTodyPersianDatetime()
|
||||
{
|
||||
PersianCalendar pcDate = new PersianCalendar();
|
||||
int persianYear = pcDate.GetYear(DateTime.Now);
|
||||
int persianMonth = pcDate.GetMonth(DateTime.Now);
|
||||
int persianDay = pcDate.GetDayOfMonth(DateTime.Now);
|
||||
|
||||
string _DayOfWeek = "";
|
||||
switch (DateTime.Now.DayOfWeek)
|
||||
{
|
||||
case DayOfWeek.Saturday:
|
||||
_DayOfWeek = " شنبه ";
|
||||
break;
|
||||
case DayOfWeek.Sunday:
|
||||
_DayOfWeek = " یکشنبه ";
|
||||
break;
|
||||
case DayOfWeek.Monday:
|
||||
_DayOfWeek = " دوشنبه ";
|
||||
break;
|
||||
case DayOfWeek.Tuesday:
|
||||
_DayOfWeek = " سه شنبه ";
|
||||
break;
|
||||
case DayOfWeek.Wednesday:
|
||||
_DayOfWeek = " چهارشنبه ";
|
||||
break;
|
||||
case DayOfWeek.Thursday:
|
||||
_DayOfWeek = " پنج شنبه ";
|
||||
break;
|
||||
case DayOfWeek.Friday:
|
||||
_DayOfWeek = " جمـــعه ";
|
||||
break;
|
||||
}
|
||||
string _Day = "";
|
||||
switch (persianDay)
|
||||
{
|
||||
case 1:
|
||||
_Day = " اول ";
|
||||
break;
|
||||
case 2:
|
||||
_Day = " دوم ";
|
||||
break;
|
||||
case 3:
|
||||
_Day = " سوم ";
|
||||
break;
|
||||
case 4:
|
||||
_Day = " چهارم ";
|
||||
break;
|
||||
case 5:
|
||||
_Day = " پنجم ";
|
||||
break;
|
||||
case 6:
|
||||
_Day = " ششم ";
|
||||
break;
|
||||
case 7:
|
||||
_Day = " هفتم ";
|
||||
break;
|
||||
case 8:
|
||||
_Day = " هشتم ";
|
||||
break;
|
||||
case 9:
|
||||
_Day = " نهم ";
|
||||
break;
|
||||
case 10:
|
||||
_Day = " دهم ";
|
||||
break;
|
||||
case 11:
|
||||
_Day = " یازدهم ";
|
||||
break;
|
||||
case 12:
|
||||
_Day = " دوازدهم ";
|
||||
break;
|
||||
case 13:
|
||||
_Day = " سیزدهم ";
|
||||
break;
|
||||
case 14:
|
||||
_Day = " چهاردهم ";
|
||||
break;
|
||||
case 15:
|
||||
_Day = " پانزدهم ";
|
||||
break;
|
||||
case 16:
|
||||
_Day = " شانزدهم ";
|
||||
break;
|
||||
default:
|
||||
_Day = persianDay.ToString();
|
||||
break;
|
||||
}
|
||||
string _Month = "";
|
||||
switch (persianMonth)
|
||||
{
|
||||
case 1:
|
||||
_Month = " فروردین ";
|
||||
break;
|
||||
case 2:
|
||||
_Month = " اردیبهشت ";
|
||||
break;
|
||||
case 3:
|
||||
_Month = " خرداد ";
|
||||
break;
|
||||
case 4:
|
||||
_Day = " تیر ";
|
||||
break;
|
||||
case 5:
|
||||
_Month = " مرداد ";
|
||||
break;
|
||||
case 6:
|
||||
_Month = " شهریور ";
|
||||
break;
|
||||
case 7:
|
||||
_Month = " مهر ";
|
||||
break;
|
||||
case 8:
|
||||
_Month = " آبان ";
|
||||
break;
|
||||
case 9:
|
||||
_Month = " آذر ";
|
||||
break;
|
||||
case 10:
|
||||
_Month = " دی ";
|
||||
break;
|
||||
case 11:
|
||||
_Month = " بهمن ";
|
||||
break;
|
||||
case 12:
|
||||
_Month = " اسفند ";
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
|
||||
string fullPersianDate = _DayOfWeek + " " + _Day + " " + _Month + " ماه " + persianYear;
|
||||
return fullPersianDate;
|
||||
}
|
||||
}
|
32
TaxPayerFull/Layout/MainLayout.razor
Normal file
32
TaxPayerFull/Layout/MainLayout.razor
Normal file
@@ -0,0 +1,32 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<HeadContent>
|
||||
<!-- Place favicon.ico in the root directory -->
|
||||
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
|
||||
|
||||
<!-- CSS here -->
|
||||
<link rel="stylesheet" href="css/bootstrap.rtl.min.css">
|
||||
<link rel="stylesheet" href="css/animate.css">
|
||||
<link rel="stylesheet" href="css/custom-animation.css">
|
||||
<link rel="stylesheet" href="css/slick.css">
|
||||
<link rel="stylesheet" href="css/nice-select.css">
|
||||
<link rel="stylesheet" href="css/flaticon.css">
|
||||
<link rel="stylesheet" href="css/swiper-bundle.css">
|
||||
<link rel="stylesheet" href="css/meanmenu.css">
|
||||
<link rel="stylesheet" href="css/font-awesome-pro.css">
|
||||
<link rel="stylesheet" href="css/magnific-popup.css">
|
||||
<link rel="stylesheet" href="css/spacing.css">
|
||||
<link rel="stylesheet" href="css/Lanstyle.css">
|
||||
<link rel="stylesheet" href="css/rtl.css">
|
||||
</HeadContent>
|
||||
|
||||
<Lheader />
|
||||
<div id="smooth-wrapper">
|
||||
<div id="smooth-content">
|
||||
@Body
|
||||
<Lfooter />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
77
TaxPayerFull/Layout/MainLayout.razor.css
Normal file
77
TaxPayerFull/Layout/MainLayout.razor.css
Normal file
@@ -0,0 +1,77 @@
|
||||
.page {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
background-color: #f7f7f7;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
white-space: nowrap;
|
||||
margin-left: 1.5rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.top-row ::deep a:first-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@media (max-width: 640.98px) {
|
||||
.top-row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.page {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 250px;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.top-row {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.top-row.auth ::deep a:first-child {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.top-row, article {
|
||||
padding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;
|
||||
}
|
||||
}
|
39
TaxPayerFull/Layout/NavMenu.razor
Normal file
39
TaxPayerFull/Layout/NavMenu.razor
Normal file
@@ -0,0 +1,39 @@
|
||||
<div class="top-row ps-3 navbar navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="">TaxPayer</a>
|
||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="@NavMenuCssClass nav-scrollable" @onclick="ToggleNavMenu">
|
||||
<nav class="flex-column">
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
||||
<span class="bi bi-house-door-fill-nav-menu" aria-hidden="true"></span> Home
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="counter">
|
||||
<span class="bi bi-plus-square-fill-nav-menu" aria-hidden="true"></span> Counter
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="weather">
|
||||
<span class="bi bi-list-nested-nav-menu" aria-hidden="true"></span> Weather
|
||||
</NavLink>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
private bool collapseNavMenu = true;
|
||||
|
||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
||||
|
||||
private void ToggleNavMenu()
|
||||
{
|
||||
collapseNavMenu = !collapseNavMenu;
|
||||
}
|
||||
}
|
83
TaxPayerFull/Layout/NavMenu.razor.css
Normal file
83
TaxPayerFull/Layout/NavMenu.razor.css
Normal file
@@ -0,0 +1,83 @@
|
||||
.navbar-toggler {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
height: 3.5rem;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.bi {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
margin-right: 0.75rem;
|
||||
top: -1px;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bi-house-door-fill-nav-menu {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.bi-plus-square-fill-nav-menu {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.bi-list-nested-nav-menu {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
font-size: 0.9rem;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.nav-item:first-of-type {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.nav-item:last-of-type {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.nav-item ::deep a {
|
||||
color: #d7d7d7;
|
||||
border-radius: 4px;
|
||||
height: 3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
line-height: 3rem;
|
||||
}
|
||||
|
||||
.nav-item ::deep a.active {
|
||||
background-color: rgba(255,255,255,0.37);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-item ::deep a:hover {
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.navbar-toggler {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.collapse {
|
||||
/* Never collapse the sidebar for wide screens */
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-scrollable {
|
||||
/* Allow sidebar to scroll for tall menus */
|
||||
height: calc(100vh - 3.5rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
561
TaxPayerFull/Layout/Price.razor
Normal file
561
TaxPayerFull/Layout/Price.razor
Normal file
@@ -0,0 +1,561 @@
|
||||
<div class="tp-price__area tp-price__pl-pr p-relative pt-110 pb-80" id="price">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xl-7 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".3s">
|
||||
<div class="tp-price__section-box text-center mb-35">
|
||||
<h2 class="tp-section-title">
|
||||
تعرفه ها
|
||||
</h2>
|
||||
|
||||
<p>طرحی متناسب با نیازهای خود انتخاب کنید</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".5s">
|
||||
<div class="col-12">
|
||||
<div class="tp-price__btn-box p-relative mb-50 d-flex justify-content-center">
|
||||
<div class="tp-price-offer-badge-wrap d-none d-sm-block">
|
||||
<div class="price-shape-line">
|
||||
<svg width="80" height="42" viewBox="0 0 80 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M78.5938 8.78059C59.0829 45.2801 2.05127 -8.72021 27.0652 32.28C52.079 73.2801 48.5771 -41.2195 0.550438 18.7821"
|
||||
stroke="#FF3C82" stroke-dasharray="3 3" />
|
||||
</svg>
|
||||
</div>
|
||||
<div class="price-offer-badge">
|
||||
<span>
|
||||
ذخیره <br>
|
||||
35%
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<nav>
|
||||
<div class="nav nav-tab tp-price__btn-bg" id="nav-tab" role="tablist">
|
||||
<button class="nav-link active monthly" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">
|
||||
ماهانه
|
||||
</button>
|
||||
<button class="nav-link yearly" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile" type="button" role="tab" aria-controls="nav-profile" aria-selected="false">
|
||||
سالانه
|
||||
</button>
|
||||
<span class="test"></span>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="price-tab-content">
|
||||
<div class="tab-content" id="nav-tabContent">
|
||||
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab" tabindex="0">
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-1.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">پلن شخصی</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li class="inactive">
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li class="inactive">
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 146.00</span>
|
||||
<a href="price.html">الان بخرید <i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item active p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-2.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">حرفه ای</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 159.00</span>
|
||||
<a href="price.html">الان بخرید<i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-3.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">برای تیم</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 289.00</span>
|
||||
<a href="price.html">الان بخرید <i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab" tabindex="0">
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-1.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">پلن شخصی</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li class="inactive">
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li class="inactive">
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 156.00</span>
|
||||
<a href="price.html">الان بخرید <i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item active p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-2.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">حرفه ای</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 199.00</span>
|
||||
<a href="price.html">الان بخرید<i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30">
|
||||
<div class="tp-price__item p-relative">
|
||||
<div class="tp-price__icon">
|
||||
<img src="img/price/price-icon-3.png" alt="">
|
||||
</div>
|
||||
<div class="tp-price__title-box">
|
||||
<h4 class="tp-price__title-sm">برای تیم</h4>
|
||||
<p>هر چیزی را در هر زمان سفارشی کنید</p>
|
||||
</div>
|
||||
<div class="tp-price__feature">
|
||||
<ul>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> ردیابی آسانا دیتا با AI
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> 100+ هدیه خوش آمد
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> بهترین برنامه و بسته بندی داده
|
||||
</li>
|
||||
<li>
|
||||
<span>
|
||||
<svg width="16" height="17" viewBox="0 0 16 17" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="price-path-1"
|
||||
d="M6.344 9.20708L1.81052 6.82365C1.46119 6.64408 1.05752 6.6604 0.731485 6.87263C0.397684 7.09301 0.203613 7.46032 0.203613 7.86844V12.3659C0.203613 13.1414 0.615042 13.8433 1.27488 14.1943L5.8006 16.5778C5.95586 16.6594 6.12664 16.7002 6.29742 16.7002C6.49925 16.7002 6.70109 16.6431 6.87963 16.5288C7.21343 16.3166 7.4075 15.9411 7.4075 15.533V11.0355C7.41527 10.2519 7.00384 9.5499 6.344 9.20708Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-2"
|
||||
d="M15.3846 6.87587C15.0508 6.66372 14.6471 6.63924 14.3056 6.82691L9.77978 9.20956C9.11993 9.56043 8.7085 10.254 8.7085 11.0373V15.5334C8.7085 15.9413 8.90257 16.3167 9.23637 16.5288C9.41492 16.6431 9.61676 16.7002 9.81859 16.7002C9.98938 16.7002 10.1602 16.6594 10.3154 16.5778L14.8412 14.1952C15.5011 13.8443 15.9125 13.1507 15.9125 12.3674V7.87136C15.9125 7.46337 15.7184 7.09618 15.3846 6.87587Z"
|
||||
fill="currentcolor" />
|
||||
<path class="price-path-3"
|
||||
d="M13.9152 2.96146L8.86226 0.219067C8.33036 -0.0730223 7.68564 -0.0730223 7.15375 0.219067L2.10076 2.96146C1.73005 3.1643 1.50439 3.55375 1.50439 4C1.50439 4.43813 1.73005 4.8357 2.10076 5.03854L7.15375 7.78093C7.4197 7.92698 7.71788 8 8.008 8C8.29813 8 8.59631 7.92698 8.86226 7.78093L13.9152 5.03854C14.286 4.8357 14.5116 4.44625 14.5116 4C14.5116 3.55375 14.286 3.1643 13.9152 2.96146Z"
|
||||
fill="currentcolor" />
|
||||
</svg>
|
||||
</span> پشتیبانی آنلاین 24/7
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-price__btn tp-btn-price">
|
||||
<span>قیمت: 589.00</span>
|
||||
<a href="price.html">الان بخرید <i class="fal fa-arrow-left"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a>علاوه بر تعرفه ها میتوانید سیستم هارو برحسب نیاز به صورت تکی هم تهیه کنید</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
87
TaxPayerFull/Layout/Rank.razor
Normal file
87
TaxPayerFull/Layout/Rank.razor
Normal file
@@ -0,0 +1,87 @@
|
||||
<div class="tp-rank__area pb-200">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-5 col-lg-5 order-1 order-lg-1">
|
||||
<div class="tp-rank__section-box pb-25 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.3s; animation-name: tpfadeUp;">
|
||||
<h4 class="tp-section-subtitle">پایه قیمت</h4>
|
||||
<h3 class="tp-section-title">
|
||||
سیاست
|
||||
<br />قیمت گذاری
|
||||
<br />خدمات
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-xl-7 col-lg-7 order-0 order-lg-2">
|
||||
<div class="tp-rank__wrapper p-relative">
|
||||
<div class="tp-rank__circle-shape-1 d-none d-sm-block wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".3s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.3s; animation-name: tpfadeUp;">
|
||||
<img src="img/rank/sky-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-2 d-none d-sm-block wow tpfadeLeft" data-wow-duration=".9s" data-wow-delay=".5s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.5s; animation-name: tpfadeLeft;">
|
||||
<img src="img/rank/yellow-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-3 d-none d-sm-block wow tpfadeRight" data-wow-duration=".9s" data-wow-delay=".4s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.4s; animation-name: tpfadeRight;">
|
||||
<img src="img/rank/black-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-4 d-none d-sm-block wow tpfadeIn" data-wow-duration=".9s" data-wow-delay=".7s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.7s; animation-name: tpfadeIn;">
|
||||
<img src="img/rank/black-sm-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-5 d-none d-sm-block wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".9s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.9s; animation-name: tpfadeUp;">
|
||||
<img src="img/rank/black-sm-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-6 d-none d-sm-block wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".2s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.2s; animation-name: tpfadeUp;">
|
||||
<img src="img/rank/black-sm-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__circle-shape-7 d-none d-sm-block wow tpfadeIn" data-wow-duration=".9s" data-wow-delay="1s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 1s; animation-name: tpfadeIn;">
|
||||
<img src="img/rank/black-sm-circle.png" alt="">
|
||||
</div>
|
||||
<div class="tp-rank__bg-shape">
|
||||
<img class="wow tpfadeRight" data-wow-duration=".9s" data-wow-delay="1.2s" src="img/rank/rank-bg-shape.png" alt="" style="visibility: visible; animation-duration: 0.9s; animation-delay: 1.2s; animation-name: tpfadeRight;">
|
||||
</div>
|
||||
<div class="tp-rank__rank-card wow tpfadeRight" data-wow-duration=".9s" data-wow-delay=".7s" style="visibility: visible; animation-duration: 0.9s; animation-delay: 0.7s; animation-name: tpfadeRight;">
|
||||
<div class="tp-rank__item p-relative z-index">
|
||||
<div class="tp-rank__company">
|
||||
<span><img src="img/rank/invoice.png" alt=""></span>
|
||||
</div>
|
||||
<div class="tp-rank__company-info">
|
||||
<a>صدور انواع فاکتور</a><br />
|
||||
<span>روزانه</span> <span>10000 تومان</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-rank__item p-relative">
|
||||
<div class="tp-rank__company">
|
||||
<span><img src="img/rank/Customer.png" alt=""></span>
|
||||
</div>
|
||||
<div class="tp-rank__company-info">
|
||||
<a>مشتری جدید</a><br />
|
||||
<span>واحدی</span> <span>8500 تومان</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-rank__item p-relative z-index">
|
||||
<div class="tp-rank__company">
|
||||
<span><img src="img/rank/item.png" alt=""></span>
|
||||
</div>
|
||||
<div class="tp-rank__company-info">
|
||||
<a>کالای جدید</a><br />
|
||||
<span>واحدی</span> <span>10000 تومان</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-rank__item p-relative">
|
||||
<div class="tp-rank__company">
|
||||
<span><img src="img/rank/Tax.png" alt=""></span>
|
||||
</div>
|
||||
<div class="tp-rank__company-info">
|
||||
<a>سامانه مودیان</a><br />
|
||||
<span>هر ارسال</span> <span>8500 تومان</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
18
TaxPayerFull/Pages/Counter.razor
Normal file
18
TaxPayerFull/Pages/Counter.razor
Normal file
@@ -0,0 +1,18 @@
|
||||
@page "/counter"
|
||||
|
||||
<PageTitle>Counter</PageTitle>
|
||||
|
||||
<h1>Counter</h1>
|
||||
|
||||
<p role="status">Current count: @currentCount</p>
|
||||
|
||||
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
|
||||
|
||||
@code {
|
||||
private int currentCount = 0;
|
||||
|
||||
private void IncrementCount()
|
||||
{
|
||||
currentCount++;
|
||||
}
|
||||
}
|
384
TaxPayerFull/Pages/Home.razor
Normal file
384
TaxPayerFull/Pages/Home.razor
Normal file
@@ -0,0 +1,384 @@
|
||||
@page "/"
|
||||
|
||||
<PageTitle>Home</PageTitle>
|
||||
|
||||
|
||||
|
||||
<main class="fix">
|
||||
|
||||
<!-- tp-slider-area-start -->
|
||||
<div class="tp-hero__area tp-hero__pl-pr">
|
||||
<div class="tp-hero__bg p-relative">
|
||||
<div class="tp-hero-bg tp-hero-bg-single">
|
||||
<img src="img/hero/hero-frame.png" alt="">
|
||||
</div>
|
||||
<div class="tp-hero-shape">
|
||||
<img class="tp-hero-shape-1" src="img/hero/hero-line-shape.png" alt="">
|
||||
<img class="tp-hero-shape-2" src="img/hero/hero-line-shape-2.png" alt="">
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xl-10">
|
||||
<div class="tp-hero__content-box text-center z-index-3">
|
||||
<div class="tp-hero__title-box p-relative">
|
||||
<h2 class="tp-hero__hero-title tp-title-anim">
|
||||
کسب و کارتو حرکت بده
|
||||
</h2>
|
||||
<h5 style="color:red;" class="wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".7s">
|
||||
امتحانش رایگانه
|
||||
</h5>
|
||||
<div class="tp-hero__title-shape d-none d-sm-block">
|
||||
<svg width="491" height="24" viewBox="0 0 491 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path class="line1" fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M208.549 3.29849C185.59 4.08616 162.901 5.05468 140.776 6.11351C109.455 7.61138 78.1462 9.16091 47.0261 11.6143C37.2302 12.3891 27.2823 12.8797 17.5476 13.8482C11.4368 14.4551 3.334 15.3201 2.27061 15.5009C1.71441 15.6042 1.47176 15.7593 1.39336 15.8109C0.842061 16.1725 0.942652 16.521 1.25383 16.7921C1.37879 16.9084 1.69478 17.1925 2.57195 17.2313C61.2348 19.8784 121.221 14.7133 179.955 14.171C281.81 13.2413 386.752 16.9343 487.799 24.9918C488.681 25.0564 489.539 24.7334 489.661 24.2557C489.808 23.7908 489.171 23.3389 488.289 23.2743C387.071 15.2039 281.957 11.498 179.906 12.4406C125.168 12.9442 69.3499 17.4766 14.5363 15.9271C15.7957 15.798 17.0307 15.6688 18.1578 15.5526C27.8533 14.5841 37.7594 14.1064 47.5162 13.3316C78.5701 10.8782 109.815 9.32872 141.095 7.84376C179.906 5.98434 220.408 4.38316 261.228 3.63423C275.831 3.75044 290.386 3.86671 304.94 4.00875C336.425 4.31865 368.057 5.22254 399.469 6.43633C408.927 6.8108 418.385 7.19814 427.842 7.53387C430.979 7.65009 439.064 7.98576 440.191 7.95993C441.588 7.93411 441.857 7.31436 441.882 7.21106C441.955 6.97863 441.906 6.65579 441.22 6.38463C441.147 6.34589 440.706 6.21668 439.726 6.13921C382.611 1.56813 321.626 0.806405 261.277 1.90398C197.621 1.42621 133.719 1.21951 70.2247 1C69.3157 1 68.5733 1.38744 68.5659 1.8652C68.561 2.34297 69.2935 2.73042 70.2026 2.74333C116.178 2.89828 162.387 3.05315 208.549 3.29849Z"
|
||||
fill="none" stroke="none" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-hero__input p-relative wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".5s">
|
||||
<form action="#">
|
||||
<p class="wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".7s">
|
||||
فروش بیشتر با مدیریت بهتر کسب و کار
|
||||
</p>
|
||||
<NavLink class="tp-btn" href="Sign-in">
|
||||
<span>شروع کنید</span>
|
||||
<b></b>
|
||||
</NavLink>
|
||||
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tp-hero__bottom z-index-5">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xl-10">
|
||||
<div class="tp-hero__thumb-wrapper-main p-relative">
|
||||
<div class="tp-hero__shape-img-1 d-none d-xl-block">
|
||||
<img src="img/hero/hero-shape-1.png" alt="">
|
||||
</div>
|
||||
<div class="tp-hero__shape-img-2 d-none d-xl-block">
|
||||
<img src="img/hero/hero-shape-2.png" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<div class="tp-hero__thumb-wrapper d-none d-md-block p-relative">
|
||||
<div class="row">
|
||||
<div class="col-8">
|
||||
<div class="tp-hero__thumb-box">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="tp-hero__thumb mb-20">
|
||||
<img class="w-100" src="img/hero/hero-sm-1.jpg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="tp-hero__thumb tp-hero__sm-img">
|
||||
<img class="w-100" src="img/hero/hero-sm-3.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<div class="tp-hero__thumb">
|
||||
<img class="w-100" src="img/hero/hero-sm-4.jpg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="tp-hero__thumb-box">
|
||||
<div class="tp-hero__thumb">
|
||||
<img class="w-100" src="img/hero/hero-sm-2.jpg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-slider-area-end -->
|
||||
<!-- tp-feature-area-start -->
|
||||
<div class="tp-feature__area tp-feature__pt-pb pt-165 pb-170 p-relative">
|
||||
<div class="tp-feature__bottom-shape">
|
||||
<img src="img/feature/fea-bg-shape-1.png" alt="">
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xl-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".2s">
|
||||
<div class="tp-feature__section-box text-center mb-55 tp-title-anim">
|
||||
<h2 class="tp-section-title">ویژگی ها</h2>
|
||||
<p>اعتماد شما سرمایه است</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".4s">
|
||||
<div id="divtest" class="tp-feature__item">
|
||||
<div class="tp-feature__icon">
|
||||
<img src="img/feature/fea-icon-1.png" alt="">
|
||||
</div>
|
||||
<h3 class="tp-feature__title-sm">گزارشات متنوع آماری</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".6s">
|
||||
<div class="tp-feature__item">
|
||||
<div class="tp-feature__icon">
|
||||
<img src="img/feature/fea-icon-2.png" alt="">
|
||||
</div>
|
||||
<h3 class="tp-feature__title-sm">دسترسی در هر زمان و مکان</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-30 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".8s">
|
||||
<div class="tp-feature__item">
|
||||
<div class="tp-feature__icon">
|
||||
<img src="img/feature/fea-icon-3.png" alt="">
|
||||
</div>
|
||||
<h3 class="tp-feature__title-sm">امنیت و حفظ اطلاعات</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-feature-area-end -->
|
||||
<!-- tp-about-area-start -->
|
||||
<div class="tp-about__area tp-about__pt-pb pt-100 pb-160" id="about">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-xl-6 col-lg-6 wow tpfadeLeft" data-wow-duration=".9s" data-wow-delay=".2s">
|
||||
<div class="tp-about__img-wrapper text-center text-lg-end p-relative">
|
||||
<div class="tp-about__bg-shape">
|
||||
<img src="img/about/about-bg-shape.png" alt="">
|
||||
</div>
|
||||
<div class="tp-about__main-img z-index">
|
||||
<img src="img/about/about-2.jpg" alt="">
|
||||
</div>
|
||||
<div class="tp-about__sub-img-1 d-none d-sm-block z-index-3">
|
||||
<img src="img/about/about-1.jpg" alt="">
|
||||
</div>
|
||||
<div class="tp-about__sub-img-2 d-none d-sm-block">
|
||||
<img src="img/about/about-3.jpg" alt="">
|
||||
</div>
|
||||
<div class="tp-about__sub-img-3 d-none d-sm-block z-index-3">
|
||||
<img src="img/about/about-5.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-6 col-lg-6 wow tpfadeRight" data-wow-duration=".9s" data-wow-delay=".6s">
|
||||
<div class="tp-about__right">
|
||||
<div class="tp-about__section-box">
|
||||
<h3 class="tp-section-title mb-15">
|
||||
راه حلی برای مدیریت صورتحساب ها
|
||||
</h3>
|
||||
<p>
|
||||
در این دوره از زمان مدیران و صاحبان کسب و کار بیشتر از اینکه به دنبال هدف و توسعه کار خود باشند درگیر دغدغه های فروش شده اند .
|
||||
<br />
|
||||
در حال حاضر بهتر این مسائل توسط نرم افزار و سیستم ها انجام شود تا خطای انسانی هم کاهش داده شود.
|
||||
<br />
|
||||
از طرفی هم سیستم ها با گزارشات متنوع می توانند صاحبان کسب و کار را در مسیر پیشرفت کمک کنند
|
||||
</p>
|
||||
</div>
|
||||
<div class="tp-about__list">
|
||||
<ul>
|
||||
<li><i class="fal fa-check"></i>تجزیه و تحلیل</li>
|
||||
<li><i class="fal fa-check"></i>مدیریت زمان</li>
|
||||
<li><i class="fal fa-check"></i>کاهش خطای انسانی</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tp-about__btn">
|
||||
<NavLink class="tp-btn" href="Sign-in">
|
||||
<span>شروع کنید</span>
|
||||
<b></b>
|
||||
</NavLink>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-about-area-end -->
|
||||
<!-- tp-services-area-start -->
|
||||
<div class="tp-service__area p-relative fix" id="services">
|
||||
<div class="tp-service__grey-shape grey-bg"></div>
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8">
|
||||
<div class="tp-service__section-box mb-50 text-center tp-title-anim">
|
||||
<h2 class="tp-section-title">خدمات</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".4s">
|
||||
<div class="tp-service__item mb-30">
|
||||
<div class="tp-service__icon">
|
||||
<img src="img/service/sv-icon-1.png" alt="">
|
||||
</div>
|
||||
<div class="tp-service__content">
|
||||
<h3 class="tp-service__title-sm tp-orange-color">
|
||||
<a href="service-details.html">
|
||||
سیستم فروش
|
||||
</a>
|
||||
</h3>
|
||||
<p>صدور فاکتور در انواع حالت و وضعیت ها <br />(طبق استاندارد سازمان امور مالیاتی کشور)</p>
|
||||
</div>
|
||||
<div class="tp-service__link">
|
||||
<a href="service-details.html">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="mirror" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.00098 7H13.001" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M7.00098 1L13.001 7L7.00098 13" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".6s">
|
||||
<div class="tp-service__item mb-30">
|
||||
<div class="tp-service__icon">
|
||||
<img src="img/service/sv-icon-2.png" alt="">
|
||||
</div>
|
||||
<div class="tp-service__content">
|
||||
<h3 class="tp-service__title-sm tp-theme-color">
|
||||
<a href="service-details.html">
|
||||
کالاها
|
||||
</a>
|
||||
</h3>
|
||||
<p>لیست کامل از کالاهای قابل فروش <br />(طبق استاندارد سازمان امور مالیاتی کشور)</p>
|
||||
</div>
|
||||
<div class="tp-service__link">
|
||||
<a href="service-details.html">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="mirror" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.00098 7H13.001" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M7.00098 1L13.001 7L7.00098 13" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".9s">
|
||||
<div class="tp-service__item mb-30">
|
||||
<div class="tp-service__icon">
|
||||
<img src="img/service/sv-icon-5.png" alt="">
|
||||
</div>
|
||||
<div class="tp-service__content">
|
||||
<h3 class="tp-service__title-sm tp-yellow-color">
|
||||
<a href="service-details.html">
|
||||
مشتریان
|
||||
</a>
|
||||
</h3>
|
||||
<p>بانکی کامل از اطلاعات مشتریان <br />(طبق استاندارد سازمان امور مالیاتی کشور)</p>
|
||||
</div>
|
||||
<div class="tp-service__link">
|
||||
<a href="service-details.html">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="mirror" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.00098 7H13.001" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M7.00098 1L13.001 7L7.00098 13" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".8s">
|
||||
<div class="tp-service__item mb-30">
|
||||
<div class="tp-service__icon">
|
||||
<img src="img/service/sv-icon-4.png" alt="">
|
||||
</div>
|
||||
<div class="tp-service__content">
|
||||
<h3 class="tp-service__title-sm tp-green-color">
|
||||
<a href="service-details.html">
|
||||
سامانه مودیان
|
||||
</a>
|
||||
</h3>
|
||||
<p>اعلام فروش و برگشت به سازمان مالیاتی <br /> (پشتیبانی از همه الگو و صورتحساب ها)</p>
|
||||
</div>
|
||||
<div class="tp-service__link">
|
||||
<a href="service-details.html">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="mirror" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.00098 7H13.001" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M7.00098 1L13.001 7L7.00098 13" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay=".7s">
|
||||
<div class="tp-service__item mb-30">
|
||||
<div class="tp-service__icon">
|
||||
<img src="img/service/sv-icon-3.png" alt="">
|
||||
</div>
|
||||
<div class="tp-service__content">
|
||||
<h3 class="tp-service__title-sm tp-purple-color">
|
||||
<a href="service-details.html">
|
||||
گزارشات
|
||||
</a>
|
||||
</h3>
|
||||
<p>اطلاعات آماری از عملیات سیستم ها</p>
|
||||
<br />
|
||||
</div>
|
||||
<div class="tp-service__link">
|
||||
<a href="service-details.html">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="mirror" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.00098 7H13.001" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M7.00098 1L13.001 7L7.00098 13" stroke="currentColor" stroke-width="1.5"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-6 wow tpfadeUp" data-wow-duration=".9s" data-wow-delay="1s">
|
||||
<div class="tp-service__dashboard" data-background="image.jpg" style="background-image: url('img/service/sv-bg.jpg');">
|
||||
<div class="tp-service__top-content">
|
||||
<p>راه حلی برای مدیریت بهتر صورتحساب ها</p>
|
||||
<NavLink class="tp-btn-orange" href="Sign-in">
|
||||
<span>شروع کنید</span>
|
||||
<b></b>
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="tp-service__dashdboard-sm-img">
|
||||
<img class="wow tpfadeRight" data-wow-duration=".9s" data-wow-delay=".7s" src="img/service/sv-dashbord.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-services-area-end -->
|
||||
<!-- tp-price-area-start -->
|
||||
<Price />
|
||||
<!-- tp-price-area-end -->
|
||||
<!-- tp-rank-area-start -->
|
||||
<Rank />
|
||||
<!-- tp-rank-area-end -->
|
||||
<!-- tp-project-area-start -->
|
||||
<Blog />
|
||||
<!-- tp-project-area-end -->
|
||||
<!-- tp-contact-area-Start -->
|
||||
<Contact />
|
||||
<!-- tp-contact-area-end -->
|
||||
</main>
|
||||
|
||||
|
||||
|
||||
|
118
TaxPayerFull/Pages/Register.razor
Normal file
118
TaxPayerFull/Pages/Register.razor
Normal file
@@ -0,0 +1,118 @@
|
||||
@page "/Register"
|
||||
|
||||
<PageTitle>ثبت نام</PageTitle>
|
||||
<main>
|
||||
|
||||
<!-- tp-banner-area-start -->
|
||||
<div class="signin-banner-area signin-banner-main-wrap d-flex align-items-center">
|
||||
<div class="signin-banner-left-box signin-banner-bg p-relative">
|
||||
<div class="signin-banner-bottom-shape">
|
||||
<img src="img/login/login-shape-1.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-left-wrap">
|
||||
<div class="signin-banner-title-box mb-100">
|
||||
<h4 class="signin-banner-title">
|
||||
خوش آمدید به <br>
|
||||
فضای کاری اختصاصی خودتان
|
||||
</h4>
|
||||
</div>
|
||||
<div class="signin-banner-img-box position-relative">
|
||||
<div class="signin-banner-img signin-img-1 d-none d-md-block z-index-3">
|
||||
<img src="img/login/login-2.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-2 d-none d-md-block">
|
||||
<img src="img/login/login-1.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-3 d-none d-md-block z-index-5">
|
||||
<img src="img/login/login-3.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-4 d-none d-sm-block">
|
||||
<img src="img/login/login-4.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="signin-banner-from d-flex justify-content-center align-items-center">
|
||||
<div class="signin-banner-from-wrap">
|
||||
<div class="signin-banner-title-box">
|
||||
<h4 class="signin-banner-from-title">ثبت نام</h4>
|
||||
</div>
|
||||
|
||||
<div class="signin-banner-from-box">
|
||||
|
||||
<form action="#">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">نام کامل</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">ایمیل شما</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input id="myInput" class="inputText password" type="password" required="">
|
||||
<span class="floating-label">گذرواژه</span>
|
||||
<span id="click" class="eye-btn">
|
||||
<span class="eye-on">
|
||||
<svg width="20" height="17" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" d="M2.1474 11.1661C1.38247 10.1723 1 9.67544 1 8.2C1 6.72456 1.38247 6.22767 2.1474 5.2339C3.67477 3.2496 6.2363 1 10 1C13.7637 1 16.3252 3.2496 17.8526 5.2339C18.6175 6.22767 19 6.72456 19 8.2C19 9.67544 18.6175 10.1723 17.8526 11.1661C16.3252 13.1504 13.7637 15.4 10 15.4C6.2363 15.4 3.67477 13.1504 2.1474 11.1661Z" stroke="#1C274C" stroke-width="1.5"></path>
|
||||
<path d="M12.6969 8.2C12.6969 9.69117 11.488 10.9 9.99687 10.9C8.50571 10.9 7.29688 9.69117 7.29688 8.2C7.29688 6.70883 8.50571 5.5 9.99687 5.5C11.488 5.5 12.6969 6.70883 12.6969 8.2Z" stroke="#1C274C" stroke-width="1.5"></path>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="eye-off">
|
||||
<svg width="18" height="18" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2547_24206)">
|
||||
<path d="M18.813 18.9113C17.1036 20.2143 15.0222 20.9362 12.873 20.9713C5.87305 20.9713 1.87305 12.9713 1.87305 12.9713C3.11694 10.6532 4.84218 8.62795 6.93305 7.03134M10.773 5.21134C11.4614 5.05022 12.1661 4.96968 12.873 4.97134C19.873 4.97134 23.873 12.9713 23.873 12.9713C23.266 14.1069 22.5421 15.1761 21.713 16.1613M14.993 15.0913C14.7184 15.3861 14.3872 15.6225 14.0192 15.7865C13.6512 15.9504 13.2539 16.0386 12.8511 16.0457C12.4483 16.0528 12.0482 15.9787 11.6747 15.8278C11.3011 15.6769 10.9618 15.4524 10.6769 15.1675C10.392 14.8826 10.1674 14.5433 10.0166 14.1697C9.86567 13.7962 9.79157 13.3961 9.79868 12.9932C9.80579 12.5904 9.89396 12.1932 10.0579 11.8252C10.2219 11.4572 10.4583 11.126 10.753 10.8513" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M1.87305 1.97131L23.873 23.9713" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2547_24206">
|
||||
<rect width="24" height="24" fill="white" transform="translate(0.873047 0.971313)"></rect>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="signin-banner-form-remember">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<div class="postbox__comment-agree">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
|
||||
<label class="form-check-label" for="flexCheckDefault">
|
||||
مرا به یاد بسپار
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="postbox__forget text-end">
|
||||
<a href="#">رمز عبور را فراموش کرده اید؟</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="signin-banner-from-btn mb-20">
|
||||
<button class="signin-btn ">ثبت نام</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-banner-area-end -->
|
||||
</main>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
114
TaxPayerFull/Pages/Sign-in.razor
Normal file
114
TaxPayerFull/Pages/Sign-in.razor
Normal file
@@ -0,0 +1,114 @@
|
||||
@page "/Sign-in"
|
||||
|
||||
<PageTitle>ورود</PageTitle>
|
||||
<main>
|
||||
|
||||
<!-- tp-banner-area-start -->
|
||||
<div class="signin-banner-area signin-banner-main-wrap d-flex align-items-center">
|
||||
<div class="signin-banner-left-box signin-banner-bg p-relative">
|
||||
<div class="signin-banner-bottom-shape">
|
||||
<img src="img/login/login-shape-1.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-left-wrap">
|
||||
<div class="signin-banner-title-box mb-100">
|
||||
<h4 class="signin-banner-title">
|
||||
خوش آمدید به <br>
|
||||
سیستم یکپارچه ما
|
||||
</h4>
|
||||
</div>
|
||||
<div class="signin-banner-img-box position-relative">
|
||||
<div class="signin-banner-img signin-img-1 d-none d-md-block z-index-3">
|
||||
<img src="img/login/login-2.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-2 d-none d-md-block">
|
||||
<img src="img/login/login-1.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-3 d-none d-md-block z-index-5">
|
||||
<img src="img/login/login-3.png" alt="">
|
||||
</div>
|
||||
<div class="signin-banner-img signin-img-4 d-none d-sm-block">
|
||||
<img src="img/login/login-4.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="signin-banner-from d-flex justify-content-center align-items-center">
|
||||
<div class="signin-banner-from-wrap">
|
||||
<div class="signin-banner-title-box">
|
||||
<h4 class="signin-banner-from-title">ورود به سیستم</h4>
|
||||
</div>
|
||||
|
||||
<div class="signin-banner-from-box">
|
||||
<form action="#">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input type="text" class="inputText" required="">
|
||||
<span class="floating-label">ایمیل شما</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="postbox__comment-input mb-30">
|
||||
<input id="myInput" class="inputText password" type="password" required="">
|
||||
<span class="floating-label">گذرواژه</span>
|
||||
<span id="click" class="eye-btn">
|
||||
<span class="eye-on">
|
||||
<svg width="20" height="17" viewBox="0 0 20 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" d="M2.1474 11.1661C1.38247 10.1723 1 9.67544 1 8.2C1 6.72456 1.38247 6.22767 2.1474 5.2339C3.67477 3.2496 6.2363 1 10 1C13.7637 1 16.3252 3.2496 17.8526 5.2339C18.6175 6.22767 19 6.72456 19 8.2C19 9.67544 18.6175 10.1723 17.8526 11.1661C16.3252 13.1504 13.7637 15.4 10 15.4C6.2363 15.4 3.67477 13.1504 2.1474 11.1661Z" stroke="#1C274C" stroke-width="1.5"></path>
|
||||
<path d="M12.6969 8.2C12.6969 9.69117 11.488 10.9 9.99687 10.9C8.50571 10.9 7.29688 9.69117 7.29688 8.2C7.29688 6.70883 8.50571 5.5 9.99687 5.5C11.488 5.5 12.6969 6.70883 12.6969 8.2Z" stroke="#1C274C" stroke-width="1.5"></path>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="eye-off">
|
||||
<svg width="18" height="18" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2547_24206)">
|
||||
<path d="M18.813 18.9113C17.1036 20.2143 15.0222 20.9362 12.873 20.9713C5.87305 20.9713 1.87305 12.9713 1.87305 12.9713C3.11694 10.6532 4.84218 8.62795 6.93305 7.03134M10.773 5.21134C11.4614 5.05022 12.1661 4.96968 12.873 4.97134C19.873 4.97134 23.873 12.9713 23.873 12.9713C23.266 14.1069 22.5421 15.1761 21.713 16.1613M14.993 15.0913C14.7184 15.3861 14.3872 15.6225 14.0192 15.7865C13.6512 15.9504 13.2539 16.0386 12.8511 16.0457C12.4483 16.0528 12.0482 15.9787 11.6747 15.8278C11.3011 15.6769 10.9618 15.4524 10.6769 15.1675C10.392 14.8826 10.1674 14.5433 10.0166 14.1697C9.86567 13.7962 9.79157 13.3961 9.79868 12.9932C9.80579 12.5904 9.89396 12.1932 10.0579 11.8252C10.2219 11.4572 10.4583 11.126 10.753 10.8513" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M1.87305 1.97131L23.873 23.9713" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2547_24206">
|
||||
<rect width="24" height="24" fill="white" transform="translate(0.873047 0.971313)"></rect>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="signin-banner-form-remember">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<div class="postbox__comment-agree">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
|
||||
<label class="form-check-label" for="flexCheckDefault">
|
||||
مرا به یاد داشته باش
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="postbox__forget text-end">
|
||||
<a href="#">رمز عبور را فراموش کرده اید؟</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="signin-banner-from-btn mb-20">
|
||||
<button class="signin-btn ">ورود</button>
|
||||
</div>
|
||||
<div class="signin-banner-from-register">
|
||||
<NavLink href="Register">اکانت ندارید؟ <span>ثبت نام</span></NavLink>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- tp-banner-area-end -->
|
||||
|
||||
</main>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
57
TaxPayerFull/Pages/Weather.razor
Normal file
57
TaxPayerFull/Pages/Weather.razor
Normal file
@@ -0,0 +1,57 @@
|
||||
@page "/weather"
|
||||
@inject HttpClient Http
|
||||
|
||||
<PageTitle>Weather</PageTitle>
|
||||
|
||||
<h1>Weather</h1>
|
||||
|
||||
<p>This component demonstrates fetching data from the server.</p>
|
||||
|
||||
@if (forecasts == null)
|
||||
{
|
||||
<p><em>Loading...</em></p>
|
||||
}
|
||||
else
|
||||
{
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Temp. (C)</th>
|
||||
<th>Temp. (F)</th>
|
||||
<th>Summary</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var forecast in forecasts)
|
||||
{
|
||||
<tr>
|
||||
<td>@forecast.Date.ToShortDateString()</td>
|
||||
<td>@forecast.TemperatureC</td>
|
||||
<td>@forecast.TemperatureF</td>
|
||||
<td>@forecast.Summary</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
}
|
||||
|
||||
@code {
|
||||
private WeatherForecast[]? forecasts;
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
forecasts = await Http.GetFromJsonAsync<WeatherForecast[]>("sample-data/weather.json");
|
||||
}
|
||||
|
||||
public class WeatherForecast
|
||||
{
|
||||
public DateOnly Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public string? Summary { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
}
|
||||
}
|
11
TaxPayerFull/Program.cs
Normal file
11
TaxPayerFull/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using Front;
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
builder.RootComponents.Add<App>("#app");
|
||||
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||||
|
||||
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
||||
|
||||
await builder.Build().RunAsync();
|
41
TaxPayerFull/Properties/launchSettings.json
Normal file
41
TaxPayerFull/Properties/launchSettings.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:64032",
|
||||
"sslPort": 44346
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "http://localhost:5107",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "https://localhost:7224;http://localhost:5107",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
10
TaxPayerFull/_Imports.razor
Normal file
10
TaxPayerFull/_Imports.razor
Normal file
@@ -0,0 +1,10 @@
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
||||
@using Microsoft.JSInterop
|
||||
@using Front
|
||||
@using Front.Layout
|
17228
TaxPayerFull/wwwroot/css/Lanstyle.css
Normal file
17228
TaxPayerFull/wwwroot/css/Lanstyle.css
Normal file
File diff suppressed because it is too large
Load Diff
3137
TaxPayerFull/wwwroot/css/animate.css
vendored
Normal file
3137
TaxPayerFull/wwwroot/css/animate.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
103
TaxPayerFull/wwwroot/css/app.css
Normal file
103
TaxPayerFull/wwwroot/css/app.css
Normal file
@@ -0,0 +1,103 @@
|
||||
html, body {
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
h1:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
a, .btn-link {
|
||||
color: #0071c1;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
||||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding-top: 1.1rem;
|
||||
}
|
||||
|
||||
.valid.modified:not([type=checkbox]) {
|
||||
outline: 1px solid #26b050;
|
||||
}
|
||||
|
||||
.invalid {
|
||||
outline: 1px solid red;
|
||||
}
|
||||
|
||||
.validation-message {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#blazor-error-ui {
|
||||
background: lightyellow;
|
||||
bottom: 0;
|
||||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
||||
display: none;
|
||||
left: 0;
|
||||
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
#blazor-error-ui .dismiss {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
right: 0.75rem;
|
||||
top: 0.5rem;
|
||||
}
|
||||
|
||||
.blazor-error-boundary {
|
||||
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
|
||||
padding: 1rem 1rem 1rem 3.7rem;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.blazor-error-boundary::after {
|
||||
content: "An error has occurred."
|
||||
}
|
||||
|
||||
.loading-progress {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 8rem;
|
||||
height: 8rem;
|
||||
margin: 20vh auto 1rem auto;
|
||||
}
|
||||
|
||||
.loading-progress circle {
|
||||
fill: none;
|
||||
stroke: #e0e0e0;
|
||||
stroke-width: 0.6rem;
|
||||
transform-origin: 50% 50%;
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
.loading-progress circle:last-child {
|
||||
stroke: #1b6ec2;
|
||||
stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
|
||||
transition: stroke-dasharray 0.05s ease-in-out;
|
||||
}
|
||||
|
||||
.loading-progress-text {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
|
||||
}
|
||||
|
||||
.loading-progress-text:after {
|
||||
content: var(--blazor-load-percentage-text, "Loading");
|
||||
}
|
||||
|
||||
code {
|
||||
color: #c02d76;
|
||||
}
|
7
TaxPayerFull/wwwroot/css/bootstrap.rtl.min.css
vendored
Normal file
7
TaxPayerFull/wwwroot/css/bootstrap.rtl.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7
TaxPayerFull/wwwroot/css/bootstrap/bootstrap.min.css
vendored
Normal file
7
TaxPayerFull/wwwroot/css/bootstrap/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
TaxPayerFull/wwwroot/css/bootstrap/bootstrap.min.css.map
Normal file
1
TaxPayerFull/wwwroot/css/bootstrap/bootstrap.min.css.map
Normal file
File diff suppressed because one or more lines are too long
893
TaxPayerFull/wwwroot/css/custom-animation.css
Normal file
893
TaxPayerFull/wwwroot/css/custom-animation.css
Normal file
@@ -0,0 +1,893 @@
|
||||
.animated {
|
||||
-webkit-animation-duration: 1s;
|
||||
animation-duration: 1s;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@-webkit-keyframes jump {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 50%, 0);
|
||||
transform: translate3d(0, 50%, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jump {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 50%, 0);
|
||||
transform: translate3d(0, 50%, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jumpTwo {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 20px, 0);
|
||||
transform: translate3d(0, 20px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jumpTwo {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 20px, 0);
|
||||
transform: translate3d(0, 40px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jumpThree {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, -20px, 0);
|
||||
transform: translate3d(0, -20px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jumpThree {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, -20px, 0);
|
||||
transform: translate3d(0, -20px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jumpFour {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translate3d(0, -10px, 0);
|
||||
transform: translate3d(0, -10px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jumpFour {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translate3d(0, -10px, 0);
|
||||
transform: translate3d(0, -10px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jumpFive {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translate3d(0, 10px, 0);
|
||||
transform: translate3d(0, 10px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jumpFive {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translate3d(0, 10px, 0);
|
||||
transform: translate3d(0, 10px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes prXOne {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(-15px);
|
||||
transform: translateX(-15px)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes prXOne {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(-15px);
|
||||
transform: translateX(-15px)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes prXTwo {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(15px);
|
||||
transform: translateX(15px)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes prXTwo {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(15px);
|
||||
transform: translateX(15px)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotated {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotated {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotatedTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(-360deg);
|
||||
transform: rotate(-360deg)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotatedTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(-360deg);
|
||||
transform: rotate(-360deg)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotatedHalf {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotatedHalf {
|
||||
0% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotatedHalfTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotatedHalfTwo {
|
||||
0% {
|
||||
-webkit-transform: rotate(-90deg);
|
||||
transform: rotate(-90deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-upOne {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: scale(.85);
|
||||
transform: scale(.85)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-upOne {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: scale(.85);
|
||||
transform: scale(.85)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-right {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(20%);
|
||||
transform: translateX(20%)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@keyframes tpfadeInDown {
|
||||
|
||||
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-20px);
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-right {
|
||||
0% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
|
||||
50% {
|
||||
-webkit-transform: translateX(20%);
|
||||
transform: translateX(20%)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fade-in {
|
||||
0% {
|
||||
opacity: .2
|
||||
}
|
||||
|
||||
40% {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: .2
|
||||
}
|
||||
|
||||
40% {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .2
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hvr-ripple-out {
|
||||
0% {
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
bottom: -5px;
|
||||
left: -5px
|
||||
}
|
||||
|
||||
50% {
|
||||
top: -15px;
|
||||
right: -15px;
|
||||
bottom: -15px;
|
||||
left: -15px;
|
||||
opacity: .8
|
||||
}
|
||||
|
||||
100% {
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
bottom: -5px;
|
||||
left: -5px;
|
||||
opacity: 1
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hvr-ripple-out-two {
|
||||
0% {
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
100% {
|
||||
top: -30px;
|
||||
right: -30px;
|
||||
bottom: -30px;
|
||||
left: -30px;
|
||||
opacity: 0
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-one {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-one {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-two {
|
||||
0% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(.8);
|
||||
transform: scale(.8)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-two {
|
||||
0% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(.8);
|
||||
transform: scale(.8)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(.5);
|
||||
transform: scale(.5)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scale-up-three {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(2);
|
||||
transform: scale(2)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scale-up-three {
|
||||
0% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: scale(2);
|
||||
transform: scale(2)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jump5p {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 5px, 0);
|
||||
transform: translate3d(0, 5px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jump5p {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, 5px, 0);
|
||||
transform: translate3d(0, 5px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes jump5pRsv {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, -5px, 0);
|
||||
transform: translate3d(0, -5px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes jump5pRsv {
|
||||
0% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
|
||||
40% {
|
||||
-webkit-transform: translate3d(0, -5px, 0);
|
||||
transform: translate3d(0, -5px, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes moveclouds {
|
||||
0% {
|
||||
margin-left: 200px
|
||||
}
|
||||
|
||||
100% {
|
||||
margin-left: -200px
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes moveclouds {
|
||||
0% {
|
||||
margin-left: 200px
|
||||
}
|
||||
|
||||
100% {
|
||||
margin-left: -200px
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes moveclouds2 {
|
||||
0% {
|
||||
margin-right: 200px
|
||||
}
|
||||
|
||||
100% {
|
||||
margin-right: -200px
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes moveclouds2 {
|
||||
0% {
|
||||
margin-right: 200px
|
||||
}
|
||||
|
||||
100% {
|
||||
margin-right: -200px
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes moveUp {
|
||||
0% {
|
||||
transform: translateY(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(-70%)
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes moveUp {
|
||||
0% {
|
||||
transform: translateY(0)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(-70%)
|
||||
}
|
||||
}
|
||||
@keyframes tpfadeUp {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(90px);
|
||||
transform: translateY(90px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.tpfadeUp {
|
||||
-webkit-animation-name: tpfadeUp;
|
||||
animation-name: tpfadeUp;
|
||||
}
|
||||
|
||||
@-webkit-keyframes tpfadeLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-100px);
|
||||
transform: translateX(-100px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tpfadeLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(-100px);
|
||||
-ms-transform: translateX(-100px);
|
||||
transform: translateX(-100px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.tpfadeLeft {
|
||||
-webkit-animation-name: tpfadeLeft;
|
||||
animation-name: tpfadeLeft;
|
||||
}
|
||||
|
||||
@-webkit-keyframes tpfadeRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(100px);
|
||||
transform: translateX(100px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tpfadeRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(100px);
|
||||
-ms-transform: translateX(100px);
|
||||
transform: translateX(100px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.tpfadeRight {
|
||||
-webkit-animation-name: tpfadeRight;
|
||||
animation-name: tpfadeRight;
|
||||
}
|
||||
|
||||
|
||||
@-webkit-keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(30px);
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(30px);
|
||||
-ms-transform: translateX(30px);
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
-webkit-animation-name: fadeInRight;
|
||||
animation-name: fadeInRight;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@-webkit-keyframes tpfadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tpfadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-50px);
|
||||
-ms-transform: translateY(-50px);
|
||||
transform: translateY(-50px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.tpfadeIn {
|
||||
-webkit-animation-name: tpfadeIn;
|
||||
animation-name: tpfadeIn;
|
||||
}
|
35
TaxPayerFull/wwwroot/css/flaticon.css
Normal file
35
TaxPayerFull/wwwroot/css/flaticon.css
Normal file
@@ -0,0 +1,35 @@
|
||||
@font-face {
|
||||
font-family: "flaticon";
|
||||
src: url("../fonts/fa-solid-900.ttf") format("truetype"),
|
||||
url("../fonts/fa-brands-400.woff") format("woff"),
|
||||
url("../fonts/fa-duotone-900.woff2") format("woff2"),
|
||||
url("../fonts/fa-regular-400.eot") format("embedded-opentype"),
|
||||
url("../fonts/fa-light-300.html") format("svg");
|
||||
}
|
||||
|
||||
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
|
||||
font-family: flaticon !important;
|
||||
font-style: normal;
|
||||
font-weight: normal !important;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.flaticon-vector:before {
|
||||
content: "\f101";
|
||||
}
|
||||
.flaticon-medal:before {
|
||||
content: "\f102";
|
||||
}
|
||||
.flaticon-app-development:before {
|
||||
content: "\f103";
|
||||
}
|
||||
.flaticon-programming:before {
|
||||
content: "\f104";
|
||||
}
|
||||
.flaticon-repairing-service:before {
|
||||
content: "\f105";
|
||||
}
|
5
TaxPayerFull/wwwroot/css/font-awesome-pro.css
Normal file
5
TaxPayerFull/wwwroot/css/font-awesome-pro.css
Normal file
File diff suppressed because one or more lines are too long
351
TaxPayerFull/wwwroot/css/magnific-popup.css
Normal file
351
TaxPayerFull/wwwroot/css/magnific-popup.css
Normal file
@@ -0,0 +1,351 @@
|
||||
/* Magnific Popup CSS */
|
||||
.mfp-bg {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1042;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
background: #0b0b0b;
|
||||
opacity: 0.8; }
|
||||
|
||||
.mfp-wrap {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1043;
|
||||
position: fixed;
|
||||
outline: none !important;
|
||||
-webkit-backface-visibility: hidden; }
|
||||
|
||||
.mfp-container {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
padding: 0 8px;
|
||||
box-sizing: border-box; }
|
||||
|
||||
.mfp-container:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
.mfp-align-top .mfp-container:before {
|
||||
display: none; }
|
||||
|
||||
.mfp-content {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
z-index: 1045; }
|
||||
|
||||
.mfp-inline-holder .mfp-content,
|
||||
.mfp-ajax-holder .mfp-content {
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-ajax-cur {
|
||||
cursor: progress; }
|
||||
|
||||
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||
cursor: -moz-zoom-out;
|
||||
cursor: -webkit-zoom-out;
|
||||
cursor: zoom-out; }
|
||||
|
||||
.mfp-zoom {
|
||||
cursor: pointer;
|
||||
cursor: -webkit-zoom-in;
|
||||
cursor: -moz-zoom-in;
|
||||
cursor: zoom-in; }
|
||||
|
||||
.mfp-auto-cursor .mfp-content {
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-close,
|
||||
.mfp-arrow,
|
||||
.mfp-preloader,
|
||||
.mfp-counter {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none; }
|
||||
|
||||
.mfp-loading.mfp-figure {
|
||||
display: none; }
|
||||
|
||||
.mfp-hide {
|
||||
display: none !important; }
|
||||
|
||||
.mfp-preloader {
|
||||
color: #CCC;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: auto;
|
||||
text-align: center;
|
||||
margin-top: -0.8em;
|
||||
left: 8px;
|
||||
right: 8px;
|
||||
z-index: 1044; }
|
||||
.mfp-preloader a {
|
||||
color: #CCC; }
|
||||
.mfp-preloader a:hover {
|
||||
color: #FFF; }
|
||||
|
||||
.mfp-s-ready .mfp-preloader {
|
||||
display: none; }
|
||||
|
||||
.mfp-s-error .mfp-content {
|
||||
display: none; }
|
||||
|
||||
button.mfp-close,
|
||||
button.mfp-arrow {
|
||||
overflow: visible;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
display: block;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
z-index: 1046;
|
||||
box-shadow: none;
|
||||
touch-action: manipulation; }
|
||||
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
.mfp-close {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
opacity: 0.65;
|
||||
padding: 0 0 18px 10px;
|
||||
color: #FFF;
|
||||
font-style: normal;
|
||||
font-size: 28px;
|
||||
font-family: Arial, Baskerville, monospace; }
|
||||
.mfp-close:hover,
|
||||
.mfp-close:focus {
|
||||
opacity: 1; }
|
||||
.mfp-close:active {
|
||||
top: 1px; }
|
||||
|
||||
.mfp-close-btn-in .mfp-close {
|
||||
color: #333; }
|
||||
|
||||
.mfp-image-holder .mfp-close,
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
color: #FFF;
|
||||
right: -6px;
|
||||
text-align: right;
|
||||
padding-right: 6px;
|
||||
width: 100%; }
|
||||
|
||||
.mfp-counter {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #CCC;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap; }
|
||||
|
||||
.mfp-arrow {
|
||||
position: absolute;
|
||||
opacity: 0.65;
|
||||
margin: 0;
|
||||
top: 50%;
|
||||
margin-top: -55px;
|
||||
padding: 0;
|
||||
width: 90px;
|
||||
height: 110px;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.mfp-arrow:active {
|
||||
margin-top: -54px; }
|
||||
.mfp-arrow:hover,
|
||||
.mfp-arrow:focus {
|
||||
opacity: 1; }
|
||||
.mfp-arrow:before,
|
||||
.mfp-arrow:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
margin-top: 35px;
|
||||
margin-left: 35px;
|
||||
border: medium inset transparent; }
|
||||
.mfp-arrow:after {
|
||||
border-top-width: 13px;
|
||||
border-bottom-width: 13px;
|
||||
top: 8px; }
|
||||
.mfp-arrow:before {
|
||||
border-top-width: 21px;
|
||||
border-bottom-width: 21px;
|
||||
opacity: 0.7; }
|
||||
|
||||
.mfp-arrow-left {
|
||||
left: 0; }
|
||||
.mfp-arrow-left:after {
|
||||
border-right: 17px solid #FFF;
|
||||
margin-left: 31px; }
|
||||
.mfp-arrow-left:before {
|
||||
margin-left: 25px;
|
||||
border-right: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-arrow-right {
|
||||
right: 0; }
|
||||
.mfp-arrow-right:after {
|
||||
border-left: 17px solid #FFF;
|
||||
margin-left: 39px; }
|
||||
.mfp-arrow-right:before {
|
||||
border-left: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-iframe-holder {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px; }
|
||||
.mfp-iframe-holder .mfp-content {
|
||||
line-height: 0;
|
||||
width: 100%;
|
||||
max-width: 900px; }
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
top: -40px; }
|
||||
|
||||
.mfp-iframe-scaler {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
padding-top: 56.25%; }
|
||||
.mfp-iframe-scaler iframe {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #000; }
|
||||
|
||||
/* Main image in popup */
|
||||
img.mfp-img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 40px 0 40px;
|
||||
margin: 0 auto; }
|
||||
|
||||
/* The shadow behind the image */
|
||||
.mfp-figure {
|
||||
line-height: 0; }
|
||||
.mfp-figure:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 40px;
|
||||
bottom: 40px;
|
||||
display: block;
|
||||
right: 0;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #444; }
|
||||
.mfp-figure small {
|
||||
color: #BDBDBD;
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 14px; }
|
||||
.mfp-figure figure {
|
||||
margin: 0; }
|
||||
|
||||
.mfp-bottom-bar {
|
||||
margin-top: -36px;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-title {
|
||||
text-align: left;
|
||||
line-height: 18px;
|
||||
color: #F3F3F3;
|
||||
word-wrap: break-word;
|
||||
padding-right: 36px; }
|
||||
|
||||
.mfp-image-holder .mfp-content {
|
||||
max-width: 100%; }
|
||||
|
||||
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||
cursor: pointer; }
|
||||
|
||||
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
||||
/**
|
||||
* Remove all paddings around the image on small screen
|
||||
*/
|
||||
.mfp-img-mobile .mfp-image-holder {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
.mfp-img-mobile img.mfp-img {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-figure:after {
|
||||
top: 0;
|
||||
bottom: 0; }
|
||||
.mfp-img-mobile .mfp-figure small {
|
||||
display: inline;
|
||||
margin-left: 5px; }
|
||||
.mfp-img-mobile .mfp-bottom-bar {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
top: auto;
|
||||
padding: 3px 5px;
|
||||
position: fixed;
|
||||
box-sizing: border-box; }
|
||||
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-counter {
|
||||
right: 5px;
|
||||
top: 3px; }
|
||||
.mfp-img-mobile .mfp-close {
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
padding: 0; } }
|
||||
|
||||
@media all and (max-width: 900px) {
|
||||
.mfp-arrow {
|
||||
-webkit-transform: scale(0.75);
|
||||
transform: scale(0.75); }
|
||||
.mfp-arrow-left {
|
||||
-webkit-transform-origin: 0;
|
||||
transform-origin: 0; }
|
||||
.mfp-arrow-right {
|
||||
-webkit-transform-origin: 100%;
|
||||
transform-origin: 100%; }
|
||||
.mfp-container {
|
||||
padding-left: 6px;
|
||||
padding-right: 6px; } }
|
156
TaxPayerFull/wwwroot/css/meanmenu.css
Normal file
156
TaxPayerFull/wwwroot/css/meanmenu.css
Normal file
@@ -0,0 +1,156 @@
|
||||
|
||||
/*! #######################################################################
|
||||
|
||||
MeanMenu 2.0.7
|
||||
--------
|
||||
|
||||
To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)
|
||||
|
||||
####################################################################### */
|
||||
|
||||
/* hide the link until viewport size is reached */
|
||||
a.meanmenu-reveal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* when under viewport size, .mean-container is added to body */
|
||||
.mean-container .mean-bar {
|
||||
float: left;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
background: #070337;
|
||||
padding: 4px 0;
|
||||
min-height: 42px;
|
||||
z-index: 999999;
|
||||
}
|
||||
|
||||
.mean-container a.meanmenu-reveal {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
padding: 13px 13px 11px 13px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
text-indent: -9999em;
|
||||
line-height: 22px;
|
||||
font-size: 1px;
|
||||
display: block;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.mean-container a.meanmenu-reveal span {
|
||||
display: block;
|
||||
background: #fff;
|
||||
height: 3px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav {
|
||||
float: left;
|
||||
width: 100%;
|
||||
background: #070337;
|
||||
margin-top: 44px;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li a {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 90%;
|
||||
padding: 10px 5%;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
color: #fff;
|
||||
border-top: 1px solid #e0e3ed;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li li a {
|
||||
width: 80%;
|
||||
padding: 10px 10%;
|
||||
text-shadow: none !important;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li.mean-last a {
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li li li a {
|
||||
width: 70%;
|
||||
padding: 10px 15%;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li li li li a {
|
||||
width: 60%;
|
||||
padding: 10px 20%;
|
||||
}
|
||||
|
||||
.mean-container .mean-nav ul li li li li li a {
|
||||
width: 50%;
|
||||
padding: 10px 25%;
|
||||
}
|
||||
|
||||
|
||||
.mean-container .mean-nav ul li a.mean-expand {
|
||||
margin-top: 1px;
|
||||
width: 26px;
|
||||
height: 32px;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 2;
|
||||
font-weight: 700;
|
||||
background: transparent;
|
||||
border: none !important;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.mean-container .mean-push {
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mean-nav .wrapper {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Fix for box sizing on Foundation Framework etc. */
|
||||
.mean-container .mean-bar, .mean-container .mean-bar * {
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
|
||||
.mean-remove {
|
||||
display: none !important;
|
||||
}
|
183
TaxPayerFull/wwwroot/css/nice-select.css
Normal file
183
TaxPayerFull/wwwroot/css/nice-select.css
Normal file
@@ -0,0 +1,183 @@
|
||||
|
||||
|
||||
.nice-select {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
background-color: #fff;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
clear: both;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
float: left;
|
||||
font-family: inherit;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
text-transform: capitalize;
|
||||
height: 42px;
|
||||
line-height: 40px;
|
||||
outline: none;
|
||||
padding-left: 18px;
|
||||
padding-right: 30px;
|
||||
position: relative;
|
||||
text-align: left !important;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.nice-select:hover {
|
||||
border-color: #dbdbdb;
|
||||
}
|
||||
|
||||
.nice-select:active,
|
||||
.nice-select.open,
|
||||
.nice-select:focus {
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
.nice-select:after {
|
||||
border-bottom: 2px solid #999;
|
||||
border-right: 2px solid #999;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 5px;
|
||||
margin-top: -4px;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
right: 12px;
|
||||
top: 50%;
|
||||
-webkit-transform-origin: 66% 66%;
|
||||
-ms-transform-origin: 66% 66%;
|
||||
transform-origin: 66% 66%;
|
||||
-webkit-transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
-webkit-transition: all 0.15s ease-in-out;
|
||||
transition: all 0.15s ease-in-out;
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
.nice-select.open:after {
|
||||
-webkit-transform: rotate(-135deg);
|
||||
-ms-transform: rotate(-135deg);
|
||||
transform: rotate(-135deg);
|
||||
}
|
||||
|
||||
.nice-select.open .list {
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
-webkit-transform: scale(1) translateY(0);
|
||||
-ms-transform: scale(1) translateY(0);
|
||||
transform: scale(1) translateY(0);
|
||||
}
|
||||
|
||||
.nice-select.disabled {
|
||||
border-color: #ededed;
|
||||
color: #999;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.nice-select.disabled:after {
|
||||
border-color: #cccccc;
|
||||
}
|
||||
|
||||
.nice-select.wide {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nice-select.wide .list {
|
||||
left: 0 !important;
|
||||
right: 0 !important;
|
||||
}
|
||||
|
||||
.nice-select.right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.nice-select.right .list {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.nice-select.small {
|
||||
font-size: 12px;
|
||||
height: 36px;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
.nice-select.small:after {
|
||||
height: 4px;
|
||||
width: 4px;
|
||||
}
|
||||
|
||||
.nice-select.small .option {
|
||||
line-height: 34px;
|
||||
min-height: 34px;
|
||||
}
|
||||
|
||||
.nice-select .list {
|
||||
background-color: #fff;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
|
||||
box-sizing: border-box;
|
||||
margin-top: 4px;
|
||||
opacity: 0;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
-webkit-transform-origin: 50% 0;
|
||||
-ms-transform-origin: 50% 0;
|
||||
transform-origin: 50% 0;
|
||||
-webkit-transform: scale(0.75) translateY(-21px);
|
||||
-ms-transform: scale(0.75) translateY(-21px);
|
||||
transform: scale(0.75) translateY(-21px);
|
||||
-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
|
||||
transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
|
||||
.nice-select .option {
|
||||
cursor: pointer;
|
||||
font-weight: 400;
|
||||
line-height: 40px;
|
||||
list-style: none;
|
||||
min-height: 40px;
|
||||
outline: none;
|
||||
padding-left: 18px;
|
||||
padding-right: 29px;
|
||||
text-align: left;
|
||||
-webkit-transition: all 0.2s;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.nice-select .option.selected {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nice-select .option.disabled {
|
||||
background-color: transparent;
|
||||
color: #999;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.no-csspointerevents .nice-select .list {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.no-csspointerevents .nice-select.open .list {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
1383
TaxPayerFull/wwwroot/css/rtl.css
Normal file
1383
TaxPayerFull/wwwroot/css/rtl.css
Normal file
File diff suppressed because it is too large
Load Diff
119
TaxPayerFull/wwwroot/css/slick.css
Normal file
119
TaxPayerFull/wwwroot/css/slick.css
Normal file
@@ -0,0 +1,119 @@
|
||||
/* Slider */
|
||||
.slick-slider
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
-webkit-touch-callout: none;
|
||||
-khtml-user-select: none;
|
||||
-ms-touch-action: pan-y;
|
||||
touch-action: pan-y;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.slick-list
|
||||
{
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.slick-list:focus
|
||||
{
|
||||
outline: none;
|
||||
}
|
||||
.slick-list.dragging
|
||||
{
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.slick-slider .slick-track,
|
||||
.slick-slider .slick-list
|
||||
{
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
-o-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
.slick-track
|
||||
{
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.slick-track:before,
|
||||
.slick-track:after
|
||||
{
|
||||
display: table;
|
||||
|
||||
content: '';
|
||||
}
|
||||
.slick-track:after
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
.slick-loading .slick-track
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.slick-slide
|
||||
{
|
||||
display: none;
|
||||
float: left;
|
||||
|
||||
height: 100%;
|
||||
min-height: 1px;
|
||||
}
|
||||
[dir='rtl'] .slick-slide
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.slick-slide img
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.slick-slide.slick-loading img
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
.slick-slide.dragging img
|
||||
{
|
||||
pointer-events: none;
|
||||
}
|
||||
.slick-initialized .slick-slide
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.slick-loading .slick-slide
|
||||
{
|
||||
visibility: hidden;
|
||||
}
|
||||
.slick-vertical .slick-slide
|
||||
{
|
||||
display: block;
|
||||
|
||||
height: auto;
|
||||
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.slick-arrow.slick-hidden {
|
||||
display: none;
|
||||
}
|
960
TaxPayerFull/wwwroot/css/spacing.css
Normal file
960
TaxPayerFull/wwwroot/css/spacing.css
Normal file
@@ -0,0 +1,960 @@
|
||||
.mt-5{
|
||||
margin-top:5px !important
|
||||
}
|
||||
.mt-10{
|
||||
margin-top:10px
|
||||
}
|
||||
.mt-15{
|
||||
margin-top:15px
|
||||
}
|
||||
.mt-20{
|
||||
margin-top:20px
|
||||
}
|
||||
.mt-25{
|
||||
margin-top:25px
|
||||
}
|
||||
.mt-30{
|
||||
margin-top:30px
|
||||
}
|
||||
.mt-35{
|
||||
margin-top:35px
|
||||
}
|
||||
.mt-40{
|
||||
margin-top:40px
|
||||
}
|
||||
.mt-45{
|
||||
margin-top:45px
|
||||
}
|
||||
.mt-50{
|
||||
margin-top:50px
|
||||
}
|
||||
.mt-55{
|
||||
margin-top:55px
|
||||
}
|
||||
.mt-60{
|
||||
margin-top:60px
|
||||
}
|
||||
.mt-65{
|
||||
margin-top:65px
|
||||
}
|
||||
.mt-70{
|
||||
margin-top:70px
|
||||
}
|
||||
.mt-75{
|
||||
margin-top:75px
|
||||
}
|
||||
.mt-80{
|
||||
margin-top:80px
|
||||
}
|
||||
.mt-85{
|
||||
margin-top:85px
|
||||
}
|
||||
.mt-90{
|
||||
margin-top:90px
|
||||
}
|
||||
.mt-95{
|
||||
margin-top:95px
|
||||
}
|
||||
.mt-100{
|
||||
margin-top:100px
|
||||
}
|
||||
.mt-105{
|
||||
margin-top:105px
|
||||
}
|
||||
.mt-110{
|
||||
margin-top:110px
|
||||
}
|
||||
.mt-115{
|
||||
margin-top:115px
|
||||
}
|
||||
.mt-120{
|
||||
margin-top:120px
|
||||
}
|
||||
.mt-125{
|
||||
margin-top:125px
|
||||
}
|
||||
.mt-130{
|
||||
margin-top:130px
|
||||
}
|
||||
.mt-135{
|
||||
margin-top:135px
|
||||
}
|
||||
.mt-140{
|
||||
margin-top:140px
|
||||
}
|
||||
.mt-145{
|
||||
margin-top:145px
|
||||
}
|
||||
.mt-150{
|
||||
margin-top:150px
|
||||
}
|
||||
.mt-155{
|
||||
margin-top:155px
|
||||
}
|
||||
.mt-160{
|
||||
margin-top:160px
|
||||
}
|
||||
.mt-165{
|
||||
margin-top:165px
|
||||
}
|
||||
.mt-170{
|
||||
margin-top:170px
|
||||
}
|
||||
.mt-175{
|
||||
margin-top:175px
|
||||
}
|
||||
.mt-180{
|
||||
margin-top:180px
|
||||
}
|
||||
.mt-185{
|
||||
margin-top:185px
|
||||
}
|
||||
.mt-190{
|
||||
margin-top:190px
|
||||
}
|
||||
.mt-195{
|
||||
margin-top:195px
|
||||
}
|
||||
.mt-200{
|
||||
margin-top:200px
|
||||
}
|
||||
.mb-5{
|
||||
margin-bottom:5px !important
|
||||
}
|
||||
.mb-10{
|
||||
margin-bottom:10px
|
||||
}
|
||||
.mb-15{
|
||||
margin-bottom:15px
|
||||
}
|
||||
.mb-20{
|
||||
margin-bottom:20px
|
||||
}
|
||||
.mb-25{
|
||||
margin-bottom:25px
|
||||
}
|
||||
.mb-30{
|
||||
margin-bottom:30px
|
||||
}
|
||||
.mb-35{
|
||||
margin-bottom:35px
|
||||
}
|
||||
.mb-40{
|
||||
margin-bottom:40px
|
||||
}
|
||||
.mb-45{
|
||||
margin-bottom:45px
|
||||
}
|
||||
.mb-50{
|
||||
margin-bottom:50px
|
||||
}
|
||||
.mb-55{
|
||||
margin-bottom:55px
|
||||
}
|
||||
.mb-60{
|
||||
margin-bottom:60px
|
||||
}
|
||||
.mb-65{
|
||||
margin-bottom:65px
|
||||
}
|
||||
.mb-70{
|
||||
margin-bottom:70px
|
||||
}
|
||||
.mb-75{
|
||||
margin-bottom:75px
|
||||
}
|
||||
.mb-80{
|
||||
margin-bottom:80px
|
||||
}
|
||||
.mb-85{
|
||||
margin-bottom:85px
|
||||
}
|
||||
.mb-90{
|
||||
margin-bottom:90px
|
||||
}
|
||||
.mb-95{
|
||||
margin-bottom:95px
|
||||
}
|
||||
.mb-100{
|
||||
margin-bottom:100px
|
||||
}
|
||||
.mb-105{
|
||||
margin-bottom:105px
|
||||
}
|
||||
.mb-110{
|
||||
margin-bottom:110px
|
||||
}
|
||||
.mb-115{
|
||||
margin-bottom:115px
|
||||
}
|
||||
.mb-120{
|
||||
margin-bottom:120px
|
||||
}
|
||||
.mb-125{
|
||||
margin-bottom:125px
|
||||
}
|
||||
.mb-130{
|
||||
margin-bottom:130px
|
||||
}
|
||||
.mb-135{
|
||||
margin-bottom:135px
|
||||
}
|
||||
.mb-140{
|
||||
margin-bottom:140px
|
||||
}
|
||||
.mb-145{
|
||||
margin-bottom:145px
|
||||
}
|
||||
.mb-150{
|
||||
margin-bottom:150px
|
||||
}
|
||||
.mb-155{
|
||||
margin-bottom:155px
|
||||
}
|
||||
.mb-160{
|
||||
margin-bottom:160px
|
||||
}
|
||||
.mb-165{
|
||||
margin-bottom:165px
|
||||
}
|
||||
.mb-170{
|
||||
margin-bottom:170px
|
||||
}
|
||||
.mb-175{
|
||||
margin-bottom:175px
|
||||
}
|
||||
.mb-180{
|
||||
margin-bottom:180px
|
||||
}
|
||||
.mb-185{
|
||||
margin-bottom:185px
|
||||
}
|
||||
.mb-190{
|
||||
margin-bottom:190px
|
||||
}
|
||||
.mb-195{
|
||||
margin-bottom:195px
|
||||
}
|
||||
.mb-200{
|
||||
margin-bottom:200px
|
||||
}
|
||||
.ml-5{
|
||||
margin-left:5px
|
||||
}
|
||||
.ml-10{
|
||||
margin-left:10px
|
||||
}
|
||||
.ml-15{
|
||||
margin-left:15px
|
||||
}
|
||||
.ml-20{
|
||||
margin-left:20px
|
||||
}
|
||||
.ml-25{
|
||||
margin-left:25px
|
||||
}
|
||||
.ml-30{
|
||||
margin-left:30px
|
||||
}
|
||||
.ml-35{
|
||||
margin-left:35px
|
||||
}
|
||||
.ml-40{
|
||||
margin-left:40px
|
||||
}
|
||||
.ml-45{
|
||||
margin-left:45px
|
||||
}
|
||||
.ml-50{
|
||||
margin-left:50px
|
||||
}
|
||||
.ml-55{
|
||||
margin-left:55px
|
||||
}
|
||||
.ml-60{
|
||||
margin-left:60px
|
||||
}
|
||||
.ml-65{
|
||||
margin-left:65px
|
||||
}
|
||||
.ml-70{
|
||||
margin-left:70px
|
||||
}
|
||||
.ml-75{
|
||||
margin-left:75px
|
||||
}
|
||||
.ml-80{
|
||||
margin-left:80px
|
||||
}
|
||||
.ml-85{
|
||||
margin-left:85px
|
||||
}
|
||||
.ml-90{
|
||||
margin-left:90px
|
||||
}
|
||||
.ml-95{
|
||||
margin-left:95px
|
||||
}
|
||||
.ml-100{
|
||||
margin-left:100px
|
||||
}
|
||||
.ml-105{
|
||||
margin-left:105px
|
||||
}
|
||||
.ml-110{
|
||||
margin-left:110px
|
||||
}
|
||||
.ml-115{
|
||||
margin-left:115px
|
||||
}
|
||||
.ml-120{
|
||||
margin-left:120px
|
||||
}
|
||||
.ml-125{
|
||||
margin-left:125px
|
||||
}
|
||||
.ml-130{
|
||||
margin-left:130px
|
||||
}
|
||||
.ml-135{
|
||||
margin-left:135px
|
||||
}
|
||||
.ml-140{
|
||||
margin-left:140px
|
||||
}
|
||||
.ml-145{
|
||||
margin-left:145px
|
||||
}
|
||||
.ml-150{
|
||||
margin-left:150px
|
||||
}
|
||||
.ml-155{
|
||||
margin-left:155px
|
||||
}
|
||||
.ml-160{
|
||||
margin-left:160px
|
||||
}
|
||||
.ml-165{
|
||||
margin-left:165px
|
||||
}
|
||||
.ml-170{
|
||||
margin-left:170px
|
||||
}
|
||||
.ml-175{
|
||||
margin-left:175px
|
||||
}
|
||||
.ml-180{
|
||||
margin-left:180px
|
||||
}
|
||||
.ml-185{
|
||||
margin-left:185px
|
||||
}
|
||||
.ml-190{
|
||||
margin-left:190px
|
||||
}
|
||||
.ml-195{
|
||||
margin-left:195px
|
||||
}
|
||||
.ml-200{
|
||||
margin-left:200px
|
||||
}
|
||||
.mr-5{
|
||||
margin-right:5px
|
||||
}
|
||||
.mr-10{
|
||||
margin-right:10px
|
||||
}
|
||||
.mr-15{
|
||||
margin-right:15px
|
||||
}
|
||||
.mr-20{
|
||||
margin-right:20px
|
||||
}
|
||||
.mr-25{
|
||||
margin-right:25px
|
||||
}
|
||||
.mr-30{
|
||||
margin-right:30px
|
||||
}
|
||||
.mr-35{
|
||||
margin-right:35px
|
||||
}
|
||||
.mr-40{
|
||||
margin-right:40px
|
||||
}
|
||||
.mr-45{
|
||||
margin-right:45px
|
||||
}
|
||||
.mr-50{
|
||||
margin-right:50px
|
||||
}
|
||||
.mr-55{
|
||||
margin-right:55px
|
||||
}
|
||||
.mr-60{
|
||||
margin-right:60px
|
||||
}
|
||||
.mr-65{
|
||||
margin-right:65px
|
||||
}
|
||||
.mr-70{
|
||||
margin-right:70px
|
||||
}
|
||||
.mr-75{
|
||||
margin-right:75px
|
||||
}
|
||||
.mr-80{
|
||||
margin-right:80px
|
||||
}
|
||||
.mr-85{
|
||||
margin-right:85px
|
||||
}
|
||||
.mr-90{
|
||||
margin-right:90px
|
||||
}
|
||||
.mr-95{
|
||||
margin-right:95px
|
||||
}
|
||||
.mr-100{
|
||||
margin-right:100px
|
||||
}
|
||||
.mr-105{
|
||||
margin-right:105px
|
||||
}
|
||||
.mr-110{
|
||||
margin-right:110px
|
||||
}
|
||||
.mr-115{
|
||||
margin-right:115px
|
||||
}
|
||||
.mr-120{
|
||||
margin-right:120px
|
||||
}
|
||||
.mr-125{
|
||||
margin-right:125px
|
||||
}
|
||||
.mr-130{
|
||||
margin-right:130px
|
||||
}
|
||||
.mr-135{
|
||||
margin-right:135px
|
||||
}
|
||||
.mr-140{
|
||||
margin-right:140px
|
||||
}
|
||||
.mr-145{
|
||||
margin-right:145px
|
||||
}
|
||||
.mr-150{
|
||||
margin-right:150px
|
||||
}
|
||||
.mr-155{
|
||||
margin-right:155px
|
||||
}
|
||||
.mr-160{
|
||||
margin-right:160px
|
||||
}
|
||||
.mr-165{
|
||||
margin-right:165px
|
||||
}
|
||||
.mr-170{
|
||||
margin-right:170px
|
||||
}
|
||||
.mr-175{
|
||||
margin-right:175px
|
||||
}
|
||||
.mr-180{
|
||||
margin-right:180px
|
||||
}
|
||||
.mr-185{
|
||||
margin-right:185px
|
||||
}
|
||||
.mr-190{
|
||||
margin-right:190px
|
||||
}
|
||||
.mr-195{
|
||||
margin-right:195px
|
||||
}
|
||||
.mr-200{
|
||||
margin-right:200px
|
||||
}
|
||||
.pt-5{
|
||||
padding-top:5px !important
|
||||
}
|
||||
.pt-10{
|
||||
padding-top:10px
|
||||
}
|
||||
.pt-15{
|
||||
padding-top:15px
|
||||
}
|
||||
.pt-20{
|
||||
padding-top:20px
|
||||
}
|
||||
.pt-25{
|
||||
padding-top:25px
|
||||
}
|
||||
.pt-30{
|
||||
padding-top:30px
|
||||
}
|
||||
.pt-35{
|
||||
padding-top:35px
|
||||
}
|
||||
.pt-40{
|
||||
padding-top:40px
|
||||
}
|
||||
.pt-45{
|
||||
padding-top:45px
|
||||
}
|
||||
.pt-50{
|
||||
padding-top:50px
|
||||
}
|
||||
.pt-55{
|
||||
padding-top:55px
|
||||
}
|
||||
.pt-60{
|
||||
padding-top:60px
|
||||
}
|
||||
.pt-65{
|
||||
padding-top:65px
|
||||
}
|
||||
.pt-70{
|
||||
padding-top:70px
|
||||
}
|
||||
.pt-75{
|
||||
padding-top:75px
|
||||
}
|
||||
.pt-80{
|
||||
padding-top:80px
|
||||
}
|
||||
.pt-85{
|
||||
padding-top:85px
|
||||
}
|
||||
.pt-90{
|
||||
padding-top:90px
|
||||
}
|
||||
.pt-95{
|
||||
padding-top:95px
|
||||
}
|
||||
.pt-100{
|
||||
padding-top:100px
|
||||
}
|
||||
.pt-105{
|
||||
padding-top:105px
|
||||
}
|
||||
.pt-110{
|
||||
padding-top:110px
|
||||
}
|
||||
.pt-115{
|
||||
padding-top:115px
|
||||
}
|
||||
.pt-120{
|
||||
padding-top:120px
|
||||
}
|
||||
.pt-125{
|
||||
padding-top:125px
|
||||
}
|
||||
.pt-130{
|
||||
padding-top:130px
|
||||
}
|
||||
.pt-135{
|
||||
padding-top:135px
|
||||
}
|
||||
.pt-140{
|
||||
padding-top:140px
|
||||
}
|
||||
.pt-145{
|
||||
padding-top:145px
|
||||
}
|
||||
.pt-150{
|
||||
padding-top:150px
|
||||
}
|
||||
.pt-155{
|
||||
padding-top:155px
|
||||
}
|
||||
.pt-160{
|
||||
padding-top:160px
|
||||
}
|
||||
.pt-165{
|
||||
padding-top:165px
|
||||
}
|
||||
.pt-170{
|
||||
padding-top:170px
|
||||
}
|
||||
.pt-175{
|
||||
padding-top:175px
|
||||
}
|
||||
.pt-180{
|
||||
padding-top:180px
|
||||
}
|
||||
.pt-185{
|
||||
padding-top:185px
|
||||
}
|
||||
.pt-190{
|
||||
padding-top:190px
|
||||
}
|
||||
.pt-195{
|
||||
padding-top:195px
|
||||
}
|
||||
.pt-200{
|
||||
padding-top:200px
|
||||
}
|
||||
.pb-5{
|
||||
padding-bottom:5px !important
|
||||
}
|
||||
.pb-10{
|
||||
padding-bottom:10px
|
||||
}
|
||||
.pb-15{
|
||||
padding-bottom:15px
|
||||
}
|
||||
.pb-20{
|
||||
padding-bottom:20px
|
||||
}
|
||||
.pb-25{
|
||||
padding-bottom:25px
|
||||
}
|
||||
.pb-30{
|
||||
padding-bottom:30px
|
||||
}
|
||||
.pb-35{
|
||||
padding-bottom:35px
|
||||
}
|
||||
.pb-40{
|
||||
padding-bottom:40px
|
||||
}
|
||||
.pb-45{
|
||||
padding-bottom:45px
|
||||
}
|
||||
.pb-50{
|
||||
padding-bottom:50px
|
||||
}
|
||||
.pb-55{
|
||||
padding-bottom:55px
|
||||
}
|
||||
.pb-60{
|
||||
padding-bottom:60px
|
||||
}
|
||||
.pb-65{
|
||||
padding-bottom:65px
|
||||
}
|
||||
.pb-70{
|
||||
padding-bottom:70px
|
||||
}
|
||||
.pb-75{
|
||||
padding-bottom:75px
|
||||
}
|
||||
.pb-80{
|
||||
padding-bottom:80px
|
||||
}
|
||||
.pb-85{
|
||||
padding-bottom:85px
|
||||
}
|
||||
.pb-90{
|
||||
padding-bottom:90px
|
||||
}
|
||||
.pb-95{
|
||||
padding-bottom:95px
|
||||
}
|
||||
.pb-100{
|
||||
padding-bottom:100px
|
||||
}
|
||||
.pb-105{
|
||||
padding-bottom:105px
|
||||
}
|
||||
.pb-110{
|
||||
padding-bottom:110px
|
||||
}
|
||||
.pb-115{
|
||||
padding-bottom:115px
|
||||
}
|
||||
.pb-120{
|
||||
padding-bottom:120px
|
||||
}
|
||||
.pb-125{
|
||||
padding-bottom:125px
|
||||
}
|
||||
.pb-130{
|
||||
padding-bottom:130px
|
||||
}
|
||||
.pb-135{
|
||||
padding-bottom:135px
|
||||
}
|
||||
.pb-140{
|
||||
padding-bottom:140px
|
||||
}
|
||||
.pb-145{
|
||||
padding-bottom:145px
|
||||
}
|
||||
.pb-150{
|
||||
padding-bottom:150px
|
||||
}
|
||||
.pb-155{
|
||||
padding-bottom:155px
|
||||
}
|
||||
.pb-160{
|
||||
padding-bottom:160px
|
||||
}
|
||||
.pb-165{
|
||||
padding-bottom:165px
|
||||
}
|
||||
.pb-170{
|
||||
padding-bottom:170px
|
||||
}
|
||||
.pb-175{
|
||||
padding-bottom:175px
|
||||
}
|
||||
.pb-180{
|
||||
padding-bottom:180px
|
||||
}
|
||||
.pb-185{
|
||||
padding-bottom:185px
|
||||
}
|
||||
.pb-190{
|
||||
padding-bottom:190px
|
||||
}
|
||||
.pb-195{
|
||||
padding-bottom:195px
|
||||
}
|
||||
.pb-200{
|
||||
padding-bottom:200px
|
||||
}
|
||||
.pl-5{
|
||||
padding-left:5px
|
||||
}
|
||||
.pl-10{
|
||||
padding-left:10px
|
||||
}
|
||||
.pl-15{
|
||||
padding-left:15px
|
||||
}
|
||||
.pl-20{
|
||||
padding-left:20px
|
||||
}
|
||||
.pl-25{
|
||||
padding-left:25px
|
||||
}
|
||||
.pl-30{
|
||||
padding-left:30px
|
||||
}
|
||||
.pl-35{
|
||||
padding-left:35px
|
||||
}
|
||||
.pl-40{
|
||||
padding-left:40px
|
||||
}
|
||||
.pl-45{
|
||||
padding-left:45px
|
||||
}
|
||||
.pl-50{
|
||||
padding-left:50px
|
||||
}
|
||||
.pl-55{
|
||||
padding-left:55px
|
||||
}
|
||||
.pl-60{
|
||||
padding-left:60px
|
||||
}
|
||||
.pl-65{
|
||||
padding-left:65px
|
||||
}
|
||||
.pl-70{
|
||||
padding-left:70px
|
||||
}
|
||||
.pl-75{
|
||||
padding-left:75px
|
||||
}
|
||||
.pl-80{
|
||||
padding-left:80px
|
||||
}
|
||||
.pl-85{
|
||||
padding-left:85px
|
||||
}
|
||||
.pl-90{
|
||||
padding-left:90px
|
||||
}
|
||||
.pl-95{
|
||||
padding-left:95px
|
||||
}
|
||||
.pl-100{
|
||||
padding-left:100px
|
||||
}
|
||||
.pl-105{
|
||||
padding-left:105px
|
||||
}
|
||||
.pl-110{
|
||||
padding-left:110px
|
||||
}
|
||||
.pl-115{
|
||||
padding-left:115px
|
||||
}
|
||||
.pl-120{
|
||||
padding-left:120px
|
||||
}
|
||||
.pl-125{
|
||||
padding-left:125px
|
||||
}
|
||||
.pl-130{
|
||||
padding-left:130px
|
||||
}
|
||||
.pl-135{
|
||||
padding-left:135px
|
||||
}
|
||||
.pl-140{
|
||||
padding-left:140px
|
||||
}
|
||||
.pl-145{
|
||||
padding-left:145px
|
||||
}
|
||||
.pl-150{
|
||||
padding-left:150px
|
||||
}
|
||||
.pl-155{
|
||||
padding-left:155px
|
||||
}
|
||||
.pl-160{
|
||||
padding-left:160px
|
||||
}
|
||||
.pl-165{
|
||||
padding-left:165px
|
||||
}
|
||||
.pl-170{
|
||||
padding-left:170px
|
||||
}
|
||||
.pl-175{
|
||||
padding-left:175px
|
||||
}
|
||||
.pl-180{
|
||||
padding-left:180px
|
||||
}
|
||||
.pl-185{
|
||||
padding-left:185px
|
||||
}
|
||||
.pl-190{
|
||||
padding-left:190px
|
||||
}
|
||||
.pl-195{
|
||||
padding-left:195px
|
||||
}
|
||||
.pl-200{
|
||||
padding-left:200px
|
||||
}
|
||||
.pr-5{
|
||||
padding-right:5px
|
||||
}
|
||||
.pr-10{
|
||||
padding-right:10px
|
||||
}
|
||||
.pr-15{
|
||||
padding-right:15px
|
||||
}
|
||||
.pr-20{
|
||||
padding-right:20px
|
||||
}
|
||||
.pr-25{
|
||||
padding-right:25px
|
||||
}
|
||||
.pr-30{
|
||||
padding-right:30px
|
||||
}
|
||||
.pr-35{
|
||||
padding-right:35px
|
||||
}
|
||||
.pr-40{
|
||||
padding-right:40px
|
||||
}
|
||||
.pr-45{
|
||||
padding-right:45px
|
||||
}
|
||||
.pr-50{
|
||||
padding-right:50px
|
||||
}
|
||||
.pr-55{
|
||||
padding-right:55px
|
||||
}
|
||||
.pr-60{
|
||||
padding-right:60px
|
||||
}
|
||||
.pr-65{
|
||||
padding-right:65px
|
||||
}
|
||||
.pr-70{
|
||||
padding-right:70px
|
||||
}
|
||||
.pr-75{
|
||||
padding-right:75px
|
||||
}
|
||||
.pr-80{
|
||||
padding-right:80px
|
||||
}
|
||||
.pr-85{
|
||||
padding-right:85px
|
||||
}
|
||||
.pr-90{
|
||||
padding-right:90px
|
||||
}
|
||||
.pr-95{
|
||||
padding-right:95px
|
||||
}
|
||||
.pr-100{
|
||||
padding-right:100px
|
||||
}
|
||||
.pr-105{
|
||||
padding-right:105px
|
||||
}
|
||||
.pr-110{
|
||||
padding-right:110px
|
||||
}
|
||||
.pr-115{
|
||||
padding-right:115px
|
||||
}
|
||||
.pr-120{
|
||||
padding-right:120px
|
||||
}
|
||||
.pr-125{
|
||||
padding-right:125px
|
||||
}
|
||||
.pr-130{
|
||||
padding-right:130px
|
||||
}
|
||||
.pr-135{
|
||||
padding-right:135px
|
||||
}
|
||||
.pr-140{
|
||||
padding-right:140px
|
||||
}
|
||||
.pr-145{
|
||||
padding-right:145px
|
||||
}
|
||||
.pr-150{
|
||||
padding-right:150px
|
||||
}
|
||||
.pr-155{
|
||||
padding-right:155px
|
||||
}
|
||||
.pr-160{
|
||||
padding-right:160px
|
||||
}
|
||||
.pr-165{
|
||||
padding-right:165px
|
||||
}
|
||||
.pr-170{
|
||||
padding-right:170px
|
||||
}
|
||||
.pr-175{
|
||||
padding-right:175px
|
||||
}
|
||||
.pr-180{
|
||||
padding-right:180px
|
||||
}
|
||||
.pr-185{
|
||||
padding-right:185px
|
||||
}
|
||||
.pr-190{
|
||||
padding-right:190px
|
||||
}
|
||||
.pr-195{
|
||||
padding-right:195px
|
||||
}
|
||||
.pr-200{
|
||||
padding-right:200px
|
||||
}
|
541
TaxPayerFull/wwwroot/css/swiper-bundle.css
Normal file
541
TaxPayerFull/wwwroot/css/swiper-bundle.css
Normal file
@@ -0,0 +1,541 @@
|
||||
/**
|
||||
* Swiper 6.5.0
|
||||
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
||||
* https://swiperjs.com
|
||||
*
|
||||
* Copyright 2014-2021 Vladimir Kharlampidi
|
||||
*
|
||||
* Released under the MIT License
|
||||
*
|
||||
* Released on: March 5, 2021
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'swiper-icons';
|
||||
src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
:root {
|
||||
--swiper-theme-color: #007aff;
|
||||
}
|
||||
.swiper-container {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
/* Fix of Webkit flickering */
|
||||
z-index: 1;
|
||||
}
|
||||
.swiper-container-vertical > .swiper-wrapper {
|
||||
flex-direction: column;
|
||||
}
|
||||
.swiper-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
transition-property: transform;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.swiper-container-android .swiper-slide,
|
||||
.swiper-wrapper {
|
||||
transform: translate3d(0px, 0, 0);
|
||||
}
|
||||
.swiper-container-multirow > .swiper-wrapper {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.swiper-container-multirow-column > .swiper-wrapper {
|
||||
flex-wrap: wrap;
|
||||
flex-direction: column;
|
||||
}
|
||||
.swiper-container-free-mode > .swiper-wrapper {
|
||||
transition-timing-function: ease-out;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.swiper-container-pointer-events {
|
||||
touch-action: pan-y;
|
||||
}
|
||||
.swiper-container-pointer-events.swiper-container-vertical {
|
||||
touch-action: pan-x;
|
||||
}
|
||||
.swiper-slide {
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
transition-property: transform;
|
||||
}
|
||||
.swiper-slide-invisible-blank {
|
||||
visibility: hidden;
|
||||
}
|
||||
/* Auto Height */
|
||||
.swiper-container-autoheight,
|
||||
.swiper-container-autoheight .swiper-slide {
|
||||
height: auto;
|
||||
}
|
||||
.swiper-container-autoheight .swiper-wrapper {
|
||||
align-items: flex-start;
|
||||
transition-property: transform, height;
|
||||
}
|
||||
/* 3D Effects */
|
||||
.swiper-container-3d {
|
||||
perspective: 1200px;
|
||||
}
|
||||
.swiper-container-3d .swiper-wrapper,
|
||||
.swiper-container-3d .swiper-slide,
|
||||
.swiper-container-3d .swiper-slide-shadow-left,
|
||||
.swiper-container-3d .swiper-slide-shadow-right,
|
||||
.swiper-container-3d .swiper-slide-shadow-top,
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom,
|
||||
.swiper-container-3d .swiper-cube-shadow {
|
||||
transform-style: preserve-3d;
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-left,
|
||||
.swiper-container-3d .swiper-slide-shadow-right,
|
||||
.swiper-container-3d .swiper-slide-shadow-top,
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 10;
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-left {
|
||||
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-right {
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-top {
|
||||
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
.swiper-container-3d .swiper-slide-shadow-bottom {
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
||||
}
|
||||
/* CSS Mode */
|
||||
.swiper-container-css-mode > .swiper-wrapper {
|
||||
overflow: auto;
|
||||
scrollbar-width: none;
|
||||
/* For Firefox */
|
||||
-ms-overflow-style: none;
|
||||
/* For Internet Explorer and Edge */
|
||||
}
|
||||
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
|
||||
scroll-snap-align: start start;
|
||||
}
|
||||
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
|
||||
scroll-snap-type: x mandatory;
|
||||
}
|
||||
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
|
||||
scroll-snap-type: y mandatory;
|
||||
}
|
||||
:root {
|
||||
--swiper-navigation-size: 44px;
|
||||
/*
|
||||
--swiper-navigation-color: var(--swiper-theme-color);
|
||||
*/
|
||||
}
|
||||
.swiper-button-prev,
|
||||
.swiper-button-next {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 10;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.swiper-button-prev.swiper-button-disabled,
|
||||
.swiper-button-next.swiper-button-disabled {
|
||||
opacity: 0.7;
|
||||
cursor: auto;
|
||||
pointer-events: none;
|
||||
}
|
||||
.swiper-button-prev:after,
|
||||
.swiper-button-next:after {
|
||||
font-family: swiper-icons;
|
||||
text-transform: none !important;
|
||||
letter-spacing: 0;
|
||||
text-transform: none;
|
||||
font-variant: initial;
|
||||
line-height: 1;
|
||||
}
|
||||
.swiper-button-prev,
|
||||
.swiper-container-rtl .swiper-button-next {
|
||||
left: 10px;
|
||||
right: auto;
|
||||
}
|
||||
.swiper-button-prev:after,
|
||||
.swiper-container-rtl .swiper-button-next:after {
|
||||
content: 'prev';
|
||||
}
|
||||
.swiper-button-next,
|
||||
.swiper-container-rtl .swiper-button-prev {
|
||||
right: 10px;
|
||||
left: auto;
|
||||
}
|
||||
.swiper-button-next:after,
|
||||
.swiper-container-rtl .swiper-button-prev:after {
|
||||
content: 'next';
|
||||
}
|
||||
.swiper-button-prev.swiper-button-white,
|
||||
.swiper-button-next.swiper-button-white {
|
||||
--swiper-navigation-color: #ffffff;
|
||||
}
|
||||
.swiper-button-prev.swiper-button-black,
|
||||
.swiper-button-next.swiper-button-black {
|
||||
--swiper-navigation-color: #000000;
|
||||
}
|
||||
.swiper-button-lock {
|
||||
display: none;
|
||||
}
|
||||
:root {
|
||||
/*
|
||||
--swiper-pagination-color: var(--swiper-theme-color);
|
||||
*/
|
||||
}
|
||||
.swiper-pagination {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
transition: 300ms opacity;
|
||||
transform: translate3d(0, 0, 0);
|
||||
z-index: 10;
|
||||
}
|
||||
.swiper-pagination.swiper-pagination-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
/* Common Styles */
|
||||
.swiper-pagination-fraction,
|
||||
.swiper-pagination-custom,
|
||||
.swiper-container-horizontal > .swiper-pagination-bullets {
|
||||
bottom: 10px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
/* Bullets */
|
||||
.swiper-pagination-bullets-dynamic {
|
||||
overflow: hidden;
|
||||
font-size: 0;
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transform: scale(0.33);
|
||||
position: relative;
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
|
||||
transform: scale(1);
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
|
||||
transform: scale(1);
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
||||
transform: scale(0.66);
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
|
||||
transform: scale(0.33);
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
|
||||
transform: scale(0.66);
|
||||
}
|
||||
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
||||
transform: scale(0.33);
|
||||
}
|
||||
.swiper-pagination-bullet {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
display: inline-block;
|
||||
border-radius: 50%;
|
||||
background: #000;
|
||||
opacity: 0.2;
|
||||
}
|
||||
button.swiper-pagination-bullet {
|
||||
border: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
.swiper-pagination-clickable .swiper-pagination-bullet {
|
||||
cursor: pointer;
|
||||
}
|
||||
.swiper-pagination-bullet-active {
|
||||
opacity: 1;
|
||||
background: var(--swiper-pagination-color, var(--swiper-theme-color));
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-bullets {
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
transform: translate3d(0px, -50%, 0);
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 6px 0;
|
||||
display: block;
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 8px;
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
display: inline-block;
|
||||
transition: 200ms transform, 200ms top;
|
||||
}
|
||||
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
|
||||
margin: 0 4px;
|
||||
}
|
||||
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
white-space: nowrap;
|
||||
}
|
||||
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transition: 200ms transform, 200ms left;
|
||||
}
|
||||
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||
transition: 200ms transform, 200ms right;
|
||||
}
|
||||
/* Progress */
|
||||
.swiper-pagination-progressbar {
|
||||
background: rgba(0, 0, 0, 0.25);
|
||||
position: absolute;
|
||||
}
|
||||
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
background: var(--swiper-pagination-color, var(--swiper-theme-color));
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: scale(0);
|
||||
transform-origin: left top;
|
||||
}
|
||||
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||
transform-origin: right top;
|
||||
}
|
||||
.swiper-container-horizontal > .swiper-pagination-progressbar,
|
||||
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.swiper-container-vertical > .swiper-pagination-progressbar,
|
||||
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.swiper-pagination-white {
|
||||
--swiper-pagination-color: #ffffff;
|
||||
}
|
||||
.swiper-pagination-black {
|
||||
--swiper-pagination-color: #000000;
|
||||
}
|
||||
.swiper-pagination-lock {
|
||||
display: none;
|
||||
}
|
||||
/* Scrollbar */
|
||||
.swiper-scrollbar {
|
||||
border-radius: 10px;
|
||||
position: relative;
|
||||
-ms-touch-action: none;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.swiper-container-horizontal > .swiper-scrollbar {
|
||||
position: absolute;
|
||||
left: 1%;
|
||||
bottom: 3px;
|
||||
z-index: 50;
|
||||
height: 5px;
|
||||
width: 98%;
|
||||
}
|
||||
.swiper-container-vertical > .swiper-scrollbar {
|
||||
position: absolute;
|
||||
right: 3px;
|
||||
top: 1%;
|
||||
z-index: 50;
|
||||
width: 5px;
|
||||
height: 98%;
|
||||
}
|
||||
.swiper-scrollbar-drag {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
.swiper-scrollbar-cursor-drag {
|
||||
cursor: move;
|
||||
}
|
||||
.swiper-scrollbar-lock {
|
||||
display: none;
|
||||
}
|
||||
.swiper-zoom-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
.swiper-zoom-container > img,
|
||||
.swiper-zoom-container > svg,
|
||||
.swiper-zoom-container > canvas {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
.swiper-slide-zoomed {
|
||||
cursor: move;
|
||||
}
|
||||
/* Preloader */
|
||||
:root {
|
||||
/*
|
||||
--swiper-preloader-color: var(--swiper-theme-color);
|
||||
*/
|
||||
}
|
||||
.swiper-lazy-preloader {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -21px;
|
||||
margin-top: -21px;
|
||||
z-index: 10;
|
||||
transform-origin: 50%;
|
||||
animation: swiper-preloader-spin 1s infinite linear;
|
||||
box-sizing: border-box;
|
||||
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
|
||||
border-radius: 50%;
|
||||
border-top-color: transparent;
|
||||
}
|
||||
.swiper-lazy-preloader-white {
|
||||
--swiper-preloader-color: #fff;
|
||||
}
|
||||
.swiper-lazy-preloader-black {
|
||||
--swiper-preloader-color: #000;
|
||||
}
|
||||
@keyframes swiper-preloader-spin {
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
/* a11y */
|
||||
.swiper-container .swiper-notification {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
z-index: -1000;
|
||||
}
|
||||
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide {
|
||||
pointer-events: none;
|
||||
transition-property: opacity;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide .swiper-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
.swiper-container-fade .swiper-slide-active,
|
||||
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
.swiper-container-cube {
|
||||
overflow: visible;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide {
|
||||
pointer-events: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
z-index: 1;
|
||||
visibility: hidden;
|
||||
transform-origin: 0 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide .swiper-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
.swiper-container-cube.swiper-container-rtl .swiper-slide {
|
||||
transform-origin: 100% 0;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide-active,
|
||||
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide-active,
|
||||
.swiper-container-cube .swiper-slide-next,
|
||||
.swiper-container-cube .swiper-slide-prev,
|
||||
.swiper-container-cube .swiper-slide-next + .swiper-slide {
|
||||
pointer-events: auto;
|
||||
visibility: visible;
|
||||
}
|
||||
.swiper-container-cube .swiper-slide-shadow-top,
|
||||
.swiper-container-cube .swiper-slide-shadow-bottom,
|
||||
.swiper-container-cube .swiper-slide-shadow-left,
|
||||
.swiper-container-cube .swiper-slide-shadow-right {
|
||||
z-index: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
.swiper-container-cube .swiper-cube-shadow {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0.6;
|
||||
z-index: 0;
|
||||
}
|
||||
.swiper-container-cube .swiper-cube-shadow:before {
|
||||
content: '';
|
||||
background: #000;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
-webkit-filter: blur(50px);
|
||||
filter: blur(50px);
|
||||
}
|
||||
.swiper-container-flip {
|
||||
overflow: visible;
|
||||
}
|
||||
.swiper-container-flip .swiper-slide {
|
||||
pointer-events: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
.swiper-container-flip .swiper-slide .swiper-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
.swiper-container-flip .swiper-slide-active,
|
||||
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
.swiper-container-flip .swiper-slide-shadow-top,
|
||||
.swiper-container-flip .swiper-slide-shadow-bottom,
|
||||
.swiper-container-flip .swiper-slide-shadow-left,
|
||||
.swiper-container-flip .swiper-slide-shadow-right {
|
||||
z-index: 0;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
BIN
TaxPayerFull/wwwroot/favicon.png
Normal file
BIN
TaxPayerFull/wwwroot/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.eot
Normal file
Binary file not shown.
61
TaxPayerFull/wwwroot/fonts/fa-brands-400.html
Normal file
61
TaxPayerFull/wwwroot/fonts/fa-brands-400.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
@charset "UTF-8";
|
||||
[ng\:cloak],
|
||||
[ng-cloak],
|
||||
[data-ng-cloak],
|
||||
[x-ng-cloak],
|
||||
.ng-cloak,
|
||||
.x-ng-cloak,
|
||||
.ng-hide:not(.ng-hide-animate) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ng\:form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ng-animate-shim {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ng-anchor {
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Oops, something lost</title>
|
||||
<meta name="description" content="Oops, looks like the page is lost. Start your website on the cheap.">
|
||||
<link media="all" rel="stylesheet" href="/htdocs_error/style.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-26575989-46', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="error" id="error">
|
||||
<div class="container">
|
||||
<div class="content centered"><img style="width:500px;" src="/htdocs_error/something-lost.png">
|
||||
<h1>Oops, looks like the page is lost.</h1>
|
||||
<p style="font-size:22px;" class="sub-header text-block-narrow">This is not a fault, just an accident that was not intentional.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400d41d.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-brands-400d41d.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.eot
Normal file
Binary file not shown.
61
TaxPayerFull/wwwroot/fonts/fa-duotone-900.html
Normal file
61
TaxPayerFull/wwwroot/fonts/fa-duotone-900.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
@charset "UTF-8";
|
||||
[ng\:cloak],
|
||||
[ng-cloak],
|
||||
[data-ng-cloak],
|
||||
[x-ng-cloak],
|
||||
.ng-cloak,
|
||||
.x-ng-cloak,
|
||||
.ng-hide:not(.ng-hide-animate) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ng\:form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ng-animate-shim {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ng-anchor {
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Oops, something lost</title>
|
||||
<meta name="description" content="Oops, looks like the page is lost. Start your website on the cheap.">
|
||||
<link media="all" rel="stylesheet" href="/htdocs_error/style.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-26575989-46', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="error" id="error">
|
||||
<div class="container">
|
||||
<div class="content centered"><img style="width:500px;" src="/htdocs_error/something-lost.png">
|
||||
<h1>Oops, looks like the page is lost.</h1>
|
||||
<p style="font-size:22px;" class="sub-header text-block-narrow">This is not a fault, just an accident that was not intentional.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900d41d.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-duotone-900d41d.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.eot
Normal file
Binary file not shown.
61
TaxPayerFull/wwwroot/fonts/fa-light-300.html
Normal file
61
TaxPayerFull/wwwroot/fonts/fa-light-300.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
@charset "UTF-8";
|
||||
[ng\:cloak],
|
||||
[ng-cloak],
|
||||
[data-ng-cloak],
|
||||
[x-ng-cloak],
|
||||
.ng-cloak,
|
||||
.x-ng-cloak,
|
||||
.ng-hide:not(.ng-hide-animate) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ng\:form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ng-animate-shim {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ng-anchor {
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Oops, something lost</title>
|
||||
<meta name="description" content="Oops, looks like the page is lost. Start your website on the cheap.">
|
||||
<link media="all" rel="stylesheet" href="/htdocs_error/style.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-26575989-46', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="error" id="error">
|
||||
<div class="container">
|
||||
<div class="content centered"><img style="width:500px;" src="/htdocs_error/something-lost.png">
|
||||
<h1>Oops, looks like the page is lost.</h1>
|
||||
<p style="font-size:22px;" class="sub-header text-block-narrow">This is not a fault, just an accident that was not intentional.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300d41d.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-light-300d41d.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.eot
Normal file
Binary file not shown.
61
TaxPayerFull/wwwroot/fonts/fa-regular-400.html
Normal file
61
TaxPayerFull/wwwroot/fonts/fa-regular-400.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
@charset "UTF-8";
|
||||
[ng\:cloak],
|
||||
[ng-cloak],
|
||||
[data-ng-cloak],
|
||||
[x-ng-cloak],
|
||||
.ng-cloak,
|
||||
.x-ng-cloak,
|
||||
.ng-hide:not(.ng-hide-animate) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ng\:form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ng-animate-shim {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ng-anchor {
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Oops, something lost</title>
|
||||
<meta name="description" content="Oops, looks like the page is lost. Start your website on the cheap.">
|
||||
<link media="all" rel="stylesheet" href="/htdocs_error/style.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-26575989-46', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="error" id="error">
|
||||
<div class="container">
|
||||
<div class="content centered"><img style="width:500px;" src="/htdocs_error/something-lost.png">
|
||||
<h1>Oops, looks like the page is lost.</h1>
|
||||
<p style="font-size:22px;" class="sub-header text-block-narrow">This is not a fault, just an accident that was not intentional.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400d41d.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-regular-400d41d.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.eot
Normal file
Binary file not shown.
61
TaxPayerFull/wwwroot/fonts/fa-solid-900.html
Normal file
61
TaxPayerFull/wwwroot/fonts/fa-solid-900.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<style type="text/css">
|
||||
@charset "UTF-8";
|
||||
[ng\:cloak],
|
||||
[ng-cloak],
|
||||
[data-ng-cloak],
|
||||
[x-ng-cloak],
|
||||
.ng-cloak,
|
||||
.x-ng-cloak,
|
||||
.ng-hide:not(.ng-hide-animate) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
ng\:form {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ng-animate-shim {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ng-anchor {
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Oops, something lost</title>
|
||||
<meta name="description" content="Oops, looks like the page is lost. Start your website on the cheap.">
|
||||
<link media="all" rel="stylesheet" href="/htdocs_error/style.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', 'UA-26575989-46', 'auto');
|
||||
ga('send', 'pageview');
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="error" id="error">
|
||||
<div class="container">
|
||||
<div class="content centered"><img style="width:500px;" src="/htdocs_error/something-lost.png">
|
||||
<h1>Oops, looks like the page is lost.</h1>
|
||||
<p style="font-size:22px;" class="sub-header text-block-narrow">This is not a fault, just an accident that was not intentional.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900d41d.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/fa-solid-900d41d.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/Yekan-Boom.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/Yekan-Boom.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/Yekan-Boom.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/Yekan-Boom.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-300.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-400.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-500.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/estedad-700.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-300.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-400.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.eot
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.ttf
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.ttf
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.woff
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.woff
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.woff2
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-500.woff2
Normal file
Binary file not shown.
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-700.eot
Normal file
BIN
TaxPayerFull/wwwroot/fonts/persian/iran-yekan-700.eot
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user