first commit
21
public/.htaccess
Normal file
@@ -0,0 +1,21 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
||||
0
public/favicon.ico
Normal file
BIN
public/images/WamfoButton2.gif
Normal file
|
After Width: | Height: | Size: 242 KiB |
55
public/index.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Contracts\Http\Kernel;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Check If The Application Is Under Maintenance
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If the application is in maintenance / demo mode via the "down" command
|
||||
| we will load this file so that any pre-rendered content can be shown
|
||||
| instead of starting the framework, which could cause an exception.
|
||||
|
|
||||
*/
|
||||
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register The Auto Loader
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Composer provides a convenient, automatically generated class loader for
|
||||
| this application. We just need to utilize it! We'll simply require it
|
||||
| into the script here so we don't need to manually load our classes.
|
||||
|
|
||||
*/
|
||||
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Run The Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Once we have the application, we can handle the incoming request using
|
||||
| the application's HTTP kernel. Then, we will send the response back
|
||||
| to this client's browser, allowing them to enjoy our application.
|
||||
|
|
||||
*/
|
||||
|
||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
|
||||
$kernel = $app->make(Kernel::class);
|
||||
|
||||
$response = $kernel->handle(
|
||||
$request = Request::capture()
|
||||
)->send();
|
||||
|
||||
$kernel->terminate($request, $response);
|
||||
3
public/mix-manifest.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"/js/app.js": "/js/app.js"
|
||||
}
|
||||
2
public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||
BIN
public/themes/tailwind/.DS_Store
vendored
Normal file
260
public/themes/tailwind/css/16-scrollbar-styles-scrollbar.css
Normal file
@@ -0,0 +1,260 @@
|
||||
.sc-overflow {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.scstyle-1::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
border-radius: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-1::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-1::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||||
background-color: #555;
|
||||
}
|
||||
|
||||
.scstyle-2::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
border-radius: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-2::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-2::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||||
background-color: #D62929;
|
||||
}
|
||||
|
||||
.scstyle-3::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-3::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-3::-webkit-scrollbar-thumb {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.scstyle-4::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-4::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-4::-webkit-scrollbar-thumb {
|
||||
background-color: #000000;
|
||||
border: 2px solid #555555;
|
||||
}
|
||||
|
||||
.scstyle-5::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-5::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-5::-webkit-scrollbar-thumb {
|
||||
background-color: #0ae;
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.5, transparent), to(transparent));
|
||||
}
|
||||
|
||||
.scstyle-6::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-6::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-6::-webkit-scrollbar-thumb {
|
||||
background-color: #F90;
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.scstyle-7::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.scstyle-7::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
background-color: #F5F5F5;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.scstyle-7::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148)));
|
||||
}
|
||||
|
||||
.scstyle-8::-webkit-scrollbar-track {
|
||||
border: 1px solid black;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-8::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-8::-webkit-scrollbar-thumb {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.scstyle-9::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-9::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-9::-webkit-scrollbar-thumb {
|
||||
background-color: #F90;
|
||||
background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.scstyle-10::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.scstyle-10::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-10::-webkit-scrollbar-thumb {
|
||||
background-color: #AAA;
|
||||
border-radius: 10px;
|
||||
background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, .2) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .2) 50%, rgba(0, 0, 0, .2) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.scstyle-11::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #F5F5F5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.scstyle-11::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-11::-webkit-scrollbar-thumb {
|
||||
background-color: #3366FF;
|
||||
border-radius: 10px;
|
||||
background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.scstyle-12::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
|
||||
border-radius: 10px;
|
||||
background-color: #444444;
|
||||
}
|
||||
|
||||
.scstyle-12::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-12::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-color: #D62929;
|
||||
background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent);
|
||||
}
|
||||
|
||||
.scstyle-13::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
|
||||
border-radius: 10px;
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
.scstyle-13::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-13::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-color: #D62929;
|
||||
background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent);
|
||||
}
|
||||
|
||||
.scstyle-14::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
.scstyle-14::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-14::-webkit-scrollbar-thumb {
|
||||
background-color: #FFF;
|
||||
background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 25%, transparent 100%, rgba(0, 0, 0, 1) 75%, transparent);
|
||||
}
|
||||
|
||||
.scstyle-15::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
|
||||
background-color: #F5F5F5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.scstyle-15::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-15::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-color: #FFF;
|
||||
background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#c6e6d7), to(#e7e63b));
|
||||
}
|
||||
|
||||
.scstyle-16::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
|
||||
background-color: #F5F5F5;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.scstyle-16::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
|
||||
.scstyle-16::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
background-color: #FFF;
|
||||
background-image: -webkit-linear-gradient(top, #e4f5fc 0%, #bfe8f9 50%, #9fd8ef 51%, #2ab0ed 100%);
|
||||
}
|
||||
|
||||
95
public/themes/tailwind/css/Drag--Drop-Upload-Form.css
Normal file
@@ -0,0 +1,95 @@
|
||||
*, *:before, *:after {
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus, select:focus, textarea:focus, button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.drop {
|
||||
width: 90%;
|
||||
height: 220px;
|
||||
border: 3px dashed #DADFE3;
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
background: transparent;
|
||||
-moz-transition: all 0.5s ease-out;
|
||||
transition: all 0.5s ease-out;
|
||||
margin-top: 0px;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
margin-bottom: 10px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.drop .cont {
|
||||
width: 500px;
|
||||
height: 170px;
|
||||
color: #8E99A5;
|
||||
-moz-transition: all 0.5s ease-out;
|
||||
transition: all 0.5s ease-out;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.drop .cont i {
|
||||
font-size: 40px;
|
||||
color: #787e85;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.drop .cont .tit {
|
||||
font-size: 12px;
|
||||
color: #009B9A;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.drop .cont .desc {
|
||||
color: #787e85;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.drop .cont .browse {
|
||||
margin: 10px 25%;
|
||||
color: white;
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
background: #00c993;
|
||||
}
|
||||
|
||||
.drop input {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
cursor: pointer;
|
||||
background: red;
|
||||
opacity: 0;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#list {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.dashed_upload {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
1
public/themes/tailwind/css/app.css
Normal file
9
public/themes/tailwind/css/bootstrap.min.css
vendored
Normal file
331
public/themes/tailwind/css/cms-dashboard-style.css
Normal file
@@ -0,0 +1,331 @@
|
||||
.red-btn {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
line-height: 27px;
|
||||
letter-spacing: 0em;
|
||||
text-align: center;
|
||||
background-color: #9B0025;
|
||||
padding: 13px 10px;
|
||||
border: 0 !important;
|
||||
color: #fff !important;
|
||||
width: 340px;
|
||||
max-width: 100%;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.green-btn {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
line-height: 27px;
|
||||
letter-spacing: 0em;
|
||||
text-align: center;
|
||||
background: linear-gradient(90deg, #62C5BD 0%, #C8E1A4 100%);
|
||||
padding: 13px 10px;
|
||||
border: 0 !important;
|
||||
width: 340px;
|
||||
max-width: 100%;
|
||||
box-shadow: none !important;
|
||||
color: #575757 !important;
|
||||
}
|
||||
|
||||
.br-0 {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
.mr-0 {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
.w-fit-content {
|
||||
width: fit-content !important;
|
||||
}
|
||||
.text-uppercase {
|
||||
text-transform: uppercase !important;
|
||||
}
|
||||
|
||||
.dropdown.non-custom {
|
||||
position: relative !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 0 !important;
|
||||
width: initial !important;
|
||||
background: initial !important;
|
||||
display: block !important;
|
||||
}
|
||||
.dropdown.non-custom .dropdown-menu {
|
||||
padding: 10px;
|
||||
}
|
||||
.dropdown.non-custom .dropdown-menu .dropdown-item {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
line-height: 22px;
|
||||
letter-spacing: 0px;
|
||||
padding: 11px 5px;
|
||||
color: #636363;
|
||||
}
|
||||
.dropdown.non-custom .dropdown-menu .dropdown-item:focus, .dropdown.non-custom .dropdown-menu .dropdown-item:hover, .dropdown.non-custom .dropdown-menu .dropdown-item:active {
|
||||
background-color: #F5F5F5;
|
||||
color: #636363;
|
||||
}
|
||||
|
||||
.modal-740px {
|
||||
max-width: 740px;
|
||||
}
|
||||
|
||||
.custom-modal .modal-content {
|
||||
overflow: hidden;
|
||||
padding: 50px;
|
||||
}
|
||||
.custom-modal .modal-content .modal-title {
|
||||
margin-bottom: 50px;
|
||||
color: #364257;
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
line-height: 33px;
|
||||
letter-spacing: 0em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.theme-form label.col-form-label {
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0px;
|
||||
color: #364257;
|
||||
}
|
||||
.theme-form input[type="text"], .theme-form input[type="number"], .theme-form input[type="tel"], .theme-form select, .theme-form input[type="password"], .theme-form input[type="email"], .theme-form textarea {
|
||||
padding: 15px 20px;
|
||||
border-radius: 1px;
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #6D7581;
|
||||
color: #364257;
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0em;
|
||||
}
|
||||
.theme-form select {
|
||||
background-color: #EBEBE4;
|
||||
}
|
||||
.theme-form input[type="text"]:disabled, .theme-form input[type="number"]:disabled, .theme-form input[type="tel"]:disabled, .theme-form select:disabled, .theme-form input[type="password"]:disabled, .theme-form input[type="email"]:disabled {
|
||||
color: #000000;
|
||||
background-color: #6D7581;
|
||||
}
|
||||
.theme-form .date-field-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.theme-form .date-field-wrapper .date-field-separator {
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
.theme-form .password-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.theme-form .password-wrapper input {
|
||||
padding-right: 42px;
|
||||
}
|
||||
.theme-form .password-wrapper .password-hide-show {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
top: 18px;
|
||||
right: 18px;
|
||||
}
|
||||
.theme-form .form-separator {
|
||||
border: 1px solid #D6DEE9;
|
||||
}
|
||||
|
||||
.empty-state-wrapper {
|
||||
padding: 100px 20px 60px 0;
|
||||
}
|
||||
.empty-state-wrapper .empty-text {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
line-height: 33px;
|
||||
letter-spacing: 0em;
|
||||
color: #6D7581;
|
||||
margin-top: 35px;
|
||||
}
|
||||
|
||||
input:disabled, select:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.chat-inside-content .chat-inside-body .chat-messages-date {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 16px;
|
||||
}
|
||||
.chat-inside-content .chat-inside-body .chat-messages-date span {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
line-height: 16px;
|
||||
letter-spacing: 0em;
|
||||
color: #7A7A7A;
|
||||
margin: 0 22px;
|
||||
text-wrap: nowrap;
|
||||
}
|
||||
.chat-inside-content .chat-inside-body .chat-messages-date:before {
|
||||
content: "";
|
||||
border-top: 1px solid #E8E8E8;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
}
|
||||
.chat-inside-content .chat-inside-body .chat-messages-date:after {
|
||||
content: "";
|
||||
border-top: 1px solid #E8E8E8;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.topic-lists .topic-list {
|
||||
cursor: pointer;
|
||||
}
|
||||
.topic-lists .topic-list:hover, .topic-lists .topic-list.active {
|
||||
background-color: #D6DEE9;
|
||||
}
|
||||
|
||||
|
||||
/* custom checkbox */
|
||||
.custom-radio-checkbox {
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked),
|
||||
.custom-radio-checkbox [type="checkbox"]:checked,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label,
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) + label {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
color: #364257;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
line-height: 25px;
|
||||
letter-spacing: 0px;
|
||||
min-height: 20px;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:disabled + label,
|
||||
.custom-radio-checkbox [type="checkbox"]:disabled + label {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:before,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label:before,
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label:before,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) + label:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 3px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1.25px solid #051433;
|
||||
background: #F9F9FF;
|
||||
box-shadow: 0px 1.25px 2.5px 0px #0000000D;
|
||||
}
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label:before,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) + label:before {
|
||||
border-radius: 5px;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:before,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label:before {
|
||||
border-radius: 50px;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:after,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label:after,
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label:after,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) + label:after {
|
||||
content: '';
|
||||
width: 11px;
|
||||
height: 6px;
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
left: 4px;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label:after, .custom-radio-checkbox [type="checkbox"]:not(:checked) + label:after {
|
||||
opacity: 0;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:after, .custom-radio-checkbox [type="checkbox"]:checked + label:after {
|
||||
opacity: 1;
|
||||
}
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:after,
|
||||
.custom-radio-checkbox [type="radio"]:not(:checked) + label:after,
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label:after,
|
||||
.custom-radio-checkbox [type="checkbox"]:not(:checked) + label:after {
|
||||
border: 2px solid #051433;
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.custom-radio-checkbox [type="radio"]:checked + label:before,
|
||||
.custom-radio-checkbox [type="checkbox"]:checked + label:before {
|
||||
/* background: #009B9A; */
|
||||
}
|
||||
|
||||
.cms-permissions-wrapper {}
|
||||
.cms-permissions-wrapper .main-header-row {
|
||||
margin-bottom: 5px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: nowrap;
|
||||
box-shadow: 0px -3px 5px 0px #B5B5B580 inset;
|
||||
}
|
||||
.cms-permissions-wrapper .main-header-row .main-header-column {
|
||||
flex: 0 0 auto;
|
||||
width: 25%;
|
||||
border-right: 1px solid transparent;
|
||||
border-image: linear-gradient(1turn, rgb(255 255 255), rgb(0 0 0), rgb(255 255 255 / 0%));
|
||||
border-image-slice: 1;
|
||||
color: #364257;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: 30px;
|
||||
letter-spacing: 0em;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.cms-permissions-wrapper .main-header-row .main-header-column.no-border {
|
||||
border: 0 !important;
|
||||
}
|
||||
.cms-permissions-wrapper .group-row {
|
||||
background-color: #fff;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.cms-permissions-wrapper .group-row .group-column {
|
||||
padding: 12px 20px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: 30px;
|
||||
letter-spacing: 0em;
|
||||
color: #364257;
|
||||
}
|
||||
.cms-permissions-wrapper .permission-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: nowrap;
|
||||
background-color: #f4f7fa;
|
||||
border-bottom: 1px solid #D6DEE9
|
||||
}
|
||||
.cms-permissions-wrapper .permission-row .permission-column {
|
||||
flex: 0 0 auto;
|
||||
width: 25%;
|
||||
padding: 12px 20px;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
line-height: 27px;
|
||||
letter-spacing: 0em;
|
||||
color: #364257;
|
||||
}
|
||||
658
public/themes/tailwind/css/dataTable.css
Normal file
@@ -0,0 +1,658 @@
|
||||
@charset "UTF-8";
|
||||
:root {
|
||||
--dt-row-selected: 13, 110, 253;
|
||||
--dt-row-selected-text: 255, 255, 255;
|
||||
--dt-row-selected-link: 9, 10, 11;
|
||||
--dt-row-stripe: 0, 0, 0;
|
||||
--dt-row-hover: 0, 0, 0;
|
||||
--dt-column-ordering: 0, 0, 0;
|
||||
--dt-html-background: white;
|
||||
}
|
||||
:root.dark {
|
||||
--dt-html-background: rgb(33, 37, 41);
|
||||
}
|
||||
|
||||
table.dataTable td.dt-control {
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
table.dataTable td.dt-control:before {
|
||||
display: inline-block;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
content: "►";
|
||||
}
|
||||
table.dataTable tr.dt-hasChild td.dt-control:before {
|
||||
content: "▼";
|
||||
}
|
||||
|
||||
html.dark table.dataTable td.dt-control:before {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
|
||||
table.dataTable thead > tr > td.sorting,
|
||||
table.dataTable thead > tr > td.sorting_asc,
|
||||
table.dataTable thead > tr > td.sorting_desc,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
padding-right: 26px;
|
||||
}
|
||||
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
||||
table.dataTable thead > tr > td.sorting:before,
|
||||
table.dataTable thead > tr > td.sorting:after,
|
||||
table.dataTable thead > tr > td.sorting_asc:before,
|
||||
table.dataTable thead > tr > td.sorting_asc:after,
|
||||
table.dataTable thead > tr > td.sorting_desc:before,
|
||||
table.dataTable thead > tr > td.sorting_desc:after,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled:before,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
||||
position: absolute;
|
||||
display: block;
|
||||
opacity: 0.125;
|
||||
right: 10px;
|
||||
line-height: 9px;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
|
||||
table.dataTable thead > tr > td.sorting:before,
|
||||
table.dataTable thead > tr > td.sorting_asc:before,
|
||||
table.dataTable thead > tr > td.sorting_desc:before,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled:before {
|
||||
bottom: 50%;
|
||||
content: "▲";
|
||||
content: "▲"/"";
|
||||
}
|
||||
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
||||
table.dataTable thead > tr > td.sorting:after,
|
||||
table.dataTable thead > tr > td.sorting_asc:after,
|
||||
table.dataTable thead > tr > td.sorting_desc:after,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
||||
top: 50%;
|
||||
content: "▼";
|
||||
content: "▼"/"";
|
||||
}
|
||||
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
|
||||
table.dataTable thead > tr > td.sorting_asc:before,
|
||||
table.dataTable thead > tr > td.sorting_desc:after {
|
||||
opacity: 0.6;
|
||||
}
|
||||
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
|
||||
table.dataTable thead > tr > td.sorting_desc_disabled:after,
|
||||
table.dataTable thead > tr > td.sorting_asc_disabled:before {
|
||||
display: none;
|
||||
}
|
||||
table.dataTable thead > tr > th:active,
|
||||
table.dataTable thead > tr > td:active {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
|
||||
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
|
||||
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.dataTables_processing {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 200px;
|
||||
margin-left: -100px;
|
||||
margin-top: -26px;
|
||||
text-align: center;
|
||||
padding: 2px;
|
||||
}
|
||||
div.dataTables_processing > div:last-child {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
height: 15px;
|
||||
margin: 1em auto;
|
||||
}
|
||||
div.dataTables_processing > div:last-child > div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
border-radius: 50%;
|
||||
background: rgb(13, 110, 253);
|
||||
background: rgb(var(--dt-row-selected));
|
||||
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
||||
}
|
||||
div.dataTables_processing > div:last-child > div:nth-child(1) {
|
||||
left: 8px;
|
||||
animation: datatables-loader-1 0.6s infinite;
|
||||
}
|
||||
div.dataTables_processing > div:last-child > div:nth-child(2) {
|
||||
left: 8px;
|
||||
animation: datatables-loader-2 0.6s infinite;
|
||||
}
|
||||
div.dataTables_processing > div:last-child > div:nth-child(3) {
|
||||
left: 32px;
|
||||
animation: datatables-loader-2 0.6s infinite;
|
||||
}
|
||||
div.dataTables_processing > div:last-child > div:nth-child(4) {
|
||||
left: 56px;
|
||||
animation: datatables-loader-3 0.6s infinite;
|
||||
}
|
||||
|
||||
@keyframes datatables-loader-1 {
|
||||
0% {
|
||||
transform: scale(0);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@keyframes datatables-loader-3 {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(0);
|
||||
}
|
||||
}
|
||||
@keyframes datatables-loader-2 {
|
||||
0% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
100% {
|
||||
transform: translate(24px, 0);
|
||||
}
|
||||
}
|
||||
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
table.dataTable th.dt-left,
|
||||
table.dataTable td.dt-left {
|
||||
text-align: left;
|
||||
}
|
||||
table.dataTable th.dt-center,
|
||||
table.dataTable td.dt-center,
|
||||
table.dataTable td.dataTables_empty {
|
||||
text-align: center;
|
||||
}
|
||||
table.dataTable th.dt-right,
|
||||
table.dataTable td.dt-right {
|
||||
text-align: right;
|
||||
}
|
||||
table.dataTable th.dt-justify,
|
||||
table.dataTable td.dt-justify {
|
||||
text-align: justify;
|
||||
}
|
||||
table.dataTable th.dt-nowrap,
|
||||
table.dataTable td.dt-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
table.dataTable thead th,
|
||||
table.dataTable thead td,
|
||||
table.dataTable tfoot th,
|
||||
table.dataTable tfoot td {
|
||||
text-align: left;
|
||||
}
|
||||
table.dataTable thead th.dt-head-left,
|
||||
table.dataTable thead td.dt-head-left,
|
||||
table.dataTable tfoot th.dt-head-left,
|
||||
table.dataTable tfoot td.dt-head-left {
|
||||
text-align: left;
|
||||
}
|
||||
table.dataTable thead th.dt-head-center,
|
||||
table.dataTable thead td.dt-head-center,
|
||||
table.dataTable tfoot th.dt-head-center,
|
||||
table.dataTable tfoot td.dt-head-center {
|
||||
text-align: center;
|
||||
}
|
||||
table.dataTable thead th.dt-head-right,
|
||||
table.dataTable thead td.dt-head-right,
|
||||
table.dataTable tfoot th.dt-head-right,
|
||||
table.dataTable tfoot td.dt-head-right {
|
||||
text-align: right;
|
||||
}
|
||||
table.dataTable thead th.dt-head-justify,
|
||||
table.dataTable thead td.dt-head-justify,
|
||||
table.dataTable tfoot th.dt-head-justify,
|
||||
table.dataTable tfoot td.dt-head-justify {
|
||||
text-align: justify;
|
||||
}
|
||||
table.dataTable thead th.dt-head-nowrap,
|
||||
table.dataTable thead td.dt-head-nowrap,
|
||||
table.dataTable tfoot th.dt-head-nowrap,
|
||||
table.dataTable tfoot td.dt-head-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
table.dataTable tbody th.dt-body-left,
|
||||
table.dataTable tbody td.dt-body-left {
|
||||
text-align: left;
|
||||
}
|
||||
table.dataTable tbody th.dt-body-center,
|
||||
table.dataTable tbody td.dt-body-center {
|
||||
text-align: center;
|
||||
}
|
||||
table.dataTable tbody th.dt-body-right,
|
||||
table.dataTable tbody td.dt-body-right {
|
||||
text-align: right;
|
||||
}
|
||||
table.dataTable tbody th.dt-body-justify,
|
||||
table.dataTable tbody td.dt-body-justify {
|
||||
text-align: justify;
|
||||
}
|
||||
table.dataTable tbody th.dt-body-nowrap,
|
||||
table.dataTable tbody td.dt-body-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* Table styles
|
||||
*/
|
||||
table.dataTable {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
clear: both;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
/*
|
||||
* Header and footer styles
|
||||
*/
|
||||
/*
|
||||
* Body styles
|
||||
*/
|
||||
}
|
||||
table.dataTable thead th,
|
||||
table.dataTable tfoot th {
|
||||
font-weight: bold;
|
||||
}
|
||||
table.dataTable > thead > tr > th,
|
||||
table.dataTable > thead > tr > td {
|
||||
padding: 10px;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
table.dataTable > thead > tr > th:active,
|
||||
table.dataTable > thead > tr > td:active {
|
||||
outline: none;
|
||||
}
|
||||
table.dataTable > tfoot > tr > th,
|
||||
table.dataTable > tfoot > tr > td {
|
||||
padding: 10px 10px 6px 10px;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
table.dataTable tbody tr {
|
||||
background-color: transparent;
|
||||
}
|
||||
table.dataTable tbody tr.selected > * {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
|
||||
color: rgb(255, 255, 255);
|
||||
color: rgb(var(--dt-row-selected-text));
|
||||
}
|
||||
table.dataTable tbody tr.selected a {
|
||||
color: rgb(9, 10, 11);
|
||||
color: rgb(var(--dt-row-selected-link));
|
||||
}
|
||||
table.dataTable tbody th,
|
||||
table.dataTable tbody td {
|
||||
padding: 8px 10px;
|
||||
}
|
||||
table.dataTable.row-border > tbody > tr > th,
|
||||
table.dataTable.row-border > tbody > tr > td, table.dataTable.display > tbody > tr > th,
|
||||
table.dataTable.display > tbody > tr > td {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
table.dataTable.row-border > tbody > tr:first-child > th,
|
||||
table.dataTable.row-border > tbody > tr:first-child > td, table.dataTable.display > tbody > tr:first-child > th,
|
||||
table.dataTable.display > tbody > tr:first-child > td {
|
||||
border-top: none;
|
||||
}
|
||||
table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
|
||||
border-top-color: #0262ef;
|
||||
}
|
||||
table.dataTable.cell-border > tbody > tr > th,
|
||||
table.dataTable.cell-border > tbody > tr > td {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
table.dataTable.cell-border > tbody > tr > th:first-child,
|
||||
table.dataTable.cell-border > tbody > tr > td:first-child {
|
||||
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
table.dataTable.cell-border > tbody > tr:first-child > th,
|
||||
table.dataTable.cell-border > tbody > tr:first-child > td {
|
||||
border-top: none;
|
||||
}
|
||||
table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
|
||||
}
|
||||
table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
|
||||
}
|
||||
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
|
||||
}
|
||||
table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
|
||||
box-shadow: inset 0 0 0 9999px #0d6efd !important;
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
|
||||
}
|
||||
table.dataTable.order-column > tbody tr > .sorting_1,
|
||||
table.dataTable.order-column > tbody tr > .sorting_2,
|
||||
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
|
||||
table.dataTable.display > tbody tr > .sorting_2,
|
||||
table.dataTable.display > tbody tr > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
|
||||
}
|
||||
table.dataTable.order-column > tbody tr.selected > .sorting_1,
|
||||
table.dataTable.order-column > tbody tr.selected > .sorting_2,
|
||||
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
|
||||
table.dataTable.display > tbody tr.selected > .sorting_2,
|
||||
table.dataTable.display > tbody tr.selected > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.019);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.011);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.003);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
|
||||
}
|
||||
table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
|
||||
}
|
||||
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
|
||||
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
|
||||
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
|
||||
}
|
||||
table.dataTable.no-footer {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
table.dataTable.compact thead th,
|
||||
table.dataTable.compact thead td,
|
||||
table.dataTable.compact tfoot th,
|
||||
table.dataTable.compact tfoot td,
|
||||
table.dataTable.compact tbody th,
|
||||
table.dataTable.compact tbody td {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
table.dataTable th,
|
||||
table.dataTable td {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/*
|
||||
* Control feature layout
|
||||
*/
|
||||
.dataTables_wrapper {
|
||||
position: relative;
|
||||
clear: both;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_length {
|
||||
float: left;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_length select {
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
color: inherit;
|
||||
padding: 4px;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_filter {
|
||||
float: right;
|
||||
text-align: right;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_filter input {
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 3px;
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
color: inherit;
|
||||
margin-left: 3px;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_info {
|
||||
clear: both;
|
||||
float: left;
|
||||
padding-top: 0.755em;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate {
|
||||
float: right;
|
||||
text-align: right;
|
||||
padding-top: 0.25em;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
min-width: 1.5em;
|
||||
padding: 0.5em 1em;
|
||||
margin-left: 2px;
|
||||
text-align: center;
|
||||
text-decoration: none !important;
|
||||
cursor: pointer;
|
||||
color: inherit !important;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 2px;
|
||||
background: transparent;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
||||
color: inherit !important;
|
||||
border: 1px solid rgba(0, 0, 0, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05))); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* FF3.6+ */
|
||||
background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* IE10+ */
|
||||
background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Opera 11.10+ */
|
||||
background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* W3C */
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
||||
cursor: default;
|
||||
color: #666 !important;
|
||||
border: 1px solid transparent;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
||||
color: white !important;
|
||||
border: 1px solid #111;
|
||||
background-color: #111;
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #585858 0%, #111 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -moz-linear-gradient(top, #585858 0%, #111 100%); /* FF3.6+ */
|
||||
background: -ms-linear-gradient(top, #585858 0%, #111 100%); /* IE10+ */
|
||||
background: -o-linear-gradient(top, #585858 0%, #111 100%); /* Opera 11.10+ */
|
||||
background: linear-gradient(to bottom, #585858 0%, #111 100%); /* W3C */
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
||||
outline: none;
|
||||
background-color: #0c0c0c;
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* FF3.6+ */
|
||||
background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* IE10+ */
|
||||
background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Opera 11.10+ */
|
||||
background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); /* W3C */
|
||||
box-shadow: inset 0 0 3px #111;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate .ellipsis {
|
||||
padding: 0 1em;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_length,
|
||||
.dataTables_wrapper .dataTables_filter,
|
||||
.dataTables_wrapper .dataTables_info,
|
||||
.dataTables_wrapper .dataTables_processing,
|
||||
.dataTables_wrapper .dataTables_paginate {
|
||||
color: inherit;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_scroll {
|
||||
clear: both;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
|
||||
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
|
||||
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
|
||||
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
|
||||
border-bottom: none;
|
||||
}
|
||||
.dataTables_wrapper:after {
|
||||
visibility: hidden;
|
||||
display: block;
|
||||
content: "";
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.dataTables_wrapper .dataTables_info,
|
||||
.dataTables_wrapper .dataTables_paginate {
|
||||
float: none;
|
||||
text-align: center;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_paginate {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 640px) {
|
||||
.dataTables_wrapper .dataTables_length,
|
||||
.dataTables_wrapper .dataTables_filter {
|
||||
float: none;
|
||||
text-align: center;
|
||||
}
|
||||
.dataTables_wrapper .dataTables_filter {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
}
|
||||
html.dark {
|
||||
--dt-row-hover: 255, 255, 255;
|
||||
--dt-row-stripe: 255, 255, 255;
|
||||
--dt-column-ordering: 255, 255, 255;
|
||||
}
|
||||
html.dark table.dataTable > thead > tr > th,
|
||||
html.dark table.dataTable > thead > tr > td {
|
||||
border-bottom: 1px solid rgb(89, 91, 94);
|
||||
}
|
||||
html.dark table.dataTable > thead > tr > th:active,
|
||||
html.dark table.dataTable > thead > tr > td:active {
|
||||
outline: none;
|
||||
}
|
||||
html.dark table.dataTable > tfoot > tr > th,
|
||||
html.dark table.dataTable > tfoot > tr > td {
|
||||
border-top: 1px solid rgb(89, 91, 94);
|
||||
}
|
||||
html.dark table.dataTable.row-border > tbody > tr > th,
|
||||
html.dark table.dataTable.row-border > tbody > tr > td, html.dark table.dataTable.display > tbody > tr > th,
|
||||
html.dark table.dataTable.display > tbody > tr > td {
|
||||
border-top: 1px solid rgb(64, 67, 70);
|
||||
}
|
||||
html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
|
||||
border-top-color: #0257d5;
|
||||
}
|
||||
html.dark table.dataTable.cell-border > tbody > tr > th,
|
||||
html.dark table.dataTable.cell-border > tbody > tr > td {
|
||||
border-top: 1px solid rgb(64, 67, 70);
|
||||
border-right: 1px solid rgb(64, 67, 70);
|
||||
}
|
||||
html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
|
||||
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
|
||||
border-left: 1px solid rgb(64, 67, 70);
|
||||
}
|
||||
html.dark .dataTables_wrapper .dataTables_filter input,
|
||||
html.dark .dataTables_wrapper .dataTables_length select {
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background-color: var(--dt-html-background);
|
||||
}
|
||||
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
||||
border: 1px solid rgb(89, 91, 94);
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
||||
color: #666 !important;
|
||||
}
|
||||
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
||||
border: 1px solid rgb(53, 53, 53);
|
||||
background: rgb(53, 53, 53);
|
||||
}
|
||||
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
||||
background: #3a3a3a;
|
||||
}
|
||||
2036
public/themes/tailwind/css/style.css
Normal file
16
public/themes/tailwind/css/untitled.css
Normal file
@@ -0,0 +1,16 @@
|
||||
@media (min-width: 768px) {
|
||||
.sidebar {
|
||||
width: 6rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.sidebar {
|
||||
width: 6rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
hr.new2 {
|
||||
border-top: 2px dashed gray;
|
||||
}
|
||||
|
||||
1893
public/themes/tailwind/css/user-dashboard-style.css
Normal file
BIN
public/themes/tailwind/images/.DS_Store
vendored
Normal file
3
public/themes/tailwind/images/Attachment.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.7143 2.40039C16.0812 2.40039 18 4.19125 18 6.40039V16.0004C18 19.0932 15.3137 21.6004 12 21.6004C8.68629 21.6004 6 19.0932 6 16.0004V9.60039H7.71429V16.0004C7.71429 18.2095 9.63307 20.0004 12 20.0004C14.3669 20.0004 16.2857 18.2095 16.2857 16.0004V6.40039C16.2857 5.07491 15.1344 4.00039 13.7143 4.00039C12.2941 4.00039 11.1429 5.07491 11.1429 6.40039V16.0004C11.1429 16.4422 11.5266 16.8004 12 16.8004C12.4734 16.8004 12.8571 16.4422 12.8571 16.0004V7.20039H14.5714V16.0004C14.5714 17.3259 13.4202 18.4004 12 18.4004C10.5798 18.4004 9.42857 17.3259 9.42857 16.0004V6.40039C9.42857 4.19125 11.3474 2.40039 13.7143 2.40039Z" fill="#364257"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 757 B |
BIN
public/themes/tailwind/images/Lock.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
3
public/themes/tailwind/images/Smile.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0004 2.40039C6.69839 2.40039 2.40039 6.69839 2.40039 12.0004C2.40039 17.3024 6.69839 21.6004 12.0004 21.6004C17.3014 21.6004 21.6004 17.3024 21.6004 11.9994C21.6004 6.69839 17.3014 2.40039 12.0004 2.40039ZM12.0004 19.5994C7.80339 19.5994 4.40039 16.1974 4.40039 11.9994C4.40039 7.80139 7.80239 4.40039 12.0004 4.40039C16.1974 4.40039 19.6014 7.80239 19.6014 12.0004C19.6014 16.1984 16.1974 19.5994 12.0004 19.5994ZM11.0004 10.0004C11.0004 10.9674 10.3294 11.7504 9.50139 11.7504C8.67239 11.7504 8.00039 10.9674 8.00039 10.0004C8.00039 9.03339 8.67239 8.25039 9.50039 8.25039C10.3284 8.25039 11.0004 9.03339 11.0004 10.0004ZM14.5003 11.7504C15.3294 11.7504 16.0003 10.9674 16.0003 10.0004C16.0003 9.03339 15.3284 8.25039 14.5003 8.25039C13.6724 8.25039 13.0004 9.03439 13.0004 10.0004C13.0004 10.9664 13.6724 11.7504 14.5003 11.7504ZM15.3334 13.6564C15.5264 13.2934 15.9784 13.1504 16.3414 13.3364C16.7074 13.5244 16.8554 13.9674 16.6714 14.3344C16.6224 14.4334 15.4264 16.7494 12.0014 16.7494C8.57739 16.7494 7.37939 14.4344 7.32939 14.3354C7.14439 13.9644 7.29439 13.5144 7.66439 13.3284C8.03639 13.1434 8.48039 13.2924 8.66839 13.6574C8.71039 13.7364 9.55039 15.2494 12.0014 15.2494C14.4644 15.2494 15.2994 13.7224 15.3334 13.6564Z" fill="#364257"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
BIN
public/themes/tailwind/images/Vector 4.png
Normal file
|
After Width: | Height: | Size: 392 KiB |
BIN
public/themes/tailwind/images/XMLID_2001_.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/themes/tailwind/images/access-log-icon.png
Normal file
|
After Width: | Height: | Size: 718 B |
9
public/themes/tailwind/images/access-log.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="41" height="39" viewBox="0 0 41 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.9002 0.71875C19.8462 0.71875 16.1673 3.64205 15.5508 10.8011L15.5595 18.6309H1.82812C1.27584 18.6309 0.828125 19.0786 0.828125 19.6309C0.828125 20.1831 1.27584 20.6309 1.82812 20.6309H15.5617L15.5707 28.6591C16.2269 35.6989 19.9059 38.5824 27.9002 38.5824H28.1587C37.0479 38.5824 40.6076 35.0227 40.6076 26.1335V13.1676C40.6076 4.27841 37.0479 0.71875 28.1587 0.71875H27.9002ZM15.5617 20.6309H27.2554L22.3007 25.5855C21.9102 25.976 21.9102 26.6092 22.3007 26.9997C22.6912 27.3902 23.3244 27.3902 23.7149 26.9997L30.3769 20.3378C30.7674 19.9473 30.7674 19.3141 30.3769 18.9236L23.7149 12.2616C23.3244 11.8711 22.6912 11.8711 22.3007 12.2616C21.9102 12.6522 21.9102 13.2853 22.3007 13.6759L27.2557 18.6309H15.5595L15.5617 20.6309Z" fill="url(#paint0_linear_253_25347)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_253_25347" x1="0.828125" y1="19.6443" x2="40.6076" y2="19.6443" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
public/themes/tailwind/images/admin.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/themes/tailwind/images/announcements.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
public/themes/tailwind/images/api.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
14
public/themes/tailwind/images/api.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="47" height="42" viewBox="0 0 47 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.97656 0C5.42428 0 4.97656 0.447715 4.97656 1V23.5C4.97656 24.0523 5.42428 24.5 5.97656 24.5H41.6016C42.1538 24.5 42.6016 24.0523 42.6016 23.5V1C42.6016 0.447715 42.1538 0 41.6016 0H5.97656ZM16.584 5.25C18.8729 5.25 20.8647 6.47505 21.9668 8.31262L33.9609 8.31221L37.3516 11.8123L33.9609 15.3124L32.2656 13.5624L30.5703 15.3124L28.8751 13.5624L27.1798 15.3124L25.4845 13.5624L23.7892 15.3124H21.9668C20.8223 17.15 18.8302 18.375 16.584 18.375C13.0662 18.375 10.2266 15.4437 10.2266 11.8125C10.2266 8.18129 13.066 5.25 16.584 5.25ZM11.4979 11.8129C11.4979 12.7753 12.2607 13.5628 13.1932 13.5628C14.1257 13.5628 14.8885 12.7755 14.8885 11.8129C14.8885 10.8504 14.1257 10.0629 13.1932 10.0629C12.2609 10.0629 11.4979 10.8503 11.4979 11.8129Z" fill="url(#paint0_linear_295_10389)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.60156 25.375C1.04928 25.375 0.601562 25.8227 0.601562 26.375V41C0.601562 41.5523 1.04928 42 1.60156 42H45.9766C46.5288 42 46.9766 41.5523 46.9766 41V26.375C46.9766 25.8227 46.5288 25.375 45.9766 25.375H1.60156ZM10.6824 39.375C10.3356 39.375 10.0448 39.3016 9.80988 39.1547C9.57498 38.9974 9.42957 38.7876 9.37364 38.5254C9.31771 38.2527 9.36805 37.9485 9.52465 37.6129L13.7025 29.18C13.9039 28.7709 14.1499 28.472 14.4408 28.2832C14.7428 28.0944 15.084 28 15.4643 28C15.8446 28 16.1746 28.0944 16.4542 28.2832C16.745 28.472 16.9967 28.7709 17.2092 29.18L21.3871 37.6129C21.5661 37.9485 21.6276 38.2527 21.5717 38.5254C21.5269 38.7981 21.3871 39.0079 21.1522 39.1547C20.9285 39.3016 20.6489 39.375 20.3133 39.375C19.8659 39.375 19.5191 39.2806 19.273 39.0918C19.0381 38.903 18.8256 38.5988 18.6354 38.1793L18.0932 36.9836H12.8185L12.2763 38.1793C12.075 38.5988 11.8681 38.903 11.6555 39.0918C11.443 39.2806 11.1186 39.375 10.6824 39.375ZM15.4307 31.1623L13.8217 34.7652H17.0872L15.4643 31.1623H15.4307ZM24.4693 39.375C23.9771 39.375 23.5968 39.2491 23.3283 38.9974C23.0599 38.7352 22.9256 38.3733 22.9256 37.9118V29.6048C22.9256 29.1328 23.0599 28.7709 23.3283 28.5192C23.608 28.2675 23.9939 28.1416 24.486 28.1416H28.6136C29.9559 28.1416 30.9905 28.4667 31.7176 29.117C32.4559 29.7569 32.825 30.6432 32.825 31.7759C32.825 32.9087 32.4559 33.8003 31.7176 34.4506C30.9905 35.0904 29.9559 35.4103 28.6136 35.4103H26.0129V37.9118C26.0129 38.3733 25.8843 38.7352 25.627 38.9974C25.3697 39.2491 24.9838 39.375 24.4693 39.375ZM26.0129 33.1919H28.0767C28.6583 33.1919 29.1058 33.0765 29.419 32.8458C29.7322 32.6045 29.8888 32.2479 29.8888 31.7759C29.8888 31.2935 29.7322 30.9368 29.419 30.7061C29.1058 30.4753 28.6583 30.36 28.0767 30.36H26.0129V33.1919ZM34.667 38.9974C34.9354 39.2491 35.3158 39.375 35.8079 39.375C36.3225 39.375 36.7084 39.2491 36.9657 38.9974C37.2229 38.7352 37.3516 38.3681 37.3516 37.8961V29.4789C37.3516 28.9964 37.2173 28.6293 36.9489 28.3776C36.6916 28.1259 36.3113 28 35.8079 28C35.3158 28 34.9354 28.1259 34.667 28.3776C34.3985 28.6293 34.2643 28.9964 34.2643 29.4789V37.8961C34.2643 38.3681 34.3985 38.7352 34.667 38.9974Z" fill="url(#paint1_linear_295_10389)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_295_10389" x1="4.97656" y1="12.246" x2="42.6016" y2="12.246" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_295_10389" x1="0.601562" y1="33.6848" x2="46.9766" y2="33.6848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
BIN
public/themes/tailwind/images/apply-booking-service-icon.png
Normal file
|
After Width: | Height: | Size: 714 B |
3
public/themes/tailwind/images/arrow-down.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5303 7.46967C15.8232 7.76256 15.8232 8.23744 15.5303 8.53033L10 14.0607L4.46967 8.53033C4.17678 8.23744 4.17678 7.76256 4.46967 7.46967C4.76256 7.17678 5.23744 7.17678 5.53033 7.46967L10 11.9393L14.4697 7.46967C14.7626 7.17678 15.2374 7.17678 15.5303 7.46967Z" fill="#7A7A7A"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 434 B |
BIN
public/themes/tailwind/images/arrow-left.png
Normal file
|
After Width: | Height: | Size: 554 B |
BIN
public/themes/tailwind/images/arrow-right.png
Normal file
|
After Width: | Height: | Size: 537 B |
BIN
public/themes/tailwind/images/authentication.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
public/themes/tailwind/images/blog.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/themes/tailwind/images/book-keeping-service.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
15
public/themes/tailwind/images/building.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="46" height="45" viewBox="0 0 46 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<ellipse cx="23" cy="22.5" rx="23" ry="22.5" fill="white"/>
|
||||
<path d="M11 16.9219H21.3148V38H11V16.9219Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.5488 8.00024H30.6486V20.0523H23.2735V14.7306H17.5488V8.00024Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M23.2754 22.0871H33.7964V38H23.2754V22.0871Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M23.2754 20.0523V22.0871" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.0625 20.8349H15.0035V22.7984H13.0625V20.8349Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.291 20.8349H19.232V22.7984H17.291V20.8349Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.0625 25.2697H15.0035V27.2332H13.0625V25.2697Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.291 25.2697H19.232V27.2332H17.291V25.2697Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.0625 29.6522H15.0035V31.6158H13.0625V29.6522Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.291 29.6522H19.232V31.6158H17.291V29.6522Z" stroke="#6D7581" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.2753 20.0522H30.6502V8H17.5508V14.7306H23.2756L23.2753 20.0522Z" fill="#6D7581"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.3996 26.9389H25.4915V24.9562H27.3996V26.9389ZM33.8462 22.0866H23.2734V37.9992H33.8462V22.0866ZM27.3995 31.3738H25.4914V29.3911H27.3995V31.3738ZM29.7205 31.3738V29.3911H31.6285V31.3738H29.7205ZM29.7205 26.939V24.9563H31.6285V26.939H29.7205Z" fill="#6D7581"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
12
public/themes/tailwind/images/business-accounting.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="55" height="55" viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 16.1333H15.5833V17.1667H13V16.1333Z" fill="white"/>
|
||||
<path d="M13 21.3H15.5833V22.3333H13V21.3Z" fill="white"/>
|
||||
<path d="M13 26.4666H15.5833V27.5H13V26.4666Z" fill="white"/>
|
||||
<path d="M13 31.6333H15.5833V32.6666H13V31.6333Z" fill="white"/>
|
||||
<path d="M13 36.8H15.5833V37.8334H13V36.8Z" fill="white"/>
|
||||
<path d="M18.6836 12V41.9667H27.4669V34.7333H32.6336V32.6667H35.7336V12H18.6836ZM25.5036 24.2967L24.7803 25.02L23.3336 23.5733L21.8869 25.02L21.1636 24.2967L22.6103 22.85L21.1636 21.4033L21.8869 20.68L23.3336 22.1267L24.7803 20.68L25.5036 21.4033L24.0569 22.85L25.5036 24.2967ZM25.9169 17.1667H23.8503V19.2333H22.8169V17.1667H20.7503V16.1333H22.8169V14.0667H23.8503V16.1333H25.9169V17.1667ZM33.1503 24.4H27.9836V23.3667H33.1503V24.4ZM33.1503 22.3333H27.9836V21.3H33.1503V22.3333ZM33.1503 17.1667H27.9836V16.1333H33.1503V17.1667Z" fill="white"/>
|
||||
<path d="M17.6499 12H14.0332V15.1H16.6165V18.2H14.0332V20.2667H16.6165V23.3667H14.0332V25.4333H16.6165V28.5333H14.0332V30.6H16.6165V33.7H14.0332V35.7667H16.6165V38.8667H14.0332V41.9667H17.6499V12Z" fill="white"/>
|
||||
<path d="M28.5 35.7666H32.6333V42.9999H28.5V35.7666Z" fill="white"/>
|
||||
<path d="M33.668 33.7002H37.8013V43.0002H33.668V33.7002Z" fill="white"/>
|
||||
<path d="M38.834 31.6333H42.9673V42.9999H38.834V31.6333Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
54
public/themes/tailwind/images/business-black.svg
Normal file
@@ -0,0 +1,54 @@
|
||||
<svg width="92" height="92" viewBox="0 0 92 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 20.3334H17.8333V22.6667H12V20.3334Z" fill="url(#paint0_linear_240_14788)"/>
|
||||
<path d="M12 32H17.8333V34.3333H12V32Z" fill="url(#paint1_linear_240_14788)"/>
|
||||
<path d="M12 43.6666H17.8333V45.9999H12V43.6666Z" fill="url(#paint2_linear_240_14788)"/>
|
||||
<path d="M12 55.3332H17.8333V57.6665H12V55.3332Z" fill="url(#paint3_linear_240_14788)"/>
|
||||
<path d="M12 67.0001H17.8333V69.3334H12V67.0001Z" fill="url(#paint4_linear_240_14788)"/>
|
||||
<path d="M24.834 11V78.6667H44.6673V62.3333H56.334V57.6667H63.334V11H24.834ZM40.234 38.7667L38.6006 40.4L35.334 37.1333L32.0673 40.4L30.434 38.7667L33.7007 35.5L30.434 32.2333L32.0673 30.6L35.334 33.8667L38.6006 30.6L40.234 32.2333L36.9673 35.5L40.234 38.7667ZM41.1673 22.6667H36.5007V27.3333H34.1673V22.6667H29.5007V20.3333H34.1673V15.6667H36.5007V20.3333H41.1673V22.6667ZM57.5006 39H45.834V36.6667H57.5006V39ZM57.5006 34.3333H45.834V32H57.5006V34.3333ZM57.5006 22.6667H45.834V20.3333H57.5006V22.6667Z" fill="url(#paint5_linear_240_14788)"/>
|
||||
<path d="M22.4967 11H14.3301V18H20.1634V25H14.3301V29.6667H20.1634V36.6667H14.3301V41.3333H20.1634V48.3333H14.3301V53H20.1634V60H14.3301V64.6667H20.1634V71.6667H14.3301V78.6667H22.4967V11Z" fill="url(#paint6_linear_240_14788)"/>
|
||||
<path d="M47 64.6665H56.3333V80.9999H47V64.6665Z" fill="url(#paint7_linear_240_14788)"/>
|
||||
<path d="M58.666 60H67.9993V81H58.666V60Z" fill="url(#paint8_linear_240_14788)"/>
|
||||
<path d="M70.3359 55.3332H79.6693V80.9999H70.3359V55.3332Z" fill="url(#paint9_linear_240_14788)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_240_14788" x1="12" y1="21.4996" x2="17.8333" y2="21.4996" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_240_14788" x1="12" y1="33.1662" x2="17.8333" y2="33.1662" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_240_14788" x1="12" y1="44.8329" x2="17.8333" y2="44.8329" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_240_14788" x1="12" y1="56.4995" x2="17.8333" y2="56.4995" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_240_14788" x1="12" y1="68.1663" x2="17.8333" y2="68.1663" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_240_14788" x1="24.834" y1="44.8222" x2="63.334" y2="44.8222" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_240_14788" x1="14.3301" y1="44.8222" x2="22.4967" y2="44.8222" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_240_14788" x1="47" y1="72.8305" x2="56.3333" y2="72.8305" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_240_14788" x1="58.666" y1="70.4965" x2="67.9993" y2="70.4965" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_240_14788" x1="70.3359" y1="68.1623" x2="79.6693" y2="68.1623" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
BIN
public/themes/tailwind/images/calendar-2.png
Normal file
|
After Width: | Height: | Size: 631 B |
BIN
public/themes/tailwind/images/camera.png
Normal file
|
After Width: | Height: | Size: 441 B |
BIN
public/themes/tailwind/images/chat-bookkeeping-service.png
Normal file
|
After Width: | Height: | Size: 824 B |
BIN
public/themes/tailwind/images/chat-company-secretary.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/themes/tailwind/images/chat-icon.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
3
public/themes/tailwind/images/check-2.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="37" height="26" viewBox="0 0 37 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.5 13L12.82 24.5L35.5 1.5" stroke="#58C2B1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 224 B |
BIN
public/themes/tailwind/images/check-black.png
Normal file
|
After Width: | Height: | Size: 318 B |
BIN
public/themes/tailwind/images/check-sky-blue.png
Normal file
|
After Width: | Height: | Size: 415 B |
BIN
public/themes/tailwind/images/check-yellow.png
Normal file
|
After Width: | Height: | Size: 322 B |
BIN
public/themes/tailwind/images/check.png
Normal file
|
After Width: | Height: | Size: 293 B |
BIN
public/themes/tailwind/images/chevron-left.png
Normal file
|
After Width: | Height: | Size: 177 B |
BIN
public/themes/tailwind/images/chevron-right-green.png
Normal file
|
After Width: | Height: | Size: 223 B |
BIN
public/themes/tailwind/images/chevron-right.png
Normal file
|
After Width: | Height: | Size: 396 B |
BIN
public/themes/tailwind/images/clipboard-image-15.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
public/themes/tailwind/images/clipboard-image-16.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/themes/tailwind/images/clipboard-image-17.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/themes/tailwind/images/clipboard-image-18.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/themes/tailwind/images/clipboard-image-19.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
public/themes/tailwind/images/clipboard-image-20.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
BIN
public/themes/tailwind/images/clipboard-image-21.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/themes/tailwind/images/clipboard-image-22.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/themes/tailwind/images/clipboard-image-23.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
public/themes/tailwind/images/clipboard-image-26.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
public/themes/tailwind/images/clipboard-image-27.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
public/themes/tailwind/images/clipboard-image-28.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
public/themes/tailwind/images/clipboard-image-29.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
public/themes/tailwind/images/clipboard-image-30.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
public/themes/tailwind/images/close-circle-red.png
Normal file
|
After Width: | Height: | Size: 634 B |
BIN
public/themes/tailwind/images/close-circle.png
Normal file
|
After Width: | Height: | Size: 336 B |
BIN
public/themes/tailwind/images/cloudUpload.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/themes/tailwind/images/company-secretary-service.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
3
public/themes/tailwind/images/company.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="55" height="55" viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5305 15.4065L27.6943 13V38.9002H28.8322V18.0748L40.996 20.0121V38.9001H42.5258V41.3503H14V38.9001H15.5298L15.5305 15.4065ZM30.2767 23.3685H32.6392V25.8187H30.2767V23.3685ZM33.7329 23.3685H36.0954V25.8187H33.7329V23.3685ZM37.189 23.3685H39.5515V25.8187H37.189V23.3685ZM30.2764 27.3278H32.6389V29.778H30.2764V27.3278ZM33.7325 27.3278H36.095V29.778H33.7325V27.3278ZM37.1886 27.3278H39.5511V29.778H37.1886V27.3278ZM30.276 31.2871H32.6385V33.7373H30.276V31.2871ZM33.7321 31.2871H36.0946V33.7373H33.7321V31.2871ZM37.1883 31.2871H39.5508V33.7373H37.1883V31.2871ZM16.9743 26.2106H19.3368V28.6607H16.9743V26.2106ZM20.4304 26.2106H22.7929V28.6607H20.4304V26.2106ZM23.8865 26.2106H26.249V28.6607H23.8865V26.2106ZM16.9739 22.2513H19.3364V24.7014H16.9739V22.2513ZM20.43 22.2513H22.7925V24.7014H20.43V22.2513ZM23.8861 22.2513H26.2486V24.7014H23.8861V22.2513ZM16.9735 18.292H19.336V20.7422H16.9735V18.292ZM20.4297 18.292H22.7922V20.7422H20.4297V18.292ZM23.8858 18.292H26.2483V20.7422H23.8858V18.292Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
46
public/themes/tailwind/images/contact-us.svg
Normal file
@@ -0,0 +1,46 @@
|
||||
<svg width="43" height="35" viewBox="0 0 43 35" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.75 34.2432H11.25C3.05 34.2432 1 32.3964 1 25.009V10.2342C1 2.84685 3.05 1 11.25 1H31.75C39.95 1 42 2.84685 42 10.2342V25.009C42 32.3964 39.95 34.2432 31.75 34.2432Z" stroke="url(#paint0_linear_1095_1199)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M24.8945 9.42969H35.0919" stroke="url(#paint1_linear_1095_1199)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M26.9375 17.5879H35.0954" stroke="url(#paint2_linear_1095_1199)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M31.0156 25.7461H35.0946" stroke="url(#paint3_linear_1095_1199)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.6797 17.2481C15.7184 17.2481 17.3712 15.5954 17.3712 13.5567C17.3712 11.5179 15.7184 9.86523 13.6797 9.86523C11.641 9.86523 9.98828 11.5179 9.98828 13.5567C9.98828 15.5954 11.641 17.2481 13.6797 17.2481Z" fill="url(#paint4_linear_1095_1199)" stroke="url(#paint5_linear_1095_1199)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<mask id="path-6-inside-1_1095_1199" fill="white">
|
||||
<path d="M20.8153 26.1961C20.5298 23.2389 18.1844 20.9139 15.2272 20.6487C14.2075 20.5468 13.1673 20.5468 12.1272 20.6487C9.16997 20.9343 6.82459 23.2389 6.53906 26.1961"/>
|
||||
</mask>
|
||||
<path d="M20.8153 26.1961C20.5298 23.2389 18.1844 20.9139 15.2272 20.6487C14.2075 20.5468 13.1673 20.5468 12.1272 20.6487C9.16997 20.9343 6.82459 23.2389 6.53906 26.1961" fill="url(#paint6_linear_1095_1199)"/>
|
||||
<path d="M19.3223 26.3403C19.4019 27.1648 20.1349 27.7688 20.9595 27.6892C21.7841 27.6095 22.388 26.8765 22.3084 26.0519L19.3223 26.3403ZM15.2272 20.6487L15.0779 22.1413C15.083 22.1418 15.0881 22.1423 15.0932 22.1428L15.2272 20.6487ZM12.1272 20.6487L12.2714 22.1418L12.2736 22.1416L12.1272 20.6487ZM5.04601 26.0519C4.96639 26.8765 5.57031 27.6095 6.39491 27.6892C7.2195 27.7688 7.9525 27.1648 8.03212 26.3403L5.04601 26.0519ZM22.3084 26.0519C21.9534 22.3752 19.036 19.4842 15.3611 19.1547L15.0932 22.1428C17.3329 22.3435 19.1062 24.1025 19.3223 26.3403L22.3084 26.0519ZM15.3764 19.1562C14.2565 19.0442 13.1173 19.0445 11.9808 19.1559L12.2736 22.1416C13.2173 22.0491 14.1584 22.0494 15.0779 22.1413L15.3764 19.1562ZM11.983 19.1557C8.32473 19.5089 5.4018 22.367 5.04601 26.0519L8.03212 26.3403C8.24738 24.1108 10.0152 22.3596 12.2714 22.1418L11.983 19.1557Z" fill="url(#paint7_linear_1095_1199)" mask="url(#path-6-inside-1_1095_1199)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1095_1199" x1="1" y1="17.6161" x2="42" y2="17.6161" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1095_1199" x1="24.8945" y1="9.92952" x2="35.0919" y2="9.92952" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1095_1199" x1="26.9375" y1="18.0877" x2="35.0954" y2="18.0877" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1095_1199" x1="31.0156" y1="26.2459" x2="35.0946" y2="26.2459" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1095_1199" x1="9.98828" y1="13.5555" x2="17.3712" y2="13.5555" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1095_1199" x1="9.98828" y1="13.5555" x2="17.3712" y2="13.5555" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1095_1199" x1="6.53906" y1="23.3833" x2="20.8153" y2="23.3833" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1095_1199" x1="6.53906" y1="23.3833" x2="20.8153" y2="23.3833" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#575757"/>
|
||||
<stop offset="1" stop-color="#010101"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/themes/tailwind/images/customer-service-img.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
10
public/themes/tailwind/images/customer-services.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="55" height="55" viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.7093 13.8312C31.7093 15.9472 29.9941 17.6624 27.8781 17.6624C25.7621 17.6624 24.0469 15.9472 24.0469 13.8312C24.0469 11.7152 25.7621 10 27.8781 10C29.9941 10 31.7093 11.7152 31.7093 13.8312Z" fill="white"/>
|
||||
<path d="M34.2648 21.4938C34.2648 19.3812 32.5462 17.6626 30.4336 17.6626H25.3253C23.2128 17.6626 21.4941 19.3812 21.4941 21.4938V24.0479H34.2648V21.4938Z" fill="white"/>
|
||||
<path d="M43.2034 13.8312C43.2034 15.9472 41.4882 17.6624 39.3722 17.6624C37.2562 17.6624 35.541 15.9472 35.541 13.8312C35.541 11.7152 37.2562 10 39.3722 10C41.4882 10 43.2034 11.7152 43.2034 13.8312Z" fill="white"/>
|
||||
<path d="M20.2171 13.8312C20.2171 15.9472 18.5019 17.6624 16.3859 17.6624C14.2699 17.6624 12.5547 15.9472 12.5547 13.8312C12.5547 11.7152 14.2699 10 16.3859 10C18.5019 10 20.2171 11.7152 20.2171 13.8312Z" fill="white"/>
|
||||
<path d="M20.2165 21.4936C20.2165 20.3505 20.6073 19.3049 21.2442 18.4529C20.6008 17.964 19.808 17.6624 18.9395 17.6624H13.8312C11.7186 17.6624 10 19.3811 10 21.4936V24.0477H20.2165V21.4936Z" fill="white"/>
|
||||
<path d="M41.9266 17.6626H36.8184C35.9498 17.6626 35.157 17.9642 34.5137 18.4531C35.1505 19.3051 35.5413 20.3507 35.5413 21.4938V24.0479H45.7578V21.4938C45.7578 19.3812 44.0392 17.6626 41.9266 17.6626Z" fill="white"/>
|
||||
<path d="M12.5541 29.156H10V44.4808H12.5541C13.2594 44.4808 13.8312 43.909 13.8312 43.2037V30.4331C13.8312 29.7278 13.2594 29.156 12.5541 29.156Z" fill="white"/>
|
||||
<path d="M44.2937 30.8642C43.3715 30.3132 42.2541 30.2892 41.3099 30.7992L32.947 35.2948C32.7514 36.8698 31.4202 38.0967 29.7937 38.0967H24.6597C24.3068 38.0967 24.0212 37.8111 24.0212 37.4582C24.0212 37.1053 24.3068 36.8196 24.6597 36.8196H29.7937C30.8501 36.8196 31.7093 35.9605 31.7093 34.9043C31.7093 33.8681 30.8809 33.0267 29.8524 32.995C29.4702 32.9904 23.2986 32.989 23.2986 32.989L21.1185 30.8095C20.879 30.57 20.554 30.4355 20.2154 30.4355L15.1074 30.4352V43.2066H17.3622L21.4927 44.4814C23.2088 45.033 25.0443 45.7581 27.0779 45.7581C28.9168 45.7581 30.7289 45.1484 32.2928 43.95L44.4548 35.9009C45.2701 35.3424 45.757 34.4197 45.757 33.4345C45.757 32.3707 45.2102 31.4106 44.2935 30.8644L44.2937 30.8642Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
BIN
public/themes/tailwind/images/digital-transformation.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/themes/tailwind/images/doc-icon.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
public/themes/tailwind/images/document-text.png
Normal file
|
After Width: | Height: | Size: 689 B |
5
public/themes/tailwind/images/download.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.4405 9.3999C20.0405 9.7099 21.5105 11.5599 21.5105 15.6099V15.7399C21.5105 20.2099 19.7205 21.9999 15.2505 21.9999H8.74047C4.27047 21.9999 2.48047 20.2099 2.48047 15.7399V15.6099C2.48047 11.5899 3.93047 9.7399 7.47047 9.4099" stroke="#58C2B1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12 2.5V15.38" stroke="#58C2B1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M15.3484 13.1499L11.9984 16.4999L8.64844 13.1499" stroke="#58C2B1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 680 B |
BIN
public/themes/tailwind/images/email.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
22
public/themes/tailwind/images/empty-state-img.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<svg width="395" height="394" viewBox="0 0 395 394" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M197.143 394C305.943 394 394.111 305.8 394.071 197C394.032 88.1999 305.8 0 197 0C88.1999 0 0.0319251 88.1999 0.0713066 197C0.110688 305.8 88.3425 394 197.143 394Z" fill="#F4F7FA"/>
|
||||
<path d="M157.119 270.612V270.612C144.45 270.612 134.18 260.342 134.18 247.674V127C134.18 110.431 147.612 97 164.18 97H222.335M222.335 97L260.116 132.982M222.335 97V120.982C222.335 127.609 227.708 132.982 234.335 132.982H260.116M260.116 132.982L259.986 249.177C259.973 261.019 250.369 270.612 238.527 270.612V270.612" stroke="#D0D0CF" stroke-width="7" stroke-dasharray="12 6"/>
|
||||
<path d="M192.126 292.102C190.816 290.754 190.161 289.144 190.161 287.272C190.161 285.363 190.816 283.735 192.126 282.387C193.437 281.04 195.028 280.366 196.899 280.366C198.771 280.366 200.362 281.04 201.672 282.387C202.983 283.735 203.638 285.363 203.638 287.272C203.638 289.144 202.983 290.754 201.672 292.102C200.362 293.449 198.771 294.123 196.899 294.123C195.028 294.123 193.437 293.449 192.126 292.102ZM172.529 246.225C170.246 242.182 169.104 237.746 169.104 232.917C169.104 226.516 171.631 220.62 176.685 215.229C181.813 209.801 188.739 207.087 197.461 207.087C206.296 207.087 213.221 209.801 218.237 215.229C222.917 220.283 225.256 226.553 225.256 234.04C225.256 242.912 219.098 251.503 206.782 259.814C203.525 262.023 201.841 264.587 201.729 267.507L190.891 272.729H190.33C190.367 263.37 193.643 256.613 200.156 252.458C209.478 246.543 214.138 240.385 214.138 233.984C214.138 229.529 212.94 225.861 210.544 222.978C207.362 219.122 203.001 217.194 197.461 217.194C192.22 217.194 187.859 219.122 184.377 222.978C181.682 225.973 180.334 229.716 180.334 234.208C180.334 236.717 181.064 239.206 182.524 241.677L173.091 246.225H172.529Z" fill="#D0D0CF"/>
|
||||
<path d="M166.114 160.868H229.082" stroke="#D0D0CF" stroke-width="8" stroke-linecap="round"/>
|
||||
<path d="M166.114 138.379H191.301" stroke="#D0D0CF" stroke-width="8" stroke-linecap="round"/>
|
||||
<path d="M166.114 183.356H229.082" stroke="#D0D0CF" stroke-width="8" stroke-linecap="round"/>
|
||||
<path d="M62.2524 216.698V216.198H61.7524H59.4175H58.9175V216.698V224.162V224.662H59.4175H61.7524H62.2524V224.162V216.698Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M73.9423 227.563V227.063H73.4423H65.9785H65.4785V227.563V229.898V230.398H65.9785H73.4423H73.9423V229.898V227.563Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M62.2524 234.536V234.036H61.7524H59.4175H58.9175V234.536V242V242.5H59.4175H61.7524H62.2524V242V234.536Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M55.9638 227.563V227.063H55.4638H48H47.5V227.563V229.898V230.398H48H55.4638H55.9638V229.898V227.563Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M289.417 79V78.5H288.917H286.582H286.082V79V83.6542V84.1542H286.582H288.917H289.417V83.6542V79Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M296.266 85.3286V84.8286H295.766H291.111H290.611V85.3286V87.6635V88.1635H291.111H295.766H296.266V87.6635V85.3286Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M289.417 90.1064V89.6064H288.917H286.582H286.082V90.1064V94.7606V95.2606H286.582H288.917H289.417V94.7606V90.1064Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M285.066 85.3286V84.8286H284.566H279.912H279.412V85.3286V87.6635V88.1635H279.912H284.566H285.066V87.6635V85.3286Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M308.179 293V292.5H307.679H304.568H304.068V293V299.202V299.702H304.568H307.679H308.179V299.202V293Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M317.305 301.433V300.933H316.805H310.603H310.103V301.433V304.544V305.044H310.603H316.805H317.305V304.544V301.433Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M308.179 307.798V307.298H307.679H304.568H304.068V307.798V314V314.5H304.568H307.679H308.179V314V307.798Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M302.382 301.433V300.933H301.882H295.68H295.18V301.433V304.544V305.044H295.68H301.882H302.382V304.544V301.433Z" fill="#D0D0CF" stroke="#D0D0CF"/>
|
||||
<path d="M279.352 226.439L279.352 147L273.681 147L273.681 226.439L279.352 226.439Z" fill="#D0D0CF"/>
|
||||
<path d="M273.681 252L273.681 244.438L279.352 244.438L279.352 252L273.681 252ZM273.681 236.876L273.681 229.314L279.352 229.314L279.352 236.876L273.681 236.876Z" fill="#D0D0CF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
BIN
public/themes/tailwind/images/empty-state-white-img.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
4
public/themes/tailwind/images/error.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="31" height="32" viewBox="0 0 31 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.835938 30.6641L30.1641 1.33594" stroke="#FF0000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M30.1641 30.6641L0.835938 1.33594" stroke="#FF0000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 361 B |
3
public/themes/tailwind/images/eye-hide.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.29243 7.05555C2.61993 6.80368 3.08925 6.86418 3.34223 7.19032L3.34478 7.19352C3.34816 7.19774 3.35472 7.20584 3.36448 7.2175C3.38399 7.24084 3.41624 7.2784 3.46135 7.32767C3.55162 7.4263 3.69298 7.57144 3.88633 7.74335C4.27335 8.08745 4.86585 8.53629 5.67161 8.93506C6.72929 9.4585 8.16282 9.90006 9.99966 9.90006C11.8365 9.90006 13.27 9.4585 14.3277 8.93506C15.1335 8.53629 15.726 8.08745 16.113 7.74335C16.3063 7.57144 16.4477 7.4263 16.538 7.32767C16.5831 7.2784 16.6153 7.24084 16.6349 7.2175C16.6446 7.20584 16.6512 7.19774 16.6545 7.19352L16.6568 7.19071C16.9098 6.86456 17.3794 6.80367 17.7069 7.05555C18.0352 7.30808 18.0967 7.77896 17.8442 8.10729L17.8429 8.10895L17.8413 8.111L17.8372 8.11629L17.8251 8.13153C17.8153 8.14372 17.8021 8.1599 17.7855 8.17976C17.7523 8.21948 17.7053 8.27392 17.6444 8.34046C17.5227 8.47348 17.3449 8.65523 17.1097 8.86434C16.758 9.17702 16.2764 9.55228 15.6607 9.91718L16.8819 12.309C17.0703 12.6779 16.9239 13.1297 16.555 13.318C16.1861 13.5064 15.7343 13.36 15.546 12.9911L14.317 10.5841C13.3369 10.9842 12.1493 11.2947 10.7497 11.378V13.6501C10.7497 14.0643 10.4139 14.4001 9.99966 14.4001C9.58545 14.4001 9.24966 14.0643 9.24966 13.6501V11.378C7.85001 11.2947 6.66248 10.9842 5.68229 10.5841L4.45335 12.9911C4.265 13.36 3.81324 13.5064 3.44433 13.318C3.07542 13.1297 2.92905 12.6779 3.11741 12.309L4.33861 9.91718C3.72289 9.55228 3.24133 9.17702 2.88965 8.86434C2.65445 8.65523 2.47664 8.47348 2.35489 8.34046C2.29398 8.27392 2.24701 8.21948 2.2138 8.17976C2.19719 8.1599 2.18402 8.14372 2.17425 8.13153L2.16216 8.11629L2.15802 8.111L2.15643 8.10895L2.15575 8.10807C1.90323 7.77973 1.96409 7.30808 2.29243 7.05555Z" fill="#364257"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
public/themes/tailwind/images/eye.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.29243 6.35475C2.61993 6.10287 3.08925 6.16338 3.34223 6.48951L3.34478 6.49271C3.34816 6.49693 3.35472 6.50503 3.36448 6.5167C3.38399 6.54004 3.41624 6.57759 3.46135 6.62687C3.55162 6.72549 3.69298 6.87063 3.88633 7.04255C4.27335 7.38664 4.86585 7.83549 5.67161 8.23426C6.72929 8.75769 8.16282 9.19926 9.99966 9.19926C11.8365 9.19926 13.27 8.75769 14.3277 8.23426C15.1335 7.83549 15.726 7.38664 16.113 7.04255C16.3063 6.87063 16.4477 6.72549 16.538 6.62687C16.5831 6.57759 16.6153 6.54004 16.6349 6.5167C16.6446 6.50503 16.6512 6.49693 16.6545 6.49271L16.6568 6.48991C16.9098 6.16375 17.3794 6.10287 17.7069 6.35475C18.0352 6.60727 18.0967 7.07815 17.8442 7.40649L17.8429 7.40814L17.8413 7.41019L17.8372 7.41549L17.8251 7.43073C17.8153 7.44291 17.8021 7.4591 17.7855 7.47896C17.7523 7.51867 17.7053 7.57312 17.6444 7.63966C17.5227 7.77267 17.3449 7.95442 17.1097 8.16354C16.758 8.47622 16.2764 8.85147 15.6607 9.21637L16.8819 11.6082C17.0703 11.9771 16.9239 12.4289 16.555 12.6172C16.1861 12.8056 15.7343 12.6592 15.546 12.2903L14.317 9.8833C13.3369 10.2834 12.1493 10.5939 10.7497 10.6772V12.9493C10.7497 13.3635 10.4139 13.6993 9.99966 13.6993C9.58545 13.6993 9.24966 13.3635 9.24966 12.9493V10.6772C7.85001 10.5939 6.66248 10.2834 5.68229 9.8833L4.45335 12.2903C4.265 12.6592 3.81324 12.8056 3.44433 12.6172C3.07542 12.4289 2.92905 11.9771 3.11741 11.6082L4.33861 9.21637C3.72289 8.85147 3.24133 8.47622 2.88965 8.16354C2.65445 7.95442 2.47664 7.77267 2.35489 7.63966C2.29398 7.57312 2.24701 7.51867 2.2138 7.47896C2.19719 7.4591 2.18402 7.44291 2.17425 7.43073L2.16216 7.41549L2.15802 7.41019L2.15643 7.40814L2.15575 7.40726C1.90323 7.07893 1.96409 6.60727 2.29243 6.35475Z" fill="#364257"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
public/themes/tailwind/images/file-upload-icon.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
public/themes/tailwind/images/fileNameSample.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
public/themes/tailwind/images/filter-icon.png
Normal file
|
After Width: | Height: | Size: 878 B |
5
public/themes/tailwind/images/flag-2.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7 4L15.4052 6.42308C18.8295 7.39231 18.8295 9.05385 15.6127 10.1615L7 13" fill="#FF0000"/>
|
||||
<path d="M7 4L15.4052 6.42308C18.8295 7.39231 18.8295 9.05385 15.6127 10.1615L7 13" stroke="#FF0000" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M6.44922 2V22" stroke="#292D32" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 528 B |
BIN
public/themes/tailwind/images/have-a-question.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
3
public/themes/tailwind/images/home.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="55" height="55" viewBox="0 0 55 55" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M41.3783 27.5978H37.1803V39.553H31.2483V31.75H24.13V39.553H18.198V27.5978H14L27.6891 14L41.3783 27.5978Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 233 B |
BIN
public/themes/tailwind/images/impersonation.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
30
public/themes/tailwind/images/jpg.svg
Normal file
@@ -0,0 +1,30 @@
|
||||
<svg width="44" height="55" viewBox="0 0 44 55" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_333_11686)">
|
||||
<path d="M36 9.94639V41.4633C36 42.2104 35.3876 42.8227 34.6402 42.8227H9.6333C8.88589 42.8227 8.27344 42.2104 8.27344 41.4633V5.35947C8.27344 4.61228 8.88589 4 9.6333 4H30.052L36 9.94639Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M36 9.94644V41.4633C36 42.2105 35.3875 42.8228 34.6401 42.8228H32.6989C33.4463 42.8228 34.0588 42.2105 34.0588 41.4633V9.94644L28.1211 4.01044H30.0519L36 9.94644Z" fill="#E2E1DE"/>
|
||||
<path d="M36.0008 9.94639H31.4126C30.6652 9.94639 30.0527 9.34448 30.0527 8.58692V4L36.0008 9.94639Z" fill="#C9C9C9"/>
|
||||
<path d="M19.6194 16.1314H6V10.6209C6 10.2058 6.33218 9.87372 6.7474 9.87372H19.609C20.0242 9.87372 20.3564 10.2058 20.3564 10.6209V15.3842C20.3668 15.789 20.0346 16.1314 19.6194 16.1314Z" fill="#4ACC97"/>
|
||||
<path d="M20.3668 15.2805V15.3739C20.3668 15.789 20.0346 16.1315 19.609 16.1315H6V10.621C6 10.2059 6.33218 9.8634 6.75778 9.8634H7.14187V11.8248C7.14187 13.7343 8.68858 15.2805 10.5986 15.2805H20.3668Z" fill="#38C487"/>
|
||||
<path d="M6 16.1315L8.28373 18.7259V16.1315H6Z" fill="#00B564"/>
|
||||
<path d="M18.5911 17.7608H8.2832V16.1315H19.5981V16.7645C19.5981 17.3145 19.1413 17.7608 18.5911 17.7608Z" fill="#E2E1DE"/>
|
||||
<path d="M8.14844 15.6748V14.9588C8.26262 14.9899 8.35605 15.0107 8.44947 15.0107C8.60518 15.0107 8.71937 14.9691 8.79204 14.8757C8.8647 14.7927 8.89584 14.6371 8.89584 14.4191V11.2436H8.30415V10.569H10.4633V11.2436H9.92352V14.4606C9.92352 14.8965 9.81972 15.2286 9.60172 15.4361C9.38373 15.6437 9.10345 15.7578 8.75051 15.7578C8.56366 15.7475 8.36643 15.7163 8.14844 15.6748Z" fill="white"/>
|
||||
<path d="M12.8189 13.8587V14.5332H10.7324V13.8587H11.2411V11.2331H10.7324V10.5586H12.8189C13.3068 10.5586 13.6805 10.6727 13.9504 10.9011C14.2203 11.1294 14.3449 11.4407 14.3449 11.8247C14.3449 12.0426 14.3034 12.2398 14.2099 12.4266C14.1165 12.603 14.0023 12.7483 13.857 12.8417C13.7117 12.9351 13.5456 13.0077 13.3587 13.0389C13.1719 13.07 12.9331 13.0907 12.6528 13.0907H12.2688V13.8587H12.8189ZM12.2688 12.4266H12.4245C12.7774 12.4266 13.0058 12.3643 13.1096 12.2501C13.2134 12.136 13.2653 11.9907 13.2653 11.8247C13.2653 11.6794 13.2341 11.5549 13.1615 11.4511C13.0888 11.3473 13.0058 11.285 12.9227 11.2643C12.8397 11.2435 12.684 11.2331 12.4764 11.2331H12.2791V12.4266H12.2688Z" fill="white"/>
|
||||
<path d="M17.2531 13.1946V12.52H19.1112C19.1112 12.9974 19.0281 13.3814 18.8517 13.6616C18.6752 13.9418 18.4261 14.1597 18.0939 14.3257C17.7617 14.4918 17.388 14.5644 16.9832 14.5644C16.2669 14.5644 15.7167 14.3776 15.3327 13.9937C14.9486 13.6097 14.7617 13.1219 14.7617 12.5304C14.7617 12.1153 14.8551 11.7625 15.042 11.4408C15.2288 11.1294 15.4884 10.8907 15.8102 10.7351C16.132 10.5794 16.4849 10.4964 16.8586 10.4964C17.388 10.4964 17.8032 10.6209 18.1043 10.8804V10.5587H18.779V11.97H18.1043C18.0316 11.7313 17.8967 11.5445 17.689 11.4096C17.4814 11.2747 17.2531 11.2021 17.0143 11.2021C16.7029 11.2021 16.433 11.3162 16.2046 11.5342C15.9866 11.7625 15.8724 12.0634 15.8724 12.4578C15.8724 12.9144 15.9866 13.2568 16.215 13.4852C16.4434 13.7238 16.7133 13.838 17.0455 13.838C17.2842 13.838 17.4814 13.7757 17.6371 13.6616C17.7929 13.5474 17.907 13.3814 17.9693 13.1738H17.2531V13.1946Z" fill="white"/>
|
||||
<path d="M32.2633 39.1491H11.0246C10.6924 39.1491 10.4121 38.8793 10.4121 38.5368V21.6835C10.4121 21.3514 10.682 21.0712 11.0246 21.0712H32.2633C32.5955 21.0712 32.8757 21.341 32.8757 21.6835V38.5472C32.8757 38.8792 32.5955 39.1491 32.2633 39.1491Z" fill="#7CC8FB"/>
|
||||
<path d="M32.8757 27.4327C32.8757 27.4327 27.509 24.1015 22.8896 26.1562C22.3394 26.4053 21.8308 26.727 21.3533 27.1006C20.1595 28.0346 15.509 31.2724 10.4121 29.3007V33.4517H32.8654V27.4327H32.8757Z" fill="#00B564"/>
|
||||
<path d="M10.4121 27.4327C10.4121 27.4327 15.7789 24.1015 20.3983 26.1562C20.9484 26.4053 21.4571 26.727 21.9346 27.1006C23.1284 28.0346 27.7789 31.2724 32.8757 29.3007V33.4517H10.4121V27.4327Z" fill="#4ACC97"/>
|
||||
<path d="M32.0661 39.1491H11.2218C10.7754 39.1491 10.4121 38.7859 10.4121 38.3396V33.4622H32.8654V38.3396C32.8757 38.7859 32.5124 39.1491 32.0661 39.1491Z" fill="#41C0E3"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_333_11686" x="0.273438" y="0" width="43.7266" height="54.8228" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.080434 0 0 0 0 0.470833 0 0 0 0 0.329856 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_333_11686"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_333_11686" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
BIN
public/themes/tailwind/images/language-black.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
3
public/themes/tailwind/images/language.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="46" height="46" viewBox="0 0 46 46" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M36.6096 17.3979H27.3005V10.9635C27.2993 9.92542 26.8862 8.93024 26.1521 8.19608C25.4182 7.46192 24.4227 7.04917 23.3846 7.04786H9.43546C8.39737 7.04914 7.40193 7.46191 6.66803 8.19608C5.93387 8.93024 5.52086 9.92542 5.51954 10.9635V19.6864C5.51774 20.4609 5.748 21.2179 6.18076 21.8599C7.56076 24.5164 13.9258 28.4438 13.9948 28.4839C14.1306 28.565 14.2854 28.6086 14.4433 28.6104C14.7305 28.6125 14.9998 28.4705 15.1605 28.2323C15.3212 27.9943 15.352 27.6914 15.2426 27.426C14.7808 26.181 14.4232 24.9003 14.173 23.5964H18.7442V30.0364C18.7458 31.0739 19.1588 32.0686 19.8932 32.8017C20.6273 33.5348 21.6225 33.9466 22.6601 33.9464H31.8719C31.6216 35.2504 31.264 36.531 30.8023 37.776C30.6929 38.0414 30.7237 38.3443 30.8844 38.5823C31.0451 38.8205 31.3144 38.9625 31.6016 38.9604C31.7595 38.9586 31.9143 38.915 32.0501 38.8339C32.1191 38.7936 38.4844 34.8664 39.8642 32.2099C40.2969 31.5679 40.5272 30.8109 40.5254 30.0364V21.3135C40.5241 20.2754 40.1111 19.2802 39.3769 18.5461C38.643 17.8119 37.6475 17.3992 36.6095 17.3979H36.6096ZM16.5306 19.5597C15.4228 20.1997 14.1585 20.5182 12.8794 20.4797H12.8622C12.386 20.4797 11.9997 20.0937 11.9997 19.6172C11.9997 19.1411 12.386 18.7547 12.8622 18.7547H12.8794C13.6408 18.7719 14.3977 18.6351 15.1047 18.3522C14.5258 17.6676 14.0707 16.8873 13.7593 16.0466C13.5878 15.602 13.8091 15.1025 14.2537 14.9309C14.6983 14.7595 15.1978 14.981 15.3694 15.4256C15.625 16.1382 16.0198 16.793 16.5307 17.3518C17.235 16.4975 17.6747 15.4564 17.7957 14.3559H12.8622C12.386 14.3559 11.9997 13.9698 11.9997 13.4934C11.9997 13.0172 12.386 12.6309 12.8622 12.6309H15.5704L15.5706 11.1187C15.5706 10.6425 15.9567 10.2562 16.4331 10.2562C16.9093 10.2562 17.2956 10.6425 17.2956 11.1187V12.6309H19.9981C20.4743 12.6309 20.8606 13.0172 20.8606 13.4934C20.8606 13.9698 20.4743 14.3559 19.9981 14.3559H19.5322C19.4034 15.817 18.8497 17.208 17.9394 18.358C18.5006 18.5965 19.1013 18.7292 19.7106 18.749C19.2953 19.2182 19.0029 19.7835 18.8594 20.3933C18.0344 20.2776 17.242 19.9937 16.5307 19.5596L16.5306 19.5597ZM38.8005 30.0366C38.8052 30.4817 38.6681 30.9165 38.4093 31.2787C38.3752 31.3269 38.3462 31.3791 38.3231 31.4337C37.6447 32.7219 35.0974 34.6825 33.1653 36.0281C33.5506 34.5446 33.7459 33.2969 33.7575 33.2162H33.7578C33.7963 32.9688 33.7249 32.7167 33.5622 32.5262C33.3971 32.336 33.1586 32.2251 32.9068 32.2215H22.66C22.0798 32.222 21.5231 31.992 21.1123 31.5824C20.7016 31.1727 20.4703 30.6167 20.4691 30.0366V21.3136C20.4698 20.733 20.7008 20.1762 21.1116 19.7655C21.5223 19.3548 22.0791 19.1237 22.6599 19.123H36.6091C37.19 19.1237 37.7467 19.3548 38.1575 19.7655C38.5682 20.1762 38.7992 20.733 38.8 21.3136L38.8005 30.0366ZM32.7515 26.8217V26.8189L30.4579 21.0856L30.4533 21.0763C30.4392 21.0447 30.423 21.0139 30.4048 20.9844C30.3937 20.9649 30.3853 20.9441 30.3732 20.9269C30.3555 20.9025 30.3362 20.8794 30.3157 20.8573C30.3003 20.8373 30.2839 20.8181 30.2664 20.7998C30.2467 20.7819 30.2261 20.7649 30.2048 20.7493C30.1833 20.7287 30.1607 20.7095 30.137 20.6918C30.1175 20.6784 30.095 20.6687 30.0744 20.6574L30.0742 20.6571C30.0459 20.6404 30.0169 20.6253 29.9869 20.6117L29.9771 20.6066C29.9558 20.5978 29.9345 20.5945 29.9132 20.5881V20.5883C29.8842 20.5781 29.8547 20.5696 29.8246 20.5629C29.7964 20.558 29.7682 20.5544 29.7397 20.5527C29.7122 20.5491 29.6847 20.547 29.6573 20.5462C29.6275 20.5462 29.5998 20.5503 29.5682 20.5532C29.5366 20.556 29.5158 20.5573 29.4899 20.5624H29.4902C29.4586 20.5693 29.4273 20.5781 29.397 20.5888C29.377 20.5958 29.3562 20.5986 29.3361 20.6066L29.3264 20.6117H29.3261C29.2964 20.625 29.2674 20.6402 29.2394 20.6571C29.2181 20.6687 29.1957 20.6784 29.1762 20.6915C29.1567 20.7049 29.1326 20.7267 29.1108 20.7444C29.089 20.7621 29.0666 20.7778 29.0469 20.7973C29.0273 20.8168 29.0158 20.8353 28.9996 20.8548V20.855C28.9791 20.8779 28.9598 20.9023 28.9421 20.9274C28.9301 20.9451 28.9213 20.9659 28.9105 20.9849C28.8926 21.015 28.8762 21.0463 28.8615 21.0781L28.8569 21.0874L26.5638 26.8207V26.8235L25.4081 29.7124C25.3183 29.9257 25.318 30.1659 25.4074 30.3795C25.4967 30.5928 25.6679 30.7614 25.8828 30.8474C26.0976 30.9334 26.3379 30.9293 26.5499 30.8364C26.7617 30.7435 26.9273 30.5692 27.0094 30.3528L27.9427 28.0199H31.375L32.3083 30.3528H32.3081C32.3902 30.5692 32.5558 30.7435 32.7676 30.8364C32.9796 30.9293 33.2199 30.9334 33.4347 30.8474C33.6496 30.7614 33.8208 30.5928 33.9101 30.3795C33.9992 30.1659 33.9992 29.9256 33.9093 29.7124L32.7515 26.8217ZM28.6299 26.2931L29.6562 23.728L30.6819 26.2931H28.6299Z" fill="#58C2B1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
BIN
public/themes/tailwind/images/link.png
Normal file
|
After Width: | Height: | Size: 522 B |
BIN
public/themes/tailwind/images/location.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
public/themes/tailwind/images/location2.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
10
public/themes/tailwind/images/lock.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="220" height="220" viewBox="0 0 220 220" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="110" cy="110" r="110" fill="white"/>
|
||||
<path d="M144.712 153.022L97.8601 126.094C94.3867 124.093 91.5723 118.745 91.5723 114.142V82.4552C91.5723 77.8523 94.3867 75.7843 97.8601 77.73L144.712 104.658C148.186 106.659 151 112.007 151 116.61V148.297C151 152.9 148.186 155.012 144.712 153.022Z" fill="#E8A30A"/>
|
||||
<path d="M128.148 165.654L149.078 153.191L136.391 124.539L116.689 134.234L128.148 165.654Z" fill="#E8A30A"/>
|
||||
<path d="M73.5566 89.4606L94.2072 77.1973L99.3783 115.377L73.5566 89.4606Z" fill="#E8A30A"/>
|
||||
<path d="M124.185 165.252L77.2767 138.324C73.8033 136.334 71 130.986 71 126.383V94.674C71 90.0711 73.8033 88.0031 77.2767 89.9488L124.185 116.888C127.647 118.878 130.461 124.226 130.461 128.829V160.516C130.461 165.119 127.647 167.242 124.185 165.252Z" fill="#F9CB07"/>
|
||||
<path d="M96.5977 89.0269V64.9561C96.5977 55.1832 103.489 51.2251 111.988 56.0615C120.487 60.9424 127.378 72.8277 127.378 82.5895V106.66" stroke="#CC8B09" stroke-width="10.46" stroke-miterlimit="10"/>
|
||||
<path d="M96.3864 93.119C100.155 93.119 103.21 91.3618 103.21 89.1942C103.21 87.0267 100.155 85.2695 96.3864 85.2695C92.6177 85.2695 89.5625 87.0267 89.5625 89.1942C89.5625 91.3618 92.6177 93.119 96.3864 93.119Z" fill="#CC8B09"/>
|
||||
<path d="M127.379 109.508C131.147 109.508 134.203 107.75 134.203 105.583C134.203 103.415 131.147 101.658 127.379 101.658C123.61 101.658 120.555 103.415 120.555 105.583C120.555 107.75 123.61 109.508 127.379 109.508Z" fill="#CC8B09"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/themes/tailwind/images/login-bg.png
Normal file
|
After Width: | Height: | Size: 395 KiB |
13
public/themes/tailwind/images/logo-square - Copy.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M63.9671 21.2523C62.2251 17.7175 59.7406 14.6789 56.5752 12.2197C56.5317 12.1871 56.5172 12.169 56.5136 12.169C56.5136 12.1618 56.5136 12.1437 56.5208 12.1111C56.8577 10.2567 55.9812 8.39517 54.3405 7.47887C52.6492 6.5336 50.5667 6.75815 49.1651 8.03662C49.0456 8.14527 49.0238 8.14527 48.9007 8.10181C46.7241 7.34849 44.4098 6.89939 42.0303 6.76539C41.9977 6.76539 41.9687 6.75452 41.9361 6.74728C41.9072 6.74004 41.8746 6.73279 41.8456 6.72555L39.1981 6.71831L38.6259 6.77626C38.2239 6.81972 37.8218 6.86318 37.4198 6.90664C34.0625 7.28692 30.8862 8.29738 27.978 9.90543C22.3426 13.0237 18.3297 17.6306 16.0408 23.6028C15.0882 26.0909 14.5522 28.7493 14.4436 31.5127C14.4436 31.5417 14.4327 31.5706 14.4255 31.5996C14.4182 31.6286 14.411 31.6612 14.4037 31.6901L14.3965 33.3344L14.4399 33.8197C14.4689 34.1421 14.4979 34.468 14.5232 34.7903C14.7949 38.1115 15.722 41.3239 17.2902 44.3372C19.1011 47.8286 21.6399 50.8092 24.8343 53.2032C24.8343 53.2032 24.8379 53.2032 24.8379 53.2068C24.512 54.5469 24.7981 55.9304 25.6166 56.9988C26.4315 58.0636 27.6846 58.6974 29.0573 58.73C29.1007 58.73 29.1442 58.73 29.1876 58.73C30.5059 58.73 31.6649 58.1976 32.5486 57.1799C32.5558 57.1726 32.5595 57.1654 32.5667 57.1618C32.5703 57.1618 32.5739 57.1618 32.5812 57.1654C35.3156 58.0491 38.1587 58.462 41.0379 58.3895C47.376 58.2338 52.9933 56.068 57.7305 51.9501C61.9136 48.3175 64.6806 43.7215 65.9591 38.2926C66.3249 36.7425 66.5385 35.0873 66.5929 33.3815C66.7305 29.1296 65.8468 25.0443 63.9744 21.2378L63.9671 21.2523ZM30.9478 31.2374V27.9887C31.4911 28.608 32.0307 29.2274 32.5739 29.8467C34.3414 31.8676 36.1703 33.9573 37.9848 35.9964C38.8251 36.938 39.6943 37.8797 40.5381 38.7887C41.2516 39.5602 41.9941 40.3569 42.7076 41.1501C43.1096 41.5956 43.4898 42.1171 43.8412 42.7002C44.0693 43.0805 44.0693 43.5042 43.8339 43.9642C42.9973 45.6121 41.1792 46.5573 39.3104 46.3111C37.543 46.0793 36.0291 44.6233 35.7067 42.8487C35.4786 41.5811 35.714 40.7191 36.5723 39.6724C36.5796 39.6616 37.409 38.662 38.2782 37.7348L38.5208 37.474L36.5687 35.2539L35.9385 35.9384C34.6166 37.3618 32.9723 39.1328 32.7297 41.1501C32.2661 44.9928 34.7651 48.4298 38.5426 49.1469C41.6609 49.7372 44.6995 48.3646 46.2822 45.6447C47.1695 44.1199 47.1695 42.559 46.2858 41.0089C45.8114 40.1759 45.1739 39.4805 44.5546 38.8105L44.312 38.5461C42.3309 36.3803 40.2846 34.1421 38.3035 31.9074C36.2247 29.5606 34.1241 27.163 32.0923 24.8451C31.2049 23.831 30.3176 22.8169 29.4303 21.8064L28.0214 20.2093V49.9907L26.4677 50.7368C19.3184 45.6266 14.4146 34.3811 19.3293 23.3964C24.7438 11.2817 37.9232 7.51147 47.6621 10.8072C47.6621 10.8905 47.6621 10.9702 47.6657 11.0535C47.6693 11.441 47.6766 11.8394 47.7562 12.2306C48.075 13.7662 48.9949 14.8563 50.4907 15.4648C50.5015 15.4684 50.5124 15.472 50.5196 15.4757C50.5124 22.3135 50.5124 29.1549 50.5124 35.9928V38.2853C46.811 34.2362 42.9864 30.0531 39.0061 26.1344C38.1224 25.2652 37.5104 24.472 37.0758 23.639C36.3442 22.2374 36.5108 21.2161 37.648 20.1151C39.2452 18.5686 41.5848 18.3622 43.345 19.608C44.3156 20.2962 44.9349 21.3247 45.087 22.5018C45.2391 23.6825 44.9059 24.8378 44.1418 25.7505L41.9868 28.34L44.0585 30.4588L44.3373 30.1256C44.5076 29.9227 44.6742 29.7199 44.8407 29.5135C45.2065 29.068 45.5868 28.6044 45.9744 28.1662C46.9051 27.1087 47.4882 26.1163 47.7997 25.0479C48.3683 23.1066 48.0605 20.9915 46.9558 19.2423C45.8367 17.4712 44.0331 16.2688 42.0013 15.9429C38.5426 15.3887 35.4351 17.4785 34.2653 19.7312C33.454 21.2922 33.4649 22.9111 34.2979 24.6821C34.8484 25.8555 35.6524 26.9638 36.6846 27.9779C40.5744 31.7988 44.3192 35.8877 47.941 39.8427C48.8971 40.8893 49.8532 41.9324 50.8166 42.9755C51.244 43.439 51.6713 43.9062 52.1204 44.3915L53.446 45.833V15.6169L55.0106 14.7658C58.7591 17.6052 61.5406 21.7847 62.8552 26.5618C64.3039 31.8314 63.8295 37.235 61.479 42.1968C58.1941 49.1252 52.8846 52.3811 49.0094 53.8913C44.0693 55.8181 38.4919 56.0173 33.6605 54.4419C33.646 54.3332 33.6315 54.2282 33.617 54.1231C33.5627 53.7103 33.5084 53.2829 33.378 52.8736C32.9904 51.6821 32.1756 50.802 30.9514 50.2551C30.9442 50.2551 30.9405 50.2515 30.9333 50.2479C30.9369 43.9135 30.9405 37.5791 30.9405 31.2447L30.9478 31.2374ZM53.3192 12.5058C52.9969 12.8245 52.5695 13.0056 52.1168 12.9984C51.2114 12.9911 50.4436 12.2306 50.4399 11.336C50.4399 10.905 50.6102 10.4994 50.9216 10.1879C51.2476 9.86197 51.6786 9.6845 52.1385 9.6845H52.1422C52.5949 9.6845 53.0114 9.85835 53.3228 10.1734C53.6343 10.4885 53.8045 10.9123 53.8009 11.3722C53.8009 11.7996 53.6271 12.2052 53.3156 12.5131L53.3192 12.5058ZM30.3538 55.474C30.046 55.7891 29.6295 55.9666 29.1876 55.9702C28.7385 55.9847 28.3112 55.8 27.9816 55.4777C27.6593 55.1626 27.4818 54.7461 27.4782 54.3115C27.4709 53.4133 28.2206 52.6708 29.1478 52.6563C29.6005 52.6563 30.0315 52.8193 30.3575 53.1344C30.6653 53.4314 30.8355 53.8262 30.8428 54.239C30.85 54.7099 30.6762 55.1481 30.3538 55.474Z" fill="white"/>
|
||||
<path d="M14.0089 66.9694V74.2781L9.54333 69.0736V74.1296H8.67773V66.8209L13.1433 72.0036V66.9658H14.0089V66.9694Z" fill="white"/>
|
||||
<path d="M18.6407 74.2598C18.398 74.2598 18.1445 74.2236 17.8801 74.1511C17.6157 74.0787 17.3477 73.9411 17.0833 73.7383C16.8189 73.5354 16.6161 73.2819 16.4821 72.9741C16.3481 72.6698 16.2793 72.362 16.2793 72.0541V66.9692H17.1558V71.9455C17.1558 72.3511 17.297 72.6952 17.5831 72.9741C17.8692 73.2529 18.2205 73.3906 18.6407 73.3906C19.0608 73.3906 19.4121 73.2529 19.6982 72.9741C19.9843 72.6952 20.1256 72.3547 20.1256 71.9455V66.9692H21.002V72.0541C21.002 72.362 20.9441 72.6517 20.8246 72.9234C20.7051 73.195 20.5421 73.4304 20.3284 73.6332C20.1147 73.8324 19.8612 73.9881 19.5714 74.0968C19.2817 74.2055 18.9702 74.2598 18.6407 74.2598Z" fill="white"/>
|
||||
<path d="M26.6091 70.5912L29.9447 66.8246V74.1332H29.0791V68.9686L26.6091 71.7827L24.139 68.9686V74.1332H23.2734V66.8246L26.6091 70.5912Z" fill="white"/>
|
||||
<path d="M33.8011 74.2601C33.0079 74.2601 32.28 73.9776 31.6172 73.4126L32.0699 72.7716C32.6277 73.2243 33.1963 73.4489 33.783 73.4489C33.9677 73.4489 34.1669 73.409 34.3878 73.3293C34.6087 73.2497 34.8007 73.1084 34.9637 72.9056C35.1266 72.7028 35.2099 72.4674 35.2099 72.1957C35.2099 72.1052 35.1955 72.0038 35.1665 71.8915C35.1375 71.7792 35.0796 71.6706 34.9999 71.5656C34.9166 71.4605 34.8043 71.3555 34.6594 71.2541C34.5146 71.1527 34.2067 70.9897 33.7359 70.7688C33.2651 70.5442 32.9174 70.3523 32.6928 70.1821C32.4683 70.0155 32.2945 69.8126 32.1604 69.5772C32.0301 69.3418 31.9649 69.0593 31.9649 68.7297C31.9649 68.4617 32.0192 68.2082 32.1206 67.9728C32.2256 67.7374 32.3741 67.5346 32.5697 67.3643C32.7653 67.1941 32.9934 67.0601 33.2578 66.966C33.5222 66.8718 33.812 66.8247 34.1198 66.8247C34.4276 66.8247 34.7319 66.8754 35.0506 66.9732C35.3693 67.071 35.6518 67.2086 35.9017 67.3861L35.4997 68.0235C35.3041 67.9004 35.0868 67.799 34.855 67.7193C34.6232 67.6396 34.3914 67.5998 34.1633 67.5998C33.9858 67.5998 33.7938 67.636 33.5874 67.7084C33.381 67.7808 33.2035 67.9076 33.0623 68.0887C32.9174 68.2698 32.845 68.469 32.845 68.6935C32.845 68.8384 32.8739 68.9796 32.9319 69.1173C32.9898 69.2549 33.1021 69.3925 33.2651 69.5301C33.4281 69.6678 33.7649 69.8561 34.2719 70.0951C34.779 70.3342 35.152 70.5406 35.3838 70.7144C35.6156 70.8883 35.8003 71.0947 35.9307 71.3338C36.061 71.5728 36.1262 71.8553 36.1262 72.1849C36.1262 72.4746 36.0719 72.7462 35.9596 72.9998C35.8474 73.2569 35.6916 73.4742 35.4888 73.6589C35.286 73.8436 35.0397 73.9885 34.75 74.0935C34.4602 74.1986 34.1452 74.2493 33.8047 74.2493L33.8011 74.2601Z" fill="white"/>
|
||||
<path d="M42.1215 66.9692V67.766H40.0354V74.1294H39.1517V67.766H37.0547V66.9692H42.1215Z" fill="white"/>
|
||||
<path d="M47.3541 74.1332L46.695 72.431H43.8229L43.1638 74.1332H42.2402L45.2789 66.8246L48.2777 74.1332H47.3541ZM44.109 71.7139H46.4197L45.2789 68.7441L44.109 71.7139Z" fill="white"/>
|
||||
<path d="M53.9164 66.9692V67.766H51.8303V74.1294H50.9466V67.766H48.8496V66.9692H53.9164Z" fill="white"/>
|
||||
<path d="M55.2637 74.1333V66.9731H56.1401V74.1333H55.2637Z" fill="white"/>
|
||||
<path d="M61.5518 74.26C61.052 74.26 60.5776 74.1622 60.1212 73.9703C59.6649 73.7783 59.2665 73.5103 58.9225 73.1699C58.5784 72.8294 58.3104 72.431 58.1221 71.9747C57.9301 71.5183 57.8359 71.0403 57.8359 70.5441C57.8359 70.0479 57.9301 69.5699 58.1221 69.1171C58.3104 68.6644 58.5784 68.2697 58.9225 67.9256C59.2665 67.5852 59.6649 67.3171 60.1212 67.1252C60.5776 66.9332 61.0557 66.8354 61.5518 66.8354C62.048 66.8354 62.5261 66.9332 62.9824 67.1252C63.4388 67.3171 63.8371 67.5852 64.1776 67.9256C64.518 68.266 64.786 68.6644 64.978 69.1208C65.1699 69.5771 65.2677 70.0515 65.2677 70.5405C65.2677 71.0294 65.1699 71.5147 64.978 71.9711C64.786 72.4274 64.518 72.8258 64.1776 73.1662C63.8371 73.5067 63.4388 73.7747 62.9824 73.9666C62.5261 74.1586 62.048 74.2564 61.5518 74.2564V74.26ZM61.5518 73.4342C61.9321 73.4342 62.2943 73.3582 62.6384 73.2097C62.9824 73.0576 63.283 72.8511 63.5438 72.5868C63.8045 72.3224 64.0037 72.0109 64.1486 71.656C64.2935 71.301 64.3659 70.9316 64.3659 70.5441C64.3659 70.1566 64.2935 69.7872 64.1486 69.4395C64.0037 69.0918 63.8046 68.7803 63.5474 68.5159C63.2903 68.2515 62.9897 68.0415 62.642 67.893C62.2943 67.7409 61.9321 67.6684 61.5482 67.6684C61.1643 67.6684 60.8021 67.7445 60.4581 67.893C60.1104 68.0451 59.8062 68.2515 59.549 68.5159C59.2882 68.7803 59.0891 69.0882 58.9442 69.4395C58.7993 69.7908 58.7269 70.1602 58.7269 70.5441C58.7269 70.928 58.7993 71.301 58.9442 71.656C59.0891 72.0109 59.2883 72.3188 59.5454 72.5868C59.8025 72.8511 60.1031 73.0612 60.4508 73.2097C60.7985 73.3618 61.1643 73.4342 61.5518 73.4342Z" fill="white"/>
|
||||
<path d="M72.3214 66.9693V74.2779L67.8558 69.0735V74.1295H66.9902V66.8208L71.4558 72.0035V66.9657H72.3214V66.9693Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.6 KiB |
13
public/themes/tailwind/images/logo-square.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="81" height="81" viewBox="0 0 81 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M63.9671 21.2523C62.2251 17.7175 59.7406 14.6789 56.5752 12.2197C56.5317 12.1871 56.5172 12.169 56.5136 12.169C56.5136 12.1618 56.5136 12.1437 56.5208 12.1111C56.8577 10.2567 55.9812 8.39517 54.3405 7.47887C52.6492 6.5336 50.5667 6.75815 49.1651 8.03662C49.0456 8.14527 49.0238 8.14527 48.9007 8.10181C46.7241 7.34849 44.4098 6.89939 42.0303 6.76539C41.9977 6.76539 41.9687 6.75452 41.9361 6.74728C41.9072 6.74004 41.8746 6.73279 41.8456 6.72555L39.1981 6.71831L38.6259 6.77626C38.2239 6.81972 37.8218 6.86318 37.4198 6.90664C34.0625 7.28692 30.8862 8.29738 27.978 9.90543C22.3426 13.0237 18.3297 17.6306 16.0408 23.6028C15.0882 26.0909 14.5522 28.7493 14.4436 31.5127C14.4436 31.5417 14.4327 31.5706 14.4255 31.5996C14.4182 31.6286 14.411 31.6612 14.4037 31.6901L14.3965 33.3344L14.4399 33.8197C14.4689 34.1421 14.4979 34.468 14.5232 34.7903C14.7949 38.1115 15.722 41.3239 17.2902 44.3372C19.1011 47.8286 21.6399 50.8092 24.8343 53.2032C24.8343 53.2032 24.8379 53.2032 24.8379 53.2068C24.512 54.5469 24.7981 55.9304 25.6166 56.9988C26.4315 58.0636 27.6846 58.6974 29.0573 58.73C29.1007 58.73 29.1442 58.73 29.1876 58.73C30.5059 58.73 31.6649 58.1976 32.5486 57.1799C32.5558 57.1726 32.5595 57.1654 32.5667 57.1618C32.5703 57.1618 32.5739 57.1618 32.5812 57.1654C35.3156 58.0491 38.1587 58.462 41.0379 58.3895C47.376 58.2338 52.9933 56.068 57.7305 51.9501C61.9136 48.3175 64.6806 43.7215 65.9591 38.2926C66.3249 36.7425 66.5385 35.0873 66.5929 33.3815C66.7305 29.1296 65.8468 25.0443 63.9744 21.2378L63.9671 21.2523ZM30.9478 31.2374V27.9887C31.4911 28.608 32.0307 29.2274 32.5739 29.8467C34.3414 31.8676 36.1703 33.9573 37.9848 35.9964C38.8251 36.938 39.6943 37.8797 40.5381 38.7887C41.2516 39.5602 41.9941 40.3569 42.7076 41.1501C43.1096 41.5956 43.4898 42.1171 43.8412 42.7002C44.0693 43.0805 44.0693 43.5042 43.8339 43.9642C42.9973 45.6121 41.1792 46.5573 39.3104 46.3111C37.543 46.0793 36.0291 44.6233 35.7067 42.8487C35.4786 41.5811 35.714 40.7191 36.5723 39.6724C36.5796 39.6616 37.409 38.662 38.2782 37.7348L38.5208 37.474L36.5687 35.2539L35.9385 35.9384C34.6166 37.3618 32.9723 39.1328 32.7297 41.1501C32.2661 44.9928 34.7651 48.4298 38.5426 49.1469C41.6609 49.7372 44.6995 48.3646 46.2822 45.6447C47.1695 44.1199 47.1695 42.559 46.2858 41.0089C45.8114 40.1759 45.1739 39.4805 44.5546 38.8105L44.312 38.5461C42.3309 36.3803 40.2846 34.1421 38.3035 31.9074C36.2247 29.5606 34.1241 27.163 32.0923 24.8451C31.2049 23.831 30.3176 22.8169 29.4303 21.8064L28.0214 20.2093V49.9907L26.4677 50.7368C19.3184 45.6266 14.4146 34.3811 19.3293 23.3964C24.7438 11.2817 37.9232 7.51147 47.6621 10.8072C47.6621 10.8905 47.6621 10.9702 47.6657 11.0535C47.6693 11.441 47.6766 11.8394 47.7562 12.2306C48.075 13.7662 48.9949 14.8563 50.4907 15.4648C50.5015 15.4684 50.5124 15.472 50.5196 15.4757C50.5124 22.3135 50.5124 29.1549 50.5124 35.9928V38.2853C46.811 34.2362 42.9864 30.0531 39.0061 26.1344C38.1224 25.2652 37.5104 24.472 37.0758 23.639C36.3442 22.2374 36.5108 21.2161 37.648 20.1151C39.2452 18.5686 41.5848 18.3622 43.345 19.608C44.3156 20.2962 44.9349 21.3247 45.087 22.5018C45.2391 23.6825 44.9059 24.8378 44.1418 25.7505L41.9868 28.34L44.0585 30.4588L44.3373 30.1256C44.5076 29.9227 44.6742 29.7199 44.8407 29.5135C45.2065 29.068 45.5868 28.6044 45.9744 28.1662C46.9051 27.1087 47.4882 26.1163 47.7997 25.0479C48.3683 23.1066 48.0605 20.9915 46.9558 19.2423C45.8367 17.4712 44.0331 16.2688 42.0013 15.9429C38.5426 15.3887 35.4351 17.4785 34.2653 19.7312C33.454 21.2922 33.4649 22.9111 34.2979 24.6821C34.8484 25.8555 35.6524 26.9638 36.6846 27.9779C40.5744 31.7988 44.3192 35.8877 47.941 39.8427C48.8971 40.8893 49.8532 41.9324 50.8166 42.9755C51.244 43.439 51.6713 43.9062 52.1204 44.3915L53.446 45.833V15.6169L55.0106 14.7658C58.7591 17.6052 61.5406 21.7847 62.8552 26.5618C64.3039 31.8314 63.8295 37.235 61.479 42.1968C58.1941 49.1252 52.8846 52.3811 49.0094 53.8913C44.0693 55.8181 38.4919 56.0173 33.6605 54.4419C33.646 54.3332 33.6315 54.2282 33.617 54.1231C33.5627 53.7103 33.5084 53.2829 33.378 52.8736C32.9904 51.6821 32.1756 50.802 30.9514 50.2551C30.9442 50.2551 30.9405 50.2515 30.9333 50.2479C30.9369 43.9135 30.9405 37.5791 30.9405 31.2447L30.9478 31.2374ZM53.3192 12.5058C52.9969 12.8245 52.5695 13.0056 52.1168 12.9984C51.2114 12.9911 50.4436 12.2306 50.4399 11.336C50.4399 10.905 50.6102 10.4994 50.9216 10.1879C51.2476 9.86197 51.6786 9.6845 52.1385 9.6845H52.1422C52.5949 9.6845 53.0114 9.85835 53.3228 10.1734C53.6343 10.4885 53.8045 10.9123 53.8009 11.3722C53.8009 11.7996 53.6271 12.2052 53.3156 12.5131L53.3192 12.5058ZM30.3538 55.474C30.046 55.7891 29.6295 55.9666 29.1876 55.9702C28.7385 55.9847 28.3112 55.8 27.9816 55.4777C27.6593 55.1626 27.4818 54.7461 27.4782 54.3115C27.4709 53.4133 28.2206 52.6708 29.1478 52.6563C29.6005 52.6563 30.0315 52.8193 30.3575 53.1344C30.6653 53.4314 30.8355 53.8262 30.8428 54.239C30.85 54.7099 30.6762 55.1481 30.3538 55.474Z" fill="white"/>
|
||||
<path d="M14.0089 66.9694V74.2781L9.54333 69.0736V74.1296H8.67773V66.8209L13.1433 72.0036V66.9658H14.0089V66.9694Z" fill="white"/>
|
||||
<path d="M18.6407 74.2598C18.398 74.2598 18.1445 74.2236 17.8801 74.1511C17.6157 74.0787 17.3477 73.9411 17.0833 73.7383C16.8189 73.5354 16.6161 73.2819 16.4821 72.9741C16.3481 72.6698 16.2793 72.362 16.2793 72.0541V66.9692H17.1558V71.9455C17.1558 72.3511 17.297 72.6952 17.5831 72.9741C17.8692 73.2529 18.2205 73.3906 18.6407 73.3906C19.0608 73.3906 19.4121 73.2529 19.6982 72.9741C19.9843 72.6952 20.1256 72.3547 20.1256 71.9455V66.9692H21.002V72.0541C21.002 72.362 20.9441 72.6517 20.8246 72.9234C20.7051 73.195 20.5421 73.4304 20.3284 73.6332C20.1147 73.8324 19.8612 73.9881 19.5714 74.0968C19.2817 74.2055 18.9702 74.2598 18.6407 74.2598Z" fill="white"/>
|
||||
<path d="M26.6091 70.5912L29.9447 66.8246V74.1332H29.0791V68.9686L26.6091 71.7827L24.139 68.9686V74.1332H23.2734V66.8246L26.6091 70.5912Z" fill="white"/>
|
||||
<path d="M33.8011 74.2601C33.0079 74.2601 32.28 73.9776 31.6172 73.4126L32.0699 72.7716C32.6277 73.2243 33.1963 73.4489 33.783 73.4489C33.9677 73.4489 34.1669 73.409 34.3878 73.3293C34.6087 73.2497 34.8007 73.1084 34.9637 72.9056C35.1266 72.7028 35.2099 72.4674 35.2099 72.1957C35.2099 72.1052 35.1955 72.0038 35.1665 71.8915C35.1375 71.7792 35.0796 71.6706 34.9999 71.5656C34.9166 71.4605 34.8043 71.3555 34.6594 71.2541C34.5146 71.1527 34.2067 70.9897 33.7359 70.7688C33.2651 70.5442 32.9174 70.3523 32.6928 70.1821C32.4683 70.0155 32.2945 69.8126 32.1604 69.5772C32.0301 69.3418 31.9649 69.0593 31.9649 68.7297C31.9649 68.4617 32.0192 68.2082 32.1206 67.9728C32.2256 67.7374 32.3741 67.5346 32.5697 67.3643C32.7653 67.1941 32.9934 67.0601 33.2578 66.966C33.5222 66.8718 33.812 66.8247 34.1198 66.8247C34.4276 66.8247 34.7319 66.8754 35.0506 66.9732C35.3693 67.071 35.6518 67.2086 35.9017 67.3861L35.4997 68.0235C35.3041 67.9004 35.0868 67.799 34.855 67.7193C34.6232 67.6396 34.3914 67.5998 34.1633 67.5998C33.9858 67.5998 33.7938 67.636 33.5874 67.7084C33.381 67.7808 33.2035 67.9076 33.0623 68.0887C32.9174 68.2698 32.845 68.469 32.845 68.6935C32.845 68.8384 32.8739 68.9796 32.9319 69.1173C32.9898 69.2549 33.1021 69.3925 33.2651 69.5301C33.4281 69.6678 33.7649 69.8561 34.2719 70.0951C34.779 70.3342 35.152 70.5406 35.3838 70.7144C35.6156 70.8883 35.8003 71.0947 35.9307 71.3338C36.061 71.5728 36.1262 71.8553 36.1262 72.1849C36.1262 72.4746 36.0719 72.7462 35.9596 72.9998C35.8474 73.2569 35.6916 73.4742 35.4888 73.6589C35.286 73.8436 35.0397 73.9885 34.75 74.0935C34.4602 74.1986 34.1452 74.2493 33.8047 74.2493L33.8011 74.2601Z" fill="white"/>
|
||||
<path d="M42.1215 66.9692V67.766H40.0354V74.1294H39.1517V67.766H37.0547V66.9692H42.1215Z" fill="white"/>
|
||||
<path d="M47.3541 74.1332L46.695 72.431H43.8229L43.1638 74.1332H42.2402L45.2789 66.8246L48.2777 74.1332H47.3541ZM44.109 71.7139H46.4197L45.2789 68.7441L44.109 71.7139Z" fill="white"/>
|
||||
<path d="M53.9164 66.9692V67.766H51.8303V74.1294H50.9466V67.766H48.8496V66.9692H53.9164Z" fill="white"/>
|
||||
<path d="M55.2637 74.1333V66.9731H56.1401V74.1333H55.2637Z" fill="white"/>
|
||||
<path d="M61.5518 74.26C61.052 74.26 60.5776 74.1622 60.1212 73.9703C59.6649 73.7783 59.2665 73.5103 58.9225 73.1699C58.5784 72.8294 58.3104 72.431 58.1221 71.9747C57.9301 71.5183 57.8359 71.0403 57.8359 70.5441C57.8359 70.0479 57.9301 69.5699 58.1221 69.1171C58.3104 68.6644 58.5784 68.2697 58.9225 67.9256C59.2665 67.5852 59.6649 67.3171 60.1212 67.1252C60.5776 66.9332 61.0557 66.8354 61.5518 66.8354C62.048 66.8354 62.5261 66.9332 62.9824 67.1252C63.4388 67.3171 63.8371 67.5852 64.1776 67.9256C64.518 68.266 64.786 68.6644 64.978 69.1208C65.1699 69.5771 65.2677 70.0515 65.2677 70.5405C65.2677 71.0294 65.1699 71.5147 64.978 71.9711C64.786 72.4274 64.518 72.8258 64.1776 73.1662C63.8371 73.5067 63.4388 73.7747 62.9824 73.9666C62.5261 74.1586 62.048 74.2564 61.5518 74.2564V74.26ZM61.5518 73.4342C61.9321 73.4342 62.2943 73.3582 62.6384 73.2097C62.9824 73.0576 63.283 72.8511 63.5438 72.5868C63.8045 72.3224 64.0037 72.0109 64.1486 71.656C64.2935 71.301 64.3659 70.9316 64.3659 70.5441C64.3659 70.1566 64.2935 69.7872 64.1486 69.4395C64.0037 69.0918 63.8046 68.7803 63.5474 68.5159C63.2903 68.2515 62.9897 68.0415 62.642 67.893C62.2943 67.7409 61.9321 67.6684 61.5482 67.6684C61.1643 67.6684 60.8021 67.7445 60.4581 67.893C60.1104 68.0451 59.8062 68.2515 59.549 68.5159C59.2882 68.7803 59.0891 69.0882 58.9442 69.4395C58.7993 69.7908 58.7269 70.1602 58.7269 70.5441C58.7269 70.928 58.7993 71.301 58.9442 71.656C59.0891 72.0109 59.2883 72.3188 59.5454 72.5868C59.8025 72.8511 60.1031 73.0612 60.4508 73.2097C60.7985 73.3618 61.1643 73.4342 61.5518 73.4342Z" fill="white"/>
|
||||
<path d="M72.3214 66.9693V74.2779L67.8558 69.0735V74.1295H66.9902V66.8208L71.4558 72.0035V66.9657H72.3214V66.9693Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.6 KiB |