new foders structure
@@ -4,7 +4,7 @@ import { fileURLToPath } from 'node:url'
|
|||||||
import { babel } from '@rollup/plugin-babel'
|
import { babel } from '@rollup/plugin-babel'
|
||||||
import { nodeResolve } from '@rollup/plugin-node-resolve'
|
import { nodeResolve } from '@rollup/plugin-node-resolve'
|
||||||
import replace from '@rollup/plugin-replace'
|
import replace from '@rollup/plugin-replace'
|
||||||
import banner from '../../.build/banner.mjs'
|
import banner from './banner.mjs'
|
||||||
|
|
||||||
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
||||||
|
|
||||||
@@ -11,11 +11,11 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
|||||||
|
|
||||||
let foundFiles = []
|
let foundFiles = []
|
||||||
|
|
||||||
globSync(path.join(__dirname, `../pages/**/*.{html,md}`)).forEach((file) => {
|
globSync(path.join(__dirname, `../preview/**/*.{html,md}`)).forEach((file) => {
|
||||||
let fileContent = readFileSync(file)
|
let fileContent = readFileSync(file)
|
||||||
|
|
||||||
fileContent.toString().replace(/\{% include(_cached)? ([a-z0-9\/_-]+\.html)/g, (f, c, filename) => {
|
fileContent.toString().replace(/\{% include(_cached)? ([a-z0-9\/_-]+\.html)/g, (f, c, filename) => {
|
||||||
filename = path.join(__dirname, `../pages/_includes/${filename}`)
|
filename = path.join(__dirname, `../preview/_includes/${filename}`)
|
||||||
|
|
||||||
if (!foundFiles.includes(filename)) {
|
if (!foundFiles.includes(filename)) {
|
||||||
foundFiles.push(filename)
|
foundFiles.push(filename)
|
||||||
@@ -23,7 +23,7 @@ globSync(path.join(__dirname, `../pages/**/*.{html,md}`)).forEach((file) => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
let includeFiles = globSync(path.join(__dirname, `../pages/_includes/**/*.html`))
|
let includeFiles = globSync(path.join(__dirname, `../preview/_includes/**/*.html`))
|
||||||
|
|
||||||
includeFiles.forEach((file) => {
|
includeFiles.forEach((file) => {
|
||||||
if (!foundFiles.includes(file)) {
|
if (!foundFiles.includes(file)) {
|
||||||
1
core/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
dist
|
|
||||||
@@ -1,190 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@tabler/core",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "Premium and Open Source dashboard template with responsive and high quality UI.",
|
|
||||||
"scripts": {
|
|
||||||
"dev": "pnpm run watch",
|
|
||||||
"build": "pnpm run clean && pnpm run js && pnpm run css && pnpm run img",
|
|
||||||
"clean": "rm -rf dist",
|
|
||||||
"js": "pnpm run js-compile && pnpm run js-minify",
|
|
||||||
"js-compile": "pnpm run js-compile-standalone && pnpm run js-compile-standalone-esm && pnpm run js-compile-bundle",
|
|
||||||
"js-compile-standalone": "rollup --environment BUNDLE:false --config .build/rollup.config.mjs --sourcemap",
|
|
||||||
"js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config .build/rollup.config.mjs --sourcemap",
|
|
||||||
"js-compile-bundle": "rollup --environment BUNDLE:true --config .build/rollup.config.mjs --sourcemap",
|
|
||||||
"js-minify": "pnpm run js-minify-standalone && pnpm run js-minify-standalone-esm && pnpm run js-minify-bundle",
|
|
||||||
"js-minify-standalone": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/tabler.js.map,includeSources,url=tabler.min.js.map\" --output dist/js/tabler.min.js dist/js/tabler.js",
|
|
||||||
"js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/tabler.esm.js.map,includeSources,url=tabler.esm.min.js.map\" --output dist/js/tabler.esm.min.js dist/js/tabler.esm.js",
|
|
||||||
"js-minify-bundle": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/tabler.bundle.js.map,includeSources,url=tabler.bundle.min.js.map\" --output dist/js/tabler.bundle.min.js dist/js/tabler.bundle.js",
|
|
||||||
"css": "pnpm run css-compile && pnpm run css-rtl && pnpm run css-minify",
|
|
||||||
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/ --load-path=node_modules",
|
|
||||||
"css-rtl": "cross-env NODE_ENV=RTL postcss --config .build/postcss.config.mjs --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
|
|
||||||
"css-minify": "pnpm run css-minify-main && pnpm run css-minify-rtl",
|
|
||||||
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
|
|
||||||
"css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
|
|
||||||
"watch": "pnpm run watch-css & pnpm run watch-js",
|
|
||||||
"watch-css": "nodemon --watch scss/ --ext scss --exec \"pnpm run css-compile\"",
|
|
||||||
"watch-js": "nodemon --watch js/ --ext js --exec \"pnpm run js-compile\"",
|
|
||||||
"img": "rm -rf dist/img && cp -r img dist/img",
|
|
||||||
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore .",
|
|
||||||
"bundlewatch": "bundlewatch --config .bundlewatch.config.json"
|
|
||||||
},
|
|
||||||
"main": "dist/js/tabler.js",
|
|
||||||
"module": "dist/js/tabler.esm.js",
|
|
||||||
"sass": "scss/tabler.scss",
|
|
||||||
"style": "dist/css/tabler.css",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/tabler/tabler.git"
|
|
||||||
},
|
|
||||||
"author": "codecalm",
|
|
||||||
"license": "MIT",
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/tabler/tabler/issues"
|
|
||||||
},
|
|
||||||
"homepage": "https://tabler.io",
|
|
||||||
"dependencies": {
|
|
||||||
"@popperjs/core": "^2.11.8",
|
|
||||||
"@tabler/icons": "^2.45.0",
|
|
||||||
"bootstrap": "5.3.2"
|
|
||||||
},
|
|
||||||
"peerDependencies": {
|
|
||||||
"@melloware/coloris": "^0.19.1",
|
|
||||||
"apexcharts": "^3.40.0",
|
|
||||||
"autosize": "^6.0.1",
|
|
||||||
"choices.js": "^10.2.0",
|
|
||||||
"countup.js": "^2.6.2",
|
|
||||||
"dropzone": "^6.0.0-beta.2",
|
|
||||||
"flatpickr": "^4.6.13",
|
|
||||||
"fslightbox": "^3.4.1",
|
|
||||||
"imask": "^6.6.1",
|
|
||||||
"jsvectormap": "^1.5.3",
|
|
||||||
"list.js": "^2.3.1",
|
|
||||||
"litepicker": "^2.0.12",
|
|
||||||
"nouislider": "^15.7.0",
|
|
||||||
"plyr": "^3.7.8",
|
|
||||||
"star-rating.js": "^4.3.0",
|
|
||||||
"tinymce": "^6.4.2",
|
|
||||||
"tom-select": "^2.2.2"
|
|
||||||
},
|
|
||||||
"peerDependenciesMeta": {
|
|
||||||
"@melloware/coloris": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"apexcharts": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"autosize": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"choices.js": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"countup.js": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"dropzone": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"flatpickr": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"fslightbox": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"imask": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"jsvectormap": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"list.js": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"litepicker": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"nouislider": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"plyr": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"tinymce": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"tom-select": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"star-rating.js": {
|
|
||||||
"optional": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"bundlewatch": {
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler.css",
|
|
||||||
"maxSize": "75 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler.min.css",
|
|
||||||
"maxSize": "70 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler.rtl.css",
|
|
||||||
"maxSize": "75 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler.rtl.min.css",
|
|
||||||
"maxSize": "70 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-flags.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-flags.min.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-payments.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-payments.min.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-social.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-social.min.css",
|
|
||||||
"maxSize": "2 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-vendors.css",
|
|
||||||
"maxSize": "7 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/css/tabler-vendors.min.css",
|
|
||||||
"maxSize": "6 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/js/tabler.js",
|
|
||||||
"maxSize": "60 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/js/tabler.min.js",
|
|
||||||
"maxSize": "45 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/js/tabler.esm.js",
|
|
||||||
"maxSize": "60 kB"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "./dist/js/tabler.esm.min.js",
|
|
||||||
"maxSize": "45 kB"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
267
dist/css/demo.css
vendored
Normal file
@@ -0,0 +1,267 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Demo v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
pre.highlight,
|
||||||
|
.highlight pre {
|
||||||
|
max-height: 30rem;
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
overflow: auto;
|
||||||
|
border-radius: var(--tblr-border-radius);
|
||||||
|
}
|
||||||
|
pre.highlight,
|
||||||
|
.highlight pre {
|
||||||
|
scrollbar-color: rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.16) transparent;
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar,
|
||||||
|
.highlight pre::-webkit-scrollbar {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
transition: background 0.3s;
|
||||||
|
}
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
pre.highlight::-webkit-scrollbar,
|
||||||
|
.highlight pre::-webkit-scrollbar {
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-thumb,
|
||||||
|
.highlight pre::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 1rem;
|
||||||
|
border: 5px solid transparent;
|
||||||
|
box-shadow: inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.16);
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-track,
|
||||||
|
.highlight pre::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
pre.highlight:hover::-webkit-scrollbar-thumb,
|
||||||
|
.highlight pre:hover::-webkit-scrollbar-thumb {
|
||||||
|
box-shadow: inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.32);
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-corner,
|
||||||
|
.highlight pre::-webkit-scrollbar-corner {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.highlight code > * {
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.highlight .c, .highlight .c1 {
|
||||||
|
color: #a0aec0;
|
||||||
|
}
|
||||||
|
.highlight .nt, .highlight .nc, .highlight .nx {
|
||||||
|
color: #ff8383;
|
||||||
|
}
|
||||||
|
.highlight .na, .highlight .p {
|
||||||
|
color: #ffe484;
|
||||||
|
}
|
||||||
|
.highlight .s, .highlight .dl, .highlight .s2 {
|
||||||
|
color: #b5f4a5;
|
||||||
|
}
|
||||||
|
.highlight .k {
|
||||||
|
color: #93ddfd;
|
||||||
|
}
|
||||||
|
.highlight .s1, .highlight .mi {
|
||||||
|
color: #d9a9ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example {
|
||||||
|
padding: 2rem;
|
||||||
|
margin: 1rem 0 2rem;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
|
position: relative;
|
||||||
|
min-height: 12rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-centered {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.example-centered .example-content {
|
||||||
|
flex: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-content {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.4285714286;
|
||||||
|
color: var(--tblr-body-color);
|
||||||
|
flex: 1;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.example-content .page-header {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-bg {
|
||||||
|
background: #f6f8fb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-code {
|
||||||
|
margin: 2rem 0;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
.example-code pre {
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
|
}
|
||||||
|
.example + .example-code {
|
||||||
|
margin-top: -2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column {
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.example-column > .card:last-of-type {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column-1 {
|
||||||
|
max-width: 26rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column-2 {
|
||||||
|
max-width: 52rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-modal-backdrop {
|
||||||
|
background: #182433;
|
||||||
|
opacity: 0.24;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 2px 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-sponsor {
|
||||||
|
background: var(--tblr-primary-lt) no-repeat center/100% 100%;
|
||||||
|
border-color: var(--tblr-primary);
|
||||||
|
min-height: 316px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu-demo {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
top: 0;
|
||||||
|
margin-bottom: 1rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icon-preview {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.demo-icon-preview svg,
|
||||||
|
.demo-icon-preview i {
|
||||||
|
width: 15rem;
|
||||||
|
height: 15rem;
|
||||||
|
font-size: 15rem;
|
||||||
|
stroke-width: 1.5;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
@media (max-width: 575.98px) {
|
||||||
|
.demo-icon-preview svg,
|
||||||
|
.demo-icon-preview i {
|
||||||
|
width: 10rem;
|
||||||
|
height: 10rem;
|
||||||
|
font-size: 10rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icon-preview-icon pre {
|
||||||
|
margin: 0;
|
||||||
|
user-select: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-dividers > p {
|
||||||
|
opacity: 0.2;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 -2px -1px 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.demo-icons-list > * {
|
||||||
|
flex: 1 0 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list-wrap {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.5rem;
|
||||||
|
border-right: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-bottom: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
color: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.demo-icons-list-item .icon {
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.demo-icons-list-item:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-btn {
|
||||||
|
position: fixed;
|
||||||
|
right: -1px;
|
||||||
|
top: 10rem;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
box-shadow: rgba(var(--tblr-body-color-rgb), 0.04) 0 2px 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-scheme {
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 50%;
|
||||||
|
height: 3rem;
|
||||||
|
width: 3rem;
|
||||||
|
position: relative;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
box-shadow: rgba(var(--tblr-body-color-rgb), 0.04) 0 2px 4px 0;
|
||||||
|
}
|
||||||
|
.settings-scheme-light {
|
||||||
|
background: linear-gradient(135deg, #ffffff 50%, #f6f8fb 50%);
|
||||||
|
}
|
||||||
|
.settings-scheme-mixed {
|
||||||
|
background-image: linear-gradient(135deg, #182433 50%, #fff 50%);
|
||||||
|
}
|
||||||
|
.settings-scheme-transparent {
|
||||||
|
background: #f6f8fb;
|
||||||
|
}
|
||||||
|
.settings-scheme-dark {
|
||||||
|
background: #182433;
|
||||||
|
}
|
||||||
|
.settings-scheme-colored {
|
||||||
|
background-image: linear-gradient(135deg, var(--tblr-primary) 50%, #f6f8fb 50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=demo.css.map */
|
||||||
BIN
dist/css/demo.css.map
vendored
Normal file
6
dist/css/demo.min.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Demo v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/.highlight pre,pre.highlight{max-height:30rem;margin:1.5rem 0;overflow:auto;border-radius:var(--tblr-border-radius)}.highlight pre,pre.highlight{scrollbar-color:rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),0.16) transparent}.highlight pre::-webkit-scrollbar,pre.highlight::-webkit-scrollbar{width:1rem;height:1rem;transition:background .3s}@media (prefers-reduced-motion:reduce){.highlight pre::-webkit-scrollbar,pre.highlight::-webkit-scrollbar{transition:none}}.highlight pre::-webkit-scrollbar-thumb,pre.highlight::-webkit-scrollbar-thumb{border-radius:1rem;border:5px solid transparent;box-shadow:inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),.16)}.highlight pre::-webkit-scrollbar-track,pre.highlight::-webkit-scrollbar-track{background:0 0}.highlight pre:hover::-webkit-scrollbar-thumb,pre.highlight:hover::-webkit-scrollbar-thumb{box-shadow:inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),.32)}.highlight pre::-webkit-scrollbar-corner,pre.highlight::-webkit-scrollbar-corner{background:0 0}.highlight{margin:0}.highlight code>*{margin:0!important;padding:0!important}.highlight .c,.highlight .c1{color:#a0aec0}.highlight .nc,.highlight .nt,.highlight .nx{color:#ff8383}.highlight .na,.highlight .p{color:#ffe484}.highlight .dl,.highlight .s,.highlight .s2{color:#b5f4a5}.highlight .k{color:#93ddfd}.highlight .mi,.highlight .s1{color:#d9a9ff}.example{padding:2rem;margin:1rem 0 2rem;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-radius:3px 3px 0 0;position:relative;min-height:12rem;display:flex;align-items:center;overflow-x:auto}.example-centered{justify-content:center}.example-centered .example-content{flex:0 auto}.example-content{font-size:.875rem;line-height:1.4285714286;color:var(--tblr-body-color);flex:1;max-width:100%}.example-content .page-header{margin-bottom:0}.example-bg{background:#f6f8fb}.example-code{margin:2rem 0;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-top:none}.example-code pre{margin:0;border:0;border-radius:0 0 3px 3px}.example+.example-code{margin-top:-2rem}.example-column{margin:0 auto}.example-column>.card:last-of-type{margin-bottom:0}.example-column-1{max-width:26rem}.example-column-2{max-width:52rem}.example-modal-backdrop{background:#182433;opacity:.24;position:absolute;width:100%;left:0;top:0;height:100%;border-radius:2px 2px 0 0}.card-sponsor{background:var(--tblr-primary-lt) no-repeat center/100% 100%;border-color:var(--tblr-primary);min-height:316px}.dropdown-menu-demo{display:inline-block;width:100%;position:relative;top:0;margin-bottom:1rem!important}.demo-icon-preview{position:sticky;top:0}.demo-icon-preview i,.demo-icon-preview svg{width:15rem;height:15rem;font-size:15rem;stroke-width:1.5;margin:0 auto;display:block}@media (max-width:575.98px){.demo-icon-preview i,.demo-icon-preview svg{width:10rem;height:10rem;font-size:10rem}}.demo-icon-preview-icon pre{margin:0;user-select:all}.demo-dividers>p{opacity:.2;user-select:none}.demo-icons-list{display:flex;flex-wrap:wrap;padding:0;margin:0 -2px -1px 0;list-style:none}.demo-icons-list>*{flex:1 0 4rem}.demo-icons-list-wrap{overflow:hidden}.demo-icons-list-item{display:flex;flex-direction:column;align-items:center;justify-content:center;aspect-ratio:1;text-align:center;padding:.5rem;border-right:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-bottom:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);color:inherit;cursor:pointer}.demo-icons-list-item .icon{width:1.5rem;height:1.5rem;font-size:1.5rem}.demo-icons-list-item:hover{text-decoration:none}.settings-btn{position:fixed;right:-1px;top:10rem;border-top-right-radius:0;border-bottom-right-radius:0;box-shadow:rgba(var(--tblr-body-color-rgb),.04) 0 2px 4px 0}.settings-scheme{display:inline-block;border-radius:50%;height:3rem;width:3rem;position:relative;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);box-shadow:rgba(var(--tblr-body-color-rgb),.04) 0 2px 4px 0}.settings-scheme-light{background:linear-gradient(135deg,#fff 50%,#f6f8fb 50%)}.settings-scheme-mixed{background-image:linear-gradient(135deg,#182433 50%,#fff 50%)}.settings-scheme-transparent{background:#f6f8fb}.settings-scheme-dark{background:#182433}.settings-scheme-colored{background-image:linear-gradient(135deg,var(--tblr-primary) 50%,#f6f8fb 50%)}
|
||||||
|
/*# sourceMappingURL=demo.min.css.map */
|
||||||
BIN
dist/css/demo.min.css.map
vendored
Normal file
275
dist/css/demo.rtl.css
vendored
Normal file
@@ -0,0 +1,275 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Demo v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
pre.highlight,
|
||||||
|
.highlight pre {
|
||||||
|
max-height: 30rem;
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
overflow: auto;
|
||||||
|
border-radius: var(--tblr-border-radius);
|
||||||
|
}
|
||||||
|
pre.highlight,
|
||||||
|
.highlight pre {
|
||||||
|
scrollbar-color: rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.16) transparent;
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar,
|
||||||
|
.highlight pre::-webkit-scrollbar {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
-webkit-transition: background 0.3s;
|
||||||
|
transition: background 0.3s;
|
||||||
|
}
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
pre.highlight::-webkit-scrollbar,
|
||||||
|
.highlight pre::-webkit-scrollbar {
|
||||||
|
-webkit-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-thumb,
|
||||||
|
.highlight pre::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 1rem;
|
||||||
|
border: 5px solid transparent;
|
||||||
|
box-shadow: inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.16);
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-track,
|
||||||
|
.highlight pre::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
pre.highlight:hover::-webkit-scrollbar-thumb,
|
||||||
|
.highlight pre:hover::-webkit-scrollbar-thumb {
|
||||||
|
box-shadow: inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color, var(--tblr-body-color-rgb)), 0.32);
|
||||||
|
}
|
||||||
|
pre.highlight::-webkit-scrollbar-corner,
|
||||||
|
.highlight pre::-webkit-scrollbar-corner {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.highlight code > * {
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.highlight .c, .highlight .c1 {
|
||||||
|
color: #a0aec0;
|
||||||
|
}
|
||||||
|
.highlight .nt, .highlight .nc, .highlight .nx {
|
||||||
|
color: #ff8383;
|
||||||
|
}
|
||||||
|
.highlight .na, .highlight .p {
|
||||||
|
color: #ffe484;
|
||||||
|
}
|
||||||
|
.highlight .s, .highlight .dl, .highlight .s2 {
|
||||||
|
color: #b5f4a5;
|
||||||
|
}
|
||||||
|
.highlight .k {
|
||||||
|
color: #93ddfd;
|
||||||
|
}
|
||||||
|
.highlight .s1, .highlight .mi {
|
||||||
|
color: #d9a9ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example {
|
||||||
|
padding: 2rem;
|
||||||
|
margin: 1rem 0 2rem;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
|
position: relative;
|
||||||
|
min-height: 12rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-centered {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.example-centered .example-content {
|
||||||
|
flex: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-content {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.4285714286;
|
||||||
|
color: var(--tblr-body-color);
|
||||||
|
flex: 1;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.example-content .page-header {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-bg {
|
||||||
|
background: #f6f8fb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-code {
|
||||||
|
margin: 2rem 0;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
.example-code pre {
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
|
}
|
||||||
|
.example + .example-code {
|
||||||
|
margin-top: -2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column {
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.example-column > .card:last-of-type {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column-1 {
|
||||||
|
max-width: 26rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-column-2 {
|
||||||
|
max-width: 52rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example-modal-backdrop {
|
||||||
|
background: #182433;
|
||||||
|
opacity: 0.24;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 2px 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-sponsor {
|
||||||
|
background: var(--tblr-primary-lt) no-repeat center/100% 100%;
|
||||||
|
border-color: var(--tblr-primary);
|
||||||
|
min-height: 316px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu-demo {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
top: 0;
|
||||||
|
margin-bottom: 1rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icon-preview {
|
||||||
|
position: -webkit-sticky;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.demo-icon-preview svg,
|
||||||
|
.demo-icon-preview i {
|
||||||
|
width: 15rem;
|
||||||
|
height: 15rem;
|
||||||
|
font-size: 15rem;
|
||||||
|
stroke-width: 1.5;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
@media (max-width: 575.98px) {
|
||||||
|
.demo-icon-preview svg,
|
||||||
|
.demo-icon-preview i {
|
||||||
|
width: 10rem;
|
||||||
|
height: 10rem;
|
||||||
|
font-size: 10rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icon-preview-icon pre {
|
||||||
|
margin: 0;
|
||||||
|
-webkit-user-select: all;
|
||||||
|
-moz-user-select: all;
|
||||||
|
user-select: all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-dividers > p {
|
||||||
|
opacity: 0.2;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 0 -1px -2px;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.demo-icons-list > * {
|
||||||
|
flex: 1 0 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list-wrap {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-icons-list-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
aspect-ratio: 1;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.5rem;
|
||||||
|
border-left: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
border-bottom: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
color: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.demo-icons-list-item .icon {
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.demo-icons-list-item:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-btn {
|
||||||
|
position: fixed;
|
||||||
|
left: -1px;
|
||||||
|
top: 10rem;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
box-shadow: rgba(var(--tblr-body-color-rgb), 0.04) 0 2px 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.settings-scheme {
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 50%;
|
||||||
|
height: 3rem;
|
||||||
|
width: 3rem;
|
||||||
|
position: relative;
|
||||||
|
border: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
|
||||||
|
box-shadow: rgba(var(--tblr-body-color-rgb), 0.04) 0 2px 4px 0;
|
||||||
|
}
|
||||||
|
.settings-scheme-light {
|
||||||
|
background: linear-gradient(-135deg, #ffffff 50%, #f6f8fb 50%);
|
||||||
|
}
|
||||||
|
.settings-scheme-mixed {
|
||||||
|
background-image: linear-gradient(-135deg, #182433 50%, #fff 50%);
|
||||||
|
}
|
||||||
|
.settings-scheme-transparent {
|
||||||
|
background: #f6f8fb;
|
||||||
|
}
|
||||||
|
.settings-scheme-dark {
|
||||||
|
background: #182433;
|
||||||
|
}
|
||||||
|
.settings-scheme-colored {
|
||||||
|
background-image: linear-gradient(-135deg, var(--tblr-primary) 50%, #f6f8fb 50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=demo.rtl.css.map */
|
||||||
BIN
dist/css/demo.rtl.css.map
vendored
Normal file
6
dist/css/demo.rtl.min.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Demo v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/.highlight pre,pre.highlight{max-height:30rem;margin:1.5rem 0;overflow:auto;border-radius:var(--tblr-border-radius)}.highlight pre,pre.highlight{scrollbar-color:rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),0.16) transparent}.highlight pre::-webkit-scrollbar,pre.highlight::-webkit-scrollbar{width:1rem;height:1rem;-webkit-transition:background .3s;transition:background .3s}@media (prefers-reduced-motion:reduce){.highlight pre::-webkit-scrollbar,pre.highlight::-webkit-scrollbar{-webkit-transition:none;transition:none}}.highlight pre::-webkit-scrollbar-thumb,pre.highlight::-webkit-scrollbar-thumb{border-radius:1rem;border:5px solid transparent;box-shadow:inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),.16)}.highlight pre::-webkit-scrollbar-track,pre.highlight::-webkit-scrollbar-track{background:0 0}.highlight pre:hover::-webkit-scrollbar-thumb,pre.highlight:hover::-webkit-scrollbar-thumb{box-shadow:inset 0 0 0 1rem rgba(var(--tblr-scrollbar-color,var(--tblr-body-color-rgb)),.32)}.highlight pre::-webkit-scrollbar-corner,pre.highlight::-webkit-scrollbar-corner{background:0 0}.highlight{margin:0}.highlight code>*{margin:0!important;padding:0!important}.highlight .c,.highlight .c1{color:#a0aec0}.highlight .nc,.highlight .nt,.highlight .nx{color:#ff8383}.highlight .na,.highlight .p{color:#ffe484}.highlight .dl,.highlight .s,.highlight .s2{color:#b5f4a5}.highlight .k{color:#93ddfd}.highlight .mi,.highlight .s1{color:#d9a9ff}.example{padding:2rem;margin:1rem 0 2rem;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-radius:3px 3px 0 0;position:relative;min-height:12rem;display:flex;align-items:center;overflow-x:auto}.example-centered{justify-content:center}.example-centered .example-content{flex:0 auto}.example-content{font-size:.875rem;line-height:1.4285714286;color:var(--tblr-body-color);flex:1;max-width:100%}.example-content .page-header{margin-bottom:0}.example-bg{background:#f6f8fb}.example-code{margin:2rem 0;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-top:none}.example-code pre{margin:0;border:0;border-radius:0 0 3px 3px}.example+.example-code{margin-top:-2rem}.example-column{margin:0 auto}.example-column>.card:last-of-type{margin-bottom:0}.example-column-1{max-width:26rem}.example-column-2{max-width:52rem}.example-modal-backdrop{background:#182433;opacity:.24;position:absolute;width:100%;right:0;top:0;height:100%;border-radius:2px 2px 0 0}.card-sponsor{background:var(--tblr-primary-lt) no-repeat center/100% 100%;border-color:var(--tblr-primary);min-height:316px}.dropdown-menu-demo{display:inline-block;width:100%;position:relative;top:0;margin-bottom:1rem!important}.demo-icon-preview{position:-webkit-sticky;position:sticky;top:0}.demo-icon-preview i,.demo-icon-preview svg{width:15rem;height:15rem;font-size:15rem;stroke-width:1.5;margin:0 auto;display:block}@media (max-width:575.98px){.demo-icon-preview i,.demo-icon-preview svg{width:10rem;height:10rem;font-size:10rem}}.demo-icon-preview-icon pre{margin:0;-webkit-user-select:all;-moz-user-select:all;user-select:all}.demo-dividers>p{opacity:.2;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.demo-icons-list{display:flex;flex-wrap:wrap;padding:0;margin:0 0 -1px -2px;list-style:none}.demo-icons-list>*{flex:1 0 4rem}.demo-icons-list-wrap{overflow:hidden}.demo-icons-list-item{display:flex;flex-direction:column;align-items:center;justify-content:center;aspect-ratio:1;text-align:center;padding:.5rem;border-left:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);border-bottom:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);color:inherit;cursor:pointer}.demo-icons-list-item .icon{width:1.5rem;height:1.5rem;font-size:1.5rem}.demo-icons-list-item:hover{text-decoration:none}.settings-btn{position:fixed;left:-1px;top:10rem;border-top-left-radius:0;border-bottom-left-radius:0;box-shadow:rgba(var(--tblr-body-color-rgb),.04) 0 2px 4px 0}.settings-scheme{display:inline-block;border-radius:50%;height:3rem;width:3rem;position:relative;border:var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);box-shadow:rgba(var(--tblr-body-color-rgb),.04) 0 2px 4px 0}.settings-scheme-light{background:linear-gradient(-135deg,#fff 50%,#f6f8fb 50%)}.settings-scheme-mixed{background-image:linear-gradient(-135deg,#182433 50%,#fff 50%)}.settings-scheme-transparent{background:#f6f8fb}.settings-scheme-dark{background:#182433}.settings-scheme-colored{background-image:linear-gradient(-135deg,var(--tblr-primary) 50%,#f6f8fb 50%)}
|
||||||
|
/*# sourceMappingURL=demo.rtl.min.css.map */
|
||||||
BIN
dist/css/demo.rtl.min.css.map
vendored
Normal file
1083
dist/css/tabler-flags.css
vendored
Normal file
BIN
dist/css/tabler-flags.css.map
vendored
Normal file
6
dist/css/tabler-flags.min.css
vendored
Normal file
BIN
dist/css/tabler-flags.min.css.map
vendored
Normal file
1083
dist/css/tabler-flags.rtl.css
vendored
Normal file
BIN
dist/css/tabler-flags.rtl.css.map
vendored
Normal file
6
dist/css/tabler-flags.rtl.min.css
vendored
Normal file
BIN
dist/css/tabler-flags.rtl.min.css.map
vendored
Normal file
527
dist/css/tabler-payments.css
vendored
Normal file
@@ -0,0 +1,527 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Payments v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
.payment {
|
||||||
|
height: 2.5rem;
|
||||||
|
aspect-ratio: 1.66666;
|
||||||
|
display: inline-block;
|
||||||
|
background: no-repeat center/100% 100%;
|
||||||
|
vertical-align: bottom;
|
||||||
|
font-style: normal;
|
||||||
|
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-2checkout {
|
||||||
|
background-image: url("../img/payments/2checkout.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-2checkout-dark {
|
||||||
|
background-image: url("../img/payments/2checkout-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-alipay {
|
||||||
|
background-image: url("../img/payments/alipay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-alipay-dark {
|
||||||
|
background-image: url("../img/payments/alipay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-amazon {
|
||||||
|
background-image: url("../img/payments/amazon.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-amazon-dark {
|
||||||
|
background-image: url("../img/payments/amazon-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-americanexpress {
|
||||||
|
background-image: url("../img/payments/americanexpress.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-americanexpress-dark {
|
||||||
|
background-image: url("../img/payments/americanexpress-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-applepay {
|
||||||
|
background-image: url("../img/payments/applepay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-applepay-dark {
|
||||||
|
background-image: url("../img/payments/applepay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bancontact {
|
||||||
|
background-image: url("../img/payments/bancontact.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bancontact-dark {
|
||||||
|
background-image: url("../img/payments/bancontact-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitcoin {
|
||||||
|
background-image: url("../img/payments/bitcoin.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitcoin-dark {
|
||||||
|
background-image: url("../img/payments/bitcoin-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitpay {
|
||||||
|
background-image: url("../img/payments/bitpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitpay-dark {
|
||||||
|
background-image: url("../img/payments/bitpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-blik {
|
||||||
|
background-image: url("../img/payments/blik.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-blik-dark {
|
||||||
|
background-image: url("../img/payments/blik-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-cirrus {
|
||||||
|
background-image: url("../img/payments/cirrus.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-cirrus-dark {
|
||||||
|
background-image: url("../img/payments/cirrus-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-clickandbuy {
|
||||||
|
background-image: url("../img/payments/clickandbuy.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-clickandbuy-dark {
|
||||||
|
background-image: url("../img/payments/clickandbuy-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-coinkite {
|
||||||
|
background-image: url("../img/payments/coinkite.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-coinkite-dark {
|
||||||
|
background-image: url("../img/payments/coinkite-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dinersclub {
|
||||||
|
background-image: url("../img/payments/dinersclub.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dinersclub-dark {
|
||||||
|
background-image: url("../img/payments/dinersclub-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-directdebit {
|
||||||
|
background-image: url("../img/payments/directdebit.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-directdebit-dark {
|
||||||
|
background-image: url("../img/payments/directdebit-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-discover {
|
||||||
|
background-image: url("../img/payments/discover.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-discover-dark {
|
||||||
|
background-image: url("../img/payments/discover-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dotpay {
|
||||||
|
background-image: url("../img/payments/dotpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dotpay-dark {
|
||||||
|
background-image: url("../img/payments/dotpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dwolla {
|
||||||
|
background-image: url("../img/payments/dwolla.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dwolla-dark {
|
||||||
|
background-image: url("../img/payments/dwolla-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ebay {
|
||||||
|
background-image: url("../img/payments/ebay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ebay-dark {
|
||||||
|
background-image: url("../img/payments/ebay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-epayco {
|
||||||
|
background-image: url("../img/payments/epayco.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-epayco-dark {
|
||||||
|
background-image: url("../img/payments/epayco-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-eway {
|
||||||
|
background-image: url("../img/payments/eway.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-eway-dark {
|
||||||
|
background-image: url("../img/payments/eway-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-giropay {
|
||||||
|
background-image: url("../img/payments/giropay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-giropay-dark {
|
||||||
|
background-image: url("../img/payments/giropay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-googlewallet {
|
||||||
|
background-image: url("../img/payments/googlewallet.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-googlewallet-dark {
|
||||||
|
background-image: url("../img/payments/googlewallet-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ingenico {
|
||||||
|
background-image: url("../img/payments/ingenico.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ingenico-dark {
|
||||||
|
background-image: url("../img/payments/ingenico-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-jcb {
|
||||||
|
background-image: url("../img/payments/jcb.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-jcb-dark {
|
||||||
|
background-image: url("../img/payments/jcb-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-klarna {
|
||||||
|
background-image: url("../img/payments/klarna.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-klarna-dark {
|
||||||
|
background-image: url("../img/payments/klarna-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-laser {
|
||||||
|
background-image: url("../img/payments/laser.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-laser-dark {
|
||||||
|
background-image: url("../img/payments/laser-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-maestro {
|
||||||
|
background-image: url("../img/payments/maestro.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-maestro-dark {
|
||||||
|
background-image: url("../img/payments/maestro-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mastercard {
|
||||||
|
background-image: url("../img/payments/mastercard.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mastercard-dark {
|
||||||
|
background-image: url("../img/payments/mastercard-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mir {
|
||||||
|
background-image: url("../img/payments/mir.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mir-dark {
|
||||||
|
background-image: url("../img/payments/mir-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-monero {
|
||||||
|
background-image: url("../img/payments/monero.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-monero-dark {
|
||||||
|
background-image: url("../img/payments/monero-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-neteller {
|
||||||
|
background-image: url("../img/payments/neteller.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-neteller-dark {
|
||||||
|
background-image: url("../img/payments/neteller-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ogone {
|
||||||
|
background-image: url("../img/payments/ogone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ogone-dark {
|
||||||
|
background-image: url("../img/payments/ogone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-okpay {
|
||||||
|
background-image: url("../img/payments/okpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-okpay-dark {
|
||||||
|
background-image: url("../img/payments/okpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paybox {
|
||||||
|
background-image: url("../img/payments/paybox.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paybox-dark {
|
||||||
|
background-image: url("../img/payments/paybox-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paymill {
|
||||||
|
background-image: url("../img/payments/paymill.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paymill-dark {
|
||||||
|
background-image: url("../img/payments/paymill-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payone {
|
||||||
|
background-image: url("../img/payments/payone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payone-dark {
|
||||||
|
background-image: url("../img/payments/payone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payoneer {
|
||||||
|
background-image: url("../img/payments/payoneer.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payoneer-dark {
|
||||||
|
background-image: url("../img/payments/payoneer-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paypal {
|
||||||
|
background-image: url("../img/payments/paypal.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paypal-dark {
|
||||||
|
background-image: url("../img/payments/paypal-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paysafecard {
|
||||||
|
background-image: url("../img/payments/paysafecard.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paysafecard-dark {
|
||||||
|
background-image: url("../img/payments/paysafecard-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payu {
|
||||||
|
background-image: url("../img/payments/payu.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payu-dark {
|
||||||
|
background-image: url("../img/payments/payu-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payza {
|
||||||
|
background-image: url("../img/payments/payza.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payza-dark {
|
||||||
|
background-image: url("../img/payments/payza-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-przelewy24 {
|
||||||
|
background-image: url("../img/payments/przelewy24.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-przelewy24-dark {
|
||||||
|
background-image: url("../img/payments/przelewy24-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ripple {
|
||||||
|
background-image: url("../img/payments/ripple.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ripple-dark {
|
||||||
|
background-image: url("../img/payments/ripple-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sage {
|
||||||
|
background-image: url("../img/payments/sage.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sage-dark {
|
||||||
|
background-image: url("../img/payments/sage-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sepa {
|
||||||
|
background-image: url("../img/payments/sepa.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sepa-dark {
|
||||||
|
background-image: url("../img/payments/sepa-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-shopify {
|
||||||
|
background-image: url("../img/payments/shopify.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-shopify-dark {
|
||||||
|
background-image: url("../img/payments/shopify-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-skrill {
|
||||||
|
background-image: url("../img/payments/skrill.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-skrill-dark {
|
||||||
|
background-image: url("../img/payments/skrill-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-solo {
|
||||||
|
background-image: url("../img/payments/solo.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-solo-dark {
|
||||||
|
background-image: url("../img/payments/solo-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-square {
|
||||||
|
background-image: url("../img/payments/square.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-square-dark {
|
||||||
|
background-image: url("../img/payments/square-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-stripe {
|
||||||
|
background-image: url("../img/payments/stripe.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-stripe-dark {
|
||||||
|
background-image: url("../img/payments/stripe-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-switch {
|
||||||
|
background-image: url("../img/payments/switch.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-switch-dark {
|
||||||
|
background-image: url("../img/payments/switch-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-tpay {
|
||||||
|
background-image: url("../img/payments/tpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-tpay-dark {
|
||||||
|
background-image: url("../img/payments/tpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ukash {
|
||||||
|
background-image: url("../img/payments/ukash.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ukash-dark {
|
||||||
|
background-image: url("../img/payments/ukash-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-unionpay {
|
||||||
|
background-image: url("../img/payments/unionpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-unionpay-dark {
|
||||||
|
background-image: url("../img/payments/unionpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verifone {
|
||||||
|
background-image: url("../img/payments/verifone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verifone-dark {
|
||||||
|
background-image: url("../img/payments/verifone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verisign {
|
||||||
|
background-image: url("../img/payments/verisign.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verisign-dark {
|
||||||
|
background-image: url("../img/payments/verisign-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-visa {
|
||||||
|
background-image: url("../img/payments/visa.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-visa-dark {
|
||||||
|
background-image: url("../img/payments/visa-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-webmoney {
|
||||||
|
background-image: url("../img/payments/webmoney.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-webmoney-dark {
|
||||||
|
background-image: url("../img/payments/webmoney-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-westernunion {
|
||||||
|
background-image: url("../img/payments/westernunion.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-westernunion-dark {
|
||||||
|
background-image: url("../img/payments/westernunion-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-worldpay {
|
||||||
|
background-image: url("../img/payments/worldpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-worldpay-dark {
|
||||||
|
background-image: url("../img/payments/worldpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xxs {
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xs {
|
||||||
|
height: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-sm {
|
||||||
|
height: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-md {
|
||||||
|
height: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-lg {
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xl {
|
||||||
|
height: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-2xl {
|
||||||
|
height: 7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tabler-payments.css.map */
|
||||||
BIN
dist/css/tabler-payments.css.map
vendored
Normal file
6
dist/css/tabler-payments.min.css
vendored
Normal file
BIN
dist/css/tabler-payments.min.css.map
vendored
Normal file
527
dist/css/tabler-payments.rtl.css
vendored
Normal file
@@ -0,0 +1,527 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Payments v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
.payment {
|
||||||
|
height: 2.5rem;
|
||||||
|
aspect-ratio: 1.66666;
|
||||||
|
display: inline-block;
|
||||||
|
background: no-repeat center/100% 100%;
|
||||||
|
vertical-align: bottom;
|
||||||
|
font-style: normal;
|
||||||
|
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-2checkout {
|
||||||
|
background-image: url("../img/payments/2checkout.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-2checkout-dark {
|
||||||
|
background-image: url("../img/payments/2checkout-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-alipay {
|
||||||
|
background-image: url("../img/payments/alipay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-alipay-dark {
|
||||||
|
background-image: url("../img/payments/alipay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-amazon {
|
||||||
|
background-image: url("../img/payments/amazon.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-amazon-dark {
|
||||||
|
background-image: url("../img/payments/amazon-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-americanexpress {
|
||||||
|
background-image: url("../img/payments/americanexpress.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-americanexpress-dark {
|
||||||
|
background-image: url("../img/payments/americanexpress-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-applepay {
|
||||||
|
background-image: url("../img/payments/applepay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-applepay-dark {
|
||||||
|
background-image: url("../img/payments/applepay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bancontact {
|
||||||
|
background-image: url("../img/payments/bancontact.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bancontact-dark {
|
||||||
|
background-image: url("../img/payments/bancontact-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitcoin {
|
||||||
|
background-image: url("../img/payments/bitcoin.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitcoin-dark {
|
||||||
|
background-image: url("../img/payments/bitcoin-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitpay {
|
||||||
|
background-image: url("../img/payments/bitpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-bitpay-dark {
|
||||||
|
background-image: url("../img/payments/bitpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-blik {
|
||||||
|
background-image: url("../img/payments/blik.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-blik-dark {
|
||||||
|
background-image: url("../img/payments/blik-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-cirrus {
|
||||||
|
background-image: url("../img/payments/cirrus.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-cirrus-dark {
|
||||||
|
background-image: url("../img/payments/cirrus-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-clickandbuy {
|
||||||
|
background-image: url("../img/payments/clickandbuy.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-clickandbuy-dark {
|
||||||
|
background-image: url("../img/payments/clickandbuy-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-coinkite {
|
||||||
|
background-image: url("../img/payments/coinkite.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-coinkite-dark {
|
||||||
|
background-image: url("../img/payments/coinkite-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dinersclub {
|
||||||
|
background-image: url("../img/payments/dinersclub.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dinersclub-dark {
|
||||||
|
background-image: url("../img/payments/dinersclub-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-directdebit {
|
||||||
|
background-image: url("../img/payments/directdebit.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-directdebit-dark {
|
||||||
|
background-image: url("../img/payments/directdebit-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-discover {
|
||||||
|
background-image: url("../img/payments/discover.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-discover-dark {
|
||||||
|
background-image: url("../img/payments/discover-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dotpay {
|
||||||
|
background-image: url("../img/payments/dotpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dotpay-dark {
|
||||||
|
background-image: url("../img/payments/dotpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dwolla {
|
||||||
|
background-image: url("../img/payments/dwolla.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-dwolla-dark {
|
||||||
|
background-image: url("../img/payments/dwolla-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ebay {
|
||||||
|
background-image: url("../img/payments/ebay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ebay-dark {
|
||||||
|
background-image: url("../img/payments/ebay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-epayco {
|
||||||
|
background-image: url("../img/payments/epayco.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-epayco-dark {
|
||||||
|
background-image: url("../img/payments/epayco-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-eway {
|
||||||
|
background-image: url("../img/payments/eway.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-eway-dark {
|
||||||
|
background-image: url("../img/payments/eway-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-giropay {
|
||||||
|
background-image: url("../img/payments/giropay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-giropay-dark {
|
||||||
|
background-image: url("../img/payments/giropay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-googlewallet {
|
||||||
|
background-image: url("../img/payments/googlewallet.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-googlewallet-dark {
|
||||||
|
background-image: url("../img/payments/googlewallet-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ingenico {
|
||||||
|
background-image: url("../img/payments/ingenico.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ingenico-dark {
|
||||||
|
background-image: url("../img/payments/ingenico-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-jcb {
|
||||||
|
background-image: url("../img/payments/jcb.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-jcb-dark {
|
||||||
|
background-image: url("../img/payments/jcb-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-klarna {
|
||||||
|
background-image: url("../img/payments/klarna.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-klarna-dark {
|
||||||
|
background-image: url("../img/payments/klarna-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-laser {
|
||||||
|
background-image: url("../img/payments/laser.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-laser-dark {
|
||||||
|
background-image: url("../img/payments/laser-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-maestro {
|
||||||
|
background-image: url("../img/payments/maestro.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-maestro-dark {
|
||||||
|
background-image: url("../img/payments/maestro-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mastercard {
|
||||||
|
background-image: url("../img/payments/mastercard.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mastercard-dark {
|
||||||
|
background-image: url("../img/payments/mastercard-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mir {
|
||||||
|
background-image: url("../img/payments/mir.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-mir-dark {
|
||||||
|
background-image: url("../img/payments/mir-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-monero {
|
||||||
|
background-image: url("../img/payments/monero.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-monero-dark {
|
||||||
|
background-image: url("../img/payments/monero-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-neteller {
|
||||||
|
background-image: url("../img/payments/neteller.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-neteller-dark {
|
||||||
|
background-image: url("../img/payments/neteller-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ogone {
|
||||||
|
background-image: url("../img/payments/ogone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ogone-dark {
|
||||||
|
background-image: url("../img/payments/ogone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-okpay {
|
||||||
|
background-image: url("../img/payments/okpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-okpay-dark {
|
||||||
|
background-image: url("../img/payments/okpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paybox {
|
||||||
|
background-image: url("../img/payments/paybox.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paybox-dark {
|
||||||
|
background-image: url("../img/payments/paybox-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paymill {
|
||||||
|
background-image: url("../img/payments/paymill.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paymill-dark {
|
||||||
|
background-image: url("../img/payments/paymill-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payone {
|
||||||
|
background-image: url("../img/payments/payone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payone-dark {
|
||||||
|
background-image: url("../img/payments/payone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payoneer {
|
||||||
|
background-image: url("../img/payments/payoneer.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payoneer-dark {
|
||||||
|
background-image: url("../img/payments/payoneer-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paypal {
|
||||||
|
background-image: url("../img/payments/paypal.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paypal-dark {
|
||||||
|
background-image: url("../img/payments/paypal-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paysafecard {
|
||||||
|
background-image: url("../img/payments/paysafecard.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-paysafecard-dark {
|
||||||
|
background-image: url("../img/payments/paysafecard-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payu {
|
||||||
|
background-image: url("../img/payments/payu.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payu-dark {
|
||||||
|
background-image: url("../img/payments/payu-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payza {
|
||||||
|
background-image: url("../img/payments/payza.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-payza-dark {
|
||||||
|
background-image: url("../img/payments/payza-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-przelewy24 {
|
||||||
|
background-image: url("../img/payments/przelewy24.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-przelewy24-dark {
|
||||||
|
background-image: url("../img/payments/przelewy24-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ripple {
|
||||||
|
background-image: url("../img/payments/ripple.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ripple-dark {
|
||||||
|
background-image: url("../img/payments/ripple-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sage {
|
||||||
|
background-image: url("../img/payments/sage.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sage-dark {
|
||||||
|
background-image: url("../img/payments/sage-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sepa {
|
||||||
|
background-image: url("../img/payments/sepa.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-sepa-dark {
|
||||||
|
background-image: url("../img/payments/sepa-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-shopify {
|
||||||
|
background-image: url("../img/payments/shopify.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-shopify-dark {
|
||||||
|
background-image: url("../img/payments/shopify-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-skrill {
|
||||||
|
background-image: url("../img/payments/skrill.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-skrill-dark {
|
||||||
|
background-image: url("../img/payments/skrill-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-solo {
|
||||||
|
background-image: url("../img/payments/solo.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-solo-dark {
|
||||||
|
background-image: url("../img/payments/solo-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-square {
|
||||||
|
background-image: url("../img/payments/square.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-square-dark {
|
||||||
|
background-image: url("../img/payments/square-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-stripe {
|
||||||
|
background-image: url("../img/payments/stripe.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-stripe-dark {
|
||||||
|
background-image: url("../img/payments/stripe-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-switch {
|
||||||
|
background-image: url("../img/payments/switch.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-switch-dark {
|
||||||
|
background-image: url("../img/payments/switch-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-tpay {
|
||||||
|
background-image: url("../img/payments/tpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-tpay-dark {
|
||||||
|
background-image: url("../img/payments/tpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ukash {
|
||||||
|
background-image: url("../img/payments/ukash.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-ukash-dark {
|
||||||
|
background-image: url("../img/payments/ukash-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-unionpay {
|
||||||
|
background-image: url("../img/payments/unionpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-unionpay-dark {
|
||||||
|
background-image: url("../img/payments/unionpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verifone {
|
||||||
|
background-image: url("../img/payments/verifone.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verifone-dark {
|
||||||
|
background-image: url("../img/payments/verifone-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verisign {
|
||||||
|
background-image: url("../img/payments/verisign.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-verisign-dark {
|
||||||
|
background-image: url("../img/payments/verisign-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-visa {
|
||||||
|
background-image: url("../img/payments/visa.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-visa-dark {
|
||||||
|
background-image: url("../img/payments/visa-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-webmoney {
|
||||||
|
background-image: url("../img/payments/webmoney.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-webmoney-dark {
|
||||||
|
background-image: url("../img/payments/webmoney-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-westernunion {
|
||||||
|
background-image: url("../img/payments/westernunion.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-westernunion-dark {
|
||||||
|
background-image: url("../img/payments/westernunion-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-worldpay {
|
||||||
|
background-image: url("../img/payments/worldpay.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-provider-worldpay-dark {
|
||||||
|
background-image: url("../img/payments/worldpay-dark.svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xxs {
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xs {
|
||||||
|
height: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-sm {
|
||||||
|
height: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-md {
|
||||||
|
height: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-lg {
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-xl {
|
||||||
|
height: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-2xl {
|
||||||
|
height: 7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tabler-payments.rtl.css.map */
|
||||||
BIN
dist/css/tabler-payments.rtl.css.map
vendored
Normal file
6
dist/css/tabler-payments.rtl.min.css
vendored
Normal file
BIN
dist/css/tabler-payments.rtl.min.css.map
vendored
Normal file
9
dist/css/tabler-social.css
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Social v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tabler-social.css.map */
|
||||||
BIN
dist/css/tabler-social.css.map
vendored
Normal file
6
dist/css/tabler-social.min.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Social v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/*# sourceMappingURL=tabler-social.min.css.map */
|
||||||
BIN
dist/css/tabler-social.min.css.map
vendored
Normal file
9
dist/css/tabler-social.rtl.css
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Social v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/* prettier-ignore */
|
||||||
|
/* prettier-ignore */
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tabler-social.rtl.css.map */
|
||||||
BIN
dist/css/tabler-social.rtl.css.map
vendored
Normal file
6
dist/css/tabler-social.rtl.min.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
* Tabler Social v1.0.0 (https://tabler.io/)
|
||||||
|
* Copyright 2018-2024 The Tabler Authors
|
||||||
|
* Licensed under MIT (https://github.com/tabler/tabler/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
/*# sourceMappingURL=tabler-social.rtl.min.css.map */
|
||||||
BIN
dist/css/tabler-social.rtl.min.css.map
vendored
Normal file
1488
dist/css/tabler-vendors.css
vendored
Normal file
BIN
dist/css/tabler-vendors.css.map
vendored
Normal file
6
dist/css/tabler-vendors.min.css
vendored
Normal file
BIN
dist/css/tabler-vendors.min.css.map
vendored
Normal file
1496
dist/css/tabler-vendors.rtl.css
vendored
Normal file
BIN
dist/css/tabler-vendors.rtl.css.map
vendored
Normal file
6
dist/css/tabler-vendors.rtl.min.css
vendored
Normal file
BIN
dist/css/tabler-vendors.rtl.min.css.map
vendored
Normal file
25460
dist/css/tabler.css
vendored
Normal file
BIN
dist/css/tabler.css.map
vendored
Normal file
6
dist/css/tabler.min.css
vendored
Normal file
BIN
dist/css/tabler.min.css.map
vendored
Normal file
25845
dist/css/tabler.rtl.css
vendored
Normal file
BIN
dist/css/tabler.rtl.css.map
vendored
Normal file
6
dist/css/tabler.rtl.min.css
vendored
Normal file
BIN
dist/css/tabler.rtl.min.css.map
vendored
Normal file
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 507 B |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 877 B After Width: | Height: | Size: 877 B |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 584 B After Width: | Height: | Size: 584 B |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 572 B After Width: | Height: | Size: 572 B |
|
Before Width: | Height: | Size: 992 B After Width: | Height: | Size: 992 B |
|
Before Width: | Height: | Size: 970 B After Width: | Height: | Size: 970 B |
|
Before Width: | Height: | Size: 842 B After Width: | Height: | Size: 842 B |
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 711 B After Width: | Height: | Size: 711 B |
|
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B |
|
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 450 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 426 B After Width: | Height: | Size: 426 B |
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 577 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 634 B After Width: | Height: | Size: 634 B |
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 757 B After Width: | Height: | Size: 757 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 849 B After Width: | Height: | Size: 849 B |
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
|
Before Width: | Height: | Size: 437 B After Width: | Height: | Size: 437 B |
|
Before Width: | Height: | Size: 620 B After Width: | Height: | Size: 620 B |
|
Before Width: | Height: | Size: 321 B After Width: | Height: | Size: 321 B |