From f5af3fe570381a2db0567927ed48109d70a0005b Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Mon, 7 Oct 2024 16:18:39 +0900 Subject: [PATCH 01/11] feat(theme): migrate to css variable-based theming --- .gitignore | 3 - gulpfile.js | 35 - package-lock.json | 8922 ---- package.json | 40 +- styles/theme.css | 39362 +--------------- styles/theme.min.css | 11 - .../default/assets/fonts/brand-icons.eot | Bin 98640 -> 0 bytes .../default/assets/fonts/brand-icons.svg | 1008 - .../default/assets/fonts/brand-icons.ttf | Bin 98404 -> 0 bytes .../default/assets/fonts/brand-icons.woff | Bin 63728 -> 0 bytes .../default/assets/fonts/brand-icons.woff2 | Bin 54488 -> 0 bytes styles/themes/default/assets/fonts/icons.eot | Bin 106004 -> 0 bytes styles/themes/default/assets/fonts/icons.svg | 1518 - styles/themes/default/assets/fonts/icons.ttf | Bin 105784 -> 0 bytes styles/themes/default/assets/fonts/icons.woff | Bin 50524 -> 0 bytes .../themes/default/assets/fonts/icons.woff2 | Bin 40148 -> 0 bytes .../default/assets/fonts/outline-icons.eot | Bin 31156 -> 0 bytes .../default/assets/fonts/outline-icons.svg | 366 - .../default/assets/fonts/outline-icons.ttf | Bin 30928 -> 0 bytes .../default/assets/fonts/outline-icons.woff | Bin 14712 -> 0 bytes .../default/assets/fonts/outline-icons.woff2 | Bin 12240 -> 0 bytes styles/themes/default/assets/images/flags.png | Bin 28123 -> 0 bytes tasks/README.md | 17 - tasks/admin/components/create.js | 319 - tasks/admin/components/init.js | 169 - tasks/admin/components/update.js | 182 - tasks/admin/distributions/create.js | 208 - tasks/admin/distributions/init.js | 168 - tasks/admin/distributions/update.js | 177 - tasks/admin/publish.js | 24 - tasks/admin/register.js | 55 - tasks/admin/release.js | 28 - tasks/build.js | 23 - tasks/build/assets.js | 63 - tasks/build/css.js | 267 - tasks/build/javascript.js | 159 - tasks/check-install.js | 27 - tasks/clean.js | 14 - tasks/collections/README.md | 16 - tasks/collections/admin.js | 64 - tasks/collections/build.js | 32 - tasks/collections/docs.js | 23 - tasks/collections/install.js | 23 - tasks/collections/rtl.js | 19 - tasks/collections/various.js | 22 - tasks/config/admin/github.js | 37 - tasks/config/admin/oauth.example.js | 11 - tasks/config/admin/release.js | 117 - tasks/config/admin/templates/README.md | 32 - tasks/config/admin/templates/bower.json | 29 - .../admin/templates/component-package.js | 14 - tasks/config/admin/templates/composer.json | 22 - tasks/config/admin/templates/css-package.js | 34 - tasks/config/admin/templates/less-package.js | 21 - tasks/config/admin/templates/package.json | 17 - tasks/config/defaults.js | 123 - tasks/config/docs.js | 32 - tasks/config/npm/gulpfile.js | 35 - tasks/config/project/config.js | 154 - tasks/config/project/install.js | 763 - tasks/config/project/release.js | 65 - tasks/config/tasks.js | 181 - tasks/config/user.js | 58 - tasks/docs/build.js | 111 - tasks/docs/metadata.js | 138 - tasks/docs/serve.js | 95 - tasks/install.js | 439 - tasks/rtl/build.js | 12 - tasks/rtl/watch.js | 12 - tasks/version.js | 12 - tasks/watch.js | 51 - test.html | 124 + 72 files changed, 1409 insertions(+), 54694 deletions(-) delete mode 100644 gulpfile.js delete mode 100644 package-lock.json delete mode 100644 styles/theme.min.css delete mode 100644 styles/themes/default/assets/fonts/brand-icons.eot delete mode 100644 styles/themes/default/assets/fonts/brand-icons.svg delete mode 100644 styles/themes/default/assets/fonts/brand-icons.ttf delete mode 100644 styles/themes/default/assets/fonts/brand-icons.woff delete mode 100644 styles/themes/default/assets/fonts/brand-icons.woff2 delete mode 100644 styles/themes/default/assets/fonts/icons.eot delete mode 100644 styles/themes/default/assets/fonts/icons.svg delete mode 100644 styles/themes/default/assets/fonts/icons.ttf delete mode 100644 styles/themes/default/assets/fonts/icons.woff delete mode 100644 styles/themes/default/assets/fonts/icons.woff2 delete mode 100644 styles/themes/default/assets/fonts/outline-icons.eot delete mode 100644 styles/themes/default/assets/fonts/outline-icons.svg delete mode 100644 styles/themes/default/assets/fonts/outline-icons.ttf delete mode 100644 styles/themes/default/assets/fonts/outline-icons.woff delete mode 100644 styles/themes/default/assets/fonts/outline-icons.woff2 delete mode 100644 styles/themes/default/assets/images/flags.png delete mode 100644 tasks/README.md delete mode 100644 tasks/admin/components/create.js delete mode 100644 tasks/admin/components/init.js delete mode 100644 tasks/admin/components/update.js delete mode 100644 tasks/admin/distributions/create.js delete mode 100644 tasks/admin/distributions/init.js delete mode 100644 tasks/admin/distributions/update.js delete mode 100644 tasks/admin/publish.js delete mode 100644 tasks/admin/register.js delete mode 100644 tasks/admin/release.js delete mode 100644 tasks/build.js delete mode 100644 tasks/build/assets.js delete mode 100644 tasks/build/css.js delete mode 100644 tasks/build/javascript.js delete mode 100644 tasks/check-install.js delete mode 100644 tasks/clean.js delete mode 100644 tasks/collections/README.md delete mode 100644 tasks/collections/admin.js delete mode 100644 tasks/collections/build.js delete mode 100644 tasks/collections/docs.js delete mode 100644 tasks/collections/install.js delete mode 100644 tasks/collections/rtl.js delete mode 100644 tasks/collections/various.js delete mode 100644 tasks/config/admin/github.js delete mode 100644 tasks/config/admin/oauth.example.js delete mode 100644 tasks/config/admin/release.js delete mode 100644 tasks/config/admin/templates/README.md delete mode 100644 tasks/config/admin/templates/bower.json delete mode 100644 tasks/config/admin/templates/component-package.js delete mode 100644 tasks/config/admin/templates/composer.json delete mode 100644 tasks/config/admin/templates/css-package.js delete mode 100644 tasks/config/admin/templates/less-package.js delete mode 100644 tasks/config/admin/templates/package.json delete mode 100644 tasks/config/defaults.js delete mode 100644 tasks/config/docs.js delete mode 100644 tasks/config/npm/gulpfile.js delete mode 100644 tasks/config/project/config.js delete mode 100644 tasks/config/project/install.js delete mode 100644 tasks/config/project/release.js delete mode 100644 tasks/config/tasks.js delete mode 100644 tasks/config/user.js delete mode 100644 tasks/docs/build.js delete mode 100644 tasks/docs/metadata.js delete mode 100644 tasks/docs/serve.js delete mode 100644 tasks/install.js delete mode 100644 tasks/rtl/build.js delete mode 100644 tasks/rtl/watch.js delete mode 100644 tasks/version.js delete mode 100644 tasks/watch.js create mode 100644 test.html diff --git a/.gitignore b/.gitignore index 5127a64..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +0,0 @@ -build -node_modules -styles/components diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 36f4e42..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,35 +0,0 @@ -/******************************* - * Set-up - *******************************/ - -var - gulp = require('gulp'), - - // read user config to know what task to load - config = require('./tasks/config/user') -; - - -/******************************* - * Tasks - *******************************/ - -require('./tasks/collections/build')(gulp); -require('./tasks/collections/various')(gulp); -require('./tasks/collections/install')(gulp); - -gulp.task('default', gulp.series('watch')); - -/*-------------- - Docs ----------------*/ - -require('./tasks/collections/docs')(gulp); - -/*-------------- - RTL ----------------*/ - -if (config.rtl) { - require('./tasks/collections/rtl')(gulp); -} diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 2177703..0000000 --- a/package-lock.json +++ /dev/null @@ -1,8922 +0,0 @@ -{ - "name": "default-dark-ui", - "version": "2.2.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "default-dark-ui", - "version": "2.2.0", - "license": "MIT", - "devDependencies": { - "better-console": "^1.0.1", - "del": "^6.0.0", - "extend": "^3.0.2", - "gulp": "^4.0.2", - "gulp-autoprefixer": "^8.0.0", - "gulp-chmod": "^3.0.0", - "gulp-clean-css": "^4.3.0", - "gulp-clone": "^2.0.1", - "gulp-concat": "^2.6.1", - "gulp-concat-css": "^3.1.0", - "gulp-copy": "^4.0.1", - "gulp-dedupe": "0.0.2", - "gulp-flatten": "^0.4.0", - "gulp-header": "^2.0.9", - "gulp-if": "^3.0.0", - "gulp-json-editor": "^2.5.6", - "gulp-less": "^5.0.0", - "gulp-notify": "^4.0.0", - "gulp-plumber": "^1.2.1", - "gulp-print": "^5.0.2", - "gulp-rename": "^2.0.0", - "gulp-replace": "^1.1.3", - "gulp-rtlcss": "^2.0.0", - "gulp-tap": "^2.0.0", - "gulp-uglify": "^3.0.2", - "inquirer": "^8.1.2", - "mkdirp": "^1.0.4", - "require-dot-file": "^0.4.0", - "wrench-sui": "0.0.3", - "yamljs": "^0.3.0" - }, - "engines": { - "inkdrop": "^5.8.0" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@one-ini/wasm": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@one-ini/wasm/-/wasm-0.1.1.tgz", - "integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==", - "dev": true - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@types/expect": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz", - "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.11.30", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", - "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/vinyl": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.11.tgz", - "integrity": "sha512-vPXzCLmRp74e9LsP8oltnWKTH+jBwt86WgRUb4Pc9Lf3pkMVGyvIo2gm9bODeGfCay2DBB/hAWDuvf07JcK4rw==", - "dev": true, - "dependencies": { - "@types/expect": "^1.20.4", - "@types/node": "*" - } - }, - "node_modules/abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", - "dev": true, - "dependencies": { - "ansi-wrap": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-cyan": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", - "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "license": "ISC", - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/anymatch/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/anymatch/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-equal": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", - "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", - "dev": true, - "license": "MIT", - "dependencies": { - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", - "dev": true, - "license": "MIT", - "dependencies": { - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-differ": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", - "integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-initial/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-last": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-last/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", - "dev": true - }, - "node_modules/async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", - "dev": true, - "license": "MIT", - "dependencies": { - "async-done": "^1.2.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true, - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/beeper": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", - "integrity": "sha512-3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/better-console": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/better-console/-/better-console-1.0.1.tgz", - "integrity": "sha512-M/azU25cj3ZHbMSoXEroDfzcolfUvM03PZw5EEBk9T3tqdIYfMXrIkEKb9q8OZMC8Hic8Q9l8jk6TZq9cyRrcw==", - "dev": true, - "dependencies": { - "chalk": "^1.1.3", - "cli-table": "~0.3.1" - } - }, - "node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/binaryextensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz", - "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==", - "dev": true, - "engines": { - "node": ">=0.8" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001600", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001600.tgz", - "integrity": "sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dev": true, - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "optionalDependencies": { - "fsevents": "^1.2.7" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", - "dev": true, - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz", - "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==", - "dev": true, - "dependencies": { - "colors": "1.0.3" - }, - "engines": { - "node": ">= 0.2.0" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cliui/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "license": "MIT", - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, - "node_modules/cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dev": true, - "license": "MIT", - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/component-emitter": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", - "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", - "dev": true, - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==", - "dev": true - }, - "node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "dependencies": { - "is-what": "^3.14.1" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", - "dev": true, - "license": "MIT", - "dependencies": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - } - }, - "node_modules/d": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", - "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", - "dev": true, - "license": "ISC", - "dependencies": { - "es5-ext": "^0.10.64", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/dateformat": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz", - "integrity": "sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", - "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-resolution": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", - "dev": true, - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/diff": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz", - "integrity": "sha512-1zEb73vemXFpUmfh3fsta4YHz3lwebxXvaWmPbFv9apujQBWDnkrPDLXLQs1gZo4RCWMDsT89r0Pf/z8/02TGA==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==", - "dev": true, - "dependencies": { - "readable-stream": "~1.1.9" - } - }, - "node_modules/duplexer2/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - }, - "node_modules/duplexify": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz", - "integrity": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.2" - } - }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/each-props": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", - "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.1", - "object.defaults": "^1.1.0" - } - }, - "node_modules/each-props/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/editorconfig": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", - "integrity": "sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==", - "dev": true, - "dependencies": { - "@one-ini/wasm": "0.1.1", - "commander": "^10.0.0", - "minimatch": "9.0.1", - "semver": "^7.5.3" - }, - "bin": { - "editorconfig": "bin/editorconfig" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/editorconfig/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/editorconfig/node_modules/minimatch": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", - "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.720", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.720.tgz", - "integrity": "sha512-5zwcKNkOj3GN0jBzpcpGonNPkn667VJpQwRYWdo/TiJEHTQswZyA/vALhZFiAXgL5NuK9UarX1tbdvXu3hG6Yw==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "optional": true, - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es5-ext": { - "version": "0.10.64", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", - "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", - "dev": true, - "hasInstallScript": true, - "license": "ISC", - "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "esniff": "^2.0.1", - "next-tick": "^1.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dev": true, - "license": "MIT", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", - "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "d": "^1.0.2", - "ext": "^1.7.0" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "license": "ISC", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/esniff": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", - "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", - "dev": true, - "license": "ISC", - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", - "dev": true, - "license": "MIT", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "dev": true, - "license": "ISC", - "dependencies": { - "type": "^2.7.2" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-levenshtein": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/findup-sync/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/findup-sync/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fined": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", - "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^2.0.3", - "object.defaults": "^1.1.0", - "object.pick": "^1.2.0", - "parse-filepath": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fined/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/flagged-respawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", - "dev": true, - "license": "MIT", - "dependencies": { - "for-in": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/fork-stream": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz", - "integrity": "sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==", - "dev": true - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dev": true, - "license": "MIT", - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fs-mkdirp-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "Upgrade to fsevents v2 to mitigate potential security issues", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true, - "license": "ISC" - }, - "node_modules/get-imports": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-imports/-/get-imports-1.0.0.tgz", - "integrity": "sha512-9FjKG2Os+o/EuOIh3B/LNMbU2FWPGHVy/gs9TJpytK95IPl7lLqiu+VAU7JX6VZimqdmpLemgsGMdQWdKvqYGQ==", - "dev": true, - "dependencies": { - "array-uniq": "^1.0.1", - "import-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob": { - "version": "10.3.12", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", - "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.10.2" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/glob-stream/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-stream/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/glob-stream/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", - "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", - "dev": true, - "license": "MIT", - "dependencies": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "normalize-path": "^3.0.0", - "object.defaults": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "license": "MIT", - "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", - "dev": true, - "dependencies": { - "sparkles": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==", - "dev": true - }, - "node_modules/gulp": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", - "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob-watcher": "^5.0.3", - "gulp-cli": "^2.2.0", - "undertaker": "^1.2.1", - "vinyl-fs": "^3.0.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-autoprefixer": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-8.0.0.tgz", - "integrity": "sha512-sVR++PIaXpa81p52dmmA/jt50bw0egmylK5mjagfgOJ8uLDGaF9tHyzvetkY9Uo0gBZUS5sVqN3kX/GlUKOyog==", - "dev": true, - "dependencies": { - "autoprefixer": "^10.2.6", - "fancy-log": "^1.3.3", - "plugin-error": "^1.0.1", - "postcss": "^8.3.0", - "through2": "^4.0.2", - "vinyl-sourcemaps-apply": "^0.2.1" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "gulp": ">=4" - }, - "peerDependenciesMeta": { - "gulp": { - "optional": true - } - } - }, - "node_modules/gulp-chmod": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/gulp-chmod/-/gulp-chmod-3.1.0.tgz", - "integrity": "sha512-UFKGwrshsyupo7l74hojYZ9ulLOdOO/OKvMHUqPpXDjQi7hdjTMO7Zqv0dxVKEvLegPMDx8tdDr/BQnaVI2bwQ==", - "dev": true, - "dependencies": { - "lodash.merge": "^4.6.2", - "stat-mode": "^1.0.0", - "through2": "^3.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gulp-chmod/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/gulp-clean-css": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-4.3.0.tgz", - "integrity": "sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==", - "dev": true, - "dependencies": { - "clean-css": "4.2.3", - "plugin-error": "1.0.1", - "through2": "3.0.1", - "vinyl-sourcemaps-apply": "0.2.1" - } - }, - "node_modules/gulp-clean-css/node_modules/through2": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", - "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", - "dev": true, - "dependencies": { - "readable-stream": "2 || 3" - } - }, - "node_modules/gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-clone": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/gulp-clone/-/gulp-clone-2.0.1.tgz", - "integrity": "sha512-SLg/KsHBbinR/pCX3PF5l1YlR28hLp0X+bcpf77PtMJ6zvAQ5kRjtCPV5Wt1wHXsXWZN0eTUZ15R8ZYpi/CdCA==", - "dev": true, - "dependencies": { - "plugin-error": "^0.1.2", - "through2": "^2.0.3" - } - }, - "node_modules/gulp-clone/node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-clone/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-concat": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", - "integrity": "sha512-a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg==", - "dev": true, - "dependencies": { - "concat-with-sourcemaps": "^1.0.0", - "through2": "^2.0.0", - "vinyl": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-concat-css": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/gulp-concat-css/-/gulp-concat-css-3.1.0.tgz", - "integrity": "sha512-iLTBPS+cutlgLyK3bp9DMts+WuS8n2mQpjzQ7p/ZVQc8FO5fvpN+ntg9U6jsuNvPeuii82aKm8XeOzF0nUK+TA==", - "dev": true, - "dependencies": { - "lodash.defaults": "^3.0.0", - "parse-import": "^2.0.0", - "plugin-error": "^0.1.2", - "rework": "~1.0.0", - "rework-import": "^2.0.0", - "rework-plugin-url": "^1.0.1", - "through2": "~1.1.1", - "vinyl": "^2.1.0" - } - }, - "node_modules/gulp-concat-css/node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/gulp-concat-css/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-concat-css/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/gulp-concat-css/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - }, - "node_modules/gulp-concat-css/node_modules/through2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/through2/-/through2-1.1.1.tgz", - "integrity": "sha512-zEbpaeSMHxczpTzO1KkMHjBC1enTA68ojeaZGG4toqdASpb9t4xUZaYFBq2/9OHo5nTGFVSYd4c910OR+6wxbQ==", - "dev": true, - "dependencies": { - "readable-stream": ">=1.1.13-1 <1.2.0-0", - "xtend": ">=4.0.0 <4.1.0-0" - } - }, - "node_modules/gulp-concat/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-copy": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/gulp-copy/-/gulp-copy-4.0.1.tgz", - "integrity": "sha512-UbdAwmEiVNNv55KAiUYWOP6Za7h8JPHNNyekNx8Gyc5XRlpUzTrlEclps939nOeiDPsd6jUtT2LmfavJirbZQg==", - "dev": true, - "dependencies": { - "gulp": "^4.0.0", - "plugin-error": "^0.1.2", - "through2": "^2.0.3" - } - }, - "node_modules/gulp-copy/node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-copy/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-dedupe": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/gulp-dedupe/-/gulp-dedupe-0.0.2.tgz", - "integrity": "sha512-Y+FZmAVHUYDgJiGneLXY2sCErvcY89sskjGQILhh5YvNGZq5M+pKsY54K0MyquZGxj2g10ZDVM5vQnEP7yUrVA==", - "dev": true, - "dependencies": { - "colors": "~1.0.2", - "diff": "~1.0.8", - "gulp-util": "~3.0.1", - "lodash.defaults": "~2.4.1", - "through": "~2.3.6" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/gulp-dedupe/node_modules/lodash.defaults": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz", - "integrity": "sha512-5wTIPWwGGr07JFysAZB8+7JB2NjJKXDIwogSaRX5zED85zyUAQwtOqUk8AsJkkigUcL3akbHYXd5+BPtTGQPZw==", - "dev": true, - "dependencies": { - "lodash._objecttypes": "~2.4.1", - "lodash.keys": "~2.4.1" - } - }, - "node_modules/gulp-dedupe/node_modules/lodash.keys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz", - "integrity": "sha512-ZpJhwvUXHSNL5wYd1RM6CUa2ZuqorG9ngoJ9Ix5Cce+uX7I5O/E06FCJdhSZ33b5dVyeQDnIlWH7B2s5uByZ7g==", - "dev": true, - "dependencies": { - "lodash._isnative": "~2.4.1", - "lodash._shimkeys": "~2.4.1", - "lodash.isobject": "~2.4.1" - } - }, - "node_modules/gulp-flatten": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/gulp-flatten/-/gulp-flatten-0.4.0.tgz", - "integrity": "sha512-eg4spVTAiv1xXmugyaCxWne1oPtNG0UHEtABx5W8ScLiqAYceyYm6GYA36x0Qh8KOIXmAZV97L2aYGnKREG3Sg==", - "dev": true, - "dependencies": { - "plugin-error": "^0.1.2", - "through2": "^2.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/gulp-flatten/node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-flatten/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-header": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-2.0.9.tgz", - "integrity": "sha512-LMGiBx+qH8giwrOuuZXSGvswcIUh0OiioNkUpLhNyvaC6/Ga8X6cfAeme2L5PqsbXMhL8o8b/OmVqIQdxprhcQ==", - "dev": true, - "dependencies": { - "concat-with-sourcemaps": "^1.1.0", - "lodash.template": "^4.5.0", - "map-stream": "0.0.7", - "through2": "^2.0.0" - } - }, - "node_modules/gulp-header/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-if": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz", - "integrity": "sha512-fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw==", - "dev": true, - "dependencies": { - "gulp-match": "^1.1.0", - "ternary-stream": "^3.0.0", - "through2": "^3.0.1" - } - }, - "node_modules/gulp-if/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/gulp-json-editor": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/gulp-json-editor/-/gulp-json-editor-2.6.0.tgz", - "integrity": "sha512-Ni0ZUpNrhesHiTlHQth/Nv1rXCn0LUicEvzA5XuGy186C4PVeNoRjfuAIQrbmt3scKv8dgGbCs0hd77ScTw7hA==", - "dev": true, - "dependencies": { - "deepmerge": "^4.3.1", - "detect-indent": "^6.1.0", - "js-beautify": "^1.14.11", - "plugin-error": "^2.0.1", - "through2": "^4.0.2" - } - }, - "node_modules/gulp-json-editor/node_modules/plugin-error": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-2.0.1.tgz", - "integrity": "sha512-zMakqvIDyY40xHOvzXka0kUvf40nYIuwRE8dWhti2WtjQZ31xAgBZBhxsK7vK3QbRXS1Xms/LO7B5cuAsfB2Gg==", - "dev": true, - "dependencies": { - "ansi-colors": "^1.0.1" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/gulp-less": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/gulp-less/-/gulp-less-5.0.0.tgz", - "integrity": "sha512-W2I3TewO/By6UZsM/wJG3pyK5M6J0NYmJAAhwYXQHR+38S0iDtZasmUgFCH3CQj+pQYw/PAIzxvFvwtEXz1HhQ==", - "dev": true, - "dependencies": { - "less": "^3.7.1 || ^4.0.0", - "object-assign": "^4.0.1", - "plugin-error": "^1.0.0", - "replace-ext": "^2.0.0", - "through2": "^4.0.0", - "vinyl-sourcemaps-apply": "^0.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/gulp-match": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz", - "integrity": "sha512-DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ==", - "dev": true, - "dependencies": { - "minimatch": "^3.0.3" - } - }, - "node_modules/gulp-notify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/gulp-notify/-/gulp-notify-4.0.0.tgz", - "integrity": "sha512-0cdDvZkHVqu4tqrcOI/jL5YdxYEIPQ7+p3YxnO48w5hhPSisvogZ887qL+fpYItg9m4MUhJ5Se8p8xGy3uJESA==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1", - "fancy-log": "^1.3.3", - "lodash.template": "^4.5.0", - "node-notifier": "^9.0.1", - "node.extend": "^2.0.2", - "plugin-error": "^1.0.1", - "through2": "^4.0.2" - }, - "engines": { - "node": ">=0.8.0", - "npm": ">=1.2.10" - } - }, - "node_modules/gulp-notify/node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/gulp-plumber": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz", - "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==", - "dev": true, - "dependencies": { - "chalk": "^1.1.3", - "fancy-log": "^1.3.2", - "plugin-error": "^0.1.2", - "through2": "^2.0.3" - }, - "engines": { - "node": ">=0.10", - "npm": ">=1.2.10" - } - }, - "node_modules/gulp-plumber/node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-plumber/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-print": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/gulp-print/-/gulp-print-5.0.2.tgz", - "integrity": "sha512-iIpHMzC/b3gFvVXOfP9Jk94SWGIsDLVNUrxULRleQev+08ug07mh84b1AOlW6QDQdmInQiqDFqJN1UvhU2nXdg==", - "dev": true, - "dependencies": { - "ansi-colors": "^3.2.4", - "fancy-log": "^1.3.3", - "map-stream": "0.0.7", - "vinyl": "^2.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/gulp-print/node_modules/ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/gulp-rename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-2.0.0.tgz", - "integrity": "sha512-97Vba4KBzbYmR5VBs9mWmK+HwIf5mj+/zioxfZhOKeXtx5ZjBk57KFlePf5nxq9QsTtFl0ejnHE3zTC9MHXqyQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/gulp-replace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.4.tgz", - "integrity": "sha512-SVSF7ikuWKhpAW4l4wapAqPPSToJoiNKsbDoUnRrSgwZHH7lH8pbPeQj1aOVYQrbZKhfSVBxVW+Py7vtulRktw==", - "dev": true, - "dependencies": { - "@types/node": "*", - "@types/vinyl": "^2.0.4", - "istextorbinary": "^3.0.0", - "replacestream": "^4.0.3", - "yargs-parser": ">=5.0.0-security.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gulp-rtlcss": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/gulp-rtlcss/-/gulp-rtlcss-2.0.0.tgz", - "integrity": "sha512-muhh8WGEt6P3qyQ9bfCpmALuNod0W4kfwDqrMOQswx0HlyQym1sZlrCUi/pG58LwUpchVJdNS0J+b8hvuTFFbg==", - "dev": true, - "dependencies": { - "plugin-error": "^1.0.1", - "rtlcss": "^3.5.0", - "through2": "^2.0.5", - "vinyl-sourcemaps-apply": "^0.2.1" - } - }, - "node_modules/gulp-rtlcss/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-tap": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/gulp-tap/-/gulp-tap-2.0.0.tgz", - "integrity": "sha512-U5/v1bTozx672QHzrvzPe6fPl2io7Wqyrx2y30AG53eMU/idH4BrY/b2yikOkdyhjDqGgPoMUMnpBg9e9LK8Nw==", - "dev": true, - "dependencies": { - "through2": "^3.0.1" - } - }, - "node_modules/gulp-tap/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/gulp-uglify": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.2.tgz", - "integrity": "sha512-gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg==", - "dev": true, - "dependencies": { - "array-each": "^1.0.1", - "extend-shallow": "^3.0.2", - "gulplog": "^1.0.0", - "has-gulplog": "^0.1.0", - "isobject": "^3.0.1", - "make-error-cause": "^1.1.1", - "safe-buffer": "^5.1.2", - "through2": "^2.0.0", - "uglify-js": "^3.0.5", - "vinyl-sourcemaps-apply": "^0.2.0" - } - }, - "node_modules/gulp-uglify/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-uglify/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-uglify/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-uglify/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", - "integrity": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==", - "deprecated": "gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5", - "dev": true, - "dependencies": { - "array-differ": "^1.0.0", - "array-uniq": "^1.0.2", - "beeper": "^1.0.0", - "chalk": "^1.0.0", - "dateformat": "^2.0.0", - "fancy-log": "^1.1.0", - "gulplog": "^1.0.0", - "has-gulplog": "^0.1.0", - "lodash._reescape": "^3.0.0", - "lodash._reevaluate": "^3.0.0", - "lodash._reinterpolate": "^3.0.0", - "lodash.template": "^3.0.0", - "minimist": "^1.1.0", - "multipipe": "^0.1.2", - "object-assign": "^3.0.0", - "replace-ext": "0.0.1", - "through2": "^2.0.0", - "vinyl": "^0.5.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/gulp-util/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/gulp-util/node_modules/clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==", - "dev": true - }, - "node_modules/gulp-util/node_modules/lodash.template": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", - "integrity": "sha512-0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ==", - "dev": true, - "dependencies": { - "lodash._basecopy": "^3.0.0", - "lodash._basetostring": "^3.0.0", - "lodash._basevalues": "^3.0.0", - "lodash._isiterateecall": "^3.0.0", - "lodash._reinterpolate": "^3.0.0", - "lodash.escape": "^3.0.0", - "lodash.keys": "^3.0.0", - "lodash.restparam": "^3.0.0", - "lodash.templatesettings": "^3.0.0" - } - }, - "node_modules/gulp-util/node_modules/lodash.templatesettings": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", - "integrity": "sha512-TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ==", - "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.escape": "^3.0.0" - } - }, - "node_modules/gulp-util/node_modules/object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-util/node_modules/replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/gulp-util/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-util/node_modules/vinyl": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", - "integrity": "sha512-P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA==", - "dev": true, - "dependencies": { - "clone": "^1.0.0", - "clone-stats": "^0.0.1", - "replace-ext": "0.0.1" - }, - "engines": { - "node": ">= 0.9" - } - }, - "node_modules/gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", - "dev": true, - "dependencies": { - "glogg": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/has-gulplog": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", - "integrity": "sha512-+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw==", - "dev": true, - "dependencies": { - "sparkles": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "license": "ISC" - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/import-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/import-regex/-/import-regex-1.1.0.tgz", - "integrity": "sha512-EblpleIyIdATUKj8ovFojUHyToxgjeKXQgTHZBGZ4cEkbtV21BlO1PSrzZQ6Fei2fgk7uhDeEx656yvPhlRGeA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/inquirer": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz", - "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^6.0.1" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ip-regex": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz", - "integrity": "sha512-HjpCHTuxbR/6jWJroc/VN+npo5j0T4Vv2TAI5qdEHQx7hsL767MeccGFSsLtF694EiZKTSEqgoeU6DtGFCcuqQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz", - "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", - "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", - "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istextorbinary": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz", - "integrity": "sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==", - "dev": true, - "dependencies": { - "binaryextensions": "^2.2.0", - "textextensions": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/js-beautify": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.1.tgz", - "integrity": "sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==", - "dev": true, - "dependencies": { - "config-chain": "^1.1.13", - "editorconfig": "^1.0.4", - "glob": "^10.3.3", - "js-cookie": "^3.0.5", - "nopt": "^7.2.0" - }, - "bin": { - "css-beautify": "js/bin/css-beautify.js", - "html-beautify": "js/bin/html-beautify.js", - "js-beautify": "js/bin/js-beautify.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/just-debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", - "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", - "dev": true, - "license": "MIT", - "dependencies": { - "invert-kv": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "dev": true, - "license": "MIT", - "dependencies": { - "flush-write-stream": "^1.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/less": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", - "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", - "dev": true, - "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" - }, - "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" - } - }, - "node_modules/liftoff": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", - "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend": "^3.0.0", - "findup-sync": "^3.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", - "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/liftoff/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash._baseassign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", - "integrity": "sha512-t3N26QR2IdSN+gqSy9Ds9pBu/J1EAFEshKlUHpJG3rvyJOYgcELIxcIeKKfZk7sjOz11cFfzJRsyFry/JyabJQ==", - "dev": true, - "dependencies": { - "lodash._basecopy": "^3.0.0", - "lodash.keys": "^3.0.0" - } - }, - "node_modules/lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==", - "dev": true - }, - "node_modules/lodash._basetostring": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", - "integrity": "sha512-mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA==", - "dev": true - }, - "node_modules/lodash._basevalues": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", - "integrity": "sha512-H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg==", - "dev": true - }, - "node_modules/lodash._bindcallback": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", - "integrity": "sha512-2wlI0JRAGX8WEf4Gm1p/mv/SZ+jLijpj0jyaE/AXeuQphzCgD8ZQW4oSpoN8JAopujOFGU3KMuq7qfHBWlGpjQ==", - "dev": true - }, - "node_modules/lodash._createassigner": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", - "integrity": "sha512-LziVL7IDnJjQeeV95Wvhw6G28Z8Q6da87LWKOPWmzBLv4u6FAT/x5v00pyGW0u38UoogNF2JnD3bGgZZDaNEBw==", - "dev": true, - "dependencies": { - "lodash._bindcallback": "^3.0.0", - "lodash._isiterateecall": "^3.0.0", - "lodash.restparam": "^3.0.0" - } - }, - "node_modules/lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==", - "dev": true - }, - "node_modules/lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha512-De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ==", - "dev": true - }, - "node_modules/lodash._isnative": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz", - "integrity": "sha512-BOlKGKNHhCHswGOWtmVb5zBygyxN7EmTuzVOSQI6QSoGhG+kvv71gICFS1TBpnqvT1n53txK8CDK3u5D2/GZxQ==", - "dev": true - }, - "node_modules/lodash._objecttypes": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz", - "integrity": "sha512-XpqGh1e7hhkOzftBfWE7zt+Yn9mVHFkDhicVttvKLsoCMLVVL+xTQjfjB4X4vtznauxv0QZ5ZAeqjvat0dh62Q==", - "dev": true - }, - "node_modules/lodash._reescape": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", - "integrity": "sha512-Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ==", - "dev": true - }, - "node_modules/lodash._reevaluate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", - "integrity": "sha512-OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w==", - "dev": true - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "node_modules/lodash._root": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", - "integrity": "sha512-O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ==", - "dev": true - }, - "node_modules/lodash._shimkeys": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz", - "integrity": "sha512-lBrglYxLD/6KAJ8IEa5Lg+YHgNAL7FyKqXg4XOUI+Du/vtniLs1ZqS+yHNKPkK54waAgkdUnDOYaWf+rv4B+AA==", - "dev": true, - "dependencies": { - "lodash._objecttypes": "~2.4.1" - } - }, - "node_modules/lodash.assign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", - "integrity": "sha512-/VVxzgGBmbphasTg51FrztxQJ/VgAUpol6zmJuSVSGcNg4g7FA4z7rQV8Ovr9V3vFBNWZhvKWHfpAytjTVUfFA==", - "dev": true, - "dependencies": { - "lodash._baseassign": "^3.0.0", - "lodash._createassigner": "^3.0.0", - "lodash.keys": "^3.0.0" - } - }, - "node_modules/lodash.defaults": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", - "integrity": "sha512-X7135IXFQt5JDFnYxOVAzVz+kFvwDn3N8DJYf+nrz/mMWEuSu7+OL6rWqsk3+VR1T4TejFCSu5isBJOLSID2bg==", - "dev": true, - "dependencies": { - "lodash.assign": "^3.0.0", - "lodash.restparam": "^3.0.0" - } - }, - "node_modules/lodash.escape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", - "integrity": "sha512-n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ==", - "dev": true, - "dependencies": { - "lodash._root": "^3.0.0" - } - }, - "node_modules/lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", - "dev": true - }, - "node_modules/lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha512-JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ==", - "dev": true - }, - "node_modules/lodash.isobject": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz", - "integrity": "sha512-sTebg2a1PoicYEZXD5PBdQcTlIJ6hUslrlWr7iV0O7n+i4596s2NQ9I5CaZ5FbXSfya/9WQsrYLANUJv9paYVA==", - "dev": true, - "dependencies": { - "lodash._objecttypes": "~2.4.1" - } - }, - "node_modules/lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==", - "dev": true, - "dependencies": { - "lodash._getnative": "^3.0.0", - "lodash.isarguments": "^3.0.0", - "lodash.isarray": "^3.0.0" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==", - "dev": true - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/make-error-cause": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz", - "integrity": "sha512-4TO2Y3HkBnis4c0dxhAgD/jprySYLACf7nwN6V0HAHDx59g12WlRpUmFy1bRHamjGUEEBrEvCq6SUpsEE2lhUg==", - "dev": true, - "dependencies": { - "make-error": "^1.2.0" - } - }, - "node_modules/make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/make-iterator/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", - "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", - "dev": true - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "license": "MIT", - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", - "dev": true, - "license": "MIT", - "dependencies": { - "findup-sync": "^2.0.0", - "micromatch": "^3.0.4", - "resolve": "^1.4.0", - "stack-trace": "0.0.10" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/matchdep/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/matchdep/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/matchdep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/micromatch/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/micromatch/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/micromatch/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/micromatch/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true, - "license": "MIT" - }, - "node_modules/multipipe": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", - "integrity": "sha512-7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q==", - "dev": true, - "dependencies": { - "duplexer2": "0.0.2" - } - }, - "node_modules/mute-stdout": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "node_modules/nan": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.20.0.tgz", - "integrity": "sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/nanomatch/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/needle": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", - "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" - }, - "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/node-notifier": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.1.tgz", - "integrity": "sha512-fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==", - "dev": true, - "dependencies": { - "growly": "^1.3.0", - "is-wsl": "^2.2.0", - "semver": "^7.3.2", - "shellwords": "^0.1.1", - "uuid": "^8.3.0", - "which": "^2.0.2" - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true - }, - "node_modules/node.extend": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.3.tgz", - "integrity": "sha512-xwADg/okH48PvBmRZyoX8i8GJaKuJ1CqlqotlZOhUio8egD1P5trJupHKBzcPjSF9ifK2gPcEICRBnkfPqQXZw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0", - "is": "^3.3.0" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", - "dev": true, - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "once": "^1.3.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.reduce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "^2.0.1" - } - }, - "node_modules/os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "lcid": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/parse-import": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-import/-/parse-import-2.0.0.tgz", - "integrity": "sha512-c59vdx1LiQT+majNKMyfFLrNMAVS9U1bychTv3CEuxbKspgnVTrzLRtgtfCWyAmTuFAxQVSJFasVv8svJLksIg==", - "dev": true, - "dependencies": { - "get-imports": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "error-ex": "^1.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-root-regex": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-scurry": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", - "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", - "dev": true, - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/plugin-error": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", - "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", - "dev": true, - "dependencies": { - "ansi-colors": "^1.0.1", - "arr-diff": "^4.0.0", - "arr-union": "^3.1.0", - "extend-shallow": "^3.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/plugin-error/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/plugin-error/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/plugin-error/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true - }, - "node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/pumpify/node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg/node_modules/path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-pkg/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/readdirp/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readdirp/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readdirp/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/readdirp/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readdirp/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readdirp/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/readdirp/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/remove-bom-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/replace-ext": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", - "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/replace-homedir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "homedir-polyfill": "^1.0.1", - "is-absolute": "^1.0.0", - "remove-trailing-separator": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/replacestream": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz", - "integrity": "sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.3", - "object-assign": "^4.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-dot-file": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/require-dot-file/-/require-dot-file-0.4.0.tgz", - "integrity": "sha512-pMe/T7+uFi2NMYsxuQtTh9n/UKD13HAHeDOk7KuP2pr7aKi5aMhvkbGD4IeoJKjy+3vdIUy8ggXYWzlZTL5FWA==", - "dev": true - }, - "node_modules/require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true, - "license": "ISC" - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", - "dev": true, - "license": "MIT", - "dependencies": { - "value-or-function": "^3.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "dev": true - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/restore-cursor/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==", - "dev": true, - "dependencies": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - } - }, - "node_modules/rework-import": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/rework-import/-/rework-import-2.1.0.tgz", - "integrity": "sha512-ufvoQX6cDhrqYc8ZXvJ+6FqimwyI4qn8cH1ypAiS9Mn41iVPN/9RGwRvscBtUEkHA09w8voTIakRJKslgWcTEQ==", - "dev": true, - "dependencies": { - "css": "^2.0.0", - "globby": "^2.0.0", - "parse-import": "^2.0.0", - "url-regex": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rework-import/node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "dependencies": { - "array-uniq": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rework-import/node_modules/glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", - "dev": true, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/rework-import/node_modules/globby": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz", - "integrity": "sha512-CqRID2dMaN4Zi9PANiQHhmKaGu7ZASehBLnaDogjR9L3L1EqAGFhflafT0IrSN/zm9xFk+KMTXZCN8pUYOiO/Q==", - "dev": true, - "dependencies": { - "array-union": "^1.0.1", - "async": "^1.2.1", - "glob": "^5.0.3", - "object-assign": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rework-import/node_modules/object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rework-plugin-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/rework-plugin-function/-/rework-plugin-function-1.0.2.tgz", - "integrity": "sha512-kyIphbC2Kuc3iFz1CSAQ5zmt4o/IHquhO+uG0kK0FQTjs4Z5eAxrqmrv3rZMR1KXa77SesaW9KwKyfbYoLMEqw==", - "dev": true, - "dependencies": { - "rework-visit": "^1.0.0" - } - }, - "node_modules/rework-plugin-url": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/rework-plugin-url/-/rework-plugin-url-1.1.0.tgz", - "integrity": "sha512-qlAhbJKfEK59jAPQppIn8bNXffW1INlaJZaXdX/ZLs/CzZSnn38Y0wESQ3tjOwRsDbPEUHN2XJ3ZgueDaaCC0A==", - "dev": true, - "dependencies": { - "rework-plugin-function": "^1.0.0" - } - }, - "node_modules/rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==", - "dev": true - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rtlcss": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", - "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", - "dev": true, - "dependencies": { - "find-up": "^5.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.3.11", - "strip-json-comments": "^3.1.1" - }, - "bin": { - "rtlcss": "bin/rtlcss.js" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dev": true, - "license": "MIT", - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sax": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", - "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", - "dev": true, - "optional": true - }, - "node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-greatest-satisfied-range": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "sver-compat": "^1.5.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true, - "license": "ISC" - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/shellwords": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", - "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", - "dev": true - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "license": "MIT", - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dev": true, - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "dev": true - }, - "node_modules/sparkles": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", - "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/stat-mode": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", - "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stream-exhaust": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", - "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", - "dev": true, - "license": "MIT" - }, - "node_modules/stream-shift": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", - "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-utf8": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sver-compat": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/ternary-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz", - "integrity": "sha512-oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ==", - "dev": true, - "dependencies": { - "duplexify": "^4.1.1", - "fork-stream": "^0.0.4", - "merge-stream": "^2.0.0", - "through2": "^3.0.1" - } - }, - "node_modules/ternary-stream/node_modules/through2": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", - "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "2 || 3" - } - }, - "node_modules/textextensions": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz", - "integrity": "sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "dependencies": { - "readable-stream": "3" - } - }, - "node_modules/through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "dev": true, - "license": "MIT", - "dependencies": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "node_modules/through2-filter/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/to-regex/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/to-through/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - }, - "node_modules/type": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", - "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "dev": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/undertaker": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", - "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "bach": "^1.0.0", - "collection-map": "^1.0.0", - "es6-weak-map": "^2.0.1", - "fast-levenshtein": "^1.0.0", - "last-run": "^1.1.0", - "object.defaults": "^1.0.0", - "object.reduce": "^1.0.0", - "undertaker-registry": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/undertaker-registry": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4", - "yarn": "*" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "dev": true - }, - "node_modules/url-regex": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz", - "integrity": "sha512-dQ9cJzMou5OKr6ZzfvwJkCq3rC72PNXhqz0v3EIhF4a3Np+ujr100AhUx2cKx5ei3iymoJpJrPB3sVSEMdqAeg==", - "dev": true, - "dependencies": { - "ip-regex": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8flags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", - "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", - "dev": true, - "license": "MIT", - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "dev": true, - "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "dev": true, - "license": "MIT", - "dependencies": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "dev": true, - "license": "MIT", - "dependencies": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-sourcemap/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true, - "license": "MIT" - }, - "node_modules/vinyl-sourcemap/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", - "dev": true, - "dependencies": { - "source-map": "^0.5.1" - } - }, - "node_modules/vinyl-sourcemaps-apply/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vinyl/node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/wrench-sui": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wrench-sui/-/wrench-sui-0.0.3.tgz", - "integrity": "sha512-Y6qzMpcMG9akKnIdUsKzEF/Ht0KQJBP8ETkZj3FcGe93NC71e940WZUP1y+j+hc8Ecx9TyX0GvAWC4yymA88yA==", - "dev": true, - "engines": { - "node": ">=0.1.97" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yamljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.3.0.tgz", - "integrity": "sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "glob": "^7.0.5" - }, - "bin": { - "json2yaml": "bin/json2yaml", - "yaml2json": "bin/yaml2json" - } - }, - "node_modules/yamljs/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/yargs": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", - "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.1" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/yargs/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "license": "MIT", - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", - "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} diff --git a/package.json b/package.json index c74eafb..9ec9704 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,7 @@ "styleSheets": [ "theme.css" ], - "scripts": { - "run": "gulp", - "build": "gulp build" - }, + "scripts": {}, "keywords": [ "inkdrop", "markdown" @@ -17,40 +14,9 @@ "author": "Takuya Matsuyama", "license": "MIT", "devDependencies": { - "better-console": "^1.0.1", - "del": "^6.0.0", - "extend": "^3.0.2", - "gulp": "^4.0.2", - "gulp-autoprefixer": "^8.0.0", - "gulp-chmod": "^3.0.0", - "gulp-clean-css": "^4.3.0", - "gulp-clone": "^2.0.1", - "gulp-concat": "^2.6.1", - "gulp-concat-css": "^3.1.0", - "gulp-copy": "^4.0.1", - "gulp-dedupe": "0.0.2", - "gulp-flatten": "^0.4.0", - "gulp-header": "^2.0.9", - "gulp-if": "^3.0.0", - "gulp-json-editor": "^2.5.6", - "gulp-less": "^5.0.0", - "gulp-notify": "^4.0.0", - "gulp-plumber": "^1.2.1", - "gulp-print": "^5.0.2", - "gulp-rename": "^2.0.0", - "gulp-replace": "^1.1.3", - "gulp-rtlcss": "^2.0.0", - "gulp-tap": "^2.0.0", - "gulp-uglify": "^3.0.2", - "inquirer": "^8.1.2", - "mkdirp": "^1.0.4", - "require-dot-file": "^0.4.0", - "wrench-sui": "0.0.3", - "yamljs": "^0.3.0" + "@inkdropapp/base-ui-theme": "^0.1.2", + "@inkdropapp/css": "^0.4.2" }, - "browserslist": [ - "Electron 12.0.4" - ], "engines": { "inkdrop": "^5.8.0" } diff --git a/styles/theme.css b/styles/theme.css index fe93b62..d476f7c 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -1,38104 +1,1306 @@ -/* - * # Fomantic UI - 2.8.8 - * https://github.com/fomantic/Fomantic-UI - * http://fomantic-ui.com/ - * - * Copyright 2024 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -/*! - * # Semantic UI - Site - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Page -*******************************/ - -html, -body { - height: 100%; -} - -html { - font-size: 14px; -} - -body { - margin: 0px; - padding: 0px; - overflow-x: hidden; - min-width: 320px; - background: #2E3235; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 14px; - line-height: 1.4285em; - color: #DDDDDD; - font-smoothing: antialiased; -} - -/******************************* - Headers -*******************************/ - -h1, -h2, -h3, -h4, -h5 { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - line-height: 1.28571429em; - margin: calc(2rem - 0.1428571428571429em) 0em 1rem; - font-weight: 600; - padding: 0em; -} - -h1 { - min-height: 1rem; - font-size: 2rem; -} - -h2 { - font-size: 1.71428571rem; -} - -h3 { - font-size: 1.28571429rem; -} - -h4 { - font-size: 1.07142857rem; -} - -h5 { - font-size: 1rem; -} - -h1:first-child, -h2:first-child, -h3:first-child, -h4:first-child, -h5:first-child { - margin-top: 0em; -} - -h1:last-child, -h2:last-child, -h3:last-child, -h4:last-child, -h5:last-child { - margin-bottom: 0em; -} - -/******************************* - Text -*******************************/ - -p { - margin: 0em 0em 1em; - line-height: 1.4285em; -} - -p:first-child { - margin-top: 0em; -} - -p:last-child { - margin-bottom: 0em; -} - -/*------------------- - Links ---------------------*/ - -a { - color: #6987AF; - text-decoration: none; -} - -a:hover { - color: #729ad0; - text-decoration: none; -} - -/******************************* - Scrollbars -*******************************/ - -/******************************* - Highlighting -*******************************/ - -/* Site */ - -::-webkit-selection { - background-color: #6987AF; - color: #DDDDDD; -} - -::selection { - background-color: #6987AF; - color: #DDDDDD; -} - -/* Form */ - -textarea::-webkit-selection, -input::-webkit-selection { - background-color: #2185D0; - color: #DDDDDD; -} - -textarea::selection, -input::selection { - background-color: #2185D0; - color: #DDDDDD; -} - -/******************************* - Global Overrides -*******************************/ - -:root { - color-scheme: dark; -} - -/******************************* - Site Overrides -*******************************/ - -:root { - /******************************* - Site Settings - *******************************/ - /*------------------- - Fonts - --------------------*/ - --font-name: 'Lato'; - --font-smoothing: antialiased; - --header-font: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - --page-font: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - --google-font-name: 'Lato'; - --import-google-fonts: false; - --google-font-sizes: '400,700,400italic,700italic'; - --google-subset: 'latin'; - --google-protocol: 'https://'; - --google-font-request: 'Lato:400,700,400italic,700italic&subset=latin'; - /*------------------- + :root { + /*------------------- Base Sizes - --------------------*/ - /* This is the single variable that controls them all */ - --em-size: 14px; - /* The size of page text */ - --font-size: 14px; - /*------------------- + --------------------*/ + /* This is the single variable that controls them all */ + --em-size: 14px; + /* The size of page text */ + --font-size: 14px; + + /*------------------- Border Radius - --------------------*/ - /* See Power-user section below + --------------------*/ + /* See Power-user section below for explanation of @px variables - */ - --relative-border-radius: 0.35714286em; - --absolute-border-radius: 0.35714286rem; - --default-border-radius: 0.35714286rem; - /*------------------- + */ + --relative-border-radius: 0.35714286em; + --absolute-border-radius: 0.35714286rem; + --default-border-radius: 0.35714286rem; + + /*------------------- Brand Colors - --------------------*/ - --primary-color: #6987AF; - --secondary-color: #F9FAFB; - --light-primary-color: #54C8FF; - --light-secondary-color: #545454; - /*-------------- + --------------------*/ + --primary-color: var(--color-blue-500); + --secondary-color: var(--color-zinc-900); + --light-primary-color: var(--color-blue-400); + --light-secondary-color: var(--color-neutral-700); + + /*-------------- Page Heading - ---------------*/ - --header-font-weight: 600; - --header-line-height: 1.28571429em; - --h1: 2rem; - --h2: 1.71428571rem; - --h3: 1.28571429rem; - --h4: 1.07142857rem; - --h5: 1rem; - /*-------------- + ---------------*/ + --header-font-weight: 600; + --header-line-height: 1.28571429em; + --h1: 2rem; + --h2: 1.71428571rem; + --h3: 1.28571429rem; + --h4: 1.07142857rem; + --h5: 1rem; + + /*-------------- Form Input - ---------------*/ - /* This adjusts the default form input across all elements */ - --input-background: #2E3235; - --input-vertical-padding: 0.78571429em; - --input-horizontal-padding: 1em; - --input-padding: 0.78571429em 1em; - /* Input Text Color */ - --input-color: #DDDDDD; - --input-placeholder-color: #777777; - --input-placeholder-focus-color: #777777; - /* Line Height Default For Inputs in Browser */ - --input-line-height: 1.21428571em; - /*------------------- + ---------------*/ + /* This adjusts the default form input across all elements */ + --input-background: var(--color-neutral-900); + --input-vertical-padding: 0.78571429em; + --input-horizontal-padding: 1em; + --input-padding: 0.78571429em 1em; + /* Input Text Color */ + --input-color: rgba(0, 0, 0, 0.87); + --input-placeholder-color: rgba(191, 191, 191, 0.87); + --input-placeholder-focus-color: rgba(115, 115, 115, 0.87); + --input-error-placeholder-color: #e7bdbc; + --input-error-placeholder-focus-color: #da9796; + /* Line Height Default For Inputs in Browser */ + --input-line-height: 1.21428571em; + + /*------------------- Focused Input - --------------------*/ - /* Used on inputs, textarea etc */ - --focused-form-border-color: #85B7D9; - /* Used on dropdowns, other larger blocks */ - --focused-form-muted-border-color: #96C8DA; - --unfocused-outline-color: transparent; - --unfocused-outline-offset: 0.4rem; - --focused-outline-style: solid; - --focused-outline-width: 0.14285714rem; - --focused-outline-color: color-mix(in srgb, #96C8DA, transparent 50%); - --focused-outline-offset: 0rem; - /*------------------- + --------------------*/ + /* Used on inputs, textarea etc */ + --focused-form-border-color: #85B7D9; + /* Used on dropdowns, other larger blocks */ + --focused-form-muted-border-color: #96C8DA; + --unfocused-outline-color: transparent; + --unfocused-outline-offset: 0.4rem; + --focused-outline-style: solid; + --focused-outline-width: 0.14285714rem; + --focused-outline-color: color-mix(in srgb, #96C8DA, transparent 30%); + --focused-outline-offset: 0rem; + + /*------------------- Sizes - --------------------*/ - /* - Sizes are all expressed in terms of 14px/em (default em) - This ensures these "ratios" remain constant despite changes in EM - */ - --mini-size: 0.78571429; - --tiny-size: 0.85714286; - --small-size: 0.92857143; - --medium-size: 1; - --large-size: 1.14285714; - --big-size: 1.28571429; - --huge-size: 1.42857143; - --massive-size: 1.71428571; - /*------------------- + --------------------*/ + /* + Sizes are all expressed in terms of 14px/em (default em) + This ensures these "ratios" remain constant despite changes in EM + */ + --mini-size: 0.78571429; + --tiny-size: 0.85714286; + --small-size: 0.92857143; + --medium-size: 1; + --large-size: 1.14285714; + --big-size: 1.28571429; + --huge-size: 1.42857143; + --massive-size: 1.71428571; + + /*------------------- Page - --------------------*/ - --page-background: #2E3235; - --page-overflow-x: hidden; - --line-height: 1.4285em; - --text-color: #DDDDDD; - /*------------------- + --------------------*/ + --page-background: var(--color-neutral-900); + --page-overflow-x: hidden; + --line-height: 1.4285em; + --text-color: hsl(var(--hsl-neutral-50) / 87%); + + /*------------------- Paragraph - --------------------*/ - --paragraph-margin: 0em 0em 1em; - --paragraph-line-height: 1.4285em; - /*------------------- + --------------------*/ + --paragraph-margin: 0em 0em 1em; + --paragraph-line-height: 1.4285em; + + /*------------------- Links - --------------------*/ - --link-color: #6987AF; - --link-underline: none; - --link-hover-color: #729ad0; - --link-hover-underline: none; - /*------------------- - Highlighted Text - --------------------*/ - --highlight-background: #6987AF; - --highlight-color: #DDDDDD; - --input-highlight-background: #2185D0; - --input-highlight-color: #DDDDDD; - /*------------------- - Loader - --------------------*/ - --loader-size: 1.28571429em; - --loader-speed: 0.6s; - --loader-line-width: 0.2em; - --loader-fill-color: rgba(0, 0, 0, 0.1); - --loader-line-color: #767676; - --inverted-loader-fill-color: rgba(255, 255, 255, 0.15); - --inverted-loader-line-color: #2E3235; - /*------------------- - Grid - --------------------*/ - --column-count: 16; - /*------------------- - Transitions - --------------------*/ - --default-duration: 0.1s; - --default-easing: ease; - /*------------------- - Breakpoints - --------------------*/ - --mobile-breakpoint: 320px; - --tablet-breakpoint: 768px; - --computer-breakpoint: 992px; - --large-monitor-breakpoint: 1200px; - --widescreen-monitor-breakpoint: 1920px; - /*------------------- + --------------------*/ + --link-color: var(--color-blue-500); + --link-underline: none; + --link-hover-color: var(--color-blue-600); + --link-hover-underline: none; + + /*------------------- + Highlighted Text + --------------------*/ + --highlight-background: var(--color-blue-200); + --highlight-color: var(--text-color); + --input-highlight-background: hsl(var(--hsl-neutral-600) / 40%); + --input-highlight-color: var(--text-color); + + /*------------------- + Loader + --------------------*/ + --loader-size: 1.28571429em; + --loader-speed: 0.6s; + --loader-line-width: 0.2em; + --loader-fill-color: rgba(0, 0, 0, 0.1); + --loader-line-color: #767676; + --inverted-loader-fill-color: rgba(255, 255, 255, 0.15); + --inverted-loader-line-color: #FFFFFF; + + /*------------------- + Grid + --------------------*/ + --column-count: 16; + + /*------------------- + Transitions + --------------------*/ + --default-duration: 0.1s; + --default-easing: ease; + + /*------------------- + Breakpoints + --------------------*/ + --mobile-breakpoint: 320px; + --tablet-breakpoint: 768px; + --computer-breakpoint: 992px; + --large-monitor-breakpoint: 1200px; + --widescreen-monitor-breakpoint: 1920px; + + /*------------------- Site Colors - --------------------*/ - /*--- Colors ---*/ - --red: #DB2828; - --orange: #C06D36; - --yellow: #FBBD08; - --olive: #B5CC18; - --green: #21BA45; - --teal: #00B5AD; - --blue: #2185D0; - --violet: #6435C9; - --purple: #A333C8; - --pink: #E03997; - --brown: #A5673F; - --grey: #767676; - --black: #F9FAFB; - /*--- Light Colors ---*/ - --light-red: #FF695E; - --light-orange: #FF851B; - --light-yellow: #FFE21F; - --light-olive: #D9E778; - --light-green: #2ECC40; - --light-teal: #6DFFFF; - --light-blue: #54C8FF; - --light-violet: #A291FB; - --light-purple: #DC73FF; - --light-pink: #FF8EDF; - --light-brown: #D67C1C; - --light-grey: #DCDDDE; - --light-black: #545454; - /*--- Neutrals ---*/ - --full-black: #FFFFFF; - --off-white: #34393D; - --dark-white: #4B5257; - --mid-white: #666E74; - --white: #2E3235; - /*--- Colored Backgrounds ---*/ - --red-background: #FFE8E6; - --orange-background: #FFEDDE; - --yellow-background: #FFF8DB; - --olive-background: #FBFDEF; - --green-background: #E5F9E7; - --teal-background: #E1F7F7; - --blue-background: #DFF0FF; - --violet-background: #EAE7FF; - --purple-background: #F6E7FF; - --pink-background: #FFE3FB; - --brown-background: #F1E2D3; - /*--- Colored Headers ---*/ - --red-header-color: #c82121; - --olive-header-color: #7aa61a; - --green-header-color: #1aa62a; - --yellow-header-color: #9c6f04; - --blue-header-color: #1e77ba; - --teal-header-color: #0e8c8c; - --pink-header-color: #dd238b; - --violet-header-color: #5a30b5; - --purple-header-color: #922eb4; - --orange-header-color: #ac6230; - --brown-header-color: #935b38; - /*--- Colored Text ---*/ - --red-text-color: #DB2828; - --orange-text-color: #C06D36; - --yellow-text-color: #B58105; - --olive-text-color: #8ABC1E; - --green-text-color: #1EBC30; - --teal-text-color: #10A3A3; - --blue-text-color: #2185D0; - --violet-text-color: #6435C9; - --purple-text-color: #A333C8; - --pink-text-color: #E03997; - --brown-text-color: #A5673F; - /*--- Colored Border ---*/ - --red-border-color: #DB2828; - --orange-border-color: #C06D36; - --yellow-border-color: #B58105; - --olive-border-color: #8ABC1E; - --green-border-color: #1EBC30; - --teal-border-color: #10A3A3; - --blue-border-color: #2185D0; - --violet-border-color: #6435C9; - --purple-border-color: #A333C8; - --pink-border-color: #E03997; - --brown-border-color: #A5673F; - /*------------------- + --------------------*/ + /*--- Colors ---*/ + --red: var(--color-red-500); + --orange: var(--color-orange-500); + --yellow: var(--color-yellow-500); + --olive: var(--color-lime-500); + --green: var(--color-green-500); + --teal: var(--color-teal-500); + --blue: var(--color-blue-500); + --violet: var(--color-violet-500); + --purple: var(--color-purple-500); + --pink: var(--color-pink-500); + --brown: var(--color-yellow-800); + --grey: var(--color-neutral-500); + --black: var(--color-neutral-900); + /*--- Light Colors ---*/ + --light-red: var(--color-red-400); + --light-orange: var(--color-orange-400); + --light-yellow: var(--color-yellow-400); + --light-olive: var(--color-lime-400); + --light-green: var(--color-green-400); + --light-teal: var(--color-teal-400); + --light-blue: var(--color-blue-400); + --light-violet: var(--color-violet-400); + --light-purple: var(--color-purple-400); + --light-pink: var(--color-pink-400); + --light-brown: var(--color-yellow-700); + --light-grey: var(--color-neutral-300); + --light-black: var(--color-neutral-700); + /*--- Neutrals ---*/ + --full-black: var(--color-black); + --off-white: var(--color-gray-50); + --dark-white: var(--color-gray-100); + --mid-white: var(--color-gray-200); + --white: var(--color-white); + /*--- Colored Backgrounds ---*/ + --red-background: var(--color-red-100); + --orange-background: var(--color-orange-100); + --yellow-background: var(--color-yellow-100); + --olive-background: var(--color-lime-100); + --green-background: var(--color-green-100); + --teal-background: var(--color-teal-100); + --blue-background: var(--color-blue-100); + --violet-background: var(--color-violet-100); + --purple-background: var(--color-purple-100); + --pink-background: var(--color-pink-100); + --brown-background: var(--color-orange-100); + /*--- Colored Headers ---*/ + --red-header-color: var(--color-red-600); + --orange-header-color: var(--color-orange-600); + --yellow-header-color: var(--color-yellow-800); + --olive-header-color: var(--color-lime-700); + --green-header-color: var(--color-green-700); + --teal-header-color: var(--color-teal-700); + --blue-header-color: var(--color-blue-600); + --violet-header-color: var(--color-violet-600); + --purple-header-color: var(--color-purple-600); + --pink-header-color: var(--color-pink-600); + --brown-header-color: var(--color-yellow-900); + /*--- Colored Text ---*/ + --red-text-color: var(--color-red-500); + --orange-text-color: var(--color-orange-500); + --yellow-text-color: var(--color-yellow-700); + --olive-text-color: var(--color-lime-600); + --green-text-color: var(--color-green-600); + --teal-text-color: var(--color-teal-600); + --blue-text-color: var(--color-blue-500); + --violet-text-color: var(--color-violet-500); + --purple-text-color: var(--color-purple-500); + --pink-text-color: var(--color-pink-500); + --brown-text-color: var(--color-yellow-800); + /*--- Colored Border ---*/ + --red-border-color: var(--red-text-color); + --orange-border-color: var(--orange-text-color); + --yellow-border-color: var(--yellow-text-color); + --olive-border-color: var(--olive-text-color); + --green-border-color: var(--green-text-color); + --teal-border-color: var(--teal-text-color); + --blue-border-color: var(--blue-text-color); + --violet-border-color: var(--violet-text-color); + --purple-border-color: var(--purple-text-color); + --pink-border-color: var(--pink-text-color); + --brown-border-color: var(--brown-text-color); + /*------------------- Alpha Colors - --------------------*/ - --subtle-transparent-black: rgba(255, 255, 255, 0.03); - --transparent-black: rgba(255, 255, 255, 0.05); - --strong-transparent-black: rgba(255, 255, 255, 0.1); - --very-strong-transparent-black: rgba(255, 255, 255, 0.15); - --subtle-transparent-white: rgba(0, 0, 0, 0.02); - --transparent-white: rgba(0, 0, 0, 0.08); - --strong-transparent-white: rgba(0, 0, 0, 0.15); - /*------------------- + --------------------*/ + --subtle-transparent-black: rgba(0, 0, 0, 0.03); + --transparent-black: rgba(0, 0, 0, 0.05); + --strong-transparent-black: rgba(0, 0, 0, 0.1); + --very-strong-transparent-black: rgba(0, 0, 0, 0.15); + --subtle-transparent-white: rgba(255, 255, 255, 0.02); + --transparent-white: rgba(255, 255, 255, 0.08); + --strong-transparent-white: rgba(255, 255, 255, 0.15); + /*------------------- Accents - --------------------*/ - /* Differentiating Neutrals */ - --subtle-gradient: linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - /* Differentiating Layers */ - --subtle-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - --floating-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), - 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - --raised-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); - /******************************* + --------------------*/ + /* Differentiating Neutrals */ + --subtle-gradient: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); + /* Differentiating Layers */ + --subtle-shadow: 0px 1px 2px 0 var(--border-color); + --floating-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), + 0px 2px 10px 0px rgba(34, 36, 38, 0.15); + --raised-shadow: 0px 2px 3px 0px var(--border-color); + /******************************* Power-User - *******************************/ - /*------------------- + *******************************/ + /*------------------- Emotive Colors - --------------------*/ - /* Positive */ - --positive-color: #21BA45; - --positive-background-color: #FCFFF5; - --positive-border-color: #A3C293; - --positive-header-color: #1A531B; - --positive-text-color: #2C662D; - /* Negative */ - --negative-color: #DB2828; - --negative-background-color: #FFF6F6; - --negative-border-color: #E0B4B4; - --negative-header-color: #912D2B; - --negative-text-color: #9F3A38; - /* Info */ - --info-color: #31CCEC; - --info-background-color: #F8FFFF; - --info-border-color: #A9D5DE; - --info-header-color: #0E566C; - --info-text-color: #276F86; - /* Warning */ - --warning-color: #F2C037; - --warning-border-color: #794B02; - --warning-background-color: #FFFAF3; - --warning-header-color: #794B02; - --warning-text-color: #573A08; - /*------------------- - Paths - --------------------*/ - /* For source only. Modified in gulp for dist */ - --image-path: './themes/default/assets/images'; - --font-path: 'inkdrop://default-dark-ui/styles/themes/default/assets/fonts'; - /*------------------- + --------------------*/ + /* Positive */ + --positive-color: var(--color-green-500); + --positive-background-color: var(--color-green-50); + --positive-border-color: var(--color-green-300); + --positive-header-color: var(--color-green-900); + --positive-text-color: var(--color-green-800); + /* Negative */ + --negative-color: var(--color-red-500); + --negative-background-color: var(--color-red-50); + --negative-border-color: var(--color-red-300); + --negative-header-color: var(--color-red-900); + --negative-text-color: var(--color-red-800); + /* Info */ + --info-color: var(--color-cyan-500); + --info-background-color: var(--color-sky-50); + --info-border-color: var(--color-sky-300); + --info-header-color: var(--color-sky-900); + --info-text-color: var(--color-sky-800); + /* Warning */ + --warning-color: var(--color-amber-400); + --warning-background-color: var(--color-stone-100); + --warning-border-color: var(--color-stone-400); + --warning-header-color: var(--color-yellow-800); + --warning-text-color: var(--color-amber-900); + /*------------------- Em Sizes - --------------------*/ - /* - This rounds @size values to the closest pixel then expresses that value in (r)em. - This ensures all size values round to exact pixels - */ - --mini: 0.78571429rem; - --tiny: 0.85714286rem; - --small: 0.92857143rem; - --medium: 1rem; - --large: 1.14285714rem; - --big: 1.28571429rem; - --huge: 1.42857143rem; - --massive: 1.71428571rem; - /* em */ - --relative-mini: 0.78571429em; - --relative-tiny: 0.85714286em; - --relative-small: 0.92857143em; - --relative-medium: 1em; - --relative-large: 1.14285714em; - --relative-big: 1.28571429em; - --relative-huge: 1.42857143em; - --relative-massive: 1.71428571em; - /* rem */ - --absolute-mini: 0.78571429rem; - --absolute-tiny: 0.85714286rem; - --absolute-small: 0.92857143rem; - --absolute-medium: 1rem; - --absolute-large: 1.14285714rem; - --absolute-big: 1.28571429rem; - --absolute-huge: 1.42857143rem; - --absolute-massive: 1.71428571rem; - /*------------------- + --------------------*/ + /* + This rounds @size values to the closest pixel then expresses that value in (r)em. + This ensures all size values round to exact pixels + */ + --mini: 0.78571429rem; + --tiny: 0.85714286rem; + --small: 0.92857143rem; + --medium: 1rem; + --large: 1.14285714rem; + --big: 1.28571429rem; + --huge: 1.42857143rem; + --massive: 1.71428571rem; + /* em */ + --relative-mini: 0.78571429em; + --relative-tiny: 0.85714286em; + --relative-small: 0.92857143em; + --relative-medium: 1em; + --relative-large: 1.14285714em; + --relative-big: 1.28571429em; + --relative-huge: 1.42857143em; + --relative-massive: 1.71428571em; + /* rem */ + --absolute-mini: 0.78571429rem; + --absolute-tiny: 0.85714286rem; + --absolute-small: 0.92857143rem; + --absolute-medium: 1rem; + --absolute-large: 1.14285714rem; + --absolute-big: 1.28571429rem; + --absolute-huge: 1.42857143rem; + --absolute-massive: 1.71428571rem; + /*------------------- Icons - --------------------*/ - /* Maximum Glyph Width of Icon */ - --icon-width: 1.18em; - /*------------------- + --------------------*/ + /* Maximum Glyph Width of Icon */ + --icon-width: 1.18em; + /*------------------- Neutral Text - --------------------*/ - --dark-text-color: rgba(255, 255, 255, 0.95); - --muted-text-color: rgba(255, 255, 255, 0.6); - --light-text-color: rgba(255, 255, 255, 0.5); - --unselected-text-color: rgba(255, 255, 255, 0.4); - --hovered-text-color: rgba(255, 255, 255, 0.8); - --pressed-text-color: rgba(255, 255, 255, 0.9); - --selected-text-color: rgba(255, 255, 255, 0.95); - --inverted-text-color: rgba(0, 0, 0, 0.9); - --inverted-muted-text-color: rgba(0, 0, 0, 0.8); - --inverted-light-text-color: rgba(0, 0, 0, 0.7); - --inverted-unselected-text-color: rgba(0, 0, 0, 0.5); - --inverted-hovered-text-color: #000000; - --inverted-pressed-text-color: #000000; - --inverted-selected-text-color: #000000; - /*------------------- - Brand Colors - --------------------*/ - --facebook-color: #3B5998; - --twitter-color: #55ACEE; - --google-plus-color: #DD4B39; - --linked-in-color: #1F88BE; - --youtube-color: #FF0000; - --instagram-color: #49769C; - --pinterest-color: #BD081C; - --vk-color: #4D7198; - /*------------------- + --------------------*/ + --dark-text-color: hsl(var(--hsl-black) / 85%); + --muted-text-color: hsl(var(--hsl-black) / 60%); + --light-text-color: hsl(var(--hsl-black) / 40%); + --unselected-text-color: hsl(var(--hsl-black) / 40%); + --hovered-text-color: hsl(var(--hsl-black) / 80%); + --pressed-text-color: hsl(var(--hsl-black) / 90%); + --selected-text-color: hsl(var(--hsl-black) / 95%); + --disabled-text-color: hsl(var(--hsl-black) / 20%); + --inverted-text-color: hsl(var(--hsl-white) / 90%); + --inverted-muted-text-color: hsl(var(--hsl-white) / 80%); + --inverted-light-text-color: hsl(var(--hsl-white) / 70%); + --inverted-unselected-text-color: hsl(var(--hsl-white) / 50%); + --inverted-hovered-text-color: hsl(var(--hsl-white) / 100%); + --inverted-pressed-text-color: hsl(var(--hsl-white) / 100%); + --inverted-selected-text-color: hsl(var(--hsl-white) / 100%); + --inverted-disabled-text-color: hsl(var(--hsl-white) / 20%); + /*------------------- Borders - --------------------*/ - --circular-radius: 500rem; - --border-color: rgba(24, 26, 28, 0.45); - --strong-border-color: rgba(24, 26, 28, 0.22); - --internal-border-color: rgba(24, 26, 28, 0.1); - --selected-border-color: rgba(24, 26, 28, 0.35); - --strong-selected-border-color: rgba(24, 26, 28, 0.5); - --disabled-border-color: rgba(24, 26, 28, 0.5); - --solid-internal-border-color: #222222; - --solid-border-color: #3B3C3E; - --solid-selected-border-color: #4D5B66; - --white-border-color: rgba(0, 0, 0, 0.1); - --selected-white-border-color: rgba(0, 0, 0, 0.8); - --solid-white-border-color: #34393D; - --selected-solid-white-border-color: #4D5B66; - /*------------------- + --------------------*/ + --circular-radius: 500rem; + --border-color: hsl(var(--hsl-neutral-900) / 15%); + --strong-border-color: hsl(var(--hsl-neutral-900) / 22%); + --internal-border-color: hsl(var(--hsl-neutral-900) / 10%); + --selected-border-color: hsl(var(--hsl-neutral-900) / 35%); + --strong-selected-border-color: hsl(var(--hsl-neutral-900) / 50%); + --disabled-border-color: hsl(var(--hsl-neutral-900) / 50%); + --solid-internal-border-color: var(--color-neutral-50); + --solid-border-color: var(--color-zinc-300); + --solid-selected-border-color: var(--color-neutral-400); + --white-border-color: hsl(var(--hsl-white) / 10%); + --selected-white-border-color: hsl(var(--hsl-white) / 80%); + --solid-white-border-color: var(--color-neutral-400); + --selected-solid-white-border-color: var(--color-neutral-300); + /*------------------- Derived Values - --------------------*/ - /* Loaders Position Offset */ - --loader-offset: -0.64285714em; - --loader-margin: -0.64285714em 0em 0em -0.64285714em; - /* Rendered Scrollbar Width */ - /* Maximum Single Character Glyph Width, aka Capital "W" */ - --glyph-width: 1.1em; - /* Used to match floats with text */ - --line-height-offset: 0.21425em; - --header-line-height-offset: 0.14285714em; - /* Header Spacing */ - --header-top-margin: calc(2rem - 0.1428571428571429em); - --header-bottom-margin: 1rem; - --header-margin: calc(2rem - 0.1428571428571429em) 0em 1rem; - /* Minimum Mobile Width */ - --page-min-width: 320px; - /* Positive / Negative Dupes */ - --success-background-color: #FCFFF5; - --success-color: #21BA45; - --success-border-color: #A3C293; - --success-header-color: #1A531B; - --success-text-color: #2C662D; - --error-background-color: #FFF6F6; - --error-color: #DB2828; - --error-border-color: #E0B4B4; - --error-header-color: #912D2B; - --error-text-color: #9F3A38; - /* Responsive */ - --largest-mobile-screen: 767px; - --largest-tablet-screen: 991px; - --largest-small-monitor: 1199px; - --largest-large-monitor: 1919px; - /*------------------- - Exact Pixel Values - --------------------*/ - /* - These are used to specify exact pixel values in em - for things like borders that remain constantly - sized as emSize adjusts - - Since there are many more sizes than names for sizes, - these are named by their original pixel values. - - */ - --1px: 0.07142857rem; - --2px: 0.14285714rem; - --3px: 0.21428571rem; - --4px: 0.28571429rem; - --5px: 0.35714286rem; - --6px: 0.42857143rem; - --7px: 0.5rem; - --8px: 0.57142857rem; - --9px: 0.64285714rem; - --10px: 0.71428571rem; - --11px: 0.78571429rem; - --12px: 0.85714286rem; - --13px: 0.92857143rem; - --14px: 1rem; - --15px: 1.07142857rem; - --16px: 1.14285714rem; - --17px: 1.21428571rem; - --18px: 1.28571429rem; - --19px: 1.35714286rem; - --20px: 1.42857143rem; - --21px: 1.5rem; - --22px: 1.57142857rem; - --23px: 1.64285714rem; - --24px: 1.71428571rem; - --25px: 1.78571429rem; - --26px: 1.85714286rem; - --27px: 1.92857143rem; - --28px: 2rem; - --29px: 2.07142857rem; - --30px: 2.14285714rem; - --31px: 2.21428571rem; - --32px: 2.28571429rem; - --33px: 2.35714286rem; - --34px: 2.42857143rem; - --35px: 2.5rem; - --36px: 2.57142857rem; - --37px: 2.64285714rem; - --38px: 2.71428571rem; - --39px: 2.78571429rem; - --40px: 2.85714286rem; - --41px: 2.92857143rem; - --42px: 3rem; - --43px: 3.07142857rem; - --44px: 3.14285714rem; - --45px: 3.21428571rem; - --46px: 3.28571429rem; - --47px: 3.35714286rem; - --48px: 3.42857143rem; - --49px: 3.5rem; - --50px: 3.57142857rem; - --51px: 3.64285714rem; - --52px: 3.71428571rem; - --53px: 3.78571429rem; - --54px: 3.85714286rem; - --55px: 3.92857143rem; - --56px: 4rem; - --57px: 4.07142857rem; - --58px: 4.14285714rem; - --59px: 4.21428571rem; - --60px: 4.28571429rem; - --61px: 4.35714286rem; - --62px: 4.42857143rem; - --63px: 4.5rem; - --64px: 4.57142857rem; - --relative1px: 0.07142857em; - --relative2px: 0.14285714em; - --relative3px: 0.21428571em; - --relative4px: 0.28571429em; - --relative5px: 0.35714286em; - --relative6px: 0.42857143em; - --relative7px: 0.5em; - --relative8px: 0.57142857em; - --relative9px: 0.64285714em; - --relative10px: 0.71428571em; - --relative11px: 0.78571429em; - --relative12px: 0.85714286em; - --relative13px: 0.92857143em; - --relative14px: 1em; - --relative15px: 1.07142857em; - --relative16px: 1.14285714em; - --relative17px: 1.21428571em; - --relative18px: 1.28571429em; - --relative19px: 1.35714286em; - --relative20px: 1.42857143em; - --relative21px: 1.5em; - --relative22px: 1.57142857em; - --relative23px: 1.64285714em; - --relative24px: 1.71428571em; - --relative25px: 1.78571429em; - --relative26px: 1.85714286em; - --relative27px: 1.92857143em; - --relative28px: 2em; - --relative29px: 2.07142857em; - --relative30px: 2.14285714em; - --relative31px: 2.21428571em; - --relative32px: 2.28571429em; - --relative33px: 2.35714286em; - --relative34px: 2.42857143em; - --relative35px: 2.5em; - --relative36px: 2.57142857em; - --relative37px: 2.64285714em; - --relative38px: 2.71428571em; - --relative39px: 2.78571429em; - --relative40px: 2.85714286em; - --relative41px: 2.92857143em; - --relative42px: 3em; - --relative43px: 3.07142857em; - --relative44px: 3.14285714em; - --relative45px: 3.21428571em; - --relative46px: 3.28571429em; - --relative47px: 3.35714286em; - --relative48px: 3.42857143em; - --relative49px: 3.5em; - --relative50px: 3.57142857em; - --relative51px: 3.64285714em; - --relative52px: 3.71428571em; - --relative53px: 3.78571429em; - --relative54px: 3.85714286em; - --relative55px: 3.92857143em; - --relative56px: 4em; - --relative57px: 4.07142857em; - --relative58px: 4.14285714em; - --relative59px: 4.21428571em; - --relative60px: 4.28571429em; - --relative61px: 4.35714286em; - --relative62px: 4.42857143em; - --relative63px: 4.5em; - --relative64px: 4.57142857em; - /* Columns */ - --one-wide: 6.25%; - --two-wide: 12.5%; - --three-wide: 18.75%; - --four-wide: 25%; - --five-wide: 31.25%; - --six-wide: 37.5%; - --seven-wide: 43.75%; - --eight-wide: 50%; - --nine-wide: 56.25%; - --ten-wide: 62.5%; - --eleven-wide: 68.75%; - --twelve-wide: 75%; - --thirteen-wide: 81.25%; - --fourteen-wide: 87.5%; - --fifteen-wide: 93.75%; - --sixteen-wide: 100%; - --one-column: 100%; - --two-column: 50%; - --three-column: 33.33333333%; - --four-column: 25%; - --five-column: 20%; - --six-column: 16.66666667%; - --seven-column: 14.28571429%; - --eight-column: 12.5%; - --nine-column: 11.11111111%; - --ten-column: 10%; - --eleven-column: 9.09090909%; - --twelve-column: 8.33333333%; - --thirteen-column: 7.69230769%; - --fourteen-column: 7.14285714%; - --fifteen-column: 6.66666667%; - --sixteen-column: 6.25%; - /******************************* + --------------------*/ + /* Loaders Position Offset */ + --loader-offset: -0.64285714em; + --loader-margin: -0.64285714em 0em 0em -0.64285714em; + /* Maximum Single Character Glyph Width, aka Capital "W" */ + --glyph-width: 1.1em; + /* Used to match floats with text */ + --line-height-offset: 0.21425em; + --header-line-height-offset: 0.14285714em; + /* Header Spacing */ + --header-top-margin: calc(2rem - 0.1428571428571429em); + --header-bottom-margin: 1rem; + --header-margin: calc(2rem - 0.1428571428571429em) 0em 1rem; + /* Minimum Mobile Width */ + --page-min-width: 320px; + /* Positive / Negative Dupes */ + --success-background-color: var(--positive-background-color); + --success-color: var(--positive-color); + --success-border-color: var(--positive-border-color); + --success-header-color: var(--positive-header-color); + --success-text-color: var(--positive-text-color); + --error-background-color: var(--negative-background-color); + --error-color: var(--negative-color); + --error-border-color: var(--negative-border-color); + --error-header-color: var(--negative-header-color); + --error-text-color: var(--negative-text-color); + /* Responsive */ + --largest-mobile-screen: 767px; + --largest-tablet-screen: 991px; + --largest-small-monitor: 1199px; + --largest-large-monitor: 1919px; + /*------------------- + Exact Pixel Values + --------------------*/ + /* + These are used to specify exact pixel values in em + for things like borders that remain constantly + sized as emSize adjusts + + Since there are many more sizes than names for sizes, + these are named by their original pixel values. + + */ + --1px: 0.07142857rem; + --2px: 0.14285714rem; + --3px: 0.21428571rem; + --4px: 0.28571429rem; + --5px: 0.35714286rem; + --6px: 0.42857143rem; + --7px: 0.5rem; + --8px: 0.57142857rem; + --9px: 0.64285714rem; + --10px: 0.71428571rem; + --11px: 0.78571429rem; + --12px: 0.85714286rem; + --13px: 0.92857143rem; + --14px: 1rem; + --15px: 1.07142857rem; + --16px: 1.14285714rem; + --17px: 1.21428571rem; + --18px: 1.28571429rem; + --19px: 1.35714286rem; + --20px: 1.42857143rem; + --21px: 1.5rem; + --22px: 1.57142857rem; + --23px: 1.64285714rem; + --24px: 1.71428571rem; + --25px: 1.78571429rem; + --26px: 1.85714286rem; + --27px: 1.92857143rem; + --28px: 2rem; + --29px: 2.07142857rem; + --30px: 2.14285714rem; + --31px: 2.21428571rem; + --32px: 2.28571429rem; + --33px: 2.35714286rem; + --34px: 2.42857143rem; + --35px: 2.5rem; + --36px: 2.57142857rem; + --37px: 2.64285714rem; + --38px: 2.71428571rem; + --39px: 2.78571429rem; + --40px: 2.85714286rem; + --41px: 2.92857143rem; + --42px: 3rem; + --43px: 3.07142857rem; + --44px: 3.14285714rem; + --45px: 3.21428571rem; + --46px: 3.28571429rem; + --47px: 3.35714286rem; + --48px: 3.42857143rem; + --49px: 3.5rem; + --50px: 3.57142857rem; + --51px: 3.64285714rem; + --52px: 3.71428571rem; + --53px: 3.78571429rem; + --54px: 3.85714286rem; + --55px: 3.92857143rem; + --56px: 4rem; + --57px: 4.07142857rem; + --58px: 4.14285714rem; + --59px: 4.21428571rem; + --60px: 4.28571429rem; + --61px: 4.35714286rem; + --62px: 4.42857143rem; + --63px: 4.5rem; + --64px: 4.57142857rem; + --relative1px: 0.07142857em; + --relative2px: 0.14285714em; + --relative3px: 0.21428571em; + --relative4px: 0.28571429em; + --relative5px: 0.35714286em; + --relative6px: 0.42857143em; + --relative7px: 0.5em; + --relative8px: 0.57142857em; + --relative9px: 0.64285714em; + --relative10px: 0.71428571em; + --relative11px: 0.78571429em; + --relative12px: 0.85714286em; + --relative13px: 0.92857143em; + --relative14px: 1em; + --relative15px: 1.07142857em; + --relative16px: 1.14285714em; + --relative17px: 1.21428571em; + --relative18px: 1.28571429em; + --relative19px: 1.35714286em; + --relative20px: 1.42857143em; + --relative21px: 1.5em; + --relative22px: 1.57142857em; + --relative23px: 1.64285714em; + --relative24px: 1.71428571em; + --relative25px: 1.78571429em; + --relative26px: 1.85714286em; + --relative27px: 1.92857143em; + --relative28px: 2em; + --relative29px: 2.07142857em; + --relative30px: 2.14285714em; + --relative31px: 2.21428571em; + --relative32px: 2.28571429em; + --relative33px: 2.35714286em; + --relative34px: 2.42857143em; + --relative35px: 2.5em; + --relative36px: 2.57142857em; + --relative37px: 2.64285714em; + --relative38px: 2.71428571em; + --relative39px: 2.78571429em; + --relative40px: 2.85714286em; + --relative41px: 2.92857143em; + --relative42px: 3em; + --relative43px: 3.07142857em; + --relative44px: 3.14285714em; + --relative45px: 3.21428571em; + --relative46px: 3.28571429em; + --relative47px: 3.35714286em; + --relative48px: 3.42857143em; + --relative49px: 3.5em; + --relative50px: 3.57142857em; + --relative51px: 3.64285714em; + --relative52px: 3.71428571em; + --relative53px: 3.78571429em; + --relative54px: 3.85714286em; + --relative55px: 3.92857143em; + --relative56px: 4em; + --relative57px: 4.07142857em; + --relative58px: 4.14285714em; + --relative59px: 4.21428571em; + --relative60px: 4.28571429em; + --relative61px: 4.35714286em; + --relative62px: 4.42857143em; + --relative63px: 4.5em; + --relative64px: 4.57142857em; + /* Columns */ + --one-wide: 6.25%; + --two-wide: 12.5%; + --three-wide: 18.75%; + --four-wide: 25%; + --five-wide: 31.25%; + --six-wide: 37.5%; + --seven-wide: 43.75%; + --eight-wide: 50%; + --nine-wide: 56.25%; + --ten-wide: 62.5%; + --eleven-wide: 68.75%; + --twelve-wide: 75%; + --thirteen-wide: 81.25%; + --fourteen-wide: 87.5%; + --fifteen-wide: 93.75%; + --sixteen-wide: 100%; + --one-column: 100%; + --two-column: 50%; + --three-column: 33.33333333%; + --four-column: 25%; + --five-column: 20%; + --six-column: 16.66666667%; + --seven-column: 14.28571429%; + --eight-column: 12.5%; + --nine-column: 11.11111111%; + --ten-column: 10%; + --eleven-column: 9.09090909%; + --twelve-column: 8.33333333%; + --thirteen-column: 7.69230769%; + --fourteen-column: 7.14285714%; + --fifteen-column: 6.66666667%; + --sixteen-column: 6.25%; + /******************************* States - *******************************/ - /*------------------- - Disabled - --------------------*/ - --disabled-opacity: 0.45; - --disabled-text-color: rgba(255, 255, 255, 0.2); - --inverted-disabled-text-color: rgba(0, 0, 0, 0.2); - /*------------------- - Hover - --------------------*/ - /*--- Shadows ---*/ - --floating-shadow-hover: 0px 2px 4px 0px rgba(34, 36, 38, 0.15), - 0px 2px 10px 0px rgba(34, 36, 38, 0.25); - /*--- Colors ---*/ - --primary-color-hover: #5579aa; - --secondary-color-hover: #ffffff; - --red-hover: #d01919; - --orange-hover: #b2602a; - --yellow-hover: #eaae00; - --olive-hover: #a7bd0d; - --green-hover: #16ab39; - --teal-hover: #009c95; - --blue-hover: #1678c2; - --violet-hover: #5829bb; - --purple-hover: #9627ba; - --pink-hover: #e61a8d; - --brown-hover: #975b33; - --light-red-hover: #ff5144; - --light-orange-hover: #ff7701; - --light-yellow-hover: #ffdf05; - --light-olive-hover: #d8ea5c; - --light-green-hover: #22be34; - --light-teal-hover: #54ffff; - --light-blue-hover: #3ac0ff; - --light-violet-hover: #8a73ff; - --light-purple-hover: #d65aff; - --light-pink-hover: #ff74d8; - --light-brown-hover: #c86f11; - --light-grey-hover: #cfd0d2; - --light-black-hover: #f2f2f2; - /*--- Emotive ---*/ - --positive-color-hover: #16ab39; - --negative-color-hover: #d01919; - /*--- Brand ---*/ - --facebook-hover-color: #304d8a; - --twitter-hover-color: #35a2f4; - --google-plus-hover-color: #e0321c; - --linked-in-hover-color: #147baf; - --youtube-hover-color: #e60000; - --instagram-hover-color: #3d698e; - --pinterest-hover-color: #ac0013; - --vk-hover-color: #41648a; - /*--- Dark Tones ---*/ - --full-black-hover: #ffffff; - --black-hover: #ffffff; - --grey-hover: #838383; - /*--- Light Tones ---*/ - --white-hover: #222527; - --off-white-hover: #282c2f; - --dark-white-hover: #3f4549; - /*------------------- + *******************************/ + /*------------------- + Disabled + --------------------*/ + --disabled-opacity: 0.45; + --disabled-text-color: hsl(var(--hsl-neutral-800) / 30%); + --inverted-disabled-text-color: hsl(var(--hsl-white) / 30%); + + /*------------------- + Hover + --------------------*/ + /*--- Shadows ---*/ + --floating-shadow-hover: 0px 2px 4px 0px rgba(34, 36, 38, 0.15), + 0px 2px 10px 0px rgba(34, 36, 38, 0.25); + /*--- Colors ---*/ + --primary-color-hover: var(--color-blue-600); + --secondary-color-hover: var(--color-zinc-800); + --red-hover: var(--color-red-600); + --orange-hover: var(--color-orange-600); + --yellow-hover: var(--color-yellow-600); + --olive-hover: var(--color-lime-600); + --green-hover: var(--color-green-600); + --teal-hover: var(--color-teal-600); + --blue-hover: var(--color-blue-600); + --violet-hover: var(--color-violet-600); + --purple-hover: var(--color-purple-600); + --pink-hover: var(--color-pink-600); + --brown-hover: var(--color-yellow-900); + --light-red-hover: var(--color-red-500); + --light-orange-hover: var(--color-orange-500); + --light-yellow-hover: var(--color-yellow-500); + --light-olive-hover: var(--color-lime-500); + --light-green-hover: var(--color-green-500); + --light-teal-hover: var(--color-teal-500); + --light-blue-hover: var(--color-blue-500); + --light-violet-hover: var(--color-violet-500); + --light-purple-hover: var(--color-purple-500); + --light-pink-hover: var(--color-pink-500); + --light-brown-hover: var(--color-yellow-800); + --light-grey-hover: var(--color-neutral-400); + --light-black-hover: var(--color-neutral-800); + /*--- Emotive ---*/ + --positive-color-hover: var(--color-green-600); + --negative-color-hover: var(--color-red-600); + /*--- Dark Tones ---*/ + --full-black-hover: var(--color-neutral-950); + --black-hover: var(--color-neutral-800); + --grey-hover: var(--color-neutral-400); + /*--- Light Tones ---*/ + --white-hover: var(--color-gray-50); + --off-white-hover: var(--color-gray-100); + --dark-white-hover: var(--color-gray-200); + + /*------------------- Focus - --------------------*/ - /*--- Colors ---*/ - --primary-color-focus: #4c71a3; - --secondary-color-focus: #ffffff; - --red-focus: #ca1010; - --orange-focus: #ac5922; - --yellow-focus: #daa300; - --olive-focus: #a0b605; - --green-focus: #0ea432; - --teal-focus: #008c86; - --blue-focus: #0d71bb; - --violet-focus: #4f20b5; - --purple-focus: #8f1eb4; - --pink-focus: #e10f85; - --brown-focus: #90532b; - --light-red-focus: #ff4335; - --light-orange-focus: #f17000; - --light-yellow-focus: #f5d500; - --light-olive-focus: #daef47; - --light-green-focus: #19b82b; - --light-teal-focus: #44ffff; - --light-blue-focus: #2bbbff; - --light-violet-focus: #7d64ff; - --light-purple-focus: #d24aff; - --light-pink-focus: #ff65d3; - --light-brown-focus: #c16808; - --light-grey-focus: #c7c9cb; - --light-black-focus: #ebebeb; - /*--- Emotive ---*/ - --positive-color-focus: #0ea432; - --negative-color-focus: #ca1010; - /*--- Brand ---*/ - --facebook-focus-color: #284582; - --twitter-focus-color: #1d9cfd; - --google-plus-focus-color: #db2812; - --linked-in-focus-color: #0c73a8; - --youtube-focus-color: #d60000; - --instagram-focus-color: #356287; - --pinterest-focus-color: #9c0011; - --vk-focus-color: #395d83; - /*--- Dark Tones ---*/ - --full-black-focus: #ffffff; - --black-focus: #ffffff; - --grey-focus: #8a8a8a; - /*--- Light Tones ---*/ - --white-focus: #1b1d1f; - --off-white-focus: #212427; - --dark-white-focus: #383d41; - /*------------------- - Down (:active) - --------------------*/ - /*--- Colors ---*/ - --primary-color-down: #506e95; - --secondary-color-down: #ffffff; - --red-down: #b21e1e; - --orange-down: #98562b; - --yellow-down: #cd9903; - --olive-down: #8d9e13; - --green-down: #198f35; - --teal-down: #00827c; - --blue-down: #1a69a4; - --violet-down: #502aa1; - --purple-down: #82299f; - --pink-down: #c71f7e; - --brown-down: #805031; - --light-red-down: #ff392b; - --light-orange-down: #e76b00; - --light-yellow-down: #ebcd00; - --light-olive-down: #cddf4d; - --light-green-down: #25a233; - --light-teal-down: #3affff; - --light-blue-down: #21b8ff; - --light-violet-down: #7860f9; - --light-purple-down: #cf40ff; - --light-pink-down: #ff5bd1; - --light-brown-down: #a96216; - --light-grey-down: #c2c4c5; - --light-black-down: #e6e6e6; - /*--- Emotive ---*/ - --positive-color-down: #198f35; - --negative-color-down: #b21e1e; - /*--- Brand ---*/ - --facebook-down-color: #2d4373; - --twitter-down-color: #2795e9; - --google-plus-down-color: #c23321; - --linked-in-down-color: #186992; - --youtube-down-color: #cc0000; - --instagram-down-color: #395c79; - --pinterest-down-color: #8c0615; - --vk-down-color: #3c5876; - /*--- Dark Tones ---*/ - --full-black-down: #ffffff; - --black-down: #ffffff; - --grey-down: #909090; - /*--- Light Tones ---*/ - --white-down: #16181a; - --off-white-down: #1d1f21; - --dark-white-down: #33383c; - /*------------------- - Active - --------------------*/ - /*--- Colors ---*/ - --primary-color-active: #5379ac; - --secondary-color-active: #ffffff; - --red-active: #d41515; - --orange-active: #b56027; - --yellow-active: #eaae00; - --olive-active: #aac109; - --green-active: #13ae38; - --teal-active: #009c95; - --blue-active: #1279c6; - --violet-active: #5626bf; - --purple-active: #9724be; - --pink-active: #ea158d; - --brown-active: #995a31; - --light-red-active: #ff5144; - --light-orange-active: #ff7701; - --light-yellow-active: #ffdf05; - --light-olive-active: #daed59; - --light-green-active: #1fc231; - --light-teal-active: #54ffff; - --light-blue-active: #3ac0ff; - --light-violet-active: #8a73ff; - --light-purple-active: #d65aff; - --light-pink-active: #ff74d8; - --light-brown-active: #cc6f0d; - --light-grey-active: #cfd0d2; - --light-black-active: #f2f2f2; - /*--- Emotive ---*/ - --positive-color-active: #13ae38; - --negative-color-active: #d41515; - /*--- Brand ---*/ - --facebook-active-color: #2e4c8c; - --twitter-active-color: #31a2f9; - --google-plus-active-color: #e52e18; - --linked-in-active-color: #117cb3; - --youtube-active-color: #e60000; - --instagram-active-color: #3b6990; - --pinterest-active-color: #ac0013; - --vk-active-color: #3f648c; - /*--- Dark Tones ---*/ - --full-black-active: #f2f2f2; - --black-active: #eaedf1; - --grey-active: #696969; - /*--- Light Tones ---*/ - --white-active: #222527; - --off-white-active: #282c2f; - --dark-white-active: #3f4549; - /*------------------- - Side Bar - --------------------*/ - --sidebar-background: #2E3235; - --sidebar-menu-item-active-background: hsl(var(--hsl-slate-500) / 40%); - --sidebar-menu-item-inactive-background: rgba(0, 0, 0, 0.2); - --sidebar-menu-section-color: rgba(255, 255, 255, 0.5); - --sidebar-menu-section-separator-color: rgba(255, 255, 255, 0.1); - --sidebar-menu-item-color: #DDDDDD; - --sidebar-menu-action-color: rgba(255, 255, 255, 0.5); - --sidebar-menu-action-hover-color: #4c71a3; - --sidebar-sync-status-view-background: #26292C; - --sidebar-sync-status-view-text-color: #DDDDDD; - --sidebar-sync-status-view-detail-color: rgba(255, 255, 255, 0.5); - --sidebar-scrollbar-width: 6px; - --sidebar-scrollbar-track-background: rgba(0, 0, 0, 0.02); - --sidebar-scrollbar-thumb-background: rgba(255, 255, 255, 0.1); - /*------------------- - Scroll Bar - --------------------*/ - --scrollbar-width: 6px; - --scrollbar-track-background: rgba(0, 0, 0, 0.02); - --scrollbar-thumb-background: rgba(255, 255, 255, 0.1); - /*------------------- - Note List Bar - --------------------*/ - --note-list-bar-background: #34393D; - --note-list-bar-pinned-section-header-background: rgba(255, 255, 255, 0.05); - --note-list-bar-pinned-section-header-border-bottom: 1px solid rgba(255, 255, 255, 0.1); - --note-list-bar-pinned-section-footer-border-bottom: 4px solid rgba(255, 255, 255, 0.2); - --note-list-view-item-color: rgba(255, 255, 255, 0.6); - --note-list-view-item-separator-border: 1px solid #2E3235; - --note-list-view-item-date-color: #6987AF; - --note-list-view-item-tag-color: #6987AF; - --note-list-view-item-inactive-background: #6987AF30; - --note-list-view-item-active-background: #6987AF60; - --note-list-view-item-active-color: #DDDDDD; - --note-list-view-item-active-date-color: #DDDDDD; - --note-list-view-item-active-tag-color: #DDDDDD; - --note-list-view-item-focus-inner-shadow: none; - --note-search-bar-background: #34393D; - --note-search-bar-border-bottom: 1px solid #2E3235; - --note-search-bar-input-border: 1px solid transparent; - --note-search-bar-input-background: #2E3235; - /*------------------- - Editor - --------------------*/ - --editor-background: #2E3235; - /*------------------- - Header Note Menu - --------------------*/ - --header-note-menu-background: transparent; - --header-note-menu-color: rgba(255, 255, 255, 0.5); - --header-note-menu-action-item-active-background: rgba(49, 204, 236, 0.3); - --header-note-menu-action-item-active-border: 1px solid rgba(49, 204, 236, 0.8); - --header-note-menu-action-item-separator-border: 1px solid #16181a; - --header-note-menu-encrypt-button-color: #B58105; - --header-note-menu-encrypt-button-background: #FFF8DB; - /*------------------- - Preferences - --------------------*/ - --preferences-sidebar-background: #2E3235; - --preferences-sidebar-item-active-background: #6987AF40; - --preferences-view-background: #34393D; - /*------------------- - Task Icons - --------------------*/ - --task-icon-active: hsl(var(--hsl-slate-400)); - --task-icon-onhold: hsl(var(--hsl-amber-500)); - --task-icon-completed: hsl(var(--hsl-emerald-500)); - --task-icon-dropped: hsl(var(--hsl-rose-400)); - /*------------------- - Task Progress View - --------------------*/ - --task-progress-view-border-color: hsl(var(--hsl-gray-50) / 10%); - --task-progress-view-background-color: hsl(var(--hsl-gray-950) / 30%); - --task-progress-view-foreground-color: hsl(var(--hsl-gray-50) / 60%); - --task-progress-view-completed-color: hsl(var(--hsl-green-500)); -} -/*! - * # Semantic UI - Button - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Button -*******************************/ - -.ui.button { - cursor: pointer; - display: inline-block; - min-height: 1em; - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - border: 1px solid var(--very-strong-transparent-black); - vertical-align: baseline; - background: #25282a none; - color: #DDDDDD; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - margin: 0em 0.25em 0em 0em; - padding: 0.78571429em 1.5em 0.78571429em; - text-transform: none; - text-shadow: none; - font-weight: 600; - line-height: 1em; - font-style: normal; - text-align: center; - text-decoration: none; - border-radius: 0.35714286rem; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - user-select: none; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; - will-change: ''; - -webkit-tap-highlight-color: transparent; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.button:hover { - background-color: #292d30; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - color: rgba(255, 255, 255, 0.8); -} - -.ui.button:hover .icon { - opacity: 0.85; -} - -/*-------------- - Focus ----------------*/ - -.ui.button:focus { - background-color: #292d30; - color: rgba(255, 255, 255, 0.8); - background-image: '' !important; - box-shadow: '' !important; - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); -} - -.ui.button:focus .icon { - opacity: 0.85; -} - -/*-------------- - Down ----------------*/ - -.ui.button:active, -.ui.active.button:active { - background-color: #25282a; - background-image: ''; - color: rgba(255, 255, 255, 0.9); - box-shadow: 0px 0px 0px 1px transparent inset, none; -} - -/*-------------- - Active ----------------*/ - -.ui.active.button { - background-color: #25282a; - background-image: none; - box-shadow: 0px 0px 0px 1px transparent inset; - color: rgba(255, 255, 255, 0.95); -} - -.ui.active.button:hover { - background-color: #25282a; - background-image: none; - color: rgba(255, 255, 255, 0.95); -} - -.ui.active.button:active { - background-color: #25282a; - background-image: none; -} - -/*-------------- - Loading ----------------*/ - -/* Specificity hack */ - -.ui.loading.loading.loading.loading.loading.loading.button { - position: relative; - cursor: default; - text-shadow: none !important; - color: transparent !important; - opacity: 1; - pointer-events: auto; - transition: all 0s linear, opacity 0.1s ease; -} - -.ui.loading.button:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.15); -} - -.ui.loading.button:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - animation: button-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #2E3235 transparent transparent; - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; -} - -.ui.labeled.icon.loading.button .icon { - background-color: transparent; - box-shadow: none; -} - -@keyframes button-spin { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); + --------------------*/ + /*--- Colors ---*/ + --primary-color-focus: var(--color-blue-600); + --secondary-color-focus: var(--color-zinc-800); + --red-focus: var(--color-red-600); + --orange-focus: var(--color-orange-600); + --yellow-focus: var(--color-yellow-600); + --olive-focus: var(--color-lime-600); + --green-focus: var(--color-green-600); + --teal-focus: var(--color-teal-600); + --blue-focus: var(--color-blue-600); + --violet-focus: var(--color-violet-600); + --purple-focus: var(--color-purple-600); + --pink-focus: var(--color-pink-600); + --brown-focus: var(--color-yellow-900); + --light-red-focus: var(--color-red-500); + --light-orange-focus: var(--color-orange-500); + --light-yellow-focus: var(--color-yellow-500); + --light-olive-focus: var(--color-lime-500); + --light-green-focus: var(--color-green-500); + --light-teal-focus: var(--color-teal-500); + --light-blue-focus: var(--color-blue-500); + --light-violet-focus: var(--color-violet-500); + --light-purple-focus: var(--color-purple-500); + --light-pink-focus: var(--color-pink-500); + --light-brown-focus: var(--color-yellow-800); + --light-grey-focus: var(--color-neutral-400); + --light-black-focus: var(--color-neutral-800); + /*--- Emotive ---*/ + --positive-color-focus: var(--color-green-600); + --negative-color-focus: var(--color-red-600); + /*--- Dark Tones ---*/ + --full-black-focus: var(--color-neutral-900); + --black-focus: var(--color-neutral-700); + --grey-focus: var(--color-neutral-300); + /*--- Light Tones ---*/ + --white-focus: var(--color-gray-100); + --off-white-focus: var(--color-gray-200); + --dark-white-focus: var(--color-gray-300); + + /*------------------- + Down (:active) + --------------------*/ + /*--- Colors ---*/ + --primary-color-down: var(--color-blue-700); + --secondary-color-down: var(--color-zinc-700); + --red-down: var(--color-red-700); + --orange-down: var(--color-orange-700); + --yellow-down: var(--color-yellow-700); + --olive-down: var(--color-lime-700); + --green-down: var(--color-green-700); + --teal-down: var(--color-teal-700); + --blue-down: var(--color-blue-700); + --violet-down: var(--color-violet-700); + --purple-down: var(--color-purple-700); + --pink-down: var(--color-pink-700); + --brown-down: var(--color-yellow-950); + --light-red-down: var(--color-red-600); + --light-orange-down: var(--color-orange-600); + --light-yellow-down: var(--color-yellow-600); + --light-olive-down: var(--color-lime-600); + --light-green-down: var(--color-green-600); + --light-teal-down: var(--color-teal-600); + --light-blue-down: var(--color-blue-600); + --light-violet-down: var(--color-violet-600); + --light-purple-down: var(--color-purple-600); + --light-pink-down: var(--color-pink-600); + --light-brown-down: var(--color-yellow-900); + --light-grey-down: var(--color-neutral-500); + --light-black-down: var(--color-neutral-900); + /*--- Emotive ---*/ + --positive-color-down: var(--color-green-700); + --negative-color-down: var(--color-red-700); + /*--- Dark Tones ---*/ + --full-black-down: var(--color-neutral-800); + --black-down: var(--color-neutral-600); + --grey-down: var(--color-neutral-200); + /*--- Light Tones ---*/ + --white-down: var(--color-gray-200); + --off-white-down: var(--color-gray-300); + --dark-white-down: var(--color-gray-400); + + /*------------------- + Active + --------------------*/ + /*--- Colors ---*/ + --primary-color-active: var(--color-blue-700); + --secondary-color-active: var(--color-zinc-700); + --red-active: var(--color-red-700); + --orange-active: var(--color-orange-700); + --yellow-active: var(--color-yellow-700); + --olive-active: var(--color-lime-700); + --green-active: var(--color-green-700); + --teal-active: var(--color-teal-700); + --blue-active: var(--color-blue-700); + --violet-active: var(--color-violet-700); + --purple-active: var(--color-purple-700); + --pink-active: var(--color-pink-700); + --brown-active: var(--color-yellow-950); + --light-red-active: var(--color-red-600); + --light-orange-active: var(--color-orange-600); + --light-yellow-active: var(--color-yellow-600); + --light-olive-active: var(--color-lime-600); + --light-green-active: var(--color-green-600); + --light-teal-active: var(--color-teal-600); + --light-blue-active: var(--color-blue-600); + --light-violet-active: var(--color-violet-600); + --light-purple-active: var(--color-purple-600); + --light-pink-active: var(--color-pink-600); + --light-brown-active: var(--color-yellow-900); + --light-grey-active: var(--color-neutral-500); + --light-black-active: var(--color-neutral-900); + /*--- Emotive ---*/ + --positive-color-active: var(--color-green-700); + --negative-color-active: var(--color-red-700); + /*--- Dark Tones ---*/ + --full-black-active: var(--color-neutral-800); + --black-active: var(--color-neutral-600); + --grey-active: var(--color-neutral-200); + /*--- Light Tones ---*/ + --white-active: var(--color-gray-200); + --off-white-active: var(--color-gray-300); + --dark-white-active: var(--color-gray-400); + /*------------------- + Button + --------------------*/ + --button-background: var(--color-gray-200) none; + --button-text-color: hsl(var(--hsl-black) / 60%); + --button-margin: 0em 0.25em 0em 0em; + --button-padding: var(--input-vertical-padding) var(--input-horizontal-padding); + --button-text-shadow: none; + --button-box-shadow: 0px 0px 0px 1px transparent inset; + --button-font-weight: 600; + --button-line-height: 1em; + /* Hovered */ + --button-hover-background-color: var(--color-gray-300); + --button-hover-background-image: none; + --button-hover-box-shadow: var(--button-box-shadow); + --button-hover-color: var(--hovered-text-color); + --button-hover-icon-opacity: 0.85; + /* Focused */ + --button-focus-background-color: var(--button-hover-background-color); + --button-focus-background-image: ''; + --button-focus-boxshadow: ''; + --button-focus-color: var(--hovered-text-color); + --button-icon-focus-opacity: 0.85; + /* Disabled */ + --button-disabled-background-image: none; + --button-disabled-box-shadow: none; + /* Pressed Down */ + --button-down-background-color: var(--color-gray-400); + --button-down-background-image: ''; + --button-down-pressed-shadow: none; + --button-down-box-shadow: var(--button-box-shadow), none; + --button-down-color: var(--pressed-text-color); + /* Active */ + --button-active-background-color: var(--color-gray-400); + --button-active-background-image: none; + --button-active-color: var(--selected-text-color); + --button-active-box-shadow: var(--button-box-shadow); + /* Active + Hovered */ + --button-active-hover-background-color: var(--button-active-background-color); + --button-active-hover-background-image: none; + --button-active-hover-color: var(--button-active-color); + --button-active-hover-box-shadow: var(--button-active-box-shadow); + /* Loading */ + --button-loading-opacity: 1; + --button-loading-pointer-events: auto; + --button-loading-transition: all 0s linear, opacity var(--default-duration) var(--default-easing); + /* Icon Only */ + --button-icon-only-opacity: 0.9; + /* Basic style */ + --basic-button-background: transparent none; + --basic-button-text-color: var(--text-color); + --basic-button-font-weight: normal; + --basic-button-border-radius: var(--default-border-radius); + --basic-button-box-shadow: 0px 0px 0px 1px var(--border-color) inset; + --basic-button-hover-background: var(--color-white); + --basic-button-hover-text-color: var(--hovered-text-color); + --basic-button-hover-box-shadow: 0px 0px 0px 1px var(--selected-border-color) inset, 0px 0px 0px 0px var(--border-color) inset; + --basic-button-focus-background: var(--basic-button-hover-background); + --basic-button-focus-text-color: var(--basic-button-hover-text-color); + --basic-button-focus-box-shadow: var(--basic-button-hover-box-shadow); + --basic-button-down-background: var(--color-gray-50); + --basic-button-down-text-color: var(--pressed-text-color); + --basic-button-down-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, + 0px 1px 4px 0px var(--border-color) inset; + --basic-button-active-background: var(--transparent-black); + --basic-button-active-box-shadow: none; + --basic-button-active-text-color: var(--selected-text-color); + /*--- Primary ----*/ + /* Standard */ + --primary-button-background-color: var(--primary-color); + --primary-button-text-color: var(--inverted-text-color); + --primary-button-text-shadow: var(--inverted-text-shadow, none); + --primary-button-background-image: none; + --primary-button-box-shadow: var(--colored-box-shadow, var(--subtle-shadow)); + --primary-button-hover-background-color: var(--primary-color-hover); + --primary-button-focus-background-color: var(--primary-color-focus); + --primary-button-down-background-color: var(--primary-color-down); + --primary-button-active-background-color: var(--primary-color-active); + /* Basic */ + --basic-primary-button-box-shadow: 0px 0px 0px 1px var(--primary-color) inset; + --basic-primary-button-hover-box-shadow: 0px 0px 0px 1px var(--primary-color-hover) inset; + --basic-primary-button-focus-box-shadow: 0px 0px 0px 1px var(--primary-color-focus) inset; + --basic-primary-button-active-box-shadow: 0px 0px 0px 1px var(--primary-color-active) inset; + --basic-primary-button-down-box-shadow: 0px 0px 0px 1px var(--primary-color-down) inset; + /*--- Secondary ----*/ + /* Standard */ + --secondary-button-background-color: var(--secondary-color); + --secondary-button-text-color: var(--inverted-text-color); + --secondary-button-text-shadow: none; + --secondary-button-background-image: none; + --secondary-button-box-shadow: var(--subtle-shadow); + --secondary-button-hover-background-color: var(--secondary-color-hover); + --secondary-button-focus-background-color: var(--secondary-color-focus); + --secondary-button-down-background-color: var(--secondary-color-down); + --secondary-button-active-background-color: var(--secondary-color-active); + /* Basic */ + --basic-secondary-button-box-shadow: 0px 0px 0px 1px var(--secondary-color) inset; + --basic-secondary-button-hover-box-shadow: 0px 0px 0px 1px var(--secondary-color-hover) inset; + --basic-secondary-button-focus-box-shadow: 0px 0px 0px 1px var(--secondary-color-focus) inset; + --basic-secondary-button-down-box-shadow: 0px 0px 0px 1px var(--secondary-color-down) inset; + --basic-secondary-button-active-box-shadow: 0px 0px 0px 1px var(--secondary-color-active) inset; + /*--- Positive ---*/ + /* Standard */ + --positive-button-background-color: var(--positive-color); + --positive-button-text-color: var(--inverted-text-color); + --positive-button-text-shadow: none; + --positive-button-background-image: none; + --positive-button-box-shadow: var(--subtle-shadow); + --positive-button-hover-background-color: var(--positive-color-hover); + --positive-button-focus-background-color: var(--positive-color-focus); + --positive-button-down-background-color: var(--positive-color-down); + --positive-button-active-background-color: var(--positive-color-active); + /* Basic */ + --basic-positive-button-box-shadow: 0px 0px 0px 1px var(--positive-color) inset; + --basic-positive-button-hover-box-shadow: 0px 0px 0px 1px var(--positive-color-hover) inset; + --basic-positive-button-focus-box-shadow: 0px 0px 0px 1px var(--positive-color-focus) inset; + --basic-positive-button-down-box-shadow: 0px 0px 0px 1px var(--positive-color-down) inset; + --basic-positive-button-active-box-shadow: 0px 0px 0px 1px var(--positive-color-active) inset; + /*--- Negative ---*/ + /* Standard */ + --negative-button-background-color: var(--negative-color); + --negative-button-text-color: var(--inverted-text-color); + --negative-button-text-shadow: none; + --negative-button-background-image: none; + --negative-button-box-shadow: var(--subtle-shadow); + --negative-button-hover-background-color: var(--negative-color-hover); + --negative-button-focus-background-color: var(--negative-color-focus); + --negative-button-down-background-color: var(--negative-color-down); + --negative-button-active-background-color: var(--negative-color-active); + /* Basic */ + --basic-negative-button-box-shadow: 0px 0px 0px 1px var(--negative-color) inset; + --basic-negative-button-hover-box-shadow: 0px 0px 0px 1px var(--negative-color-hover) inset; + --basic-negative-button-focus-box-shadow: 0px 0px 0px 1px var(--negative-color-focus) inset; + --basic-negative-button-down-box-shadow: 0px 0px 0px 1px var(--negative-color-down) inset; + --basic-negative-button-active-box-shadow: 0px 0px 0px 1px var(--negative-color-active) inset; + /*------------------- + Divider + --------------------*/ + --divider-text-color: var(--dark-text-color); + --divider-border-shadow-width: 1px; + --divider-border-shadow-color: var(--border-color); + --divider-border-highlight-width: 1px; + --divider-border-highlight-color: var(--white-border-color); + + /*------------------- + Header + --------------------*/ + --header-text-color: var(--text-color); + --header-vertical-padding: 0em; + --header-horizontal-padding: 0em; + --header-text-transform: none; + --sub-header-margin: 0em; + --sub-header-font-size: var(--medium-size); + --sub-header-line-height: 1.2em; + --sub-header-text-color: var(--muted-text-color); + --h1-sub-header-font-size: var(--large-size); + --h2-sub-header-font-size: var(--large-size); + --h3-sub-header-font-size: var(--medium-size); + --h4-sub-header-font-size: var(--medium-size); + --h5-sub-header-font-size: var(--small-size); + --huge-header-font-size: var(--h1); + --large-header-font-size: var(--h2); + --medium-header-font-size: var(--h3); + --small-header-font-size: var(--h4); + --tiny-header-font-size: var(--h5); + --huge-sub-header-font-size: var(--h1-sub-header-font-size); + --large-sub-header-font-size: var(--h2-sub-header-font-size); + --sub-header-font-size: var(--h3-sub-header-font-size); + --small-sub-header-font-size: var(--h4-sub-header-font-size); + --tiny-sub-header-font-size: var(--h5-sub-header-font-size); + /*------------------- + Input + --------------------*/ + --input-font-family: var(--page-font); + --input-border-width: 1px; + --input-border: var(--input-border-width) solid var(--border-color); + --input-border-radius: var(--default-border-radius); + --input-box-shadow: none; + --input-down-border-color: rgba(0, 0, 0, 0.3); + --input-down-background: var(--color-gray-50); + --input-down-color: var(--text-color); + --input-down-box-shadow: none; + --input-focus-border-color: var(--focused-form-border-color); + --input-focus-background: var(--input-background); + --input-focus-color: var(--hovered-text-color); + --input-focus-box-shadow: none; + --input-error-background-color: var(--negative-background-color); + --input-error-border-color: var(--negative-border-color); + --input-error-color: var(--negative-text-color); + --input-error-box-shadow: none; + --input-placeholder-error-color: var(--color-red-300); + --input-placeholder-error-focus-color: var(--color-red-400); + /*------------------- + Label + --------------------*/ + --label-background-image: none; + --label-font-weight: var(--font-weights-medium); + --label-border: 0px solid transparent; + --label-border-radius: var(--absolute-border-radius); + --label-hover-background-color: #E0E0E0; + --label-hover-background-image: none; + --label-hover-text-color: var(--hovered-text-color); + --label-active-hover-background-color: #C8C8C8; + --label-active-hover-background-image: none; + --label-active-hover-text-color: var(--selected-text-color); + --label-basic-background: none var(--white); + --label-basic-border-width: 1px; + --label-basic-border-color: var(--border-color); + --label-basic-border: var(--label-basic-border-width) solid var(--label-basic-border-color); + --label-basic-text-color: var(--text-color); + --label-basic-box-shadow: none; + --label-basic-hover-background: var(--label-basic-background); + --label-basic-hover-color: var(--link-hover-color); + --label-basic-hover-border: var(--label-basic-border); + --label-basic-hover-box-shadow: var(--label-basic-box-shadow); + /*------------------- + List + --------------------*/ + --selection-list-item-border-radius: 0.5em; + --selection-list-hover-background: var(--subtle-transparent-black); + --selection-list-hover-color: var(--hovered-text-color); + --selection-list-down-background: var(--transparent-black); + --selection-list-down-color: var(--pressed-text-color); + --selection-list-active-background: var(--transparent-black); + --selection-list-active-color: var(--selected-text-color); + + /*------------------- + Loader + --------------------*/ + --loader-shape-border-color: var(--loader-line-color) transparent transparent; + --loader-text-color: var(--text-color); + + /*------------------- + Semgnet + --------------------*/ + --segment-background: var(--white); + --segment-border: 1px solid var(--border-color); + --segment-box-shadow: var(--subtle-shadow); + --segment-border-radius: var(--default-border-radius); + --grouped-segment-box-shadow: none; + --grouped-segment-border: none; + --grouped-segment-divider: 1px solid var(--border-color); + /* --grouped-segment-group-border: 1px solid var(--border-color); */ + --grouped-segment-group-border: none; + --grouped-segment-group-segment-box-shadow: 0 0 0 1px hsl(var(--hsl-neutral-900) / 0.1), + 0 1px 1px hsl(var(--hsl-neutral-900) / .1), + 0 1.5px 3px -2px hsl(var(--hsl-neutral-900) / .3), + 0 4px 6px hsl(var(--hsl-neutral-900) / .04), + 0 8px 12px -1px hsl(var(--hsl-neutral-900) / .03); + --grouped-segment-group-border-radius: var(--default-border-radius); + /*------------------- + Form + --------------------*/ + --form-input-font: var(--page-font); + --form-input-font-size: 1em; + --form-label-color: var(--text-color); + --form-label-font-size: var(--relative-small); + --form-label-font-weight: var(--font-weights-bold); + --input-border-radius: var(--absolute-border-radius); + --input-box-shadow: 0em 0em 0em 0em transparent inset; + --form-textarea-line-height: 1.2857; + --form-select-background: var(--white); + --form-select-border: var(--input-border); + --form-select-border-radius: var(--input-border-radius); + --form-select-box-shadow: var(--input-box-shadow); + --form-select-color: var(--input-color); + --form-prompt-background: var(--white); + --form-prompt-border-color: var(--negative-border-color); + --form-prompt-border: 1px solid var(--form-prompt-border-color); + --form-prompt-text-color: var(--negative-text-color); + --form-input-focus-color: var(--selected-text-color); + --form-input-focus-border-color: var(--focused-form-border-color); + --form-input-focus-border-radius: var(--input-border-radius); + --form-input-focus-background: var(--input-background); + --form-input-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; + --form-textarea-focus-color: var(--selected-text-color); + --form-textarea-focus-border-color: var(--focused-form-border-color); + --form-textarea-focus-border-radius: var(--input-border-radius); + --form-textarea-focus-background: var(--input-background); + --form-textarea-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; + --form-error-color: var(--negative-text-color); + --form-error-border-color: var(--negative-border-color); + --form-error-border-radius: var(--input-border-radius); + --form-error-background: var(--negative-background-color); + --form-error-box-shadow: none; + --form-error-focus-color: var(--negative-text-color); + --form-error-focus-border-color: var(--negative-border-color); + --form-error-focus-background: var(--negative-background-color); + --form-error-focus-box-shadow: none; + --form-loader-dimmer-color: rgba(255, 255, 255, 0.8); + --form-loader-dimmer-z-index: 100; + --form-inline-label-color: var(--text-color); + --form-inline-label-font-size: var(--relative-small); + --form-inline-label-font-weight: var(--font-weights-bold); + --form-inline-input-size: var(--relative-medium); + /*------------------- + Menu + --------------------*/ + --menu-background: var(--white); + --menu-font-weight: normal; + --menu-font-family: var(--page-font); + --menu-border: 1px solid var(--border-color); + --menu-shadow: var(--subtle-shadow); + --menu-border-radius: var(--default-border-radius); + --menu-item-background: none; + --menu-item-text-color: var(--text-color); + --menu-item-font-weight: normal; + --menu-divider-background: var(--internal-border-color); + --menu-hover-item-background: var(--subtle-transparent-black); + --menu-hover-item-text-color: var(--selected-text-color); + --menu-pressed-item-background: var(--subtle-transparent-black); + --menu-pressed-item-text-color: var(--selected-text-color); + --menu-active-item-background: var(--transparent-black); + --menu-active-item-text-color: var(--selected-text-color); + --menu-active-item-font-weight: normal; + --menu-active-item-box-shadow: none; + --menu-active-hover-item-background: var(--transparent-black); + --menu-active-hover-item-color: var(--selected-text-color); + --vertical-menu-background: var(--white); + --vertical-menu-box-shadow: var(--subtle-shadow); + --vertical-menu-item-background: none; + --vertical-divider-background: var(--internal-border-color); + --tabular-menu-background: none transparent; + --tabular-menu-border-width: 1px; + --tabular-menu-border-color: var(--solid-border-color); + --tabular-menu-text-color: var(--menu-item-text-color); + --tabular-menu-hovered-text-color: var(--hovered-text-color); + --tabular-menu-active-background: none var(--white); + --tabular-menu-active-color: var(--selected-text-color); + --tabular-menu-active-box-shadow: none; + --tabular-menu-border-radius: var(--default-border-radius); + --secondary-menu-background: none; + --secondary-menu-item-background: none; + --secondary-menu-item-border-radius: var(--default-border-radius); + --secondary-menu-header-border: none; + --secondary-menu-header-background: none transparent; + --secondary-menu-hover-item-background: var(--transparent-black); + --secondary-menu-hover-item-color: var(--selected-text-color); + --secondary-menu-active-item-background: var(--transparent-black); + --secondary-menu-active-item-color: var(--selected-text-color); + --secondary-menu-active-hover-item-background: var(--transparent-black); + --secondary-menu-active-hover-item-color: var(--selected-text-color); + --secondary-vertical-menu-item-border-radius: var(--default-border-radius); + /*------------------- + Message + --------------------*/ + --message-background: hsl(var(--hsl-zinc-50) / 20%); + --message-shadow-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0); + --message-box-shadow: 0px 0px 0px 1px var(--strong-border-color) inset, + var(--message-shadow-shadow); + --message-header-font-weight: var(--font-weights-bold); + --message-header-font-size: var(--relative-large); + --message-text-opacity: 0.85; + --message-list-opacity: 0.85; + --positive-box-shadow: 0px 0px 0px 1px var(--positive-border-color) inset, + var(--message-shadow-shadow); + --negative-box-shadow: 0px 0px 0px 1px var(--negative-border-color) inset, + var(--message-shadow-shadow); + --info-box-shadow: 0px 0px 0px 1px var(--info-border-color) inset, + var(--message-shadow-shadow); + --warning-box-shadow: 0px 0px 0px 1px var(--warning-border-color) inset, + var(--message-shadow-shadow); + --error-box-shadow: 0px 0px 0px 1px var(--error-border-color) inset, + var(--message-shadow-shadow); + --success-box-shadow: 0px 0px 0px 1px var(--success-border-color) inset, + var(--message-shadow-shadow); + /*------------------- + Table + --------------------*/ + --table-background: var(--white); + --table-border-width: 1px; + --table-border: var(--table-border-width) solid var(--border-color); + --table-box-shadow: noone; + --table-header-background: var(--off-white); + --table-header-color: var(--text-color); + --table-header-font-style: none; + --table-header-font-weight: var(--font-weights-bold); + --table-header-border: 1px solid var(--internal-border-color); + --table-header-divider: none; + /*------------------- + Checkbox + --------------------*/ + --checkbox-color: var(--text-color); + --checkbox-background: var(--white); + --checkbox-border-radius: var(--3px); + --checkbox-border: 1px solid var(--solid-border-color); + --checkbpx-label-color: var(--text-color); + --checkbox-hover-background: var(--checkbox-background); + --checkbox-hover-border-color: var(--selected-border-color); + --checkbox-label-hover-color: var(--hovered-text-color); + --checkbox-pressed-background: var(--off-white); + --checkbox-pressed-border-color: var(--selected-border-color); + --checkbox-pressed-color: var(--selected-text-color); + --checkbox-pressed-label-color: var(--selected-text-color); + --checkbox-focus-background: var(--white); + --checkbox-focus-border-color: var(--focused-form-muted-border-color); + --checkbox-focus-check-color: var(--selected-text-color); + --checkbox-focus-label-color: var(--selected-text-color); + --checkbox-active-background: var(--white); + --checkbox-active-border-color: var(--selected-border-color); + --checkbox-active-check-opacity: 1; + --checkbox-active-check-color: var(--selected-text-color); + --checkbox-intermediate-background: var(--checkbox-active-background); + --checkbox-intermediate-border-color: var(--checkbox-active-border-color); + --checkbox-intermediate-check-opacity: 1; + --checkbox-intermediate-check-color: var(--checkbox-active-check-color); + --checkbox-active-focus-background: var(--white); + --checkbox-active-focus-border-color: var(--checkbox-focus-border-color); + --checkbox-active-focus-check-color: var(--selected-text-color); + --checkbox-disabled-opacity: 0.5; + --checkbox-disabled-label-color: #000000; + --radio-bullet-color: var(--text-color); + --radio-focus-background: var(--checkbox-focus-background); + --radio-focus-bullet-color: var(--checkbox-focus-check-color); + --radio-active-background: var(--checkbox-active-background); + --radio-active-bullet-color: var(--checkbox-active-check-color); + --radio-active-focus-background: var(--checkbox-active-focus-background); + --radio-active-focus-bullet-color: var(--checkbox-active-focus-check-color); + --toggle-off-label-color: var(--checkbox-color); + --toggle-lane-background: var(--transparent-black); + --toggle-lane-box-shadow: none; + --toggle-handle-radius: var(--circular-radius); + --toggle-handle-background: var(--white) var(--subtle-gradient); + --toggle-handle-box-shadow: var(--subtle-shadow), + 0px 0px 0px 1px var(--border-color) inset; + --toggle-focus-color: var(--very-strong-transparent-black); + --toggle-hover-color: var(--toggle-focus-color); + --toggle-on-label-color: var(--selected-text-color); + --toggle-on-lane-color: var(--primary-color); + --toggle-on-handle-box-shadow: var(--toggle-handle-box-shadow); + --toggle-on-focus-label-color: var(--toggle-on-label-color); + --toggle-on-focus-lane-color: var(--primary-color-focus); + /*------------------- + Dropdown + --------------------*/ + --dropdown-menu-background: var(--white); + --dropdown-menu-box-shadow: var(--raised-shadow); + --dropdown-menu-border-width: 1px; + --dropdown-menu-border-color: var(--border-color); + --dropdown-menu-border: var(--dropdown-menu-border-width) solid var(--dropdown-menu-border-color); + --dropdown-menu-border-radius: var(--default-border-radius); + --dropdown-menu-item-border: none; + --dropdown-menu-item-divider: none; + --dropdown-menu-item-color: var(--text-color); + --dropdown-menu-item-font-weight: var(--font-weights-normal); + --dropdown-menu-header-color: var(--dark-text-color); + --dropdown-menu-divider-border: 1px solid var(--internal-border-color); + --dropdown-menu-item-description-color: var(--light-text-color); + --dropdown-menu-message-color: var(--unselected-text-color); + --inline-dropdown-text-font-weight: var(--font-weights-bold); + --dropdown-active-item-background: transparent; + --dropdown-active-item-font-weight: var(--font-weights-bold); + --dropdown-active-item-color: var(--selected-text-color); + --dropdown-hovered-item-background: var(--transparent-black); + --dropdown-hovered-item-color: var(--selected-text-color); + --dropdown-default-text-color: var(--input-placeholder-color); + --dropdown-default-text-focus-color: var(--input-placeholder-focus-color); + --dropdown-selected-background: var(--subtle-transparent-black); + --dropdown-selected-color: var(--selected-text-color); + --dropdown-error-item-hover-background: #FFF2F2; + --dropdown-error-item-active-background: #FDCFCF; + /*------------------- + Modal + --------------------*/ + --modal-border: none; + --modal-border-radius: var(--default-border-radius); + --modal-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.067), + 0 6.7px 5.3px rgba(0, 0, 0, 0.097), + 0 12.5px 10px rgba(0, 0, 0, 0.12), + 0 22.3px 17.9px rgba(0, 0, 0, 0.143), + 0 41.8px 33.4px rgba(0, 0, 0, 0.173), + 0 100px 80px rgba(0, 0, 0, 0.24); + --modal-box-close-opacity: 0.8; + --modal-box-close-size: 1.25em; + --modal-box-close-color: var(--white); + --modal-box-header-background: var(--white); + --modal-box-header-color: var(--dark-text-color); + --modal-box-header-border: 1px solid var(--solid-color); + --modal-box-header-font-size: 1rem; + --modal-box-header-font-weight: var(--font-weights-bold); + --modal-box-content-font-size: 1em; + --modal-box-content-background: var(--white); + --modal-box-actions-background: var(--off-white); + --modal-box-actions-border: 1px solid var(--border-color); + /*------------------- + Side Bar + --------------------*/ + --sidebar-color-scheme: dark; + --sidebar-background: var(--color-neutral-900); + --sidebar-menu-item-inactive-background: hsl(var(--hsl-slate-600) / 70%); + --sidebar-menu-item-active-background: hsl(var(--hsl-blue-300) / 50%); + --sidebar-menu-section-color: var(--inverted-unselected-text-color); + --sidebar-menu-section-separator-color: rgba(255, 255, 255, 0.1); + --sidebar-menu-item-color: var(--inverted-light-text-color); + --sidebar-menu-action-color: var(--inverted-disabled-text-color); + --sidebar-menu-action-hover-color: var(--inverted-light-text-color); + --sidebar-sync-status-view-background: var(--color-gray-950); + --sidebar-sync-status-view-text-color: var(--inverted-muted-text-color); + --sidebar-sync-status-view-detail-color: var(--inverted-unselected-text-color); + --sidebar-scrollbar-width: 6px; + --sidebar-scrollbar-track-background: rgba(255, 255, 255, 0.02); + --sidebar-scrollbar-thumb-background: rgba(255, 255, 255, 0.2); + /*------------------- + Scroll Bar + --------------------*/ + --scrollbar-width: 6px; + --scrollbar-track-background: rgba(0, 0, 0, 0.05); + --scrollbar-thumb-background: rgba(0, 0, 0, 0.2); + /*------------------- + Note List Bar + --------------------*/ + --note-list-bar-background: var(--color-neutral-800); + --note-list-bar-pinned-section-header-background: var(--color-neutral-200); + --note-list-bar-pinned-section-header-border-bottom: none; + --note-list-bar-pinned-section-footer-border-bottom: 4px solid #ccc; + --note-list-view-item-color: var(--muted-text-color); + --note-list-view-item-separator-border: 1px solid var(--color-neutral-900); + --note-list-view-item-date-color: var(--primary-color); + --note-list-view-item-tag-color: var(--blue-focus); + --note-list-view-item-selected-background: hsl(var(--hsl-sky-800) / 20%); + --note-list-view-item-active-background: var(--primary-color); + --note-search-bar-background: var(--note-list-bar-background); + --note-search-bar-border-bottom: rgba(255, 255, 255, 0.8); + --note-search-bar-input-border: 1px solid transparent; + --note-search-bar-input-background: var(--input-background); + --mark-border-width: 1px; + --mark-border-color: hsl(var(--hsl-yellow-400) / 40%); + --mark-background-color: hsl(var(--hsl-yellow-400) / 20%); + --mark-color: light-dark(var(--color-gray-950), var(--color-gray-50)); + --mark-font-weight: var(--font-weights-bold); + /*------------------- + Editor + --------------------*/ + --editor-background: var(--color-neutral-900); + /*------------------- + Header Note Menu + --------------------*/ + --header-note-menu-background: transparent; + --header-note-menu-color: var(--light-text-color); + --header-note-menu-action-item-active-background: var(--info-background-color); + --header-note-menu-action-item-active-border: 1px solid var(--info-border-color); + --header-note-menu-action-item-separator-border: 1px solid var(--white-down); + --header-note-menu-encrypt-button-color: var(--yellow-text-color); + --header-note-menu-encrypt-button-background: var(--yellow-background); + /*------------------- + Preferences + --------------------*/ + --preferences-sidebar-background: #f5f5f4; + --preferences-sidebar-item-active-background: rgba(79, 142, 255, 0.2); + --preferences-view-background: #ffffff; + /*------------------- + Task Icons + --------------------*/ + --task-icon-active: hsl(var(--hsl-slate-400)); + --task-icon-onhold: hsl(var(--hsl-amber-500)); + --task-icon-completed: hsl(var(--hsl-emerald-500)); + --task-icon-dropped: hsl(var(--hsl-rose-400)); + /*------------------- + Task Progress View + --------------------*/ + --task-progress-view-border-color: hsl(var(--hsl-gray-950) / 30%); + --task-progress-view-background-color: hsl(var(--hsl-gray-950) / 30%); + --task-progress-view-foreground-color: hsl(var(--hsl-white) / 60%); + --task-progress-view-completed-color: hsl(var(--hsl-green-500)); } -} - -.ui.basic.loading.button:not(.inverted):before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.basic.loading.button:not(.inverted):after { - border-top-color: #767676; -} - -/*------------------- - Disabled ---------------------*/ - -.ui.buttons .disabled.button, -.ui.disabled.button, -.ui.button:disabled, -.ui.disabled.button:hover, -.ui.disabled.active.button { - cursor: default; - opacity: 0.45 !important; - background-image: none !important; - box-shadow: none !important; - pointer-events: none !important; -} - -/* Basic Group With Disabled */ - -.ui.basic.buttons .ui.disabled.button { - border-color: rgba(24, 26, 28, 0.5); -} - -/******************************* - Types -*******************************/ - -/*------------------- - Animated ---------------------*/ - -.ui.animated.button { - position: relative; - overflow: hidden; - padding-right: 0em !important; - vertical-align: middle; - z-index: 1; -} - -.ui.animated.button .content { - will-change: transform, opacity; -} - -.ui.animated.button .visible.content { - position: relative; - margin-right: 1.5em; -} - -.ui.animated.button .hidden.content { - position: absolute; - width: 100%; -} - -/* Horizontal */ - -.ui.animated.button .visible.content, -.ui.animated.button .hidden.content { - transition: right 0.3s ease 0s; -} - -.ui.animated.button .visible.content { - left: auto; - right: 0%; -} - -.ui.animated.button .hidden.content { - top: 50%; - left: auto; - right: -100%; - margin-top: -0.5em; -} - -.ui.animated.button:focus .visible.content, -.ui.animated.button:hover .visible.content { - left: auto; - right: 200%; -} - -.ui.animated.button:focus .hidden.content, -.ui.animated.button:hover .hidden.content { - left: auto; - right: 0%; -} - -/* Vertical */ - -.ui.vertical.animated.button .visible.content, -.ui.vertical.animated.button .hidden.content { - transition: top 0.3s ease, transform 0.3s ease; -} - -.ui.vertical.animated.button .visible.content { - transform: translateY(0%); - right: auto; -} - -.ui.vertical.animated.button .hidden.content { - top: -50%; - left: 0%; - right: auto; -} - -.ui.vertical.animated.button:focus .visible.content, -.ui.vertical.animated.button:hover .visible.content { - transform: translateY(200%); - right: auto; -} - -.ui.vertical.animated.button:focus .hidden.content, -.ui.vertical.animated.button:hover .hidden.content { - top: 50%; - right: auto; -} - -/* Fade */ - -.ui.fade.animated.button .visible.content, -.ui.fade.animated.button .hidden.content { - transition: opacity 0.3s ease, transform 0.3s ease; -} - -.ui.fade.animated.button .visible.content { - left: auto; - right: auto; - opacity: 1; - transform: scale(1); -} - -.ui.fade.animated.button .hidden.content { - opacity: 0; - left: 0%; - right: auto; - transform: scale(1.5); -} - -.ui.fade.animated.button:focus .visible.content, -.ui.fade.animated.button:hover .visible.content { - left: auto; - right: auto; - opacity: 0; - transform: scale(0.75); -} - -.ui.fade.animated.button:focus .hidden.content, -.ui.fade.animated.button:hover .hidden.content { - left: 0%; - right: auto; - opacity: 1; - transform: scale(1); -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.button { - box-shadow: 0px 0px 0px 2px #2E3235 inset !important; - background: transparent none; - color: #2E3235; - text-shadow: none !important; -} - -/* Group */ - -.ui.inverted.buttons .button { - margin: 0px 0px 0px -2px; -} - -.ui.inverted.buttons .button:first-child { - margin-left: 0em; -} - -.ui.inverted.vertical.buttons .button { - margin: 0px 0px -2px 0px; -} - -.ui.inverted.vertical.buttons .button:first-child { - margin-top: 0em; -} - -/* States */ - -/* Hover */ - -.ui.inverted.button:hover { - background: #2E3235; - box-shadow: 0px 0px 0px 2px #2E3235 inset !important; - color: rgba(255, 255, 255, 0.8); -} - -/* Active / Focus */ - -.ui.inverted.button:focus, -.ui.inverted.button.active { - background: #2E3235; - box-shadow: 0px 0px 0px 2px #2E3235 inset !important; - color: rgba(255, 255, 255, 0.8); -} - -/* Active Focus */ - -.ui.inverted.button.active:focus { - background: #666E74; - box-shadow: 0px 0px 0px 2px #666E74 inset !important; - color: rgba(255, 255, 255, 0.8); -} - -/*------------------- - Labeled Button ---------------------*/ - -.ui.labeled.button:not(.icon) { - display: inline-flex; - flex-direction: row; - background: none !important; - padding: 0px !important; - border: none !important; - box-shadow: none !important; -} - -.ui.labeled.button > .button { - margin: 0px; -} - -.ui.labeled.button > .label { - display: flex; - align-items: center; - margin: 0px 0px 0px -1px !important; - padding: ''; - font-size: 1em; - border-color: rgba(24, 26, 28, 0.45); -} - -/* Tag */ - -.ui.labeled.button > .tag.label:before { - width: 1.85em; - height: 1.85em; -} - -/* Right */ - -.ui.labeled.button:not([class*="left labeled"]) > .button { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.button:not([class*="left labeled"]) > .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -/* Left Side */ - -.ui[class*="left labeled"].button > .button { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="left labeled"].button > .label { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -/*------------------- - Social ---------------------*/ - -/* Facebook */ - -.ui.facebook.button { - background-color: #3B5998; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.facebook.button:hover { - background-color: #304d8a; - color: #2E3235; - text-shadow: none; -} - -.ui.facebook.button:active { - background-color: #2d4373; - color: #2E3235; - text-shadow: none; -} - -/* Twitter */ - -.ui.twitter.button { - background-color: #55ACEE; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.twitter.button:hover { - background-color: #35a2f4; - color: #2E3235; - text-shadow: none; -} - -.ui.twitter.button:active { - background-color: #2795e9; - color: #2E3235; - text-shadow: none; -} - -/* Google Plus */ - -.ui.google.plus.button { - background-color: #DD4B39; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.google.plus.button:hover { - background-color: #e0321c; - color: #2E3235; - text-shadow: none; -} - -.ui.google.plus.button:active { - background-color: #c23321; - color: #2E3235; - text-shadow: none; -} - -/* Linked In */ - -.ui.linkedin.button { - background-color: #1F88BE; - color: #2E3235; - text-shadow: none; -} - -.ui.linkedin.button:hover { - background-color: #147baf; - color: #2E3235; - text-shadow: none; -} - -.ui.linkedin.button:active { - background-color: #186992; - color: #2E3235; - text-shadow: none; -} - -/* YouTube */ - -.ui.youtube.button { - background-color: #FF0000; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.youtube.button:hover { - background-color: #e60000; - color: #2E3235; - text-shadow: none; -} - -.ui.youtube.button:active { - background-color: #cc0000; - color: #2E3235; - text-shadow: none; -} - -/* Instagram */ - -.ui.instagram.button { - background-color: #49769C; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.instagram.button:hover { - background-color: #3d698e; - color: #2E3235; - text-shadow: none; -} - -.ui.instagram.button:active { - background-color: #395c79; - color: #2E3235; - text-shadow: none; -} - -/* Pinterest */ - -.ui.pinterest.button { - background-color: #BD081C; - color: #2E3235; - text-shadow: none; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.pinterest.button:hover { - background-color: #ac0013; - color: #2E3235; - text-shadow: none; -} - -.ui.pinterest.button:active { - background-color: #8c0615; - color: #2E3235; - text-shadow: none; -} - -/* VK */ - -.ui.vk.button { - background-color: #4D7198; - color: #2E3235; - background-image: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.vk.button:hover { - background-color: #41648a; - color: #2E3235; -} - -.ui.vk.button:active { - background-color: #3c5876; - color: #2E3235; -} - -/*-------------- - Icon ----------------*/ - -.ui.button > .icon:not(.button) { - height: 0.85714286em; - opacity: 0.8; - margin: 0em 0.42857143em 0em -0.21428571em; - transition: opacity 0.1s ease; - vertical-align: ''; - color: ''; -} - -.ui.button:not(.icon) > .icon:not(.button):not(.dropdown) { - margin: 0em 0.42857143em 0em -0.21428571em; -} - -.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) { - margin: 0em -0.21428571em 0em 0.42857143em; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Floated ---------------------*/ - -.ui[class*="left floated"].buttons, -.ui[class*="left floated"].button { - float: left; - margin-left: 0em; - margin-right: 0.25em; -} - -.ui[class*="right floated"].buttons, -.ui[class*="right floated"].button { - float: right; - margin-right: 0em; - margin-left: 0.25em; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.buttons .button, -.ui.compact.button { - padding: 0.58928571em 1.125em 0.58928571em; -} - -.ui.compact.icon.buttons .button, -.ui.compact.icon.button { - padding: 0.58928571em 0.58928571em 0.58928571em; -} - -.ui.compact.labeled.icon.buttons .button, -.ui.compact.labeled.icon.button { - padding: 0.58928571em 3.69642857em 0.58928571em; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.buttons .button, -.ui.mini.buttons .or, -.ui.mini.button { - font-size: 0.78571429rem; -} - -.ui.tiny.buttons .button, -.ui.tiny.buttons .or, -.ui.tiny.button { - font-size: 0.85714286rem; -} - -.ui.small.buttons .button, -.ui.small.buttons .or, -.ui.small.button { - font-size: 0.92857143rem; -} - -.ui.buttons .button, -.ui.buttons .or, -.ui.button { - font-size: 1rem; -} - -.ui.large.buttons .button, -.ui.large.buttons .or, -.ui.large.button { - font-size: 1.14285714rem; -} - -.ui.big.buttons .button, -.ui.big.buttons .or, -.ui.big.button { - font-size: 1.28571429rem; -} - -.ui.huge.buttons .button, -.ui.huge.buttons .or, -.ui.huge.button { - font-size: 1.42857143rem; -} - -.ui.massive.buttons .button, -.ui.massive.buttons .or, -.ui.massive.button { - font-size: 1.71428571rem; -} - -/*-------------- - Icon Only ----------------*/ - -.ui.icon.buttons .button, -.ui.icon.button { - padding: 0.78571429em 0.78571429em 0.78571429em; -} - -.ui.icon.buttons .button > .icon, -.ui.icon.button > .icon { - opacity: 0.9; - margin: 0em !important; - vertical-align: top; -} - -/*------------------- - Basic ---------------------*/ - -.ui.basic.buttons .button, -.ui.basic.button { - background: transparent none !important; - color: #DDDDDD !important; - font-weight: normal; - border-radius: 0.35714286rem; - text-transform: none; - text-shadow: none !important; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; -} - -.ui.basic.buttons { - box-shadow: none; - border: 1px solid rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; -} - -.ui.basic.buttons .button { - border-radius: 0em; -} - -.ui.basic.buttons .button:hover, -.ui.basic.button:hover { - background: #2E3235 !important; - color: rgba(255, 255, 255, 0.8) !important; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.35) inset, 0px 0px 0px 0px rgba(24, 26, 28, 0.45) inset; -} - -.ui.basic.buttons .button:focus, -.ui.basic.button:focus { - background: #2E3235 !important; - color: rgba(255, 255, 255, 0.8) !important; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.35) inset, 0px 0px 0px 0px rgba(24, 26, 28, 0.45) inset; -} - -.ui.basic.buttons .button:active, -.ui.basic.button:active { - background: #34393D !important; - color: rgba(255, 255, 255, 0.9) !important; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(24, 26, 28, 0.45) inset; -} - -.ui.basic.buttons .active.button, -.ui.basic.active.button { - background: rgba(255, 255, 255, 0.05) !important; - box-shadow: '' !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.basic.buttons .active.button:hover, -.ui.basic.active.button:hover { - background-color: rgba(255, 255, 255, 0.05); -} - -/* Vertical */ - -.ui.basic.buttons .button:hover { - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.35) inset, 0px 0px 0px 0px rgba(24, 26, 28, 0.45) inset inset; -} - -.ui.basic.buttons .button:active { - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(24, 26, 28, 0.45) inset inset; -} - -.ui.basic.buttons .active.button { - box-shadow: '' !important; -} - -/* Standard Basic Inverted */ - -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - background-color: transparent !important; - color: #34393D !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; -} - -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: #2E3235 !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: #2E3235 !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - background-color: rgba(0, 0, 0, 0.08) !important; - color: #2E3235 !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; -} - -.ui.basic.inverted.buttons .active.button, -.ui.basic.inverted.active.button { - background-color: rgba(0, 0, 0, 0.08); - color: #2E3235; - text-shadow: none; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; -} - -.ui.basic.inverted.buttons .active.button:hover, -.ui.basic.inverted.active.button:hover { - background-color: rgba(0, 0, 0, 0.15); - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -/* Basic Group */ - -.ui.basic.buttons .button { - border-left: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: none; -} - -.ui.basic.vertical.buttons .button { - border-left: none; -} - -.ui.basic.vertical.buttons .button { - border-left-width: 0px; - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.basic.vertical.buttons .button:first-child { - border-top-width: 0px; -} - -/*-------------- - Labeled Icon ----------------*/ - -.ui.labeled.icon.buttons .button, -.ui.labeled.icon.button { - position: relative; - padding-left: 4.07142857em !important; - padding-right: 1.5em !important; -} - -/* Left Labeled */ - -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - position: absolute; - height: 100%; - line-height: 1; - border-radius: 0px; - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; - text-align: center; - margin: 0em; - width: 2.57142857em; - background-color: rgba(0, 0, 0, 0.05); - color: ''; - box-shadow: -1px 0px 0px 0px transparent inset; -} - -/* Left Labeled */ - -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - top: 0em; - left: 0em; -} - -/* Right Labeled */ - -.ui[class*="right labeled"].icon.button { - padding-right: 4.07142857em !important; - padding-left: 1.5em !important; -} - -.ui[class*="right labeled"].icon.button > .icon { - left: auto; - right: 0em; - border-radius: 0px; - border-top-right-radius: inherit; - border-bottom-right-radius: inherit; - box-shadow: 1px 0px 0px 0px transparent inset; -} - -.ui.labeled.icon.buttons > .button > .icon:before, -.ui.labeled.icon.button > .icon:before, -.ui.labeled.icon.buttons > .button > .icon:after, -.ui.labeled.icon.button > .icon:after { - display: block; - position: absolute; - width: 100%; - top: 50%; - text-align: center; - transform: translateY(-50%); -} - -.ui.labeled.icon.buttons .button > .icon { - border-radius: 0em; -} - -.ui.labeled.icon.buttons .button:first-child > .icon { - border-top-left-radius: 0.35714286rem; - border-bottom-left-radius: 0.35714286rem; -} - -.ui.labeled.icon.buttons .button:last-child > .icon { - border-top-right-radius: 0.35714286rem; - border-bottom-right-radius: 0.35714286rem; -} - -.ui.vertical.labeled.icon.buttons .button:first-child > .icon { - border-radius: 0em; - border-top-left-radius: 0.35714286rem; -} - -.ui.vertical.labeled.icon.buttons .button:last-child > .icon { - border-radius: 0em; - border-bottom-left-radius: 0.35714286rem; -} - -/* Fluid Labeled */ - -.ui.fluid[class*="left labeled"].icon.button, -.ui.fluid[class*="right labeled"].icon.button { - padding-left: 1.5em !important; - padding-right: 1.5em !important; -} - -/*-------------- - Toggle ----------------*/ - -/* Toggle (Modifies active state to give affordances) */ - -.ui.toggle.buttons .active.button, -.ui.buttons .button.toggle.active, -.ui.button.toggle.active { - background-color: #21BA45 !important; - box-shadow: none !important; - text-shadow: none; - color: #2E3235 !important; -} - -.ui.button.toggle.active:hover { - background-color: #16ab39 !important; - text-shadow: none; - color: #2E3235 !important; -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.button { - border-radius: 10em; -} - -.ui.circular.button > .icon { - width: 1em; - vertical-align: baseline; -} - -/*------------------- - Or Buttons ---------------------*/ - -.ui.buttons .or { - position: relative; - width: 0.3em; - height: 2.57142857em; - z-index: 3; -} - -.ui.buttons .or:before { - position: absolute; - text-align: center; - border-radius: 500rem; - content: 'or'; - top: 50%; - left: 50%; - background-color: #2E3235; - text-shadow: none; - margin-top: -0.89285714em; - margin-left: -0.89285714em; - width: 1.78571429em; - height: 1.78571429em; - line-height: 1.78571429em; - color: rgba(255, 255, 255, 0.5); - font-style: normal; - font-weight: 600; - box-shadow: 0px 0px 0px 1px transparent inset; -} - -.ui.buttons .or[data-text]:before { - content: attr(data-text); -} - -/* Fluid Or */ - -.ui.fluid.buttons .or { - width: 0em !important; -} - -.ui.fluid.buttons .or:after { - display: none; -} - -/*------------------- - Attached ---------------------*/ - -/* Singular */ - -.ui.attached.button { - position: relative; - display: block; - margin: 0em; - border-radius: 0em; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.45) !important; -} - -/* Top / Bottom */ - -.ui.attached.top.button { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.attached.bottom.button { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -/* Left / Right */ - -.ui.left.attached.button { - display: inline-block; - border-left: none; - text-align: right; - padding-right: 0.75em; - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -.ui.right.attached.button { - display: inline-block; - text-align: left; - padding-left: 0.75em; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -/* Plural */ - -.ui.attached.buttons { - position: relative; - display: flex; - border-radius: 0em; - width: auto !important; - z-index: 2; - margin-left: -1px; - margin-right: -1px; -} - -.ui.attached.buttons .button { - margin: 0em; -} - -.ui.attached.buttons .button:first-child { - border-radius: 0em; -} - -.ui.attached.buttons .button:last-child { - border-radius: 0em; -} - -/* Top / Bottom */ - -.ui[class*="top attached"].buttons { - margin-bottom: -1px; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui[class*="top attached"].buttons .button:first-child { - border-radius: 0.35714286rem 0em 0em 0em; -} - -.ui[class*="top attached"].buttons .button:last-child { - border-radius: 0em 0.35714286rem 0em 0em; -} - -.ui[class*="bottom attached"].buttons { - margin-top: -1px; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui[class*="bottom attached"].buttons .button:first-child { - border-radius: 0em 0em 0em 0.35714286rem; -} - -.ui[class*="bottom attached"].buttons .button:last-child { - border-radius: 0em 0em 0.35714286rem 0em; -} - -/* Left / Right */ - -.ui[class*="left attached"].buttons { - display: inline-flex; - margin-right: 0em; - margin-left: -1px; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -.ui[class*="left attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0em 0.35714286rem 0em 0em; -} - -.ui[class*="left attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0.35714286rem 0em; -} - -.ui[class*="right attached"].buttons { - display: inline-flex; - margin-left: 0em; - margin-right: -1px; - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -.ui[class*="right attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0.35714286rem 0em 0em 0em; -} - -.ui[class*="right attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0em 0.35714286rem; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.buttons, -.ui.fluid.button { - width: 100%; -} - -.ui.fluid.button { - display: block; -} - -.ui.two.buttons { - width: 100%; -} - -.ui.two.buttons > .button { - width: 50%; -} - -.ui.three.buttons { - width: 100%; -} - -.ui.three.buttons > .button { - width: 33.333%; -} - -.ui.four.buttons { - width: 100%; -} - -.ui.four.buttons > .button { - width: 25%; -} - -.ui.five.buttons { - width: 100%; -} - -.ui.five.buttons > .button { - width: 20%; -} - -.ui.six.buttons { - width: 100%; -} - -.ui.six.buttons > .button { - width: 16.666%; -} - -.ui.seven.buttons { - width: 100%; -} - -.ui.seven.buttons > .button { - width: 14.285%; -} - -.ui.eight.buttons { - width: 100%; -} - -.ui.eight.buttons > .button { - width: 12.5%; -} - -.ui.nine.buttons { - width: 100%; -} - -.ui.nine.buttons > .button { - width: 11.11%; -} - -.ui.ten.buttons { - width: 100%; -} - -.ui.ten.buttons > .button { - width: 10%; -} - -.ui.eleven.buttons { - width: 100%; -} - -.ui.eleven.buttons > .button { - width: 9.09%; -} - -.ui.twelve.buttons { - width: 100%; -} - -.ui.twelve.buttons > .button { - width: 8.3333%; -} - -/* Fluid Vertical Buttons */ - -.ui.fluid.vertical.buttons, -.ui.fluid.vertical.buttons > .button { - display: flex; - width: auto; -} - -.ui.two.vertical.buttons > .button { - height: 50%; -} - -.ui.three.vertical.buttons > .button { - height: 33.333%; -} - -.ui.four.vertical.buttons > .button { - height: 25%; -} - -.ui.five.vertical.buttons > .button { - height: 20%; -} - -.ui.six.vertical.buttons > .button { - height: 16.666%; -} - -.ui.seven.vertical.buttons > .button { - height: 14.285%; -} - -.ui.eight.vertical.buttons > .button { - height: 12.5%; -} - -.ui.nine.vertical.buttons > .button { - height: 11.11%; -} - -.ui.ten.vertical.buttons > .button { - height: 10%; -} - -.ui.eleven.vertical.buttons > .button { - height: 9.09%; -} - -.ui.twelve.vertical.buttons > .button { - height: 8.3333%; -} - -/*------------------- - Colors ---------------------*/ - -/*--- Black ---*/ - -.ui.black.buttons .button, -.ui.black.button { - background-color: #F9FAFB; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.black.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.black.buttons .button:hover, -.ui.black.button:hover { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.black.buttons .button:focus, -.ui.black.button:focus { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.black.buttons .button:active, -.ui.black.button:active { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.black.buttons .active.button, -.ui.black.buttons .active.button:active, -.ui.black.active.button, -.ui.black.button .active.button:active { - background-color: #eaedf1; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.black.buttons .button, -.ui.basic.black.button { - box-shadow: 0px 0px 0px 1px #F9FAFB inset !important; - color: #F9FAFB !important; -} - -.ui.basic.black.buttons .button:hover, -.ui.basic.black.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.basic.black.buttons .button:focus, -.ui.basic.black.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.basic.black.buttons .active.button, -.ui.basic.black.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #eaedf1 inset !important; - color: #ffffff !important; -} - -.ui.basic.black.buttons .button:active, -.ui.basic.black.button:active { - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.black.buttons .button, -.ui.inverted.black.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #3B3C3E inset !important; - color: #2E3235; -} - -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover, -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus, -.ui.inverted.black.buttons .button.active, -.ui.inverted.black.button.active, -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover { - background-color: #f2f2f2; -} - -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus { - background-color: #ebebeb; -} - -.ui.inverted.black.buttons .active.button, -.ui.inverted.black.active.button { - background-color: #f2f2f2; -} - -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - background-color: #e6e6e6; -} - -/* Inverted Basic */ - -.ui.inverted.black.basic.buttons .button, -.ui.inverted.black.buttons .basic.button, -.ui.inverted.black.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.black.basic.buttons .button:hover, -.ui.inverted.black.buttons .basic.button:hover, -.ui.inverted.black.basic.button:hover { - box-shadow: 0px 0px 0px 2px #f2f2f2 inset !important; - color: #2E3235 !important; -} - -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.button:focus { - box-shadow: 0px 0px 0px 2px #ebebeb inset !important; - color: #545454 !important; -} - -.ui.inverted.black.basic.buttons .active.button, -.ui.inverted.black.buttons .basic.active.button, -.ui.inverted.black.basic.active.button { - box-shadow: 0px 0px 0px 2px #f2f2f2 inset !important; - color: #2E3235 !important; -} - -.ui.inverted.black.basic.buttons .button:active, -.ui.inverted.black.buttons .basic.button:active, -.ui.inverted.black.basic.button:active { - box-shadow: 0px 0px 0px 2px #e6e6e6 inset !important; - color: #2E3235 !important; -} - -/*--- Grey ---*/ - -.ui.grey.buttons .button, -.ui.grey.button { - background-color: #767676; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.grey.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.grey.buttons .button:hover, -.ui.grey.button:hover { - background-color: #838383; - color: #2E3235; - text-shadow: none; -} - -.ui.grey.buttons .button:focus, -.ui.grey.button:focus { - background-color: #8a8a8a; - color: #2E3235; - text-shadow: none; -} - -.ui.grey.buttons .button:active, -.ui.grey.button:active { - background-color: #909090; - color: #2E3235; - text-shadow: none; -} - -.ui.grey.buttons .active.button, -.ui.grey.buttons .active.button:active, -.ui.grey.active.button, -.ui.grey.button .active.button:active { - background-color: #696969; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.grey.buttons .button, -.ui.basic.grey.button { - box-shadow: 0px 0px 0px 1px #767676 inset !important; - color: #767676 !important; -} - -.ui.basic.grey.buttons .button:hover, -.ui.basic.grey.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #838383 inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .button:focus, -.ui.basic.grey.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .active.button, -.ui.basic.grey.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #696969 inset !important; - color: #909090 !important; -} - -.ui.basic.grey.buttons .button:active, -.ui.basic.grey.button:active { - box-shadow: 0px 0px 0px 1px #909090 inset !important; - color: #909090 !important; -} - -.ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.grey.buttons .button, -.ui.inverted.grey.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #3B3C3E inset !important; - color: #2E3235; -} - -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover, -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus, -.ui.inverted.grey.buttons .button.active, -.ui.inverted.grey.button.active, -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - box-shadow: none !important; - color: #DDDDDD; -} - -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover { - background-color: #cfd0d2; -} - -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus { - background-color: #c7c9cb; -} - -.ui.inverted.grey.buttons .active.button, -.ui.inverted.grey.active.button { - background-color: #cfd0d2; -} - -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - background-color: #c2c4c5; -} - -/* Inverted Basic */ - -.ui.inverted.grey.basic.buttons .button, -.ui.inverted.grey.buttons .basic.button, -.ui.inverted.grey.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.grey.basic.buttons .button:hover, -.ui.inverted.grey.buttons .basic.button:hover, -.ui.inverted.grey.basic.button:hover { - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #2E3235 !important; -} - -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.button:focus { - box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - color: #DCDDDE !important; -} - -.ui.inverted.grey.basic.buttons .active.button, -.ui.inverted.grey.buttons .basic.active.button, -.ui.inverted.grey.basic.active.button { - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #2E3235 !important; -} - -.ui.inverted.grey.basic.buttons .button:active, -.ui.inverted.grey.buttons .basic.button:active, -.ui.inverted.grey.basic.button:active { - box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - color: #2E3235 !important; -} - -/*--- Brown ---*/ - -.ui.brown.buttons .button, -.ui.brown.button { - background-color: #A5673F; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.brown.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.brown.buttons .button:hover, -.ui.brown.button:hover { - background-color: #975b33; - color: #2E3235; - text-shadow: none; -} - -.ui.brown.buttons .button:focus, -.ui.brown.button:focus { - background-color: #90532b; - color: #2E3235; - text-shadow: none; -} - -.ui.brown.buttons .button:active, -.ui.brown.button:active { - background-color: #805031; - color: #2E3235; - text-shadow: none; -} - -.ui.brown.buttons .active.button, -.ui.brown.buttons .active.button:active, -.ui.brown.active.button, -.ui.brown.button .active.button:active { - background-color: #995a31; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.brown.buttons .button, -.ui.basic.brown.button { - box-shadow: 0px 0px 0px 1px #A5673F inset !important; - color: #A5673F !important; -} - -.ui.basic.brown.buttons .button:hover, -.ui.basic.brown.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #975b33 inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .button:focus, -.ui.basic.brown.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #90532b inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .active.button, -.ui.basic.brown.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #995a31 inset !important; - color: #805031 !important; -} - -.ui.basic.brown.buttons .button:active, -.ui.basic.brown.button:active { - box-shadow: 0px 0px 0px 1px #805031 inset !important; - color: #805031 !important; -} - -.ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.brown.buttons .button, -.ui.inverted.brown.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D67C1C inset !important; - color: #D67C1C; -} - -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover, -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus, -.ui.inverted.brown.buttons .button.active, -.ui.inverted.brown.button.active, -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover { - background-color: #c86f11; -} - -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus { - background-color: #c16808; -} - -.ui.inverted.brown.buttons .active.button, -.ui.inverted.brown.active.button { - background-color: #cc6f0d; -} - -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - background-color: #a96216; -} - -/* Inverted Basic */ - -.ui.inverted.brown.basic.buttons .button, -.ui.inverted.brown.buttons .basic.button, -.ui.inverted.brown.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.brown.basic.buttons .button:hover, -.ui.inverted.brown.buttons .basic.button:hover, -.ui.inverted.brown.basic.button:hover { - box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.button:focus { - box-shadow: 0px 0px 0px 2px #c16808 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .active.button, -.ui.inverted.brown.buttons .basic.active.button, -.ui.inverted.brown.basic.active.button { - box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:active, -.ui.inverted.brown.buttons .basic.button:active, -.ui.inverted.brown.basic.button:active { - box-shadow: 0px 0px 0px 2px #a96216 inset !important; - color: #D67C1C !important; -} - -/*--- Blue ---*/ - -.ui.blue.buttons .button, -.ui.blue.button { - background-color: #2185D0; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.blue.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.blue.buttons .button:hover, -.ui.blue.button:hover { - background-color: #1678c2; - color: #2E3235; - text-shadow: none; -} - -.ui.blue.buttons .button:focus, -.ui.blue.button:focus { - background-color: #0d71bb; - color: #2E3235; - text-shadow: none; -} - -.ui.blue.buttons .button:active, -.ui.blue.button:active { - background-color: #1a69a4; - color: #2E3235; - text-shadow: none; -} - -.ui.blue.buttons .active.button, -.ui.blue.buttons .active.button:active, -.ui.blue.active.button, -.ui.blue.button .active.button:active { - background-color: #1279c6; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.blue.buttons .button, -.ui.basic.blue.button { - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; -} - -.ui.basic.blue.buttons .button:hover, -.ui.basic.blue.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .button:focus, -.ui.basic.blue.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .active.button, -.ui.basic.blue.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; -} - -.ui.basic.blue.buttons .button:active, -.ui.basic.blue.button:active { - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; -} - -.ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.blue.buttons .button, -.ui.inverted.blue.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - color: #54C8FF; -} - -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover, -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus, -.ui.inverted.blue.buttons .button.active, -.ui.inverted.blue.button.active, -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover { - background-color: #3ac0ff; -} - -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus { - background-color: #2bbbff; -} - -.ui.inverted.blue.buttons .active.button, -.ui.inverted.blue.active.button { - background-color: #3ac0ff; -} - -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - background-color: #21b8ff; -} - -/* Inverted Basic */ - -.ui.inverted.blue.basic.buttons .button, -.ui.inverted.blue.buttons .basic.button, -.ui.inverted.blue.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.blue.basic.buttons .button:hover, -.ui.inverted.blue.buttons .basic.button:hover, -.ui.inverted.blue.basic.button:hover { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.button:focus { - box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .active.button, -.ui.inverted.blue.buttons .basic.active.button, -.ui.inverted.blue.basic.active.button { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:active, -.ui.inverted.blue.buttons .basic.button:active, -.ui.inverted.blue.basic.button:active { - box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - color: #54C8FF !important; -} - -/*--- Green ---*/ - -.ui.green.buttons .button, -.ui.green.button { - background-color: #21BA45; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.green.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.green.buttons .button:hover, -.ui.green.button:hover { - background-color: #16ab39; - color: #2E3235; - text-shadow: none; -} - -.ui.green.buttons .button:focus, -.ui.green.button:focus { - background-color: #0ea432; - color: #2E3235; - text-shadow: none; -} - -.ui.green.buttons .button:active, -.ui.green.button:active { - background-color: #198f35; - color: #2E3235; - text-shadow: none; -} - -.ui.green.buttons .active.button, -.ui.green.buttons .active.button:active, -.ui.green.active.button, -.ui.green.button .active.button:active { - background-color: #13ae38; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.green.buttons .button, -.ui.basic.green.button { - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.green.buttons .button:hover, -.ui.basic.green.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .button:focus, -.ui.basic.green.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .active.button, -.ui.basic.green.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.green.buttons .button:active, -.ui.basic.green.button:active { - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.green.buttons .button, -.ui.inverted.green.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; - color: #2ECC40; -} - -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover, -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus, -.ui.inverted.green.buttons .button.active, -.ui.inverted.green.button.active, -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover { - background-color: #22be34; -} - -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus { - background-color: #19b82b; -} - -.ui.inverted.green.buttons .active.button, -.ui.inverted.green.active.button { - background-color: #1fc231; -} - -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - background-color: #25a233; -} - -/* Inverted Basic */ - -.ui.inverted.green.basic.buttons .button, -.ui.inverted.green.buttons .basic.button, -.ui.inverted.green.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.green.basic.buttons .button:hover, -.ui.inverted.green.buttons .basic.button:hover, -.ui.inverted.green.basic.button:hover { - box-shadow: 0px 0px 0px 2px #22be34 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.button:focus { - box-shadow: 0px 0px 0px 2px #19b82b inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .active.button, -.ui.inverted.green.buttons .basic.active.button, -.ui.inverted.green.basic.active.button { - box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:active, -.ui.inverted.green.buttons .basic.button:active, -.ui.inverted.green.basic.button:active { - box-shadow: 0px 0px 0px 2px #25a233 inset !important; - color: #2ECC40 !important; -} - -/*--- Orange ---*/ - -.ui.orange.buttons .button, -.ui.orange.button { - background-color: #C06D36; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.orange.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.orange.buttons .button:hover, -.ui.orange.button:hover { - background-color: #b2602a; - color: #2E3235; - text-shadow: none; -} - -.ui.orange.buttons .button:focus, -.ui.orange.button:focus { - background-color: #ac5922; - color: #2E3235; - text-shadow: none; -} - -.ui.orange.buttons .button:active, -.ui.orange.button:active { - background-color: #98562b; - color: #2E3235; - text-shadow: none; -} - -.ui.orange.buttons .active.button, -.ui.orange.buttons .active.button:active, -.ui.orange.active.button, -.ui.orange.button .active.button:active { - background-color: #b56027; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.orange.buttons .button, -.ui.basic.orange.button { - box-shadow: 0px 0px 0px 1px #C06D36 inset !important; - color: #C06D36 !important; -} - -.ui.basic.orange.buttons .button:hover, -.ui.basic.orange.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #b2602a inset !important; - color: #b2602a !important; -} - -.ui.basic.orange.buttons .button:focus, -.ui.basic.orange.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ac5922 inset !important; - color: #b2602a !important; -} - -.ui.basic.orange.buttons .active.button, -.ui.basic.orange.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #b56027 inset !important; - color: #98562b !important; -} - -.ui.basic.orange.buttons .button:active, -.ui.basic.orange.button:active { - box-shadow: 0px 0px 0px 1px #98562b inset !important; - color: #98562b !important; -} - -.ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.orange.buttons .button, -.ui.inverted.orange.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF851B inset !important; - color: #FF851B; -} - -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover, -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus, -.ui.inverted.orange.buttons .button.active, -.ui.inverted.orange.button.active, -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover { - background-color: #ff7701; -} - -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus { - background-color: #f17000; -} - -.ui.inverted.orange.buttons .active.button, -.ui.inverted.orange.active.button { - background-color: #ff7701; -} - -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - background-color: #e76b00; -} - -/* Inverted Basic */ - -.ui.inverted.orange.basic.buttons .button, -.ui.inverted.orange.buttons .basic.button, -.ui.inverted.orange.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.orange.basic.buttons .button:hover, -.ui.inverted.orange.buttons .basic.button:hover, -.ui.inverted.orange.basic.button:hover { - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.button:focus { - box-shadow: 0px 0px 0px 2px #f17000 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .active.button, -.ui.inverted.orange.buttons .basic.active.button, -.ui.inverted.orange.basic.active.button { - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:active, -.ui.inverted.orange.buttons .basic.button:active, -.ui.inverted.orange.basic.button:active { - box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - color: #FF851B !important; -} - -/*--- Pink ---*/ - -.ui.pink.buttons .button, -.ui.pink.button { - background-color: #E03997; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.pink.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.pink.buttons .button:hover, -.ui.pink.button:hover { - background-color: #e61a8d; - color: #2E3235; - text-shadow: none; -} - -.ui.pink.buttons .button:focus, -.ui.pink.button:focus { - background-color: #e10f85; - color: #2E3235; - text-shadow: none; -} - -.ui.pink.buttons .button:active, -.ui.pink.button:active { - background-color: #c71f7e; - color: #2E3235; - text-shadow: none; -} - -.ui.pink.buttons .active.button, -.ui.pink.buttons .active.button:active, -.ui.pink.active.button, -.ui.pink.button .active.button:active { - background-color: #ea158d; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.pink.buttons .button, -.ui.basic.pink.button { - box-shadow: 0px 0px 0px 1px #E03997 inset !important; - color: #E03997 !important; -} - -.ui.basic.pink.buttons .button:hover, -.ui.basic.pink.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .button:focus, -.ui.basic.pink.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .active.button, -.ui.basic.pink.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ea158d inset !important; - color: #c71f7e !important; -} - -.ui.basic.pink.buttons .button:active, -.ui.basic.pink.button:active { - box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - color: #c71f7e !important; -} - -.ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.pink.buttons .button, -.ui.inverted.pink.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; - color: #FF8EDF; -} - -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover, -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus, -.ui.inverted.pink.buttons .button.active, -.ui.inverted.pink.button.active, -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover { - background-color: #ff74d8; -} - -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus { - background-color: #ff65d3; -} - -.ui.inverted.pink.buttons .active.button, -.ui.inverted.pink.active.button { - background-color: #ff74d8; -} - -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - background-color: #ff5bd1; -} - -/* Inverted Basic */ - -.ui.inverted.pink.basic.buttons .button, -.ui.inverted.pink.buttons .basic.button, -.ui.inverted.pink.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.pink.basic.buttons .button:hover, -.ui.inverted.pink.buttons .basic.button:hover, -.ui.inverted.pink.basic.button:hover { - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.button:focus { - box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .active.button, -.ui.inverted.pink.buttons .basic.active.button, -.ui.inverted.pink.basic.active.button { - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:active, -.ui.inverted.pink.buttons .basic.button:active, -.ui.inverted.pink.basic.button:active { - box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - color: #FF8EDF !important; -} - -/*--- Violet ---*/ - -.ui.violet.buttons .button, -.ui.violet.button { - background-color: #6435C9; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.violet.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.violet.buttons .button:hover, -.ui.violet.button:hover { - background-color: #5829bb; - color: #2E3235; - text-shadow: none; -} - -.ui.violet.buttons .button:focus, -.ui.violet.button:focus { - background-color: #4f20b5; - color: #2E3235; - text-shadow: none; -} - -.ui.violet.buttons .button:active, -.ui.violet.button:active { - background-color: #502aa1; - color: #2E3235; - text-shadow: none; -} - -.ui.violet.buttons .active.button, -.ui.violet.buttons .active.button:active, -.ui.violet.active.button, -.ui.violet.button .active.button:active { - background-color: #5626bf; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.violet.buttons .button, -.ui.basic.violet.button { - box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - color: #6435C9 !important; -} - -.ui.basic.violet.buttons .button:hover, -.ui.basic.violet.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #5829bb inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .button:focus, -.ui.basic.violet.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .active.button, -.ui.basic.violet.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #5626bf inset !important; - color: #502aa1 !important; -} - -.ui.basic.violet.buttons .button:active, -.ui.basic.violet.button:active { - box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - color: #502aa1 !important; -} - -.ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.violet.buttons .button, -.ui.inverted.violet.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #A291FB inset !important; - color: #A291FB; -} - -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover, -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus, -.ui.inverted.violet.buttons .button.active, -.ui.inverted.violet.button.active, -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover { - background-color: #8a73ff; -} - -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus { - background-color: #7d64ff; -} - -.ui.inverted.violet.buttons .active.button, -.ui.inverted.violet.active.button { - background-color: #8a73ff; -} - -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - background-color: #7860f9; -} - -/* Inverted Basic */ - -.ui.inverted.violet.basic.buttons .button, -.ui.inverted.violet.buttons .basic.button, -.ui.inverted.violet.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.violet.basic.buttons .button:hover, -.ui.inverted.violet.buttons .basic.button:hover, -.ui.inverted.violet.basic.button:hover { - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.button:focus { - box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .active.button, -.ui.inverted.violet.buttons .basic.active.button, -.ui.inverted.violet.basic.active.button { - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:active, -.ui.inverted.violet.buttons .basic.button:active, -.ui.inverted.violet.basic.button:active { - box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - color: #A291FB !important; -} - -/*--- Purple ---*/ - -.ui.purple.buttons .button, -.ui.purple.button { - background-color: #A333C8; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.purple.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.purple.buttons .button:hover, -.ui.purple.button:hover { - background-color: #9627ba; - color: #2E3235; - text-shadow: none; -} - -.ui.purple.buttons .button:focus, -.ui.purple.button:focus { - background-color: #8f1eb4; - color: #2E3235; - text-shadow: none; -} - -.ui.purple.buttons .button:active, -.ui.purple.button:active { - background-color: #82299f; - color: #2E3235; - text-shadow: none; -} - -.ui.purple.buttons .active.button, -.ui.purple.buttons .active.button:active, -.ui.purple.active.button, -.ui.purple.button .active.button:active { - background-color: #9724be; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.purple.buttons .button, -.ui.basic.purple.button { - box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - color: #A333C8 !important; -} - -.ui.basic.purple.buttons .button:hover, -.ui.basic.purple.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #9627ba inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .button:focus, -.ui.basic.purple.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .active.button, -.ui.basic.purple.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #9724be inset !important; - color: #82299f !important; -} - -.ui.basic.purple.buttons .button:active, -.ui.basic.purple.button:active { - box-shadow: 0px 0px 0px 1px #82299f inset !important; - color: #82299f !important; -} - -.ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.purple.buttons .button, -.ui.inverted.purple.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #DC73FF inset !important; - color: #DC73FF; -} - -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover, -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus, -.ui.inverted.purple.buttons .button.active, -.ui.inverted.purple.button.active, -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover { - background-color: #d65aff; -} - -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus { - background-color: #d24aff; -} - -.ui.inverted.purple.buttons .active.button, -.ui.inverted.purple.active.button { - background-color: #d65aff; -} - -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - background-color: #cf40ff; -} - -/* Inverted Basic */ - -.ui.inverted.purple.basic.buttons .button, -.ui.inverted.purple.buttons .basic.button, -.ui.inverted.purple.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.purple.basic.buttons .button:hover, -.ui.inverted.purple.buttons .basic.button:hover, -.ui.inverted.purple.basic.button:hover { - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.button:focus { - box-shadow: 0px 0px 0px 2px #d24aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .active.button, -.ui.inverted.purple.buttons .basic.active.button, -.ui.inverted.purple.basic.active.button { - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:active, -.ui.inverted.purple.buttons .basic.button:active, -.ui.inverted.purple.basic.button:active { - box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - color: #DC73FF !important; -} - -/*--- Red ---*/ - -.ui.red.buttons .button, -.ui.red.button { - background-color: #DB2828; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.red.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.red.buttons .button:hover, -.ui.red.button:hover { - background-color: #d01919; - color: #2E3235; - text-shadow: none; -} - -.ui.red.buttons .button:focus, -.ui.red.button:focus { - background-color: #ca1010; - color: #2E3235; - text-shadow: none; -} - -.ui.red.buttons .button:active, -.ui.red.button:active { - background-color: #b21e1e; - color: #2E3235; - text-shadow: none; -} - -.ui.red.buttons .active.button, -.ui.red.buttons .active.button:active, -.ui.red.active.button, -.ui.red.button .active.button:active { - background-color: #d41515; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.red.buttons .button, -.ui.basic.red.button { - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.red.buttons .button:hover, -.ui.basic.red.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .button:focus, -.ui.basic.red.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .active.button, -.ui.basic.red.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.red.buttons .button:active, -.ui.basic.red.button:active { - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.red.buttons .button, -.ui.inverted.red.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FF695E inset !important; - color: #FF695E; -} - -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover, -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus, -.ui.inverted.red.buttons .button.active, -.ui.inverted.red.button.active, -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover { - background-color: #ff5144; -} - -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus { - background-color: #ff4335; -} - -.ui.inverted.red.buttons .active.button, -.ui.inverted.red.active.button { - background-color: #ff5144; -} - -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - background-color: #ff392b; -} - -/* Inverted Basic */ - -.ui.inverted.red.basic.buttons .button, -.ui.inverted.red.buttons .basic.button, -.ui.inverted.red.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.red.basic.buttons .button:hover, -.ui.inverted.red.buttons .basic.button:hover, -.ui.inverted.red.basic.button:hover { - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.button:focus { - box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .active.button, -.ui.inverted.red.buttons .basic.active.button, -.ui.inverted.red.basic.active.button { - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:active, -.ui.inverted.red.buttons .basic.button:active, -.ui.inverted.red.basic.button:active { - box-shadow: 0px 0px 0px 2px #ff392b inset !important; - color: #FF695E !important; -} - -/*--- Teal ---*/ - -.ui.teal.buttons .button, -.ui.teal.button { - background-color: #00B5AD; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.teal.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.teal.buttons .button:hover, -.ui.teal.button:hover { - background-color: #009c95; - color: #2E3235; - text-shadow: none; -} - -.ui.teal.buttons .button:focus, -.ui.teal.button:focus { - background-color: #008c86; - color: #2E3235; - text-shadow: none; -} - -.ui.teal.buttons .button:active, -.ui.teal.button:active { - background-color: #00827c; - color: #2E3235; - text-shadow: none; -} - -.ui.teal.buttons .active.button, -.ui.teal.buttons .active.button:active, -.ui.teal.active.button, -.ui.teal.button .active.button:active { - background-color: #009c95; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.teal.buttons .button, -.ui.basic.teal.button { - box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - color: #00B5AD !important; -} - -.ui.basic.teal.buttons .button:hover, -.ui.basic.teal.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .button:focus, -.ui.basic.teal.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #008c86 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .active.button, -.ui.basic.teal.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #00827c !important; -} - -.ui.basic.teal.buttons .button:active, -.ui.basic.teal.button:active { - box-shadow: 0px 0px 0px 1px #00827c inset !important; - color: #00827c !important; -} - -.ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.teal.buttons .button, -.ui.inverted.teal.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; - color: #6DFFFF; -} - -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover, -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus, -.ui.inverted.teal.buttons .button.active, -.ui.inverted.teal.button.active, -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - box-shadow: none !important; - color: #DDDDDD; -} - -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover { - background-color: #54ffff; -} - -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus { - background-color: #44ffff; -} - -.ui.inverted.teal.buttons .active.button, -.ui.inverted.teal.active.button { - background-color: #54ffff; -} - -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - background-color: #3affff; -} - -/* Inverted Basic */ - -.ui.inverted.teal.basic.buttons .button, -.ui.inverted.teal.buttons .basic.button, -.ui.inverted.teal.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.teal.basic.buttons .button:hover, -.ui.inverted.teal.buttons .basic.button:hover, -.ui.inverted.teal.basic.button:hover { - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.button:focus { - box-shadow: 0px 0px 0px 2px #44ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .active.button, -.ui.inverted.teal.buttons .basic.active.button, -.ui.inverted.teal.basic.active.button { - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:active, -.ui.inverted.teal.buttons .basic.button:active, -.ui.inverted.teal.basic.button:active { - box-shadow: 0px 0px 0px 2px #3affff inset !important; - color: #6DFFFF !important; -} - -/*--- Olive ---*/ - -.ui.olive.buttons .button, -.ui.olive.button { - background-color: #B5CC18; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.olive.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.olive.buttons .button:hover, -.ui.olive.button:hover { - background-color: #a7bd0d; - color: #2E3235; - text-shadow: none; -} - -.ui.olive.buttons .button:focus, -.ui.olive.button:focus { - background-color: #a0b605; - color: #2E3235; - text-shadow: none; -} - -.ui.olive.buttons .button:active, -.ui.olive.button:active { - background-color: #8d9e13; - color: #2E3235; - text-shadow: none; -} - -.ui.olive.buttons .active.button, -.ui.olive.buttons .active.button:active, -.ui.olive.active.button, -.ui.olive.button .active.button:active { - background-color: #aac109; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.olive.buttons .button, -.ui.basic.olive.button { - box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - color: #B5CC18 !important; -} - -.ui.basic.olive.buttons .button:hover, -.ui.basic.olive.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .button:focus, -.ui.basic.olive.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .active.button, -.ui.basic.olive.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #aac109 inset !important; - color: #8d9e13 !important; -} - -.ui.basic.olive.buttons .button:active, -.ui.basic.olive.button:active { - box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - color: #8d9e13 !important; -} - -.ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.olive.buttons .button, -.ui.inverted.olive.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #D9E778 inset !important; - color: #D9E778; -} - -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover, -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus, -.ui.inverted.olive.buttons .button.active, -.ui.inverted.olive.button.active, -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - box-shadow: none !important; - color: #DDDDDD; -} - -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover { - background-color: #d8ea5c; -} - -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus { - background-color: #daef47; -} - -.ui.inverted.olive.buttons .active.button, -.ui.inverted.olive.active.button { - background-color: #daed59; -} - -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - background-color: #cddf4d; -} - -/* Inverted Basic */ - -.ui.inverted.olive.basic.buttons .button, -.ui.inverted.olive.buttons .basic.button, -.ui.inverted.olive.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.olive.basic.buttons .button:hover, -.ui.inverted.olive.buttons .basic.button:hover, -.ui.inverted.olive.basic.button:hover { - box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.button:focus { - box-shadow: 0px 0px 0px 2px #daef47 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .active.button, -.ui.inverted.olive.buttons .basic.active.button, -.ui.inverted.olive.basic.active.button { - box-shadow: 0px 0px 0px 2px #daed59 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:active, -.ui.inverted.olive.buttons .basic.button:active, -.ui.inverted.olive.basic.button:active { - box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - color: #D9E778 !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.buttons .button, -.ui.yellow.button { - background-color: #FBBD08; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.yellow.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.yellow.buttons .button:hover, -.ui.yellow.button:hover { - background-color: #eaae00; - color: #2E3235; - text-shadow: none; -} - -.ui.yellow.buttons .button:focus, -.ui.yellow.button:focus { - background-color: #daa300; - color: #2E3235; - text-shadow: none; -} - -.ui.yellow.buttons .button:active, -.ui.yellow.button:active { - background-color: #cd9903; - color: #2E3235; - text-shadow: none; -} - -.ui.yellow.buttons .active.button, -.ui.yellow.buttons .active.button:active, -.ui.yellow.active.button, -.ui.yellow.button .active.button:active { - background-color: #eaae00; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.yellow.buttons .button, -.ui.basic.yellow.button { - box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - color: #FBBD08 !important; -} - -.ui.basic.yellow.buttons .button:hover, -.ui.basic.yellow.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .button:focus, -.ui.basic.yellow.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #daa300 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .active.button, -.ui.basic.yellow.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #cd9903 !important; -} - -.ui.basic.yellow.buttons .button:active, -.ui.basic.yellow.button:active { - box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - color: #cd9903 !important; -} - -.ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.yellow.buttons .button, -.ui.inverted.yellow.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #FFE21F inset !important; - color: #FFE21F; -} - -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover, -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus, -.ui.inverted.yellow.buttons .button.active, -.ui.inverted.yellow.button.active, -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - box-shadow: none !important; - color: #DDDDDD; -} - -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover { - background-color: #ffdf05; -} - -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus { - background-color: #f5d500; -} - -.ui.inverted.yellow.buttons .active.button, -.ui.inverted.yellow.active.button { - background-color: #ffdf05; -} - -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - background-color: #ebcd00; -} - -/* Inverted Basic */ - -.ui.inverted.yellow.basic.buttons .button, -.ui.inverted.yellow.buttons .basic.button, -.ui.inverted.yellow.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.yellow.basic.buttons .button:hover, -.ui.inverted.yellow.buttons .basic.button:hover, -.ui.inverted.yellow.basic.button:hover { - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.button:focus { - box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .active.button, -.ui.inverted.yellow.buttons .basic.active.button, -.ui.inverted.yellow.basic.active.button { - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:active, -.ui.inverted.yellow.buttons .basic.button:active, -.ui.inverted.yellow.basic.button:active { - box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - color: #FFE21F !important; -} - -/*------------------- - Primary ---------------------*/ - -/*--- Standard ---*/ - -.ui.primary.buttons .button, -.ui.primary.button { - background-color: #6987AF; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.primary.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.primary.buttons .button:hover, -.ui.primary.button:hover { - background-color: #5579aa; - color: #2E3235; - text-shadow: none; -} - -.ui.primary.buttons .button:focus, -.ui.primary.button:focus { - background-color: #4c71a3; - color: #2E3235; - text-shadow: none; -} - -.ui.primary.buttons .button:active, -.ui.primary.button:active { - background-color: #506e95; - color: #2E3235; - text-shadow: none; -} - -.ui.primary.buttons .active.button, -.ui.primary.buttons .active.button:active, -.ui.primary.active.button, -.ui.primary.button .active.button:active { - background-color: #5379ac; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.primary.buttons .button, -.ui.basic.primary.button { - box-shadow: 0px 0px 0px 1px #6987AF inset !important; - color: #6987AF !important; -} - -.ui.basic.primary.buttons .button:hover, -.ui.basic.primary.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #5579aa inset !important; - color: #5579aa !important; -} - -.ui.basic.primary.buttons .button:focus, -.ui.basic.primary.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #4c71a3 inset !important; - color: #5579aa !important; -} - -.ui.basic.primary.buttons .active.button, -.ui.basic.primary.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #5379ac inset !important; - color: #506e95 !important; -} - -.ui.basic.primary.buttons .button:active, -.ui.basic.primary.button:active { - box-shadow: 0px 0px 0px 1px #506e95 inset !important; - color: #506e95 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.primary.buttons .button, -.ui.inverted.primary.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - color: #54C8FF; -} - -.ui.inverted.primary.buttons .button:hover, -.ui.inverted.primary.button:hover, -.ui.inverted.primary.buttons .button:focus, -.ui.inverted.primary.button:focus, -.ui.inverted.primary.buttons .button.active, -.ui.inverted.primary.button.active, -.ui.inverted.primary.buttons .button:active, -.ui.inverted.primary.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.primary.buttons .button:hover, -.ui.inverted.primary.button:hover { - background-color: #3ac0ff; -} - -.ui.inverted.primary.buttons .button:focus, -.ui.inverted.primary.button:focus { - background-color: #2bbbff; -} - -.ui.inverted.primary.buttons .active.button, -.ui.inverted.primary.active.button { - background-color: #3ac0ff; -} - -.ui.inverted.primary.buttons .button:active, -.ui.inverted.primary.button:active { - background-color: #21b8ff; -} - -/* Inverted Basic */ - -.ui.inverted.primary.basic.buttons .button, -.ui.inverted.primary.buttons .basic.button, -.ui.inverted.primary.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.primary.basic.buttons .button:hover, -.ui.inverted.primary.buttons .basic.button:hover, -.ui.inverted.primary.basic.button:hover { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.primary.basic.buttons .button:focus, -.ui.inverted.primary.basic.buttons .button:focus, -.ui.inverted.primary.basic.button:focus { - box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.primary.basic.buttons .active.button, -.ui.inverted.primary.buttons .basic.active.button, -.ui.inverted.primary.basic.active.button { - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.primary.basic.buttons .button:active, -.ui.inverted.primary.buttons .basic.button:active, -.ui.inverted.primary.basic.button:active { - box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - color: #54C8FF !important; -} - -/*------------------- - Secondary ---------------------*/ - -/* Standard */ - -.ui.secondary.buttons .button, -.ui.secondary.button { - background-color: #F9FAFB; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.secondary.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.secondary.buttons .button:hover, -.ui.secondary.button:hover { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.secondary.buttons .button:focus, -.ui.secondary.button:focus { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.secondary.buttons .button:active, -.ui.secondary.button:active { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -.ui.secondary.buttons .active.button, -.ui.secondary.buttons .active.button:active, -.ui.secondary.active.button, -.ui.secondary.button .active.button:active { - background-color: #ffffff; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.secondary.buttons .button, -.ui.basic.secondary.button { - box-shadow: 0px 0px 0px 1px #F9FAFB inset !important; - color: #F9FAFB !important; -} - -.ui.basic.secondary.buttons .button:hover, -.ui.basic.secondary.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.basic.secondary.buttons .button:focus, -.ui.basic.secondary.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.basic.secondary.buttons .active.button, -.ui.basic.secondary.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.basic.secondary.buttons .button:active, -.ui.basic.secondary.button:active { - box-shadow: 0px 0px 0px 1px #ffffff inset !important; - color: #ffffff !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.secondary.buttons .button, -.ui.inverted.secondary.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px #545454 inset !important; - color: #545454; -} - -.ui.inverted.secondary.buttons .button:hover, -.ui.inverted.secondary.button:hover, -.ui.inverted.secondary.buttons .button:focus, -.ui.inverted.secondary.button:focus, -.ui.inverted.secondary.buttons .button.active, -.ui.inverted.secondary.button.active, -.ui.inverted.secondary.buttons .button:active, -.ui.inverted.secondary.button:active { - box-shadow: none !important; - color: #2E3235; -} - -.ui.inverted.secondary.buttons .button:hover, -.ui.inverted.secondary.button:hover { - background-color: #616161; -} - -.ui.inverted.secondary.buttons .button:focus, -.ui.inverted.secondary.button:focus { - background-color: #686868; -} - -.ui.inverted.secondary.buttons .active.button, -.ui.inverted.secondary.active.button { - background-color: #616161; -} - -.ui.inverted.secondary.buttons .button:active, -.ui.inverted.secondary.button:active { - background-color: #6e6e6e; -} - -/* Inverted Basic */ - -.ui.inverted.secondary.basic.buttons .button, -.ui.inverted.secondary.buttons .basic.button, -.ui.inverted.secondary.basic.button { - background-color: transparent; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #2E3235 !important; -} - -.ui.inverted.secondary.basic.buttons .button:hover, -.ui.inverted.secondary.buttons .basic.button:hover, -.ui.inverted.secondary.basic.button:hover { - box-shadow: 0px 0px 0px 2px #616161 inset !important; - color: #545454 !important; -} - -.ui.inverted.secondary.basic.buttons .button:focus, -.ui.inverted.secondary.basic.buttons .button:focus, -.ui.inverted.secondary.basic.button:focus { - box-shadow: 0px 0px 0px 2px #686868 inset !important; - color: #545454 !important; -} - -.ui.inverted.secondary.basic.buttons .active.button, -.ui.inverted.secondary.buttons .basic.active.button, -.ui.inverted.secondary.basic.active.button { - box-shadow: 0px 0px 0px 2px #616161 inset !important; - color: #545454 !important; -} - -.ui.inverted.secondary.basic.buttons .button:active, -.ui.inverted.secondary.buttons .basic.button:active, -.ui.inverted.secondary.basic.button:active { - box-shadow: 0px 0px 0px 2px #6e6e6e inset !important; - color: #545454 !important; -} - -/*--------------- - Positive -----------------*/ - -/* Standard */ - -.ui.positive.buttons .button, -.ui.positive.button { - background-color: #21BA45; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.positive.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.positive.buttons .button:hover, -.ui.positive.button:hover { - background-color: #16ab39; - color: #2E3235; - text-shadow: none; -} - -.ui.positive.buttons .button:focus, -.ui.positive.button:focus { - background-color: #0ea432; - color: #2E3235; - text-shadow: none; -} - -.ui.positive.buttons .button:active, -.ui.positive.button:active { - background-color: #198f35; - color: #2E3235; - text-shadow: none; -} - -.ui.positive.buttons .active.button, -.ui.positive.buttons .active.button:active, -.ui.positive.active.button, -.ui.positive.button .active.button:active { - background-color: #13ae38; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.positive.buttons .button, -.ui.basic.positive.button { - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.positive.buttons .button:hover, -.ui.basic.positive.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .button:focus, -.ui.basic.positive.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .active.button, -.ui.basic.positive.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.positive.buttons .button:active, -.ui.basic.positive.button:active { - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*--------------- - Negative -----------------*/ - -/* Standard */ - -.ui.negative.buttons .button, -.ui.negative.button { - background-color: #DB2828; - color: #2E3235; - text-shadow: none; - background-image: none; -} - -.ui.negative.button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.negative.buttons .button:hover, -.ui.negative.button:hover { - background-color: #d01919; - color: #2E3235; - text-shadow: none; -} - -.ui.negative.buttons .button:focus, -.ui.negative.button:focus { - background-color: #ca1010; - color: #2E3235; - text-shadow: none; -} - -.ui.negative.buttons .button:active, -.ui.negative.button:active { - background-color: #b21e1e; - color: #2E3235; - text-shadow: none; -} - -.ui.negative.buttons .active.button, -.ui.negative.buttons .active.button:active, -.ui.negative.active.button, -.ui.negative.button .active.button:active { - background-color: #d41515; - color: #2E3235; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.negative.buttons .button, -.ui.basic.negative.button { - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.negative.buttons .button:hover, -.ui.basic.negative.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .button:focus, -.ui.basic.negative.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .active.button, -.ui.basic.negative.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.negative.buttons .button:active, -.ui.basic.negative.button:active { - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/******************************* - Groups -*******************************/ - -.ui.buttons { - display: inline-flex; - flex-direction: row; - font-size: 0em; - vertical-align: baseline; - margin: 0em 0.25em 0em 0em; -} - -.ui.buttons:not(.basic):not(.inverted) { - box-shadow: none; -} - -/* Clearfix */ - -.ui.buttons:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/* Standard Group */ - -.ui.buttons .button { - flex: 1 0 auto; - margin: 0em; - border-radius: 0em; - margin: 0px 0px 0px 0px; -} - -.ui.buttons > .ui.button:not(.basic):not(.inverted), -.ui.buttons:not(.basic):not(.inverted) > .button { - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.buttons .button:first-child { - border-left: none; - margin-left: 0em; - border-top-left-radius: 0.35714286rem; - border-bottom-left-radius: 0.35714286rem; -} - -.ui.buttons .button:last-child { - border-top-right-radius: 0.35714286rem; - border-bottom-right-radius: 0.35714286rem; -} - -/* Vertical Style */ - -.ui.vertical.buttons { - display: inline-flex; - flex-direction: column; -} - -.ui.vertical.buttons .button { - display: block; - float: none; - width: 100%; - margin: 0px 0px 0px 0px; - box-shadow: none; - border-radius: 0em; -} - -.ui.vertical.buttons .button:first-child { - border-top-left-radius: 0.35714286rem; - border-top-right-radius: 0.35714286rem; -} - -.ui.vertical.buttons .button:last-child { - margin-bottom: 0px; - border-bottom-left-radius: 0.35714286rem; - border-bottom-right-radius: 0.35714286rem; -} - -.ui.vertical.buttons .button:only-child { - border-radius: 0.35714286rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/* Standard Basic Inverted */ - -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - color: #DDDDDD !important; -} - -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: #FFFFFF !important; -} - -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: #FFFFFF !important; -} - -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - color: #FFFFFF !important; -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Container - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Container -*******************************/ - -/* All Sizes */ - -.ui.container { - display: block; - max-width: 100% !important; -} - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui.container { - width: auto !important; - margin-left: 1em !important; - margin-right: 1em !important; - } - - .ui.grid.container { - width: auto !important; - } - - .ui.relaxed.grid.container { - width: auto !important; - } - - .ui.very.relaxed.grid.container { - width: auto !important; - } -} - -/* Tablet */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.container { - width: 734px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 734px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 734px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 734px + 5rem ) !important; - } -} - -/* Small Monitor */ - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.container { - width: 944px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 944px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 944px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 944px + 5rem ) !important; - } -} - -/* Large Monitor */ - -@media only screen and (min-width: 1200px) { - .ui.container { - width: 1138px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 1138px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 1138px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 1138px + 5rem ) !important; - } -} - -/******************************* - Types -*******************************/ - -/* Text Container */ - -.ui.text.container { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - max-width: 700px !important; - line-height: 1.5; -} - -.ui.text.container { - font-size: 1.14285714rem; -} - -/* Fluid */ - -.ui.fluid.container { - width: 100%; -} - -/******************************* - Variations -*******************************/ - -.ui[class*="left aligned"].container { - text-align: left; -} - -.ui[class*="center aligned"].container { - text-align: center; -} - -.ui[class*="right aligned"].container { - text-align: right; -} - -.ui.justified.container { - text-align: justify; - hyphens: auto; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Divider - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Divider -*******************************/ - -.ui.divider { - margin: 1rem 0rem; - line-height: 1; - height: 0em; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 0.05em; - color: rgba(255, 255, 255, 0.95); - user-select: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/*-------------- - Basic ----------------*/ - -.ui.divider:not(.vertical):not(.horizontal) { - border-top: 1px solid rgba(24, 26, 28, 0.45); - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} - -/*-------------- - Coupling ----------------*/ - -/* Allow divider between each column row */ - -.ui.grid > .column + .divider, -.ui.grid > .row > .column + .divider { - left: auto; -} - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.divider { - display: table; - white-space: nowrap; - height: auto; - margin: ''; - line-height: 1; - text-align: center; -} - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; -} - -.ui.horizontal.divider:before { - background-position: right 1em top 50%; -} - -.ui.horizontal.divider:after { - background-position: left 1em top 50%; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.divider { - position: absolute; - z-index: 2; - top: 50%; - left: 50%; - margin: 0rem; - padding: 0em; - width: auto; - height: 50%; - line-height: 0em; - text-align: center; - transform: translateX(-50%); -} - -.ui.vertical.divider:before, -.ui.vertical.divider:after { - position: absolute; - left: 50%; - content: ''; - z-index: 3; - border-left: 1px solid rgba(24, 26, 28, 0.45); - border-right: 1px solid rgba(0, 0, 0, 0.1); - width: 0%; - height: calc(100% - 1rem ); -} - -.ui.vertical.divider:before { - top: -100%; -} - -.ui.vertical.divider:after { - top: auto; - bottom: 0px; -} - -/* Inside grid */ - -@media only screen and (max-width: 767px) { - .ui.stackable.grid .ui.vertical.divider, - .ui.grid .stackable.row .ui.vertical.divider { - display: table; - white-space: nowrap; - height: auto; - margin: ''; - overflow: hidden; - line-height: 1; - text-align: center; - position: static; - top: 0; - left: 0; - transform: none; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - position: static; - left: 0; - border-left: none; - border-right: none; - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before { - background-position: right 1em top 50%; - } - - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-position: left 1em top 50%; - } -} - -/*-------------- - Icon ----------------*/ - -.ui.divider > .icon { - margin: 0rem; - font-size: 1rem; - height: 1em; - vertical-align: middle; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.divider { - border-color: transparent !important; -} - -.ui.hidden.divider:before, -.ui.hidden.divider:after { - display: none; -} - -/*-------------- - Inverted ----------------*/ - -.ui.divider.inverted, -.ui.vertical.inverted.divider, -.ui.horizontal.inverted.divider { - color: #2E3235; -} - -.ui.divider.inverted, -.ui.divider.inverted:after, -.ui.divider.inverted:before { - border-top-color: rgba(24, 26, 28, 0.45) !important; - border-left-color: rgba(24, 26, 28, 0.45) !important; - border-bottom-color: rgba(255, 255, 255, 0.15) !important; - border-right-color: rgba(255, 255, 255, 0.15) !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.divider { - margin: 0em; -} - -/*-------------- - Clearing ----------------*/ - -.ui.clearing.divider { - clear: both; -} - -/*-------------- - Section ----------------*/ - -.ui.section.divider { - margin-top: 2rem; - margin-bottom: 2rem; -} - -/*-------------- - Sizes ----------------*/ - -.ui.divider { - font-size: 1rem; -} - -/******************************* - Theme Overrides -*******************************/ - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); -} - -@media only screen and (max-width: 767px) { - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); - } -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Flag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Flag -*******************************/ - -i.flag:not(.icon) { - display: inline-block; - width: 16px; - height: 11px; - line-height: 11px; - vertical-align: baseline; - margin: 0em 0.5em 0em 0em; - text-decoration: inherit; - speak: none; - font-smoothing: antialiased; - backface-visibility: hidden; -} - -/* Sprite */ - -i.flag:not(.icon):before { - display: inline-block; - content: ''; - background: url("./themes/default/assets/images/flags.png") no-repeat -108px -1976px; - width: 16px; - height: 11px; -} - -/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */ - -/******************************* - Theme Overrides -*******************************/ - -i.flag.ad:before, -i.flag.andorra:before { - background-position: 0px 0px; -} - -i.flag.ae:before, -i.flag.united.arab.emirates:before, -i.flag.uae:before { - background-position: 0px -26px; -} - -i.flag.af:before, -i.flag.afghanistan:before { - background-position: 0px -52px; -} - -i.flag.ag:before, -i.flag.antigua:before { - background-position: 0px -78px; -} - -i.flag.ai:before, -i.flag.anguilla:before { - background-position: 0px -104px; -} - -i.flag.al:before, -i.flag.albania:before { - background-position: 0px -130px; -} - -i.flag.am:before, -i.flag.armenia:before { - background-position: 0px -156px; -} - -i.flag.an:before, -i.flag.netherlands.antilles:before { - background-position: 0px -182px; -} - -i.flag.ao:before, -i.flag.angola:before { - background-position: 0px -208px; -} - -i.flag.ar:before, -i.flag.argentina:before { - background-position: 0px -234px; -} - -i.flag.as:before, -i.flag.american.samoa:before { - background-position: 0px -260px; -} - -i.flag.at:before, -i.flag.austria:before { - background-position: 0px -286px; -} - -i.flag.au:before, -i.flag.australia:before { - background-position: 0px -312px; -} - -i.flag.aw:before, -i.flag.aruba:before { - background-position: 0px -338px; -} - -i.flag.ax:before, -i.flag.aland.islands:before { - background-position: 0px -364px; -} - -i.flag.az:before, -i.flag.azerbaijan:before { - background-position: 0px -390px; -} - -i.flag.ba:before, -i.flag.bosnia:before { - background-position: 0px -416px; -} - -i.flag.bb:before, -i.flag.barbados:before { - background-position: 0px -442px; -} - -i.flag.bd:before, -i.flag.bangladesh:before { - background-position: 0px -468px; -} - -i.flag.be:before, -i.flag.belgium:before { - background-position: 0px -494px; -} - -i.flag.bf:before, -i.flag.burkina.faso:before { - background-position: 0px -520px; -} - -i.flag.bg:before, -i.flag.bulgaria:before { - background-position: 0px -546px; -} - -i.flag.bh:before, -i.flag.bahrain:before { - background-position: 0px -572px; -} - -i.flag.bi:before, -i.flag.burundi:before { - background-position: 0px -598px; -} - -i.flag.bj:before, -i.flag.benin:before { - background-position: 0px -624px; -} - -i.flag.bm:before, -i.flag.bermuda:before { - background-position: 0px -650px; -} - -i.flag.bn:before, -i.flag.brunei:before { - background-position: 0px -676px; -} - -i.flag.bo:before, -i.flag.bolivia:before { - background-position: 0px -702px; -} - -i.flag.br:before, -i.flag.brazil:before { - background-position: 0px -728px; -} - -i.flag.bs:before, -i.flag.bahamas:before { - background-position: 0px -754px; -} - -i.flag.bt:before, -i.flag.bhutan:before { - background-position: 0px -780px; -} - -i.flag.bv:before, -i.flag.bouvet.island:before { - background-position: 0px -806px; -} - -i.flag.bw:before, -i.flag.botswana:before { - background-position: 0px -832px; -} - -i.flag.by:before, -i.flag.belarus:before { - background-position: 0px -858px; -} - -i.flag.bz:before, -i.flag.belize:before { - background-position: 0px -884px; -} - -i.flag.ca:before, -i.flag.canada:before { - background-position: 0px -910px; -} - -i.flag.cc:before, -i.flag.cocos.islands:before { - background-position: 0px -962px; -} - -i.flag.cd:before, -i.flag.congo:before { - background-position: 0px -988px; -} - -i.flag.cf:before, -i.flag.central.african.republic:before { - background-position: 0px -1014px; -} - -i.flag.cg:before, -i.flag.congo.brazzaville:before { - background-position: 0px -1040px; -} - -i.flag.ch:before, -i.flag.switzerland:before { - background-position: 0px -1066px; -} - -i.flag.ci:before, -i.flag.cote.divoire:before { - background-position: 0px -1092px; -} - -i.flag.ck:before, -i.flag.cook.islands:before { - background-position: 0px -1118px; -} - -i.flag.cl:before, -i.flag.chile:before { - background-position: 0px -1144px; -} - -i.flag.cm:before, -i.flag.cameroon:before { - background-position: 0px -1170px; -} - -i.flag.cn:before, -i.flag.china:before { - background-position: 0px -1196px; -} - -i.flag.co:before, -i.flag.colombia:before { - background-position: 0px -1222px; -} - -i.flag.cr:before, -i.flag.costa.rica:before { - background-position: 0px -1248px; -} - -i.flag.cs:before, -i.flag.serbia:before { - background-position: 0px -1274px; -} - -i.flag.cu:before, -i.flag.cuba:before { - background-position: 0px -1300px; -} - -i.flag.cv:before, -i.flag.cape.verde:before { - background-position: 0px -1326px; -} - -i.flag.cx:before, -i.flag.christmas.island:before { - background-position: 0px -1352px; -} - -i.flag.cy:before, -i.flag.cyprus:before { - background-position: 0px -1378px; -} - -i.flag.cz:before, -i.flag.czech.republic:before { - background-position: 0px -1404px; -} - -i.flag.de:before, -i.flag.germany:before { - background-position: 0px -1430px; -} - -i.flag.dj:before, -i.flag.djibouti:before { - background-position: 0px -1456px; -} - -i.flag.dk:before, -i.flag.denmark:before { - background-position: 0px -1482px; -} - -i.flag.dm:before, -i.flag.dominica:before { - background-position: 0px -1508px; -} - -i.flag.do:before, -i.flag.dominican.republic:before { - background-position: 0px -1534px; -} - -i.flag.dz:before, -i.flag.algeria:before { - background-position: 0px -1560px; -} - -i.flag.ec:before, -i.flag.ecuador:before { - background-position: 0px -1586px; -} - -i.flag.ee:before, -i.flag.estonia:before { - background-position: 0px -1612px; -} - -i.flag.eg:before, -i.flag.egypt:before { - background-position: 0px -1638px; -} - -i.flag.eh:before, -i.flag.western.sahara:before { - background-position: 0px -1664px; -} - -i.flag.gb.eng:before, -i.flag.england:before { - background-position: 0px -1690px; -} - -i.flag.er:before, -i.flag.eritrea:before { - background-position: 0px -1716px; -} - -i.flag.es:before, -i.flag.spain:before { - background-position: 0px -1742px; -} - -i.flag.et:before, -i.flag.ethiopia:before { - background-position: 0px -1768px; -} - -i.flag.eu:before, -i.flag.european.union:before { - background-position: 0px -1794px; -} - -i.flag.fi:before, -i.flag.finland:before { - background-position: 0px -1846px; -} - -i.flag.fj:before, -i.flag.fiji:before { - background-position: 0px -1872px; -} - -i.flag.fk:before, -i.flag.falkland.islands:before { - background-position: 0px -1898px; -} - -i.flag.fm:before, -i.flag.micronesia:before { - background-position: 0px -1924px; -} - -i.flag.fo:before, -i.flag.faroe.islands:before { - background-position: 0px -1950px; -} - -i.flag.fr:before, -i.flag.france:before { - background-position: 0px -1976px; -} - -i.flag.ga:before, -i.flag.gabon:before { - background-position: -36px 0px; -} - -i.flag.gb:before, -i.flag.uk:before, -i.flag.united.kingdom:before { - background-position: -36px -26px; -} - -i.flag.gd:before, -i.flag.grenada:before { - background-position: -36px -52px; -} - -i.flag.ge:before, -i.flag.georgia:before { - background-position: -36px -78px; -} - -i.flag.gf:before, -i.flag.french.guiana:before { - background-position: -36px -104px; -} - -i.flag.gh:before, -i.flag.ghana:before { - background-position: -36px -130px; -} - -i.flag.gi:before, -i.flag.gibraltar:before { - background-position: -36px -156px; -} - -i.flag.gl:before, -i.flag.greenland:before { - background-position: -36px -182px; -} - -i.flag.gm:before, -i.flag.gambia:before { - background-position: -36px -208px; -} - -i.flag.gn:before, -i.flag.guinea:before { - background-position: -36px -234px; -} - -i.flag.gp:before, -i.flag.guadeloupe:before { - background-position: -36px -260px; -} - -i.flag.gq:before, -i.flag.equatorial.guinea:before { - background-position: -36px -286px; -} - -i.flag.gr:before, -i.flag.greece:before { - background-position: -36px -312px; -} - -i.flag.gs:before, -i.flag.sandwich.islands:before { - background-position: -36px -338px; -} - -i.flag.gt:before, -i.flag.guatemala:before { - background-position: -36px -364px; -} - -i.flag.gu:before, -i.flag.guam:before { - background-position: -36px -390px; -} - -i.flag.gw:before, -i.flag.guinea-bissau:before { - background-position: -36px -416px; -} - -i.flag.gy:before, -i.flag.guyana:before { - background-position: -36px -442px; -} - -i.flag.hk:before, -i.flag.hong.kong:before { - background-position: -36px -468px; -} - -i.flag.hm:before, -i.flag.heard.island:before { - background-position: -36px -494px; -} - -i.flag.hn:before, -i.flag.honduras:before { - background-position: -36px -520px; -} - -i.flag.hr:before, -i.flag.croatia:before { - background-position: -36px -546px; -} - -i.flag.ht:before, -i.flag.haiti:before { - background-position: -36px -572px; -} - -i.flag.hu:before, -i.flag.hungary:before { - background-position: -36px -598px; -} - -i.flag.id:before, -i.flag.indonesia:before { - background-position: -36px -624px; -} - -i.flag.ie:before, -i.flag.ireland:before { - background-position: -36px -650px; -} - -i.flag.il:before, -i.flag.israel:before { - background-position: -36px -676px; -} - -i.flag.in:before, -i.flag.india:before { - background-position: -36px -702px; -} - -i.flag.io:before, -i.flag.indian.ocean.territory:before { - background-position: -36px -728px; -} - -i.flag.iq:before, -i.flag.iraq:before { - background-position: -36px -754px; -} - -i.flag.ir:before, -i.flag.iran:before { - background-position: -36px -780px; -} - -i.flag.is:before, -i.flag.iceland:before { - background-position: -36px -806px; -} - -i.flag.it:before, -i.flag.italy:before { - background-position: -36px -832px; -} - -i.flag.jm:before, -i.flag.jamaica:before { - background-position: -36px -858px; -} - -i.flag.jo:before, -i.flag.jordan:before { - background-position: -36px -884px; -} - -i.flag.jp:before, -i.flag.japan:before { - background-position: -36px -910px; -} - -i.flag.ke:before, -i.flag.kenya:before { - background-position: -36px -936px; -} - -i.flag.kg:before, -i.flag.kyrgyzstan:before { - background-position: -36px -962px; -} - -i.flag.kh:before, -i.flag.cambodia:before { - background-position: -36px -988px; -} - -i.flag.ki:before, -i.flag.kiribati:before { - background-position: -36px -1014px; -} - -i.flag.km:before, -i.flag.comoros:before { - background-position: -36px -1040px; -} - -i.flag.kn:before, -i.flag.saint.kitts.and.nevis:before { - background-position: -36px -1066px; -} - -i.flag.kp:before, -i.flag.north.korea:before { - background-position: -36px -1092px; -} - -i.flag.kr:before, -i.flag.south.korea:before { - background-position: -36px -1118px; -} - -i.flag.kw:before, -i.flag.kuwait:before { - background-position: -36px -1144px; -} - -i.flag.ky:before, -i.flag.cayman.islands:before { - background-position: -36px -1170px; -} - -i.flag.kz:before, -i.flag.kazakhstan:before { - background-position: -36px -1196px; -} - -i.flag.la:before, -i.flag.laos:before { - background-position: -36px -1222px; -} - -i.flag.lb:before, -i.flag.lebanon:before { - background-position: -36px -1248px; -} - -i.flag.lc:before, -i.flag.saint.lucia:before { - background-position: -36px -1274px; -} - -i.flag.li:before, -i.flag.liechtenstein:before { - background-position: -36px -1300px; -} - -i.flag.lk:before, -i.flag.sri.lanka:before { - background-position: -36px -1326px; -} - -i.flag.lr:before, -i.flag.liberia:before { - background-position: -36px -1352px; -} - -i.flag.ls:before, -i.flag.lesotho:before { - background-position: -36px -1378px; -} - -i.flag.lt:before, -i.flag.lithuania:before { - background-position: -36px -1404px; -} - -i.flag.lu:before, -i.flag.luxembourg:before { - background-position: -36px -1430px; -} - -i.flag.lv:before, -i.flag.latvia:before { - background-position: -36px -1456px; -} - -i.flag.ly:before, -i.flag.libya:before { - background-position: -36px -1482px; -} - -i.flag.ma:before, -i.flag.morocco:before { - background-position: -36px -1508px; -} - -i.flag.mc:before, -i.flag.monaco:before { - background-position: -36px -1534px; -} - -i.flag.md:before, -i.flag.moldova:before { - background-position: -36px -1560px; -} - -i.flag.me:before, -i.flag.montenegro:before { - background-position: -36px -1586px; -} - -i.flag.mg:before, -i.flag.madagascar:before { - background-position: -36px -1613px; -} - -i.flag.mh:before, -i.flag.marshall.islands:before { - background-position: -36px -1639px; -} - -i.flag.mk:before, -i.flag.macedonia:before { - background-position: -36px -1665px; -} - -i.flag.ml:before, -i.flag.mali:before { - background-position: -36px -1691px; -} - -i.flag.mm:before, -i.flag.myanmar:before, -i.flag.burma:before { - background-position: -73px -1821px; -} - -i.flag.mn:before, -i.flag.mongolia:before { - background-position: -36px -1743px; -} - -i.flag.mo:before, -i.flag.macau:before { - background-position: -36px -1769px; -} - -i.flag.mp:before, -i.flag.northern.mariana.islands:before { - background-position: -36px -1795px; -} - -i.flag.mq:before, -i.flag.martinique:before { - background-position: -36px -1821px; -} - -i.flag.mr:before, -i.flag.mauritania:before { - background-position: -36px -1847px; -} - -i.flag.ms:before, -i.flag.montserrat:before { - background-position: -36px -1873px; -} - -i.flag.mt:before, -i.flag.malta:before { - background-position: -36px -1899px; -} - -i.flag.mu:before, -i.flag.mauritius:before { - background-position: -36px -1925px; -} - -i.flag.mv:before, -i.flag.maldives:before { - background-position: -36px -1951px; -} - -i.flag.mw:before, -i.flag.malawi:before { - background-position: -36px -1977px; -} - -i.flag.mx:before, -i.flag.mexico:before { - background-position: -72px 0px; -} - -i.flag.my:before, -i.flag.malaysia:before { - background-position: -72px -26px; -} - -i.flag.mz:before, -i.flag.mozambique:before { - background-position: -72px -52px; -} - -i.flag.na:before, -i.flag.namibia:before { - background-position: -72px -78px; -} - -i.flag.nc:before, -i.flag.new.caledonia:before { - background-position: -72px -104px; -} - -i.flag.ne:before, -i.flag.niger:before { - background-position: -72px -130px; -} - -i.flag.nf:before, -i.flag.norfolk.island:before { - background-position: -72px -156px; -} - -i.flag.ng:before, -i.flag.nigeria:before { - background-position: -72px -182px; -} - -i.flag.ni:before, -i.flag.nicaragua:before { - background-position: -72px -208px; -} - -i.flag.nl:before, -i.flag.netherlands:before { - background-position: -72px -234px; -} - -i.flag.no:before, -i.flag.norway:before { - background-position: -72px -260px; -} - -i.flag.np:before, -i.flag.nepal:before { - background-position: -72px -286px; -} - -i.flag.nr:before, -i.flag.nauru:before { - background-position: -72px -312px; -} - -i.flag.nu:before, -i.flag.niue:before { - background-position: -72px -338px; -} - -i.flag.nz:before, -i.flag.new.zealand:before { - background-position: -72px -364px; -} - -i.flag.om:before, -i.flag.oman:before { - background-position: -72px -390px; -} - -i.flag.pa:before, -i.flag.panama:before { - background-position: -72px -416px; -} - -i.flag.pe:before, -i.flag.peru:before { - background-position: -72px -442px; -} - -i.flag.pf:before, -i.flag.french.polynesia:before { - background-position: -72px -468px; -} - -i.flag.pg:before, -i.flag.new.guinea:before { - background-position: -72px -494px; -} - -i.flag.ph:before, -i.flag.philippines:before { - background-position: -72px -520px; -} - -i.flag.pk:before, -i.flag.pakistan:before { - background-position: -72px -546px; -} - -i.flag.pl:before, -i.flag.poland:before { - background-position: -72px -572px; -} - -i.flag.pm:before, -i.flag.saint.pierre:before { - background-position: -72px -598px; -} - -i.flag.pn:before, -i.flag.pitcairn.islands:before { - background-position: -72px -624px; -} - -i.flag.pr:before, -i.flag.puerto.rico:before { - background-position: -72px -650px; -} - -i.flag.ps:before, -i.flag.palestine:before { - background-position: -72px -676px; -} - -i.flag.pt:before, -i.flag.portugal:before { - background-position: -72px -702px; -} - -i.flag.pw:before, -i.flag.palau:before { - background-position: -72px -728px; -} - -i.flag.py:before, -i.flag.paraguay:before { - background-position: -72px -754px; -} - -i.flag.qa:before, -i.flag.qatar:before { - background-position: -72px -780px; -} - -i.flag.re:before, -i.flag.reunion:before { - background-position: -72px -806px; -} - -i.flag.ro:before, -i.flag.romania:before { - background-position: -72px -832px; -} - -i.flag.rs:before, -i.flag.serbia:before { - background-position: -72px -858px; -} - -i.flag.ru:before, -i.flag.russia:before { - background-position: -72px -884px; -} - -i.flag.rw:before, -i.flag.rwanda:before { - background-position: -72px -910px; -} - -i.flag.sa:before, -i.flag.saudi.arabia:before { - background-position: -72px -936px; -} - -i.flag.sb:before, -i.flag.solomon.islands:before { - background-position: -72px -962px; -} - -i.flag.sc:before, -i.flag.seychelles:before { - background-position: -72px -988px; -} - -i.flag.gb.sct:before, -i.flag.scotland:before { - background-position: -72px -1014px; -} - -i.flag.sd:before, -i.flag.sudan:before { - background-position: -72px -1040px; -} - -i.flag.se:before, -i.flag.sweden:before { - background-position: -72px -1066px; -} - -i.flag.sg:before, -i.flag.singapore:before { - background-position: -72px -1092px; -} - -i.flag.sh:before, -i.flag.saint.helena:before { - background-position: -72px -1118px; -} - -i.flag.si:before, -i.flag.slovenia:before { - background-position: -72px -1144px; -} - -i.flag.sj:before, -i.flag.svalbard:before, -i.flag.jan.mayen:before { - background-position: -72px -1170px; -} - -i.flag.sk:before, -i.flag.slovakia:before { - background-position: -72px -1196px; -} - -i.flag.sl:before, -i.flag.sierra.leone:before { - background-position: -72px -1222px; -} - -i.flag.sm:before, -i.flag.san.marino:before { - background-position: -72px -1248px; -} - -i.flag.sn:before, -i.flag.senegal:before { - background-position: -72px -1274px; -} - -i.flag.so:before, -i.flag.somalia:before { - background-position: -72px -1300px; -} - -i.flag.sr:before, -i.flag.suriname:before { - background-position: -72px -1326px; -} - -i.flag.st:before, -i.flag.sao.tome:before { - background-position: -72px -1352px; -} - -i.flag.sv:before, -i.flag.el.salvador:before { - background-position: -72px -1378px; -} - -i.flag.sy:before, -i.flag.syria:before { - background-position: -72px -1404px; -} - -i.flag.sz:before, -i.flag.swaziland:before { - background-position: -72px -1430px; -} - -i.flag.tc:before, -i.flag.caicos.islands:before { - background-position: -72px -1456px; -} - -i.flag.td:before, -i.flag.chad:before { - background-position: -72px -1482px; -} - -i.flag.tf:before, -i.flag.french.territories:before { - background-position: -72px -1508px; -} - -i.flag.tg:before, -i.flag.togo:before { - background-position: -72px -1534px; -} - -i.flag.th:before, -i.flag.thailand:before { - background-position: -72px -1560px; -} - -i.flag.tj:before, -i.flag.tajikistan:before { - background-position: -72px -1586px; -} - -i.flag.tk:before, -i.flag.tokelau:before { - background-position: -72px -1612px; -} - -i.flag.tl:before, -i.flag.timorleste:before { - background-position: -72px -1638px; -} - -i.flag.tm:before, -i.flag.turkmenistan:before { - background-position: -72px -1664px; -} - -i.flag.tn:before, -i.flag.tunisia:before { - background-position: -72px -1690px; -} - -i.flag.to:before, -i.flag.tonga:before { - background-position: -72px -1716px; -} - -i.flag.tr:before, -i.flag.turkey:before { - background-position: -72px -1742px; -} - -i.flag.tt:before, -i.flag.trinidad:before { - background-position: -72px -1768px; -} - -i.flag.tv:before, -i.flag.tuvalu:before { - background-position: -72px -1794px; -} - -i.flag.tw:before, -i.flag.taiwan:before { - background-position: -72px -1820px; -} - -i.flag.tz:before, -i.flag.tanzania:before { - background-position: -72px -1846px; -} - -i.flag.ua:before, -i.flag.ukraine:before { - background-position: -72px -1872px; -} - -i.flag.ug:before, -i.flag.uganda:before { - background-position: -72px -1898px; -} - -i.flag.um:before, -i.flag.us.minor.islands:before { - background-position: -72px -1924px; -} - -i.flag.us:before, -i.flag.america:before, -i.flag.united.states:before { - background-position: -72px -1950px; -} - -i.flag.uy:before, -i.flag.uruguay:before { - background-position: -72px -1976px; -} - -i.flag.uz:before, -i.flag.uzbekistan:before { - background-position: -108px 0px; -} - -i.flag.va:before, -i.flag.vatican.city:before { - background-position: -108px -26px; -} - -i.flag.vc:before, -i.flag.saint.vincent:before { - background-position: -108px -52px; -} - -i.flag.ve:before, -i.flag.venezuela:before { - background-position: -108px -78px; -} - -i.flag.vg:before, -i.flag.british.virgin.islands:before { - background-position: -108px -104px; -} - -i.flag.vi:before, -i.flag.us.virgin.islands:before { - background-position: -108px -130px; -} - -i.flag.vn:before, -i.flag.vietnam:before { - background-position: -108px -156px; -} - -i.flag.vu:before, -i.flag.vanuatu:before { - background-position: -108px -182px; -} - -i.flag.gb.wls:before, -i.flag.wales:before { - background-position: -108px -208px; -} - -i.flag.wf:before, -i.flag.wallis.and.futuna:before { - background-position: -108px -234px; -} - -i.flag.ws:before, -i.flag.samoa:before { - background-position: -108px -260px; -} - -i.flag.ye:before, -i.flag.yemen:before { - background-position: -108px -286px; -} - -i.flag.yt:before, -i.flag.mayotte:before { - background-position: -108px -312px; -} - -i.flag.za:before, -i.flag.south.africa:before { - background-position: -108px -338px; -} - -i.flag.zm:before, -i.flag.zambia:before { - background-position: -108px -364px; -} - -i.flag.zw:before, -i.flag.zimbabwe:before { - background-position: -108px -390px; -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Header - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Header -*******************************/ - -/* Standard */ - -.ui.header { - border: none; - margin: calc(2rem - 0.1428571428571429em) 0em 1rem; - padding: 0em 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-weight: 600; - line-height: 1.28571429em; - text-transform: none; - color: #DDDDDD; -} - -.ui.header:first-child { - margin-top: -0.14285714em; -} - -.ui.header:last-child { - margin-bottom: 0em; -} - -/*-------------- - Sub Header ----------------*/ - -.ui.header .sub.header { - display: block; - font-weight: normal; - padding: 0em; - margin: 0em; - font-size: 1rem; - line-height: 1.2em; - color: rgba(255, 255, 255, 0.6); -} - -/*-------------- - Icon ----------------*/ - -.ui.header > .icon { - display: table-cell; - opacity: 1; - font-size: 1.5em; - padding-top: 0em; - vertical-align: middle; -} - -/* With Text Node */ - -.ui.header .icon:only-child { - display: inline-block; - padding: 0em; - margin-right: 0.75rem; -} - -/*------------------- - Image ---------------------*/ - -.ui.header > .image:not(.icon), -.ui.header > img { - display: inline-block; - margin-top: 0.14285714em; - width: 2.5em; - height: auto; - vertical-align: middle; -} - -.ui.header > .image:not(.icon):only-child, -.ui.header > img:only-child { - margin-right: 0.75rem; -} - -/*-------------- - Content ----------------*/ - -.ui.header .content { - display: inline-block; - vertical-align: top; -} - -/* After Image */ - -.ui.header > img + .content, -.ui.header > .image + .content { - padding-left: 0.75rem; - vertical-align: middle; -} - -/* After Icon */ - -.ui.header > .icon + .content { - padding-left: 0.75rem; - display: table-cell; - vertical-align: middle; -} - -/*-------------- - Loose Coupling ----------------*/ - -.ui.header .ui.label { - font-size: ''; - margin-left: 0.5rem; - vertical-align: middle; -} - -/* Positioning */ - -.ui.header + p { - margin-top: 0em; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Page ----------------*/ - -h1.ui.header { - font-size: 2rem; -} - -h2.ui.header { - font-size: 1.71428571rem; -} - -h3.ui.header { - font-size: 1.28571429rem; -} - -h4.ui.header { - font-size: 1.07142857rem; -} - -h5.ui.header { - font-size: 1rem; -} - -/* Sub Header */ - -h1.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h2.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h3.ui.header .sub.header { - font-size: 1rem; -} - -h4.ui.header .sub.header { - font-size: 1rem; -} - -h5.ui.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- - Content Heading ----------------*/ - -.ui.huge.header { - min-height: 1em; - font-size: 2em; -} - -.ui.large.header { - font-size: 1.71428571em; -} - -.ui.medium.header { - font-size: 1.28571429em; -} - -.ui.small.header { - font-size: 1.07142857em; -} - -.ui.tiny.header { - font-size: 1em; -} - -/* Sub Header */ - -.ui.huge.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.large.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.header .sub.header { - font-size: 1rem; -} - -.ui.small.header .sub.header { - font-size: 1rem; -} - -.ui.tiny.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- - Sub Heading ----------------*/ - -.ui.sub.header { - padding: 0em; - margin-bottom: 0.14285714rem; - font-weight: 600; - font-size: 0.85714286em; - text-transform: uppercase; - color: ''; -} - -.ui.small.sub.header { - font-size: 0.78571429em; -} - -.ui.sub.header { - font-size: 0.85714286em; -} - -.ui.large.sub.header { - font-size: 0.92857143em; -} - -.ui.huge.sub.header { - font-size: 1em; -} - -/*------------------- - Icon ---------------------*/ - -.ui.icon.header { - display: inline-block; - text-align: center; - margin: 2rem 0em 1rem; -} - -.ui.icon.header:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.icon.header:first-child { - margin-top: 0em; -} - -.ui.icon.header .icon { - float: none; - display: block; - width: auto; - height: auto; - line-height: 1; - padding: 0em; - font-size: 3em; - margin: 0em auto 0.5rem; - opacity: 1; -} - -.ui.icon.header .content { - display: block; - padding: 0em; -} - -.ui.icon.header .circular.icon { - font-size: 2em; -} - -.ui.icon.header .square.icon { - font-size: 2em; -} - -.ui.block.icon.header .icon { - margin-bottom: 0em; -} - -.ui.icon.header.aligned { - margin-left: auto; - margin-right: auto; - display: block; -} - -/******************************* - States -*******************************/ - -.ui.disabled.header { - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.header { - color: #2E3235; -} - -.ui.inverted.header .sub.header { - color: rgba(0, 0, 0, 0.8); -} - -.ui.inverted.attached.header { - background: #545454 linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - box-shadow: none; - border-color: transparent; -} - -.ui.inverted.block.header { - background: #545454 linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - box-shadow: none; -} - -.ui.inverted.block.header { - border-bottom: none; -} - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.header { - color: #DB2828 !important; -} - -a.ui.red.header:hover { - color: #d01919 !important; -} - -.ui.red.dividing.header { - border-bottom: 2px solid #DB2828; -} - -/* Inverted */ - -.ui.inverted.red.header { - color: #FF695E !important; -} - -a.ui.inverted.red.header:hover { - color: #ff5144 !important; -} - -/*--- Orange ---*/ - -.ui.orange.header { - color: #C06D36 !important; -} - -a.ui.orange.header:hover { - color: #b2602a !important; -} - -.ui.orange.dividing.header { - border-bottom: 2px solid #C06D36; -} - -/* Inverted */ - -.ui.inverted.orange.header { - color: #FF851B !important; -} - -a.ui.inverted.orange.header:hover { - color: #ff7701 !important; -} - -/*--- Olive ---*/ - -.ui.olive.header { - color: #B5CC18 !important; -} - -a.ui.olive.header:hover { - color: #a7bd0d !important; -} - -.ui.olive.dividing.header { - border-bottom: 2px solid #B5CC18; -} - -/* Inverted */ - -.ui.inverted.olive.header { - color: #D9E778 !important; -} - -a.ui.inverted.olive.header:hover { - color: #d8ea5c !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.header { - color: #FBBD08 !important; -} - -a.ui.yellow.header:hover { - color: #eaae00 !important; -} - -.ui.yellow.dividing.header { - border-bottom: 2px solid #FBBD08; -} - -/* Inverted */ - -.ui.inverted.yellow.header { - color: #FFE21F !important; -} - -a.ui.inverted.yellow.header:hover { - color: #ffdf05 !important; -} - -/*--- Green ---*/ - -.ui.green.header { - color: #21BA45 !important; -} - -a.ui.green.header:hover { - color: #16ab39 !important; -} - -.ui.green.dividing.header { - border-bottom: 2px solid #21BA45; -} - -/* Inverted */ - -.ui.inverted.green.header { - color: #2ECC40 !important; -} - -a.ui.inverted.green.header:hover { - color: #22be34 !important; -} - -/*--- Teal ---*/ - -.ui.teal.header { - color: #00B5AD !important; -} - -a.ui.teal.header:hover { - color: #009c95 !important; -} - -.ui.teal.dividing.header { - border-bottom: 2px solid #00B5AD; -} - -/* Inverted */ - -.ui.inverted.teal.header { - color: #6DFFFF !important; -} - -a.ui.inverted.teal.header:hover { - color: #54ffff !important; -} - -/*--- Blue ---*/ - -.ui.blue.header { - color: #2185D0 !important; -} - -a.ui.blue.header:hover { - color: #1678c2 !important; -} - -.ui.blue.dividing.header { - border-bottom: 2px solid #2185D0; -} - -/* Inverted */ - -.ui.inverted.blue.header { - color: #54C8FF !important; -} - -a.ui.inverted.blue.header:hover { - color: #3ac0ff !important; -} - -/*--- Violet ---*/ - -.ui.violet.header { - color: #6435C9 !important; -} - -a.ui.violet.header:hover { - color: #5829bb !important; -} - -.ui.violet.dividing.header { - border-bottom: 2px solid #6435C9; -} - -/* Inverted */ - -.ui.inverted.violet.header { - color: #A291FB !important; -} - -a.ui.inverted.violet.header:hover { - color: #8a73ff !important; -} - -/*--- Purple ---*/ - -.ui.purple.header { - color: #A333C8 !important; -} - -a.ui.purple.header:hover { - color: #9627ba !important; -} - -.ui.purple.dividing.header { - border-bottom: 2px solid #A333C8; -} - -/* Inverted */ - -.ui.inverted.purple.header { - color: #DC73FF !important; -} - -a.ui.inverted.purple.header:hover { - color: #d65aff !important; -} - -/*--- Pink ---*/ - -.ui.pink.header { - color: #E03997 !important; -} - -a.ui.pink.header:hover { - color: #e61a8d !important; -} - -.ui.pink.dividing.header { - border-bottom: 2px solid #E03997; -} - -/* Inverted */ - -.ui.inverted.pink.header { - color: #FF8EDF !important; -} - -a.ui.inverted.pink.header:hover { - color: #ff74d8 !important; -} - -/*--- Brown ---*/ - -.ui.brown.header { - color: #A5673F !important; -} - -a.ui.brown.header:hover { - color: #975b33 !important; -} - -.ui.brown.dividing.header { - border-bottom: 2px solid #A5673F; -} - -/* Inverted */ - -.ui.inverted.brown.header { - color: #D67C1C !important; -} - -a.ui.inverted.brown.header:hover { - color: #c86f11 !important; -} - -/*--- Grey ---*/ - -.ui.grey.header { - color: #767676 !important; -} - -a.ui.grey.header:hover { - color: #838383 !important; -} - -.ui.grey.dividing.header { - border-bottom: 2px solid #767676; -} - -/* Inverted */ - -.ui.inverted.grey.header { - color: #DCDDDE !important; -} - -a.ui.inverted.grey.header:hover { - color: #cfd0d2 !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui.left.aligned.header { - text-align: left; -} - -.ui.right.aligned.header { - text-align: right; -} - -.ui.centered.header, -.ui.center.aligned.header { - text-align: center; -} - -.ui.justified.header { - text-align: justify; -} - -.ui.justified.header:after { - display: inline-block; - content: ''; - width: 100%; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.header, -.ui[class*="left floated"].header { - float: left; - margin-top: 0em; - margin-right: 0.5em; -} - -.ui[class*="right floated"].header { - float: right; - margin-top: 0em; - margin-left: 0.5em; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.header { - padding: 0em; -} - -/*------------------- - Dividing ---------------------*/ - -.ui.dividing.header { - padding-bottom: 0.21428571rem; - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.dividing.header .sub.header { - padding-bottom: 0.21428571rem; -} - -.ui.dividing.header .icon { - margin-bottom: 0em; -} - -.ui.inverted.dividing.header { - border-bottom-color: rgba(0, 0, 0, 0.1); -} - -/*------------------- - Block ---------------------*/ - -.ui.block.header { - background: #4B5257; - padding: 0.78571429rem 1rem; - box-shadow: none; - border: 1px solid #3B3C3E; - border-radius: 0.35714286rem; -} - -.ui.tiny.block.header { - font-size: 0.85714286rem; -} - -.ui.small.block.header { - font-size: 0.92857143rem; -} - -.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1rem; -} - -.ui.large.block.header { - font-size: 1.14285714rem; -} - -.ui.huge.block.header { - font-size: 1.42857143rem; -} - -/*------------------- - Attached ---------------------*/ - -.ui.attached.header { - background: #2E3235; - padding: 0.78571429rem 1rem; - margin-left: -1px; - margin-right: -1px; - box-shadow: none; - border: 1px solid #3B3C3E; -} - -.ui.attached.block.header { - background: #4B5257; -} - -.ui.attached:not(.top):not(.bottom).header { - margin-top: 0em; - margin-bottom: 0em; - border-top: none; - border-radius: 0em; -} - -.ui.top.attached.header { - margin-bottom: 0em; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.bottom.attached.header { - margin-top: 0em; - border-top: none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -/* Attached Sizes */ - -.ui.tiny.attached.header { - font-size: 0.85714286em; -} - -.ui.small.attached.header { - font-size: 0.92857143em; -} - -.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1em; -} - -.ui.large.attached.header { - font-size: 1.14285714em; -} - -.ui.huge.attached.header { - font-size: 1.42857143em; -} - -/*------------------- - Sizing ---------------------*/ - -.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1.28571429em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Icon - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Icon -*******************************/ - -@font-face { - font-family: 'Icons'; - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.eot"); - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.woff2") format('woff2'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.woff") format('woff'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.ttf") format('truetype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.svg#icons") format('svg'); - font-style: normal; - font-weight: normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; -} - -i.icon { - display: inline-block; - opacity: 1; - margin: 0em 0.25rem 0em 0em; - width: 1.18em; - height: 1em; - font-family: 'Icons'; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - text-align: center; - speak: none; - font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - backface-visibility: hidden; -} - -i.icon:before { - background: none !important; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Loading ----------------*/ - -i.icon.loading { - height: 1em; - line-height: 1; - animation: icon-loading 2s linear infinite; -} - -@keyframes icon-loading { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -/******************************* - States -*******************************/ - -i.icon.hover { - opacity: 1 !important; -} - -i.icon.active { - opacity: 1 !important; -} - -i.emphasized.icon { - opacity: 1 !important; -} - -i.disabled.icon { - opacity: 0.45 !important; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Fitted ---------------------*/ - -i.fitted.icon { - width: auto; - margin: 0em !important; -} - -/*------------------- - Link ---------------------*/ - -i.link.icon, -i.link.icons { - cursor: pointer; - opacity: 0.8; - transition: opacity 0.1s ease; -} - -i.link.icon:hover, -i.link.icons:hover { - opacity: 1 !important; -} - -/*------------------- - Circular ---------------------*/ - -i.circular.icon { - border-radius: 500em !important; - line-height: 1 !important; - padding: 0.5em 0em !important; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - width: 2em !important; - height: 2em !important; -} - -i.circular.inverted.icon { - border: none; - box-shadow: none; -} - -/*------------------- - Flipped ---------------------*/ - -i.flipped.icon, -i.horizontally.flipped.icon { - transform: scale(-1, 1); -} - -i.vertically.flipped.icon { - transform: scale(1, -1); -} - -/*------------------- - Rotated ---------------------*/ - -i.rotated.icon, -i.right.rotated.icon, -i.clockwise.rotated.icon { - transform: rotate(90deg); -} - -i.left.rotated.icon, -i.counterclockwise.rotated.icon { - transform: rotate(-90deg); -} - -/*------------------- - Bordered ---------------------*/ - -i.bordered.icon { - line-height: 1; - vertical-align: baseline; - width: 2em; - height: 2em; - padding: 0.5em 0em !important; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; -} - -i.bordered.inverted.icon { - border: none; - box-shadow: none; -} - -/*------------------- - Inverted ---------------------*/ - -/* Inverted Shapes */ - -i.inverted.bordered.icon, -i.inverted.circular.icon { - background-color: #F9FAFB !important; - color: #2E3235 !important; -} - -i.inverted.icon { - color: #2E3235; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -i.red.icon { - color: #DB2828 !important; -} - -i.inverted.red.icon { - color: #FF695E !important; -} - -i.inverted.bordered.red.icon, -i.inverted.circular.red.icon { - background-color: #DB2828 !important; - color: #2E3235 !important; -} - -/* Orange */ - -i.orange.icon { - color: #C06D36 !important; -} - -i.inverted.orange.icon { - color: #FF851B !important; -} - -i.inverted.bordered.orange.icon, -i.inverted.circular.orange.icon { - background-color: #C06D36 !important; - color: #2E3235 !important; -} - -/* Yellow */ - -i.yellow.icon { - color: #FBBD08 !important; -} - -i.inverted.yellow.icon { - color: #FFE21F !important; -} - -i.inverted.bordered.yellow.icon, -i.inverted.circular.yellow.icon { - background-color: #FBBD08 !important; - color: #2E3235 !important; -} - -/* Olive */ - -i.olive.icon { - color: #B5CC18 !important; -} - -i.inverted.olive.icon { - color: #D9E778 !important; -} - -i.inverted.bordered.olive.icon, -i.inverted.circular.olive.icon { - background-color: #B5CC18 !important; - color: #2E3235 !important; -} - -/* Green */ - -i.green.icon { - color: #21BA45 !important; -} - -i.inverted.green.icon { - color: #2ECC40 !important; -} - -i.inverted.bordered.green.icon, -i.inverted.circular.green.icon { - background-color: #21BA45 !important; - color: #2E3235 !important; -} - -/* Teal */ - -i.teal.icon { - color: #00B5AD !important; -} - -i.inverted.teal.icon { - color: #6DFFFF !important; -} - -i.inverted.bordered.teal.icon, -i.inverted.circular.teal.icon { - background-color: #00B5AD !important; - color: #2E3235 !important; -} - -/* Blue */ - -i.blue.icon { - color: #2185D0 !important; -} - -i.inverted.blue.icon { - color: #54C8FF !important; -} - -i.inverted.bordered.blue.icon, -i.inverted.circular.blue.icon { - background-color: #2185D0 !important; - color: #2E3235 !important; -} - -/* Violet */ - -i.violet.icon { - color: #6435C9 !important; -} - -i.inverted.violet.icon { - color: #A291FB !important; -} - -i.inverted.bordered.violet.icon, -i.inverted.circular.violet.icon { - background-color: #6435C9 !important; - color: #2E3235 !important; -} - -/* Purple */ - -i.purple.icon { - color: #A333C8 !important; -} - -i.inverted.purple.icon { - color: #DC73FF !important; -} - -i.inverted.bordered.purple.icon, -i.inverted.circular.purple.icon { - background-color: #A333C8 !important; - color: #2E3235 !important; -} - -/* Pink */ - -i.pink.icon { - color: #E03997 !important; -} - -i.inverted.pink.icon { - color: #FF8EDF !important; -} - -i.inverted.bordered.pink.icon, -i.inverted.circular.pink.icon { - background-color: #E03997 !important; - color: #2E3235 !important; -} - -/* Brown */ - -i.brown.icon { - color: #A5673F !important; -} - -i.inverted.brown.icon { - color: #D67C1C !important; -} - -i.inverted.bordered.brown.icon, -i.inverted.circular.brown.icon { - background-color: #A5673F !important; - color: #2E3235 !important; -} - -/* Grey */ - -i.grey.icon { - color: #767676 !important; -} - -i.inverted.grey.icon { - color: #DCDDDE !important; -} - -i.inverted.bordered.grey.icon, -i.inverted.circular.grey.icon { - background-color: #767676 !important; - color: #2E3235 !important; -} - -/* Black */ - -i.black.icon { - color: #F9FAFB !important; -} - -i.inverted.black.icon { - color: #545454 !important; -} - -i.inverted.bordered.black.icon, -i.inverted.circular.black.icon { - background-color: #F9FAFB !important; - color: #2E3235 !important; -} - -/*------------------- - Sizes ---------------------*/ - -i.mini.icon, -i.mini.icons { - line-height: 1; - font-size: 0.4em; -} - -i.tiny.icon, -i.tiny.icons { - line-height: 1; - font-size: 0.5em; -} - -i.small.icon, -i.small.icons { - line-height: 1; - font-size: 0.75em; -} - -i.icon, -i.icons { - font-size: 1em; -} - -i.large.icon, -i.large.icons { - line-height: 1; - vertical-align: middle; - font-size: 1.5em; -} - -i.big.icon, -i.big.icons { - line-height: 1; - vertical-align: middle; - font-size: 2em; -} - -i.huge.icon, -i.huge.icons { - line-height: 1; - vertical-align: middle; - font-size: 4em; -} - -i.massive.icon, -i.massive.icons { - line-height: 1; - vertical-align: middle; - font-size: 8em; -} - -/******************************* - Groups -*******************************/ - -i.icons { - display: inline-block; - position: relative; - line-height: 1; -} - -i.icons .icon { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - margin: 0em; - margin: 0; -} - -i.icons .icon:first-child { - position: static; - width: auto; - height: auto; - vertical-align: top; - transform: none; - margin-right: 0.25rem; -} - -/* Corner Icon */ - -i.icons .corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; - transform: none; - font-size: 0.45em; - text-shadow: -1px -1px 0 #2E3235, 1px -1px 0 #2E3235, -1px 1px 0 #2E3235, 1px 1px 0 #2E3235; -} - -i.icons .top.right.corner.icon { - top: 0; - left: auto; - right: 0; - bottom: auto; -} - -i.icons .top.left.corner.icon { - top: 0; - left: 0; - right: auto; - bottom: auto; -} - -i.icons .bottom.left.corner.icon { - top: auto; - left: 0; - right: auto; - bottom: 0; -} - -i.icons .bottom.right.corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; -} - -i.icons .inverted.corner.icon { - text-shadow: -1px -1px 0 #F9FAFB, 1px -1px 0 #F9FAFB, -1px 1px 0 #F9FAFB, 1px 1px 0 #F9FAFB; -} - -/* - * Font Awesome 5.0.8 by @fontawesome - http://fontawesome.io - @fontawesome - * License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License) - */ - -/******************************* - -Semantic-UI integration of font-awesome : - -///class names are separated -i.icon.circle => i.icon.circle -i.icon.circle-o => i.icon.circle.outline - -//abbreviation are replaced by full letters: -i.icon.ellipsis-h => i.icon.ellipsis.horizontal -i.icon.ellipsis-v => i.icon.ellipsis.vertical -.alpha => .i.icon.alphabet -.asc => .i.icon.ascending -.desc => .i.icon.descending -.alt =>.alternate - -ASCII order is conserved for easier maintenance. - -Icons that only have one style 'outline', 'square' etc do not require this class -for instance `lemon icon` not `lemon outline icon` since there is only one lemon - -*******************************/ - -/******************************* - Icons -*******************************/ - -/* Deprecated *In/Out Naming Conflict) */ - -i.icon.linkedin.in:before { - content: "\f0e1"; -} - -i.icon.zoom.in:before { - content: "\f00e"; -} - -i.icon.zoom.out:before { - content: "\f010"; -} - -i.icon.sign.in:before { - content: "\f2f6"; -} - -i.icon.in.cart:before { - content: "\f218"; -} - -i.icon.log.out:before { - content: "\f2f5"; -} - -i.icon.sign.out:before { - content: "\f2f5"; -} - -/* Icons */ - -i.icon.\35 00px:before { - content: "\f26e"; -} - -i.icon.accessible.icon:before { - content: "\f368"; -} - -i.icon.accusoft:before { - content: "\f369"; -} - -i.icon.address.book:before { - content: "\f2b9"; -} - -i.icon.address.card:before { - content: "\f2bb"; -} - -i.icon.adjust:before { - content: "\f042"; -} - -i.icon.adn:before { - content: "\f170"; -} - -i.icon.adversal:before { - content: "\f36a"; -} - -i.icon.affiliatetheme:before { - content: "\f36b"; -} - -i.icon.algolia:before { - content: "\f36c"; -} - -i.icon.align.center:before { - content: "\f037"; -} - -i.icon.align.justify:before { - content: "\f039"; -} - -i.icon.align.left:before { - content: "\f036"; -} - -i.icon.align.right:before { - content: "\f038"; -} - -i.icon.amazon:before { - content: "\f270"; -} - -i.icon.amazon.pay:before { - content: "\f42c"; -} - -i.icon.ambulance:before { - content: "\f0f9"; -} - -i.icon.american.sign.language.interpreting:before { - content: "\f2a3"; -} - -i.icon.amilia:before { - content: "\f36d"; -} - -i.icon.anchor:before { - content: "\f13d"; -} - -i.icon.android:before { - content: "\f17b"; -} - -i.icon.angellist:before { - content: "\f209"; -} - -i.icon.angle.double.down:before { - content: "\f103"; -} - -i.icon.angle.double.left:before { - content: "\f100"; -} - -i.icon.angle.double.right:before { - content: "\f101"; -} - -i.icon.angle.double.up:before { - content: "\f102"; -} - -i.icon.angle.down:before { - content: "\f107"; -} - -i.icon.angle.left:before { - content: "\f104"; -} - -i.icon.angle.right:before { - content: "\f105"; -} - -i.icon.angle.up:before { - content: "\f106"; -} - -i.icon.angrycreative:before { - content: "\f36e"; -} - -i.icon.angular:before { - content: "\f420"; -} - -i.icon.app.store:before { - content: "\f36f"; -} - -i.icon.app.store.ios:before { - content: "\f370"; -} - -i.icon.apper:before { - content: "\f371"; -} - -i.icon.apple:before { - content: "\f179"; -} - -i.icon.apple.pay:before { - content: "\f415"; -} - -i.icon.archive:before { - content: "\f187"; -} - -i.icon.arrow.alternate.circle.down:before { - content: "\f358"; -} - -i.icon.arrow.alternate.circle.left:before { - content: "\f359"; -} - -i.icon.arrow.alternate.circle.right:before { - content: "\f35a"; -} - -i.icon.arrow.alternate.circle.up:before { - content: "\f35b"; -} - -i.icon.arrow.circle.down:before { - content: "\f0ab"; -} - -i.icon.arrow.circle.left:before { - content: "\f0a8"; -} - -i.icon.arrow.circle.right:before { - content: "\f0a9"; -} - -i.icon.arrow.circle.up:before { - content: "\f0aa"; -} - -i.icon.arrow.down:before { - content: "\f063"; -} - -i.icon.arrow.left:before { - content: "\f060"; -} - -i.icon.arrow.right:before { - content: "\f061"; -} - -i.icon.arrow.up:before { - content: "\f062"; -} - -i.icon.arrows.alternate:before { - content: "\f0b2"; -} - -i.icon.arrows.alternate.horizontal:before { - content: "\f337"; -} - -i.icon.arrows.alternate.vertical:before { - content: "\f338"; -} - -i.icon.assistive.listening.systems:before { - content: "\f2a2"; -} - -i.icon.asterisk:before { - content: "\f069"; -} - -i.icon.asymmetrik:before { - content: "\f372"; -} - -i.icon.at:before { - content: "\f1fa"; -} - -i.icon.audible:before { - content: "\f373"; -} - -i.icon.audio.description:before { - content: "\f29e"; -} - -i.icon.autoprefixer:before { - content: "\f41c"; -} - -i.icon.avianex:before { - content: "\f374"; -} - -i.icon.aviato:before { - content: "\f421"; -} - -i.icon.aws:before { - content: "\f375"; -} - -i.icon.backward:before { - content: "\f04a"; -} - -i.icon.balance.scale:before { - content: "\f24e"; -} - -i.icon.ban:before { - content: "\f05e"; -} - -i.icon.band.aid:before { - content: "\f462"; -} - -i.icon.bandcamp:before { - content: "\f2d5"; -} - -i.icon.barcode:before { - content: "\f02a"; -} - -i.icon.bars:before { - content: "\f0c9"; -} - -i.icon.baseball.ball:before { - content: "\f433"; -} - -i.icon.basketball.ball:before { - content: "\f434"; -} - -i.icon.bath:before { - content: "\f2cd"; -} - -i.icon.battery.empty:before { - content: "\f244"; -} - -i.icon.battery.full:before { - content: "\f240"; -} - -i.icon.battery.half:before { - content: "\f242"; -} - -i.icon.battery.quarter:before { - content: "\f243"; -} - -i.icon.battery.three.quarters:before { - content: "\f241"; -} - -i.icon.bed:before { - content: "\f236"; -} - -i.icon.beer:before { - content: "\f0fc"; -} - -i.icon.behance:before { - content: "\f1b4"; -} - -i.icon.behance.square:before { - content: "\f1b5"; -} - -i.icon.bell:before { - content: "\f0f3"; -} - -i.icon.bell.slash:before { - content: "\f1f6"; -} - -i.icon.bicycle:before { - content: "\f206"; -} - -i.icon.bimobject:before { - content: "\f378"; -} - -i.icon.binoculars:before { - content: "\f1e5"; -} - -i.icon.birthday.cake:before { - content: "\f1fd"; -} - -i.icon.bitbucket:before { - content: "\f171"; -} - -i.icon.bitcoin:before { - content: "\f379"; -} - -i.icon.bity:before { - content: "\f37a"; -} - -i.icon.black.tie:before { - content: "\f27e"; -} - -i.icon.blackberry:before { - content: "\f37b"; -} - -i.icon.blind:before { - content: "\f29d"; -} - -i.icon.blogger:before { - content: "\f37c"; -} - -i.icon.blogger.b:before { - content: "\f37d"; -} - -i.icon.bluetooth:before { - content: "\f293"; -} - -i.icon.bluetooth.b:before { - content: "\f294"; -} - -i.icon.bold:before { - content: "\f032"; -} - -i.icon.bolt:before { - content: "\f0e7"; -} - -i.icon.bomb:before { - content: "\f1e2"; -} - -i.icon.book:before { - content: "\f02d"; -} - -i.icon.bookmark:before { - content: "\f02e"; -} - -i.icon.bowling.ball:before { - content: "\f436"; -} - -i.icon.box:before { - content: "\f466"; -} - -i.icon.boxes:before { - content: "\f468"; -} - -i.icon.braille:before { - content: "\f2a1"; -} - -i.icon.briefcase:before { - content: "\f0b1"; -} - -i.icon.btc:before { - content: "\f15a"; -} - -i.icon.bug:before { - content: "\f188"; -} - -i.icon.building:before { - content: "\f1ad"; -} - -i.icon.bullhorn:before { - content: "\f0a1"; -} - -i.icon.bullseye:before { - content: "\f140"; -} - -i.icon.buromobelexperte:before { - content: "\f37f"; -} - -i.icon.bus:before { - content: "\f207"; -} - -i.icon.buysellads:before { - content: "\f20d"; -} - -i.icon.calculator:before { - content: "\f1ec"; -} - -i.icon.calendar:before { - content: "\f133"; -} - -i.icon.calendar.alternate:before { - content: "\f073"; -} - -i.icon.calendar.check:before { - content: "\f274"; -} - -i.icon.calendar.minus:before { - content: "\f272"; -} - -i.icon.calendar.plus:before { - content: "\f271"; -} - -i.icon.calendar.times:before { - content: "\f273"; -} - -i.icon.camera:before { - content: "\f030"; -} - -i.icon.camera.retro:before { - content: "\f083"; -} - -i.icon.car:before { - content: "\f1b9"; -} - -i.icon.caret.down:before { - content: "\f0d7"; -} - -i.icon.caret.left:before { - content: "\f0d9"; -} - -i.icon.caret.right:before { - content: "\f0da"; -} - -i.icon.caret.square.down:before { - content: "\f150"; -} - -i.icon.caret.square.left:before { - content: "\f191"; -} - -i.icon.caret.square.right:before { - content: "\f152"; -} - -i.icon.caret.square.up:before { - content: "\f151"; -} - -i.icon.caret.up:before { - content: "\f0d8"; -} - -i.icon.cart.arrow.down:before { - content: "\f218"; -} - -i.icon.cart.plus:before { - content: "\f217"; -} - -i.icon.cc.amazon.pay:before { - content: "\f42d"; -} - -i.icon.cc.amex:before { - content: "\f1f3"; -} - -i.icon.cc.apple.pay:before { - content: "\f416"; -} - -i.icon.cc.diners.club:before { - content: "\f24c"; -} - -i.icon.cc.discover:before { - content: "\f1f2"; -} - -i.icon.cc.jcb:before { - content: "\f24b"; -} - -i.icon.cc.mastercard:before { - content: "\f1f1"; -} - -i.icon.cc.paypal:before { - content: "\f1f4"; -} - -i.icon.cc.stripe:before { - content: "\f1f5"; -} - -i.icon.cc.visa:before { - content: "\f1f0"; -} - -i.icon.centercode:before { - content: "\f380"; -} - -i.icon.certificate:before { - content: "\f0a3"; -} - -i.icon.chart.area:before { - content: "\f1fe"; -} - -i.icon.chart.bar:before { - content: "\f080"; -} - -i.icon.chart.line:before { - content: "\f201"; -} - -i.icon.chart.pie:before { - content: "\f200"; -} - -i.icon.check:before { - content: "\f00c"; -} - -i.icon.check.circle:before { - content: "\f058"; -} - -i.icon.check.square:before { - content: "\f14a"; -} - -i.icon.chess:before { - content: "\f439"; -} - -i.icon.chess.bishop:before { - content: "\f43a"; -} - -i.icon.chess.board:before { - content: "\f43c"; -} - -i.icon.chess.king:before { - content: "\f43f"; -} - -i.icon.chess.knight:before { - content: "\f441"; -} - -i.icon.chess.pawn:before { - content: "\f443"; -} - -i.icon.chess.queen:before { - content: "\f445"; -} - -i.icon.chess.rook:before { - content: "\f447"; -} - -i.icon.chevron.circle.down:before { - content: "\f13a"; -} - -i.icon.chevron.circle.left:before { - content: "\f137"; -} - -i.icon.chevron.circle.right:before { - content: "\f138"; -} - -i.icon.chevron.circle.up:before { - content: "\f139"; -} - -i.icon.chevron.down:before { - content: "\f078"; -} - -i.icon.chevron.left:before { - content: "\f053"; -} - -i.icon.chevron.right:before { - content: "\f054"; -} - -i.icon.chevron.up:before { - content: "\f077"; -} - -i.icon.child:before { - content: "\f1ae"; -} - -i.icon.chrome:before { - content: "\f268"; -} - -i.icon.circle:before { - content: "\f111"; -} - -i.icon.circle.notch:before { - content: "\f1ce"; -} - -i.icon.clipboard:before { - content: "\f328"; -} - -i.icon.clipboard.check:before { - content: "\f46c"; -} - -i.icon.clipboard.list:before { - content: "\f46d"; -} - -i.icon.clock:before { - content: "\f017"; -} - -i.icon.clone:before { - content: "\f24d"; -} - -i.icon.closed.captioning:before { - content: "\f20a"; -} - -i.icon.cloud:before { - content: "\f0c2"; -} - -i.icon.cloudscale:before { - content: "\f383"; -} - -i.icon.cloudsmith:before { - content: "\f384"; -} - -i.icon.cloudversify:before { - content: "\f385"; -} - -i.icon.code:before { - content: "\f121"; -} - -i.icon.code.branch:before { - content: "\f126"; -} - -i.icon.codepen:before { - content: "\f1cb"; -} - -i.icon.codiepie:before { - content: "\f284"; -} - -i.icon.coffee:before { - content: "\f0f4"; -} - -i.icon.cog:before { - content: "\f013"; -} - -i.icon.cogs:before { - content: "\f085"; -} - -i.icon.columns:before { - content: "\f0db"; -} - -i.icon.comment:before { - content: "\f075"; -} - -i.icon.comment.alternate:before { - content: "\f27a"; -} - -i.icon.comments:before { - content: "\f086"; -} - -i.icon.compass:before { - content: "\f14e"; -} - -i.icon.compress:before { - content: "\f066"; -} - -i.icon.connectdevelop:before { - content: "\f20e"; -} - -i.icon.contao:before { - content: "\f26d"; -} - -i.icon.copy:before { - content: "\f0c5"; -} - -i.icon.copyright:before { - content: "\f1f9"; -} - -i.icon.cpanel:before { - content: "\f388"; -} - -i.icon.creative.commons:before { - content: "\f25e"; -} - -i.icon.credit.card:before { - content: "\f09d"; -} - -i.icon.crop:before { - content: "\f125"; -} - -i.icon.crosshairs:before { - content: "\f05b"; -} - -i.icon.css3:before { - content: "\f13c"; -} - -i.icon.css3.alternate:before { - content: "\f38b"; -} - -i.icon.cube:before { - content: "\f1b2"; -} - -i.icon.cubes:before { - content: "\f1b3"; -} - -i.icon.cut:before { - content: "\f0c4"; -} - -i.icon.cuttlefish:before { - content: "\f38c"; -} - -i.icon.d.and.d:before { - content: "\f38d"; -} - -i.icon.dashcube:before { - content: "\f210"; -} - -i.icon.database:before { - content: "\f1c0"; -} - -i.icon.deaf:before { - content: "\f2a4"; -} - -i.icon.delicious:before { - content: "\f1a5"; -} - -i.icon.deploydog:before { - content: "\f38e"; -} - -i.icon.deskpro:before { - content: "\f38f"; -} - -i.icon.desktop:before { - content: "\f108"; -} - -i.icon.deviantart:before { - content: "\f1bd"; -} - -i.icon.digg:before { - content: "\f1a6"; -} - -i.icon.digital.ocean:before { - content: "\f391"; -} - -i.icon.discord:before { - content: "\f392"; -} - -i.icon.discourse:before { - content: "\f393"; -} - -i.icon.dna:before { - content: "\f471"; -} - -i.icon.dochub:before { - content: "\f394"; -} - -i.icon.docker:before { - content: "\f395"; -} - -i.icon.dollar.sign:before { - content: "\f155"; -} - -i.icon.dolly:before { - content: "\f472"; -} - -i.icon.dolly.flatbed:before { - content: "\f474"; -} - -i.icon.dot.circle:before { - content: "\f192"; -} - -i.icon.download:before { - content: "\f019"; -} - -i.icon.draft2digital:before { - content: "\f396"; -} - -i.icon.dribbble:before { - content: "\f17d"; -} - -i.icon.dribbble.square:before { - content: "\f397"; -} - -i.icon.dropbox:before { - content: "\f16b"; -} - -i.icon.drupal:before { - content: "\f1a9"; -} - -i.icon.dyalog:before { - content: "\f399"; -} - -i.icon.earlybirds:before { - content: "\f39a"; -} - -i.icon.edge:before { - content: "\f282"; -} - -i.icon.edit:before { - content: "\f044"; -} - -i.icon.eject:before { - content: "\f052"; -} - -i.icon.elementor:before { - content: "\f430"; -} - -i.icon.ellipsis.horizontal:before { - content: "\f141"; -} - -i.icon.ellipsis.vertical:before { - content: "\f142"; -} - -i.icon.ember:before { - content: "\f423"; -} - -i.icon.empire:before { - content: "\f1d1"; -} - -i.icon.envelope:before { - content: "\f0e0"; -} - -i.icon.envelope.open:before { - content: "\f2b6"; -} - -i.icon.envelope.square:before { - content: "\f199"; -} - -i.icon.envira:before { - content: "\f299"; -} - -i.icon.eraser:before { - content: "\f12d"; -} - -i.icon.erlang:before { - content: "\f39d"; -} - -i.icon.ethereum:before { - content: "\f42e"; -} - -i.icon.etsy:before { - content: "\f2d7"; -} - -i.icon.euro.sign:before { - content: "\f153"; -} - -i.icon.exchange.alternate:before { - content: "\f362"; -} - -i.icon.exclamation:before { - content: "\f12a"; -} - -i.icon.exclamation.circle:before { - content: "\f06a"; -} - -i.icon.exclamation.triangle:before { - content: "\f071"; -} - -i.icon.expand:before { - content: "\f065"; -} - -i.icon.expand.arrows.alternate:before { - content: "\f31e"; -} - -i.icon.expeditedssl:before { - content: "\f23e"; -} - -i.icon.external.alternate:before { - content: "\f35d"; -} - -i.icon.external.square.alternate:before { - content: "\f360"; -} - -i.icon.eye:before { - content: "\f06e"; -} - -i.icon.eye.dropper:before { - content: "\f1fb"; -} - -i.icon.eye.slash:before { - content: "\f070"; -} - -i.icon.facebook:before { - content: "\f09a"; -} - -i.icon.facebook.f:before { - content: "\f39e"; -} - -i.icon.facebook.messenger:before { - content: "\f39f"; -} - -i.icon.facebook.square:before { - content: "\f082"; -} - -i.icon.fast.backward:before { - content: "\f049"; -} - -i.icon.fast.forward:before { - content: "\f050"; -} - -i.icon.fax:before { - content: "\f1ac"; -} - -i.icon.female:before { - content: "\f182"; -} - -i.icon.fighter.jet:before { - content: "\f0fb"; -} - -i.icon.file:before { - content: "\f15b"; -} - -i.icon.file.alternate:before { - content: "\f15c"; -} - -i.icon.file.archive:before { - content: "\f1c6"; -} - -i.icon.file.audio:before { - content: "\f1c7"; -} - -i.icon.file.code:before { - content: "\f1c9"; -} - -i.icon.file.excel:before { - content: "\f1c3"; -} - -i.icon.file.image:before { - content: "\f1c5"; -} - -i.icon.file.pdf:before { - content: "\f1c1"; -} - -i.icon.file.powerpoint:before { - content: "\f1c4"; -} - -i.icon.file.video:before { - content: "\f1c8"; -} - -i.icon.file.word:before { - content: "\f1c2"; -} - -i.icon.film:before { - content: "\f008"; -} - -i.icon.filter:before { - content: "\f0b0"; -} - -i.icon.fire:before { - content: "\f06d"; -} - -i.icon.fire.extinguisher:before { - content: "\f134"; -} - -i.icon.firefox:before { - content: "\f269"; -} - -i.icon.first.aid:before { - content: "\f479"; -} - -i.icon.first.order:before { - content: "\f2b0"; -} - -i.icon.firstdraft:before { - content: "\f3a1"; -} - -i.icon.flag:before { - content: "\f024"; -} - -i.icon.flag.checkered:before { - content: "\f11e"; -} - -i.icon.flask:before { - content: "\f0c3"; -} - -i.icon.flickr:before { - content: "\f16e"; -} - -i.icon.flipboard:before { - content: "\f44d"; -} - -i.icon.fly:before { - content: "\f417"; -} - -i.icon.folder:before { - content: "\f07b"; -} - -i.icon.folder.open:before { - content: "\f07c"; -} - -i.icon.font:before { - content: "\f031"; -} - -i.icon.font.awesome:before { - content: "\f2b4"; -} - -i.icon.font.awesome.alternate:before { - content: "\f35c"; -} - -i.icon.font.awesome.flag:before { - content: "\f425"; -} - -i.icon.fonticons:before { - content: "\f280"; -} - -i.icon.fonticons.fi:before { - content: "\f3a2"; -} - -i.icon.football.ball:before { - content: "\f44e"; -} - -i.icon.fort.awesome:before { - content: "\f286"; -} - -i.icon.fort.awesome.alternate:before { - content: "\f3a3"; -} - -i.icon.forumbee:before { - content: "\f211"; -} - -i.icon.forward:before { - content: "\f04e"; -} - -i.icon.foursquare:before { - content: "\f180"; -} - -i.icon.free.code.camp:before { - content: "\f2c5"; -} - -i.icon.freebsd:before { - content: "\f3a4"; -} - -i.icon.frown:before { - content: "\f119"; -} - -i.icon.futbol:before { - content: "\f1e3"; -} - -i.icon.gamepad:before { - content: "\f11b"; -} - -i.icon.gavel:before { - content: "\f0e3"; -} - -i.icon.gem:before { - content: "\f3a5"; -} - -i.icon.genderless:before { - content: "\f22d"; -} - -i.icon.get.pocket:before { - content: "\f265"; -} - -i.icon.gg:before { - content: "\f260"; -} - -i.icon.gg.circle:before { - content: "\f261"; -} - -i.icon.gift:before { - content: "\f06b"; -} - -i.icon.git:before { - content: "\f1d3"; -} - -i.icon.git.square:before { - content: "\f1d2"; -} - -i.icon.github:before { - content: "\f09b"; -} - -i.icon.github.alternate:before { - content: "\f113"; -} - -i.icon.github.square:before { - content: "\f092"; -} - -i.icon.gitkraken:before { - content: "\f3a6"; -} - -i.icon.gitlab:before { - content: "\f296"; -} - -i.icon.gitter:before { - content: "\f426"; -} - -i.icon.glass.martini:before { - content: "\f000"; -} - -i.icon.glide:before { - content: "\f2a5"; -} - -i.icon.glide.g:before { - content: "\f2a6"; -} - -i.icon.globe:before { - content: "\f0ac"; -} - -i.icon.gofore:before { - content: "\f3a7"; -} - -i.icon.golf.ball:before { - content: "\f450"; -} - -i.icon.goodreads:before { - content: "\f3a8"; -} - -i.icon.goodreads.g:before { - content: "\f3a9"; -} - -i.icon.google:before { - content: "\f1a0"; -} - -i.icon.google.drive:before { - content: "\f3aa"; -} - -i.icon.google.play:before { - content: "\f3ab"; -} - -i.icon.google.plus:before { - content: "\f2b3"; -} - -i.icon.google.plus.g:before { - content: "\f0d5"; -} - -i.icon.google.plus.square:before { - content: "\f0d4"; -} - -i.icon.google.wallet:before { - content: "\f1ee"; -} - -i.icon.graduation.cap:before { - content: "\f19d"; -} - -i.icon.gratipay:before { - content: "\f184"; -} - -i.icon.grav:before { - content: "\f2d6"; -} - -i.icon.gripfire:before { - content: "\f3ac"; -} - -i.icon.grunt:before { - content: "\f3ad"; -} - -i.icon.gulp:before { - content: "\f3ae"; -} - -i.icon.h.square:before { - content: "\f0fd"; -} - -i.icon.hacker.news:before { - content: "\f1d4"; -} - -i.icon.hacker.news.square:before { - content: "\f3af"; -} - -i.icon.hand.lizard:before { - content: "\f258"; -} - -i.icon.hand.paper:before { - content: "\f256"; -} - -i.icon.hand.peace:before { - content: "\f25b"; -} - -i.icon.hand.point.down:before { - content: "\f0a7"; -} - -i.icon.hand.point.left:before { - content: "\f0a5"; -} - -i.icon.hand.point.right:before { - content: "\f0a4"; -} - -i.icon.hand.point.up:before { - content: "\f0a6"; -} - -i.icon.hand.pointer:before { - content: "\f25a"; -} - -i.icon.hand.rock:before { - content: "\f255"; -} - -i.icon.hand.scissors:before { - content: "\f257"; -} - -i.icon.hand.spock:before { - content: "\f259"; -} - -i.icon.handshake:before { - content: "\f2b5"; -} - -i.icon.hashtag:before { - content: "\f292"; -} - -i.icon.hdd:before { - content: "\f0a0"; -} - -i.icon.heading:before { - content: "\f1dc"; -} - -i.icon.headphones:before { - content: "\f025"; -} - -i.icon.heart:before { - content: "\f004"; -} - -i.icon.heartbeat:before { - content: "\f21e"; -} - -i.icon.hips:before { - content: "\f452"; -} - -i.icon.hire.a.helper:before { - content: "\f3b0"; -} - -i.icon.history:before { - content: "\f1da"; -} - -i.icon.hockey.puck:before { - content: "\f453"; -} - -i.icon.home:before { - content: "\f015"; -} - -i.icon.hooli:before { - content: "\f427"; -} - -i.icon.hospital:before { - content: "\f0f8"; -} - -i.icon.hospital.symbol:before { - content: "\f47e"; -} - -i.icon.hotjar:before { - content: "\f3b1"; -} - -i.icon.hourglass:before { - content: "\f254"; -} - -i.icon.hourglass.end:before { - content: "\f253"; -} - -i.icon.hourglass.half:before { - content: "\f252"; -} - -i.icon.hourglass.start:before { - content: "\f251"; -} - -i.icon.houzz:before { - content: "\f27c"; -} - -i.icon.html5:before { - content: "\f13b"; -} - -i.icon.hubspot:before { - content: "\f3b2"; -} - -i.icon.i.cursor:before { - content: "\f246"; -} - -i.icon.id.badge:before { - content: "\f2c1"; -} - -i.icon.id.card:before { - content: "\f2c2"; -} - -i.icon.image:before { - content: "\f03e"; -} - -i.icon.images:before { - content: "\f302"; -} - -i.icon.imdb:before { - content: "\f2d8"; -} - -i.icon.inbox:before { - content: "\f01c"; -} - -i.icon.indent:before { - content: "\f03c"; -} - -i.icon.industry:before { - content: "\f275"; -} - -i.icon.info:before { - content: "\f129"; -} - -i.icon.info.circle:before { - content: "\f05a"; -} - -i.icon.instagram:before { - content: "\f16d"; -} - -i.icon.internet.explorer:before { - content: "\f26b"; -} - -i.icon.ioxhost:before { - content: "\f208"; -} - -i.icon.italic:before { - content: "\f033"; -} - -i.icon.itunes:before { - content: "\f3b4"; -} - -i.icon.itunes.note:before { - content: "\f3b5"; -} - -i.icon.jenkins:before { - content: "\f3b6"; -} - -i.icon.joget:before { - content: "\f3b7"; -} - -i.icon.joomla:before { - content: "\f1aa"; -} - -i.icon.js:before { - content: "\f3b8"; -} - -i.icon.js.square:before { - content: "\f3b9"; -} - -i.icon.jsfiddle:before { - content: "\f1cc"; -} - -i.icon.key:before { - content: "\f084"; -} - -i.icon.keyboard:before { - content: "\f11c"; -} - -i.icon.keycdn:before { - content: "\f3ba"; -} - -i.icon.kickstarter:before { - content: "\f3bb"; -} - -i.icon.kickstarter.k:before { - content: "\f3bc"; -} - -i.icon.korvue:before { - content: "\f42f"; -} - -i.icon.language:before { - content: "\f1ab"; -} - -i.icon.laptop:before { - content: "\f109"; -} - -i.icon.laravel:before { - content: "\f3bd"; -} - -i.icon.lastfm:before { - content: "\f202"; -} - -i.icon.lastfm.square:before { - content: "\f203"; -} - -i.icon.leaf:before { - content: "\f06c"; -} - -i.icon.leanpub:before { - content: "\f212"; -} - -i.icon.lemon:before { - content: "\f094"; -} - -i.icon.less:before { - content: "\f41d"; -} - -i.icon.level.down.alternate:before { - content: "\f3be"; -} - -i.icon.level.up.alternate:before { - content: "\f3bf"; -} - -i.icon.life.ring:before { - content: "\f1cd"; -} - -i.icon.lightbulb:before { - content: "\f0eb"; -} - -i.icon.linechat:before { - content: "\f3c0"; -} - -i.icon.linkify:before { - content: "\f0c1"; -} - -i.icon.linkedin:before { - content: "\f08c"; -} - -i.icon.linkedin.alt:before { - content: "\f0e1"; -} - -i.icon.linode:before { - content: "\f2b8"; -} - -i.icon.linux:before { - content: "\f17c"; -} - -i.icon.lira.sign:before { - content: "\f195"; -} - -i.icon.list:before { - content: "\f03a"; -} - -i.icon.list.alternate:before { - content: "\f022"; -} - -i.icon.list.ol:before { - content: "\f0cb"; -} - -i.icon.list.ul:before { - content: "\f0ca"; -} - -i.icon.location.arrow:before { - content: "\f124"; -} - -i.icon.lock:before { - content: "\f023"; -} - -i.icon.lock.open:before { - content: "\f3c1"; -} - -i.icon.long.arrow.alternate.down:before { - content: "\f309"; -} - -i.icon.long.arrow.alternate.left:before { - content: "\f30a"; -} - -i.icon.long.arrow.alternate.right:before { - content: "\f30b"; -} - -i.icon.long.arrow.alternate.up:before { - content: "\f30c"; -} - -i.icon.low.vision:before { - content: "\f2a8"; -} - -i.icon.lyft:before { - content: "\f3c3"; -} - -i.icon.magento:before { - content: "\f3c4"; -} - -i.icon.magic:before { - content: "\f0d0"; -} - -i.icon.magnet:before { - content: "\f076"; -} - -i.icon.male:before { - content: "\f183"; -} - -i.icon.map:before { - content: "\f279"; -} - -i.icon.map.marker:before { - content: "\f041"; -} - -i.icon.map.marker.alternate:before { - content: "\f3c5"; -} - -i.icon.map.pin:before { - content: "\f276"; -} - -i.icon.map.signs:before { - content: "\f277"; -} - -i.icon.mars:before { - content: "\f222"; -} - -i.icon.mars.double:before { - content: "\f227"; -} - -i.icon.mars.stroke:before { - content: "\f229"; -} - -i.icon.mars.stroke.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.stroke.vertical:before { - content: "\f22a"; -} - -i.icon.maxcdn:before { - content: "\f136"; -} - -i.icon.medapps:before { - content: "\f3c6"; -} - -i.icon.medium:before { - content: "\f23a"; -} - -i.icon.medium.m:before { - content: "\f3c7"; -} - -i.icon.medkit:before { - content: "\f0fa"; -} - -i.icon.medrt:before { - content: "\f3c8"; -} - -i.icon.meetup:before { - content: "\f2e0"; -} - -i.icon.meh:before { - content: "\f11a"; -} - -i.icon.mercury:before { - content: "\f223"; -} - -i.icon.microchip:before { - content: "\f2db"; -} - -i.icon.microphone:before { - content: "\f130"; -} - -i.icon.microphone.slash:before { - content: "\f131"; -} - -i.icon.microsoft:before { - content: "\f3ca"; -} - -i.icon.minus:before { - content: "\f068"; -} - -i.icon.minus.circle:before { - content: "\f056"; -} - -i.icon.minus.square:before { - content: "\f146"; -} - -i.icon.mix:before { - content: "\f3cb"; -} - -i.icon.mixcloud:before { - content: "\f289"; -} - -i.icon.mizuni:before { - content: "\f3cc"; -} - -i.icon.mobile:before { - content: "\f10b"; -} - -i.icon.mobile.alternate:before { - content: "\f3cd"; -} - -i.icon.modx:before { - content: "\f285"; -} - -i.icon.monero:before { - content: "\f3d0"; -} - -i.icon.money.bill.alternate:before { - content: "\f3d1"; -} - -i.icon.moon:before { - content: "\f186"; -} - -i.icon.motorcycle:before { - content: "\f21c"; -} - -i.icon.mouse.pointer:before { - content: "\f245"; -} - -i.icon.music:before { - content: "\f001"; -} - -i.icon.napster:before { - content: "\f3d2"; -} - -i.icon.neuter:before { - content: "\f22c"; -} - -i.icon.newspaper:before { - content: "\f1ea"; -} - -i.icon.nintendo.switch:before { - content: "\f418"; -} - -i.icon.node:before { - content: "\f419"; -} - -i.icon.node.js:before { - content: "\f3d3"; -} - -i.icon.npm:before { - content: "\f3d4"; -} - -i.icon.ns8:before { - content: "\f3d5"; -} - -i.icon.nutritionix:before { - content: "\f3d6"; -} - -i.icon.object.group:before { - content: "\f247"; -} - -i.icon.object.ungroup:before { - content: "\f248"; -} - -i.icon.odnoklassniki:before { - content: "\f263"; -} - -i.icon.odnoklassniki.square:before { - content: "\f264"; -} - -i.icon.opencart:before { - content: "\f23d"; -} - -i.icon.openid:before { - content: "\f19b"; -} - -i.icon.opera:before { - content: "\f26a"; -} - -i.icon.optin.monster:before { - content: "\f23c"; -} - -i.icon.osi:before { - content: "\f41a"; -} - -i.icon.outdent:before { - content: "\f03b"; -} - -i.icon.page4:before { - content: "\f3d7"; -} - -i.icon.pagelines:before { - content: "\f18c"; -} - -i.icon.paint.brush:before { - content: "\f1fc"; -} - -i.icon.palfed:before { - content: "\f3d8"; -} - -i.icon.pallet:before { - content: "\f482"; -} - -i.icon.paper.plane:before { - content: "\f1d8"; -} - -i.icon.paperclip:before { - content: "\f0c6"; -} - -i.icon.paragraph:before { - content: "\f1dd"; -} - -i.icon.paste:before { - content: "\f0ea"; -} - -i.icon.patreon:before { - content: "\f3d9"; -} - -i.icon.pause:before { - content: "\f04c"; -} - -i.icon.pause.circle:before { - content: "\f28b"; -} - -i.icon.paw:before { - content: "\f1b0"; -} - -i.icon.paypal:before { - content: "\f1ed"; -} - -i.icon.pen.square:before { - content: "\f14b"; -} - -i.icon.pencil.alternate:before { - content: "\f303"; -} - -i.icon.percent:before { - content: "\f295"; -} - -i.icon.periscope:before { - content: "\f3da"; -} - -i.icon.phabricator:before { - content: "\f3db"; -} - -i.icon.phoenix.framework:before { - content: "\f3dc"; -} - -i.icon.phone:before { - content: "\f095"; -} - -i.icon.phone.square:before { - content: "\f098"; -} - -i.icon.phone.volume:before { - content: "\f2a0"; -} - -i.icon.php:before { - content: "\f457"; -} - -i.icon.pied.piper:before { - content: "\f2ae"; -} - -i.icon.pied.piper.alternate:before { - content: "\f1a8"; -} - -i.icon.pied.piper.pp:before { - content: "\f1a7"; -} - -i.icon.pills:before { - content: "\f484"; -} - -i.icon.pinterest:before { - content: "\f0d2"; -} - -i.icon.pinterest.p:before { - content: "\f231"; -} - -i.icon.pinterest.square:before { - content: "\f0d3"; -} - -i.icon.plane:before { - content: "\f072"; -} - -i.icon.play:before { - content: "\f04b"; -} - -i.icon.play.circle:before { - content: "\f144"; -} - -i.icon.playstation:before { - content: "\f3df"; -} - -i.icon.plug:before { - content: "\f1e6"; -} - -i.icon.plus:before { - content: "\f067"; -} - -i.icon.plus.circle:before { - content: "\f055"; -} - -i.icon.plus.square:before { - content: "\f0fe"; -} - -i.icon.podcast:before { - content: "\f2ce"; -} - -i.icon.pound.sign:before { - content: "\f154"; -} - -i.icon.power.off:before { - content: "\f011"; -} - -i.icon.print:before { - content: "\f02f"; -} - -i.icon.product.hunt:before { - content: "\f288"; -} - -i.icon.pushed:before { - content: "\f3e1"; -} - -i.icon.puzzle.piece:before { - content: "\f12e"; -} - -i.icon.python:before { - content: "\f3e2"; -} - -i.icon.qq:before { - content: "\f1d6"; -} - -i.icon.qrcode:before { - content: "\f029"; -} - -i.icon.question:before { - content: "\f128"; -} - -i.icon.question.circle:before { - content: "\f059"; -} - -i.icon.quidditch:before { - content: "\f458"; -} - -i.icon.quinscape:before { - content: "\f459"; -} - -i.icon.quora:before { - content: "\f2c4"; -} - -i.icon.quote.left:before { - content: "\f10d"; -} - -i.icon.quote.right:before { - content: "\f10e"; -} - -i.icon.random:before { - content: "\f074"; -} - -i.icon.ravelry:before { - content: "\f2d9"; -} - -i.icon.react:before { - content: "\f41b"; -} - -i.icon.rebel:before { - content: "\f1d0"; -} - -i.icon.recycle:before { - content: "\f1b8"; -} - -i.icon.redriver:before { - content: "\f3e3"; -} - -i.icon.reddit:before { - content: "\f1a1"; -} - -i.icon.reddit.alien:before { - content: "\f281"; -} - -i.icon.reddit.square:before { - content: "\f1a2"; -} - -i.icon.redo:before { - content: "\f01e"; -} - -i.icon.redo.alternate:before { - content: "\f2f9"; -} - -i.icon.registered:before { - content: "\f25d"; -} - -i.icon.rendact:before { - content: "\f3e4"; -} - -i.icon.renren:before { - content: "\f18b"; -} - -i.icon.reply:before { - content: "\f3e5"; -} - -i.icon.reply.all:before { - content: "\f122"; -} - -i.icon.replyd:before { - content: "\f3e6"; -} - -i.icon.resolving:before { - content: "\f3e7"; -} - -i.icon.retweet:before { - content: "\f079"; -} - -i.icon.road:before { - content: "\f018"; -} - -i.icon.rocket:before { - content: "\f135"; -} - -i.icon.rocketchat:before { - content: "\f3e8"; -} - -i.icon.rockrms:before { - content: "\f3e9"; -} - -i.icon.rss:before { - content: "\f09e"; -} - -i.icon.rss.square:before { - content: "\f143"; -} - -i.icon.ruble.sign:before { - content: "\f158"; -} - -i.icon.rupee.sign:before { - content: "\f156"; -} - -i.icon.safari:before { - content: "\f267"; -} - -i.icon.sass:before { - content: "\f41e"; -} - -i.icon.save:before { - content: "\f0c7"; -} - -i.icon.schlix:before { - content: "\f3ea"; -} - -i.icon.scribd:before { - content: "\f28a"; -} - -i.icon.search:before { - content: "\f002"; -} - -i.icon.search.minus:before { - content: "\f010"; -} - -i.icon.search.plus:before { - content: "\f00e"; -} - -i.icon.searchengin:before { - content: "\f3eb"; -} - -i.icon.sellcast:before { - content: "\f2da"; -} - -i.icon.sellsy:before { - content: "\f213"; -} - -i.icon.server:before { - content: "\f233"; -} - -i.icon.servicestack:before { - content: "\f3ec"; -} - -i.icon.share:before { - content: "\f064"; -} - -i.icon.share.alternate:before { - content: "\f1e0"; -} - -i.icon.share.alternate.square:before { - content: "\f1e1"; -} - -i.icon.share.square:before { - content: "\f14d"; -} - -i.icon.shekel.sign:before { - content: "\f20b"; -} - -i.icon.shield.alternate:before { - content: "\f3ed"; -} - -i.icon.ship:before { - content: "\f21a"; -} - -i.icon.shipping.fast:before { - content: "\f48b"; -} - -i.icon.shirtsinbulk:before { - content: "\f214"; -} - -i.icon.shopping.bag:before { - content: "\f290"; -} - -i.icon.shopping.basket:before { - content: "\f291"; -} - -i.icon.shopping.cart:before { - content: "\f07a"; -} - -i.icon.shower:before { - content: "\f2cc"; -} - -i.icon.sign.language:before { - content: "\f2a7"; -} - -i.icon.signal:before { - content: "\f012"; -} - -i.icon.simplybuilt:before { - content: "\f215"; -} - -i.icon.sistrix:before { - content: "\f3ee"; -} - -i.icon.sitemap:before { - content: "\f0e8"; -} - -i.icon.skyatlas:before { - content: "\f216"; -} - -i.icon.skype:before { - content: "\f17e"; -} - -i.icon.slack:before { - content: "\f198"; -} - -i.icon.slack.hash:before { - content: "\f3ef"; -} - -i.icon.sliders.horizontal:before { - content: "\f1de"; -} - -i.icon.slideshare:before { - content: "\f1e7"; -} - -i.icon.smile:before { - content: "\f118"; -} - -i.icon.snapchat:before { - content: "\f2ab"; -} - -i.icon.snapchat.ghost:before { - content: "\f2ac"; -} - -i.icon.snapchat.square:before { - content: "\f2ad"; -} - -i.icon.snowflake:before { - content: "\f2dc"; -} - -i.icon.sort:before { - content: "\f0dc"; -} - -i.icon.sort.alphabet.down:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.up:before { - content: "\f15e"; -} - -i.icon.sort.amount.down:before { - content: "\f160"; -} - -i.icon.sort.amount.up:before { - content: "\f161"; -} - -i.icon.sort.down:before { - content: "\f0dd"; -} - -i.icon.sort.numeric.down:before { - content: "\f162"; -} - -i.icon.sort.numeric.up:before { - content: "\f163"; -} - -i.icon.sort.up:before { - content: "\f0de"; -} - -i.icon.soundcloud:before { - content: "\f1be"; -} - -i.icon.space.shuttle:before { - content: "\f197"; -} - -i.icon.speakap:before { - content: "\f3f3"; -} - -i.icon.spinner:before { - content: "\f110"; -} - -i.icon.spotify:before { - content: "\f1bc"; -} - -i.icon.square:before { - content: "\f0c8"; -} - -i.icon.square.full:before { - content: "\f45c"; -} - -i.icon.stack.exchange:before { - content: "\f18d"; -} - -i.icon.stack.overflow:before { - content: "\f16c"; -} - -i.icon.star:before { - content: "\f005"; -} - -i.icon.star.half:before { - content: "\f089"; -} - -i.icon.staylinked:before { - content: "\f3f5"; -} - -i.icon.steam:before { - content: "\f1b6"; -} - -i.icon.steam.square:before { - content: "\f1b7"; -} - -i.icon.steam.symbol:before { - content: "\f3f6"; -} - -i.icon.step.backward:before { - content: "\f048"; -} - -i.icon.step.forward:before { - content: "\f051"; -} - -i.icon.stethoscope:before { - content: "\f0f1"; -} - -i.icon.sticker.mule:before { - content: "\f3f7"; -} - -i.icon.sticky.note:before { - content: "\f249"; -} - -i.icon.stop:before { - content: "\f04d"; -} - -i.icon.stop.circle:before { - content: "\f28d"; -} - -i.icon.stopwatch:before { - content: "\f2f2"; -} - -i.icon.strava:before { - content: "\f428"; -} - -i.icon.street.view:before { - content: "\f21d"; -} - -i.icon.strikethrough:before { - content: "\f0cc"; -} - -i.icon.stripe:before { - content: "\f429"; -} - -i.icon.stripe.s:before { - content: "\f42a"; -} - -i.icon.studiovinari:before { - content: "\f3f8"; -} - -i.icon.stumbleupon:before { - content: "\f1a4"; -} - -i.icon.stumbleupon.circle:before { - content: "\f1a3"; -} - -i.icon.subscript:before { - content: "\f12c"; -} - -i.icon.subway:before { - content: "\f239"; -} - -i.icon.suitcase:before { - content: "\f0f2"; -} - -i.icon.sun:before { - content: "\f185"; -} - -i.icon.superpowers:before { - content: "\f2dd"; -} - -i.icon.superscript:before { - content: "\f12b"; -} - -i.icon.supple:before { - content: "\f3f9"; -} - -i.icon.sync:before { - content: "\f021"; -} - -i.icon.sync.alternate:before { - content: "\f2f1"; -} - -i.icon.syringe:before { - content: "\f48e"; -} - -i.icon.table:before { - content: "\f0ce"; -} - -i.icon.table.tennis:before { - content: "\f45d"; -} - -i.icon.tablet:before { - content: "\f10a"; -} - -i.icon.tablet.alternate:before { - content: "\f3fa"; -} - -i.icon.tachometer.alternate:before { - content: "\f3fd"; -} - -i.icon.tag:before { - content: "\f02b"; -} - -i.icon.tags:before { - content: "\f02c"; -} - -i.icon.tasks:before { - content: "\f0ae"; -} - -i.icon.taxi:before { - content: "\f1ba"; -} - -i.icon.telegram:before { - content: "\f2c6"; -} - -i.icon.telegram.plane:before { - content: "\f3fe"; -} - -i.icon.tencent.weibo:before { - content: "\f1d5"; -} - -i.icon.terminal:before { - content: "\f120"; -} - -i.icon.text.height:before { - content: "\f034"; -} - -i.icon.text.width:before { - content: "\f035"; -} - -i.icon.th:before { - content: "\f00a"; -} - -i.icon.th.large:before { - content: "\f009"; -} - -i.icon.th.list:before { - content: "\f00b"; -} - -i.icon.themeisle:before { - content: "\f2b2"; -} - -i.icon.thermometer:before { - content: "\f491"; -} - -i.icon.thermometer.empty:before { - content: "\f2cb"; -} - -i.icon.thermometer.full:before { - content: "\f2c7"; -} - -i.icon.thermometer.half:before { - content: "\f2c9"; -} - -i.icon.thermometer.quarter:before { - content: "\f2ca"; -} - -i.icon.thermometer.three.quarters:before { - content: "\f2c8"; -} - -i.icon.thumbs.down:before { - content: "\f165"; -} - -i.icon.thumbs.up:before { - content: "\f164"; -} - -i.icon.thumbtack:before { - content: "\f08d"; -} - -i.icon.ticket.alternate:before { - content: "\f3ff"; -} - -i.icon.times:before { - content: "\f00d"; -} - -i.icon.times.circle:before { - content: "\f057"; -} - -i.icon.tint:before { - content: "\f043"; -} - -i.icon.toggle.off:before { - content: "\f204"; -} - -i.icon.toggle.on:before { - content: "\f205"; -} - -i.icon.trademark:before { - content: "\f25c"; -} - -i.icon.train:before { - content: "\f238"; -} - -i.icon.transgender:before { - content: "\f224"; -} - -i.icon.transgender.alternate:before { - content: "\f225"; -} - -i.icon.trash:before { - content: "\f1f8"; -} - -i.icon.trash.alternate:before { - content: "\f2ed"; -} - -i.icon.tree:before { - content: "\f1bb"; -} - -i.icon.trello:before { - content: "\f181"; -} - -i.icon.tripadvisor:before { - content: "\f262"; -} - -i.icon.trophy:before { - content: "\f091"; -} - -i.icon.truck:before { - content: "\f0d1"; -} - -i.icon.tty:before { - content: "\f1e4"; -} - -i.icon.tumblr:before { - content: "\f173"; -} - -i.icon.tumblr.square:before { - content: "\f174"; -} - -i.icon.tv:before { - content: "\f26c"; -} - -i.icon.twitch:before { - content: "\f1e8"; -} - -i.icon.twitter:before { - content: "\f099"; -} - -i.icon.twitter.square:before { - content: "\f081"; -} - -i.icon.typo3:before { - content: "\f42b"; -} - -i.icon.uber:before { - content: "\f402"; -} - -i.icon.uikit:before { - content: "\f403"; -} - -i.icon.umbrella:before { - content: "\f0e9"; -} - -i.icon.underline:before { - content: "\f0cd"; -} - -i.icon.undo:before { - content: "\f0e2"; -} - -i.icon.undo.alternate:before { - content: "\f2ea"; -} - -i.icon.uniregistry:before { - content: "\f404"; -} - -i.icon.universal.access:before { - content: "\f29a"; -} - -i.icon.university:before { - content: "\f19c"; -} - -i.icon.unlink:before { - content: "\f127"; -} - -i.icon.unlock:before { - content: "\f09c"; -} - -i.icon.unlock.alternate:before { - content: "\f13e"; -} - -i.icon.untappd:before { - content: "\f405"; -} - -i.icon.upload:before { - content: "\f093"; -} - -i.icon.usb:before { - content: "\f287"; -} - -i.icon.user:before { - content: "\f007"; -} - -i.icon.user.circle:before { - content: "\f2bd"; -} - -i.icon.user.md:before { - content: "\f0f0"; -} - -i.icon.user.plus:before { - content: "\f234"; -} - -i.icon.user.secret:before { - content: "\f21b"; -} - -i.icon.user.times:before { - content: "\f235"; -} - -i.icon.users:before { - content: "\f0c0"; -} - -i.icon.ussunnah:before { - content: "\f407"; -} - -i.icon.utensil.spoon:before { - content: "\f2e5"; -} - -i.icon.utensils:before { - content: "\f2e7"; -} - -i.icon.vaadin:before { - content: "\f408"; -} - -i.icon.venus:before { - content: "\f221"; -} - -i.icon.venus.double:before { - content: "\f226"; -} - -i.icon.venus.mars:before { - content: "\f228"; -} - -i.icon.viacoin:before { - content: "\f237"; -} - -i.icon.viadeo:before { - content: "\f2a9"; -} - -i.icon.viadeo.square:before { - content: "\f2aa"; -} - -i.icon.viber:before { - content: "\f409"; -} - -i.icon.video:before { - content: "\f03d"; -} - -i.icon.vimeo:before { - content: "\f40a"; -} - -i.icon.vimeo.square:before { - content: "\f194"; -} - -i.icon.vimeo.v:before { - content: "\f27d"; -} - -i.icon.vine:before { - content: "\f1ca"; -} - -i.icon.vk:before { - content: "\f189"; -} - -i.icon.vnv:before { - content: "\f40b"; -} - -i.icon.volleyball.ball:before { - content: "\f45f"; -} - -i.icon.volume.down:before { - content: "\f027"; -} - -i.icon.volume.off:before { - content: "\f026"; -} - -i.icon.volume.up:before { - content: "\f028"; -} - -i.icon.vuejs:before { - content: "\f41f"; -} - -i.icon.warehouse:before { - content: "\f494"; -} - -i.icon.weibo:before { - content: "\f18a"; -} - -i.icon.weight:before { - content: "\f496"; -} - -i.icon.weixin:before { - content: "\f1d7"; -} - -i.icon.whatsapp:before { - content: "\f232"; -} - -i.icon.whatsapp.square:before { - content: "\f40c"; -} - -i.icon.wheelchair:before { - content: "\f193"; -} - -i.icon.whmcs:before { - content: "\f40d"; -} - -i.icon.wifi:before { - content: "\f1eb"; -} - -i.icon.wikipedia.w:before { - content: "\f266"; -} - -i.icon.window.close:before { - content: "\f410"; -} - -i.icon.window.maximize:before { - content: "\f2d0"; -} - -i.icon.window.minimize:before { - content: "\f2d1"; -} - -i.icon.window.restore:before { - content: "\f2d2"; -} - -i.icon.windows:before { - content: "\f17a"; -} - -i.icon.won.sign:before { - content: "\f159"; -} - -i.icon.wordpress:before { - content: "\f19a"; -} - -i.icon.wordpress.simple:before { - content: "\f411"; -} - -i.icon.wpbeginner:before { - content: "\f297"; -} - -i.icon.wpexplorer:before { - content: "\f2de"; -} - -i.icon.wpforms:before { - content: "\f298"; -} - -i.icon.wrench:before { - content: "\f0ad"; -} - -i.icon.xbox:before { - content: "\f412"; -} - -i.icon.xing:before { - content: "\f168"; -} - -i.icon.xing.square:before { - content: "\f169"; -} - -i.icon.y.combinator:before { - content: "\f23b"; -} - -i.icon.yahoo:before { - content: "\f19e"; -} - -i.icon.yandex:before { - content: "\f413"; -} - -i.icon.yandex.international:before { - content: "\f414"; -} - -i.icon.yelp:before { - content: "\f1e9"; -} - -i.icon.yen.sign:before { - content: "\f157"; -} - -i.icon.yoast:before { - content: "\f2b1"; -} - -i.icon.youtube:before { - content: "\f167"; -} - -i.icon.youtube.square:before { - content: "\f431"; -} - -/* Aliases */ - -i.icon.chess.rock:before { - content: "\f447"; -} - -i.icon.ordered.list:before { - content: "\f0cb"; -} - -i.icon.unordered.list:before { - content: "\f0ca"; -} - -i.icon.user.doctor:before { - content: "\f0f0"; -} - -i.icon.shield:before { - content: "\f3ed"; -} - -i.icon.puzzle:before { - content: "\f12e"; -} - -i.icon.credit.card.amazon.pay:before { - content: "\f42d"; -} - -i.icon.credit.card.american.express:before { - content: "\f1f3"; -} - -i.icon.credit.card.diners.club:before { - content: "\f24c"; -} - -i.icon.credit.card.discover:before { - content: "\f1f2"; -} - -i.icon.credit.card.jcb:before { - content: "\f24b"; -} - -i.icon.credit.card.mastercard:before { - content: "\f1f1"; -} - -i.icon.credit.card.paypal:before { - content: "\f1f4"; -} - -i.icon.credit.card.stripe:before { - content: "\f1f5"; -} - -i.icon.credit.card.visa:before { - content: "\f1f0"; -} - -i.icon.add.circle:before { - content: "\f055"; -} - -i.icon.add.square:before { - content: "\f0fe"; -} - -i.icon.add.to.calendar:before { - content: "\f271"; -} - -i.icon.add.to.cart:before { - content: "\f217"; -} - -i.icon.add.user:before { - content: "\f234"; -} - -i.icon.add:before { - content: "\f067"; -} - -i.icon.alarm.mute:before { - content: "\f1f6"; -} - -i.icon.alarm:before { - content: "\f0f3"; -} - -i.icon.ald:before { - content: "\f2a2"; -} - -i.icon.als:before { - content: "\f2a2"; -} - -i.icon.american.express.card:before { - content: "\f1f3"; -} - -i.icon.american.express:before { - content: "\f1f3"; -} - -i.icon.amex:before { - content: "\f1f3"; -} - -i.icon.announcement:before { - content: "\f0a1"; -} - -i.icon.area.chart:before { - content: "\f1fe"; -} - -i.icon.area.graph:before { - content: "\f1fe"; -} - -i.icon.arrow.down.cart:before { - content: "\f218"; -} - -i.icon.asexual:before { - content: "\f22d"; -} - -i.icon.asl.interpreting:before { - content: "\f2a3"; -} - -i.icon.asl:before { - content: "\f2a3"; -} - -i.icon.assistive.listening.devices:before { - content: "\f2a2"; -} - -i.icon.attach:before { - content: "\f0c6"; -} - -i.icon.attention:before { - content: "\f06a"; -} - -i.icon.balance:before { - content: "\f24e"; -} - -i.icon.bar:before { - content: "\f0fc"; -} - -i.icon.bathtub:before { - content: "\f2cd"; -} - -i.icon.battery.four:before { - content: "\f240"; -} - -i.icon.battery.high:before { - content: "\f241"; -} - -i.icon.battery.low:before { - content: "\f243"; -} - -i.icon.battery.medium:before { - content: "\f242"; -} - -i.icon.battery.one:before { - content: "\f243"; -} - -i.icon.battery.three:before { - content: "\f241"; -} - -i.icon.battery.two:before { - content: "\f242"; -} - -i.icon.battery.zero:before { - content: "\f244"; -} - -i.icon.birthday:before { - content: "\f1fd"; -} - -i.icon.block.layout:before { - content: "\f009"; -} - -i.icon.bluetooth.alternative:before { - content: "\f294"; -} - -i.icon.broken.chain:before { - content: "\f127"; -} - -i.icon.browser:before { - content: "\f022"; -} - -i.icon.call.square:before { - content: "\f098"; -} - -i.icon.call:before { - content: "\f095"; -} - -i.icon.cancel:before { - content: "\f00d"; -} - -i.icon.cart:before { - content: "\f07a"; -} - -i.icon.cc:before { - content: "\f20a"; -} - -i.icon.chain:before { - content: "\f0c1"; -} - -i.icon.chat:before { - content: "\f075"; -} - -i.icon.checked.calendar:before { - content: "\f274"; -} - -i.icon.checkmark:before { - content: "\f00c"; -} - -i.icon.circle.notched:before { - content: "\f1ce"; -} - -i.icon.close:before { - content: "\f00d"; -} - -i.icon.cny:before { - content: "\f157"; -} - -i.icon.cocktail:before { - content: "\f000"; -} - -i.icon.commenting:before { - content: "\f27a"; -} - -i.icon.computer:before { - content: "\f108"; -} - -i.icon.configure:before { - content: "\f0ad"; -} - -i.icon.content:before { - content: "\f0c9"; -} - -i.icon.deafness:before { - content: "\f2a4"; -} - -i.icon.delete.calendar:before { - content: "\f273"; -} - -i.icon.delete:before { - content: "\f00d"; -} - -i.icon.detective:before { - content: "\f21b"; -} - -i.icon.diners.club.card:before { - content: "\f24c"; -} - -i.icon.diners.club:before { - content: "\f24c"; -} - -i.icon.discover.card:before { - content: "\f1f2"; -} - -i.icon.discover:before { - content: "\f1f2"; -} - -i.icon.discussions:before { - content: "\f086"; -} - -i.icon.doctor:before { - content: "\f0f0"; -} - -i.icon.dollar:before { - content: "\f155"; -} - -i.icon.dont:before { - content: "\f05e"; -} - -i.icon.dribble:before { - content: "\f17d"; -} - -i.icon.drivers.license:before { - content: "\f2c2"; -} - -i.icon.dropdown:before { - content: "\f0d7"; -} - -i.icon.eercast:before { - content: "\f2da"; -} - -i.icon.emergency:before { - content: "\f0f9"; -} - -i.icon.envira.gallery:before { - content: "\f299"; -} - -i.icon.erase:before { - content: "\f12d"; -} - -i.icon.eur:before { - content: "\f153"; -} - -i.icon.euro:before { - content: "\f153"; -} - -i.icon.eyedropper:before { - content: "\f1fb"; -} - -i.icon.fa:before { - content: "\f2b4"; -} - -i.icon.factory:before { - content: "\f275"; -} - -i.icon.favorite:before { - content: "\f005"; -} - -i.icon.feed:before { - content: "\f09e"; -} - -i.icon.female.homosexual:before { - content: "\f226"; -} - -i.icon.file.text:before { - content: "\f15c"; -} - -i.icon.find:before { - content: "\f1e5"; -} - -i.icon.first.aid:before { - content: "\f0fa"; -} - -i.icon.five.hundred.pixels:before { - content: "\f26e"; -} - -i.icon.fork:before { - content: "\f126"; -} - -i.icon.game:before { - content: "\f11b"; -} - -i.icon.gay:before { - content: "\f227"; -} - -i.icon.gbp:before { - content: "\f154"; -} - -i.icon.gittip:before { - content: "\f184"; -} - -i.icon.google.plus.circle:before { - content: "\f2b3"; -} - -i.icon.google.plus.official:before { - content: "\f2b3"; -} - -i.icon.grab:before { - content: "\f255"; -} - -i.icon.graduation:before { - content: "\f19d"; -} - -i.icon.grid.layout:before { - content: "\f00a"; -} - -i.icon.group:before { - content: "\f0c0"; -} - -i.icon.h:before { - content: "\f0fd"; -} - -i.icon.hand.victory:before { - content: "\f25b"; -} - -i.icon.handicap:before { - content: "\f193"; -} - -i.icon.hard.of.hearing:before { - content: "\f2a4"; -} - -i.icon.header:before { - content: "\f1dc"; -} - -i.icon.help.circle:before { - content: "\f059"; -} - -i.icon.help:before { - content: "\f128"; -} - -i.icon.heterosexual:before { - content: "\f228"; -} - -i.icon.hide:before { - content: "\f070"; -} - -i.icon.hotel:before { - content: "\f236"; -} - -i.icon.hourglass.four:before { - content: "\f254"; -} - -i.icon.hourglass.full:before { - content: "\f254"; -} - -i.icon.hourglass.one:before { - content: "\f251"; -} - -i.icon.hourglass.three:before { - content: "\f253"; -} - -i.icon.hourglass.two:before { - content: "\f252"; -} - -i.icon.idea:before { - content: "\f0eb"; -} - -i.icon.ils:before { - content: "\f20b"; -} - -i.icon.in-cart:before { - content: "\f218"; -} - -i.icon.inr:before { - content: "\f156"; -} - -i.icon.intergender:before { - content: "\f224"; -} - -i.icon.intersex:before { - content: "\f224"; -} - -i.icon.japan.credit.bureau.card:before { - content: "\f24b"; -} - -i.icon.japan.credit.bureau:before { - content: "\f24b"; -} - -i.icon.jcb:before { - content: "\f24b"; -} - -i.icon.jpy:before { - content: "\f157"; -} - -i.icon.krw:before { - content: "\f159"; -} - -i.icon.lab:before { - content: "\f0c3"; -} - -i.icon.law:before { - content: "\f24e"; -} - -i.icon.legal:before { - content: "\f0e3"; -} - -i.icon.lesbian:before { - content: "\f226"; -} - -i.icon.lightning:before { - content: "\f0e7"; -} - -i.icon.like:before { - content: "\f004"; -} - -i.icon.line.graph:before { - content: "\f201"; -} - -i.icon.linkedin.square:before { - content: "\f08c"; -} - -i.icon.linkify:before { - content: "\f0c1"; -} - -i.icon.lira:before { - content: "\f195"; -} - -i.icon.list.layout:before { - content: "\f00b"; -} - -i.icon.magnify:before { - content: "\f00e"; -} - -i.icon.mail.forward:before { - content: "\f064"; -} - -i.icon.mail.square:before { - content: "\f199"; -} - -i.icon.mail:before { - content: "\f0e0"; -} - -i.icon.male.homosexual:before { - content: "\f227"; -} - -i.icon.man:before { - content: "\f222"; -} - -i.icon.marker:before { - content: "\f041"; -} - -i.icon.mars.alternate:before { - content: "\f229"; -} - -i.icon.mars.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.vertical:before { - content: "\f22a"; -} - -i.icon.mastercard.card:before { - content: "\f1f1"; -} - -i.icon.mastercard:before { - content: "\f1f1"; -} - -i.icon.microsoft.edge:before { - content: "\f282"; -} - -i.icon.military:before { - content: "\f0fb"; -} - -i.icon.ms.edge:before { - content: "\f282"; -} - -i.icon.mute:before { - content: "\f131"; -} - -i.icon.new.pied.piper:before { - content: "\f2ae"; -} - -i.icon.non.binary.transgender:before { - content: "\f223"; -} - -i.icon.numbered.list:before { - content: "\f0cb"; -} - -i.icon.optinmonster:before { - content: "\f23c"; -} - -i.icon.options:before { - content: "\f1de"; -} - -i.icon.other.gender.horizontal:before { - content: "\f22b"; -} - -i.icon.other.gender.vertical:before { - content: "\f22a"; -} - -i.icon.other.gender:before { - content: "\f229"; -} - -i.icon.payment:before { - content: "\f09d"; -} - -i.icon.paypal.card:before { - content: "\f1f4"; -} - -i.icon.pencil.square:before { - content: "\f14b"; -} - -i.icon.photo:before { - content: "\f030"; -} - -i.icon.picture:before { - content: "\f03e"; -} - -i.icon.pie.chart:before { - content: "\f200"; -} - -i.icon.pie.graph:before { - content: "\f200"; -} - -i.icon.pied.piper.hat:before { - content: "\f2ae"; -} - -i.icon.pin:before { - content: "\f08d"; -} - -i.icon.plus.cart:before { - content: "\f217"; -} - -i.icon.pocket:before { - content: "\f265"; -} - -i.icon.point:before { - content: "\f041"; -} - -i.icon.pointing.down:before { - content: "\f0a7"; -} - -i.icon.pointing.left:before { - content: "\f0a5"; -} - -i.icon.pointing.right:before { - content: "\f0a4"; -} - -i.icon.pointing.up:before { - content: "\f0a6"; -} - -i.icon.pound:before { - content: "\f154"; -} - -i.icon.power.cord:before { - content: "\f1e6"; -} - -i.icon.power:before { - content: "\f011"; -} - -i.icon.privacy:before { - content: "\f084"; -} - -i.icon.r.circle:before { - content: "\f25d"; -} - -i.icon.rain:before { - content: "\f0e9"; -} - -i.icon.record:before { - content: "\f03d"; -} - -i.icon.refresh:before { - content: "\f021"; -} - -i.icon.remove.circle:before { - content: "\f057"; -} - -i.icon.remove.from.calendar:before { - content: "\f272"; -} - -i.icon.remove.user:before { - content: "\f235"; -} - -i.icon.remove:before { - content: "\f00d"; -} - -i.icon.repeat:before { - content: "\f01e"; -} - -i.icon.rmb:before { - content: "\f157"; -} - -i.icon.rouble:before { - content: "\f158"; -} - -i.icon.rub:before { - content: "\f158"; -} - -i.icon.ruble:before { - content: "\f158"; -} - -i.icon.rupee:before { - content: "\f156"; -} - -i.icon.s15:before { - content: "\f2cd"; -} - -i.icon.selected.radio:before { - content: "\f192"; -} - -i.icon.send:before { - content: "\f1d8"; -} - -i.icon.setting:before { - content: "\f013"; -} - -i.icon.settings:before { - content: "\f085"; -} - -i.icon.shekel:before { - content: "\f20b"; -} - -i.icon.sheqel:before { - content: "\f20b"; -} - -i.icon.shipping:before { - content: "\f0d1"; -} - -i.icon.shop:before { - content: "\f07a"; -} - -i.icon.shuffle:before { - content: "\f074"; -} - -i.icon.shutdown:before { - content: "\f011"; -} - -i.icon.sidebar:before { - content: "\f0c9"; -} - -i.icon.signing:before { - content: "\f2a7"; -} - -i.icon.signup:before { - content: "\f044"; -} - -i.icon.sliders:before { - content: "\f1de"; -} - -i.icon.soccer:before { - content: "\f1e3"; -} - -i.icon.sort.alphabet.ascending:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.descending:before { - content: "\f15e"; -} - -i.icon.sort.ascending:before { - content: "\f0de"; -} - -i.icon.sort.content.ascending:before { - content: "\f160"; -} - -i.icon.sort.content.descending:before { - content: "\f161"; -} - -i.icon.sort.descending:before { - content: "\f0dd"; -} - -i.icon.sort.numeric.ascending:before { - content: "\f162"; -} - -i.icon.sort.numeric.descending:before { - content: "\f163"; -} - -i.icon.sound:before { - content: "\f025"; -} - -i.icon.spy:before { - content: "\f21b"; -} - -i.icon.stripe.card:before { - content: "\f1f5"; -} - -i.icon.student:before { - content: "\f19d"; -} - -i.icon.talk:before { - content: "\f27a"; -} - -i.icon.target:before { - content: "\f140"; -} - -i.icon.teletype:before { - content: "\f1e4"; -} - -i.icon.television:before { - content: "\f26c"; -} - -i.icon.text.cursor:before { - content: "\f246"; -} - -i.icon.text.telephone:before { - content: "\f1e4"; -} - -i.icon.theme.isle:before { - content: "\f2b2"; -} - -i.icon.theme:before { - content: "\f043"; -} - -i.icon.thermometer:before { - content: "\f2c7"; -} - -i.icon.thumb.tack:before { - content: "\f08d"; -} - -i.icon.time:before { - content: "\f017"; -} - -i.icon.tm:before { - content: "\f25c"; -} - -i.icon.toggle.down:before { - content: "\f150"; -} - -i.icon.toggle.left:before { - content: "\f191"; -} - -i.icon.toggle.right:before { - content: "\f152"; -} - -i.icon.toggle.up:before { - content: "\f151"; -} - -i.icon.translate:before { - content: "\f1ab"; -} - -i.icon.travel:before { - content: "\f0b1"; -} - -i.icon.treatment:before { - content: "\f0f1"; -} - -i.icon.triangle.down:before { - content: "\f0d7"; -} - -i.icon.triangle.left:before { - content: "\f0d9"; -} - -i.icon.triangle.right:before { - content: "\f0da"; -} - -i.icon.triangle.up:before { - content: "\f0d8"; -} - -i.icon.try:before { - content: "\f195"; -} - -i.icon.unhide:before { - content: "\f06e"; -} - -i.icon.unlinkify:before { - content: "\f127"; -} - -i.icon.unmute:before { - content: "\f130"; -} - -i.icon.usd:before { - content: "\f155"; -} - -i.icon.user.cancel:before { - content: "\f235"; -} - -i.icon.user.close:before { - content: "\f235"; -} - -i.icon.user.delete:before { - content: "\f235"; -} - -i.icon.user.x:before { - content: "\f235"; -} - -i.icon.vcard:before { - content: "\f2bb"; -} - -i.icon.video.camera:before { - content: "\f03d"; -} - -i.icon.video.play:before { - content: "\f144"; -} - -i.icon.visa.card:before { - content: "\f1f0"; -} - -i.icon.visa:before { - content: "\f1f0"; -} - -i.icon.volume.control.phone:before { - content: "\f2a0"; -} - -i.icon.wait:before { - content: "\f017"; -} - -i.icon.warning.circle:before { - content: "\f06a"; -} - -i.icon.warning.sign:before { - content: "\f071"; -} - -i.icon.warning:before { - content: "\f12a"; -} - -i.icon.wechat:before { - content: "\f1d7"; -} - -i.icon.wi-fi:before { - content: "\f1eb"; -} - -i.icon.wikipedia:before { - content: "\f266"; -} - -i.icon.winner:before { - content: "\f091"; -} - -i.icon.wizard:before { - content: "\f0d0"; -} - -i.icon.woman:before { - content: "\f221"; -} - -i.icon.won:before { - content: "\f159"; -} - -i.icon.wordpress.beginner:before { - content: "\f297"; -} - -i.icon.wordpress.forms:before { - content: "\f298"; -} - -i.icon.world:before { - content: "\f0ac"; -} - -i.icon.write.square:before { - content: "\f14b"; -} - -i.icon.x:before { - content: "\f00d"; -} - -i.icon.yc:before { - content: "\f23b"; -} - -i.icon.ycombinator:before { - content: "\f23b"; -} - -i.icon.yen:before { - content: "\f157"; -} - -i.icon.zip:before { - content: "\f187"; -} - -i.icon.zoom-in:before { - content: "\f00e"; -} - -i.icon.zoom-out:before { - content: "\f010"; -} - -i.icon.zoom:before { - content: "\f00e"; -} - -i.icon.bitbucket.square:before { - content: "\f171"; -} - -i.icon.checkmark.box:before { - content: "\f14a"; -} - -i.icon.circle.thin:before { - content: "\f111"; -} - -i.icon.cloud.download:before { - content: "\f381"; -} - -i.icon.cloud.upload:before { - content: "\f382"; -} - -i.icon.compose:before { - content: "\f303"; -} - -i.icon.conversation:before { - content: "\f086"; -} - -i.icon.credit.card.alternative:before { - content: "\f09d"; -} - -i.icon.currency:before { - content: "\f3d1"; -} - -i.icon.dashboard:before { - content: "\f3fd"; -} - -i.icon.diamond:before { - content: "\f3a5"; -} - -i.icon.disk:before { - content: "\f0a0"; -} - -i.icon.exchange:before { - content: "\f362"; -} - -i.icon.external.share:before { - content: "\f14d"; -} - -i.icon.external.square:before { - content: "\f360"; -} - -i.icon.external:before { - content: "\f35d"; -} - -i.icon.facebook.official:before { - content: "\f082"; -} - -i.icon.food:before { - content: "\f2e7"; -} - -i.icon.hourglass.zero:before { - content: "\f253"; -} - -i.icon.level.down:before { - content: "\f3be"; -} - -i.icon.level.up:before { - content: "\f3bf"; -} - -i.icon.logout:before { - content: "\f2f5"; -} - -i.icon.meanpath:before { - content: "\f0c8"; -} - -i.icon.money:before { - content: "\f3d1"; -} - -i.icon.move:before { - content: "\f0b2"; -} - -i.icon.pencil:before { - content: "\f303"; -} - -i.icon.protect:before { - content: "\f023"; -} - -i.icon.radio:before { - content: "\f192"; -} - -i.icon.remove.bookmark:before { - content: "\f02e"; -} - -i.icon.resize.horizontal:before { - content: "\f337"; -} - -i.icon.resize.vertical:before { - content: "\f338"; -} - -i.icon.sign-in:before { - content: "\f2f6"; -} - -i.icon.sign-out:before { - content: "\f2f5"; -} - -i.icon.spoon:before { - content: "\f2e5"; -} - -i.icon.star.half.empty:before { - content: "\f089"; -} - -i.icon.star.half.full:before { - content: "\f089"; -} - -i.icon.ticket:before { - content: "\f3ff"; -} - -i.icon.times.rectangle:before { - content: "\f410"; -} - -i.icon.write:before { - content: "\f303"; -} - -i.icon.youtube.play:before { - content: "\f167"; -} - -/******************************* - Outline Icons -*******************************/ - -/* Outline Icon */ - -/* Load & Define Icon Font */ - -@font-face { - font-family: 'outline-icons'; - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.eot"); - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.eot?#iefix") format('embedded-opentype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.woff2") format('woff2'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.woff") format('woff'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.ttf") format('truetype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.svg#icons") format('svg'); - font-style: normal; - font-weight: normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; -} - -i.icon.outline { - font-family: 'outline-icons'; -} - -/* Icon Definitions */ - -i.icon.address.book.outline:before { - content: "\f2b9"; -} - -i.icon.address.card.outline:before { - content: "\f2bb"; -} - -i.icon.arrow.alternate.circle.down.outline:before { - content: "\f358"; -} - -i.icon.arrow.alternate.circle.left.outline:before { - content: "\f359"; -} - -i.icon.arrow.alternate.circle.right.outline:before { - content: "\f35a"; -} - -i.icon.arrow.alternate.circle.up.outline:before { - content: "\f35b"; -} - -i.icon.bell.outline:before { - content: "\f0f3"; -} - -i.icon.bell.slash.outline:before { - content: "\f1f6"; -} - -i.icon.bookmark.outline:before { - content: "\f02e"; -} - -i.icon.building.outline:before { - content: "\f1ad"; -} - -i.icon.calendar.outline:before { - content: "\f133"; -} - -i.icon.calendar.alternate.outline:before { - content: "\f073"; -} - -i.icon.calendar.check.outline:before { - content: "\f274"; -} - -i.icon.calendar.minus.outline:before { - content: "\f272"; -} - -i.icon.calendar.plus.outline:before { - content: "\f271"; -} - -i.icon.calendar.times.outline:before { - content: "\f273"; -} - -i.icon.caret.square.down.outline:before { - content: "\f150"; -} - -i.icon.caret.square.left.outline:before { - content: "\f191"; -} - -i.icon.caret.square.right.outline:before { - content: "\f152"; -} - -i.icon.caret.square.up.outline:before { - content: "\f151"; -} - -i.icon.chart.bar.outline:before { - content: "\f080"; -} - -i.icon.check.circle.outline:before { - content: "\f058"; -} - -i.icon.check.square.outline:before { - content: "\f14a"; -} - -i.icon.circle.outline:before { - content: "\f111"; -} - -i.icon.clipboard.outline:before { - content: "\f328"; -} - -i.icon.clock.outline:before { - content: "\f017"; -} - -i.icon.clone.outline:before { - content: "\f24d"; -} - -i.icon.closed.captioning.outline:before { - content: "\f20a"; -} - -i.icon.comment.outline:before { - content: "\f075"; -} - -i.icon.comment.alternate.outline:before { - content: "\f27a"; -} - -i.icon.comments.outline:before { - content: "\f086"; -} - -i.icon.compass.outline:before { - content: "\f14e"; -} - -i.icon.copy.outline:before { - content: "\f0c5"; -} - -i.icon.copyright.outline:before { - content: "\f1f9"; -} - -i.icon.credit.card.outline:before { - content: "\f09d"; -} - -i.icon.dot.circle.outline:before { - content: "\f192"; -} - -i.icon.edit.outline:before { - content: "\f044"; -} - -i.icon.envelope.outline:before { - content: "\f0e0"; -} - -i.icon.envelope.open.outline:before { - content: "\f2b6"; -} - -i.icon.eye.slash.outline:before { - content: "\f070"; -} - -i.icon.file.outline:before { - content: "\f15b"; -} - -i.icon.file.alternate.outline:before { - content: "\f15c"; -} - -i.icon.file.archive.outline:before { - content: "\f1c6"; -} - -i.icon.file.audio.outline:before { - content: "\f1c7"; -} - -i.icon.file.code.outline:before { - content: "\f1c9"; -} - -i.icon.file.excel.outline:before { - content: "\f1c3"; -} - -i.icon.file.image.outline:before { - content: "\f1c5"; -} - -i.icon.file.pdf.outline:before { - content: "\f1c1"; -} - -i.icon.file.powerpoint.outline:before { - content: "\f1c4"; -} - -i.icon.file.video.outline:before { - content: "\f1c8"; -} - -i.icon.file.word.outline:before { - content: "\f1c2"; -} - -i.icon.flag.outline:before { - content: "\f024"; -} - -i.icon.folder.outline:before { - content: "\f07b"; -} - -i.icon.folder.open.outline:before { - content: "\f07c"; -} - -i.icon.frown.outline:before { - content: "\f119"; -} - -i.icon.futbol.outline:before { - content: "\f1e3"; -} - -i.icon.gem.outline:before { - content: "\f3a5"; -} - -i.icon.hand.lizard.outline:before { - content: "\f258"; -} - -i.icon.hand.paper.outline:before { - content: "\f256"; -} - -i.icon.hand.peace.outline:before { - content: "\f25b"; -} - -i.icon.hand.point.down.outline:before { - content: "\f0a7"; -} - -i.icon.hand.point.left.outline:before { - content: "\f0a5"; -} - -i.icon.hand.point.right.outline:before { - content: "\f0a4"; -} - -i.icon.hand.point.up.outline:before { - content: "\f0a6"; -} - -i.icon.hand.pointer.outline:before { - content: "\f25a"; -} - -i.icon.hand.rock.outline:before { - content: "\f255"; -} - -i.icon.hand.scissors.outline:before { - content: "\f257"; -} - -i.icon.hand.spock.outline:before { - content: "\f259"; -} - -i.icon.handshake.outline:before { - content: "\f2b5"; -} - -i.icon.hdd.outline:before { - content: "\f0a0"; -} - -i.icon.heart.outline:before { - content: "\f004"; -} - -i.icon.hospital.outline:before { - content: "\f0f8"; -} - -i.icon.hourglass.outline:before { - content: "\f254"; -} - -i.icon.id.badge.outline:before { - content: "\f2c1"; -} - -i.icon.id.card.outline:before { - content: "\f2c2"; -} - -i.icon.image.outline:before { - content: "\f03e"; -} - -i.icon.images.outline:before { - content: "\f302"; -} - -i.icon.keyboard.outline:before { - content: "\f11c"; -} - -i.icon.lemon.outline:before { - content: "\f094"; -} - -i.icon.life.ring.outline:before { - content: "\f1cd"; -} - -i.icon.lightbulb.outline:before { - content: "\f0eb"; -} - -i.icon.list.alternate.outline:before { - content: "\f022"; -} - -i.icon.map.outline:before { - content: "\f279"; -} - -i.icon.meh.outline:before { - content: "\f11a"; -} - -i.icon.minus.square.outline:before { - content: "\f146"; -} - -i.icon.money.bill.alternate.outline:before { - content: "\f3d1"; -} - -i.icon.moon.outline:before { - content: "\f186"; -} - -i.icon.newspaper.outline:before { - content: "\f1ea"; -} - -i.icon.object.group.outline:before { - content: "\f247"; -} - -i.icon.object.ungroup.outline:before { - content: "\f248"; -} - -i.icon.paper.plane.outline:before { - content: "\f1d8"; -} - -i.icon.pause.circle.outline:before { - content: "\f28b"; -} - -i.icon.play.circle.outline:before { - content: "\f144"; -} - -i.icon.plus.square.outline:before { - content: "\f0fe"; -} - -i.icon.question.circle.outline:before { - content: "\f059"; -} - -i.icon.registered.outline:before { - content: "\f25d"; -} - -i.icon.save.outline:before { - content: "\f0c7"; -} - -i.icon.share.square.outline:before { - content: "\f14d"; -} - -i.icon.smile.outline:before { - content: "\f118"; -} - -i.icon.snowflake.outline:before { - content: "\f2dc"; -} - -i.icon.square.outline:before { - content: "\f0c8"; -} - -i.icon.star.outline:before { - content: "\f005"; -} - -i.icon.star.half.outline:before { - content: "\f089"; -} - -i.icon.sticky.note.outline:before { - content: "\f249"; -} - -i.icon.stop.circle.outline:before { - content: "\f28d"; -} - -i.icon.sun.outline:before { - content: "\f185"; -} - -i.icon.thumbs.down.outline:before { - content: "\f165"; -} - -i.icon.thumbs.up.outline:before { - content: "\f164"; -} - -i.icon.times.circle.outline:before { - content: "\f057"; -} - -i.icon.trash.alternate.outline:before { - content: "\f2ed"; -} - -i.icon.user.outline:before { - content: "\f007"; -} - -i.icon.user.circle.outline:before { - content: "\f2bd"; -} - -i.icon.window.close.outline:before { - content: "\f410"; -} - -i.icon.window.maximize.outline:before { - content: "\f2d0"; -} - -i.icon.window.minimize.outline:before { - content: "\f2d1"; -} - -i.icon.window.restore.outline:before { - content: "\f2d2"; -} - -/* Outline Aliases */ - -i.icon.disk.outline:before { - content: "\f0a0"; -} - -i.icon.heart.empty, -i.icon.star.empty { - font-family: 'outline-icons'; -} - -i.icon.heart.empty:before { - content: "\f004"; -} - -i.icon.star.empty:before { - content: "\f089"; -} - -/******************************* - Brand Icons -*******************************/ - -/* Load & Define Brand Font */ - -@font-face { - font-family: 'brand-icons'; - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.eot"); - src: url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.eot?#iefix") format('embedded-opentype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.woff2") format('woff2'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.woff") format('woff'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.ttf") format('truetype'), url("inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.svg#icons") format('svg'); - font-style: normal; - font-weight: normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; -} - -/* Brand Icon Font Family */ - -i.icon.\35 00px, -i.icon.accessible.icon, -i.icon.accusoft, -i.icon.adn, -i.icon.adversal, -i.icon.affiliatetheme, -i.icon.algolia, -i.icon.amazon, -i.icon.amazon.pay, -i.icon.amilia, -i.icon.android, -i.icon.angellist, -i.icon.angrycreative, -i.icon.angular, -i.icon.app.store, -i.icon.app.store.ios, -i.icon.apper, -i.icon.apple, -i.icon.apple.pay, -i.icon.asymmetrik, -i.icon.audible, -i.icon.autoprefixer, -i.icon.avianex, -i.icon.aviato, -i.icon.aws, -i.icon.bandcamp, -i.icon.behance, -i.icon.behance.square, -i.icon.bimobject, -i.icon.bitbucket, -i.icon.bitcoin, -i.icon.bity, -i.icon.black.tie, -i.icon.blackberry, -i.icon.blogger, -i.icon.blogger.b, -i.icon.bluetooth, -i.icon.bluetooth.b, -i.icon.btc, -i.icon.buromobelexperte, -i.icon.buysellads, -i.icon.cc.amazon.pay, -i.icon.cc.amex, -i.icon.cc.apple.pay, -i.icon.cc.diners.club, -i.icon.cc.discover, -i.icon.cc.jcb, -i.icon.cc.mastercard, -i.icon.cc.paypal, -i.icon.cc.stripe, -i.icon.cc.visa, -i.icon.centercode, -i.icon.chrome, -i.icon.cloudscale, -i.icon.cloudsmith, -i.icon.cloudversify, -i.icon.codepen, -i.icon.codiepie, -i.icon.connectdevelop, -i.icon.contao, -i.icon.cpanel, -i.icon.creative.commons, -i.icon.css3, -i.icon.css3.alternate, -i.icon.cuttlefish, -i.icon.d.and.d, -i.icon.dashcube, -i.icon.delicious, -i.icon.deploydog, -i.icon.deskpro, -i.icon.deviantart, -i.icon.digg, -i.icon.digital.ocean, -i.icon.discord, -i.icon.discourse, -i.icon.dochub, -i.icon.docker, -i.icon.draft2digital, -i.icon.dribbble, -i.icon.dribbble.square, -i.icon.dropbox, -i.icon.drupal, -i.icon.dyalog, -i.icon.earlybirds, -i.icon.edge, -i.icon.elementor, -i.icon.ember, -i.icon.empire, -i.icon.envira, -i.icon.erlang, -i.icon.ethereum, -i.icon.etsy, -i.icon.expeditedssl, -i.icon.facebook, -i.icon.facebook.f, -i.icon.facebook.messenger, -i.icon.facebook.square, -i.icon.firefox, -i.icon.first.order, -i.icon.firstdraft, -i.icon.flickr, -i.icon.flipboard, -i.icon.fly, -i.icon.font.awesome, -i.icon.font.awesome.alternate, -i.icon.font.awesome.flag, -i.icon.fonticons, -i.icon.fonticons.fi, -i.icon.fort.awesome, -i.icon.fort.awesome.alternate, -i.icon.forumbee, -i.icon.foursquare, -i.icon.free.code.camp, -i.icon.freebsd, -i.icon.get.pocket, -i.icon.gg, -i.icon.gg.circle, -i.icon.git, -i.icon.git.square, -i.icon.github, -i.icon.github.alternate, -i.icon.github.square, -i.icon.gitkraken, -i.icon.gitlab, -i.icon.gitter, -i.icon.glide, -i.icon.glide.g, -i.icon.gofore, -i.icon.goodreads, -i.icon.goodreads.g, -i.icon.google, -i.icon.google.drive, -i.icon.google.play, -i.icon.google.plus, -i.icon.google.plus.g, -i.icon.google.plus.square, -i.icon.google.wallet, -i.icon.gratipay, -i.icon.grav, -i.icon.gripfire, -i.icon.grunt, -i.icon.gulp, -i.icon.hacker.news, -i.icon.hacker.news.square, -i.icon.hips, -i.icon.hire.a.helper, -i.icon.hooli, -i.icon.hotjar, -i.icon.houzz, -i.icon.html5, -i.icon.hubspot, -i.icon.imdb, -i.icon.instagram, -i.icon.internet.explorer, -i.icon.ioxhost, -i.icon.itunes, -i.icon.itunes.note, -i.icon.jenkins, -i.icon.joget, -i.icon.joomla, -i.icon.js, -i.icon.js.square, -i.icon.jsfiddle, -i.icon.keycdn, -i.icon.kickstarter, -i.icon.kickstarter.k, -i.icon.korvue, -i.icon.laravel, -i.icon.lastfm, -i.icon.lastfm.square, -i.icon.leanpub, -i.icon.less, -i.icon.linechat, -i.icon.linkedin, -i.icon.linkedin.alternate, -i.icon.linkedin.in, -i.icon.linode, -i.icon.linux, -i.icon.lyft, -i.icon.magento, -i.icon.maxcdn, -i.icon.medapps, -i.icon.medium, -i.icon.medium.m, -i.icon.medrt, -i.icon.meetup, -i.icon.microsoft, -i.icon.mix, -i.icon.mixcloud, -i.icon.mizuni, -i.icon.modx, -i.icon.monero, -i.icon.napster, -i.icon.nintendo.switch, -i.icon.node, -i.icon.node.js, -i.icon.npm, -i.icon.ns8, -i.icon.nutritionix, -i.icon.odnoklassniki, -i.icon.odnoklassniki.square, -i.icon.opencart, -i.icon.openid, -i.icon.opera, -i.icon.optin.monster, -i.icon.osi, -i.icon.page4, -i.icon.pagelines, -i.icon.palfed, -i.icon.patreon, -i.icon.paypal, -i.icon.periscope, -i.icon.phabricator, -i.icon.phoenix.framework, -i.icon.php, -i.icon.pied.piper, -i.icon.pied.piper.alternate, -i.icon.pied.piper.pp, -i.icon.pinterest, -i.icon.pinterest.p, -i.icon.pinterest.square, -i.icon.playstation, -i.icon.product.hunt, -i.icon.pushed, -i.icon.python, -i.icon.qq, -i.icon.quinscape, -i.icon.quora, -i.icon.ravelry, -i.icon.react, -i.icon.rebel, -i.icon.redriver, -i.icon.reddit, -i.icon.reddit.alien, -i.icon.reddit.square, -i.icon.rendact, -i.icon.renren, -i.icon.replyd, -i.icon.resolving, -i.icon.rocketchat, -i.icon.rockrms, -i.icon.safari, -i.icon.sass, -i.icon.schlix, -i.icon.scribd, -i.icon.searchengin, -i.icon.sellcast, -i.icon.sellsy, -i.icon.servicestack, -i.icon.shirtsinbulk, -i.icon.simplybuilt, -i.icon.sistrix, -i.icon.skyatlas, -i.icon.skype, -i.icon.slack, -i.icon.slack.hash, -i.icon.slideshare, -i.icon.snapchat, -i.icon.snapchat.ghost, -i.icon.snapchat.square, -i.icon.soundcloud, -i.icon.speakap, -i.icon.spotify, -i.icon.stack.exchange, -i.icon.stack.overflow, -i.icon.staylinked, -i.icon.steam, -i.icon.steam.square, -i.icon.steam.symbol, -i.icon.sticker.mule, -i.icon.strava, -i.icon.stripe, -i.icon.stripe.s, -i.icon.studiovinari, -i.icon.stumbleupon, -i.icon.stumbleupon.circle, -i.icon.superpowers, -i.icon.supple, -i.icon.telegram, -i.icon.telegram.plane, -i.icon.tencent.weibo, -i.icon.themeisle, -i.icon.trello, -i.icon.tripadvisor, -i.icon.tumblr, -i.icon.tumblr.square, -i.icon.twitch, -i.icon.twitter, -i.icon.twitter.square, -i.icon.typo3, -i.icon.uber, -i.icon.uikit, -i.icon.uniregistry, -i.icon.untappd, -i.icon.usb, -i.icon.ussunnah, -i.icon.vaadin, -i.icon.viacoin, -i.icon.viadeo, -i.icon.viadeo.square, -i.icon.viber, -i.icon.vimeo, -i.icon.vimeo.square, -i.icon.vimeo.v, -i.icon.vine, -i.icon.vk, -i.icon.vnv, -i.icon.vuejs, -i.icon.wechat, -i.icon.weibo, -i.icon.weixin, -i.icon.whatsapp, -i.icon.whatsapp.square, -i.icon.whmcs, -i.icon.wikipedia.w, -i.icon.windows, -i.icon.wordpress, -i.icon.wordpress.simple, -i.icon.wpbeginner, -i.icon.wpexplorer, -i.icon.wpforms, -i.icon.xbox, -i.icon.xing, -i.icon.xing.square, -i.icon.y.combinator, -i.icon.yahoo, -i.icon.yandex, -i.icon.yandex.international, -i.icon.yelp, -i.icon.yoast, -i.icon.youtube, -i.icon.youtube.square { - font-family: 'brand-icons'; -} - -/* Brand Icons Ideally Would Be Defined Here */ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Image - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Image -*******************************/ - -.ui.image { - position: relative; - display: inline-block; - vertical-align: middle; - max-width: 100%; - background-color: transparent; -} - -img.ui.image { - display: block; -} - -.ui.image svg, -.ui.image img { - display: block; - max-width: 100%; - height: auto; -} - -/******************************* - States -*******************************/ - -.ui.hidden.images, -.ui.hidden.image { - display: none; -} - -.ui.hidden.transition.images, -.ui.hidden.transition.image { - display: block; - visibility: hidden; -} - -.ui.images > .hidden.transition { - display: inline-block; - visibility: hidden; -} - -.ui.disabled.images, -.ui.disabled.image { - cursor: default; - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Inline ----------------*/ - -.ui.inline.image, -.ui.inline.image svg, -.ui.inline.image img { - display: inline-block; -} - -/*------------------ - Vertical Aligned --------------------*/ - -.ui.top.aligned.images .image, -.ui.top.aligned.image, -.ui.top.aligned.image svg, -.ui.top.aligned.image img { - display: inline-block; - vertical-align: top; -} - -.ui.middle.aligned.images .image, -.ui.middle.aligned.image, -.ui.middle.aligned.image svg, -.ui.middle.aligned.image img { - display: inline-block; - vertical-align: middle; -} - -.ui.bottom.aligned.images .image, -.ui.bottom.aligned.image, -.ui.bottom.aligned.image svg, -.ui.bottom.aligned.image img { - display: inline-block; - vertical-align: bottom; -} - -/*-------------- - Rounded ----------------*/ - -.ui.rounded.images .image, -.ui.rounded.image, -.ui.rounded.images .image > *, -.ui.rounded.image > * { - border-radius: 0.3125em; -} - -/*-------------- - Bordered ----------------*/ - -.ui.bordered.images .image, -.ui.bordered.images img, -.ui.bordered.images svg, -.ui.bordered.image img, -.ui.bordered.image svg, -img.ui.bordered.image { - border: 1px solid rgba(0, 0, 0, 0.1); -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.images, -.ui.circular.image { - overflow: hidden; -} - -.ui.circular.images .image, -.ui.circular.image, -.ui.circular.images .image > *, -.ui.circular.image > * { - border-radius: 500rem; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.images, -.ui.fluid.image, -.ui.fluid.images img, -.ui.fluid.images svg, -.ui.fluid.image svg, -.ui.fluid.image img { - display: block; - width: 100%; - height: auto; -} - -/*-------------- - Avatar ----------------*/ - -.ui.avatar.images .image, -.ui.avatar.images img, -.ui.avatar.images svg, -.ui.avatar.image img, -.ui.avatar.image svg, -.ui.avatar.image { - margin-right: 0.25em; - display: inline-block; - width: 2em; - height: 2em; - border-radius: 500rem; -} - -/*------------------- - Spaced ---------------------*/ - -.ui.spaced.image { - display: inline-block !important; - margin-left: 0.5em; - margin-right: 0.5em; -} - -.ui[class*="left spaced"].image { - margin-left: 0.5em; - margin-right: 0em; -} - -.ui[class*="right spaced"].image { - margin-left: 0em; - margin-right: 0.5em; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.image, -.ui.floated.images { - float: left; - margin-right: 1em; - margin-bottom: 1em; -} - -.ui.right.floated.images, -.ui.right.floated.image { - float: right; - margin-right: 0em; - margin-bottom: 1em; - margin-left: 1em; -} - -.ui.floated.images:last-child, -.ui.floated.image:last-child { - margin-bottom: 0em; -} - -.ui.centered.images, -.ui.centered.image { - margin-left: auto; - margin-right: auto; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.images .image, -.ui.mini.images img, -.ui.mini.images svg, -.ui.mini.image { - width: 35px; - height: auto; - font-size: 0.78571429rem; -} - -.ui.tiny.images .image, -.ui.tiny.images img, -.ui.tiny.images svg, -.ui.tiny.image { - width: 80px; - height: auto; - font-size: 0.85714286rem; -} - -.ui.small.images .image, -.ui.small.images img, -.ui.small.images svg, -.ui.small.image { - width: 150px; - height: auto; - font-size: 0.92857143rem; -} - -.ui.medium.images .image, -.ui.medium.images img, -.ui.medium.images svg, -.ui.medium.image { - width: 300px; - height: auto; - font-size: 1rem; -} - -.ui.large.images .image, -.ui.large.images img, -.ui.large.images svg, -.ui.large.image { - width: 450px; - height: auto; - font-size: 1.14285714rem; -} - -.ui.big.images .image, -.ui.big.images img, -.ui.big.images svg, -.ui.big.image { - width: 600px; - height: auto; - font-size: 1.28571429rem; -} - -.ui.huge.images .image, -.ui.huge.images img, -.ui.huge.images svg, -.ui.huge.image { - width: 800px; - height: auto; - font-size: 1.42857143rem; -} - -.ui.massive.images .image, -.ui.massive.images img, -.ui.massive.images svg, -.ui.massive.image { - width: 960px; - height: auto; - font-size: 1.71428571rem; -} - -/******************************* - Groups -*******************************/ - -.ui.images { - font-size: 0em; - margin: 0em -0.25rem 0rem; -} - -.ui.images .image, -.ui.images > img, -.ui.images > svg { - display: inline-block; - margin: 0em 0.25rem 0.5rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Input - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -/*-------------------- - Inputs ----------------------*/ - -.ui.input { - position: relative; - font-weight: normal; - font-style: normal; - display: inline-flex; - color: #DDDDDD; -} - -.ui.input > input { - margin: 0em; - max-width: 100%; - flex: 1 0 auto; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - text-align: left; - line-height: 1.21428571em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - padding: 0.67857143em 1em; - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - color: #DDDDDD; - border-radius: 0.35714286rem; - transition: box-shadow 0.1s ease, border-color 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; - box-shadow: none; -} - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ - -.ui.input > input::-webkit-input-placeholder { - color: #777777; -} - -.ui.input > input::-moz-placeholder { - color: #777777; -} - -.ui.input > input:-ms-input-placeholder { - color: #777777; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Disabled ----------------------*/ - -.ui.disabled.input, -.ui.input:not(.disabled) input[disabled] { - opacity: 0.45; -} - -.ui.disabled.input > input, -.ui.input:not(.disabled) input[disabled] { - pointer-events: none; -} - -/*-------------------- - Active ----------------------*/ - -.ui.input > input:active, -.ui.input.down input { - border-color: rgba(0, 0, 0, 0.3); - background: #FAFAFA; - color: #DDDDDD; - box-shadow: none; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.loading.input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.loading.input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - animation: button-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; -} - -/*-------------------- - Focus ----------------------*/ - -.ui.input.focus > input, -.ui.input > input:focus { - border-color: #85B7D9; - background: #2E3235; - color: rgba(255, 255, 255, 0.8); - box-shadow: none; -} - -.ui.input.focus > input::-webkit-input-placeholder, -.ui.input > input:focus::-webkit-input-placeholder { - color: #777777; -} - -.ui.input.focus > input::-moz-placeholder, -.ui.input > input:focus::-moz-placeholder { - color: #777777; -} - -.ui.input.focus > input:-ms-input-placeholder, -.ui.input > input:focus:-ms-input-placeholder { - color: #777777; -} - -/*-------------------- - Error ----------------------*/ - -.ui.input.error > input { - background-color: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - box-shadow: none; -} - -/* Error Placeholder */ - -.ui.input.error > input::-webkit-input-placeholder { - color: #e7bdbc; -} - -.ui.input.error > input::-moz-placeholder { - color: #e7bdbc; -} - -.ui.input.error > input:-ms-input-placeholder { - color: #e7bdbc !important; -} - -/* Focused Error Placeholder */ - -.ui.input.error > input:focus::-webkit-input-placeholder { - color: #da9796; -} - -.ui.input.error > input:focus::-moz-placeholder { - color: #da9796; -} - -.ui.input.error > input:focus:-ms-input-placeholder { - color: #da9796 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Transparent ----------------------*/ - -.ui.transparent.input > input { - border-color: transparent !important; - background-color: transparent !important; - padding: 0em !important; - box-shadow: none !important; - border-radius: 0px !important; -} - -/* Transparent Icon */ - -.ui.transparent.icon.input > i.icon { - width: 1.1em; -} - -.ui.transparent.icon.input > input { - padding-left: 0em !important; - padding-right: 2em !important; -} - -.ui.transparent[class*="left icon"].input > input { - padding-left: 2em !important; - padding-right: 0em !important; -} - -/* Transparent Inverted */ - -.ui.transparent.inverted.input { - color: #2E3235; -} - -.ui.transparent.inverted.input > input { - color: inherit; -} - -.ui.transparent.inverted.input > input::-webkit-input-placeholder { - color: rgba(0, 0, 0, 0.5); -} - -.ui.transparent.inverted.input > input::-moz-placeholder { - color: rgba(0, 0, 0, 0.5); -} - -.ui.transparent.inverted.input > input:-ms-input-placeholder { - color: rgba(0, 0, 0, 0.5); -} - -/*-------------------- - Icon ----------------------*/ - -.ui.icon.input > i.icon { - cursor: default; - position: absolute; - line-height: 1; - text-align: center; - top: 0px; - right: 0px; - margin: 0em; - height: 100%; - width: 2.67142857em; - opacity: 0.5; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; - transition: opacity 0.3s ease; -} - -.ui.icon.input > i.icon:not(.link) { - pointer-events: none; -} - -.ui.icon.input > input { - padding-right: 2.67142857em !important; -} - -.ui.icon.input > i.icon:before, -.ui.icon.input > i.icon:after { - left: 0; - position: absolute; - text-align: center; - top: 50%; - width: 100%; - margin-top: -0.5em; -} - -.ui.icon.input > i.link.icon { - cursor: pointer; -} - -.ui.icon.input > i.circular.icon { - top: 0.35em; - right: 0.5em; -} - -/* Left Icon Input */ - -.ui[class*="left icon"].input > i.icon { - right: auto; - left: 1px; - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -.ui[class*="left icon"].input > i.circular.icon { - right: auto; - left: 0.5em; -} - -.ui[class*="left icon"].input > input { - padding-left: 2.67142857em !important; - padding-right: 1em !important; -} - -/* Focus */ - -.ui.icon.input > input:focus ~ i.icon { - opacity: 1; -} - -/*-------------------- - Labeled ----------------------*/ - -/* Adjacent Label */ - -.ui.labeled.input > .label { - flex: 0 0 auto; - margin: 0; - font-size: 1em; -} - -.ui.labeled.input > .label:not(.corner) { - padding-top: 0.78571429em; - padding-bottom: 0.78571429em; -} - -/* Regular Label on Left */ - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; - border-left-color: transparent; -} - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus { - border-left-color: #85B7D9; -} - -/* Regular Label on Right */ - -.ui[class*="right labeled"].input > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui[class*="right labeled"].input > input + .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="right labeled"].input > input:focus { - border-right-color: #85B7D9 !important; -} - -/* Corner Label */ - -.ui.labeled.input .corner.label { - top: 1px; - right: 1px; - font-size: 0.64285714em; - border-radius: 0em 0.35714286rem 0em 0em; -} - -/* Spacing with corner label */ - -.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input { - padding-right: 2.5em !important; -} - -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input { - padding-right: 3.25em !important; -} - -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon { - margin-right: 1.25em; -} - -/* Left Labeled */ - -.ui[class*="left corner labeled"].labeled.input > input { - padding-left: 2.5em !important; -} - -.ui[class*="left corner labeled"].icon.input > input { - padding-left: 3.25em !important; -} - -.ui[class*="left corner labeled"].icon.input > .icon { - margin-left: 1.25em; -} - -/* Corner Label Position */ - -.ui.input > .ui.corner.label { - top: 1px; - right: 1px; -} - -.ui.input > .ui.left.corner.label { - right: auto; - left: 1px; -} - -/*-------------------- - Action ----------------------*/ - -.ui.action.input > .button, -.ui.action.input > .buttons { - display: flex; - align-items: center; - flex: 0 0 auto; -} - -.ui.action.input > .button, -.ui.action.input > .buttons > .button { - padding-top: 0.78571429em; - padding-bottom: 0.78571429em; - margin: 0; -} - -/* Button on Right */ - -.ui.action.input:not([class*="left action"]) > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child), -.ui.action.input:not([class*="left action"]) > .button:not(:first-child), -.ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button { - border-radius: 0px; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:last-child, -.ui.action.input:not([class*="left action"]) > .button:last-child, -.ui.action.input:not([class*="left action"]) > .buttons:last-child > .button { - border-radius: 0px 0.35714286rem 0.35714286rem 0px; -} - -/* Input Focus */ - -.ui.action.input:not([class*="left action"]) > input:focus { - border-right-color: #85B7D9 !important; -} - -/* Button on Left */ - -.ui[class*="left action"].input > input { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; - border-left-color: transparent !important; -} - -.ui[class*="left action"].input > .dropdown, -.ui[class*="left action"].input > .button, -.ui[class*="left action"].input > .buttons > .button { - border-radius: 0px; -} - -.ui[class*="left action"].input > .dropdown:first-child, -.ui[class*="left action"].input > .button:first-child, -.ui[class*="left action"].input > .buttons:first-child > .button { - border-radius: 0.35714286rem 0px 0px 0.35714286rem; -} - -/* Input Focus */ - -.ui[class*="left action"].input > input:focus { - border-left-color: #85B7D9 !important; -} - -/*-------------------- - Inverted ----------------------*/ - -/* Standard */ - -.ui.inverted.input > input { - border: none; -} - -/*-------------------- - Fluid ----------------------*/ - -.ui.fluid.input { - display: flex; -} - -.ui.fluid.input > input { - width: 0px !important; -} - -/*-------------------- - Size ----------------------*/ - -.ui.mini.input { - font-size: 0.78571429em; -} - -.ui.small.input { - font-size: 0.92857143em; -} - -.ui.input { - font-size: 1em; -} - -.ui.large.input { - font-size: 1.14285714em; -} - -.ui.big.input { - font-size: 1.28571429em; -} - -.ui.huge.input { - font-size: 1.42857143em; -} - -.ui.massive.input { - font-size: 1.71428571em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Label - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Label -*******************************/ - -.ui.label { - display: inline-block; - line-height: 1; - vertical-align: baseline; - margin: 0em 0.14285714em; - --label-border-color: hsl(var(--hsl-slate-400) / 20%); - background-color: var(--label-background-color, hsl(var(--hsl-gray-400) / 10%)); - background-image: none; - padding: 0.5833em 0.833em; - color: var(--label-text-color, hsl(var(--hsl-gray-400))); - --label-active-background-color: hsl(var(--hsl-slate-400) / 20%); - --label-active-border-color: hsl(var(--hsl-slate-400) / 30%); - --label-active-text-color: hsl(var(--hsl-slate-300)); - --label-circular-background-color: hsl(var(--hsl-slate-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-slate-400)); - text-transform: none; - font-weight: var(--font-weights-medium); - border: 0px solid transparent; - border-radius: 0.35714286rem; - transition: background 0.1s ease; -} - -.ui.label:first-child { - margin-left: 0em; -} - -.ui.label:last-child { - margin-right: 0em; -} - -/* Link */ - -a.ui.label { - cursor: pointer; -} - -/* Inside Link */ - -.ui.label > a { - cursor: pointer; - color: inherit; - opacity: 0.5; - transition: 0.1s opacity ease; -} - -.ui.label > a:hover { - opacity: 1; -} - -/* Image */ - -.ui.label > img { - width: auto !important; - vertical-align: middle; - height: 2.1666em !important; -} - -/* Icon */ - -.ui.label > .icon { - width: auto; - margin: 0em 0.75em 0em 0em; -} - -/* Detail */ - -.ui.label > .detail { - display: inline-block; - vertical-align: top; - font-weight: 600; - margin-left: 1em; - opacity: 0.8; -} - -.ui.label > .detail .icon { - margin: 0em 0.25em 0em 0em; -} - -/* Removable label */ - -.ui.label > .close.icon, -.ui.label > .delete.icon { - cursor: pointer; - margin-right: 0em; - margin-left: 0.5em; - font-size: 0.92857143em; - opacity: 0.5; - transition: background 0.1s ease; -} - -.ui.label > .delete.icon:hover { - opacity: 1; -} - -/*------------------- - Group ---------------------*/ - -.ui.labels > .label { - margin: 0em 0.5em 0.5em 0em; -} - -/*------------------- - Coupling ---------------------*/ - -.ui.header > .ui.label { - margin-top: -0.29165em; -} - -/* Remove border radius on attached segment */ - -.ui.attached.segment > .ui.top.left.attached.label, -.ui.bottom.attached.segment > .ui.top.left.attached.label { - border-top-left-radius: 0; -} - -.ui.attached.segment > .ui.top.right.attached.label, -.ui.bottom.attached.segment > .ui.top.right.attached.label { - border-top-right-radius: 0; -} - -.ui.top.attached.segment > .ui.bottom.left.attached.label { - border-bottom-left-radius: 0; -} - -.ui.top.attached.segment > .ui.bottom.right.attached.label { - border-bottom-right-radius: 0; -} - -/* Padding on next content after a label */ - -.ui.top.attached.label:first-child + :not(.attached), -.ui.top.attached.label + [class*="right floated"] + * { - margin-top: 2rem !important; -} - -.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { - margin-top: 0em; - margin-bottom: 2rem !important; -} - -/******************************* - Types -*******************************/ - -.ui.image.label { - width: auto !important; - margin-top: 0em; - margin-bottom: 0em; - max-width: 9999px; - vertical-align: baseline; - text-transform: none; - background: hsl(var(--hsl-gray-400) / 10%); - padding: 0.5833em 0.833em 0.5833em 0.5em; - border-radius: 0.35714286rem; - box-shadow: none; -} - -.ui.image.label img { - display: inline-block; - vertical-align: top; - height: 2.1666em; - margin: -0.5833em 0.5em -0.5833em -0.5em; - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -.ui.image.label .detail { - background: rgba(255, 255, 255, 0.1); - margin: -0.5833em -0.833em -0.5833em 0.5em; - padding: 0.5833em 0.833em; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -/*------------------- - Tag ---------------------*/ - -.ui.tag.labels .label, -.ui.tag.label { - margin-left: 1em; - position: relative; - padding-left: 1.5em; - padding-right: 1.5em; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; - transition: none; -} - -.ui.tag.labels .label:before, -.ui.tag.label:before { - position: absolute; - transform: translateY(-50%) translateX(50%) rotate(-45deg); - top: 50%; - right: 100%; - content: ''; - background-color: inherit; - background-image: none; - width: 1.56em; - height: 1.56em; - transition: none; -} - -.ui.tag.labels .label:after, -.ui.tag.label:after { - position: absolute; - content: ''; - top: 50%; - left: -0.25em; - margin-top: -0.25em; - background-color: #2E3235 !important; - width: 0.5em; - height: 0.5em; - box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); - border-radius: 500rem; -} - -/*------------------- - Corner Label ---------------------*/ - -.ui.corner.label { - position: absolute; - top: 0em; - right: 0em; - margin: 0em; - padding: 0em; - text-align: center; - border-color: hsl(var(--hsl-gray-400) / 10%); - width: 4em; - height: 4em; - z-index: 1; - transition: border-color 0.1s ease; -} - -/* Icon Label */ - -.ui.corner.label { - background-color: transparent !important; -} - -.ui.corner.label:after { - position: absolute; - content: ""; - right: 0em; - top: 0em; - z-index: -1; - width: 0em; - height: 0em; - background-color: transparent !important; - border-top: 0em solid transparent; - border-right: 4em solid transparent; - border-bottom: 4em solid transparent; - border-left: 0em solid transparent; - border-right-color: inherit; - transition: border-color 0.1s ease; -} - -.ui.corner.label .icon { - cursor: default; - position: relative; - top: 0.64285714em; - left: 0.78571429em; - font-size: 1.14285714em; - margin: 0em; -} - -/* Left Corner */ - -.ui.left.corner.label, -.ui.left.corner.label:after { - right: auto; - left: 0em; -} - -.ui.left.corner.label:after { - border-top: 4em solid transparent; - border-right: 4em solid transparent; - border-bottom: 0em solid transparent; - border-left: 0em solid transparent; - border-top-color: inherit; -} - -.ui.left.corner.label .icon { - left: -0.78571429em; -} - -/* Segment */ - -.ui.segment > .ui.corner.label { - top: -1px; - right: -1px; -} - -.ui.segment > .ui.left.corner.label { - right: auto; - left: -1px; -} - -/*------------------- - Ribbon ---------------------*/ - -.ui.ribbon.label { - position: relative; - margin: 0em; - min-width: max-content; - border-radius: 0em 0.35714286rem 0.35714286rem 0em; - border-color: rgba(0, 0, 0, 0.15); -} - -.ui.ribbon.label:after { - position: absolute; - content: ''; - top: 100%; - left: 0%; - background-color: transparent !important; - border-style: solid; - border-width: 0em 1.2em 1.2em 0em; - border-color: transparent; - border-right-color: inherit; - width: 0em; - height: 0em; -} - -/* Positioning */ - -.ui.ribbon.label { - left: calc(-1rem - 1.2em); - margin-right: -1.2em; - padding-left: calc(1rem + 1.2em); - padding-right: 1.2em; -} - -.ui[class*="right ribbon"].label { - left: calc(100% + 1rem + 1.2em); - padding-left: 1.2em; - padding-right: calc(1rem + 1.2em); -} - -/* Right Ribbon */ - -.ui[class*="right ribbon"].label { - text-align: left; - transform: translateX(-100%); - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -.ui[class*="right ribbon"].label:after { - left: auto; - right: 0%; - border-style: solid; - border-width: 1.2em 1.2em 0em 0em; - border-color: transparent; - border-top-color: inherit; -} - -/* Inside Table */ - -.ui.image > .ribbon.label, -.ui.card .image > .ribbon.label { - position: absolute; - top: 1rem; -} - -.ui.card .image > .ui.ribbon.label, -.ui.image > .ui.ribbon.label { - left: calc(--0.05rem - 1.2em); -} - -.ui.card .image > .ui[class*="right ribbon"].label, -.ui.image > .ui[class*="right ribbon"].label { - left: calc(100% + -0.05rem + 1.2em); - padding-left: 0.833em; -} - -/* Inside Table */ - -.ui.table td > .ui.ribbon.label { - left: calc(-0.78571429em - 1.2em); -} - -.ui.table td > .ui[class*="right ribbon"].label { - left: calc(100% + 0.78571429em + 1.2em); - padding-left: 0.833em; -} - -/*------------------- - Attached ---------------------*/ - -.ui[class*="top attached"].label, -.ui.attached.label { - width: 100%; - position: absolute; - margin: 0em; - top: 0em; - left: 0em; - padding: 0.75em 1em; - border-radius: 0.21428571rem 0.21428571rem 0em 0em; -} - -.ui[class*="bottom attached"].label { - top: auto; - bottom: 0em; - border-radius: 0em 0em 0.21428571rem 0.21428571rem; -} - -.ui[class*="top left attached"].label { - width: auto; - margin-top: 0em !important; - border-radius: 0.21428571rem 0em 0.35714286rem 0em; -} - -.ui[class*="top right attached"].label { - width: auto; - left: auto; - right: 0em; - border-radius: 0em 0.21428571rem 0em 0.35714286rem; -} - -.ui[class*="bottom left attached"].label { - width: auto; - top: auto; - bottom: 0em; - border-radius: 0em 0.35714286rem 0em 0.21428571rem; -} - -.ui[class*="bottom right attached"].label { - top: auto; - bottom: 0em; - left: auto; - right: 0em; - width: auto; - border-radius: 0.35714286rem 0em 0.21428571rem 0em; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.label.disabled { - opacity: 0.5; -} - -/*------------------- - Hover ---------------------*/ - -a.ui.labels .label:hover, -a.ui.label:hover { - background-color: #7f888e; - border-color: #7f888e; - background-image: none; - color: rgba(255, 255, 255, 0.8); -} - -.ui.labels a.label:hover:before, -a.ui.label:hover:before { - color: rgba(255, 255, 255, 0.8); -} - -/*------------------- - Active ---------------------*/ - -.ui.active.label { - background-color: var(--label-active-background-color, #7f888e); - border-color: var(--label-active-border-color, #7f888e); - background-image: none; - color: var(--label-active-text-color, rgba(255, 255, 255, 0.95)); -} - -.ui.active.label:before { - background-color: #7f888e; - background-image: none; - color: rgba(255, 255, 255, 0.95); -} - -/*------------------- - Active Hover ---------------------*/ - -a.ui.labels .active.label:hover, -a.ui.active.label:hover { - background-color: #7f888e; - border-color: #7f888e; - background-image: none; - color: rgba(255, 255, 255, 0.95); -} - -.ui.labels a.active.label:ActiveHover:before, -a.ui.active.label:ActiveHover:before { - background-color: #7f888e; - background-image: none; - color: rgba(255, 255, 255, 0.95); -} - -/*------------------- - Visible ---------------------*/ - -.ui.labels.visible .label, -.ui.label.visible:not(.dropdown) { - display: inline-block !important; -} - -/*------------------- - Hidden ---------------------*/ - -.ui.labels.hidden .label, -.ui.label.hidden { - display: none !important; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.labels .label, -.ui.red.label { - --label-background-color: hsl(var(--hsl-red-400) / 10%); - --label-border-color: hsl(var(--hsl-red-400) / 20%); - --label-text-color: hsl(var(--hsl-red-400)); - --label-active-background-color: hsl(var(--hsl-red-400) / 20%); - --label-active-border-color: hsl(var(--hsl-red-400) / 30%); - --label-active-text-color: hsl(var(--hsl-red-500)); - --label-circular-background-color: hsl(var(--hsl-red-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-red-400)); -} - -/* Link */ - -.ui.red.labels .label:hover, -a.ui.red.label:hover { - background-color: #d01919 !important; - border-color: #d01919 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.red.corner.label, -.ui.red.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.red.ribbon.label { - border-color: #b21e1e !important; -} - -/* Basic */ - -.ui.basic.red.label { - background: none #2E3235 !important; - color: #DB2828 !important; - border-color: #DB2828 !important; -} - -.ui.basic.red.labels a.label:hover, -a.ui.basic.red.label:hover { - background-color: #2E3235 !important; - color: #d01919 !important; - border-color: #d01919 !important; -} - -/*--- Orange ---*/ - -.ui.orange.labels .label, -.ui.orange.label { - --label-background-color: hsl(var(--hsl-orange-400) / 10%); - --label-border-color: hsl(var(--hsl-orange-400) / 20%); - --label-text-color: hsl(var(--hsl-orange-400)); - --label-active-background-color: hsl(var(--hsl-orange-400) / 20%); - --label-active-border-color: hsl(var(--hsl-orange-400) / 30%); - --label-active-text-color: hsl(var(--hsl-orange-500)); - --label-circular-background-color: hsl(var(--hsl-orange-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-orange-400)); -} - -/* Link */ - -.ui.orange.labels .label:hover, -a.ui.orange.label:hover { - background-color: #b2602a !important; - border-color: #b2602a !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.orange.corner.label, -.ui.orange.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.orange.ribbon.label { - border-color: #98562b !important; -} - -/* Basic */ - -.ui.basic.orange.label { - background: none #2E3235 !important; - color: #C06D36 !important; - border-color: #C06D36 !important; -} - -.ui.basic.orange.labels a.label:hover, -a.ui.basic.orange.label:hover { - background-color: #2E3235 !important; - color: #b2602a !important; - border-color: #b2602a !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.labels .label, -.ui.yellow.label { - --label-background-color: hsl(var(--hsl-yellow-400) / 10%); - --label-border-color: hsl(var(--hsl-yellow-400) / 20%); - --label-text-color: hsl(var(--hsl-yellow-400)); - --label-active-background-color: hsl(var(--hsl-yellow-400) / 20%); - --label-active-border-color: hsl(var(--hsl-yellow-400) / 30%); - --label-active-text-color: hsl(var(--hsl-yellow-500)); - --label-circular-background-color: hsl(var(--hsl-yellow-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-yellow-400)); -} - -/* Link */ - -.ui.yellow.labels .label:hover, -a.ui.yellow.label:hover { - background-color: #eaae00 !important; - border-color: #eaae00 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.yellow.corner.label, -.ui.yellow.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.yellow.ribbon.label { - border-color: #cd9903 !important; -} - -/* Basic */ - -.ui.basic.yellow.label { - background: none #2E3235 !important; - color: #FBBD08 !important; - border-color: #FBBD08 !important; -} - -.ui.basic.yellow.labels a.label:hover, -a.ui.basic.yellow.label:hover { - background-color: #2E3235 !important; - color: #eaae00 !important; - border-color: #eaae00 !important; -} - -/*--- Olive ---*/ - -.ui.olive.labels .label, -.ui.olive.label { - --label-background-color: hsl(var(--hsl-lime-400) / 10%); - --label-border-color: hsl(var(--hsl-lime-400) / 20%); - --label-text-color: hsl(var(--hsl-lime-400)); - --label-active-background-color: hsl(var(--hsl-lime-400) / 20%); - --label-active-border-color: hsl(var(--hsl-lime-400) / 30%); - --label-active-text-color: hsl(var(--hsl-lime-500)); - --label-circular-background-color: hsl(var(--hsl-lime-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-lime-400)); -} - -/* Link */ - -.ui.olive.labels .label:hover, -a.ui.olive.label:hover { - background-color: #a7bd0d !important; - border-color: #a7bd0d !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.olive.corner.label, -.ui.olive.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.olive.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.olive.label { - background: none #2E3235 !important; - color: #B5CC18 !important; - border-color: #B5CC18 !important; -} - -.ui.basic.olive.labels a.label:hover, -a.ui.basic.olive.label:hover { - background-color: #2E3235 !important; - color: #a7bd0d !important; - border-color: #a7bd0d !important; -} - -/*--- Green ---*/ - -.ui.green.labels .label, -.ui.green.label { - --label-background-color: hsl(var(--hsl-green-400) / 10%); - --label-border-color: hsl(var(--hsl-green-400) / 20%); - --label-text-color: hsl(var(--hsl-green-400)); - --label-active-background-color: hsl(var(--hsl-green-400) / 20%); - --label-active-border-color: hsl(var(--hsl-green-400) / 30%); - --label-active-text-color: hsl(var(--hsl-green-500)); - --label-circular-background-color: hsl(var(--hsl-green-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-green-400)); -} - -/* Link */ - -.ui.green.labels .label:hover, -a.ui.green.label:hover { - background-color: #16ab39 !important; - border-color: #16ab39 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.green.corner.label, -.ui.green.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.green.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.green.label { - background: none #2E3235 !important; - color: #21BA45 !important; - border-color: #21BA45 !important; -} - -.ui.basic.green.labels a.label:hover, -a.ui.basic.green.label:hover { - background-color: #2E3235 !important; - color: #16ab39 !important; - border-color: #16ab39 !important; -} - -/*--- Teal ---*/ - -.ui.teal.labels .label, -.ui.teal.label { - --label-background-color: hsl(var(--hsl-teal-400) / 10%); - --label-border-color: hsl(var(--hsl-teal-400) / 20%); - --label-text-color: hsl(var(--hsl-teal-400)); - --label-active-background-color: hsl(var(--hsl-teal-400) / 20%); - --label-active-border-color: hsl(var(--hsl-teal-400) / 30%); - --label-active-text-color: hsl(var(--hsl-teal-500)); - --label-circular-background-color: hsl(var(--hsl-teal-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-teal-400)); -} - -/* Link */ - -.ui.teal.labels .label:hover, -a.ui.teal.label:hover { - background-color: #009c95 !important; - border-color: #009c95 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.teal.corner.label, -.ui.teal.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.teal.ribbon.label { - border-color: #00827c !important; -} - -/* Basic */ - -.ui.basic.teal.label { - background: none #2E3235 !important; - color: #00B5AD !important; - border-color: #00B5AD !important; -} - -.ui.basic.teal.labels a.label:hover, -a.ui.basic.teal.label:hover { - background-color: #2E3235 !important; - color: #009c95 !important; - border-color: #009c95 !important; -} - -/*--- Blue ---*/ - -.ui.blue.labels .label, -.ui.blue.label { - --label-background-color: hsl(var(--hsl-blue-400) / 10%); - --label-border-color: hsl(var(--hsl-blue-400) / 20%); - --label-text-color: hsl(var(--hsl-blue-400)); - --label-active-background-color: hsl(var(--hsl-blue-400) / 20%); - --label-active-border-color: hsl(var(--hsl-blue-400) / 30%); - --label-active-text-color: hsl(var(--hsl-blue-500)); - --label-circular-background-color: hsl(var(--hsl-blue-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-blue-400)); -} - -/* Link */ - -.ui.blue.labels .label:hover, -a.ui.blue.label:hover { - background-color: #1678c2 !important; - border-color: #1678c2 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.blue.corner.label, -.ui.blue.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.blue.ribbon.label { - border-color: #1a69a4 !important; -} - -/* Basic */ - -.ui.basic.blue.label { - background: none #2E3235 !important; - color: #2185D0 !important; - border-color: #2185D0 !important; -} - -.ui.basic.blue.labels a.label:hover, -a.ui.basic.blue.label:hover { - background-color: #2E3235 !important; - color: #1678c2 !important; - border-color: #1678c2 !important; -} - -/*--- Violet ---*/ - -.ui.violet.labels .label, -.ui.violet.label { - --label-background-color: hsl(var(--hsl-violet-400) / 10%); - --label-border-color: hsl(var(--hsl-violet-400) / 20%); - --label-text-color: hsl(var(--hsl-violet-400)); - --label-active-background-color: hsl(var(--hsl-violet-400) / 20%); - --label-active-border-color: hsl(var(--hsl-violet-400) / 30%); - --label-active-text-color: hsl(var(--hsl-violet-500)); - --label-circular-background-color: hsl(var(--hsl-violet-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-violet-400)); -} - -/* Link */ - -.ui.violet.labels .label:hover, -a.ui.violet.label:hover { - background-color: #5829bb !important; - border-color: #5829bb !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.violet.corner.label, -.ui.violet.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.violet.ribbon.label { - border-color: #502aa1 !important; -} - -/* Basic */ - -.ui.basic.violet.label { - background: none #2E3235 !important; - color: #6435C9 !important; - border-color: #6435C9 !important; -} - -.ui.basic.violet.labels a.label:hover, -a.ui.basic.violet.label:hover { - background-color: #2E3235 !important; - color: #5829bb !important; - border-color: #5829bb !important; -} - -/*--- Purple ---*/ - -.ui.purple.labels .label, -.ui.purple.label { - --label-background-color: hsl(var(--hsl-purple-400) / 10%); - --label-border-color: hsl(var(--hsl-purple-400) / 20%); - --label-text-color: hsl(var(--hsl-purple-400)); - --label-active-background-color: hsl(var(--hsl-purple-400) / 20%); - --label-active-border-color: hsl(var(--hsl-purple-400) / 30%); - --label-active-text-color: hsl(var(--hsl-purple-500)); - --label-circular-background-color: hsl(var(--hsl-purple-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-purple-400)); -} - -/* Link */ - -.ui.purple.labels .label:hover, -a.ui.purple.label:hover { - background-color: #9627ba !important; - border-color: #9627ba !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.purple.corner.label, -.ui.purple.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.purple.ribbon.label { - border-color: #82299f !important; -} - -/* Basic */ - -.ui.basic.purple.label { - background: none #2E3235 !important; - color: #A333C8 !important; - border-color: #A333C8 !important; -} - -.ui.basic.purple.labels a.label:hover, -a.ui.basic.purple.label:hover { - background-color: #2E3235 !important; - color: #9627ba !important; - border-color: #9627ba !important; -} - -/*--- Pink ---*/ - -.ui.pink.labels .label, -.ui.pink.label { - --label-background-color: hsl(var(--hsl-pink-400) / 10%); - --label-border-color: hsl(var(--hsl-pink-400) / 20%); - --label-text-color: hsl(var(--hsl-pink-400)); - --label-active-background-color: hsl(var(--hsl-pink-400) / 20%); - --label-active-border-color: hsl(var(--hsl-pink-400) / 30%); - --label-active-text-color: hsl(var(--hsl-pink-500)); - --label-circular-background-color: hsl(var(--hsl-pink-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-pink-400)); -} - -/* Link */ - -.ui.pink.labels .label:hover, -a.ui.pink.label:hover { - background-color: #e61a8d !important; - border-color: #e61a8d !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.pink.corner.label, -.ui.pink.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.pink.ribbon.label { - border-color: #c71f7e !important; -} - -/* Basic */ - -.ui.basic.pink.label { - background: none #2E3235 !important; - color: #E03997 !important; - border-color: #E03997 !important; -} - -.ui.basic.pink.labels a.label:hover, -a.ui.basic.pink.label:hover { - background-color: #2E3235 !important; - color: #e61a8d !important; - border-color: #e61a8d !important; -} - -/*--- Brown ---*/ - -.ui.brown.labels .label, -.ui.brown.label { - --label-background-color: hsl(var(--hsl-amber-800) / 30%); - --label-border-color: hsl(var(--hsl-amber-700) / 30%); - --label-text-color: hsl(var(--hsl-amber-600)); - --label-active-background-color: hsl(var(--hsl-amber-800) / 40%); - --label-active-border-color: hsl(var(--hsl-amber-700) / 50%); - --label-active-text-color: hsl(var(--hsl-amber-500)); - --label-circular-background-color: hsl(var(--hsl-amber-700) / 30%); - --label-circular-border-color: hsl(var(--hsl-amber-700)); -} - -/* Link */ - -.ui.brown.labels .label:hover, -a.ui.brown.label:hover { - background-color: #975b33 !important; - border-color: #975b33 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.brown.corner.label, -.ui.brown.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.brown.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.brown.label { - background: none #2E3235 !important; - color: #A5673F !important; - border-color: #A5673F !important; -} - -.ui.basic.brown.labels a.label:hover, -a.ui.basic.brown.label:hover { - background-color: #2E3235 !important; - color: #975b33 !important; - border-color: #975b33 !important; -} - -/*--- Grey ---*/ - -.ui.grey.labels .label, -.ui.grey.label { - --label-background-color: hsl(var(--hsl-gray-500) / 20%); - --label-border-color: hsl(var(--hsl-gray-400) / 20%); - --label-text-color: hsl(var(--hsl-gray-400)); - --label-active-background-color: hsl(var(--hsl-gray-400) / 20%); - --label-active-border-color: hsl(var(--hsl-gray-400) / 30%); - --label-active-text-color: hsl(var(--hsl-gray-300)); - --label-circular-background-color: hsl(var(--hsl-gray-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-gray-400)); -} - -/* Link */ - -.ui.grey.labels .label:hover, -a.ui.grey.label:hover { - background-color: #838383 !important; - border-color: #838383 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.grey.corner.label, -.ui.grey.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.grey.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.grey.label { - background: none #2E3235 !important; - color: #767676 !important; - border-color: #767676 !important; -} - -.ui.basic.grey.labels a.label:hover, -a.ui.basic.grey.label:hover { - background-color: #2E3235 !important; - color: #838383 !important; - border-color: #838383 !important; -} - -/*--- Black ---*/ - -.ui.black.labels .label, -.ui.black.label { - --label-background-color: hsl(var(--hsl-gray-950) / 40%); - --label-border-color: hsl(var(--hsl-gray-300) / 30%); - --label-text-color: hsl(var(--hsl-gray-400)); - --label-active-background-color: hsl(var(--hsl-gray-950) / 50%); - --label-active-border-color: hsl(var(--hsl-gray-300) / 40%); - --label-active-text-color: hsl(var(--hsl-gray-300)); - --label-circular-background-color: hsl(var(--hsl-gray-950) / 40%); - --label-circular-border-color: hsl(var(--hsl-gray-400) / 40%); -} - -/* Link */ - -.ui.black.labels .label:hover, -a.ui.black.label:hover { - background-color: #000000 !important; - border-color: #000000 !important; - color: #F9FAFB !important; -} - -/* Corner */ - -.ui.black.corner.label, -.ui.black.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.black.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.black.label { - background: none #2E3235 !important; - color: #F9FAFB !important; - border-color: #F9FAFB !important; -} - -.ui.basic.black.labels a.label:hover, -a.ui.basic.black.label:hover { - background-color: #2E3235 !important; - color: #ffffff !important; - border-color: #ffffff !important; -} - -/*------------------- - Basic ---------------------*/ - -.ui.basic.label { - background: none #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - color: #DDDDDD; - box-shadow: none; -} - -/* Link */ - -a.ui.basic.label:hover { - text-decoration: none; - background: none #2E3235; - color: #729ad0; - box-shadow: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: none; -} - -/* Pointing */ - -.ui.basic.pointing.label:before { - border-color: inherit; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.label.fluid, -.ui.fluid.labels > .label { - width: 100%; - box-sizing: border-box; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.labels .label, -.ui.inverted.label { - color: rgba(0, 0, 0, 0.9) !important; -} - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.labels .label, -.ui.horizontal.label { - margin: 0em 0.5em 0em 0em; - padding: 0.4em 0.833em; - min-width: 3em; - text-align: center; -} - -/*------------------- - Circular ---------------------*/ - -.ui.circular.labels .label, -.ui.circular.label { - min-width: 2em; - min-height: 2em; - padding: 0.5em !important; - line-height: 1em; - text-align: center; - border-radius: 500rem; -} - -.ui.empty.circular.labels .label, -.ui.empty.circular.label { - min-width: 0em; - min-height: 0em; - overflow: hidden; - width: 0.5em; - height: 0.5em; - vertical-align: baseline; - background-color: var(--label-circular-background-color, var(--label-text-color)) !important; - border-color: var(--label-circular-border-color, var(--label-border-color)) !important; - border-width: 1px; -} - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.label { - position: relative; -} - -.ui.attached.pointing.label { - position: absolute; -} - -.ui.pointing.label:before { - background-color: inherit; - background-image: inherit; - border-width: none; - border-style: solid; - border-color: inherit; -} - -/* Arrow */ - -.ui.pointing.label:before { - position: absolute; - content: ''; - transform: rotate(45deg); - background-image: none; - z-index: 2; - width: 0.6666em; - height: 0.6666em; - transition: background 0.1s ease; -} - -/*--- Above ---*/ - -.ui.pointing.label, -.ui[class*="pointing above"].label { - margin-top: 1em; -} - -.ui.pointing.label:before, -.ui[class*="pointing above"].label:before { - border-width: 1px 0px 0px 1px; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 0%; - left: 50%; -} - -/*--- Below ---*/ - -.ui[class*="bottom pointing"].label, -.ui[class*="pointing below"].label { - margin-top: 0em; - margin-bottom: 1em; -} - -.ui[class*="bottom pointing"].label:before, -.ui[class*="pointing below"].label:before { - border-width: 0px 1px 1px 0px; - top: auto; - right: auto; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 100%; - left: 50%; -} - -/*--- Left ---*/ - -.ui[class*="left pointing"].label { - margin-top: 0em; - margin-left: 0.6666em; -} - -.ui[class*="left pointing"].label:before { - border-width: 0px 0px 1px 1px; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/*--- Right ---*/ - -.ui[class*="right pointing"].label { - margin-top: 0em; - margin-right: 0.6666em; -} - -.ui[class*="right pointing"].label:before { - border-width: 1px 1px 0px 0px; - transform: translateX(50%) translateY(-50%) rotate(45deg); - top: 50%; - right: 0%; - bottom: auto; - left: auto; -} - -/* Basic Pointing */ - -/*--- Above ---*/ - -.ui.basic.pointing.label:before, -.ui.basic[class*="pointing above"].label:before { - margin-top: -1px; -} - -/*--- Below ---*/ - -.ui.basic[class*="bottom pointing"].label:before, -.ui.basic[class*="pointing below"].label:before { - bottom: auto; - top: 100%; - margin-top: 1px; -} - -/*--- Left ---*/ - -.ui.basic[class*="left pointing"].label:before { - top: 50%; - left: -1px; -} - -/*--- Right ---*/ - -.ui.basic[class*="right pointing"].label:before { - top: 50%; - right: -1px; -} - -/*------------------ - Floating Label --------------------*/ - -.ui.floating.label { - position: absolute; - z-index: 100; - top: -1em; - left: 100%; - margin: 0em 0em 0em -1.5em !important; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.labels .label, -.ui.mini.label { - font-size: 0.64285714rem; -} - -.ui.tiny.labels .label, -.ui.tiny.label { - font-size: 0.71428571rem; -} - -.ui.small.labels .label, -.ui.small.label { - font-size: 0.78571429rem; -} - -.ui.labels .label, -.ui.label { - font-size: 0.85714286rem; -} - -.ui.large.labels .label, -.ui.large.label { - font-size: 1rem; -} - -.ui.big.labels .label, -.ui.big.label { - font-size: 1.28571429rem; -} - -.ui.huge.labels .label, -.ui.huge.label { - font-size: 1.42857143rem; -} - -.ui.massive.labels .label, -.ui.massive.label { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - List - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - List -*******************************/ - -ul.ui.list, -ol.ui.list, -.ui.list { - list-style-type: none; - margin: 1em 0em; - padding: 0em 0em; -} - -ul.ui.list:first-child, -ol.ui.list:first-child, -.ui.list:first-child { - margin-top: 0em; - padding-top: 0em; -} - -ul.ui.list:last-child, -ol.ui.list:last-child, -.ui.list:last-child { - margin-bottom: 0em; - padding-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* List Item */ - -ul.ui.list li, -ol.ui.list li, -.ui.list > .item, -.ui.list .list > .item { - display: list-item; - table-layout: fixed; - list-style-type: none; - list-style-position: outside; - padding: 0.21428571em 0em; - line-height: 1.14285714em; -} - -ul.ui.list > li:first-child:after, -ol.ui.list > li:first-child:after, -.ui.list > .list > .item, -.ui.list > .item:after { - content: ''; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -ul.ui.list li:first-child, -ol.ui.list li:first-child, -.ui.list .list > .item:first-child, -.ui.list > .item:first-child { - padding-top: 0em; -} - -ul.ui.list li:last-child, -ol.ui.list li:last-child, -.ui.list .list > .item:last-child, -.ui.list > .item:last-child { - padding-bottom: 0em; -} - -/* Child List */ - -ul.ui.list ul, -ol.ui.list ol, -.ui.list .list { - clear: both; - margin: 0em; - padding: 0.75em 0em 0.25em 0.5em; -} - -/* Child Item */ - -ul.ui.list ul li, -ol.ui.list ol li, -.ui.list .list > .item { - padding: 0.14285714em 0em; - line-height: inherit; -} - -/* Icon */ - -.ui.list .list > .item > i.icon, -.ui.list > .item > i.icon { - display: table-cell; - margin: 0em; - padding-top: 0em; - padding-right: 0.28571429em; - vertical-align: top; - transition: color 0.1s ease; -} - -.ui.list .list > .item > i.icon:only-child, -.ui.list > .item > i.icon:only-child { - display: inline-block; - vertical-align: top; -} - -/* Image */ - -.ui.list .list > .item > .image, -.ui.list > .item > .image { - display: table-cell; - background-color: transparent; - margin: 0em; - vertical-align: top; -} - -.ui.list .list > .item > .image:not(:only-child):not(img), -.ui.list > .item > .image:not(:only-child):not(img) { - padding-right: 0.5em; -} - -.ui.list .list > .item > .image img, -.ui.list > .item > .image img { - vertical-align: top; -} - -.ui.list .list > .item > img.image, -.ui.list .list > .item > .image:only-child, -.ui.list > .item > img.image, -.ui.list > .item > .image:only-child { - display: inline-block; -} - -/* Content */ - -.ui.list .list > .item > .content, -.ui.list > .item > .content { - line-height: 1.14285714em; -} - -.ui.list .list > .item > .image + .content, -.ui.list .list > .item > .icon + .content, -.ui.list > .item > .image + .content, -.ui.list > .item > .icon + .content { - display: table-cell; - width: 100%; - padding: 0em 0em 0em 0.5em; - vertical-align: top; -} - -.ui.list .list > .item > img.image + .content, -.ui.list > .item > img.image + .content { - display: inline-block; - width: auto; -} - -.ui.list .list > .item > .content > .list, -.ui.list > .item > .content > .list { - margin-left: 0em; - padding-left: 0em; -} - -/* Header */ - -.ui.list .list > .item .header, -.ui.list > .item .header { - display: block; - margin: 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-weight: 600; - color: #DDDDDD; -} - -/* Description */ - -.ui.list .list > .item .description, -.ui.list > .item .description { - display: block; - color: rgba(0, 0, 0, 0.7); -} - -/* Child Link */ - -.ui.list > .item a, -.ui.list .list > .item a { - cursor: pointer; -} - -/* Linking Item */ - -.ui.list .list > a.item, -.ui.list > a.item { - cursor: pointer; - color: #6987AF; -} - -.ui.list .list > a.item:hover, -.ui.list > a.item:hover { - color: #729ad0; -} - -/* Linked Item Icons */ - -.ui.list .list > a.item i.icon, -.ui.list > a.item i.icon { - color: rgba(255, 255, 255, 0.5); -} - -/* Header Link */ - -.ui.list .list > .item a.header, -.ui.list > .item a.header { - cursor: pointer; - color: #6987AF !important; -} - -.ui.list .list > .item a.header:hover, -.ui.list > .item a.header:hover { - color: #729ad0 !important; -} - -/* Floated Content */ - -.ui[class*="left floated"].list { - float: left; -} - -.ui[class*="right floated"].list { - float: right; -} - -.ui.list .list > .item [class*="left floated"], -.ui.list > .item [class*="left floated"] { - float: left; - margin: 0em 1em 0em 0em; -} - -.ui.list .list > .item [class*="right floated"], -.ui.list > .item [class*="right floated"] { - float: right; - margin: 0em 0em 0em 1em; -} - -/******************************* - Coupling -*******************************/ - -.ui.menu .ui.list > .item, -.ui.menu .ui.list .list > .item { - display: list-item; - table-layout: fixed; - background-color: transparent; - list-style-type: none; - list-style-position: outside; - padding: 0.21428571em 0em; - line-height: 1.14285714em; -} - -.ui.menu .ui.list .list > .item:before, -.ui.menu .ui.list > .item:before { - border: none; - background: none; -} - -.ui.menu .ui.list .list > .item:first-child, -.ui.menu .ui.list > .item:first-child { - padding-top: 0em; -} - -.ui.menu .ui.list .list > .item:last-child, -.ui.menu .ui.list > .item:last-child { - padding-bottom: 0em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.list { - display: inline-block; - font-size: 0em; -} - -.ui.horizontal.list > .item { - display: inline-block; - margin-left: 1em; - font-size: 1rem; -} - -.ui.horizontal.list:not(.celled) > .item:first-child { - margin-left: 0em !important; - padding-left: 0em !important; -} - -.ui.horizontal.list .list { - padding-left: 0em; - padding-bottom: 0em; -} - -.ui.horizontal.list > .item > .image, -.ui.horizontal.list .list > .item > .image, -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list .list > .item > .icon, -.ui.horizontal.list > .item > .content, -.ui.horizontal.list .list > .item > .content { - vertical-align: middle; -} - -/* Padding on all elements */ - -.ui.horizontal.list > .item:first-child, -.ui.horizontal.list > .item:last-child { - padding-top: 0.21428571em; - padding-bottom: 0.21428571em; -} - -/* Horizontal List */ - -.ui.horizontal.list > .item > i.icon { - margin: 0em; - padding: 0em 0.25em 0em 0em; -} - -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list > .item > .icon + .content { - float: none; - display: inline-block; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.list .list > .disabled.item, -.ui.list > .disabled.item { - pointer-events: none; - color: rgba(255, 255, 255, 0.2) !important; -} - -.ui.inverted.list .list > .disabled.item, -.ui.inverted.list > .disabled.item { - color: rgba(0, 0, 0, 0.2) !important; -} - -/*------------------- - Hover ---------------------*/ - -.ui.list .list > a.item:hover .icon, -.ui.list > a.item:hover .icon { - color: #DDDDDD; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.list .list > a.item > .icon, -.ui.inverted.list > a.item > .icon { - color: rgba(0, 0, 0, 0.7); -} - -.ui.inverted.list .list > .item .header, -.ui.inverted.list > .item .header { - color: rgba(0, 0, 0, 0.9); -} - -.ui.inverted.list .list > .item .description, -.ui.inverted.list > .item .description { - color: rgba(0, 0, 0, 0.7); -} - -/* Item Link */ - -.ui.inverted.list .list > a.item, -.ui.inverted.list > a.item { - cursor: pointer; - color: rgba(0, 0, 0, 0.9); -} - -.ui.inverted.list .list > a.item:hover, -.ui.inverted.list > a.item:hover { - color: #729ad0; -} - -/* Linking Content */ - -.ui.inverted.list .item a:not(.ui) { - color: rgba(0, 0, 0, 0.9) !important; -} - -.ui.inverted.list .item a:not(.ui):hover { - color: #729ad0 !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui.list[class*="top aligned"] .image, -.ui.list[class*="top aligned"] .content, -.ui.list [class*="top aligned"] { - vertical-align: top !important; -} - -.ui.list[class*="middle aligned"] .image, -.ui.list[class*="middle aligned"] .content, -.ui.list [class*="middle aligned"] { - vertical-align: middle !important; -} - -.ui.list[class*="bottom aligned"] .image, -.ui.list[class*="bottom aligned"] .content, -.ui.list [class*="bottom aligned"] { - vertical-align: bottom !important; -} - -/*------------------- - Link ---------------------*/ - -.ui.link.list .item, -.ui.link.list a.item, -.ui.link.list .item a:not(.ui) { - color: rgba(255, 255, 255, 0.4); - transition: 0.1s color ease; -} - -.ui.link.list.list a.item:hover, -.ui.link.list.list .item a:not(.ui):hover { - color: rgba(255, 255, 255, 0.8); -} - -.ui.link.list.list a.item:active, -.ui.link.list.list .item a:not(.ui):active { - color: rgba(255, 255, 255, 0.9); -} - -.ui.link.list.list .active.item, -.ui.link.list.list .active.item a:not(.ui) { - color: rgba(255, 255, 255, 0.95); -} - -/* Inverted */ - -.ui.inverted.link.list .item, -.ui.inverted.link.list a.item, -.ui.inverted.link.list .item a:not(.ui) { - color: rgba(0, 0, 0, 0.5); -} - -.ui.inverted.link.list.list a.item:hover, -.ui.inverted.link.list.list .item a:not(.ui):hover { - color: #000000; -} - -.ui.inverted.link.list.list a.item:active, -.ui.inverted.link.list.list .item a:not(.ui):active { - color: #000000; -} - -.ui.inverted.link.list.list a.active.item, -.ui.inverted.link.list.list .active.item a:not(.ui) { - color: #000000; -} - -/*------------------- - Selection ---------------------*/ - -.ui.selection.list .list > .item, -.ui.selection.list > .item { - cursor: pointer; - background: transparent; - padding: 0.5em 0.5em; - margin: 0em; - color: rgba(255, 255, 255, 0.4); - border-radius: 0.5em; - transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; -} - -.ui.selection.list .list > .item:last-child, -.ui.selection.list > .item:last-child { - margin-bottom: 0em; -} - -.ui.selection.list.list > .item:hover, -.ui.selection.list > .item:hover { - background: rgba(255, 255, 255, 0.03); - color: rgba(255, 255, 255, 0.8); -} - -.ui.selection.list .list > .item:active, -.ui.selection.list > .item:active { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.9); -} - -.ui.selection.list .list > .item.active, -.ui.selection.list > .item.active { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -/* Inverted */ - -.ui.inverted.selection.list > .item, -.ui.inverted.selection.list > .item { - background: transparent; - color: rgba(0, 0, 0, 0.5); -} - -.ui.inverted.selection.list > .item:hover, -.ui.inverted.selection.list > .item:hover { - background: rgba(0, 0, 0, 0.02); - color: #000000; -} - -.ui.inverted.selection.list > .item:active, -.ui.inverted.selection.list > .item:active { - background: rgba(0, 0, 0, 0.08); - color: #000000; -} - -.ui.inverted.selection.list > .item.active, -.ui.inverted.selection.list > .item.active { - background: rgba(0, 0, 0, 0.08); - color: #000000; -} - -/* Celled / Divided Selection List */ - -.ui.celled.selection.list .list > .item, -.ui.divided.selection.list .list > .item, -.ui.celled.selection.list > .item, -.ui.divided.selection.list > .item { - border-radius: 0em; -} - -/*------------------- - Animated ---------------------*/ - -.ui.animated.list > .item { - transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; -} - -.ui.animated.list:not(.horizontal) > .item:hover { - padding-left: 1em; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.list:not(.selection) .list > .item, -.ui.fitted.list:not(.selection) > .item { - padding-left: 0em; - padding-right: 0em; -} - -.ui.fitted.selection.list .list > .item, -.ui.fitted.selection.list > .item { - margin-left: -0.5em; - margin-right: -0.5em; -} - -/*------------------- - Bulleted ---------------------*/ - -ul.ui.list, -.ui.bulleted.list { - margin-left: 1.25rem; -} - -ul.ui.list li, -.ui.bulleted.list .list > .item, -.ui.bulleted.list > .item { - position: relative; -} - -ul.ui.list li:before, -.ui.bulleted.list .list > .item:before, -.ui.bulleted.list > .item:before { - user-select: none; - pointer-events: none; - position: absolute; - top: auto; - left: auto; - font-weight: normal; - margin-left: -1.25rem; - content: '•'; - opacity: 1; - color: inherit; - vertical-align: top; -} - -ul.ui.list li:before, -.ui.bulleted.list .list > a.item:before, -.ui.bulleted.list > a.item:before { - color: #DDDDDD; -} - -ul.ui.list ul, -.ui.bulleted.list .list { - padding-left: 1.25rem; -} - -/* Horizontal Bulleted */ - -ul.ui.horizontal.bulleted.list, -.ui.horizontal.bulleted.list { - margin-left: 0em; -} - -ul.ui.horizontal.bulleted.list li, -.ui.horizontal.bulleted.list > .item { - margin-left: 1.75rem; -} - -ul.ui.horizontal.bulleted.list li:first-child, -.ui.horizontal.bulleted.list > .item:first-child { - margin-left: 0em; -} - -ul.ui.horizontal.bulleted.list li::before, -.ui.horizontal.bulleted.list > .item::before { - color: #DDDDDD; -} - -ul.ui.horizontal.bulleted.list li:first-child::before, -.ui.horizontal.bulleted.list > .item:first-child::before { - display: none; -} - -/*------------------- - Ordered ---------------------*/ - -ol.ui.list, -.ui.ordered.list, -.ui.ordered.list .list, -ol.ui.list ol { - counter-reset: ordered; - margin-left: 1.25rem; - list-style-type: none; -} - -ol.ui.list li, -.ui.ordered.list .list > .item, -.ui.ordered.list > .item { - list-style-type: none; - position: relative; -} - -ol.ui.list li:before, -.ui.ordered.list .list > .item:before, -.ui.ordered.list > .item:before { - position: absolute; - top: auto; - left: auto; - user-select: none; - pointer-events: none; - margin-left: -1.25rem; - counter-increment: ordered; - content: counters(ordered, ".") " "; - text-align: right; - color: #DDDDDD; - vertical-align: middle; - opacity: 0.8; -} - -ol.ui.inverted.list li:before, -.ui.ordered.inverted.list .list > .item:before, -.ui.ordered.inverted.list > .item:before { - color: rgba(0, 0, 0, 0.7); -} - -/* Value */ - -.ui.ordered.list > .list > .item[data-value], -.ui.ordered.list > .item[data-value] { - content: attr(data-value); -} - -ol.ui.list li[value]:before { - content: attr(value); -} - -/* Child Lists */ - -ol.ui.list ol, -.ui.ordered.list .list { - margin-left: 1em; -} - -ol.ui.list ol li:before, -.ui.ordered.list .list > .item:before { - margin-left: -2em; -} - -/* Horizontal Ordered */ - -ol.ui.horizontal.list, -.ui.ordered.horizontal.list { - margin-left: 0em; -} - -ol.ui.horizontal.list li:before, -.ui.ordered.horizontal.list .list > .item:before, -.ui.ordered.horizontal.list > .item:before { - position: static; - margin: 0em 0.5em 0em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.list > .item { - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.divided.list .list > .item { - border-top: none; -} - -.ui.divided.list .item .list > .item { - border-top: none; -} - -.ui.divided.list .list > .item:first-child, -.ui.divided.list > .item:first-child { - border-top: none; -} - -/* Sub Menu */ - -.ui.divided.list:not(.horizontal) .list > .item:first-child { - border-top-width: 1px; -} - -/* Divided bulleted */ - -.ui.divided.bulleted.list:not(.horizontal), -.ui.divided.bulleted.list .list { - margin-left: 0em; - padding-left: 0em; -} - -.ui.divided.bulleted.list > .item:not(.horizontal) { - padding-left: 1.25rem; -} - -/* Divided Ordered */ - -.ui.divided.ordered.list { - margin-left: 0em; -} - -.ui.divided.ordered.list .list > .item, -.ui.divided.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.divided.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; -} - -.ui.divided.ordered.list .item .list > .item { - padding-left: 1em; -} - -/* Divided Selection */ - -.ui.divided.selection.list .list > .item, -.ui.divided.selection.list > .item { - margin: 0em; - border-radius: 0em; -} - -/* Divided horizontal */ - -.ui.divided.horizontal.list { - margin-left: 0em; -} - -.ui.divided.horizontal.list > .item:not(:first-child) { - padding-left: 0.5em; -} - -.ui.divided.horizontal.list > .item:not(:last-child) { - padding-right: 0.5em; -} - -.ui.divided.horizontal.list > .item { - border-top: none; - border-left: 1px solid rgba(24, 26, 28, 0.45); - margin: 0em; - line-height: 0.6; -} - -.ui.horizontal.divided.list > .item:first-child { - border-left: none; -} - -/* Inverted */ - -.ui.divided.inverted.list > .item, -.ui.divided.inverted.list > .list, -.ui.divided.inverted.horizontal.list > .item { - border-color: rgba(0, 0, 0, 0.1); -} - -/*------------------- - Celled ---------------------*/ - -.ui.celled.list > .item, -.ui.celled.list > .list { - border-top: 1px solid rgba(24, 26, 28, 0.45); - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.celled.list > .item:last-child { - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -/* Padding on all elements */ - -.ui.celled.list > .item:first-child, -.ui.celled.list > .item:last-child { - padding-top: 0.21428571em; - padding-bottom: 0.21428571em; -} - -/* Sub Menu */ - -.ui.celled.list .item .list > .item { - border-width: 0px; -} - -.ui.celled.list .list > .item:first-child { - border-top-width: 0px; -} - -/* Celled Bulleted */ - -.ui.celled.bulleted.list { - margin-left: 0em; -} - -.ui.celled.bulleted.list .list > .item, -.ui.celled.bulleted.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.bulleted.list .item .list { - margin-left: -1.25rem; - margin-right: -1.25rem; - padding-bottom: 0.21428571em; -} - -/* Celled Ordered */ - -.ui.celled.ordered.list { - margin-left: 0em; -} - -.ui.celled.ordered.list .list > .item, -.ui.celled.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; -} - -.ui.celled.ordered.list .list > .item { - padding-left: 1em; -} - -/* Celled Horizontal */ - -.ui.horizontal.celled.list { - margin-left: 0em; -} - -.ui.horizontal.celled.list .list > .item, -.ui.horizontal.celled.list > .item { - border-top: none; - border-left: 1px solid rgba(24, 26, 28, 0.45); - margin: 0em; - padding-left: 0.5em; - padding-right: 0.5em; - line-height: 0.6; -} - -.ui.horizontal.celled.list .list > .item:last-child, -.ui.horizontal.celled.list > .item:last-child { - border-bottom: none; - border-right: 1px solid rgba(24, 26, 28, 0.45); -} - -/* Inverted */ - -.ui.celled.inverted.list > .item, -.ui.celled.inverted.list > .list { - border-color: 1px solid rgba(0, 0, 0, 0.1); -} - -.ui.celled.inverted.horizontal.list .list > .item, -.ui.celled.inverted.horizontal.list > .item { - border-color: 1px solid rgba(0, 0, 0, 0.1); -} - -/*------------------- - Relaxed ---------------------*/ - -.ui.relaxed.list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.42857143em; -} - -.ui.relaxed.list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.42857143em; -} - -.ui.horizontal.relaxed.list .list > .item:not(:first-child), -.ui.horizontal.relaxed.list > .item:not(:first-child) { - padding-left: 1rem; -} - -.ui.horizontal.relaxed.list .list > .item:not(:last-child), -.ui.horizontal.relaxed.list > .item:not(:last-child) { - padding-right: 1rem; -} - -/* Very Relaxed */ - -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.85714286em; -} - -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.85714286em; -} - -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:first-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:first-child) { - padding-left: 1.5rem; -} - -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:last-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:last-child) { - padding-right: 1.5rem; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.list { - font-size: 0.78571429em; -} - -.ui.tiny.list { - font-size: 0.85714286em; -} - -.ui.small.list { - font-size: 0.92857143em; -} - -.ui.list { - font-size: 1em; -} - -.ui.large.list { - font-size: 1.14285714em; -} - -.ui.big.list { - font-size: 1.28571429em; -} - -.ui.huge.list { - font-size: 1.42857143em; -} - -.ui.massive.list { - font-size: 1.71428571em; -} - -.ui.mini.horizontal.list .list > .item, -.ui.mini.horizontal.list > .item { - font-size: 0.78571429rem; -} - -.ui.tiny.horizontal.list .list > .item, -.ui.tiny.horizontal.list > .item { - font-size: 0.85714286rem; -} - -.ui.small.horizontal.list .list > .item, -.ui.small.horizontal.list > .item { - font-size: 0.92857143rem; -} - -.ui.horizontal.list .list > .item, -.ui.horizontal.list > .item { - font-size: 1rem; -} - -.ui.large.horizontal.list .list > .item, -.ui.large.horizontal.list > .item { - font-size: 1.14285714rem; -} - -.ui.big.horizontal.list .list > .item, -.ui.big.horizontal.list > .item { - font-size: 1.28571429rem; -} - -.ui.huge.horizontal.list .list > .item, -.ui.huge.horizontal.list > .item { - font-size: 1.42857143rem; -} - -.ui.massive.horizontal.list .list > .item, -.ui.massive.horizontal.list > .item { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Loader -*******************************/ - -/* Standard Size */ - -.ui.loader { - display: none; - position: absolute; - top: 50%; - left: 50%; - margin: 0px; - text-align: center; - z-index: 1000; - transform: translateX(-50%) translateY(-50%); -} - -/* Static Shape */ - -.ui.loader:before { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -/* Active Shape */ - -.ui.loader:after { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - animation: loader 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; -} - -/* Active Animation */ - -@keyframes loader { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -/* Sizes */ - -.ui.mini.loader:before, -.ui.mini.loader:after { - width: 1rem; - height: 1rem; - margin: 0em 0em 0em -0.5rem; -} - -.ui.tiny.loader:before, -.ui.tiny.loader:after { - width: 1.14285714rem; - height: 1.14285714rem; - margin: 0em 0em 0em -0.57142857rem; -} - -.ui.small.loader:before, -.ui.small.loader:after { - width: 1.71428571rem; - height: 1.71428571rem; - margin: 0em 0em 0em -0.85714286rem; -} - -.ui.loader:before, -.ui.loader:after { - width: 2.28571429rem; - height: 2.28571429rem; - margin: 0em 0em 0em -1.14285714rem; -} - -.ui.large.loader:before, -.ui.large.loader:after { - width: 3.42857143rem; - height: 3.42857143rem; - margin: 0em 0em 0em -1.71428571rem; -} - -.ui.big.loader:before, -.ui.big.loader:after { - width: 3.71428571rem; - height: 3.71428571rem; - margin: 0em 0em 0em -1.85714286rem; -} - -.ui.huge.loader:before, -.ui.huge.loader:after { - width: 4.14285714rem; - height: 4.14285714rem; - margin: 0em 0em 0em -2.07142857rem; -} - -.ui.massive.loader:before, -.ui.massive.loader:after { - width: 4.57142857rem; - height: 4.57142857rem; - margin: 0em 0em 0em -2.28571429rem; -} - -/*------------------- - Coupling ---------------------*/ - -/* Show inside active dimmer */ - -.ui.dimmer .loader { - display: block; -} - -/* Black Dimmer */ - -.ui.dimmer .ui.loader { - color: rgba(0, 0, 0, 0.9); -} - -.ui.dimmer .ui.loader:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.dimmer .ui.loader:after { - border-color: #2E3235 transparent transparent; -} - -/* White Dimmer (Inverted) */ - -.ui.inverted.dimmer .ui.loader { - color: #DDDDDD; -} - -.ui.inverted.dimmer .ui.loader:before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.inverted.dimmer .ui.loader:after { - border-color: #767676 transparent transparent; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Text ---------------------*/ - -.ui.text.loader { - width: auto !important; - height: auto !important; - text-align: center; - font-style: normal; -} - -/******************************* - States -*******************************/ - -.ui.indeterminate.loader:after { - animation-direction: reverse; - animation-duration: 1.2s; -} - -.ui.loader.active, -.ui.loader.visible { - display: block; -} - -.ui.loader.disabled, -.ui.loader.hidden { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Sizes ---------------------*/ - -/* Loader */ - -.ui.inverted.dimmer .ui.mini.loader, -.ui.mini.loader { - width: 1rem; - height: 1rem; - font-size: 0.78571429em; -} - -.ui.inverted.dimmer .ui.tiny.loader, -.ui.tiny.loader { - width: 1.14285714rem; - height: 1.14285714rem; - font-size: 0.85714286em; -} - -.ui.inverted.dimmer .ui.small.loader, -.ui.small.loader { - width: 1.71428571rem; - height: 1.71428571rem; - font-size: 0.92857143em; -} - -.ui.inverted.dimmer .ui.loader, -.ui.loader { - width: 2.28571429rem; - height: 2.28571429rem; - font-size: 1em; -} - -.ui.inverted.dimmer .ui.large.loader, -.ui.large.loader { - width: 3.42857143rem; - height: 3.42857143rem; - font-size: 1.14285714em; -} - -.ui.inverted.dimmer .ui.big.loader, -.ui.big.loader { - width: 3.71428571rem; - height: 3.71428571rem; - font-size: 1.28571429em; -} - -.ui.inverted.dimmer .ui.huge.loader, -.ui.huge.loader { - width: 4.14285714rem; - height: 4.14285714rem; - font-size: 1.42857143em; -} - -.ui.inverted.dimmer .ui.massive.loader, -.ui.massive.loader { - width: 4.57142857rem; - height: 4.57142857rem; - font-size: 1.71428571em; -} - -/* Text Loader */ - -.ui.mini.text.loader { - min-width: 1rem; - padding-top: 1.78571429rem; -} - -.ui.tiny.text.loader { - min-width: 1.14285714rem; - padding-top: 1.92857143rem; -} - -.ui.small.text.loader { - min-width: 1.71428571rem; - padding-top: 2.5rem; -} - -.ui.text.loader { - min-width: 2.28571429rem; - padding-top: 3.07142857rem; -} - -.ui.large.text.loader { - min-width: 3.42857143rem; - padding-top: 4.21428571rem; -} - -.ui.big.text.loader { - min-width: 3.71428571rem; - padding-top: 4.5rem; -} - -.ui.huge.text.loader { - min-width: 4.14285714rem; - padding-top: 4.92857143rem; -} - -.ui.massive.text.loader { - min-width: 4.57142857rem; - padding-top: 5.35714286rem; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.loader { - color: rgba(0, 0, 0, 0.9); -} - -.ui.inverted.loader:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.inverted.loader:after { - border-top-color: #2E3235; -} - -/*------------------- - Inline ---------------------*/ - -.ui.inline.loader { - position: relative; - vertical-align: middle; - margin: 0em; - left: 0em; - top: 0em; - transform: none; -} - -.ui.inline.loader.active, -.ui.inline.loader.visible { - display: inline-block; -} - -/* Centered Inline */ - -.ui.centered.inline.loader.active, -.ui.centered.inline.loader.visible { - display: block; - margin-left: auto; - margin-right: auto; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/*------------------- - Content ---------------------*/ - -.ui.placeholder { - position: static; - overflow: hidden; - animation: placeholderShimmer 2s linear; - animation-iteration-count: infinite; - background-color: #2E3235; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.08) 30%); - background-size: 1200px 100%; - max-width: 30rem; -} - -@keyframes placeholderShimmer { - 0% { - background-position: -1200px 0; - } - - 100% { - background-position: 1200px 0; - } -} - -.ui.placeholder + .ui.placeholder { - margin-top: 2rem; -} - -.ui.placeholder + .ui.placeholder { - animation-delay: 0.15s; -} - -.ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: 0.3s; -} - -.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: 0.45s; -} - -.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: 0.6s; -} - -.ui.placeholder, -.ui.placeholder > :before, -.ui.placeholder .image.header:after, -.ui.placeholder .line, -.ui.placeholder .line:after { - background-color: #2E3235; -} - -/* Image */ - -.ui.placeholder .image:not(.header):not(.ui) { - height: 100px; -} - -.ui.placeholder .square.image:not(.header) { - height: 0px; - overflow: hidden; - /* 1/1 aspect ratio */ - padding-top: 100%; -} - -.ui.placeholder .rectangular.image:not(.header) { - height: 0px; - overflow: hidden; - /* 4/3 aspect ratio */ - padding-top: 75%; -} - -/* Lines */ - -.ui.placeholder .line { - position: relative; - height: 0.85714286em; -} - -.ui.placeholder .line:before, -.ui.placeholder .line:after { - top: 100%; - position: absolute; - content: ''; - background-color: inherit; -} - -.ui.placeholder .line:before { - left: 0px; -} - -.ui.placeholder .line:after { - right: 0px; -} - -/* Any Lines */ - -.ui.placeholder .line { - margin-bottom: 0.5em; -} - -.ui.placeholder .line:before, -.ui.placeholder .line:after { - height: 0.5em; -} - -.ui.placeholder .line:not(:first-child) { - margin-top: 0.5em; -} - -/* Header Image + 2 Lines */ - -.ui.placeholder .header { - position: relative; - overflow: hidden; -} - -/* Line Outdent */ - -.ui.placeholder .line:nth-child(1):after { - width: 0%; -} - -.ui.placeholder .line:nth-child(2):after { - width: 50%; -} - -.ui.placeholder .line:nth-child(3):after { - width: 10%; -} - -.ui.placeholder .line:nth-child(4):after { - width: 35%; -} - -.ui.placeholder .line:nth-child(5):after { - width: 65%; -} - -/* Header Line 1 & 2*/ - -.ui.placeholder .header .line { - margin-bottom: 0.64285714em; -} - -.ui.placeholder .header .line:before, -.ui.placeholder .header .line:after { - height: 0.64285714em; -} - -.ui.placeholder .header .line:not(:first-child) { - margin-top: 0.64285714em; -} - -.ui.placeholder .header .line:after { - width: 20%; -} - -.ui.placeholder .header .line:nth-child(2):after { - width: 60%; -} - -/* Image Header */ - -.ui.placeholder .image.header .line { - margin-left: 3em; -} - -.ui.placeholder .image.header .line:before { - width: 0.71428571rem; -} - -.ui.placeholder .image.header:after { - display: block; - height: 0.85714286em; - content: ''; - margin-left: 3em; -} - -/* Spacing */ - -.ui.placeholder .image .line:first-child, -.ui.placeholder .paragraph .line:first-child, -.ui.placeholder .header .line:first-child { - height: 0.01px; -} - -.ui.placeholder .image:not(:first-child):before, -.ui.placeholder .paragraph:not(:first-child):before, -.ui.placeholder .header:not(:first-child):before { - height: 1.42857143em; - content: ''; - display: block; -} - -/* Inverted Content Loader */ - -.ui.inverted.placeholder { - background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.08) 30%); -} - -.ui.inverted.placeholder, -.ui.inverted.placeholder > :before, -.ui.inverted.placeholder .image.header:after, -.ui.inverted.placeholder .line, -.ui.inverted.placeholder .line:after { - background-color: #F9FAFB; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Sizes ---------------------*/ - -.ui.placeholder .full.line.line.line:after { - width: 0%; -} - -.ui.placeholder .very.long.line.line.line:after { - width: 10%; -} - -.ui.placeholder .long.line.line.line:after { - width: 35%; -} - -.ui.placeholder .medium.line.line.line:after { - width: 50%; -} - -.ui.placeholder .short.line.line.line:after { - width: 65%; -} - -.ui.placeholder .very.short.line.line.line:after { - width: 80%; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.placeholder { - max-width: none; -} -/*! - * # Semantic UI - Rail - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Rails -*******************************/ - -.ui.rail { - position: absolute; - top: 0%; - width: 300px; - height: 100%; -} - -.ui.left.rail { - left: auto; - right: 100%; - padding: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -.ui.right.rail { - left: 100%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Internal ----------------*/ - -.ui.left.internal.rail { - left: 0%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -.ui.right.internal.rail { - left: auto; - right: 0%; - padding: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -/*-------------- - Dividing ----------------*/ - -.ui.dividing.rail { - width: 302.5px; -} - -.ui.left.dividing.rail { - padding: 0em 2.5rem 0em 0em; - margin: 0em 2.5rem 0em 0em; - border-right: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.right.dividing.rail { - border-left: 1px solid rgba(24, 26, 28, 0.45); - padding: 0em 0em 0em 2.5rem; - margin: 0em 0em 0em 2.5rem; -} - -/*-------------- - Distance ----------------*/ - -.ui.close.rail { - width: calc( 300px + 1em ); -} - -.ui.close.left.rail { - padding: 0em 1em 0em 0em; - margin: 0em 1em 0em 0em; -} - -.ui.close.right.rail { - padding: 0em 0em 0em 1em; - margin: 0em 0em 0em 1em; -} - -.ui.very.close.rail { - width: calc( 300px + 0.5em ); -} - -.ui.very.close.left.rail { - padding: 0em 0.5em 0em 0em; - margin: 0em 0.5em 0em 0em; -} - -.ui.very.close.right.rail { - padding: 0em 0em 0em 0.5em; - margin: 0em 0em 0em 0.5em; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.left.rail, -.ui.attached.right.rail { - padding: 0em; - margin: 0em; -} - -/*-------------- - Sizing ----------------*/ - -.ui.mini.rail { - font-size: 0.78571429rem; -} - -.ui.tiny.rail { - font-size: 0.85714286rem; -} - -.ui.small.rail { - font-size: 0.92857143rem; -} - -.ui.rail { - font-size: 1rem; -} - -.ui.large.rail { - font-size: 1.14285714rem; -} - -.ui.big.rail { - font-size: 1.28571429rem; -} - -.ui.huge.rail { - font-size: 1.42857143rem; -} - -.ui.massive.rail { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Reveal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Reveal -*******************************/ - -.ui.reveal { - display: inherit; - position: relative !important; - font-size: 0em !important; -} - -.ui.reveal > .visible.content { - position: absolute !important; - top: 0em !important; - left: 0em !important; - z-index: 3 !important; - transition: all 0.5s ease 0.1s; -} - -.ui.reveal > .hidden.content { - position: relative !important; - z-index: 2 !important; -} - -/* Make sure hovered element is on top of other reveal */ - -.ui.active.reveal .visible.content, -.ui.reveal:hover .visible.content { - z-index: 4 !important; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Slide ----------------*/ - -.ui.slide.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.slide.reveal > .content { - display: block; - width: 100%; - white-space: normal; - float: left; - margin: 0em; - transition: transform 0.5s ease 0.1s; -} - -.ui.slide.reveal > .visible.content { - position: relative !important; -} - -.ui.slide.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; - transform: translateX(100%) !important; -} - -.ui.slide.active.reveal > .visible.content, -.ui.slide.reveal:hover > .visible.content { - transform: translateX(-100%) !important; -} - -.ui.slide.active.reveal > .hidden.content, -.ui.slide.reveal:hover > .hidden.content { - transform: translateX(0%) !important; -} - -.ui.slide.right.reveal > .visible.content { - transform: translateX(0%) !important; -} - -.ui.slide.right.reveal > .hidden.content { - transform: translateX(-100%) !important; -} - -.ui.slide.right.active.reveal > .visible.content, -.ui.slide.right.reveal:hover > .visible.content { - transform: translateX(100%) !important; -} - -.ui.slide.right.active.reveal > .hidden.content, -.ui.slide.right.reveal:hover > .hidden.content { - transform: translateX(0%) !important; -} - -.ui.slide.up.reveal > .hidden.content { - transform: translateY(100%) !important; -} - -.ui.slide.up.active.reveal > .visible.content, -.ui.slide.up.reveal:hover > .visible.content { - transform: translateY(-100%) !important; -} - -.ui.slide.up.active.reveal > .hidden.content, -.ui.slide.up.reveal:hover > .hidden.content { - transform: translateY(0%) !important; -} - -.ui.slide.down.reveal > .hidden.content { - transform: translateY(-100%) !important; -} - -.ui.slide.down.active.reveal > .visible.content, -.ui.slide.down.reveal:hover > .visible.content { - transform: translateY(100%) !important; -} - -.ui.slide.down.active.reveal > .hidden.content, -.ui.slide.down.reveal:hover > .hidden.content { - transform: translateY(0%) !important; -} - -/*-------------- - Fade ----------------*/ - -.ui.fade.reveal > .visible.content { - opacity: 1; -} - -.ui.fade.active.reveal > .visible.content, -.ui.fade.reveal:hover > .visible.content { - opacity: 0; -} - -/*-------------- - Move ----------------*/ - -.ui.move.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.move.reveal > .content { - display: block; - float: left; - white-space: normal; - margin: 0em; - transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; -} - -.ui.move.reveal > .visible.content { - position: relative !important; -} - -.ui.move.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; -} - -.ui.move.active.reveal > .visible.content, -.ui.move.reveal:hover > .visible.content { - transform: translateX(-100%) !important; -} - -.ui.move.right.active.reveal > .visible.content, -.ui.move.right.reveal:hover > .visible.content { - transform: translateX(100%) !important; -} - -.ui.move.up.active.reveal > .visible.content, -.ui.move.up.reveal:hover > .visible.content { - transform: translateY(-100%) !important; -} - -.ui.move.down.active.reveal > .visible.content, -.ui.move.down.reveal:hover > .visible.content { - transform: translateY(100%) !important; -} - -/*-------------- - Rotate ----------------*/ - -.ui.rotate.reveal > .visible.content { - transition-duration: 0.5s; - transform: rotate(0deg); -} - -.ui.rotate.reveal > .visible.content, -.ui.rotate.right.reveal > .visible.content { - transform-origin: bottom right; -} - -.ui.rotate.active.reveal > .visible.content, -.ui.rotate.reveal:hover > .visible.content, -.ui.rotate.right.active.reveal > .visible.content, -.ui.rotate.right.reveal:hover > .visible.content { - transform: rotate(110deg); -} - -.ui.rotate.left.reveal > .visible.content { - transform-origin: bottom left; -} - -.ui.rotate.left.active.reveal > .visible.content, -.ui.rotate.left.reveal:hover > .visible.content { - transform: rotate(-110deg); -} - -/******************************* - States -*******************************/ - -.ui.disabled.reveal:hover > .visible.visible.content { - position: static !important; - display: block !important; - opacity: 1 !important; - top: 0 !important; - left: 0 !important; - right: auto !important; - bottom: auto !important; - transform: none !important; -} - -.ui.disabled.reveal:hover > .hidden.hidden.content { - display: none !important; -} - -/******************************* - Coupling -*******************************/ - -.ui.reveal > .ui.ribbon.label { - z-index: 5; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.reveal { - overflow: visible; -} - -/*-------------- - Instant ----------------*/ - -.ui.instant.reveal > .content { - transition-delay: 0s !important; -} - -/*-------------- - Sizing ----------------*/ - -.ui.reveal > .content { - font-size: 1rem !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Segment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Segment -*******************************/ - -.ui.segment { - position: relative; - background: #2E3235; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - margin: 1rem 0em; - padding: 1em 1em; - border-radius: 0.35714286rem; - border: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.segment:first-child { - margin-top: 0em; -} - -.ui.segment:last-child { - margin-bottom: 0em; -} - -/* Vertical */ - -.ui.vertical.segment { - margin: 0em; - padding-left: 0em; - padding-right: 0em; - background: none transparent; - border-radius: 0px; - box-shadow: none; - border: none; - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.vertical.segment:last-child { - border-bottom: none; -} - -/*------------------- - Loose Coupling ---------------------*/ - -/* Header */ - -.ui.inverted.segment > .ui.header { - color: #2E3235; -} - -/* Label */ - -.ui[class*="bottom attached"].segment > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui[class*="top attached"].segment > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -/* Grid */ - -.ui.page.grid.segment, -.ui.grid > .row > .ui.segment.column, -.ui.grid > .ui.segment.column { - padding-top: 2em; - padding-bottom: 2em; -} - -.ui.grid.segment { - margin: 1rem 0em; - border-radius: 0.35714286rem; -} - -/* Table */ - -.ui.basic.table.segment { - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui[class*="very basic"].table.segment { - padding: 1em 1em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Placeholder ---------------------*/ - -.ui.placeholder.segment { - display: flex; - flex-direction: column; - justify-content: center; - align-items: stretch; - max-width: initial; - animation: none; - overflow: visible; - padding: 1em 1em; - min-height: 18rem; - background: #34393D; - border-color: rgba(24, 26, 28, 0.45); - box-shadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset; -} - -.ui.placeholder.segment .button, -.ui.placeholder.segment textarea { - display: block; -} - -.ui.placeholder.segment .field, -.ui.placeholder.segment textarea, -.ui.placeholder.segment > .ui.input, -.ui.placeholder.segment .button { - max-width: 15rem; - margin-left: auto; - margin-right: auto; -} - -.ui.placeholder.segment .column .button, -.ui.placeholder.segment .column .field, -.ui.placeholder.segment .column textarea, -.ui.placeholder.segment .column > .ui.input { - max-width: 15rem; - margin-left: auto; - margin-right: auto; -} - -.ui.placeholder.segment > .inline { - align-self: center; -} - -.ui.placeholder.segment > .inline > .button { - display: inline-block; - width: auto; - margin: 0px 0.35714286rem 0px 0px; -} - -.ui.placeholder.segment > .inline > .button:last-child { - margin-right: 0px; -} - -/*------------------- - Piled ---------------------*/ - -.ui.piled.segments, -.ui.piled.segment { - margin: 3em 0em; - box-shadow: ''; - z-index: auto; -} - -.ui.piled.segment:first-child { - margin-top: 0em; -} - -.ui.piled.segment:last-child { - margin-bottom: 0em; -} - -.ui.piled.segments:after, -.ui.piled.segments:before, -.ui.piled.segment:after, -.ui.piled.segment:before { - background-color: #2E3235; - visibility: visible; - content: ''; - display: block; - height: 100%; - left: 0px; - position: absolute; - width: 100%; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: ''; -} - -.ui.piled.segments:before, -.ui.piled.segment:before { - transform: rotate(-1.2deg); - top: 0; - z-index: -2; -} - -.ui.piled.segments:after, -.ui.piled.segment:after { - transform: rotate(1.2deg); - top: 0; - z-index: -1; -} - -/* Piled Attached */ - -.ui[class*="top attached"].piled.segment { - margin-top: 3em; - margin-bottom: 0em; -} - -.ui.piled.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -.ui.piled.segment[class*="bottom attached"] { - margin-top: 0em; - margin-bottom: 3em; -} - -.ui.piled.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Stacked ---------------------*/ - -.ui.stacked.segment { - padding-bottom: 1.4em; -} - -.ui.stacked.segments:before, -.ui.stacked.segments:after, -.ui.stacked.segment:before, -.ui.stacked.segment:after { - content: ''; - position: absolute; - bottom: -3px; - left: 0%; - border-top: 1px solid rgba(24, 26, 28, 0.45); - background: rgba(255, 255, 255, 0.03); - width: 100%; - height: 6px; - visibility: visible; -} - -.ui.stacked.segments:before, -.ui.stacked.segment:before { - display: none; -} - -/* Add additional page */ - -.ui.tall.stacked.segments:before, -.ui.tall.stacked.segment:before { - display: block; - bottom: 0px; -} - -/* Inverted */ - -.ui.stacked.inverted.segments:before, -.ui.stacked.inverted.segments:after, -.ui.stacked.inverted.segment:before, -.ui.stacked.inverted.segment:after { - background-color: rgba(255, 255, 255, 0.03); - border-top: 1px solid rgba(24, 26, 28, 0.35); -} - -/*------------------- - Padded ---------------------*/ - -.ui.padded.segment { - padding: 1.5em; -} - -.ui[class*="very padded"].segment { - padding: 3em; -} - -/* Padded vertical */ - -.ui.padded.segment.vertical.segment, -.ui[class*="very padded"].vertical.segment { - padding-left: 0px; - padding-right: 0px; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.segment { - display: table; -} - -/* Compact Group */ - -.ui.compact.segments { - display: inline-flex; -} - -.ui.compact.segments .segment, -.ui.segments .compact.segment { - display: block; - flex: 0 1 auto; -} - -/*------------------- - Circular ---------------------*/ - -.ui.circular.segment { - display: table-cell; - padding: 2em; - text-align: center; - vertical-align: middle; - border-radius: 500em; -} - -/*------------------- - Raised ---------------------*/ - -.ui.raised.segments, -.ui.raised.segment { - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/******************************* - Groups -*******************************/ - -/* Group */ - -.ui.segments { - flex-direction: column; - position: relative; - margin: 1rem 0em; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; -} - -.ui.segments:first-child { - margin-top: 0em; -} - -.ui.segments:last-child { - margin-bottom: 0em; -} - -/* Nested Segment */ - -.ui.segments > .segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em; - width: auto; - box-shadow: none; - border: none; - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.segments:not(.horizontal) > .segment:first-child { - border-top: none; - margin-top: 0em; - bottom: 0px; - margin-bottom: 0em; - top: 0px; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -/* Bottom */ - -.ui.segments:not(.horizontal) > .segment:last-child { - top: 0px; - bottom: 0px; - margin-top: 0em; - margin-bottom: 0em; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -/* Only */ - -.ui.segments:not(.horizontal) > .segment:only-child { - border-radius: 0.35714286rem; -} - -/* Nested Group */ - -.ui.segments > .ui.segments { - border-top: 1px solid rgba(24, 26, 28, 0.45); - margin: 1rem 1rem; -} - -.ui.segments > .segments:first-child { - border-top: none; -} - -.ui.segments > .segment + .segments:not(.horizontal) { - margin-top: 0em; -} - -/* Horizontal Group */ - -.ui.horizontal.segments { - display: flex; - flex-direction: row; - background-color: transparent; - border-radius: 0px; - padding: 0em; - background-color: #2E3235; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - margin: 1rem 0em; - border-radius: 0.35714286rem; - border: 1px solid rgba(24, 26, 28, 0.45); -} - -/* Nested Horizontal Group */ - -.ui.segments > .horizontal.segments { - margin: 0em; - background-color: transparent; - border-radius: 0px; - border: none; - box-shadow: none; - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -/* Horizontal Segment */ - -.ui.horizontal.segments > .segment { - flex: 1 1 auto; - -ms-flex: 1 1 0px; - /* Solves #2550 MS Flex */ - margin: 0em; - min-width: 0px; - background-color: transparent; - border-radius: 0px; - border: none; - box-shadow: none; - border-left: 1px solid rgba(24, 26, 28, 0.45); -} - -/* Border Fixes */ - -.ui.segments > .horizontal.segments:first-child { - border-top: none; -} - -.ui.horizontal.segments > .segment:first-child { - border-left: none; -} - -/******************************* - States -*******************************/ - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.segment { - opacity: 0.45; - color: rgba(255, 255, 255, 0.2); -} - -/*-------------- - Loading ----------------*/ - -.ui.loading.segment { - position: relative; - cursor: default; - pointer-events: none; - text-shadow: none !important; - color: transparent !important; - transition: all 0s linear; -} - -.ui.loading.segment:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: rgba(255, 255, 255, 0.8); - width: 100%; - height: 100%; - border-radius: 0.35714286rem; - z-index: 100; -} - -.ui.loading.segment:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -1.5em 0em 0em -1.5em; - width: 3em; - height: 3em; - animation: segment-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@keyframes segment-spin { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Basic ---------------------*/ - -.ui.basic.segment { - background: none transparent; - box-shadow: none; - border: none; - border-radius: 0px; -} - -/*------------------- - Clearing ---------------------*/ - -.ui.clearing.segment:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.segment:not(.inverted) { - border-top: 2px solid #DB2828 !important; -} - -.ui.inverted.red.segment { - background-color: #DB2828 !important; - color: #2E3235 !important; -} - -/* Orange */ - -.ui.orange.segment:not(.inverted) { - border-top: 2px solid #C06D36 !important; -} - -.ui.inverted.orange.segment { - background-color: #C06D36 !important; - color: #2E3235 !important; -} - -/* Yellow */ - -.ui.yellow.segment:not(.inverted) { - border-top: 2px solid #FBBD08 !important; -} - -.ui.inverted.yellow.segment { - background-color: #FBBD08 !important; - color: #2E3235 !important; -} - -/* Olive */ - -.ui.olive.segment:not(.inverted) { - border-top: 2px solid #B5CC18 !important; -} - -.ui.inverted.olive.segment { - background-color: #B5CC18 !important; - color: #2E3235 !important; -} - -/* Green */ - -.ui.green.segment:not(.inverted) { - border-top: 2px solid #21BA45 !important; -} - -.ui.inverted.green.segment { - background-color: #21BA45 !important; - color: #2E3235 !important; -} - -/* Teal */ - -.ui.teal.segment:not(.inverted) { - border-top: 2px solid #00B5AD !important; -} - -.ui.inverted.teal.segment { - background-color: #00B5AD !important; - color: #2E3235 !important; -} - -/* Blue */ - -.ui.blue.segment:not(.inverted) { - border-top: 2px solid #2185D0 !important; -} - -.ui.inverted.blue.segment { - background-color: #2185D0 !important; - color: #2E3235 !important; -} - -/* Violet */ - -.ui.violet.segment:not(.inverted) { - border-top: 2px solid #6435C9 !important; -} - -.ui.inverted.violet.segment { - background-color: #6435C9 !important; - color: #2E3235 !important; -} - -/* Purple */ - -.ui.purple.segment:not(.inverted) { - border-top: 2px solid #A333C8 !important; -} - -.ui.inverted.purple.segment { - background-color: #A333C8 !important; - color: #2E3235 !important; -} - -/* Pink */ - -.ui.pink.segment:not(.inverted) { - border-top: 2px solid #E03997 !important; -} - -.ui.inverted.pink.segment { - background-color: #E03997 !important; - color: #2E3235 !important; -} - -/* Brown */ - -.ui.brown.segment:not(.inverted) { - border-top: 2px solid #A5673F !important; -} - -.ui.inverted.brown.segment { - background-color: #A5673F !important; - color: #2E3235 !important; -} - -/* Grey */ - -.ui.grey.segment:not(.inverted) { - border-top: 2px solid #767676 !important; -} - -.ui.inverted.grey.segment { - background-color: #767676 !important; - color: #2E3235 !important; -} - -/* Black */ - -.ui.black.segment:not(.inverted) { - border-top: 2px solid #F9FAFB !important; -} - -.ui.inverted.black.segment { - background-color: #F9FAFB !important; - color: #2E3235 !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui[class*="left aligned"].segment { - text-align: left; -} - -.ui[class*="right aligned"].segment { - text-align: right; -} - -.ui[class*="center aligned"].segment { - text-align: center; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.segment, -.ui[class*="left floated"].segment { - float: left; - margin-right: 1em; -} - -.ui[class*="right floated"].segment { - float: right; - margin-left: 1em; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.segment { - border: none; - box-shadow: none; -} - -.ui.inverted.segment, -.ui.primary.inverted.segment { - background: #F9FAFB; - color: rgba(0, 0, 0, 0.9); -} - -/* Nested */ - -.ui.inverted.segment .segment { - color: #DDDDDD; -} - -.ui.inverted.segment .inverted.segment { - color: rgba(0, 0, 0, 0.9); -} - -/* Attached */ - -.ui.inverted.attached.segment { - border-color: #34393D; -} - -/*------------------- - Emphasis ---------------------*/ - -/* Secondary */ - -.ui.secondary.segment { - background: #4B5257; - color: rgba(255, 255, 255, 0.6); -} - -.ui.secondary.inverted.segment { - background: #ffffff linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); - color: rgba(0, 0, 0, 0.8); -} - -/* Tertiary */ - -.ui.tertiary.segment { - background: #666E74; - color: rgba(255, 255, 255, 0.6); -} - -.ui.tertiary.inverted.segment { - background: #ffffff linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%); - color: rgba(0, 0, 0, 0.8); -} - -/*------------------- - Attached ---------------------*/ - -/* Middle */ - -.ui.attached.segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% - (-1px * 2)); - max-width: calc(100% - (-1px * 2)); - box-shadow: none; - border: 1px solid #3B3C3E; -} - -.ui.attached:not(.message) + .ui.attached.segment:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].segment { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui.segment[class*="bottom attached"] { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Size ---------------------*/ - -.ui.mini.segments .segment, -.ui.mini.segment { - font-size: 0.78571429rem; -} - -.ui.tiny.segments .segment, -.ui.tiny.segment { - font-size: 0.85714286rem; -} - -.ui.small.segments .segment, -.ui.small.segment { - font-size: 0.92857143rem; -} - -.ui.segments .segment, -.ui.segment { - font-size: 1rem; -} - -.ui.large.segments .segment, -.ui.large.segment { - font-size: 1.14285714rem; -} - -.ui.big.segments .segment, -.ui.big.segment { - font-size: 1.28571429rem; -} - -.ui.huge.segments .segment, -.ui.huge.segment { - font-size: 1.42857143rem; -} - -.ui.massive.segments .segment, -.ui.massive.segment { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Step - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Plural -*******************************/ - -.ui.steps { - display: inline-flex; - flex-direction: row; - align-items: stretch; - margin: 1em 0em; - background: ''; - box-shadow: none; - line-height: 1.14285714em; - border-radius: 0.35714286rem; - border: 1px solid rgba(24, 26, 28, 0.45); -} - -/* First Steps */ - -.ui.steps:first-child { - margin-top: 0em; -} - -/* Last Steps */ - -.ui.steps:last-child { - margin-bottom: 0em; -} - -/******************************* - Singular -*******************************/ - -.ui.steps .step { - position: relative; - display: flex; - flex: 1 0 auto; - flex-wrap: wrap; - flex-direction: row; - vertical-align: middle; - align-items: center; - justify-content: center; - margin: 0em 0em; - padding: 1.14285714em 2em; - background: #2E3235; - color: #DDDDDD; - box-shadow: none; - border-radius: 0em; - border: none; - border-right: 1px solid rgba(24, 26, 28, 0.45); - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; -} - -/* Arrow */ - -.ui.steps .step:after { - display: none; - position: absolute; - z-index: 2; - content: ''; - top: 50%; - right: 0%; - border: medium none; - background-color: #2E3235; - width: 1.14285714em; - height: 1.14285714em; - border-style: solid; - border-color: rgba(24, 26, 28, 0.45); - border-width: 0px 1px 1px 0px; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; - transform: translateY(-50%) translateX(50%) rotate(-45deg); -} - -/* First Step */ - -.ui.steps .step:first-child { - padding-left: 2em; - border-radius: 0.35714286rem 0em 0em 0.35714286rem; -} - -/* Last Step */ - -.ui.steps .step:last-child { - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -.ui.steps .step:last-child { - border-right: none; - margin-right: 0em; -} - -/* Only Step */ - -.ui.steps .step:only-child { - border-radius: 0.35714286rem; -} - -/******************************* - Content -*******************************/ - -/* Title */ - -.ui.steps .step .title { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1.14285714em; - font-weight: 600; -} - -.ui.steps .step > .title { - width: 100%; -} - -/* Description */ - -.ui.steps .step .description { - font-weight: normal; - font-size: 0.92857143em; - color: #DDDDDD; -} - -.ui.steps .step > .description { - width: 100%; -} - -.ui.steps .step .title ~ .description { - margin-top: 0.25em; -} - -/* Icon */ - -.ui.steps .step > .icon { - line-height: 1; - font-size: 2.5em; - margin: 0em 1rem 0em 0em; -} - -.ui.steps .step > .icon, -.ui.steps .step > .icon ~ .content { - display: block; - flex: 0 1 auto; - align-self: middle; -} - -.ui.steps .step > .icon ~ .content { - flex-grow: 1 0 auto; -} - -/* Horizontal Icon */ - -.ui.steps:not(.vertical) .step > .icon { - width: auto; -} - -/* Link */ - -.ui.steps .link.step, -.ui.steps a.step { - cursor: pointer; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Ordered ----------------*/ - -.ui.ordered.steps { - counter-reset: ordered; -} - -.ui.ordered.steps .step:before { - display: block; - position: static; - text-align: center; - content: counters(ordered, "."); - align-self: middle; - margin-right: 1rem; - font-size: 2.5em; - counter-increment: ordered; - font-family: inherit; - font-weight: 600; -} - -.ui.ordered.steps .step > * { - display: block; - align-self: middle; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.steps { - display: inline-flex; - flex-direction: column; - overflow: visible; -} - -.ui.vertical.steps .step { - justify-content: flex-start; - border-radius: 0em; - padding: 1.14285714em 2em; - border-right: none; - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.vertical.steps .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.vertical.steps .step:last-child { - border-bottom: none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.vertical.steps .step:only-child { - border-radius: 0.35714286rem; -} - -/* Arrow */ - -.ui.vertical.steps .step:after { - display: none; -} - -.ui.vertical.steps .step:after { - top: 50%; - right: 0%; - border-width: 0px 1px 1px 0px; -} - -.ui.vertical.steps .step:after { - display: none; -} - -.ui.vertical.steps .active.step:after { - display: block; -} - -.ui.vertical.steps .step:last-child:after { - display: none; -} - -.ui.vertical.steps .active.step:last-child:after { - display: block; -} - -/*--------------- - Responsive -----------------*/ - -/* Mobile (Default) */ - -@media only screen and (max-width: 767px) { - .ui.steps:not(.unstackable) { - display: inline-flex; - overflow: visible; - flex-direction: column; - } - - .ui.steps:not(.unstackable) .step { - width: 100% !important; - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } - - .ui.steps:not(.unstackable) .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; - } - - .ui.steps:not(.unstackable) .step:last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - } - - /* Arrow */ - - .ui.steps:not(.unstackable) .step:after { - display: none !important; - } - - /* Content */ - - .ui.steps:not(.unstackable) .step .content { - text-align: center; - } - - /* Icon */ - - .ui.steps:not(.unstackable) .step > .icon, - .ui.ordered.steps:not(.unstackable) .step:before { - margin: 0em 0em 1rem 0em; - } -} - -/******************************* - States -*******************************/ - -/* Link Hover */ - -.ui.steps .link.step:hover::after, -.ui.steps .link.step:hover, -.ui.steps a.step:hover::after, -.ui.steps a.step:hover { - background: #34393D; - color: rgba(255, 255, 255, 0.8); -} - -/* Link Down */ - -.ui.steps .link.step:active::after, -.ui.steps .link.step:active, -.ui.steps a.step:active::after, -.ui.steps a.step:active { - background: #4B5257; - color: rgba(255, 255, 255, 0.9); -} - -/* Active */ - -.ui.steps .step.active { - cursor: auto; - background: #4B5257; -} - -.ui.steps .step.active:after { - background: #4B5257; -} - -.ui.steps .step.active .title { - color: #6987AF; -} - -.ui.ordered.steps .step.active:before, -.ui.steps .active.step .icon { - color: rgba(255, 255, 255, 0.95); -} - -/* Active Arrow */ - -.ui.steps .step:after { - display: block; -} - -.ui.steps .active.step:after { - display: block; -} - -.ui.steps .step:last-child:after { - display: none; -} - -.ui.steps .active.step:last-child:after { - display: none; -} - -/* Active Hover */ - -.ui.steps .link.active.step:hover::after, -.ui.steps .link.active.step:hover, -.ui.steps a.active.step:hover::after, -.ui.steps a.active.step:hover { - cursor: pointer; - background: #DCDDDE; - color: #DDDDDD; -} - -/* Completed */ - -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - color: #21BA45; -} - -/* Disabled */ - -.ui.steps .disabled.step { - cursor: auto; - background: #2E3235; - pointer-events: none; -} - -.ui.steps .disabled.step, -.ui.steps .disabled.step .title, -.ui.steps .disabled.step .description { - color: rgba(255, 255, 255, 0.2); -} - -.ui.steps .disabled.step:after { - background: #2E3235; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -/* Tablet Or Below */ - -@media only screen and (max-width: 991px) { - .ui[class*="tablet stackable"].steps { - display: inline-flex; - overflow: visible; - flex-direction: column; - } - - /* Steps */ - - .ui[class*="tablet stackable"].steps .step { - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } - - .ui[class*="tablet stackable"].steps .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; - } - - .ui[class*="tablet stackable"].steps .step:last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - } - - /* Arrow */ - - .ui[class*="tablet stackable"].steps .step:after { - display: none !important; - } - - /* Content */ - - .ui[class*="tablet stackable"].steps .step .content { - text-align: center; - } - - /* Icon */ - - .ui[class*="tablet stackable"].steps .step > .icon, - .ui[class*="tablet stackable"].ordered.steps .step:before { - margin: 0em 0em 1rem 0em; - } -} - -/*-------------- - Fluid ----------------*/ - -/* Fluid */ - -.ui.fluid.steps { - display: flex; - width: 100%; -} - -/*-------------- - Attached ----------------*/ - -/* Top */ - -.ui.attached.steps { - width: calc(100% + (--1px * 2)) !important; - margin: 0em -1px 0; - max-width: calc(100% + (--1px * 2)); - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.attached.steps .step:first-child { - border-radius: 0.35714286rem 0em 0em 0em; -} - -.ui.attached.steps .step:last-child { - border-radius: 0em 0.35714286rem 0em 0em; -} - -/* Bottom */ - -.ui.bottom.attached.steps { - margin: 0 -1px 0em; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.bottom.attached.steps .step:first-child { - border-radius: 0em 0em 0em 0.35714286rem; -} - -.ui.bottom.attached.steps .step:last-child { - border-radius: 0em 0em 0.35714286rem 0em; -} - -/*------------------- - Evenly Divided ---------------------*/ - -.ui.one.steps, -.ui.two.steps, -.ui.three.steps, -.ui.four.steps, -.ui.five.steps, -.ui.six.steps, -.ui.seven.steps, -.ui.eight.steps { - width: 100%; -} - -.ui.one.steps > .step, -.ui.two.steps > .step, -.ui.three.steps > .step, -.ui.four.steps > .step, -.ui.five.steps > .step, -.ui.six.steps > .step, -.ui.seven.steps > .step, -.ui.eight.steps > .step { - flex-wrap: nowrap; -} - -.ui.one.steps > .step { - width: 100%; -} - -.ui.two.steps > .step { - width: 50%; -} - -.ui.three.steps > .step { - width: 33.333%; -} - -.ui.four.steps > .step { - width: 25%; -} - -.ui.five.steps > .step { - width: 20%; -} - -.ui.six.steps > .step { - width: 16.666%; -} - -.ui.seven.steps > .step { - width: 14.285%; -} - -.ui.eight.steps > .step { - width: 12.5%; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.steps .step, -.ui.mini.step { - font-size: 0.78571429rem; -} - -.ui.tiny.steps .step, -.ui.tiny.step { - font-size: 0.85714286rem; -} - -.ui.small.steps .step, -.ui.small.step { - font-size: 0.92857143rem; -} - -.ui.steps .step, -.ui.step { - font-size: 1rem; -} - -.ui.large.steps .step, -.ui.large.step { - font-size: 1.14285714rem; -} - -.ui.big.steps .step, -.ui.big.step { - font-size: 1.28571429rem; -} - -.ui.huge.steps .step, -.ui.huge.step { - font-size: 1.42857143rem; -} - -.ui.massive.steps .step, -.ui.massive.step { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Step'; - src: url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff'); -} - -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - font-family: 'Step'; - content: '\e800'; - /* '' */ -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Breadcrumb - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Breadcrumb -*******************************/ - -.ui.breadcrumb { - line-height: 1; - display: inline-block; - margin: 0em 0em; - vertical-align: middle; -} - -.ui.breadcrumb:first-child { - margin-top: 0em; -} - -.ui.breadcrumb:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Divider */ - -.ui.breadcrumb .divider { - display: inline-block; - opacity: 0.7; - margin: 0em 0.21428571rem 0em; - font-size: 0.92857143em; - color: rgba(255, 255, 255, 0.5); - vertical-align: baseline; -} - -/* Link */ - -.ui.breadcrumb a { - color: #6987AF; -} - -.ui.breadcrumb a:hover { - color: #729ad0; -} - -/* Icon Divider */ - -.ui.breadcrumb .icon.divider { - font-size: 0.85714286em; - vertical-align: baseline; -} - -/* Section */ - -.ui.breadcrumb a.section { - cursor: pointer; -} - -.ui.breadcrumb .section { - display: inline-block; - margin: 0em; - padding: 0em; -} - -/* Loose Coupling */ - -.ui.breadcrumb.segment { - display: inline-block; - padding: 0.78571429em 1em; -} - -/******************************* - States -*******************************/ - -.ui.breadcrumb .active.section { - font-weight: 600; -} - -/******************************* - Variations -*******************************/ - -.ui.mini.breadcrumb { - font-size: 0.78571429rem; -} - -.ui.tiny.breadcrumb { - font-size: 0.85714286rem; -} - -.ui.small.breadcrumb { - font-size: 0.92857143rem; -} - -.ui.breadcrumb { - font-size: 1rem; -} - -.ui.large.breadcrumb { - font-size: 1.14285714rem; -} - -.ui.big.breadcrumb { - font-size: 1.28571429rem; -} - -.ui.huge.breadcrumb { - font-size: 1.42857143rem; -} - -.ui.massive.breadcrumb { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Form - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Elements -*******************************/ - -/*-------------------- - Form ----------------------*/ - -.ui.form { - position: relative; - max-width: 100%; -} - -/*-------------------- - Content ----------------------*/ - -.ui.form > p { - margin: 1em 0em; -} - -/*-------------------- - Field ----------------------*/ - -.ui.form .field { - clear: both; - margin: 0em 0em 1em; -} - -.ui.form .field:last-child, -.ui.form .fields:last-child .field { - margin-bottom: 0em; -} - -.ui.form .fields .field { - clear: both; - margin: 0em; -} - -/*-------------------- - Labels ----------------------*/ - -.ui.form .field > label { - display: block; - margin: 0em 0em 0.28571429rem 0em; - color: #DDDDDD; - font-size: 0.92857143em; - font-weight: 600; - text-transform: none; -} - -/*-------------------- - Standard Inputs ----------------------*/ - -.ui.form textarea, -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - width: 100%; - vertical-align: top; -} - -/* Set max height on unusual input */ - -.ui.form ::-webkit-datetime-edit, -.ui.form ::-webkit-inner-spin-button { - height: 1.21428571em; -} - -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - margin: 0em; - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - line-height: 1.21428571em; - padding: 0.67857143em 1em; - font-size: 1em; - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - color: #DDDDDD; - border-radius: 0.35714286rem; - box-shadow: 0em 0em 0em 0em transparent inset; - transition: color 0.1s ease, border-color 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; -} - -.ui.form input:not([type]):focus, -.ui.form input[type="date"]:focus, -.ui.form input[type="datetime-local"]:focus, -.ui.form input[type="email"]:focus, -.ui.form input[type="number"]:focus, -.ui.form input[type="password"]:focus, -.ui.form input[type="search"]:focus, -.ui.form input[type="tel"]:focus, -.ui.form input[type="time"]:focus, -.ui.form input[type="text"]:focus, -.ui.form input[type="file"]:focus, -.ui.form input[type="url"]:focus { - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); -} - -/* Text Area */ - -.ui.form textarea { - margin: 0em; - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - padding: 0.78571429em 1em; - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - color: #DDDDDD; - border-radius: 0.35714286rem; - box-shadow: 0em 0em 0em 0em transparent inset; - transition: color 0.1s ease, border-color 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; - font-size: 1em; - line-height: 1.2857; - resize: vertical; -} - -.ui.form textarea:focus { - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); -} - -.ui.form textarea:not([rows]) { - height: 12em; - min-height: 8em; - max-height: 24em; -} - -.ui.form textarea, -.ui.form input[type="checkbox"] { - vertical-align: top; -} - -/*-------------------------- - Input w/ attached Button ----------------------------*/ - -.ui.form input.attached { - width: auto; -} - -/*-------------------- - Basic Select ----------------------*/ - -.ui.form select { - display: block; - height: auto; - width: 100%; - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; - box-shadow: 0em 0em 0em 0em transparent inset; - padding: 0.62em 1em; - color: #DDDDDD; - transition: color 0.1s ease, border-color 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; -} - -/*-------------------- - Dropdown ----------------------*/ - -/* Block */ - -.ui.form .field > .selection.dropdown { - width: 100%; -} - -.ui.form .field > .selection.dropdown > .dropdown.icon { - float: right; -} - -/* Inline */ - -.ui.form .inline.fields .field > .selection.dropdown, -.ui.form .inline.field > .selection.dropdown { - width: auto; -} - -.ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon, -.ui.form .inline.field > .selection.dropdown > .dropdown.icon { - float: none; -} - -/*-------------------- - UI Input ----------------------*/ - -/* Block */ - -.ui.form .field .ui.input, -.ui.form .fields .field .ui.input, -.ui.form .wide.field .ui.input { - width: 100%; -} - -/* Inline */ - -.ui.form .inline.fields .field:not(.wide) .ui.input, -.ui.form .inline.field:not(.wide) .ui.input { - width: auto; - vertical-align: middle; -} - -/* Auto Input */ - -.ui.form .fields .field .ui.input input, -.ui.form .field .ui.input input { - width: auto; -} - -/* Full Width Input */ - -.ui.form .ten.fields .ui.input input, -.ui.form .nine.fields .ui.input input, -.ui.form .eight.fields .ui.input input, -.ui.form .seven.fields .ui.input input, -.ui.form .six.fields .ui.input input, -.ui.form .five.fields .ui.input input, -.ui.form .four.fields .ui.input input, -.ui.form .three.fields .ui.input input, -.ui.form .two.fields .ui.input input, -.ui.form .wide.field .ui.input input { - flex: 1 0 auto; - width: 0px; -} - -/*-------------------- - Types of Messages ----------------------*/ - -.ui.form .success.message, -.ui.form .warning.message, -.ui.form .error.message { - display: none; -} - -/* Assumptions */ - -.ui.form .message:first-child { - margin-top: 0px; -} - -/*-------------------- - Validation Prompt ----------------------*/ - -.ui.form .field .prompt.label { - white-space: normal; - background: #2E3235 !important; - border: 1px solid #E0B4B4 !important; - color: #9F3A38 !important; -} - -.ui.form .inline.fields .field .prompt, -.ui.form .inline.field .prompt { - vertical-align: top; - margin: -0.25em 0em -0.5em 0.5em; -} - -.ui.form .inline.fields .field .prompt:before, -.ui.form .inline.field .prompt:before { - border-width: 0px 0px 1px 1px; - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Autofilled ----------------------*/ - -.ui.form .field.field input:-webkit-autofill { - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #E5DFA1 !important; -} - -/* Focus */ - -.ui.form .field.field input:-webkit-autofill:focus { - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #D5C315 !important; -} - -/* Error */ - -.ui.form .error.error input:-webkit-autofill { - box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - border-color: #E0B4B4 !important; -} - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ - -.ui.form ::-webkit-input-placeholder { - color: #777777; -} - -.ui.form :-ms-input-placeholder { - color: #777777 !important; -} - -.ui.form ::-moz-placeholder { - color: #777777; -} - -.ui.form :focus::-webkit-input-placeholder { - color: #777777; -} - -.ui.form :focus:-ms-input-placeholder { - color: #777777 !important; -} - -.ui.form :focus::-moz-placeholder { - color: #777777; -} - -/* Error Placeholder */ - -.ui.form .error ::-webkit-input-placeholder { - color: #e7bdbc; -} - -.ui.form .error :-ms-input-placeholder { - color: #e7bdbc !important; -} - -.ui.form .error ::-moz-placeholder { - color: #e7bdbc; -} - -.ui.form .error :focus::-webkit-input-placeholder { - color: #da9796; -} - -.ui.form .error :focus:-ms-input-placeholder { - color: #da9796 !important; -} - -.ui.form .error :focus::-moz-placeholder { - color: #da9796; -} - -/*-------------------- - Focus ----------------------*/ - -.ui.form input:not([type]):focus, -.ui.form input[type="date"]:focus, -.ui.form input[type="datetime-local"]:focus, -.ui.form input[type="email"]:focus, -.ui.form input[type="number"]:focus, -.ui.form input[type="password"]:focus, -.ui.form input[type="search"]:focus, -.ui.form input[type="tel"]:focus, -.ui.form input[type="time"]:focus, -.ui.form input[type="text"]:focus, -.ui.form input[type="file"]:focus, -.ui.form input[type="url"]:focus { - color: rgba(255, 255, 255, 0.95); - border-color: #85B7D9; - border-radius: 0.35714286rem; - background: #2E3235; - box-shadow: 0px 0em 0em 0em rgba(24, 26, 28, 0.35) inset; -} - -.ui.form textarea:focus { - color: rgba(255, 255, 255, 0.95); - border-color: #85B7D9; - border-radius: 0.35714286rem; - background: #2E3235; - box-shadow: 0px 0em 0em 0em rgba(24, 26, 28, 0.35) inset; - -webkit-appearance: none; -} - -/*-------------------- - Success ----------------------*/ - -/* On Form */ - -.ui.form.success .success.message:not(:empty) { - display: block; -} - -.ui.form.success .compact.success.message:not(:empty) { - display: inline-block; -} - -.ui.form.success .icon.success.message:not(:empty) { - display: flex; -} - -/*-------------------- - Warning ----------------------*/ - -/* On Form */ - -.ui.form.warning .warning.message:not(:empty) { - display: block; -} - -.ui.form.warning .compact.warning.message:not(:empty) { - display: inline-block; -} - -.ui.form.warning .icon.warning.message:not(:empty) { - display: flex; -} - -/*-------------------- - Error ----------------------*/ - -/* On Form */ - -.ui.form.error .error.message:not(:empty) { - display: block; -} - -.ui.form.error .compact.error.message:not(:empty) { - display: inline-block; -} - -.ui.form.error .icon.error.message:not(:empty) { - display: flex; -} - -/* On Field(s) */ - -.ui.form .fields.error .field label, -.ui.form .field.error label, -.ui.form .fields.error .field .input, -.ui.form .field.error .input { - color: #9F3A38; -} - -.ui.form .fields.error .field .corner.label, -.ui.form .field.error .corner.label { - border-color: #9F3A38; - color: #2E3235; -} - -.ui.form .fields.error .field textarea, -.ui.form .fields.error .field select, -.ui.form .fields.error .field input:not([type]), -.ui.form .fields.error .field input[type="date"], -.ui.form .fields.error .field input[type="datetime-local"], -.ui.form .fields.error .field input[type="email"], -.ui.form .fields.error .field input[type="number"], -.ui.form .fields.error .field input[type="password"], -.ui.form .fields.error .field input[type="search"], -.ui.form .fields.error .field input[type="tel"], -.ui.form .fields.error .field input[type="time"], -.ui.form .fields.error .field input[type="text"], -.ui.form .fields.error .field input[type="file"], -.ui.form .fields.error .field input[type="url"], -.ui.form .field.error textarea, -.ui.form .field.error select, -.ui.form .field.error input:not([type]), -.ui.form .field.error input[type="date"], -.ui.form .field.error input[type="datetime-local"], -.ui.form .field.error input[type="email"], -.ui.form .field.error input[type="number"], -.ui.form .field.error input[type="password"], -.ui.form .field.error input[type="search"], -.ui.form .field.error input[type="tel"], -.ui.form .field.error input[type="time"], -.ui.form .field.error input[type="text"], -.ui.form .field.error input[type="file"], -.ui.form .field.error input[type="url"] { - background: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - border-radius: ''; - box-shadow: none; -} - -.ui.form .field.error textarea:focus, -.ui.form .field.error select:focus, -.ui.form .field.error input:not([type]):focus, -.ui.form .field.error input[type="date"]:focus, -.ui.form .field.error input[type="datetime-local"]:focus, -.ui.form .field.error input[type="email"]:focus, -.ui.form .field.error input[type="number"]:focus, -.ui.form .field.error input[type="password"]:focus, -.ui.form .field.error input[type="search"]:focus, -.ui.form .field.error input[type="tel"]:focus, -.ui.form .field.error input[type="time"]:focus, -.ui.form .field.error input[type="text"]:focus, -.ui.form .field.error input[type="file"]:focus, -.ui.form .field.error input[type="url"]:focus { - background: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - -webkit-appearance: none; - box-shadow: none; -} - -/* Preserve Native Select Stylings */ - -.ui.form .field.error select { - -webkit-appearance: menulist-button; -} - -/*------------------ - Dropdown Error ---------------------*/ - -.ui.form .fields.error .field .ui.dropdown, -.ui.form .fields.error .field .ui.dropdown .item, -.ui.form .field.error .ui.dropdown, -.ui.form .field.error .ui.dropdown .text, -.ui.form .field.error .ui.dropdown .item { - background: #FFF6F6; - color: #9F3A38; -} - -.ui.form .fields.error .field .ui.dropdown, -.ui.form .field.error .ui.dropdown { - border-color: #E0B4B4 !important; -} - -.ui.form .fields.error .field .ui.dropdown:hover, -.ui.form .field.error .ui.dropdown:hover { - border-color: #E0B4B4 !important; -} - -.ui.form .fields.error .field .ui.dropdown:hover .menu, -.ui.form .field.error .ui.dropdown:hover .menu { - border-color: #E0B4B4; -} - -.ui.form .fields.error .field .ui.multiple.selection.dropdown > .label, -.ui.form .field.error .ui.multiple.selection.dropdown > .label { - background-color: #EACBCB; - color: #9F3A38; -} - -/* Hover */ - -.ui.form .fields.error .field .ui.dropdown .menu .item:hover, -.ui.form .field.error .ui.dropdown .menu .item:hover { - background-color: #FBE7E7; -} - -/* Selected */ - -.ui.form .fields.error .field .ui.dropdown .menu .selected.item, -.ui.form .field.error .ui.dropdown .menu .selected.item { - background-color: #FBE7E7; -} - -/* Active */ - -.ui.form .fields.error .field .ui.dropdown .menu .active.item, -.ui.form .field.error .ui.dropdown .menu .active.item { - background-color: #FDCFCF !important; -} - -/*-------------------- - Checkbox Error ----------------------*/ - -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box { - color: #9F3A38; -} - -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before { - background: #FFF6F6; - border-color: #E0B4B4; -} - -.ui.form .fields.error .field .checkbox label:after, -.ui.form .field.error .checkbox label:after, -.ui.form .fields.error .field .checkbox .box:after, -.ui.form .field.error .checkbox .box:after { - color: #9F3A38; -} - -/*-------------------- - Disabled ----------------------*/ - -.ui.form .disabled.fields .field, -.ui.form .disabled.field, -.ui.form .field :disabled { - pointer-events: none; - opacity: 0.45; -} - -.ui.form .field.disabled > label, -.ui.form .fields.disabled > label { - opacity: 0.45; -} - -.ui.form .field.disabled :disabled { - opacity: 1; -} - -/*-------------- - Loading ----------------*/ - -.ui.loading.form { - position: relative; - cursor: default; - pointer-events: none; -} - -.ui.loading.form:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: rgba(255, 255, 255, 0.8); - width: 100%; - height: 100%; - z-index: 100; -} - -.ui.loading.form:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -1.5em 0em 0em -1.5em; - width: 3em; - height: 3em; - animation: form-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@keyframes form-spin { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -/******************************* - Element Types -*******************************/ - -/*-------------------- - Required Field ----------------------*/ - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after, -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - margin: -0.2em 0em 0em 0.2em; - content: '*'; - color: #DB2828; -} - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after { - display: inline-block; - vertical-align: top; -} - -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - position: absolute; - top: 0%; - left: 100%; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Inverted Colors ----------------------*/ - -.ui.inverted.form label, -.ui.form .inverted.segment label, -.ui.form .inverted.segment .ui.checkbox label, -.ui.form .inverted.segment .ui.checkbox .box, -.ui.inverted.form .ui.checkbox label, -.ui.inverted.form .ui.checkbox .box, -.ui.inverted.form .inline.fields > label, -.ui.inverted.form .inline.fields .field > label, -.ui.inverted.form .inline.fields .field > p, -.ui.inverted.form .inline.field > label, -.ui.inverted.form .inline.field > p { - color: rgba(0, 0, 0, 0.9); -} - -/* Inverted Field */ - -.ui.inverted.form input:not([type]), -.ui.inverted.form input[type="date"], -.ui.inverted.form input[type="datetime-local"], -.ui.inverted.form input[type="email"], -.ui.inverted.form input[type="number"], -.ui.inverted.form input[type="password"], -.ui.inverted.form input[type="search"], -.ui.inverted.form input[type="tel"], -.ui.inverted.form input[type="time"], -.ui.inverted.form input[type="text"], -.ui.inverted.form input[type="file"], -.ui.inverted.form input[type="url"] { - background: #2E3235; - border-color: rgba(0, 0, 0, 0.1); - color: #DDDDDD; - box-shadow: none; -} - -/*-------------------- - Field Groups ----------------------*/ - -/* Grouped Vertically */ - -.ui.form .grouped.fields { - display: block; - margin: 0em 0em 1em; -} - -.ui.form .grouped.fields:last-child { - margin-bottom: 0em; -} - -.ui.form .grouped.fields > label { - margin: 0em 0em 0.28571429rem 0em; - color: #DDDDDD; - font-size: 0.92857143em; - font-weight: 600; - text-transform: none; -} - -.ui.form .grouped.fields .field, -.ui.form .grouped.inline.fields .field { - display: block; - margin: 0.5em 0em; - padding: 0em; -} - -/*-------------------- - Fields ----------------------*/ - -/* Split fields */ - -.ui.form .fields { - display: flex; - flex-direction: row; - margin: 0em -0.5em 1em; -} - -.ui.form .fields > .field { - flex: 0 1 auto; - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.form .fields > .field:first-child { - border-left: none; - box-shadow: none; -} - -/* Other Combinations */ - -.ui.form .two.fields > .fields, -.ui.form .two.fields > .field { - width: 50%; -} - -.ui.form .three.fields > .fields, -.ui.form .three.fields > .field { - width: 33.33333333%; -} - -.ui.form .four.fields > .fields, -.ui.form .four.fields > .field { - width: 25%; -} - -.ui.form .five.fields > .fields, -.ui.form .five.fields > .field { - width: 20%; -} - -.ui.form .six.fields > .fields, -.ui.form .six.fields > .field { - width: 16.66666667%; -} - -.ui.form .seven.fields > .fields, -.ui.form .seven.fields > .field { - width: 14.28571429%; -} - -.ui.form .eight.fields > .fields, -.ui.form .eight.fields > .field { - width: 12.5%; -} - -.ui.form .nine.fields > .fields, -.ui.form .nine.fields > .field { - width: 11.11111111%; -} - -.ui.form .ten.fields > .fields, -.ui.form .ten.fields > .field { - width: 10%; -} - -/* Swap to full width on mobile */ - -@media only screen and (max-width: 767px) { - .ui.form .fields { - flex-wrap: wrap; - } - - .ui[class*="equal width"].form:not(.unstackable) .fields > .field, - .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field { - width: 100% !important; - margin: 0em 0em 1em; - } -} - -/* Sizing Combinations */ - -.ui.form .fields .wide.field { - width: 6.25%; - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.form .one.wide.field { - width: 6.25% !important; -} - -.ui.form .two.wide.field { - width: 12.5% !important; -} - -.ui.form .three.wide.field { - width: 18.75% !important; -} - -.ui.form .four.wide.field { - width: 25% !important; -} - -.ui.form .five.wide.field { - width: 31.25% !important; -} - -.ui.form .six.wide.field { - width: 37.5% !important; -} - -.ui.form .seven.wide.field { - width: 43.75% !important; -} - -.ui.form .eight.wide.field { - width: 50% !important; -} - -.ui.form .nine.wide.field { - width: 56.25% !important; -} - -.ui.form .ten.wide.field { - width: 62.5% !important; -} - -.ui.form .eleven.wide.field { - width: 68.75% !important; -} - -.ui.form .twelve.wide.field { - width: 75% !important; -} - -.ui.form .thirteen.wide.field { - width: 81.25% !important; -} - -.ui.form .fourteen.wide.field { - width: 87.5% !important; -} - -.ui.form .fifteen.wide.field { - width: 93.75% !important; -} - -.ui.form .sixteen.wide.field { - width: 100% !important; -} - -/* Swap to full width on mobile */ - -@media only screen and (max-width: 767px) { - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field { - width: 100% !important; - } - - .ui.form .fields { - margin-bottom: 0em; - } -} - -/*-------------------- - Equal Width ----------------------*/ - -.ui[class*="equal width"].form .fields > .field, -.ui.form [class*="equal width"].fields > .field { - width: 100%; - flex: 1 1 auto; -} - -/*-------------------- - Inline Fields ----------------------*/ - -.ui.form .inline.fields { - margin: 0em 0em 1em; - align-items: center; -} - -.ui.form .inline.fields .field { - margin: 0em; - padding: 0em 1em 0em 0em; -} - -/* Inline Label */ - -.ui.form .inline.fields > label, -.ui.form .inline.fields .field > label, -.ui.form .inline.fields .field > p, -.ui.form .inline.field > label, -.ui.form .inline.field > p { - display: inline-block; - width: auto; - margin-top: 0em; - margin-bottom: 0em; - vertical-align: baseline; - font-size: 0.92857143em; - font-weight: 600; - color: #DDDDDD; - text-transform: none; -} - -/* Grouped Inline Label */ - -.ui.form .inline.fields > label { - margin: 0.035714em 1em 0em 0em; -} - -/* Inline Input */ - -.ui.form .inline.fields .field > input, -.ui.form .inline.fields .field > select, -.ui.form .inline.field > input, -.ui.form .inline.field > select { - display: inline-block; - width: auto; - margin-top: 0em; - margin-bottom: 0em; - vertical-align: middle; - font-size: 1em; -} - -/* Label */ - -.ui.form .inline.fields .field > :first-child, -.ui.form .inline.field > :first-child { - margin: 0em 0.85714286em 0em 0em; -} - -.ui.form .inline.fields .field > :only-child, -.ui.form .inline.field > :only-child { - margin: 0em; -} - -/* Wide */ - -.ui.form .inline.fields .wide.field { - display: flex; - align-items: center; -} - -.ui.form .inline.fields .wide.field > input, -.ui.form .inline.fields .wide.field > select { - width: 100%; -} - -/*-------------------- - Sizes ----------------------*/ - -.ui.mini.form { - font-size: 0.78571429rem; -} - -.ui.tiny.form { - font-size: 0.85714286rem; -} - -.ui.small.form { - font-size: 0.92857143rem; -} - -.ui.form { - font-size: 1rem; -} - -.ui.large.form { - font-size: 1.14285714rem; -} - -.ui.big.form { - font-size: 1.28571429rem; -} - -.ui.huge.form { - font-size: 1.42857143rem; -} - -.ui.massive.form { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Grid - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -.ui.grid { - display: flex; - flex-direction: row; - flex-wrap: wrap; - align-items: stretch; - padding: 0em; -} - -/*---------------------- - Remove Gutters ------------------------*/ - -.ui.grid { - margin-top: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; - margin-right: -1rem; -} - -.ui.relaxed.grid { - margin-left: -1.5rem; - margin-right: -1.5rem; -} - -.ui[class*="very relaxed"].grid { - margin-left: -2.5rem; - margin-right: -2.5rem; -} - -/* Preserve Rows Spacing on Consecutive Grids */ - -.ui.grid + .grid { - margin-top: 1rem; -} - -/*------------------- - Columns ---------------------*/ - -/* Standard 16 column */ - -.ui.grid > .column:not(.row), -.ui.grid > .row > .column { - position: relative; - display: inline-block; - width: 6.25%; - padding-left: 1rem; - padding-right: 1rem; - vertical-align: top; -} - -.ui.grid > * { - padding-left: 1rem; - padding-right: 1rem; -} - -/*------------------- - Rows ---------------------*/ - -.ui.grid > .row { - position: relative; - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: inherit; - align-items: stretch; - width: 100% !important; - padding: 0rem; - padding-top: 1rem; - padding-bottom: 1rem; -} - -/*------------------- - Columns ---------------------*/ - -/* Vertical padding when no rows */ - -.ui.grid > .column:not(.row) { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.ui.grid > .row > .column { - margin-top: 0em; - margin-bottom: 0em; -} - -/*------------------- - Content ---------------------*/ - -.ui.grid > .row > img, -.ui.grid > .row > .column > img { - max-width: 100%; -} - -/*------------------- - Loose Coupling ---------------------*/ - -/* Collapse Margin on Consecutive Grid */ - -.ui.grid > .ui.grid:first-child { - margin-top: 0em; -} - -.ui.grid > .ui.grid:last-child { - margin-bottom: 0em; -} - -/* Segment inside Aligned Grid */ - -.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached), -.ui.aligned.grid .column > .segment:not(.compact):not(.attached) { - width: 100%; -} - -/* Align Dividers with Gutter */ - -.ui.grid .row + .ui.divider { - flex-grow: 1; - margin: 1rem 1rem; -} - -.ui.grid .column + .ui.vertical.divider { - height: calc(50% - (2rem / 2)); -} - -/* Remove Border on Last Horizontal Segment */ - -.ui.grid > .row > .column:last-child > .horizontal.segment, -.ui.grid > .column:last-child > .horizontal.segment { - box-shadow: none; -} - -/******************************* - Variations -*******************************/ - -/*----------------------- - Page Grid --------------------------*/ - -@media only screen and (max-width: 767px) { - .ui.page.grid { - width: auto; - padding-left: 0em; - padding-right: 0em; - margin-left: 0em; - margin-right: 0em; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 2em; - padding-right: 2em; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 3%; - padding-right: 3%; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 15%; - padding-right: 15%; - } -} - -@media only screen and (min-width: 1920px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 23%; - padding-right: 23%; - } -} - -/*------------------- - Column Count ---------------------*/ - -/* Assume full width with one column */ - -.ui.grid > .column:only-child, -.ui.grid > .row > .column:only-child { - width: 100%; -} - -/* Grid Based */ - -.ui[class*="one column"].grid > .row > .column, -.ui[class*="one column"].grid > .column:not(.row) { - width: 100%; -} - -.ui[class*="two column"].grid > .row > .column, -.ui[class*="two column"].grid > .column:not(.row) { - width: 50%; -} - -.ui[class*="three column"].grid > .row > .column, -.ui[class*="three column"].grid > .column:not(.row) { - width: 33.33333333%; -} - -.ui[class*="four column"].grid > .row > .column, -.ui[class*="four column"].grid > .column:not(.row) { - width: 25%; -} - -.ui[class*="five column"].grid > .row > .column, -.ui[class*="five column"].grid > .column:not(.row) { - width: 20%; -} - -.ui[class*="six column"].grid > .row > .column, -.ui[class*="six column"].grid > .column:not(.row) { - width: 16.66666667%; -} - -.ui[class*="seven column"].grid > .row > .column, -.ui[class*="seven column"].grid > .column:not(.row) { - width: 14.28571429%; -} - -.ui[class*="eight column"].grid > .row > .column, -.ui[class*="eight column"].grid > .column:not(.row) { - width: 12.5%; -} - -.ui[class*="nine column"].grid > .row > .column, -.ui[class*="nine column"].grid > .column:not(.row) { - width: 11.11111111%; -} - -.ui[class*="ten column"].grid > .row > .column, -.ui[class*="ten column"].grid > .column:not(.row) { - width: 10%; -} - -.ui[class*="eleven column"].grid > .row > .column, -.ui[class*="eleven column"].grid > .column:not(.row) { - width: 9.09090909%; -} - -.ui[class*="twelve column"].grid > .row > .column, -.ui[class*="twelve column"].grid > .column:not(.row) { - width: 8.33333333%; -} - -.ui[class*="thirteen column"].grid > .row > .column, -.ui[class*="thirteen column"].grid > .column:not(.row) { - width: 7.69230769%; -} - -.ui[class*="fourteen column"].grid > .row > .column, -.ui[class*="fourteen column"].grid > .column:not(.row) { - width: 7.14285714%; -} - -.ui[class*="fifteen column"].grid > .row > .column, -.ui[class*="fifteen column"].grid > .column:not(.row) { - width: 6.66666667%; -} - -.ui[class*="sixteen column"].grid > .row > .column, -.ui[class*="sixteen column"].grid > .column:not(.row) { - width: 6.25%; -} - -/* Row Based Overrides */ - -.ui.grid > [class*="one column"].row > .column { - width: 100% !important; -} - -.ui.grid > [class*="two column"].row > .column { - width: 50% !important; -} - -.ui.grid > [class*="three column"].row > .column { - width: 33.33333333% !important; -} - -.ui.grid > [class*="four column"].row > .column { - width: 25% !important; -} - -.ui.grid > [class*="five column"].row > .column { - width: 20% !important; -} - -.ui.grid > [class*="six column"].row > .column { - width: 16.66666667% !important; -} - -.ui.grid > [class*="seven column"].row > .column { - width: 14.28571429% !important; -} - -.ui.grid > [class*="eight column"].row > .column { - width: 12.5% !important; -} - -.ui.grid > [class*="nine column"].row > .column { - width: 11.11111111% !important; -} - -.ui.grid > [class*="ten column"].row > .column { - width: 10% !important; -} - -.ui.grid > [class*="eleven column"].row > .column { - width: 9.09090909% !important; -} - -.ui.grid > [class*="twelve column"].row > .column { - width: 8.33333333% !important; -} - -.ui.grid > [class*="thirteen column"].row > .column { - width: 7.69230769% !important; -} - -.ui.grid > [class*="fourteen column"].row > .column { - width: 7.14285714% !important; -} - -.ui.grid > [class*="fifteen column"].row > .column { - width: 6.66666667% !important; -} - -.ui.grid > [class*="sixteen column"].row > .column { - width: 6.25% !important; -} - -/* Celled Page */ - -.ui.celled.page.grid { - box-shadow: none; -} - -/*------------------- - Column Width ---------------------*/ - -/* Sizing Combinations */ - -.ui.grid > .row > [class*="one wide"].column, -.ui.grid > .column.row > [class*="one wide"].column, -.ui.grid > [class*="one wide"].column, -.ui.column.grid > [class*="one wide"].column { - width: 6.25% !important; -} - -.ui.grid > .row > [class*="two wide"].column, -.ui.grid > .column.row > [class*="two wide"].column, -.ui.grid > [class*="two wide"].column, -.ui.column.grid > [class*="two wide"].column { - width: 12.5% !important; -} - -.ui.grid > .row > [class*="three wide"].column, -.ui.grid > .column.row > [class*="three wide"].column, -.ui.grid > [class*="three wide"].column, -.ui.column.grid > [class*="three wide"].column { - width: 18.75% !important; -} - -.ui.grid > .row > [class*="four wide"].column, -.ui.grid > .column.row > [class*="four wide"].column, -.ui.grid > [class*="four wide"].column, -.ui.column.grid > [class*="four wide"].column { - width: 25% !important; -} - -.ui.grid > .row > [class*="five wide"].column, -.ui.grid > .column.row > [class*="five wide"].column, -.ui.grid > [class*="five wide"].column, -.ui.column.grid > [class*="five wide"].column { - width: 31.25% !important; -} - -.ui.grid > .row > [class*="six wide"].column, -.ui.grid > .column.row > [class*="six wide"].column, -.ui.grid > [class*="six wide"].column, -.ui.column.grid > [class*="six wide"].column { - width: 37.5% !important; -} - -.ui.grid > .row > [class*="seven wide"].column, -.ui.grid > .column.row > [class*="seven wide"].column, -.ui.grid > [class*="seven wide"].column, -.ui.column.grid > [class*="seven wide"].column { - width: 43.75% !important; -} - -.ui.grid > .row > [class*="eight wide"].column, -.ui.grid > .column.row > [class*="eight wide"].column, -.ui.grid > [class*="eight wide"].column, -.ui.column.grid > [class*="eight wide"].column { - width: 50% !important; -} - -.ui.grid > .row > [class*="nine wide"].column, -.ui.grid > .column.row > [class*="nine wide"].column, -.ui.grid > [class*="nine wide"].column, -.ui.column.grid > [class*="nine wide"].column { - width: 56.25% !important; -} - -.ui.grid > .row > [class*="ten wide"].column, -.ui.grid > .column.row > [class*="ten wide"].column, -.ui.grid > [class*="ten wide"].column, -.ui.column.grid > [class*="ten wide"].column { - width: 62.5% !important; -} - -.ui.grid > .row > [class*="eleven wide"].column, -.ui.grid > .column.row > [class*="eleven wide"].column, -.ui.grid > [class*="eleven wide"].column, -.ui.column.grid > [class*="eleven wide"].column { - width: 68.75% !important; -} - -.ui.grid > .row > [class*="twelve wide"].column, -.ui.grid > .column.row > [class*="twelve wide"].column, -.ui.grid > [class*="twelve wide"].column, -.ui.column.grid > [class*="twelve wide"].column { - width: 75% !important; -} - -.ui.grid > .row > [class*="thirteen wide"].column, -.ui.grid > .column.row > [class*="thirteen wide"].column, -.ui.grid > [class*="thirteen wide"].column, -.ui.column.grid > [class*="thirteen wide"].column { - width: 81.25% !important; -} - -.ui.grid > .row > [class*="fourteen wide"].column, -.ui.grid > .column.row > [class*="fourteen wide"].column, -.ui.grid > [class*="fourteen wide"].column, -.ui.column.grid > [class*="fourteen wide"].column { - width: 87.5% !important; -} - -.ui.grid > .row > [class*="fifteen wide"].column, -.ui.grid > .column.row > [class*="fifteen wide"].column, -.ui.grid > [class*="fifteen wide"].column, -.ui.column.grid > [class*="fifteen wide"].column { - width: 93.75% !important; -} - -.ui.grid > .row > [class*="sixteen wide"].column, -.ui.grid > .column.row > [class*="sixteen wide"].column, -.ui.grid > [class*="sixteen wide"].column, -.ui.column.grid > [class*="sixteen wide"].column { - width: 100% !important; -} - -/*---------------------- - Width per Device ------------------------*/ - -/* Mobile Sizing Combinations */ - -@media only screen and (min-width: 320px) and (max-width: 767px) { - .ui.grid > .row > [class*="one wide mobile"].column, - .ui.grid > .column.row > [class*="one wide mobile"].column, - .ui.grid > [class*="one wide mobile"].column, - .ui.column.grid > [class*="one wide mobile"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide mobile"].column, - .ui.grid > .column.row > [class*="two wide mobile"].column, - .ui.grid > [class*="two wide mobile"].column, - .ui.column.grid > [class*="two wide mobile"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide mobile"].column, - .ui.grid > .column.row > [class*="three wide mobile"].column, - .ui.grid > [class*="three wide mobile"].column, - .ui.column.grid > [class*="three wide mobile"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide mobile"].column, - .ui.grid > .column.row > [class*="four wide mobile"].column, - .ui.grid > [class*="four wide mobile"].column, - .ui.column.grid > [class*="four wide mobile"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide mobile"].column, - .ui.grid > .column.row > [class*="five wide mobile"].column, - .ui.grid > [class*="five wide mobile"].column, - .ui.column.grid > [class*="five wide mobile"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide mobile"].column, - .ui.grid > .column.row > [class*="six wide mobile"].column, - .ui.grid > [class*="six wide mobile"].column, - .ui.column.grid > [class*="six wide mobile"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide mobile"].column, - .ui.grid > .column.row > [class*="seven wide mobile"].column, - .ui.grid > [class*="seven wide mobile"].column, - .ui.column.grid > [class*="seven wide mobile"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide mobile"].column, - .ui.grid > .column.row > [class*="eight wide mobile"].column, - .ui.grid > [class*="eight wide mobile"].column, - .ui.column.grid > [class*="eight wide mobile"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide mobile"].column, - .ui.grid > .column.row > [class*="nine wide mobile"].column, - .ui.grid > [class*="nine wide mobile"].column, - .ui.column.grid > [class*="nine wide mobile"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide mobile"].column, - .ui.grid > .column.row > [class*="ten wide mobile"].column, - .ui.grid > [class*="ten wide mobile"].column, - .ui.column.grid > [class*="ten wide mobile"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide mobile"].column, - .ui.grid > .column.row > [class*="eleven wide mobile"].column, - .ui.grid > [class*="eleven wide mobile"].column, - .ui.column.grid > [class*="eleven wide mobile"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide mobile"].column, - .ui.grid > .column.row > [class*="twelve wide mobile"].column, - .ui.grid > [class*="twelve wide mobile"].column, - .ui.column.grid > [class*="twelve wide mobile"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide mobile"].column, - .ui.grid > .column.row > [class*="thirteen wide mobile"].column, - .ui.grid > [class*="thirteen wide mobile"].column, - .ui.column.grid > [class*="thirteen wide mobile"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide mobile"].column, - .ui.grid > .column.row > [class*="fourteen wide mobile"].column, - .ui.grid > [class*="fourteen wide mobile"].column, - .ui.column.grid > [class*="fourteen wide mobile"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide mobile"].column, - .ui.grid > .column.row > [class*="fifteen wide mobile"].column, - .ui.grid > [class*="fifteen wide mobile"].column, - .ui.column.grid > [class*="fifteen wide mobile"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide mobile"].column, - .ui.grid > .column.row > [class*="sixteen wide mobile"].column, - .ui.grid > [class*="sixteen wide mobile"].column, - .ui.column.grid > [class*="sixteen wide mobile"].column { - width: 100% !important; - } -} - -/* Tablet Sizing Combinations */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.grid > .row > [class*="one wide tablet"].column, - .ui.grid > .column.row > [class*="one wide tablet"].column, - .ui.grid > [class*="one wide tablet"].column, - .ui.column.grid > [class*="one wide tablet"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide tablet"].column, - .ui.grid > .column.row > [class*="two wide tablet"].column, - .ui.grid > [class*="two wide tablet"].column, - .ui.column.grid > [class*="two wide tablet"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide tablet"].column, - .ui.grid > .column.row > [class*="three wide tablet"].column, - .ui.grid > [class*="three wide tablet"].column, - .ui.column.grid > [class*="three wide tablet"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide tablet"].column, - .ui.grid > .column.row > [class*="four wide tablet"].column, - .ui.grid > [class*="four wide tablet"].column, - .ui.column.grid > [class*="four wide tablet"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide tablet"].column, - .ui.grid > .column.row > [class*="five wide tablet"].column, - .ui.grid > [class*="five wide tablet"].column, - .ui.column.grid > [class*="five wide tablet"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide tablet"].column, - .ui.grid > .column.row > [class*="six wide tablet"].column, - .ui.grid > [class*="six wide tablet"].column, - .ui.column.grid > [class*="six wide tablet"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide tablet"].column, - .ui.grid > .column.row > [class*="seven wide tablet"].column, - .ui.grid > [class*="seven wide tablet"].column, - .ui.column.grid > [class*="seven wide tablet"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide tablet"].column, - .ui.grid > .column.row > [class*="eight wide tablet"].column, - .ui.grid > [class*="eight wide tablet"].column, - .ui.column.grid > [class*="eight wide tablet"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide tablet"].column, - .ui.grid > .column.row > [class*="nine wide tablet"].column, - .ui.grid > [class*="nine wide tablet"].column, - .ui.column.grid > [class*="nine wide tablet"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide tablet"].column, - .ui.grid > .column.row > [class*="ten wide tablet"].column, - .ui.grid > [class*="ten wide tablet"].column, - .ui.column.grid > [class*="ten wide tablet"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide tablet"].column, - .ui.grid > .column.row > [class*="eleven wide tablet"].column, - .ui.grid > [class*="eleven wide tablet"].column, - .ui.column.grid > [class*="eleven wide tablet"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide tablet"].column, - .ui.grid > .column.row > [class*="twelve wide tablet"].column, - .ui.grid > [class*="twelve wide tablet"].column, - .ui.column.grid > [class*="twelve wide tablet"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide tablet"].column, - .ui.grid > .column.row > [class*="thirteen wide tablet"].column, - .ui.grid > [class*="thirteen wide tablet"].column, - .ui.column.grid > [class*="thirteen wide tablet"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide tablet"].column, - .ui.grid > .column.row > [class*="fourteen wide tablet"].column, - .ui.grid > [class*="fourteen wide tablet"].column, - .ui.column.grid > [class*="fourteen wide tablet"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide tablet"].column, - .ui.grid > .column.row > [class*="fifteen wide tablet"].column, - .ui.grid > [class*="fifteen wide tablet"].column, - .ui.column.grid > [class*="fifteen wide tablet"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide tablet"].column, - .ui.grid > .column.row > [class*="sixteen wide tablet"].column, - .ui.grid > [class*="sixteen wide tablet"].column, - .ui.column.grid > [class*="sixteen wide tablet"].column { - width: 100% !important; - } -} - -/* Computer/Desktop Sizing Combinations */ - -@media only screen and (min-width: 992px) { - .ui.grid > .row > [class*="one wide computer"].column, - .ui.grid > .column.row > [class*="one wide computer"].column, - .ui.grid > [class*="one wide computer"].column, - .ui.column.grid > [class*="one wide computer"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide computer"].column, - .ui.grid > .column.row > [class*="two wide computer"].column, - .ui.grid > [class*="two wide computer"].column, - .ui.column.grid > [class*="two wide computer"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide computer"].column, - .ui.grid > .column.row > [class*="three wide computer"].column, - .ui.grid > [class*="three wide computer"].column, - .ui.column.grid > [class*="three wide computer"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide computer"].column, - .ui.grid > .column.row > [class*="four wide computer"].column, - .ui.grid > [class*="four wide computer"].column, - .ui.column.grid > [class*="four wide computer"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide computer"].column, - .ui.grid > .column.row > [class*="five wide computer"].column, - .ui.grid > [class*="five wide computer"].column, - .ui.column.grid > [class*="five wide computer"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide computer"].column, - .ui.grid > .column.row > [class*="six wide computer"].column, - .ui.grid > [class*="six wide computer"].column, - .ui.column.grid > [class*="six wide computer"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide computer"].column, - .ui.grid > .column.row > [class*="seven wide computer"].column, - .ui.grid > [class*="seven wide computer"].column, - .ui.column.grid > [class*="seven wide computer"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide computer"].column, - .ui.grid > .column.row > [class*="eight wide computer"].column, - .ui.grid > [class*="eight wide computer"].column, - .ui.column.grid > [class*="eight wide computer"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide computer"].column, - .ui.grid > .column.row > [class*="nine wide computer"].column, - .ui.grid > [class*="nine wide computer"].column, - .ui.column.grid > [class*="nine wide computer"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide computer"].column, - .ui.grid > .column.row > [class*="ten wide computer"].column, - .ui.grid > [class*="ten wide computer"].column, - .ui.column.grid > [class*="ten wide computer"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide computer"].column, - .ui.grid > .column.row > [class*="eleven wide computer"].column, - .ui.grid > [class*="eleven wide computer"].column, - .ui.column.grid > [class*="eleven wide computer"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide computer"].column, - .ui.grid > .column.row > [class*="twelve wide computer"].column, - .ui.grid > [class*="twelve wide computer"].column, - .ui.column.grid > [class*="twelve wide computer"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide computer"].column, - .ui.grid > .column.row > [class*="thirteen wide computer"].column, - .ui.grid > [class*="thirteen wide computer"].column, - .ui.column.grid > [class*="thirteen wide computer"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide computer"].column, - .ui.grid > .column.row > [class*="fourteen wide computer"].column, - .ui.grid > [class*="fourteen wide computer"].column, - .ui.column.grid > [class*="fourteen wide computer"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide computer"].column, - .ui.grid > .column.row > [class*="fifteen wide computer"].column, - .ui.grid > [class*="fifteen wide computer"].column, - .ui.column.grid > [class*="fifteen wide computer"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide computer"].column, - .ui.grid > .column.row > [class*="sixteen wide computer"].column, - .ui.grid > [class*="sixteen wide computer"].column, - .ui.column.grid > [class*="sixteen wide computer"].column { - width: 100% !important; - } -} - -/* Large Monitor Sizing Combinations */ - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui.grid > .row > [class*="one wide large screen"].column, - .ui.grid > .column.row > [class*="one wide large screen"].column, - .ui.grid > [class*="one wide large screen"].column, - .ui.column.grid > [class*="one wide large screen"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide large screen"].column, - .ui.grid > .column.row > [class*="two wide large screen"].column, - .ui.grid > [class*="two wide large screen"].column, - .ui.column.grid > [class*="two wide large screen"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide large screen"].column, - .ui.grid > .column.row > [class*="three wide large screen"].column, - .ui.grid > [class*="three wide large screen"].column, - .ui.column.grid > [class*="three wide large screen"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide large screen"].column, - .ui.grid > .column.row > [class*="four wide large screen"].column, - .ui.grid > [class*="four wide large screen"].column, - .ui.column.grid > [class*="four wide large screen"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide large screen"].column, - .ui.grid > .column.row > [class*="five wide large screen"].column, - .ui.grid > [class*="five wide large screen"].column, - .ui.column.grid > [class*="five wide large screen"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide large screen"].column, - .ui.grid > .column.row > [class*="six wide large screen"].column, - .ui.grid > [class*="six wide large screen"].column, - .ui.column.grid > [class*="six wide large screen"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide large screen"].column, - .ui.grid > .column.row > [class*="seven wide large screen"].column, - .ui.grid > [class*="seven wide large screen"].column, - .ui.column.grid > [class*="seven wide large screen"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide large screen"].column, - .ui.grid > .column.row > [class*="eight wide large screen"].column, - .ui.grid > [class*="eight wide large screen"].column, - .ui.column.grid > [class*="eight wide large screen"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide large screen"].column, - .ui.grid > .column.row > [class*="nine wide large screen"].column, - .ui.grid > [class*="nine wide large screen"].column, - .ui.column.grid > [class*="nine wide large screen"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide large screen"].column, - .ui.grid > .column.row > [class*="ten wide large screen"].column, - .ui.grid > [class*="ten wide large screen"].column, - .ui.column.grid > [class*="ten wide large screen"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide large screen"].column, - .ui.grid > .column.row > [class*="eleven wide large screen"].column, - .ui.grid > [class*="eleven wide large screen"].column, - .ui.column.grid > [class*="eleven wide large screen"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide large screen"].column, - .ui.grid > .column.row > [class*="twelve wide large screen"].column, - .ui.grid > [class*="twelve wide large screen"].column, - .ui.column.grid > [class*="twelve wide large screen"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide large screen"].column, - .ui.grid > .column.row > [class*="thirteen wide large screen"].column, - .ui.grid > [class*="thirteen wide large screen"].column, - .ui.column.grid > [class*="thirteen wide large screen"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide large screen"].column, - .ui.grid > .column.row > [class*="fourteen wide large screen"].column, - .ui.grid > [class*="fourteen wide large screen"].column, - .ui.column.grid > [class*="fourteen wide large screen"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide large screen"].column, - .ui.grid > .column.row > [class*="fifteen wide large screen"].column, - .ui.grid > [class*="fifteen wide large screen"].column, - .ui.column.grid > [class*="fifteen wide large screen"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide large screen"].column, - .ui.grid > .column.row > [class*="sixteen wide large screen"].column, - .ui.grid > [class*="sixteen wide large screen"].column, - .ui.column.grid > [class*="sixteen wide large screen"].column { - width: 100% !important; - } -} - -/* Widescreen Sizing Combinations */ - -@media only screen and (min-width: 1920px) { - .ui.grid > .row > [class*="one wide widescreen"].column, - .ui.grid > .column.row > [class*="one wide widescreen"].column, - .ui.grid > [class*="one wide widescreen"].column, - .ui.column.grid > [class*="one wide widescreen"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide widescreen"].column, - .ui.grid > .column.row > [class*="two wide widescreen"].column, - .ui.grid > [class*="two wide widescreen"].column, - .ui.column.grid > [class*="two wide widescreen"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide widescreen"].column, - .ui.grid > .column.row > [class*="three wide widescreen"].column, - .ui.grid > [class*="three wide widescreen"].column, - .ui.column.grid > [class*="three wide widescreen"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide widescreen"].column, - .ui.grid > .column.row > [class*="four wide widescreen"].column, - .ui.grid > [class*="four wide widescreen"].column, - .ui.column.grid > [class*="four wide widescreen"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide widescreen"].column, - .ui.grid > .column.row > [class*="five wide widescreen"].column, - .ui.grid > [class*="five wide widescreen"].column, - .ui.column.grid > [class*="five wide widescreen"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide widescreen"].column, - .ui.grid > .column.row > [class*="six wide widescreen"].column, - .ui.grid > [class*="six wide widescreen"].column, - .ui.column.grid > [class*="six wide widescreen"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide widescreen"].column, - .ui.grid > .column.row > [class*="seven wide widescreen"].column, - .ui.grid > [class*="seven wide widescreen"].column, - .ui.column.grid > [class*="seven wide widescreen"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide widescreen"].column, - .ui.grid > .column.row > [class*="eight wide widescreen"].column, - .ui.grid > [class*="eight wide widescreen"].column, - .ui.column.grid > [class*="eight wide widescreen"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide widescreen"].column, - .ui.grid > .column.row > [class*="nine wide widescreen"].column, - .ui.grid > [class*="nine wide widescreen"].column, - .ui.column.grid > [class*="nine wide widescreen"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide widescreen"].column, - .ui.grid > .column.row > [class*="ten wide widescreen"].column, - .ui.grid > [class*="ten wide widescreen"].column, - .ui.column.grid > [class*="ten wide widescreen"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide widescreen"].column, - .ui.grid > .column.row > [class*="eleven wide widescreen"].column, - .ui.grid > [class*="eleven wide widescreen"].column, - .ui.column.grid > [class*="eleven wide widescreen"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide widescreen"].column, - .ui.grid > .column.row > [class*="twelve wide widescreen"].column, - .ui.grid > [class*="twelve wide widescreen"].column, - .ui.column.grid > [class*="twelve wide widescreen"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide widescreen"].column, - .ui.grid > .column.row > [class*="thirteen wide widescreen"].column, - .ui.grid > [class*="thirteen wide widescreen"].column, - .ui.column.grid > [class*="thirteen wide widescreen"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fourteen wide widescreen"].column, - .ui.grid > [class*="fourteen wide widescreen"].column, - .ui.column.grid > [class*="fourteen wide widescreen"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fifteen wide widescreen"].column, - .ui.grid > [class*="fifteen wide widescreen"].column, - .ui.column.grid > [class*="fifteen wide widescreen"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide widescreen"].column, - .ui.grid > .column.row > [class*="sixteen wide widescreen"].column, - .ui.grid > [class*="sixteen wide widescreen"].column, - .ui.column.grid > [class*="sixteen wide widescreen"].column { - width: 100% !important; - } -} - -/*---------------------- - Centered ------------------------*/ - -.ui.centered.grid, -.ui.centered.grid > .row, -.ui.grid > .centered.row { - text-align: center; - justify-content: center; -} - -.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row), -.ui.centered.grid > .row > .column:not(.aligned):not(.justified), -.ui.grid .centered.row > .column:not(.aligned):not(.justified) { - text-align: left; -} - -.ui.grid > .centered.column, -.ui.grid > .row > .centered.column { - display: block; - margin-left: auto; - margin-right: auto; -} - -/*---------------------- - Relaxed ------------------------*/ - -.ui.relaxed.grid > .column:not(.row), -.ui.relaxed.grid > .row > .column, -.ui.grid > .relaxed.row > .column { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -.ui[class*="very relaxed"].grid > .column:not(.row), -.ui[class*="very relaxed"].grid > .row > .column, -.ui.grid > [class*="very relaxed"].row > .column { - padding-left: 2.5rem; - padding-right: 2.5rem; -} - -/* Coupling with UI Divider */ - -.ui.relaxed.grid .row + .ui.divider, -.ui.grid .relaxed.row + .ui.divider { - margin-left: 1.5rem; - margin-right: 1.5rem; -} - -.ui[class*="very relaxed"].grid .row + .ui.divider, -.ui.grid [class*="very relaxed"].row + .ui.divider { - margin-left: 2.5rem; - margin-right: 2.5rem; -} - -/*---------------------- - Padded ------------------------*/ - -.ui.padded.grid:not(.vertically):not(.horizontally) { - margin: 0em !important; -} - -[class*="horizontally padded"].ui.grid { - margin-left: 0em !important; - margin-right: 0em !important; -} - -[class*="vertically padded"].ui.grid { - margin-top: 0em !important; - margin-bottom: 0em !important; -} - -/*---------------------- - "Floated" ------------------------*/ - -.ui.grid [class*="left floated"].column { - margin-right: auto; -} - -.ui.grid [class*="right floated"].column { - margin-left: auto; -} - -/*---------------------- - Divided ------------------------*/ - -.ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column { - box-shadow: -1px 0px 0px 0px rgba(24, 26, 28, 0.45); -} - -/* Swap from padding to margin on columns to have dividers align */ - -.ui[class*="vertically divided"].grid > .column:not(.row), -.ui[class*="vertically divided"].grid > .row > .column { - margin-top: 1rem; - margin-bottom: 1rem; - padding-top: 0rem; - padding-bottom: 0rem; -} - -.ui[class*="vertically divided"].grid > .row { - margin-top: 0em; - margin-bottom: 0em; -} - -/* No divider on first column on row */ - -.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child, -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: none; -} - -/* No space on top of first row */ - -.ui[class*="vertically divided"].grid > .row:first-child > .column { - margin-top: 0em; -} - -/* Divided Row */ - -.ui.grid > .divided.row > .column { - box-shadow: -1px 0px 0px 0px rgba(24, 26, 28, 0.45); -} - -.ui.grid > .divided.row > .column:first-child { - box-shadow: none; -} - -/* Vertically Divided */ - -.ui[class*="vertically divided"].grid > .row { - position: relative; -} - -.ui[class*="vertically divided"].grid > .row:before { - position: absolute; - content: ""; - top: 0em; - left: 0px; - width: calc(100% - 2rem); - height: 1px; - margin: 0% 1rem; - box-shadow: 0px -1px 0px 0px rgba(24, 26, 28, 0.45); -} - -/* Padded Horizontally Divided */ - -[class*="horizontally padded"].ui.divided.grid, -.ui.padded.divided.grid:not(.vertically):not(.horizontally) { - width: 100%; -} - -/* First Row Vertically Divided */ - -.ui[class*="vertically divided"].grid > .row:first-child:before { - box-shadow: none; -} - -/* Inverted Divided */ - -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column { - box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1); -} - -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child, -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: none; -} - -.ui.inverted[class*="vertically divided"].grid > .row:before { - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1); -} - -/* Relaxed */ - -.ui.relaxed[class*="vertically divided"].grid > .row:before { - margin-left: 1.5rem; - margin-right: 1.5rem; - width: calc(100% - 3rem); -} - -.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before { - margin-left: 2.5rem; - margin-right: 2.5rem; - width: calc(100% - 5rem); -} - -/*---------------------- - Celled ------------------------*/ - -.ui.celled.grid { - width: 100%; - margin: 1em 0em; - box-shadow: 0px 0px 0px 1px #3B3C3E; -} - -.ui.celled.grid > .row { - width: 100% !important; - margin: 0em; - padding: 0em; - box-shadow: 0px -1px 0px 0px #3B3C3E; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - box-shadow: -1px 0px 0px 0px #3B3C3E; -} - -.ui.celled.grid > .column:first-child, -.ui.celled.grid > .row > .column:first-child { - box-shadow: none; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - padding: 1em; -} - -.ui.relaxed.celled.grid > .column:not(.row), -.ui.relaxed.celled.grid > .row > .column { - padding: 1.5em; -} - -.ui[class*="very relaxed"].celled.grid > .column:not(.row), -.ui[class*="very relaxed"].celled.grid > .row > .column { - padding: 2em; -} - -/* Internally Celled */ - -.ui[class*="internally celled"].grid { - box-shadow: none; - margin: 0em; -} - -.ui[class*="internally celled"].grid > .row:first-child { - box-shadow: none; -} - -.ui[class*="internally celled"].grid > .row > .column:first-child { - box-shadow: none; -} - -/*---------------------- - Vertically Aligned ------------------------*/ - -/* Top Aligned */ - -.ui[class*="top aligned"].grid > .column:not(.row), -.ui[class*="top aligned"].grid > .row > .column, -.ui.grid > [class*="top aligned"].row > .column, -.ui.grid > [class*="top aligned"].column:not(.row), -.ui.grid > .row > [class*="top aligned"].column { - flex-direction: column; - vertical-align: top; - align-self: flex-start !important; -} - -/* Middle Aligned */ - -.ui[class*="middle aligned"].grid > .column:not(.row), -.ui[class*="middle aligned"].grid > .row > .column, -.ui.grid > [class*="middle aligned"].row > .column, -.ui.grid > [class*="middle aligned"].column:not(.row), -.ui.grid > .row > [class*="middle aligned"].column { - flex-direction: column; - vertical-align: middle; - align-self: center !important; -} - -/* Bottom Aligned */ - -.ui[class*="bottom aligned"].grid > .column:not(.row), -.ui[class*="bottom aligned"].grid > .row > .column, -.ui.grid > [class*="bottom aligned"].row > .column, -.ui.grid > [class*="bottom aligned"].column:not(.row), -.ui.grid > .row > [class*="bottom aligned"].column { - flex-direction: column; - vertical-align: bottom; - align-self: flex-end !important; -} - -/* Stretched */ - -.ui.stretched.grid > .row > .column, -.ui.stretched.grid > .column, -.ui.grid > .stretched.row > .column, -.ui.grid > .stretched.column:not(.row), -.ui.grid > .row > .stretched.column { - display: inline-flex !important; - align-self: stretch; - flex-direction: column; -} - -.ui.stretched.grid > .row > .column > *, -.ui.stretched.grid > .column > *, -.ui.grid > .stretched.row > .column > *, -.ui.grid > .stretched.column:not(.row) > *, -.ui.grid > .row > .stretched.column > * { - flex-grow: 1; -} - -/*---------------------- - Horizontally Centered ------------------------*/ - -/* Left Aligned */ - -.ui[class*="left aligned"].grid > .column, -.ui[class*="left aligned"].grid > .row > .column, -.ui.grid > [class*="left aligned"].row > .column, -.ui.grid > [class*="left aligned"].column.column, -.ui.grid > .row > [class*="left aligned"].column.column { - text-align: left; - align-self: inherit; -} - -/* Center Aligned */ - -.ui[class*="center aligned"].grid > .column, -.ui[class*="center aligned"].grid > .row > .column, -.ui.grid > [class*="center aligned"].row > .column, -.ui.grid > [class*="center aligned"].column.column, -.ui.grid > .row > [class*="center aligned"].column.column { - text-align: center; - align-self: inherit; -} - -.ui[class*="center aligned"].grid { - justify-content: center; -} - -/* Right Aligned */ - -.ui[class*="right aligned"].grid > .column, -.ui[class*="right aligned"].grid > .row > .column, -.ui.grid > [class*="right aligned"].row > .column, -.ui.grid > [class*="right aligned"].column.column, -.ui.grid > .row > [class*="right aligned"].column.column { - text-align: right; - align-self: inherit; -} - -/* Justified */ - -.ui.justified.grid > .column, -.ui.justified.grid > .row > .column, -.ui.grid > .justified.row > .column, -.ui.grid > .justified.column.column, -.ui.grid > .row > .justified.column.column { - text-align: justify; - hyphens: auto; -} - -/*---------------------- - Colored ------------------------*/ - -.ui.grid > .row > .red.column, -.ui.grid > .row > .orange.column, -.ui.grid > .row > .yellow.column, -.ui.grid > .row > .olive.column, -.ui.grid > .row > .green.column, -.ui.grid > .row > .teal.column, -.ui.grid > .row > .blue.column, -.ui.grid > .row > .violet.column, -.ui.grid > .row > .purple.column, -.ui.grid > .row > .pink.column, -.ui.grid > .row > .brown.column, -.ui.grid > .row > .grey.column, -.ui.grid > .row > .black.column { - margin-top: -1rem; - margin-bottom: -1rem; - padding-top: 1rem; - padding-bottom: 1rem; -} - -/* Red */ - -.ui.grid > .red.row, -.ui.grid > .red.column, -.ui.grid > .row > .red.column { - background-color: #DB2828 !important; - color: #2E3235; -} - -/* Orange */ - -.ui.grid > .orange.row, -.ui.grid > .orange.column, -.ui.grid > .row > .orange.column { - background-color: #C06D36 !important; - color: #2E3235; -} - -/* Yellow */ - -.ui.grid > .yellow.row, -.ui.grid > .yellow.column, -.ui.grid > .row > .yellow.column { - background-color: #FBBD08 !important; - color: #2E3235; -} - -/* Olive */ - -.ui.grid > .olive.row, -.ui.grid > .olive.column, -.ui.grid > .row > .olive.column { - background-color: #B5CC18 !important; - color: #2E3235; -} - -/* Green */ - -.ui.grid > .green.row, -.ui.grid > .green.column, -.ui.grid > .row > .green.column { - background-color: #21BA45 !important; - color: #2E3235; -} - -/* Teal */ - -.ui.grid > .teal.row, -.ui.grid > .teal.column, -.ui.grid > .row > .teal.column { - background-color: #00B5AD !important; - color: #2E3235; -} - -/* Blue */ - -.ui.grid > .blue.row, -.ui.grid > .blue.column, -.ui.grid > .row > .blue.column { - background-color: #2185D0 !important; - color: #2E3235; -} - -/* Violet */ - -.ui.grid > .violet.row, -.ui.grid > .violet.column, -.ui.grid > .row > .violet.column { - background-color: #6435C9 !important; - color: #2E3235; -} - -/* Purple */ - -.ui.grid > .purple.row, -.ui.grid > .purple.column, -.ui.grid > .row > .purple.column { - background-color: #A333C8 !important; - color: #2E3235; -} - -/* Pink */ - -.ui.grid > .pink.row, -.ui.grid > .pink.column, -.ui.grid > .row > .pink.column { - background-color: #E03997 !important; - color: #2E3235; -} - -/* Brown */ - -.ui.grid > .brown.row, -.ui.grid > .brown.column, -.ui.grid > .row > .brown.column { - background-color: #A5673F !important; - color: #2E3235; -} - -/* Grey */ - -.ui.grid > .grey.row, -.ui.grid > .grey.column, -.ui.grid > .row > .grey.column { - background-color: #767676 !important; - color: #2E3235; -} - -/* Black */ - -.ui.grid > .black.row, -.ui.grid > .black.column, -.ui.grid > .row > .black.column { - background-color: #F9FAFB !important; - color: #2E3235; -} - -/*---------------------- - Equal Width ------------------------*/ - -.ui[class*="equal width"].grid > .column:not(.row), -.ui[class*="equal width"].grid > .row > .column, -.ui.grid > [class*="equal width"].row > .column { - display: inline-block; - flex-grow: 1; -} - -.ui[class*="equal width"].grid > .wide.column, -.ui[class*="equal width"].grid > .row > .wide.column, -.ui.grid > [class*="equal width"].row > .wide.column { - flex-grow: 0; -} - -/*---------------------- - Reverse ------------------------*/ - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui[class*="mobile reversed"].grid, - .ui[class*="mobile reversed"].grid > .row, - .ui.grid > [class*="mobile reversed"].row { - flex-direction: row-reverse; - } - - .ui[class*="mobile vertically reversed"].grid, - .ui.stackable[class*="mobile reversed"] { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #3B3C3E; - } - - .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - -/* Tablet */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui[class*="tablet reversed"].grid, - .ui[class*="tablet reversed"].grid > .row, - .ui.grid > [class*="tablet reversed"].row { - flex-direction: row-reverse; - } - - .ui[class*="tablet vertically reversed"].grid { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #3B3C3E; - } - - .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - -/* Computer */ - -@media only screen and (min-width: 992px) { - .ui[class*="computer reversed"].grid, - .ui[class*="computer reversed"].grid > .row, - .ui.grid > [class*="computer reversed"].row { - flex-direction: row-reverse; - } - - .ui[class*="computer vertically reversed"].grid { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before { - box-shadow: 0px -1px 0px 0px rgba(24, 26, 28, 0.45); - } - - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="computer reversed"].celled.grid > .row > .column:first-child { - box-shadow: -1px 0px 0px 0px #3B3C3E; - } - - .ui[class*="computer reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - -/*------------------- - Doubling ---------------------*/ - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.doubling.grid { - width: auto; - } - - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - display: inline-block !important; - padding-top: 1rem !important; - padding-bottom: 1rem !important; - box-shadow: none !important; - margin: 0em; - } - - .ui[class*="two column"].doubling.grid > .row > .column, - .ui[class*="two column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling.row.row > .column { - width: 100% !important; - } - - .ui[class*="three column"].doubling.grid > .row > .column, - .ui[class*="three column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling.row.row > .column { - width: 50% !important; - } - - .ui[class*="four column"].doubling.grid > .row > .column, - .ui[class*="four column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling.row.row > .column { - width: 50% !important; - } - - .ui[class*="five column"].doubling.grid > .row > .column, - .ui[class*="five column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="six column"].doubling.grid > .row > .column, - .ui[class*="six column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="seven column"].doubling.grid > .row > .column, - .ui[class*="seven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="eight column"].doubling.grid > .row > .column, - .ui[class*="eight column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling.row.row > .column { - width: 25% !important; - } - - .ui[class*="nine column"].doubling.grid > .row > .column, - .ui[class*="nine column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling.row.row > .column { - width: 25% !important; - } - - .ui[class*="ten column"].doubling.grid > .row > .column, - .ui[class*="ten column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling.row.row > .column { - width: 20% !important; - } - - .ui[class*="eleven column"].doubling.grid > .row > .column, - .ui[class*="eleven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling.row.row > .column { - width: 20% !important; - } - - .ui[class*="twelve column"].doubling.grid > .row > .column, - .ui[class*="twelve column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling.row.row > .column { - width: 16.66666667% !important; - } - - .ui[class*="thirteen column"].doubling.grid > .row > .column, - .ui[class*="thirteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling.row.row > .column { - width: 16.66666667% !important; - } - - .ui[class*="fourteen column"].doubling.grid > .row > .column, - .ui[class*="fourteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling.row.row > .column { - width: 14.28571429% !important; - } - - .ui[class*="fifteen column"].doubling.grid > .row > .column, - .ui[class*="fifteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling.row.row > .column { - width: 14.28571429% !important; - } - - .ui[class*="sixteen column"].doubling.grid > .row > .column, - .ui[class*="sixteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling.row.row > .column { - width: 12.5% !important; - } -} - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - margin: 0em !important; - box-shadow: none !important; - } - - .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column { - width: 100% !important; - } - - .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } - - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } - - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.grid { - width: auto; - margin-left: 0em !important; - margin-right: 0em !important; - } - - .ui.stackable.grid > .row > .wide.column, - .ui.stackable.grid > .wide.column, - .ui.stackable.grid > .column.grid > .column, - .ui.stackable.grid > .column.row > .column, - .ui.stackable.grid > .row > .column, - .ui.stackable.grid > .column:not(.row), - .ui.grid > .stackable.stackable.row > .column { - width: 100% !important; - margin: 0em 0em !important; - box-shadow: none !important; - padding: 1rem 1rem !important; - } - - .ui.stackable.grid:not(.vertically) > .row { - margin: 0em; - padding: 0em; - } - - /* Coupling */ - - .ui.container > .ui.stackable.grid > .column, - .ui.container > .ui.stackable.grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } - - /* Don't pad inside segment or nested grid */ - - .ui.grid .ui.stackable.grid, - .ui.segment:not(.vertical) .ui.stackable.page.grid { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - - /* Divided Stackable */ - - .ui.stackable.divided.grid > .row:first-child > .column:first-child, - .ui.stackable.celled.grid > .row:first-child > .column:first-child, - .ui.stackable.divided.grid > .column:not(.row):first-child, - .ui.stackable.celled.grid > .column:not(.row):first-child { - border-top: none !important; - } - - .ui.inverted.stackable.celled.grid > .column:not(.row), - .ui.inverted.stackable.divided.grid > .column:not(.row), - .ui.inverted.stackable.celled.grid > .row > .column, - .ui.inverted.stackable.divided.grid > .row > .column { - border-top: 1px solid rgba(0, 0, 0, 0.1); - } - - .ui.stackable.celled.grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.celled.grid > .row > .column, - .ui.stackable.divided:not(.vertically).grid > .row > .column { - border-top: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: none !important; - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - - .ui.stackable.celled.grid > .row { - box-shadow: none !important; - } - - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } -} - -/*---------------------- - Only (Device) ------------------------*/ - -/* These include arbitrary class repetitions for forced specificity */ - -/* Mobile Only Hide */ - -@media only screen and (max-width: 767px) { - .ui[class*="tablet only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="computer only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Tablet Only Hide */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui[class*="mobile only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) { - display: none !important; - } - - .ui[class*="computer only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Computer Only Hide */ - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Large Screen Only Hide */ - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Widescreen Only Hide */ - -@media only screen and (min-width: 1920px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/* - * # Semantic - Menu - * http://github.com/semantic-org/semantic-ui/ - * - * - * Copyright 2015 Contributor - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.menu { - display: flex; - margin: 1rem 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - background: #2E3235; - font-weight: normal; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; - min-height: 2.85714286em; -} - -.ui.menu:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.menu:first-child { - margin-top: 0rem; -} - -.ui.menu:last-child { - margin-bottom: 0rem; -} - -/*-------------- - Sub-Menu ----------------*/ - -.ui.menu .menu { - margin: 0em; -} - -.ui.menu:not(.vertical) > .menu { - display: flex; -} - -/*-------------- - Item ----------------*/ - -.ui.menu:not(.vertical) .item { - display: flex; - align-items: center; -} - -.ui.menu .item { - position: relative; - vertical-align: middle; - line-height: 1; - text-decoration: none; - -webkit-tap-highlight-color: transparent; - flex: 0 0 auto; - user-select: none; - background: none; - padding: 0.92857143em 1.14285714em; - text-transform: none; - color: #DDDDDD; - font-weight: normal; - transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease; -} - -.ui.menu > .item:first-child { - border-radius: 0.35714286rem 0px 0px 0.35714286rem; -} - -/* Border */ - -.ui.menu .item:before { - position: absolute; - content: ''; - top: 0%; - right: 0px; - height: 100%; - width: 1px; - background: rgba(24, 26, 28, 0.1); -} - -/*-------------- - Text Content ----------------*/ - -.ui.menu .text.item > *, -.ui.menu .item > a:not(.ui), -.ui.menu .item > p:only-child { - user-select: text; - line-height: 1.3; -} - -.ui.menu .item > p:first-child { - margin-top: 0; -} - -.ui.menu .item > p:last-child { - margin-bottom: 0; -} - -/*-------------- - Icons ----------------*/ - -.ui.menu .item > i.icon { - opacity: 0.9; - float: none; - margin: 0em 0.35714286em 0em 0em; -} - -/*-------------- - Button ----------------*/ - -.ui.menu:not(.vertical) .item > .button { - position: relative; - top: 0em; - margin: -0.5em 0em; - padding-bottom: 0.78571429em; - padding-top: 0.78571429em; - font-size: 1em; -} - -/*---------------- - Grid / Container ------------------*/ - -.ui.menu > .grid, -.ui.menu > .container { - display: flex; - align-items: inherit; - flex-direction: inherit; -} - -/*-------------- - Inputs ----------------*/ - -.ui.menu .item > .input { - width: 100%; -} - -.ui.menu:not(.vertical) .item > .input { - position: relative; - top: 0em; - margin: -0.5em 0em; -} - -.ui.menu .item > .input input { - font-size: 1em; - padding-top: 0.57142857em; - padding-bottom: 0.57142857em; -} - -/*-------------- - Header ----------------*/ - -.ui.menu .header.item, -.ui.vertical.menu .header.item { - margin: 0em; - background: ''; - text-transform: normal; - font-weight: 600; -} - -.ui.vertical.menu .item > .header:not(.ui) { - margin: 0em 0em 0.5em; - font-size: 1em; - font-weight: 600; -} - -/*-------------- - Dropdowns ----------------*/ - -/* Dropdown Icon */ - -.ui.menu .item > i.dropdown.icon { - padding: 0em; - float: right; - margin: 0em 0em 0em 1em; -} - -/* Menu */ - -.ui.menu .dropdown.item .menu { - min-width: calc(100% - 1px); - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - background: #2E3235; - margin: 0em 0px 0px; - box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - flex-direction: column !important; -} - -/* Menu Items */ - -.ui.menu .ui.dropdown .menu > .item { - margin: 0; - text-align: left; - font-size: 1em !important; - padding: 0.78571429em 1.14285714em !important; - background: transparent !important; - color: #DDDDDD !important; - text-transform: none !important; - font-weight: normal !important; - box-shadow: none !important; - transition: none !important; -} - -.ui.menu .ui.dropdown .menu > .item:hover { - background: rgba(255, 255, 255, 0.05) !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.menu .ui.dropdown .menu > .selected.item { - background: rgba(255, 255, 255, 0.05) !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.menu .ui.dropdown .menu > .active.item { - background: rgba(255, 255, 255, 0.03) !important; - font-weight: 600 !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.menu .ui.dropdown.item .menu .item:not(.filtered) { - display: block; -} - -.ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) { - display: inline-block; - font-size: 1em !important; - float: none; - margin: 0em 0.75em 0em 0em !important; -} - -/* Secondary */ - -.ui.secondary.menu .dropdown.item > .menu, -.ui.text.menu .dropdown.item > .menu { - border-radius: 0.35714286rem; - margin-top: 0.35714286em; -} - -/* Pointing */ - -.ui.menu .pointing.dropdown.item .menu { - margin-top: 0.75em; -} - -/* Inverted */ - -.ui.inverted.menu .search.dropdown.item > .search, -.ui.inverted.menu .search.dropdown.item > .text { - color: rgba(0, 0, 0, 0.9); -} - -/* Vertical */ - -.ui.vertical.menu .dropdown.item > .icon { - float: right; - content: "\f0da"; - margin-left: 1em; -} - -.ui.vertical.menu .dropdown.item .menu { - left: 100%; - min-width: 0; - margin: 0em 0em 0em 0em; - box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0.35714286rem 0.35714286rem 0.35714286rem; -} - -.ui.vertical.menu .dropdown.item.upward .menu { - bottom: 0; -} - -.ui.vertical.menu .dropdown.item:not(.upward) .menu { - top: 0; -} - -.ui.vertical.menu .active.dropdown.item { - border-top-right-radius: 0em; - border-bottom-right-radius: 0em; -} - -.ui.vertical.menu .dropdown.active.item { - box-shadow: none; -} - -/* Evenly Divided */ - -.ui.item.menu .dropdown .menu .item { - width: 100%; -} - -/*-------------- - Labels ----------------*/ - -.ui.menu .item > .label { - background: #999999; - color: #2E3235; - margin-left: 1em; - padding: 0.3em 0.78571429em; -} - -.ui.vertical.menu .item > .label { - background: #999999; - color: #2E3235; - margin-top: -0.15em; - margin-bottom: -0.15em; - padding: 0.3em 0.78571429em; -} - -.ui.menu .item > .floating.label { - padding: 0.3em 0.78571429em; -} - -/*-------------- - Images ----------------*/ - -.ui.menu .item > img:not(.ui) { - display: inline-block; - vertical-align: middle; - margin: -0.3em 0em; - width: 2.5em; -} - -.ui.vertical.menu .item > img:not(.ui):only-child { - display: block; - max-width: 100%; - width: auto; -} - -/******************************* - Coupling -*******************************/ - -/*-------------- - List ----------------*/ - -/* Menu divider shouldnt apply */ - -.ui.menu .list .item:before { - background: none !important; -} - -/*-------------- - Sidebar ----------------*/ - -/* Show vertical dividers below last */ - -.ui.vertical.sidebar.menu > .item:first-child:before { - display: block !important; -} - -.ui.vertical.sidebar.menu > .item::before { - top: auto; - bottom: 0px; -} - -/*-------------- - Container ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.menu > .ui.container { - width: 100% !important; - margin-left: 0em !important; - margin-right: 0em !important; - } -} - -@media only screen and (min-width: 768px) { - .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child { - border-left: 1px solid rgba(24, 26, 28, 0.1); - } -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.link.menu .item:hover, -.ui.menu .dropdown.item:hover, -.ui.menu .link.item:hover, -.ui.menu a.item:hover { - cursor: pointer; - background: rgba(255, 255, 255, 0.03); - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Pressed ----------------*/ - -.ui.link.menu .item:active, -.ui.menu .link.item:active, -.ui.menu a.item:active { - background: rgba(255, 255, 255, 0.03); - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Active ----------------*/ - -.ui.menu .active.item { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); - font-weight: normal; - box-shadow: none; -} - -.ui.menu .active.item > i.icon { - opacity: 1; -} - -/*-------------- - Active Hover ----------------*/ - -.ui.menu .active.item:hover, -.ui.vertical.menu .active.item:hover { - background-color: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Disabled ----------------*/ - -.ui.menu .item.disabled, -.ui.menu .item.disabled:hover { - cursor: default !important; - background-color: transparent !important; - color: rgba(255, 255, 255, 0.2) !important; -} - -/******************************* - Types -*******************************/ - -/*------------------ -Floated Menu / Item --------------------*/ - -/* Left Floated */ - -.ui.menu:not(.vertical) .left.item, -.ui.menu:not(.vertical) :not(.dropdown) > .left.menu { - display: flex; - margin-right: auto !important; -} - -/* Right Floated */ - -.ui.menu:not(.vertical) .right.item, -.ui.menu:not(.vertical) .right.menu { - display: flex; - margin-left: auto !important; -} - -/* Swapped Borders */ - -.ui.menu .right.item::before, -.ui.menu .right.menu > .item::before { - right: auto; - left: 0; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.menu { - display: block; - flex-direction: column; - background: rgba(46, 50, 53, 0.7); - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -/*--- Item ---*/ - -.ui.vertical.menu .item { - display: block; - background: none; - border-top: none; - border-right: none; -} - -.ui.vertical.menu > .item:first-child { - border-radius: 0.35714286rem 0.35714286rem 0px 0px; -} - -.ui.vertical.menu > .item:last-child { - border-radius: 0px 0px 0.35714286rem 0.35714286rem; -} - -/*--- Label ---*/ - -.ui.vertical.menu .item > .label { - float: right; - text-align: center; -} - -/*--- Icon ---*/ - -.ui.vertical.menu .item > i.icon { - width: 1.18em; - float: right; - margin: 0em 0em 0em 0.5em; -} - -.ui.vertical.menu .item > .label + i.icon { - float: none; - margin: 0em 0.5em 0em 0em; -} - -/*--- Border ---*/ - -.ui.vertical.menu .item:before { - position: absolute; - content: ''; - top: 0%; - left: 0px; - width: 100%; - height: 1px; - background: rgba(24, 26, 28, 0.1); -} - -.ui.vertical.menu .item:first-child:before { - display: none !important; -} - -/*--- Sub Menu ---*/ - -.ui.vertical.menu .item > .menu { - margin: 0.5em -1.14285714em 0em; -} - -.ui.vertical.menu .menu .item { - background: none; - padding: 0.5em 1.33333333em; - font-size: 0.85714286em; - color: rgba(0, 0, 0, 0.5); -} - -.ui.vertical.menu .item .menu a.item:hover, -.ui.vertical.menu .item .menu .link.item:hover { - color: rgba(255, 255, 255, 0.95); -} - -.ui.vertical.menu .menu .item:before { - display: none; -} - -/* Vertical Active */ - -.ui.vertical.menu .active.item { - background: rgba(255, 255, 255, 0.05); - border-radius: 0em; - box-shadow: none; -} - -.ui.vertical.menu > .active.item:first-child { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.vertical.menu > .active.item:last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.vertical.menu > .active.item:only-child { - border-radius: 0.35714286rem; -} - -.ui.vertical.menu .active.item .menu .active.item { - border-left: none; -} - -.ui.vertical.menu .item .menu .active.item { - background-color: transparent; - font-weight: 600; - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Tabular ----------------*/ - -.ui.tabular.menu { - border-radius: 0em; - box-shadow: none !important; - border: none; - background: none transparent; - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.tabular.fluid.menu { - width: calc(100% + (1px * 2)) !important; -} - -.ui.tabular.menu .item { - background: transparent; - border-bottom: none; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-top: 2px solid transparent; - padding: 0.92857143em 1.42857143em; - color: #DDDDDD; -} - -.ui.tabular.menu .item:before { - display: none; -} - -/* Hover */ - -.ui.tabular.menu .item:hover { - background-color: transparent; - color: rgba(255, 255, 255, 0.8); -} - -/* Active */ - -.ui.tabular.menu .active.item { - background: none #2E3235; - color: rgba(255, 255, 255, 0.95); - border-top-width: 1px; - border-color: rgba(24, 26, 28, 0.45); - font-weight: 600; - margin-bottom: -1px; - box-shadow: none; - border-radius: 0.35714286rem 0.35714286rem 0px 0px !important; -} - -/* Coupling with segment for attachment */ - -.ui.tabular.menu + .attached:not(.top).segment, -.ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment { - border-top: none; - margin-left: 0px; - margin-top: 0px; - margin-right: 0px; - width: 100%; -} - -.top.attached.segment + .ui.bottom.tabular.menu { - position: relative; - width: calc(100% + (1px * 2)); - left: -1px; -} - -/* Bottom Vertical Tabular */ - -.ui.bottom.tabular.menu { - background: none transparent; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.bottom.tabular.menu .item { - background: none; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: none; -} - -.ui.bottom.tabular.menu .active.item { - background: none #2E3235; - color: rgba(255, 255, 255, 0.95); - border-color: rgba(24, 26, 28, 0.45); - margin: -1px 0px 0px 0px; - border-radius: 0px 0px 0.35714286rem 0.35714286rem !important; -} - -/* Vertical Tabular (Left) */ - -.ui.vertical.tabular.menu { - background: none transparent; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-right: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.vertical.tabular.menu .item { - background: none; - border-left: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: 1px solid transparent; - border-right: none; -} - -.ui.vertical.tabular.menu .active.item { - background: none #2E3235; - color: rgba(255, 255, 255, 0.95); - border-color: rgba(24, 26, 28, 0.45); - margin: 0px -1px 0px 0px; - border-radius: 0.35714286rem 0px 0px 0.35714286rem !important; -} - -/* Vertical Right Tabular */ - -.ui.vertical.right.tabular.menu { - background: none transparent; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-right: none; - border-left: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.vertical.right.tabular.menu .item { - background: none; - border-right: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: 1px solid transparent; - border-left: none; -} - -.ui.vertical.right.tabular.menu .active.item { - background: none #2E3235; - color: rgba(255, 255, 255, 0.95); - border-color: rgba(24, 26, 28, 0.45); - margin: 0px 0px 0px -1px; - border-radius: 0px 0.35714286rem 0.35714286rem 0px !important; -} - -/* Dropdown */ - -.ui.tabular.menu .active.dropdown.item { - margin-bottom: 0px; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-top: 2px solid transparent; - border-bottom: none; -} - -/*-------------- - Pagination ----------------*/ - -.ui.pagination.menu { - margin: 0em; - display: inline-flex; - vertical-align: middle; -} - -.ui.pagination.menu .item:last-child { - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -.ui.pagination.menu .item:last-child:before { - display: none; -} - -.ui.pagination.menu .item { - min-width: 3em; - text-align: center; -} - -.ui.pagination.menu .icon.item i.icon { - vertical-align: top; -} - -/* Active */ - -.ui.pagination.menu .active.item { - border-top: none; - padding-top: 0.92857143em; - background-color: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); - box-shadow: none; -} - -/*-------------- - Secondary ----------------*/ - -.ui.secondary.menu { - background: none; - margin-left: -0.35714286em; - margin-right: -0.35714286em; - border-radius: 0em; - border: none; - box-shadow: none; -} - -/* Item */ - -.ui.secondary.menu .item { - align-self: center; - box-shadow: none; - border: none; - padding: 0.78571429em 0.92857143em; - margin: 0em 0.35714286em; - background: none; - transition: color 0.1s ease; - border-radius: 0.35714286rem; -} - -/* No Divider */ - -.ui.secondary.menu .item:before { - display: none !important; -} - -/* Header */ - -.ui.secondary.menu .header.item { - border-radius: 0em; - border-right: none; - background: none transparent; -} - -/* Image */ - -.ui.secondary.menu .item > img:not(.ui) { - margin: 0em; -} - -/* Hover */ - -.ui.secondary.menu .dropdown.item:hover, -.ui.secondary.menu .link.item:hover, -.ui.secondary.menu a.item:hover { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -/* Active */ - -.ui.secondary.menu .active.item { - box-shadow: none; - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); - border-radius: 0.35714286rem; -} - -/* Active Hover */ - -.ui.secondary.menu .active.item:hover { - box-shadow: none; - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -/* Inverted */ - -.ui.secondary.inverted.menu .link.item, -.ui.secondary.inverted.menu a.item { - color: rgba(0, 0, 0, 0.7) !important; -} - -.ui.secondary.inverted.menu .dropdown.item:hover, -.ui.secondary.inverted.menu .link.item:hover, -.ui.secondary.inverted.menu a.item:hover { - background: rgba(0, 0, 0, 0.08); - color: #000000 !important; -} - -.ui.secondary.inverted.menu .active.item { - background: rgba(0, 0, 0, 0.15); - color: #000000 !important; -} - -/* Fix item margins */ - -.ui.secondary.item.menu { - margin-left: 0em; - margin-right: 0em; -} - -.ui.secondary.item.menu .item:last-child { - margin-right: 0em; -} - -.ui.secondary.attached.menu { - box-shadow: none; -} - -/* Sub Menu */ - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu { - margin: 0em -0.92857143em; -} - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 1.33333333em; -} - -/*--------------------- - Secondary Vertical ------------------------*/ - -.ui.secondary.vertical.menu > .item { - border: none; - margin: 0em 0em 0.35714286em; - border-radius: 0.35714286rem !important; -} - -.ui.secondary.vertical.menu > .header.item { - border-radius: 0em; -} - -/* Sub Menu */ - -.ui.vertical.secondary.menu .item > .menu .item { - background-color: transparent; -} - -/* Inverted */ - -.ui.secondary.inverted.menu { - background-color: transparent; -} - -/*--------------------- - Secondary Pointing ------------------------*/ - -.ui.secondary.pointing.menu { - margin-left: 0em; - margin-right: 0em; - border-bottom: 2px solid rgba(24, 26, 28, 0.45); -} - -.ui.secondary.pointing.menu .item { - border-bottom-color: transparent; - border-bottom-style: solid; - border-radius: 0em; - align-self: flex-end; - margin: 0em 0em -2px; - padding: 0.85714286em 1.14285714em; - border-bottom-width: 2px; - transition: color 0.1s ease; -} - -/* Item Types */ - -.ui.secondary.pointing.menu .header.item { - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.secondary.pointing.menu .text.item { - box-shadow: none !important; -} - -.ui.secondary.pointing.menu .item:after { - display: none; -} - -/* Hover */ - -.ui.secondary.pointing.menu .dropdown.item:hover, -.ui.secondary.pointing.menu .link.item:hover, -.ui.secondary.pointing.menu a.item:hover { - background-color: transparent; - color: #DDDDDD; -} - -/* Pressed */ - -.ui.secondary.pointing.menu .dropdown.item:active, -.ui.secondary.pointing.menu .link.item:active, -.ui.secondary.pointing.menu a.item:active { - background-color: transparent; - border-color: rgba(24, 26, 28, 0.45); -} - -/* Active */ - -.ui.secondary.pointing.menu .active.item { - background-color: transparent; - box-shadow: none; - border-color: #F9FAFB; - font-weight: 600; - color: rgba(255, 255, 255, 0.95); -} - -/* Active Hover */ - -.ui.secondary.pointing.menu .active.item:hover { - border-color: #F9FAFB; - color: rgba(255, 255, 255, 0.95); -} - -/* Active Dropdown */ - -.ui.secondary.pointing.menu .active.dropdown.item { - border-color: transparent; -} - -/* Vertical Pointing */ - -.ui.secondary.vertical.pointing.menu { - border-bottom-width: 0px; - border-right-width: 2px; - border-right-style: solid; - border-right-color: rgba(24, 26, 28, 0.45); -} - -.ui.secondary.vertical.pointing.menu .item { - border-bottom: none; - border-right-style: solid; - border-right-color: transparent; - border-radius: 0em !important; - margin: 0em -2px 0em 0em; - border-right-width: 2px; -} - -/* Vertical Active */ - -.ui.secondary.vertical.pointing.menu .active.item { - border-color: #F9FAFB; -} - -/* Inverted */ - -.ui.secondary.inverted.pointing.menu { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.secondary.inverted.pointing.menu { - border-width: 2px; - border-color: rgba(24, 26, 28, 0.45); -} - -.ui.secondary.inverted.pointing.menu .item { - color: rgba(0, 0, 0, 0.9); -} - -.ui.secondary.inverted.pointing.menu .header.item { - color: #2E3235 !important; -} - -/* Hover */ - -.ui.secondary.inverted.pointing.menu .link.item:hover, -.ui.secondary.inverted.pointing.menu a.item:hover { - color: rgba(255, 255, 255, 0.95); -} - -/* Active */ - -.ui.secondary.inverted.pointing.menu .active.item { - border-color: #2E3235; - color: #000000; -} - -/*-------------- - Text Menu ----------------*/ - -.ui.text.menu { - background: none transparent; - border-radius: 0px; - box-shadow: none; - border: none; - margin: 1em -0.5em; -} - -.ui.text.menu .item { - border-radius: 0px; - box-shadow: none; - align-self: center; - margin: 0em 0em; - padding: 0.35714286em 0.5em; - font-weight: normal; - color: rgba(255, 255, 255, 0.6); - transition: opacity 0.1s ease; -} - -/* Border */ - -.ui.text.menu .item:before, -.ui.text.menu .menu .item:before { - display: none !important; -} - -/* Header */ - -.ui.text.menu .header.item { - background-color: transparent; - opacity: 1; - color: rgba(255, 255, 255, 0.95); - font-size: 0.92857143em; - text-transform: uppercase; - font-weight: 600; -} - -/* Image */ - -.ui.text.menu .item > img:not(.ui) { - margin: 0em; -} - -/*--- fluid text ---*/ - -.ui.text.item.menu .item { - margin: 0em; -} - -/*--- vertical text ---*/ - -.ui.vertical.text.menu { - margin: 1em 0em; -} - -.ui.vertical.text.menu:first-child { - margin-top: 0rem; -} - -.ui.vertical.text.menu:last-child { - margin-bottom: 0rem; -} - -.ui.vertical.text.menu .item { - margin: 0.57142857em 0em; - padding-left: 0em; - padding-right: 0em; -} - -.ui.vertical.text.menu .item > i.icon { - float: none; - margin: 0em 0.35714286em 0em 0em; -} - -.ui.vertical.text.menu .header.item { - margin: 0.57142857em 0em 0.71428571em; -} - -/* Vertical Sub Menu */ - -.ui.vertical.text.menu .item:not(.dropdown) > .menu { - margin: 0em; -} - -.ui.vertical.text.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 0em; -} - -/*--- hover ---*/ - -.ui.text.menu .item:hover { - opacity: 1; - background-color: transparent; -} - -/*--- active ---*/ - -.ui.text.menu .active.item { - background-color: transparent; - border: none; - box-shadow: none; - font-weight: normal; - color: rgba(255, 255, 255, 0.95); -} - -/*--- active hover ---*/ - -.ui.text.menu .active.item:hover { - background-color: transparent; -} - -/* Disable Bariations */ - -.ui.text.pointing.menu .active.item:after { - box-shadow: none; -} - -.ui.text.attached.menu { - box-shadow: none; -} - -/* Inverted */ - -.ui.inverted.text.menu, -.ui.inverted.text.menu .item, -.ui.inverted.text.menu .item:hover, -.ui.inverted.text.menu .active.item { - background-color: transparent !important; -} - -/* Fluid */ - -.ui.fluid.text.menu { - margin-left: 0em; - margin-right: 0em; -} - -/*-------------- - Icon Only ----------------*/ - -/* Vertical Menu */ - -.ui.vertical.icon.menu { - display: inline-block; - width: auto; -} - -/* Item */ - -.ui.icon.menu .item { - height: auto; - text-align: center; - color: #F9FAFB; -} - -/* Icon */ - -.ui.icon.menu .item > .icon:not(.dropdown) { - margin: 0; - opacity: 1; -} - -/* Icon Gylph */ - -.ui.icon.menu .icon:before { - opacity: 1; -} - -/* (x) Item Icon */ - -.ui.menu .icon.item > .icon { - width: auto; - margin: 0em auto; -} - -/* Vertical Icon */ - -.ui.vertical.icon.menu .item > .icon:not(.dropdown) { - display: block; - opacity: 1; - margin: 0em auto; - float: none; -} - -/* Inverted */ - -.ui.inverted.icon.menu .item { - color: #2E3235; -} - -/*-------------- - Labeled Icon ----------------*/ - -/* Menu */ - -.ui.labeled.icon.menu { - text-align: center; -} - -/* Item */ - -.ui.labeled.icon.menu .item { - min-width: 6em; - flex-direction: column; -} - -/* Icon */ - -.ui.labeled.icon.menu .item > .icon:not(.dropdown) { - height: 1em; - display: block; - font-size: 1.71428571em !important; - margin: 0em auto 0.5rem !important; -} - -/* Fluid */ - -.ui.fluid.labeled.icon.menu > .item { - min-width: 0em; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.menu { - flex-direction: column; - } - - .ui.stackable.menu .item { - width: 100% !important; - } - - .ui.stackable.menu .item:before { - position: absolute; - content: ''; - top: auto; - bottom: 0px; - left: 0px; - width: 100%; - height: 1px; - background: rgba(24, 26, 28, 0.1); - } - - .ui.stackable.menu .left.menu, - .ui.stackable.menu .left.item { - margin-right: 0 !important; - } - - .ui.stackable.menu .right.menu, - .ui.stackable.menu .right.item { - margin-left: 0 !important; - } - - .ui.stackable.menu .right.menu, - .ui.stackable.menu .left.menu { - flex-direction: column; - } -} - -/*-------------- - Colors ----------------*/ - -/*--- Standard Colors ---*/ - -.ui.menu .red.active.item, -.ui.red.menu .active.item { - border-color: #DB2828 !important; - color: #DB2828 !important; -} - -.ui.menu .orange.active.item, -.ui.orange.menu .active.item { - border-color: #C06D36 !important; - color: #C06D36 !important; -} - -.ui.menu .yellow.active.item, -.ui.yellow.menu .active.item { - border-color: #FBBD08 !important; - color: #FBBD08 !important; -} - -.ui.menu .olive.active.item, -.ui.olive.menu .active.item { - border-color: #B5CC18 !important; - color: #B5CC18 !important; -} - -.ui.menu .green.active.item, -.ui.green.menu .active.item { - border-color: #21BA45 !important; - color: #21BA45 !important; -} - -.ui.menu .teal.active.item, -.ui.teal.menu .active.item { - border-color: #00B5AD !important; - color: #00B5AD !important; -} - -.ui.menu .blue.active.item, -.ui.blue.menu .active.item { - border-color: #2185D0 !important; - color: #2185D0 !important; -} - -.ui.menu .violet.active.item, -.ui.violet.menu .active.item { - border-color: #6435C9 !important; - color: #6435C9 !important; -} - -.ui.menu .purple.active.item, -.ui.purple.menu .active.item { - border-color: #A333C8 !important; - color: #A333C8 !important; -} - -.ui.menu .pink.active.item, -.ui.pink.menu .active.item { - border-color: #E03997 !important; - color: #E03997 !important; -} - -.ui.menu .brown.active.item, -.ui.brown.menu .active.item { - border-color: #A5673F !important; - color: #A5673F !important; -} - -.ui.menu .grey.active.item, -.ui.grey.menu .active.item { - border-color: #767676 !important; - color: #767676 !important; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.menu { - border: 0px solid transparent; - background: #F9FAFB; - box-shadow: none; -} - -/* Menu Item */ - -.ui.inverted.menu .item, -.ui.inverted.menu .item > a:not(.ui) { - background: transparent; - color: rgba(0, 0, 0, 0.9); -} - -.ui.inverted.menu .item.menu { - background: transparent; -} - -/*--- Border ---*/ - -.ui.inverted.menu .item:before { - background: rgba(255, 255, 255, 0.08); -} - -.ui.vertical.inverted.menu .item:before { - background: rgba(255, 255, 255, 0.08); -} - -/* Sub Menu */ - -.ui.vertical.inverted.menu .menu .item, -.ui.vertical.inverted.menu .menu .item a:not(.ui) { - color: rgba(0, 0, 0, 0.5); -} - -/* Header */ - -.ui.inverted.menu .header.item { - margin: 0em; - background: transparent; - box-shadow: none; -} - -/* Disabled */ - -.ui.inverted.menu .item.disabled, -.ui.inverted.menu .item.disabled:hover { - color: rgba(0, 0, 0, 0.2); -} - -/*--- Hover ---*/ - -.ui.link.inverted.menu .item:hover, -.ui.inverted.menu .dropdown.item:hover, -.ui.inverted.menu .link.item:hover, -.ui.inverted.menu a.item:hover { - background: rgba(0, 0, 0, 0.08); - color: #000000; -} - -.ui.vertical.inverted.menu .item .menu a.item:hover, -.ui.vertical.inverted.menu .item .menu .link.item:hover { - background: transparent; - color: #000000; -} - -/*--- Pressed ---*/ - -.ui.inverted.menu a.item:active, -.ui.inverted.menu .link.item:active { - background: rgba(0, 0, 0, 0.08); - color: #000000; -} - -/*--- Active ---*/ - -.ui.inverted.menu .active.item { - background: rgba(0, 0, 0, 0.15); - color: #000000 !important; -} - -.ui.inverted.vertical.menu .item .menu .active.item { - background: transparent; - color: #2E3235; -} - -.ui.inverted.pointing.menu .active.item:after { - background: #3D3E3F !important; - margin: 0em !important; - box-shadow: none !important; - border: none !important; -} - -/*--- Active Hover ---*/ - -.ui.inverted.menu .active.item:hover { - background: rgba(0, 0, 0, 0.15); - color: #2E3235 !important; -} - -.ui.inverted.pointing.menu .active.item:hover:after { - background: #3D3E3F !important; -} - -/*-------------- - Floated ----------------*/ - -.ui.floated.menu { - float: left; - margin: 0rem 0.5rem 0rem 0rem; -} - -.ui.floated.menu .item:last-child:before { - display: none; -} - -.ui.right.floated.menu { - float: right; - margin: 0rem 0rem 0rem 0.5rem; -} - -/*-------------- - Inverted ----------------*/ - -/* Red */ - -.ui.inverted.menu .red.active.item, -.ui.inverted.red.menu { - background-color: #DB2828; -} - -.ui.inverted.red.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.red.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Orange */ - -.ui.inverted.menu .orange.active.item, -.ui.inverted.orange.menu { - background-color: #C06D36; -} - -.ui.inverted.orange.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.orange.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Yellow */ - -.ui.inverted.menu .yellow.active.item, -.ui.inverted.yellow.menu { - background-color: #FBBD08; -} - -.ui.inverted.yellow.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.yellow.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Olive */ - -.ui.inverted.menu .olive.active.item, -.ui.inverted.olive.menu { - background-color: #B5CC18; -} - -.ui.inverted.olive.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.olive.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Green */ - -.ui.inverted.menu .green.active.item, -.ui.inverted.green.menu { - background-color: #21BA45; -} - -.ui.inverted.green.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.green.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Teal */ - -.ui.inverted.menu .teal.active.item, -.ui.inverted.teal.menu { - background-color: #00B5AD; -} - -.ui.inverted.teal.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.teal.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Blue */ - -.ui.inverted.menu .blue.active.item, -.ui.inverted.blue.menu { - background-color: #2185D0; -} - -.ui.inverted.blue.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.blue.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Violet */ - -.ui.inverted.menu .violet.active.item, -.ui.inverted.violet.menu { - background-color: #6435C9; -} - -.ui.inverted.violet.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.violet.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Purple */ - -.ui.inverted.menu .purple.active.item, -.ui.inverted.purple.menu { - background-color: #A333C8; -} - -.ui.inverted.purple.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.purple.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Pink */ - -.ui.inverted.menu .pink.active.item, -.ui.inverted.pink.menu { - background-color: #E03997; -} - -.ui.inverted.pink.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.pink.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Brown */ - -.ui.inverted.menu .brown.active.item, -.ui.inverted.brown.menu { - background-color: #A5673F; -} - -.ui.inverted.brown.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.brown.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/* Grey */ - -.ui.inverted.menu .grey.active.item, -.ui.inverted.grey.menu { - background-color: #767676; -} - -.ui.inverted.grey.menu .item:before { - background-color: rgba(24, 26, 28, 0.1); -} - -.ui.inverted.grey.menu .active.item { - background-color: rgba(255, 255, 255, 0.1) !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.menu .item, -.ui.fitted.menu .item .menu .item, -.ui.menu .fitted.item { - padding: 0em; -} - -.ui.horizontally.fitted.menu .item, -.ui.horizontally.fitted.menu .item .menu .item, -.ui.menu .horizontally.fitted.item { - padding-top: 0.92857143em; - padding-bottom: 0.92857143em; -} - -.ui.vertically.fitted.menu .item, -.ui.vertically.fitted.menu .item .menu .item, -.ui.menu .vertically.fitted.item { - padding-left: 1.14285714em; - padding-right: 1.14285714em; -} - -/*-------------- - Borderless ----------------*/ - -.ui.borderless.menu .item:before, -.ui.borderless.menu .item .menu .item:before, -.ui.menu .borderless.item:before { - background: none !important; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.menu { - display: inline-flex; - margin: 0em; - vertical-align: middle; -} - -.ui.compact.vertical.menu { - display: inline-block; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.35714286rem 0.35714286rem 0em; -} - -.ui.compact.menu .item:last-child:before { - display: none; -} - -.ui.compact.vertical.menu { - width: auto !important; -} - -.ui.compact.vertical.menu .item:last-child::before { - display: block; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.menu.fluid, -.ui.vertical.menu.fluid { - width: 100% !important; -} - -/*------------------- - Evenly Sized ---------------------*/ - -.ui.item.menu, -.ui.item.menu .item { - width: 100%; - padding-left: 0em !important; - padding-right: 0em !important; - margin-left: 0em !important; - margin-right: 0em !important; - text-align: center; - justify-content: center; -} - -.ui.attached.item.menu { - margin: 0em -1px !important; -} - -.ui.item.menu .item:last-child:before { - display: none; -} - -.ui.menu.two.item .item { - width: 50%; -} - -.ui.menu.three.item .item { - width: 33.333%; -} - -.ui.menu.four.item .item { - width: 25%; -} - -.ui.menu.five.item .item { - width: 20%; -} - -.ui.menu.six.item .item { - width: 16.666%; -} - -.ui.menu.seven.item .item { - width: 14.285%; -} - -.ui.menu.eight.item .item { - width: 12.5%; -} - -.ui.menu.nine.item .item { - width: 11.11%; -} - -.ui.menu.ten.item .item { - width: 10%; -} - -.ui.menu.eleven.item .item { - width: 9.09%; -} - -.ui.menu.twelve.item .item { - width: 8.333%; -} - -/*-------------- - Fixed ----------------*/ - -.ui.menu.fixed { - position: fixed; - z-index: 101; - margin: 0em; - width: 100%; -} - -.ui.menu.fixed, -.ui.menu.fixed .item:first-child, -.ui.menu.fixed .item:last-child { - border-radius: 0px !important; -} - -.ui.fixed.menu, -.ui[class*="top fixed"].menu { - top: 0px; - left: 0px; - right: auto; - bottom: auto; -} - -.ui[class*="top fixed"].menu { - border-top: none; - border-left: none; - border-right: none; -} - -.ui[class*="right fixed"].menu { - border-top: none; - border-bottom: none; - border-right: none; - top: 0px; - right: 0px; - left: auto; - bottom: auto; - width: auto; - height: 100%; -} - -.ui[class*="bottom fixed"].menu { - border-bottom: none; - border-left: none; - border-right: none; - bottom: 0px; - left: 0px; - top: auto; - right: auto; -} - -.ui[class*="left fixed"].menu { - border-top: none; - border-bottom: none; - border-left: none; - top: 0px; - left: 0px; - right: auto; - bottom: auto; - width: auto; - height: 100%; -} - -/* Coupling with Grid */ - -.ui.fixed.menu + .ui.grid { - padding-top: 2.75rem; -} - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.menu .item:after { - visibility: hidden; - position: absolute; - content: ''; - top: 100%; - left: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - background: none; - margin: 0.5px 0em 0em; - width: 0.57142857em; - height: 0.57142857em; - border: none; - border-bottom: 1px solid #3B3C3E; - border-right: 1px solid #3B3C3E; - z-index: 2; - transition: background 0.1s ease; -} - -.ui.vertical.pointing.menu .item:after { - position: absolute; - top: 50%; - right: 0%; - bottom: auto; - left: auto; - transform: translateX(50%) translateY(-50%) rotate(45deg); - margin: 0em -0.5px 0em 0em; - border: none; - border-top: 1px solid #3B3C3E; - border-right: 1px solid #3B3C3E; -} - -/* Active */ - -.ui.pointing.menu .active.item:after { - visibility: visible; -} - -.ui.pointing.menu .active.dropdown.item:after { - visibility: hidden; -} - -/* Don't double up pointers */ - -.ui.pointing.menu .dropdown.active.item:after, -.ui.pointing.menu .active.item .menu .active.item:after { - display: none; -} - -/* Colors */ - -.ui.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.pointing.menu .active.item:after { - background-color: #F2F2F2; -} - -.ui.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .active.item:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .menu .active.item:after { - background-color: #2E3235; -} - -/*-------------- - Attached ----------------*/ - -/* Middle */ - -.ui.attached.menu { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% - (-1px * 2)); - max-width: calc(100% - (-1px * 2)); - box-shadow: none; -} - -.ui.attached + .ui.attached.menu:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].menu { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.menu[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].menu { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui[class*="bottom attached"].menu:last-child { - margin-bottom: 0em; -} - -/* Attached Menu Item */ - -.ui.top.attached.menu > .item:first-child { - border-radius: 0.35714286rem 0em 0em 0em; -} - -.ui.bottom.attached.menu > .item:first-child { - border-radius: 0em 0em 0em 0.35714286rem; -} - -/* Tabular Attached */ - -.ui.attached.menu:not(.tabular) { - border: 1px solid #3B3C3E; -} - -.ui.attached.inverted.menu { - border: none; -} - -.ui.attached.tabular.menu { - margin-left: 0; - margin-right: 0; - width: 100%; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ - -.ui.mini.menu { - font-size: 0.78571429rem; -} - -.ui.mini.vertical.menu { - width: 9rem; -} - -/* Tiny */ - -.ui.tiny.menu { - font-size: 0.85714286rem; -} - -.ui.tiny.vertical.menu { - width: 11rem; -} - -/* Small */ - -.ui.small.menu { - font-size: 0.92857143rem; -} - -.ui.small.vertical.menu { - width: 13rem; -} - -/* Medium */ - -.ui.menu { - font-size: 1rem; -} - -.ui.vertical.menu { - width: 15rem; -} - -/* Large */ - -.ui.large.menu { - font-size: 1.07142857rem; -} - -.ui.large.vertical.menu { - width: 18rem; -} - -/* Huge */ - -.ui.huge.menu { - font-size: 1.21428571rem; -} - -.ui.huge.vertical.menu { - width: 22rem; -} - -/* Big */ - -.ui.big.menu { - font-size: 1.14285714rem; -} - -.ui.big.vertical.menu { - width: 20rem; -} - -/* Massive */ - -.ui.massive.menu { - font-size: 1.28571429rem; -} - -.ui.massive.vertical.menu { - width: 25rem; -} - -/******************************* - Theme Overrides -*******************************/ - -.ui.vertical.menu { - backdrop-filter: blur(10px); -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Message - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Message -*******************************/ - -.ui.message { - position: relative; - min-height: 1em; - margin: 1em 0em; - background: #4B5257; - padding: 1em 1.5em; - line-height: 1.4285em; - color: #DDDDDD; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; - border-radius: 0.35714286rem; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.message:first-child { - margin-top: 0em; -} - -.ui.message:last-child { - margin-bottom: 0em; -} - -/*-------------- - Content ----------------*/ - -/* Header */ - -.ui.message .header { - display: block; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-weight: 600; - margin: -0.14285714em 0em 0rem 0em; -} - -/* Default font size */ - -.ui.message .header:not(.ui) { - font-size: 1.14285714em; -} - -/* Paragraph */ - -.ui.message p { - opacity: 0.85; - margin: 0.75em 0em; -} - -.ui.message p:first-child { - margin-top: 0em; -} - -.ui.message p:last-child { - margin-bottom: 0em; -} - -.ui.message .header + p { - margin-top: 0.25em; -} - -/* List */ - -.ui.message .list:not(.ui) { - text-align: left; - padding: 0em; - opacity: 0.85; - list-style-position: inside; - margin: 0.5em 0em 0em; -} - -.ui.message .list:not(.ui):first-child { - margin-top: 0em; -} - -.ui.message .list:not(.ui):last-child { - margin-bottom: 0em; -} - -.ui.message .list:not(.ui) li { - position: relative; - list-style-type: none; - margin: 0em 0em 0.3em 1em; - padding: 0em; -} - -.ui.message .list:not(.ui) li:before { - position: absolute; - content: '•'; - left: -1em; - height: 100%; - vertical-align: baseline; -} - -.ui.message .list:not(.ui) li:last-child { - margin-bottom: 0em; -} - -/* Icon */ - -.ui.message > .icon { - margin-right: 0.6em; -} - -/* Close Icon */ - -.ui.message > .close.icon { - cursor: pointer; - position: absolute; - margin: 0em; - top: 0.78575em; - right: 0.5em; - opacity: 0.7; - transition: opacity 0.1s ease; -} - -.ui.message > .close.icon:hover { - opacity: 1; -} - -/* First / Last Element */ - -.ui.message > :first-child { - margin-top: 0em; -} - -.ui.message > :last-child { - margin-bottom: 0em; -} - -/******************************* - Coupling -*******************************/ - -.ui.dropdown .menu > .message { - margin: 0px -1px; -} - -/******************************* - States -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.visible.visible.visible.message { - display: block; -} - -.ui.icon.visible.visible.visible.visible.message { - display: flex; -} - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.hidden.hidden.hidden.message { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Compact ----------------*/ - -.ui.compact.message { - display: inline-block; -} - -.ui.compact.icon.message { - display: inline-flex; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.message { - margin-bottom: -1px; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; - box-shadow: 0em 0em 0em 1px rgba(24, 26, 28, 0.45) inset; - margin-left: -1px; - margin-right: -1px; -} - -.ui.attached + .ui.attached.message:not(.top):not(.bottom) { - margin-top: -1px; - border-radius: 0em; -} - -.ui.bottom.attached.message { - margin-top: -1px; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - box-shadow: 0em 0em 0em 1px rgba(24, 26, 28, 0.45) inset, 0px 1px 2px 0 rgba(24, 26, 28, 0.45); -} - -.ui.bottom.attached.message:not(:last-child) { - margin-bottom: 1em; -} - -.ui.attached.icon.message { - width: auto; -} - -/*-------------- - Icon ----------------*/ - -.ui.icon.message { - display: flex; - width: 100%; - align-items: center; -} - -.ui.icon.message > .icon:not(.close) { - display: block; - flex: 0 0 auto; - width: auto; - line-height: 1; - vertical-align: middle; - font-size: 3em; - opacity: 0.8; -} - -.ui.icon.message > .content { - display: block; - flex: 1 1 auto; - vertical-align: middle; -} - -.ui.icon.message .icon:not(.close) + .content { - padding-left: 0rem; -} - -.ui.icon.message .circular.icon { - width: 1em; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.message { - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*-------------- - Colors ----------------*/ - -.ui.black.message { - background-color: #F9FAFB; - color: rgba(0, 0, 0, 0.9); -} - -/*-------------- - Types ----------------*/ - -/* Positive */ - -.ui.positive.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.positive.message, -.ui.attached.positive.message { - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.positive.message .header { - color: #1A531B; -} - -/* Negative */ - -.ui.negative.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.negative.message, -.ui.attached.negative.message { - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.negative.message .header { - color: #912D2B; -} - -/* Info */ - -.ui.info.message { - background-color: #F8FFFF; - color: #276F86; -} - -.ui.info.message, -.ui.attached.info.message { - box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.info.message .header { - color: #0E566C; -} - -/* Warning */ - -.ui.warning.message { - background-color: #FFFAF3; - color: #573A08; -} - -.ui.warning.message, -.ui.attached.warning.message { - box-shadow: 0px 0px 0px 1px #794B02 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.warning.message .header { - color: #794B02; -} - -/* Error */ - -.ui.error.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.error.message, -.ui.attached.error.message { - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.error.message .header { - color: #912D2B; -} - -/* Success */ - -.ui.success.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.success.message, -.ui.attached.success.message { - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.success.message .header { - color: #1A531B; -} - -/* Colors */ - -.ui.inverted.message, -.ui.black.message { - background-color: #F9FAFB; - color: rgba(0, 0, 0, 0.9); -} - -.ui.red.message { - background-color: #FFE8E6; - color: #DB2828; - box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.red.message .header { - color: #c82121; -} - -.ui.orange.message { - background-color: #FFEDDE; - color: #C06D36; - box-shadow: 0px 0px 0px 1px #C06D36 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.orange.message .header { - color: #ac6230; -} - -.ui.yellow.message { - background-color: #FFF8DB; - color: #B58105; - box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.yellow.message .header { - color: #9c6f04; -} - -.ui.olive.message { - background-color: #FBFDEF; - color: #8ABC1E; - box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.olive.message .header { - color: #7aa61a; -} - -.ui.green.message { - background-color: #E5F9E7; - color: #1EBC30; - box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.green.message .header { - color: #1aa62a; -} - -.ui.teal.message { - background-color: #E1F7F7; - color: #10A3A3; - box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.teal.message .header { - color: #0e8c8c; -} - -.ui.blue.message { - background-color: #DFF0FF; - color: #2185D0; - box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.blue.message .header { - color: #1e77ba; -} - -.ui.violet.message { - background-color: #EAE7FF; - color: #6435C9; - box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.violet.message .header { - color: #5a30b5; -} - -.ui.purple.message { - background-color: #F6E7FF; - color: #A333C8; - box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.purple.message .header { - color: #922eb4; -} - -.ui.pink.message { - background-color: #FFE3FB; - color: #E03997; - box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.pink.message .header { - color: #dd238b; -} - -.ui.brown.message { - background-color: #F1E2D3; - color: #A5673F; - box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.brown.message .header { - color: #935b38; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.message { - font-size: 0.78571429em; -} - -.ui.tiny.message { - font-size: 0.85714286em; -} - -.ui.small.message { - font-size: 0.92857143em; -} - -.ui.message { - font-size: 1em; -} - -.ui.large.message { - font-size: 1.14285714em; -} - -.ui.big.message { - font-size: 1.28571429em; -} - -.ui.huge.message { - font-size: 1.42857143em; -} - -.ui.massive.message { - font-size: 1.71428571em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Table - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Table -*******************************/ - -/* Prototype */ - -.ui.table { - width: 100%; - background: #2E3235; - margin: 1em 0em; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: none; - border-radius: 0.35714286rem; - text-align: left; - color: #DDDDDD; - border-collapse: separate; - border-spacing: 0px; -} - -.ui.table:first-child { - margin-top: 0em; -} - -.ui.table:last-child { - margin-bottom: 0em; -} - -/******************************* - Parts -*******************************/ - -/* Table Content */ - -.ui.table th, -.ui.table td { - transition: background 0.1s ease, color 0.1s ease; -} - -/* Headers */ - -.ui.table thead { - box-shadow: none; -} - -.ui.table thead th { - cursor: auto; - background: #34393D; - text-align: inherit; - color: #DDDDDD; - padding: 0.92857143em 0.78571429em; - vertical-align: inherit; - font-style: none; - font-weight: 600; - text-transform: none; - border-bottom: 1px solid rgba(24, 26, 28, 0.1); - border-left: none; -} - -.ui.table thead tr > th:first-child { - border-left: none; -} - -.ui.table thead tr:first-child > th:first-child { - border-radius: 0.35714286rem 0em 0em 0em; -} - -.ui.table thead tr:first-child > th:last-child { - border-radius: 0em 0.35714286rem 0em 0em; -} - -.ui.table thead tr:first-child > th:only-child { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -/* Footer */ - -.ui.table tfoot { - box-shadow: none; -} - -.ui.table tfoot th { - cursor: auto; - border-top: 1px solid rgba(24, 26, 28, 0.45); - background: #34393D; - text-align: inherit; - color: #DDDDDD; - padding: 0.78571429em 0.78571429em; - vertical-align: middle; - font-style: normal; - font-weight: normal; - text-transform: none; -} - -.ui.table tfoot tr > th:first-child { - border-left: none; -} - -.ui.table tfoot tr:first-child > th:first-child { - border-radius: 0em 0em 0em 0.35714286rem; -} - -.ui.table tfoot tr:first-child > th:last-child { - border-radius: 0em 0em 0.35714286rem 0em; -} - -.ui.table tfoot tr:first-child > th:only-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -/* Table Row */ - -.ui.table tr td { - border-top: 1px solid rgba(24, 26, 28, 0.1); -} - -.ui.table tr:first-child td { - border-top: none; -} - -/* Repeated tbody */ - -.ui.table tbody + tbody tr:first-child td { - border-top: 1px solid rgba(24, 26, 28, 0.1); -} - -/* Table Cells */ - -.ui.table td { - padding: 0.78571429em 0.78571429em; - text-align: inherit; -} - -/* Icons */ - -.ui.table > .icon { - vertical-align: baseline; -} - -.ui.table > .icon:only-child { - margin: 0em; -} - -/* Table Segment */ - -.ui.table.segment { - padding: 0em; -} - -.ui.table.segment:after { - display: none; -} - -.ui.table.segment.stacked:after { - display: block; -} - -/* Responsive */ - -@media only screen and (max-width: 767px) { - .ui.table:not(.unstackable) { - width: 100%; - } - - .ui.table:not(.unstackable) tbody, - .ui.table:not(.unstackable) tr, - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - width: auto !important; - display: block !important; - } - - .ui.table:not(.unstackable) { - padding: 0em; - } - - .ui.table:not(.unstackable) thead { - display: block; - } - - .ui.table:not(.unstackable) tfoot { - display: block; - } - - .ui.table:not(.unstackable) tr { - padding-top: 1em; - padding-bottom: 1em; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em !important; - box-shadow: none !important; - } - - .ui.table:not(.unstackable) th:first-child, - .ui.table:not(.unstackable) td:first-child { - font-weight: 600; - } - - /* Definition Table */ - - .ui.definition.table:not(.unstackable) thead th:first-child { - box-shadow: none !important; - } -} - -/******************************* - Coupling -*******************************/ - -/* UI Image */ - -.ui.table th .image, -.ui.table th .image img, -.ui.table td .image, -.ui.table td .image img { - max-width: none; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Complex ----------------*/ - -.ui.structured.table { - border-collapse: collapse; -} - -.ui.structured.table thead th { - border-left: none; - border-right: none; -} - -.ui.structured.sortable.table thead th { - border-left: 1px solid rgba(24, 26, 28, 0.45); - border-right: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.structured.basic.table th { - border-left: none; - border-right: none; -} - -.ui.structured.celled.table tr th, -.ui.structured.celled.table tr td { - border-left: 1px solid rgba(24, 26, 28, 0.1); - border-right: 1px solid rgba(24, 26, 28, 0.1); -} - -/*-------------- - Definition ----------------*/ - -.ui.definition.table thead:not(.full-width) th:first-child { - pointer-events: none; - background: transparent; - font-weight: normal; - color: rgba(255, 255, 255, 0.4); - box-shadow: -1px -1px 0px 1px #2E3235; -} - -.ui.definition.table tfoot:not(.full-width) th:first-child { - pointer-events: none; - background: transparent; - font-weight: rgba(255, 255, 255, 0.4); - color: normal; - box-shadow: 1px 1px 0px 1px #2E3235; -} - -/* Remove Border */ - -.ui.celled.definition.table thead:not(.full-width) th:first-child { - box-shadow: 0px -1px 0px 1px #2E3235; -} - -.ui.celled.definition.table tfoot:not(.full-width) th:first-child { - box-shadow: 0px 1px 0px 1px #2E3235; -} - -/* Highlight Defining Column */ - -.ui.definition.table tr td:first-child:not(.ignored), -.ui.definition.table tr td.definition { - background: rgba(255, 255, 255, 0.03); - font-weight: 600; - color: rgba(255, 255, 255, 0.95); - text-transform: ''; - box-shadow: ''; - text-align: ''; - font-size: 1em; - padding-left: ''; - padding-right: ''; -} - -/* Fix 2nd Column */ - -.ui.definition.table thead:not(.full-width) th:nth-child(2) { - border-left: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.definition.table tfoot:not(.full-width) th:nth-child(2) { - border-left: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.definition.table td:nth-child(2) { - border-left: 1px solid rgba(24, 26, 28, 0.45); -} - -/******************************* - States -*******************************/ - -/*-------------- - Positive ----------------*/ - -.ui.table tr.positive, -.ui.table td.positive { - box-shadow: 0px 0px 0px #A3C293 inset; -} - -.ui.table tr.positive, -.ui.table td.positive { - background: #FCFFF5 !important; - color: #2C662D !important; -} - -/*-------------- - Negative ----------------*/ - -.ui.table tr.negative, -.ui.table td.negative { - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.negative, -.ui.table td.negative { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Error ----------------*/ - -.ui.table tr.error, -.ui.table td.error { - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.error, -.ui.table td.error { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Warning ----------------*/ - -.ui.table tr.warning, -.ui.table td.warning { - box-shadow: 0px 0px 0px #794B02 inset; -} - -.ui.table tr.warning, -.ui.table td.warning { - background: #FFFAF3 !important; - color: #573A08 !important; -} - -/*-------------- - Active ----------------*/ - -.ui.table tr.active, -.ui.table td.active { - box-shadow: 0px 0px 0px #DDDDDD inset; -} - -.ui.table tr.active, -.ui.table td.active { - background: #E0E0E0 !important; - color: #DDDDDD !important; -} - -/*-------------- - Disabled ----------------*/ - -.ui.table tr.disabled td, -.ui.table tr td.disabled, -.ui.table tr.disabled:hover, -.ui.table tr:hover td.disabled { - pointer-events: none; - color: rgba(255, 255, 255, 0.2); -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: 991px) { - .ui[class*="tablet stackable"].table, - .ui[class*="tablet stackable"].table tbody, - .ui[class*="tablet stackable"].table tr, - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - width: 100% !important; - display: block !important; - } - - .ui[class*="tablet stackable"].table { - padding: 0em; - } - - .ui[class*="tablet stackable"].table thead { - display: block; - } - - .ui[class*="tablet stackable"].table tfoot { - display: block; - } - - .ui[class*="tablet stackable"].table tr { - padding-top: 1em; - padding-bottom: 1em; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em; - box-shadow: none !important; - } - - /* Definition Table */ - - .ui.definition[class*="tablet stackable"].table thead th:first-child { - box-shadow: none !important; - } -} - -/*-------------- - Text Alignment ----------------*/ - -.ui.table[class*="left aligned"], -.ui.table [class*="left aligned"] { - text-align: left; -} - -.ui.table[class*="center aligned"], -.ui.table [class*="center aligned"] { - text-align: center; -} - -.ui.table[class*="right aligned"], -.ui.table [class*="right aligned"] { - text-align: right; -} - -/*------------------ - Vertical Alignment -------------------*/ - -.ui.table[class*="top aligned"], -.ui.table [class*="top aligned"] { - vertical-align: top; -} - -.ui.table[class*="middle aligned"], -.ui.table [class*="middle aligned"] { - vertical-align: middle; -} - -.ui.table[class*="bottom aligned"], -.ui.table [class*="bottom aligned"] { - vertical-align: bottom; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.table th.collapsing, -.ui.table td.collapsing { - width: 1px; - white-space: nowrap; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.table { - table-layout: fixed; -} - -.ui.fixed.table th, -.ui.fixed.table td { - overflow: hidden; - text-overflow: ellipsis; -} - -/*-------------- - Selectable ----------------*/ - -.ui.selectable.table tbody tr:hover, -.ui.table tbody tr td.selectable:hover { - background: rgba(255, 255, 255, 0.05) !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.selectable.inverted.table tbody tr:hover, -.ui.inverted.table tbody tr td.selectable:hover { - background: rgba(0, 0, 0, 0.08) !important; - color: #000000 !important; -} - -/* Selectable Cell Link */ - -.ui.table tbody tr td.selectable { - padding: 0em; -} - -.ui.table tbody tr td.selectable > a:not(.ui) { - display: block; - color: inherit; - padding: 0.78571429em 0.78571429em; -} - -/* Other States */ - -.ui.selectable.table tr.error:hover, -.ui.table tr td.selectable.error:hover, -.ui.selectable.table tr:hover td.error { - background: #ffe7e7 !important; - color: #943634 !important; -} - -.ui.selectable.table tr.warning:hover, -.ui.table tr td.selectable.warning:hover, -.ui.selectable.table tr:hover td.warning { - background: #fff4e4 !important; - color: #493107 !important; -} - -.ui.selectable.table tr.active:hover, -.ui.table tr td.selectable.active:hover, -.ui.selectable.table tr:hover td.active { - background: #E0E0E0 !important; - color: #DDDDDD !important; -} - -.ui.selectable.table tr.positive:hover, -.ui.table tr td.selectable.positive:hover, -.ui.selectable.table tr:hover td.positive { - background: #f7ffe6 !important; - color: #275b28 !important; -} - -.ui.selectable.table tr.negative:hover, -.ui.table tr td.selectable.negative:hover, -.ui.selectable.table tr:hover td.negative { - background: #ffe7e7 !important; - color: #943634 !important; -} - -/*------------------- - Attached ---------------------*/ - -/* Middle */ - -.ui.attached.table { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% - (-1px * 2)); - max-width: calc(100% - (-1px * 2)); - box-shadow: none; - border: 1px solid #3B3C3E; -} - -.ui.attached + .ui.attached.table:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].table { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1em; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.table[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].table { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1em; - box-shadow: none, none; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui[class*="bottom attached"].table:last-child { - margin-bottom: 0em; -} - -/*-------------- - Striped ----------------*/ - -/* Table Striping */ - -.ui.striped.table > tr:nth-child(2n), -.ui.striped.table tbody tr:nth-child(2n) { - background-color: rgba(0, 0, 50, 0.02); -} - -/* Stripes */ - -.ui.inverted.striped.table > tr:nth-child(2n), -.ui.inverted.striped.table tbody tr:nth-child(2n) { - background-color: rgba(255, 255, 255, 0.05); -} - -/* Allow striped active hover */ - -.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover { - background: #EFEFEF !important; - color: rgba(255, 255, 255, 0.95) !important; -} - -/*-------------- - Single Line ----------------*/ - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.table { - border-top: 0.2em solid #DB2828; -} - -.ui.inverted.red.table { - background-color: #DB2828 !important; - color: #2E3235 !important; -} - -/* Orange */ - -.ui.orange.table { - border-top: 0.2em solid #C06D36; -} - -.ui.inverted.orange.table { - background-color: #C06D36 !important; - color: #2E3235 !important; -} - -/* Yellow */ - -.ui.yellow.table { - border-top: 0.2em solid #FBBD08; -} - -.ui.inverted.yellow.table { - background-color: #FBBD08 !important; - color: #2E3235 !important; -} - -/* Olive */ - -.ui.olive.table { - border-top: 0.2em solid #B5CC18; -} - -.ui.inverted.olive.table { - background-color: #B5CC18 !important; - color: #2E3235 !important; -} - -/* Green */ - -.ui.green.table { - border-top: 0.2em solid #21BA45; -} - -.ui.inverted.green.table { - background-color: #21BA45 !important; - color: #2E3235 !important; -} - -/* Teal */ - -.ui.teal.table { - border-top: 0.2em solid #00B5AD; -} - -.ui.inverted.teal.table { - background-color: #00B5AD !important; - color: #2E3235 !important; -} - -/* Blue */ - -.ui.blue.table { - border-top: 0.2em solid #2185D0; -} - -.ui.inverted.blue.table { - background-color: #2185D0 !important; - color: #2E3235 !important; -} - -/* Violet */ - -.ui.violet.table { - border-top: 0.2em solid #6435C9; -} - -.ui.inverted.violet.table { - background-color: #6435C9 !important; - color: #2E3235 !important; -} - -/* Purple */ - -.ui.purple.table { - border-top: 0.2em solid #A333C8; -} - -.ui.inverted.purple.table { - background-color: #A333C8 !important; - color: #2E3235 !important; -} - -/* Pink */ - -.ui.pink.table { - border-top: 0.2em solid #E03997; -} - -.ui.inverted.pink.table { - background-color: #E03997 !important; - color: #2E3235 !important; -} - -/* Brown */ - -.ui.brown.table { - border-top: 0.2em solid #A5673F; -} - -.ui.inverted.brown.table { - background-color: #A5673F !important; - color: #2E3235 !important; -} - -/* Grey */ - -.ui.grey.table { - border-top: 0.2em solid #767676; -} - -.ui.inverted.grey.table { - background-color: #767676 !important; - color: #2E3235 !important; -} - -/* Black */ - -.ui.black.table { - border-top: 0.2em solid #F9FAFB; -} - -.ui.inverted.black.table { - background-color: #F9FAFB !important; - color: #2E3235 !important; -} - -/*-------------- - Column Count ----------------*/ - -/* Grid Based */ - -.ui.one.column.table td { - width: 100%; -} - -.ui.two.column.table td { - width: 50%; -} - -.ui.three.column.table td { - width: 33.33333333%; -} - -.ui.four.column.table td { - width: 25%; -} - -.ui.five.column.table td { - width: 20%; -} - -.ui.six.column.table td { - width: 16.66666667%; -} - -.ui.seven.column.table td { - width: 14.28571429%; -} - -.ui.eight.column.table td { - width: 12.5%; -} - -.ui.nine.column.table td { - width: 11.11111111%; -} - -.ui.ten.column.table td { - width: 10%; -} - -.ui.eleven.column.table td { - width: 9.09090909%; -} - -.ui.twelve.column.table td { - width: 8.33333333%; -} - -.ui.thirteen.column.table td { - width: 7.69230769%; -} - -.ui.fourteen.column.table td { - width: 7.14285714%; -} - -.ui.fifteen.column.table td { - width: 6.66666667%; -} - -.ui.sixteen.column.table td { - width: 6.25%; -} - -/* Column Width */ - -.ui.table th.one.wide, -.ui.table td.one.wide { - width: 6.25%; -} - -.ui.table th.two.wide, -.ui.table td.two.wide { - width: 12.5%; -} - -.ui.table th.three.wide, -.ui.table td.three.wide { - width: 18.75%; -} - -.ui.table th.four.wide, -.ui.table td.four.wide { - width: 25%; -} - -.ui.table th.five.wide, -.ui.table td.five.wide { - width: 31.25%; -} - -.ui.table th.six.wide, -.ui.table td.six.wide { - width: 37.5%; -} - -.ui.table th.seven.wide, -.ui.table td.seven.wide { - width: 43.75%; -} - -.ui.table th.eight.wide, -.ui.table td.eight.wide { - width: 50%; -} - -.ui.table th.nine.wide, -.ui.table td.nine.wide { - width: 56.25%; -} - -.ui.table th.ten.wide, -.ui.table td.ten.wide { - width: 62.5%; -} - -.ui.table th.eleven.wide, -.ui.table td.eleven.wide { - width: 68.75%; -} - -.ui.table th.twelve.wide, -.ui.table td.twelve.wide { - width: 75%; -} - -.ui.table th.thirteen.wide, -.ui.table td.thirteen.wide { - width: 81.25%; -} - -.ui.table th.fourteen.wide, -.ui.table td.fourteen.wide { - width: 87.5%; -} - -.ui.table th.fifteen.wide, -.ui.table td.fifteen.wide { - width: 93.75%; -} - -.ui.table th.sixteen.wide, -.ui.table td.sixteen.wide { - width: 100%; -} - -/*-------------- - Sortable ----------------*/ - -.ui.sortable.table thead th { - cursor: pointer; - white-space: nowrap; - border-left: 1px solid rgba(24, 26, 28, 0.45); - color: #DDDDDD; -} - -.ui.sortable.table thead th:first-child { - border-left: none; -} - -.ui.sortable.table thead th.sorted, -.ui.sortable.table thead th.sorted:hover { - user-select: none; -} - -.ui.sortable.table thead th:after { - display: none; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - content: ''; - height: 1em; - width: auto; - opacity: 0.8; - margin: 0em 0em 0em 0.5em; - font-family: 'Icons'; -} - -.ui.sortable.table thead th.ascending:after { - content: '\f0d8'; -} - -.ui.sortable.table thead th.descending:after { - content: '\f0d7'; -} - -/* Hover */ - -.ui.sortable.table th.disabled:hover { - cursor: auto; - color: rgba(255, 255, 255, 0.2); -} - -.ui.sortable.table thead th:hover { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.8); -} - -/* Sorted */ - -.ui.sortable.table thead th.sorted { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -.ui.sortable.table thead th.sorted:after { - display: inline-block; -} - -/* Sorted Hover */ - -.ui.sortable.table thead th.sorted:hover { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); -} - -/* Inverted */ - -.ui.inverted.sortable.table thead th.sorted { - background: rgba(0, 0, 0, 0.15) linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - color: #000000; -} - -.ui.inverted.sortable.table thead th:hover { - background: rgba(0, 0, 0, 0.08) linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - color: #000000; -} - -.ui.inverted.sortable.table thead th { - border-left-color: transparent; - border-right-color: transparent; -} - -/*-------------- - Inverted ----------------*/ - -/* Text Color */ - -.ui.inverted.table { - background: #333333; - color: rgba(0, 0, 0, 0.9); - border: none; -} - -.ui.inverted.table th { - background-color: rgba(255, 255, 255, 0.15); - border-color: rgba(0, 0, 0, 0.1) !important; - color: rgba(0, 0, 0, 0.9) !important; -} - -.ui.inverted.table tr td { - border-color: rgba(0, 0, 0, 0.1) !important; -} - -.ui.inverted.table tr.disabled td, -.ui.inverted.table tr td.disabled, -.ui.inverted.table tr.disabled:hover td, -.ui.inverted.table tr:hover td.disabled { - pointer-events: none; - color: rgba(0, 0, 0, 0.2); -} - -/* Definition */ - -.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, -.ui.inverted.definition.table thead:not(.full-width) th:first-child { - background: #2E3235; -} - -.ui.inverted.definition.table tr td:first-child { - background: rgba(0, 0, 0, 0.02); - color: #000000; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.collapsing.table { - width: auto; -} - -/*-------------- - Basic ----------------*/ - -.ui.basic.table { - background: transparent; - border: 1px solid rgba(24, 26, 28, 0.45); - box-shadow: none; -} - -.ui.basic.table thead, -.ui.basic.table tfoot { - box-shadow: none; -} - -.ui.basic.table th { - background: transparent; - border-left: none; -} - -.ui.basic.table tbody tr { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} - -.ui.basic.table td { - background: transparent; -} - -.ui.basic.striped.table tbody tr:nth-child(2n) { - background-color: rgba(255, 255, 255, 0.05) !important; -} - -/* Very Basic */ - -.ui[class*="very basic"].table { - border: none; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td { - padding: ''; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child { - padding-left: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child { - padding-right: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th { - padding-top: 0em; -} - -/*-------------- - Celled ----------------*/ - -.ui.celled.table tr th, -.ui.celled.table tr td { - border-left: 1px solid rgba(24, 26, 28, 0.1); -} - -.ui.celled.table tr th:first-child, -.ui.celled.table tr td:first-child { - border-left: none; -} - -/*-------------- - Padded ----------------*/ - -.ui.padded.table th { - padding-left: 1em; - padding-right: 1em; -} - -.ui.padded.table th, -.ui.padded.table td { - padding: 1em 1em; -} - -/* Very */ - -.ui[class*="very padded"].table th { - padding-left: 1.5em; - padding-right: 1.5em; -} - -.ui[class*="very padded"].table td { - padding: 1.5em 1.5em; -} - -/*-------------- - Compact ----------------*/ - -.ui.compact.table th { - padding-left: 0.7em; - padding-right: 0.7em; -} - -.ui.compact.table td { - padding: 0.5em 0.7em; -} - -/* Very */ - -.ui[class*="very compact"].table th { - padding-left: 0.6em; - padding-right: 0.6em; -} - -.ui[class*="very compact"].table td { - padding: 0.4em 0.6em; -} - -/*-------------- - Sizes ----------------*/ - -/* Small */ - -.ui.small.table { - font-size: 0.9em; -} - -/* Standard */ - -.ui.table { - font-size: 1em; -} - -/* Large */ - -.ui.large.table { - font-size: 1.1em; -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Ad - * http://github.com/semantic-org/semantic-ui/ - * - * - * Copyright 2013 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Advertisement -*******************************/ - -.ui.ad { - display: block; - overflow: hidden; - margin: 1em 0em; -} - -.ui.ad:first-child { - margin: 0em; -} - -.ui.ad:last-child { - margin: 0em; -} - -.ui.ad iframe { - margin: 0em; - padding: 0em; - border: none; - overflow: hidden; -} - -/*-------------- - Common ----------------*/ - -/* Leaderboard */ - -.ui.leaderboard.ad { - width: 728px; - height: 90px; -} - -/* Medium Rectangle */ - -.ui[class*="medium rectangle"].ad { - width: 300px; - height: 250px; -} - -/* Large Rectangle */ - -.ui[class*="large rectangle"].ad { - width: 336px; - height: 280px; -} - -/* Half Page */ - -.ui[class*="half page"].ad { - width: 300px; - height: 600px; -} - -/*-------------- - Square ----------------*/ - -/* Square */ - -.ui.square.ad { - width: 250px; - height: 250px; -} - -/* Small Square */ - -.ui[class*="small square"].ad { - width: 200px; - height: 200px; -} - -/*-------------- - Rectangle ----------------*/ - -/* Small Rectangle */ - -.ui[class*="small rectangle"].ad { - width: 180px; - height: 150px; -} - -/* Vertical Rectangle */ - -.ui[class*="vertical rectangle"].ad { - width: 240px; - height: 400px; -} - -/*-------------- - Button ----------------*/ - -.ui.button.ad { - width: 120px; - height: 90px; -} - -.ui[class*="square button"].ad { - width: 125px; - height: 125px; -} - -.ui[class*="small button"].ad { - width: 120px; - height: 60px; -} - -/*-------------- - Skyscrapers ----------------*/ - -/* Skyscraper */ - -.ui.skyscraper.ad { - width: 120px; - height: 600px; -} - -/* Wide Skyscraper */ - -.ui[class*="wide skyscraper"].ad { - width: 160px; -} - -/*-------------- - Banners ----------------*/ - -/* Banner */ - -.ui.banner.ad { - width: 468px; - height: 60px; -} - -/* Vertical Banner */ - -.ui[class*="vertical banner"].ad { - width: 120px; - height: 240px; -} - -/* Top Banner */ - -.ui[class*="top banner"].ad { - width: 930px; - height: 180px; -} - -/* Half Banner */ - -.ui[class*="half banner"].ad { - width: 234px; - height: 60px; -} - -/*-------------- - Boards ----------------*/ - -/* Leaderboard */ - -.ui[class*="large leaderboard"].ad { - width: 970px; - height: 90px; -} - -/* Billboard */ - -.ui.billboard.ad { - width: 970px; - height: 250px; -} - -/*-------------- - Panorama ----------------*/ - -/* Panorama */ - -.ui.panorama.ad { - width: 980px; - height: 120px; -} - -/*-------------- - Netboard ----------------*/ - -/* Netboard */ - -.ui.netboard.ad { - width: 580px; - height: 400px; -} - -/*-------------- - Mobile ----------------*/ - -/* Large Mobile Banner */ - -.ui[class*="large mobile banner"].ad { - width: 320px; - height: 100px; -} - -/* Mobile Leaderboard */ - -.ui[class*="mobile leaderboard"].ad { - width: 320px; - height: 50px; -} - -/******************************* - Types -*******************************/ - -/* Mobile Sizes */ - -.ui.mobile.ad { - display: none; -} - -@media only screen and (max-width: 767px) { - .ui.mobile.ad { - display: block; - } -} - -/******************************* - Variations -*******************************/ - -.ui.centered.ad { - margin-left: auto; - margin-right: auto; -} - -.ui.test.ad { - position: relative; - background: #545454; -} - -.ui.test.ad:after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - text-align: center; - transform: translateX(-50%) translateY(-50%); - content: 'Ad'; - color: #2E3235; - font-size: 1em; - font-weight: 600; -} - -.ui.mobile.test.ad:after { - font-size: 0.85714286em; -} - -.ui.test.ad[data-text]:after { - content: attr(data-text); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Item - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -/*-------------- - Card ----------------*/ - -.ui.cards > .card, -.ui.card { - max-width: 100%; - position: relative; - display: flex; - flex-direction: column; - width: 290px; - min-height: 0px; - background: #2E3235; - padding: 0em; - border: none; - border-radius: 0.35714286rem; - box-shadow: 0px 1px 3px 0px #3B3C3E, 0px 0px 0px 1px #3B3C3E; - transition: box-shadow 0.1s ease, transform 0.1s ease; - z-index: ''; -} - -.ui.card { - margin: 1em 0em; -} - -.ui.cards > .card a, -.ui.card a { - cursor: pointer; -} - -.ui.card:first-child { - margin-top: 0em; -} - -.ui.card:last-child { - margin-bottom: 0em; -} - -/*-------------- - Cards ----------------*/ - -.ui.cards { - display: flex; - margin: -0.875em -0.5em; - flex-wrap: wrap; -} - -.ui.cards > .card { - display: flex; - margin: 0.875em 0.5em; - float: none; -} - -/* Clearing */ - -.ui.cards:after, -.ui.card:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -/* Consecutive Card Groups Preserve Row Spacing */ - -.ui.cards ~ .ui.cards { - margin-top: 0.875em; -} - -/*-------------- - Rounded Edges ----------------*/ - -.ui.cards > .card > :first-child, -.ui.card > :first-child { - border-radius: 0.35714286rem 0.35714286rem 0em 0em !important; - border-top: none !important; -} - -.ui.cards > .card > :last-child, -.ui.card > :last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem !important; -} - -.ui.cards > .card > :only-child, -.ui.card > :only-child { - border-radius: 0.35714286rem !important; -} - -/*-------------- - Images ----------------*/ - -.ui.cards > .card > .image, -.ui.card > .image { - position: relative; - display: block; - flex: 0 0 auto; - padding: 0em; - background: rgba(255, 255, 255, 0.05); -} - -.ui.cards > .card > .image > img, -.ui.card > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: inherit; -} - -.ui.cards > .card > .image:not(.ui) > img, -.ui.card > .image:not(.ui) > img { - border: none; -} - -/*-------------- - Content ----------------*/ - -.ui.cards > .card > .content, -.ui.card > .content { - flex-grow: 1; - border: none; - border-top: 1px solid rgba(24, 26, 28, 0.1); - background: none; - margin: 0em; - padding: 1em 1em; - box-shadow: none; - font-size: 1em; - border-radius: 0em; -} - -.ui.cards > .card > .content:after, -.ui.card > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.cards > .card > .content > .header, -.ui.card > .content > .header { - display: block; - margin: ''; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - color: rgba(255, 255, 255, 0.95); -} - -/* Default Header Size */ - -.ui.cards > .card > .content > .header:not(.ui), -.ui.card > .content > .header:not(.ui) { - font-weight: 600; - font-size: 1.28571429em; - margin-top: -0.21425em; - line-height: 1.28571429em; -} - -.ui.cards > .card > .content > .meta + .description, -.ui.cards > .card > .content > .header + .description, -.ui.card > .content > .meta + .description, -.ui.card > .content > .header + .description { - margin-top: 0.5em; -} - -/*---------------- - Floated Content ------------------*/ - -.ui.cards > .card [class*="left floated"], -.ui.card [class*="left floated"] { - float: left; -} - -.ui.cards > .card [class*="right floated"], -.ui.card [class*="right floated"] { - float: right; -} - -/*-------------- - Aligned ----------------*/ - -.ui.cards > .card [class*="left aligned"], -.ui.card [class*="left aligned"] { - text-align: left; -} - -.ui.cards > .card [class*="center aligned"], -.ui.card [class*="center aligned"] { - text-align: center; -} - -.ui.cards > .card [class*="right aligned"], -.ui.card [class*="right aligned"] { - text-align: right; -} - -/*-------------- - Content Image ----------------*/ - -.ui.cards > .card .content img, -.ui.card .content img { - display: inline-block; - vertical-align: middle; - width: ''; -} - -.ui.cards > .card img.avatar, -.ui.cards > .card .avatar img, -.ui.card img.avatar, -.ui.card .avatar img { - width: 2em; - height: 2em; - border-radius: 500rem; -} - -/*-------------- - Description ----------------*/ - -.ui.cards > .card > .content > .description, -.ui.card > .content > .description { - clear: both; - color: rgba(0, 0, 0, 0.68); -} - -/*-------------- - Paragraph ----------------*/ - -.ui.cards > .card > .content p, -.ui.card > .content p { - margin: 0em 0em 0.5em; -} - -.ui.cards > .card > .content p:last-child, -.ui.card > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.cards > .card .meta, -.ui.card .meta { - font-size: 1em; - color: rgba(255, 255, 255, 0.5); -} - -.ui.cards > .card .meta *, -.ui.card .meta * { - margin-right: 0.3em; -} - -.ui.cards > .card .meta :last-child, -.ui.card .meta :last-child { - margin-right: 0em; -} - -.ui.cards > .card .meta [class*="right floated"], -.ui.card .meta [class*="right floated"] { - margin-right: 0em; - margin-left: 0.3em; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ - -.ui.cards > .card > .content a:not(.ui), -.ui.card > .content a:not(.ui) { - color: ''; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content a:not(.ui):hover, -.ui.card > .content a:not(.ui):hover { - color: ''; -} - -/* Header */ - -.ui.cards > .card > .content > a.header, -.ui.card > .content > a.header { - color: rgba(255, 255, 255, 0.95); -} - -.ui.cards > .card > .content > a.header:hover, -.ui.card > .content > a.header:hover { - color: #729ad0; -} - -/* Meta */ - -.ui.cards > .card .meta > a:not(.ui), -.ui.card .meta > a:not(.ui) { - color: rgba(255, 255, 255, 0.5); -} - -.ui.cards > .card .meta > a:not(.ui):hover, -.ui.card .meta > a:not(.ui):hover { - color: #DDDDDD; -} - -/*-------------- - Buttons ----------------*/ - -.ui.cards > .card > .buttons, -.ui.card > .buttons, -.ui.cards > .card > .button, -.ui.card > .button { - margin: 0px -1px; - width: calc(100% + 2px ); -} - -/*-------------- - Dimmer ----------------*/ - -.ui.cards > .card .dimmer, -.ui.card .dimmer { - background-color: ''; - z-index: 10; -} - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ - -.ui.cards > .card > .content .star.icon, -.ui.card > .content .star.icon { - cursor: pointer; - opacity: 0.75; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content .star.icon:hover, -.ui.card > .content .star.icon:hover { - opacity: 1; - color: #FFB70A; -} - -.ui.cards > .card > .content .active.star.icon, -.ui.card > .content .active.star.icon { - color: #FFE623; -} - -/*-----Like----- */ - -/* Icon */ - -.ui.cards > .card > .content .like.icon, -.ui.card > .content .like.icon { - cursor: pointer; - opacity: 0.75; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content .like.icon:hover, -.ui.card > .content .like.icon:hover { - opacity: 1; - color: #FF2733; -} - -.ui.cards > .card > .content .active.like.icon, -.ui.card > .content .active.like.icon { - color: #FF2733; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.cards > .card > .extra, -.ui.card > .extra { - max-width: 100%; - min-height: 0em !important; - flex-grow: 0; - border-top: 1px solid rgba(0, 0, 0, 0.05) !important; - position: static; - background: none; - width: auto; - margin: 0em 0em; - padding: 0.75em 1em; - top: 0em; - left: 0em; - color: rgba(255, 255, 255, 0.5); - box-shadow: none; - transition: color 0.1s ease; -} - -.ui.cards > .card > .extra a:not(.ui), -.ui.card > .extra a:not(.ui) { - color: rgba(255, 255, 255, 0.4); -} - -.ui.cards > .card > .extra a:not(.ui):hover, -.ui.card > .extra a:not(.ui):hover { - color: #729ad0; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Raised ---------------------*/ - -.ui.raised.cards > .card, -.ui.raised.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -.ui.raised.cards a.card:hover, -.ui.link.cards .raised.card:hover, -a.ui.raised.card:hover, -.ui.link.raised.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); -} - -.ui.raised.cards > .card, -.ui.raised.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*------------------- - Centered ---------------------*/ - -.ui.centered.cards { - justify-content: center; -} - -.ui.centered.card { - margin-left: auto; - margin-right: auto; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.card { - width: 100%; - max-width: 9999px; -} - -/*------------------- - Link ---------------------*/ - -.ui.cards a.card, -.ui.link.cards .card, -a.ui.card, -.ui.link.card { - transform: none; -} - -.ui.cards a.card:hover, -.ui.link.cards .card:hover, -a.ui.card:hover, -.ui.link.card:hover { - cursor: pointer; - z-index: 5; - background: #2E3235; - border: none; - box-shadow: 0px 1px 3px 0px #4D5B66, 0px 0px 0px 1px #3B3C3E; - transform: translateY(-3px); -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.cards > .card, -.ui.cards > .red.card, -.ui.red.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #3B3C3E; -} - -.ui.red.cards > .card:hover, -.ui.cards > .red.card:hover, -.ui.red.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #4D5B66; -} - -/* Orange */ - -.ui.orange.cards > .card, -.ui.cards > .orange.card, -.ui.orange.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #C06D36, 0px 1px 3px 0px #3B3C3E; -} - -.ui.orange.cards > .card:hover, -.ui.cards > .orange.card:hover, -.ui.orange.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #b2602a, 0px 1px 3px 0px #4D5B66; -} - -/* Yellow */ - -.ui.yellow.cards > .card, -.ui.cards > .yellow.card, -.ui.yellow.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #3B3C3E; -} - -.ui.yellow.cards > .card:hover, -.ui.cards > .yellow.card:hover, -.ui.yellow.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #4D5B66; -} - -/* Olive */ - -.ui.olive.cards > .card, -.ui.cards > .olive.card, -.ui.olive.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #3B3C3E; -} - -.ui.olive.cards > .card:hover, -.ui.cards > .olive.card:hover, -.ui.olive.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #4D5B66; -} - -/* Green */ - -.ui.green.cards > .card, -.ui.cards > .green.card, -.ui.green.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #3B3C3E; -} - -.ui.green.cards > .card:hover, -.ui.cards > .green.card:hover, -.ui.green.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #4D5B66; -} - -/* Teal */ - -.ui.teal.cards > .card, -.ui.cards > .teal.card, -.ui.teal.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #3B3C3E; -} - -.ui.teal.cards > .card:hover, -.ui.cards > .teal.card:hover, -.ui.teal.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #4D5B66; -} - -/* Blue */ - -.ui.blue.cards > .card, -.ui.cards > .blue.card, -.ui.blue.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #3B3C3E; -} - -.ui.blue.cards > .card:hover, -.ui.cards > .blue.card:hover, -.ui.blue.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #4D5B66; -} - -/* Violet */ - -.ui.violet.cards > .card, -.ui.cards > .violet.card, -.ui.violet.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #3B3C3E; -} - -.ui.violet.cards > .card:hover, -.ui.cards > .violet.card:hover, -.ui.violet.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #4D5B66; -} - -/* Purple */ - -.ui.purple.cards > .card, -.ui.cards > .purple.card, -.ui.purple.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #3B3C3E; -} - -.ui.purple.cards > .card:hover, -.ui.cards > .purple.card:hover, -.ui.purple.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #4D5B66; -} - -/* Pink */ - -.ui.pink.cards > .card, -.ui.cards > .pink.card, -.ui.pink.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #3B3C3E; -} - -.ui.pink.cards > .card:hover, -.ui.cards > .pink.card:hover, -.ui.pink.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #4D5B66; -} - -/* Brown */ - -.ui.brown.cards > .card, -.ui.cards > .brown.card, -.ui.brown.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #3B3C3E; -} - -.ui.brown.cards > .card:hover, -.ui.cards > .brown.card:hover, -.ui.brown.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #4D5B66; -} - -/* Grey */ - -.ui.grey.cards > .card, -.ui.cards > .grey.card, -.ui.grey.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #3B3C3E; -} - -.ui.grey.cards > .card:hover, -.ui.cards > .grey.card:hover, -.ui.grey.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #4D5B66; -} - -/* Black */ - -.ui.black.cards > .card, -.ui.cards > .black.card, -.ui.black.card { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #F9FAFB, 0px 1px 3px 0px #3B3C3E; -} - -.ui.black.cards > .card:hover, -.ui.cards > .black.card:hover, -.ui.black.card:hover { - box-shadow: 0px 0px 0px 1px #3B3C3E, 0px 2px 0px 0px #ffffff, 0px 1px 3px 0px #4D5B66; -} - -/*-------------- - Card Count ----------------*/ - -.ui.one.cards { - margin-left: 0em; - margin-right: 0em; -} - -.ui.one.cards > .card { - width: 100%; -} - -.ui.two.cards { - margin-left: -1em; - margin-right: -1em; -} - -.ui.two.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; -} - -.ui.three.cards { - margin-left: -1em; - margin-right: -1em; -} - -.ui.three.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; -} - -.ui.four.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.four.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.five.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.five.cards > .card { - width: calc( 20% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.six.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.six.cards > .card { - width: calc( 16.66666667% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.seven.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.seven.cards > .card { - width: calc( 14.28571429% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; -} - -.ui.eight.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.eight.cards > .card { - width: calc( 12.5% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; - font-size: 11px; -} - -.ui.nine.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.nine.cards > .card { - width: calc( 11.11111111% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; - font-size: 10px; -} - -.ui.ten.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.ten.cards > .card { - width: calc( 10% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; -} - -/*------------------- - Doubling ---------------------*/ - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .ui.three.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.three.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.four.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.four.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.five.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.five.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.six.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.six.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.seven.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.seven.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.nine.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.nine.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.ten.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.ten.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } -} - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .ui.three.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.three.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.four.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.four.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.five.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.five.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.six.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.six.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } - - .ui.nine.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.nine.doubling.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } - - .ui.ten.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.ten.doubling.cards > .card { - width: calc( 20% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.cards { - display: block !important; - } - - .ui.stackable.cards .card:first-child { - margin-top: 0em !important; - } - - .ui.stackable.cards > .card { - display: block !important; - height: auto !important; - margin: 1em 1em; - padding: 0 !important; - width: calc( 100% - 2em ) !important; - } -} - -/*-------------- - Size ----------------*/ - -.ui.cards > .card { - font-size: 1em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Comment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -/*-------------- - Comments ----------------*/ - -.ui.comments { - margin: 1.5em 0em; - max-width: 650px; -} - -.ui.comments:first-child { - margin-top: 0em; -} - -.ui.comments:last-child { - margin-bottom: 0em; -} - -/*-------------- - Comment ----------------*/ - -.ui.comments .comment { - position: relative; - background: none; - margin: 0.5em 0em 0em; - padding: 0.5em 0em 0em; - border: none; - border-top: none; - line-height: 1.2; -} - -.ui.comments .comment:first-child { - margin-top: 0em; - padding-top: 0em; -} - -/*-------------------- - Nested Comments ----------------------*/ - -.ui.comments .comment .comments { - margin: 0em 0em 0.5em 0.5em; - padding: 1em 0em 1em 1em; -} - -.ui.comments .comment .comments:before { - position: absolute; - top: 0px; - left: 0px; -} - -.ui.comments .comment .comments .comment { - border: none; - border-top: none; - background: none; -} - -/*-------------- - Avatar ----------------*/ - -.ui.comments .comment .avatar { - display: block; - width: 2.5em; - height: auto; - float: left; - margin: 0.2em 0em 0em; -} - -.ui.comments .comment img.avatar, -.ui.comments .comment .avatar img { - display: block; - margin: 0em auto; - width: 100%; - height: 100%; - border-radius: 0.25rem; -} - -/*-------------- - Content ----------------*/ - -.ui.comments .comment > .content { - display: block; -} - -/* If there is an avatar move content over */ - -.ui.comments .comment > .avatar ~ .content { - margin-left: 3.5em; -} - -/*-------------- - Author ----------------*/ - -.ui.comments .comment .author { - font-size: 1em; - color: #DDDDDD; - font-weight: 600; -} - -.ui.comments .comment a.author { - cursor: pointer; -} - -.ui.comments .comment a.author:hover { - color: #729ad0; -} - -/*-------------- - Metadata ----------------*/ - -.ui.comments .comment .metadata { - display: inline-block; - margin-left: 0.5em; - color: rgba(255, 255, 255, 0.5); - font-size: 0.875em; -} - -.ui.comments .comment .metadata > * { - display: inline-block; - margin: 0em 0.5em 0em 0em; -} - -.ui.comments .comment .metadata > :last-child { - margin-right: 0em; -} - -/*-------------------- - Comment Text ----------------------*/ - -.ui.comments .comment .text { - margin: 0.25em 0em 0.5em; - font-size: 1em; - word-wrap: break-word; - color: #DDDDDD; - line-height: 1.3; -} - -/*-------------------- - User Actions ----------------------*/ - -.ui.comments .comment .actions { - font-size: 0.875em; -} - -.ui.comments .comment .actions a { - cursor: pointer; - display: inline-block; - margin: 0em 0.75em 0em 0em; - color: rgba(255, 255, 255, 0.4); -} - -.ui.comments .comment .actions a:last-child { - margin-right: 0em; -} - -.ui.comments .comment .actions a.active, -.ui.comments .comment .actions a:hover { - color: rgba(255, 255, 255, 0.8); -} - -/*-------------------- - Reply Form ----------------------*/ - -.ui.comments > .reply.form { - margin-top: 1em; -} - -.ui.comments .comment .reply.form { - width: 100%; - margin-top: 1em; -} - -.ui.comments .reply.form textarea { - font-size: 1em; - height: 12em; -} - -/******************************* - State -*******************************/ - -.ui.collapsed.comments, -.ui.comments .collapsed.comments, -.ui.comments .collapsed.comment { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Threaded ----------------------*/ - -.ui.threaded.comments .comment .comments { - margin: -1.5em 0 -1em 1.25em; - padding: 3em 0em 2em 2.25em; - box-shadow: -1px 0px 0px rgba(24, 26, 28, 0.45); -} - -/*-------------------- - Minimal ----------------------*/ - -.ui.minimal.comments .comment .actions { - opacity: 0; - position: absolute; - top: 0px; - right: 0px; - left: auto; - transition: opacity 0.2s ease; - transition-delay: 0.1s; -} - -.ui.minimal.comments .comment > .content:hover > .actions { - opacity: 1; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.comments { - font-size: 0.78571429rem; -} - -.ui.tiny.comments { - font-size: 0.85714286rem; -} - -.ui.small.comments { - font-size: 0.92857143rem; -} - -.ui.comments { - font-size: 1rem; -} - -.ui.large.comments { - font-size: 1.14285714rem; -} - -.ui.big.comments { - font-size: 1.28571429rem; -} - -.ui.huge.comments { - font-size: 1.42857143rem; -} - -.ui.massive.comments { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Feed - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Activity Feed -*******************************/ - -.ui.feed { - margin: 1em 0em; -} - -.ui.feed:first-child { - margin-top: 0em; -} - -.ui.feed:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Event */ - -.ui.feed > .event { - display: flex; - flex-direction: row; - width: 100%; - padding: 0.21428571rem 0em; - margin: 0em; - background: none; - border-top: none; -} - -.ui.feed > .event:first-child { - border-top: 0px; - padding-top: 0em; -} - -.ui.feed > .event:last-child { - padding-bottom: 0em; -} - -/* Event Label */ - -.ui.feed > .event > .label { - display: block; - flex: 0 0 auto; - width: 2.5em; - height: auto; - align-self: stretch; - text-align: left; -} - -.ui.feed > .event > .label .icon { - opacity: 1; - font-size: 1.5em; - width: 100%; - padding: 0.25em; - background: none; - border: none; - border-radius: none; - color: rgba(0, 0, 0, 0.6); -} - -.ui.feed > .event > .label img { - width: 100%; - height: auto; - border-radius: 500rem; -} - -.ui.feed > .event > .label + .content { - margin: 0.5em 0em 0.35714286em 1.14285714em; -} - -/*-------------- - Content ----------------*/ - -/* Content */ - -.ui.feed > .event > .content { - display: block; - flex: 1 1 auto; - align-self: stretch; - text-align: left; - word-wrap: break-word; -} - -.ui.feed > .event:last-child > .content { - padding-bottom: 0em; -} - -/* Link */ - -.ui.feed > .event > .content a { - cursor: pointer; -} - -/*-------------- - Date ----------------*/ - -.ui.feed > .event > .content .date { - margin: -0.5rem 0em 0em; - padding: 0em; - font-weight: normal; - font-size: 1em; - font-style: normal; - color: rgba(255, 255, 255, 0.5); -} - -/*-------------- - Summary ----------------*/ - -.ui.feed > .event > .content .summary { - margin: 0em; - font-size: 1em; - font-weight: 600; - color: #DDDDDD; -} - -/* Summary Image */ - -.ui.feed > .event > .content .summary img { - display: inline-block; - width: auto; - height: 10em; - margin: -0.25em 0.25em 0em 0em; - border-radius: 0.25em; - vertical-align: middle; -} - -/*-------------- - User ----------------*/ - -.ui.feed > .event > .content .user { - display: inline-block; - font-weight: 600; - margin-right: 0em; - vertical-align: baseline; -} - -.ui.feed > .event > .content .user img { - margin: -0.25em 0.25em 0em 0em; - width: auto; - height: 10em; - vertical-align: middle; -} - -/*-------------- - Inline Date ----------------*/ - -/* Date inside Summary */ - -.ui.feed > .event > .content .summary > .date { - display: inline-block; - float: none; - font-weight: normal; - font-size: 0.85714286em; - font-style: normal; - margin: 0em 0em 0em 0.5em; - padding: 0em; - color: rgba(255, 255, 255, 0.5); -} - -/*-------------- - Extra Summary ----------------*/ - -.ui.feed > .event > .content .extra { - margin: 0.5em 0em 0em; - background: none; - padding: 0em; - color: #DDDDDD; -} - -/* Images */ - -.ui.feed > .event > .content .extra.images img { - display: inline-block; - margin: 0em 0.25em 0em 0em; - width: 6em; -} - -/* Text */ - -.ui.feed > .event > .content .extra.text { - padding: 0em; - border-left: none; - font-size: 1em; - max-width: 500px; - line-height: 1.4285em; -} - -/*-------------- - Meta ----------------*/ - -.ui.feed > .event > .content .meta { - display: inline-block; - font-size: 0.85714286em; - margin: 0.5em 0em 0em; - background: none; - border: none; - border-radius: 0; - box-shadow: none; - padding: 0em; - color: rgba(0, 0, 0, 0.6); -} - -.ui.feed > .event > .content .meta > * { - position: relative; - margin-left: 0.75em; -} - -.ui.feed > .event > .content .meta > *:after { - content: ''; - color: rgba(0, 0, 0, 0.2); - top: 0em; - left: -1em; - opacity: 1; - position: absolute; - vertical-align: top; -} - -.ui.feed > .event > .content .meta .like { - color: ''; - transition: 0.2s color ease; -} - -.ui.feed > .event > .content .meta .like:hover .icon { - color: #FF2733; -} - -.ui.feed > .event > .content .meta .active.like .icon { - color: #EF404A; -} - -/* First element */ - -.ui.feed > .event > .content .meta > :first-child { - margin-left: 0em; -} - -.ui.feed > .event > .content .meta > :first-child::after { - display: none; -} - -/* Action */ - -.ui.feed > .event > .content .meta a, -.ui.feed > .event > .content .meta > .icon { - cursor: pointer; - opacity: 1; - color: rgba(0, 0, 0, 0.5); - transition: color 0.1s ease; -} - -.ui.feed > .event > .content .meta a:hover, -.ui.feed > .event > .content .meta a:hover .icon, -.ui.feed > .event > .content .meta > .icon:hover { - color: rgba(255, 255, 255, 0.95); -} - -/******************************* - Variations -*******************************/ - -.ui.small.feed { - font-size: 0.92857143rem; -} - -.ui.feed { - font-size: 1rem; -} - -.ui.large.feed { - font-size: 1.14285714rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Item - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Standard -*******************************/ - -/*-------------- - Item ----------------*/ - -.ui.items > .item { - display: flex; - margin: 1em 0em; - width: 100%; - min-height: 0px; - background: transparent; - padding: 0em; - border: none; - border-radius: 0rem; - box-shadow: none; - transition: box-shadow 0.1s ease; - z-index: ''; -} - -.ui.items > .item a { - cursor: pointer; -} - -/*-------------- - Items ----------------*/ - -.ui.items { - margin: 1.5em 0em; -} - -.ui.items:first-child { - margin-top: 0em !important; -} - -.ui.items:last-child { - margin-bottom: 0em !important; -} - -/*-------------- - Item ----------------*/ - -.ui.items > .item:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item:first-child { - margin-top: 0em; -} - -.ui.items > .item:last-child { - margin-bottom: 0em; -} - -/*-------------- - Images ----------------*/ - -.ui.items > .item > .image { - position: relative; - flex: 0 0 auto; - display: block; - float: none; - margin: 0em; - padding: 0em; - max-height: ''; - align-self: top; -} - -.ui.items > .item > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: 0.125rem; - border: none; -} - -.ui.items > .item > .image:only-child > img { - border-radius: 0rem; -} - -/*-------------- - Content ----------------*/ - -.ui.items > .item > .content { - display: block; - flex: 1 1 auto; - background: none; - margin: 0em; - padding: 0em; - box-shadow: none; - font-size: 1em; - border: none; - border-radius: 0em; -} - -.ui.items > .item > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item > .image + .content { - min-width: 0; - width: auto; - display: block; - margin-left: 0em; - align-self: top; - padding-left: 1.5em; -} - -.ui.items > .item > .content > .header { - display: inline-block; - margin: -0.21425em 0em 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-weight: 600; - color: rgba(255, 255, 255, 0.95); -} - -/* Default Header Size */ - -.ui.items > .item > .content > .header:not(.ui) { - font-size: 1.28571429em; -} - -/*-------------- - Floated ----------------*/ - -.ui.items > .item [class*="left floated"] { - float: left; -} - -.ui.items > .item [class*="right floated"] { - float: right; -} - -/*-------------- - Content Image ----------------*/ - -.ui.items > .item .content img { - align-self: middle; - width: ''; -} - -.ui.items > .item img.avatar, -.ui.items > .item .avatar img { - width: ''; - height: ''; - border-radius: 500rem; -} - -/*-------------- - Description ----------------*/ - -.ui.items > .item > .content > .description { - margin-top: 0.6em; - max-width: auto; - font-size: 1em; - line-height: 1.4285em; - color: #DDDDDD; -} - -/*-------------- - Paragraph ----------------*/ - -.ui.items > .item > .content p { - margin: 0em 0em 0.5em; -} - -.ui.items > .item > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.items > .item .meta { - margin: 0.5em 0em 0.5em; - font-size: 1em; - line-height: 1em; - color: rgba(0, 0, 0, 0.6); -} - -.ui.items > .item .meta * { - margin-right: 0.3em; -} - -.ui.items > .item .meta :last-child { - margin-right: 0em; -} - -.ui.items > .item .meta [class*="right floated"] { - margin-right: 0em; - margin-left: 0.3em; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ - -.ui.items > .item > .content a:not(.ui) { - color: ''; - transition: color 0.1s ease; -} - -.ui.items > .item > .content a:not(.ui):hover { - color: ''; -} - -/* Header */ - -.ui.items > .item > .content > a.header { - color: rgba(255, 255, 255, 0.95); -} - -.ui.items > .item > .content > a.header:hover { - color: #729ad0; -} - -/* Meta */ - -.ui.items > .item .meta > a:not(.ui) { - color: rgba(255, 255, 255, 0.5); -} - -.ui.items > .item .meta > a:not(.ui):hover { - color: #DDDDDD; -} - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ - -.ui.items > .item > .content .favorite.icon { - cursor: pointer; - opacity: 0.75; - transition: color 0.1s ease; -} - -.ui.items > .item > .content .favorite.icon:hover { - opacity: 1; - color: #FFB70A; -} - -.ui.items > .item > .content .active.favorite.icon { - color: #FFE623; -} - -/*-----Like----- */ - -/* Icon */ - -.ui.items > .item > .content .like.icon { - cursor: pointer; - opacity: 0.75; - transition: color 0.1s ease; -} - -.ui.items > .item > .content .like.icon:hover { - opacity: 1; - color: #FF2733; -} - -.ui.items > .item > .content .active.like.icon { - color: #FF2733; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.items > .item .extra { - display: block; - position: relative; - background: none; - margin: 0.5rem 0em 0em; - width: 100%; - padding: 0em 0em 0em; - top: 0em; - left: 0em; - color: rgba(255, 255, 255, 0.5); - box-shadow: none; - transition: color 0.1s ease; - border-top: none; -} - -.ui.items > .item .extra > * { - margin: 0.25rem 0.5rem 0.25rem 0em; -} - -.ui.items > .item .extra > [class*="right floated"] { - margin: 0.25rem 0em 0.25rem 0.5rem; -} - -.ui.items > .item .extra:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -/******************************* - Responsive -*******************************/ - -/* Default Image Width */ - -.ui.items > .item > .image:not(.ui) { - width: 175px; -} - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.items > .item { - margin: 1em 0em; - } - - .ui.items > .item > .image:not(.ui) { - width: 150px; - } - - .ui.items > .item > .image + .content { - display: block; - padding: 0em 0em 0em 1em; - } -} - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.items:not(.unstackable) > .item { - flex-direction: column; - margin: 2em 0em; - } - - .ui.items:not(.unstackable) > .item > .image { - display: block; - margin-left: auto; - margin-right: auto; - } - - .ui.items:not(.unstackable) > .item > .image, - .ui.items:not(.unstackable) > .item > .image > img { - max-width: 100% !important; - width: auto !important; - max-height: 250px !important; - } - - .ui.items:not(.unstackable) > .item > .image + .content { - display: block; - padding: 1.5em 0em 0em; - } -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Aligned ---------------------*/ - -.ui.items > .item > .image + [class*="top aligned"].content { - align-self: flex-start; -} - -.ui.items > .item > .image + [class*="middle aligned"].content { - align-self: center; -} - -.ui.items > .item > .image + [class*="bottom aligned"].content { - align-self: flex-end; -} - -/*-------------- - Relaxed ----------------*/ - -.ui.relaxed.items > .item { - margin: 1.5em 0em; -} - -.ui[class*="very relaxed"].items > .item { - margin: 2em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.items > .item { - border-top: 1px solid rgba(24, 26, 28, 0.45); - margin: 0em; - padding: 1em 0em; -} - -.ui.divided.items > .item:first-child { - border-top: none; - margin-top: 0em !important; - padding-top: 0em !important; -} - -.ui.divided.items > .item:last-child { - margin-bottom: 0em !important; - padding-bottom: 0em !important; -} - -/* Relaxed Divided */ - -.ui.relaxed.divided.items > .item { - margin: 0em; - padding: 1.5em 0em; -} - -.ui[class*="very relaxed"].divided.items > .item { - margin: 0em; - padding: 2em 0em; -} - -/*------------------- - Link ---------------------*/ - -.ui.items a.item:hover, -.ui.link.items > .item:hover { - cursor: pointer; -} - -.ui.items a.item:hover .content .header, -.ui.link.items > .item:hover .content .header { - color: #729ad0; -} - -/*-------------- - Size ----------------*/ - -.ui.items > .item { - font-size: 1em; -} - -/*--------------- - Unstackable -----------------*/ - -@media only screen and (max-width: 767px) { - .ui.unstackable.items > .item > .image, - .ui.unstackable.items > .item > .image > img { - width: 125px !important; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Statistic - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Statistic -*******************************/ - -/* Standalone */ - -.ui.statistic { - display: inline-flex; - flex-direction: column; - margin: 1em 0em; - max-width: auto; -} - -.ui.statistic + .ui.statistic { - margin: 0em 0em 0em 1.5em; -} - -.ui.statistic:first-child { - margin-top: 0em; -} - -.ui.statistic:last-child { - margin-bottom: 0em; -} - -/******************************* - Group -*******************************/ - -/* Grouped */ - -.ui.statistics { - display: flex; - align-items: flex-start; - flex-wrap: wrap; -} - -.ui.statistics > .statistic { - display: inline-flex; - flex: 0 1 auto; - flex-direction: column; - margin: 0em 1.5em 1em; - max-width: auto; -} - -.ui.statistics { - display: flex; - margin: 1em -1.5em -1em; -} - -/* Clearing */ - -.ui.statistics:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.statistics:first-child { - margin-top: 0em; -} - -/******************************* - Content -*******************************/ - -/*-------------- - Value ----------------*/ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 4rem; - font-weight: normal; - line-height: 1em; - color: #F9FAFB; - text-transform: uppercase; - text-align: center; -} - -/*-------------- - Label ----------------*/ - -.ui.statistics .statistic > .label, -.ui.statistic > .label { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1em; - font-weight: 600; - color: #DDDDDD; - text-transform: uppercase; - text-align: center; -} - -/* Top Label */ - -.ui.statistics .statistic > .label ~ .value, -.ui.statistic > .label ~ .value { - margin-top: 0rem; -} - -/* Bottom Label */ - -.ui.statistics .statistic > .value ~ .label, -.ui.statistic > .value ~ .label { - margin-top: 0rem; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Icon Value ----------------*/ - -.ui.statistics .statistic > .value .icon, -.ui.statistic > .value .icon { - opacity: 1; - width: auto; - margin: 0em; -} - -/*-------------- - Text Value ----------------*/ - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - line-height: 1em; - min-height: 2em; - font-weight: 600; - text-align: center; -} - -.ui.statistics .statistic > .text.value + .label, -.ui.statistic > .text.value + .label { - text-align: center; -} - -/*-------------- - Image Value ----------------*/ - -.ui.statistics .statistic > .value img, -.ui.statistic > .value img { - max-height: 3rem; - vertical-align: baseline; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Count ----------------*/ - -.ui.ten.statistics { - margin: 0em 0em -1em; -} - -.ui.ten.statistics .statistic { - min-width: 10%; - margin: 0em 0em 1em; -} - -.ui.nine.statistics { - margin: 0em 0em -1em; -} - -.ui.nine.statistics .statistic { - min-width: 11.11111111%; - margin: 0em 0em 1em; -} - -.ui.eight.statistics { - margin: 0em 0em -1em; -} - -.ui.eight.statistics .statistic { - min-width: 12.5%; - margin: 0em 0em 1em; -} - -.ui.seven.statistics { - margin: 0em 0em -1em; -} - -.ui.seven.statistics .statistic { - min-width: 14.28571429%; - margin: 0em 0em 1em; -} - -.ui.six.statistics { - margin: 0em 0em -1em; -} - -.ui.six.statistics .statistic { - min-width: 16.66666667%; - margin: 0em 0em 1em; -} - -.ui.five.statistics { - margin: 0em 0em -1em; -} - -.ui.five.statistics .statistic { - min-width: 20%; - margin: 0em 0em 1em; -} - -.ui.four.statistics { - margin: 0em 0em -1em; -} - -.ui.four.statistics .statistic { - min-width: 25%; - margin: 0em 0em 1em; -} - -.ui.three.statistics { - margin: 0em 0em -1em; -} - -.ui.three.statistics .statistic { - min-width: 33.33333333%; - margin: 0em 0em 1em; -} - -.ui.two.statistics { - margin: 0em 0em -1em; -} - -.ui.two.statistics .statistic { - min-width: 50%; - margin: 0em 0em 1em; -} - -.ui.one.statistics { - margin: 0em 0em -1em; -} - -.ui.one.statistics .statistic { - min-width: 100%; - margin: 0em 0em 1em; -} - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.statistic { - flex-direction: row; - align-items: center; -} - -.ui.horizontal.statistics { - flex-direction: column; - margin: 0em; - max-width: none; -} - -.ui.horizontal.statistics .statistic { - flex-direction: row; - align-items: center; - max-width: none; - margin: 1em 0em; -} - -.ui.horizontal.statistic > .text.value, -.ui.horizontal.statistics > .statistic > .text.value { - min-height: 0em !important; -} - -.ui.horizontal.statistics .statistic > .value .icon, -.ui.horizontal.statistic > .value .icon { - width: 1.18em; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - display: inline-block; - vertical-align: middle; -} - -.ui.horizontal.statistics .statistic > .label, -.ui.horizontal.statistic > .label { - display: inline-block; - vertical-align: middle; - margin: 0em 0em 0em 0.75em; -} - -/*-------------- - Colors ----------------*/ - -.ui.red.statistics .statistic > .value, -.ui.statistics .red.statistic > .value, -.ui.red.statistic > .value { - color: #DB2828; -} - -.ui.orange.statistics .statistic > .value, -.ui.statistics .orange.statistic > .value, -.ui.orange.statistic > .value { - color: #C06D36; -} - -.ui.yellow.statistics .statistic > .value, -.ui.statistics .yellow.statistic > .value, -.ui.yellow.statistic > .value { - color: #FBBD08; -} - -.ui.olive.statistics .statistic > .value, -.ui.statistics .olive.statistic > .value, -.ui.olive.statistic > .value { - color: #B5CC18; -} - -.ui.green.statistics .statistic > .value, -.ui.statistics .green.statistic > .value, -.ui.green.statistic > .value { - color: #21BA45; -} - -.ui.teal.statistics .statistic > .value, -.ui.statistics .teal.statistic > .value, -.ui.teal.statistic > .value { - color: #00B5AD; -} - -.ui.blue.statistics .statistic > .value, -.ui.statistics .blue.statistic > .value, -.ui.blue.statistic > .value { - color: #2185D0; -} - -.ui.violet.statistics .statistic > .value, -.ui.statistics .violet.statistic > .value, -.ui.violet.statistic > .value { - color: #6435C9; -} - -.ui.purple.statistics .statistic > .value, -.ui.statistics .purple.statistic > .value, -.ui.purple.statistic > .value { - color: #A333C8; -} - -.ui.pink.statistics .statistic > .value, -.ui.statistics .pink.statistic > .value, -.ui.pink.statistic > .value { - color: #E03997; -} - -.ui.brown.statistics .statistic > .value, -.ui.statistics .brown.statistic > .value, -.ui.brown.statistic > .value { - color: #A5673F; -} - -.ui.grey.statistics .statistic > .value, -.ui.statistics .grey.statistic > .value, -.ui.grey.statistic > .value { - color: #767676; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.statistics .statistic > .value, -.ui.inverted.statistic .value { - color: #2E3235; -} - -.ui.inverted.statistics .statistic > .label, -.ui.inverted.statistic .label { - color: rgba(0, 0, 0, 0.9); -} - -.ui.inverted.red.statistics .statistic > .value, -.ui.statistics .inverted.red.statistic > .value, -.ui.inverted.red.statistic > .value { - color: #FF695E; -} - -.ui.inverted.orange.statistics .statistic > .value, -.ui.statistics .inverted.orange.statistic > .value, -.ui.inverted.orange.statistic > .value { - color: #FF851B; -} - -.ui.inverted.yellow.statistics .statistic > .value, -.ui.statistics .inverted.yellow.statistic > .value, -.ui.inverted.yellow.statistic > .value { - color: #FFE21F; -} - -.ui.inverted.olive.statistics .statistic > .value, -.ui.statistics .inverted.olive.statistic > .value, -.ui.inverted.olive.statistic > .value { - color: #D9E778; -} - -.ui.inverted.green.statistics .statistic > .value, -.ui.statistics .inverted.green.statistic > .value, -.ui.inverted.green.statistic > .value { - color: #2ECC40; -} - -.ui.inverted.teal.statistics .statistic > .value, -.ui.statistics .inverted.teal.statistic > .value, -.ui.inverted.teal.statistic > .value { - color: #6DFFFF; -} - -.ui.inverted.blue.statistics .statistic > .value, -.ui.statistics .inverted.blue.statistic > .value, -.ui.inverted.blue.statistic > .value { - color: #54C8FF; -} - -.ui.inverted.violet.statistics .statistic > .value, -.ui.statistics .inverted.violet.statistic > .value, -.ui.inverted.violet.statistic > .value { - color: #A291FB; -} - -.ui.inverted.purple.statistics .statistic > .value, -.ui.statistics .inverted.purple.statistic > .value, -.ui.inverted.purple.statistic > .value { - color: #DC73FF; -} - -.ui.inverted.pink.statistics .statistic > .value, -.ui.statistics .inverted.pink.statistic > .value, -.ui.inverted.pink.statistic > .value { - color: #FF8EDF; -} - -.ui.inverted.brown.statistics .statistic > .value, -.ui.statistics .inverted.brown.statistic > .value, -.ui.inverted.brown.statistic > .value { - color: #D67C1C; -} - -.ui.inverted.grey.statistics .statistic > .value, -.ui.statistics .inverted.grey.statistic > .value, -.ui.inverted.grey.statistic > .value { - color: #DCDDDE; -} - -/*-------------- - Floated ----------------*/ - -.ui[class*="left floated"].statistic { - float: left; - margin: 0em 2em 1em 0em; -} - -.ui[class*="right floated"].statistic { - float: right; - margin: 0em 0em 1em 2em; -} - -.ui.floated.statistic:last-child { - margin-bottom: 0em; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ - -.ui.mini.statistics .statistic > .value, -.ui.mini.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.horizontal.statistics .statistic > .value, -.ui.mini.horizontal.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.statistics .statistic > .text.value, -.ui.mini.statistic > .text.value { - font-size: 1rem !important; -} - -/* Tiny */ - -.ui.tiny.statistics .statistic > .value, -.ui.tiny.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.horizontal.statistics .statistic > .value, -.ui.tiny.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.statistics .statistic > .text.value, -.ui.tiny.statistic > .text.value { - font-size: 1rem !important; -} - -/* Small */ - -.ui.small.statistics .statistic > .value, -.ui.small.statistic > .value { - font-size: 3rem !important; -} - -.ui.small.horizontal.statistics .statistic > .value, -.ui.small.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.small.statistics .statistic > .text.value, -.ui.small.statistic > .text.value { - font-size: 1rem !important; -} - -/* Medium */ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-size: 4rem !important; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - font-size: 3rem !important; -} - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - font-size: 2rem !important; -} - -/* Large */ - -.ui.large.statistics .statistic > .value, -.ui.large.statistic > .value { - font-size: 5rem !important; -} - -.ui.large.horizontal.statistics .statistic > .value, -.ui.large.horizontal.statistic > .value { - font-size: 4rem !important; -} - -.ui.large.statistics .statistic > .text.value, -.ui.large.statistic > .text.value { - font-size: 2.5rem !important; -} - -/* Huge */ - -.ui.huge.statistics .statistic > .value, -.ui.huge.statistic > .value { - font-size: 6rem !important; -} - -.ui.huge.horizontal.statistics .statistic > .value, -.ui.huge.horizontal.statistic > .value { - font-size: 5rem !important; -} - -.ui.huge.statistics .statistic > .text.value, -.ui.huge.statistic > .text.value { - font-size: 2.5rem !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! - * # Semantic UI - Accordion - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Accordion -*******************************/ - -.ui.accordion, -.ui.accordion .accordion { - max-width: 100%; -} - -.ui.accordion .accordion { - margin: 1em 0em 0em; - padding: 0em; -} - -/* Title */ - -.ui.accordion .title, -.ui.accordion .accordion .title { - cursor: pointer; -} - -/* Default Styling */ - -.ui.accordion .title:not(.ui) { - padding: 0.5em 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1em; - color: #DDDDDD; -} - -/* Content */ - -.ui.accordion .title ~ .content, -.ui.accordion .accordion .title ~ .content { - display: none; -} - -/* Default Styling */ - -.ui.accordion:not(.styled) .title ~ .content:not(.ui), -.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) { - margin: ''; - padding: 0.5em 0em 1em; -} - -.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child { - padding-bottom: 0em; -} - -/* Arrow */ - -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - display: inline-block; - float: none; - opacity: 1; - width: 1.25em; - height: 1em; - margin: 0em 0.25rem 0em 0rem; - padding: 0em; - font-size: 1em; - transition: transform 0.1s ease, opacity 0.1s ease; - vertical-align: baseline; - transform: none; -} - -/*-------------- - Coupling ----------------*/ - -/* Menu */ - -.ui.accordion.menu .item .title { - display: block; - padding: 0em; -} - -.ui.accordion.menu .item .title > .dropdown.icon { - float: right; - margin: 0.21425em 0em 0em 1em; - transform: rotate(180deg); -} - -/* Header */ - -.ui.accordion .ui.header .dropdown.icon { - font-size: 1em; - margin: 0em 0.25rem 0em 0rem; -} - -/******************************* - States -*******************************/ - -.ui.accordion .active.title .dropdown.icon, -.ui.accordion .accordion .active.title .dropdown.icon { - transform: rotate(90deg); -} - -.ui.accordion.menu .item .active.title > .dropdown.icon { - transform: rotate(90deg); -} - -/******************************* - Types -*******************************/ - -/*-------------- - Styled ----------------*/ - -.ui.styled.accordion { - width: 600px; -} - -.ui.styled.accordion, -.ui.styled.accordion .accordion { - border-radius: 0.35714286rem; - background: #2E3235; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), 0px 0px 0px 1px rgba(24, 26, 28, 0.45); -} - -.ui.styled.accordion .title, -.ui.styled.accordion .accordion .title { - margin: 0em; - padding: 0.75em 1em; - color: rgba(255, 255, 255, 0.4); - font-weight: 600; - border-top: 1px solid rgba(24, 26, 28, 0.45); - transition: background 0.1s ease, color 0.1s ease; -} - -.ui.styled.accordion > .title:first-child, -.ui.styled.accordion .accordion .title:first-child { - border-top: none; -} - -/* Content */ - -.ui.styled.accordion .content, -.ui.styled.accordion .accordion .content { - margin: 0em; - padding: 0.5em 1em 1.5em; -} - -.ui.styled.accordion .accordion .content { - padding: 0em; - padding: 0.5em 1em 1.5em; -} - -/* Hover */ - -.ui.styled.accordion .title:hover, -.ui.styled.accordion .active.title, -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: #DDDDDD; -} - -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: #DDDDDD; -} - -/* Active */ - -.ui.styled.accordion .active.title { - background: transparent; - color: rgba(255, 255, 255, 0.95); -} - -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: rgba(255, 255, 255, 0.95); -} - -/******************************* - States -*******************************/ - -/*-------------- - Active ----------------*/ - -.ui.accordion .active.content, -.ui.accordion .accordion .active.content { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.accordion, -.ui.fluid.accordion .accordion { - width: 100%; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.accordion .title:not(.ui) { - color: rgba(0, 0, 0, 0.9); -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Accordion'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff'); - font-weight: normal; - font-style: normal; -} - -/* Dropdown Icon */ - -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - font-family: Accordion; - line-height: 1; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.accordion .title .dropdown.icon:before, -.ui.accordion .accordion .title .dropdown.icon:before { - content: '\f0da' ; -} - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Checkbox - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Checkbox -*******************************/ - -/*-------------- - Content ----------------*/ - -.ui.checkbox { - position: relative; - display: inline-block; - backface-visibility: hidden; - outline: none; - vertical-align: baseline; - font-style: normal; - min-height: 17px; - font-size: 1rem; - line-height: 17px; - min-width: 17px; -} - -/* HTML Checkbox */ - -.ui.checkbox input[type="checkbox"], -.ui.checkbox input[type="radio"] { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - opacity: 0 !important; - outline: none; - z-index: 3; - width: 17px; - height: 17px; -} - -/*-------------- - Box ----------------*/ - -.ui.checkbox .box, -.ui.checkbox label { - cursor: auto; - position: relative; - display: block; - padding-left: 1.85714em; - outline: none; - font-size: 1em; -} - -.ui.checkbox .box:before, -.ui.checkbox label:before { - position: absolute; - top: 0px; - left: 0px; - width: 17px; - height: 17px; - content: ''; - background: rgba(0, 0, 0, 0.2); - border-radius: 0.21428571rem; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; - border: 1px solid #3B3C3E; -} - -/*-------------- - Checkmark ----------------*/ - -.ui.checkbox .box:after, -.ui.checkbox label:after { - position: absolute; - font-size: 14px; - top: 0px; - left: 0px; - width: 17px; - height: 17px; - text-align: center; - opacity: 0; - color: #DDDDDD; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; -} - -/*-------------- - Label ----------------*/ - -/* Inside */ - -.ui.checkbox label, -.ui.checkbox + label { - color: #DDDDDD; - transition: color 0.1s ease; -} - -/* Outside */ - -.ui.checkbox + label { - vertical-align: middle; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.checkbox .box:hover::before, -.ui.checkbox label:hover::before { - background: rgba(0, 0, 0, 0.2); - border-color: rgba(24, 26, 28, 0.35); -} - -.ui.checkbox label:hover, -.ui.checkbox + label:hover { - color: rgba(255, 255, 255, 0.8); -} - -/*-------------- - Down ----------------*/ - -.ui.checkbox .box:active::before, -.ui.checkbox label:active::before { - background: #34393D; - border-color: rgba(24, 26, 28, 0.35); -} - -.ui.checkbox .box:active::after, -.ui.checkbox label:active::after { - color: rgba(255, 255, 255, 0.95); -} - -.ui.checkbox input:active ~ label { - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Focus ----------------*/ - -.ui.checkbox input:focus ~ .box:before, -.ui.checkbox input:focus ~ label:before { - background: #2E3235; - border-color: #96C8DA; -} - -.ui.checkbox input:focus ~ .box:after, -.ui.checkbox input:focus ~ label:after { - color: rgba(255, 255, 255, 0.95); -} - -.ui.checkbox input:focus ~ label { - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Active ----------------*/ - -.ui.checkbox input:checked ~ .box:before, -.ui.checkbox input:checked ~ label:before { - background: rgba(0, 0, 0, 0.2); - border-color: rgba(24, 26, 28, 0.35); -} - -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - opacity: 1; - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Indeterminate ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:before { - background: rgba(0, 0, 0, 0.2); - border-color: rgba(24, 26, 28, 0.35); -} - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:after { - opacity: 1; - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Active Focus ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before, -.ui.checkbox input:checked:focus ~ .box:before, -.ui.checkbox input:checked:focus ~ label:before { - background: #2E3235; - border-color: #96C8DA; -} - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after, -.ui.checkbox input:checked:focus ~ .box:after, -.ui.checkbox input:checked:focus ~ label:after { - color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Read-Only ----------------*/ - -.ui.read-only.checkbox, -.ui.read-only.checkbox label { - cursor: default; -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.checkbox .box:after, -.ui.disabled.checkbox label, -.ui.checkbox input[disabled] ~ .box:after, -.ui.checkbox input[disabled] ~ label { - cursor: default !important; - opacity: 0.5; - color: #000000; -} - -/*-------------- - Hidden ----------------*/ - -/* Initialized checkbox moves input below element - to prevent manually triggering */ - -.ui.checkbox input.hidden { - z-index: -1; -} - -/* Selectable Label */ - -.ui.checkbox input.hidden + label { - cursor: pointer; - user-select: none; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Radio ----------------*/ - -.ui.radio.checkbox { - min-height: 15px; -} - -.ui.radio.checkbox .box, -.ui.radio.checkbox label { - padding-left: 1.85714em; -} - -/* Box */ - -.ui.radio.checkbox .box:before, -.ui.radio.checkbox label:before { - content: ''; - transform: none; - width: 15px; - height: 15px; - border-radius: 500rem; - top: 1px; - left: 0px; -} - -/* Bullet */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - border: none; - content: '' !important; - width: 15px; - height: 15px; - line-height: 15px; -} - -/* Radio Checkbox */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - top: 1px; - left: 0px; - width: 15px; - height: 15px; - border-radius: 500rem; - transform: scale(0.46666667); - background-color: #DDDDDD; -} - -/* Focus */ - -.ui.radio.checkbox input:focus ~ .box:before, -.ui.radio.checkbox input:focus ~ label:before { - background-color: #2E3235; -} - -.ui.radio.checkbox input:focus ~ .box:after, -.ui.radio.checkbox input:focus ~ label:after { - background-color: rgba(255, 255, 255, 0.95); -} - -/* Indeterminate */ - -.ui.radio.checkbox input:indeterminate ~ .box:after, -.ui.radio.checkbox input:indeterminate ~ label:after { - opacity: 0; -} - -/* Active */ - -.ui.radio.checkbox input:checked ~ .box:before, -.ui.radio.checkbox input:checked ~ label:before { - background-color: rgba(0, 0, 0, 0.2); -} - -.ui.radio.checkbox input:checked ~ .box:after, -.ui.radio.checkbox input:checked ~ label:after { - background-color: rgba(255, 255, 255, 0.95); -} - -/* Active Focus */ - -.ui.radio.checkbox input:focus:checked ~ .box:before, -.ui.radio.checkbox input:focus:checked ~ label:before { - background-color: #2E3235; -} - -.ui.radio.checkbox input:focus:checked ~ .box:after, -.ui.radio.checkbox input:focus:checked ~ label:after { - background-color: rgba(255, 255, 255, 0.95); -} - -/*-------------- - Slider ----------------*/ - -.ui.slider.checkbox { - min-height: 1.25rem; -} - -/* Input */ - -.ui.slider.checkbox input { - width: 3.5rem; - height: 1.25rem; -} - -/* Label */ - -.ui.slider.checkbox .box, -.ui.slider.checkbox label { - padding-left: 4.5rem; - line-height: 1rem; - color: rgba(255, 255, 255, 0.4); -} - -/* Line */ - -.ui.slider.checkbox .box:before, -.ui.slider.checkbox label:before { - display: block; - position: absolute; - content: ''; - border: none !important; - left: 0em; - z-index: 1; - top: 0.4rem; - background-color: rgba(255, 255, 255, 0.05); - width: 3.5rem; - height: 0.21428571rem; - transform: none; - border-radius: 500rem; - transition: background 0.3s ease; -} - -/* Handle */ - -.ui.slider.checkbox .box:after, -.ui.slider.checkbox label:after { - background: #2E3235 linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - border: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; - width: 1.5rem; - height: 1.5rem; - top: -0.25rem; - left: 0em; - transform: none; - border-radius: 500rem; - transition: left 0.3s ease; -} - -/* Focus */ - -.ui.slider.checkbox input:focus ~ .box:before, -.ui.slider.checkbox input:focus ~ label:before { - background-color: rgba(255, 255, 255, 0.15); - border: none; -} - -/* Hover */ - -.ui.slider.checkbox .box:hover, -.ui.slider.checkbox label:hover { - color: rgba(255, 255, 255, 0.8); -} - -.ui.slider.checkbox .box:hover::before, -.ui.slider.checkbox label:hover::before { - background: rgba(255, 255, 255, 0.15); -} - -/* Active */ - -.ui.slider.checkbox input:checked ~ .box, -.ui.slider.checkbox input:checked ~ label { - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.slider.checkbox input:checked ~ .box:before, -.ui.slider.checkbox input:checked ~ label:before { - background-color: #545454 !important; -} - -.ui.slider.checkbox input:checked ~ .box:after, -.ui.slider.checkbox input:checked ~ label:after { - left: 2rem; -} - -/* Active Focus */ - -.ui.slider.checkbox input:focus:checked ~ .box, -.ui.slider.checkbox input:focus:checked ~ label { - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.slider.checkbox input:focus:checked ~ .box:before, -.ui.slider.checkbox input:focus:checked ~ label:before { - background-color: #ebebeb !important; -} - -/*-------------- - Toggle ----------------*/ - -.ui.toggle.checkbox { - min-height: 1.5rem; -} - -/* Input */ - -.ui.toggle.checkbox input { - width: 3.5rem; - height: 1.5rem; -} - -/* Label */ - -.ui.toggle.checkbox .box, -.ui.toggle.checkbox label { - min-height: 1.5rem; - padding-left: 4.5rem; - color: #DDDDDD; -} - -.ui.toggle.checkbox label { - padding-top: 0.15em; -} - -/* Switch */ - -.ui.toggle.checkbox .box:before, -.ui.toggle.checkbox label:before { - display: block; - position: absolute; - content: ''; - z-index: 1; - transform: none; - border: none; - top: 0rem; - background: rgba(255, 255, 255, 0.05); - box-shadow: none; - width: 3.5rem; - height: 1.5rem; - border-radius: 500rem; -} - -/* Handle */ - -.ui.toggle.checkbox .box:after, -.ui.toggle.checkbox label:after { - background: #2E3235 linear-gradient(transparent, rgba(255, 255, 255, 0.05)); - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - border: none; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; - width: 1.5rem; - height: 1.5rem; - top: 0rem; - left: 0em; - border-radius: 500rem; - transition: background 0.3s ease, left 0.3s ease; -} - -.ui.toggle.checkbox input ~ .box:after, -.ui.toggle.checkbox input ~ label:after { - left: -0.05rem; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; -} - -/* Focus */ - -.ui.toggle.checkbox input:focus ~ .box:before, -.ui.toggle.checkbox input:focus ~ label:before { - background-color: rgba(255, 255, 255, 0.15); - border: none; -} - -/* Hover */ - -.ui.toggle.checkbox .box:hover::before, -.ui.toggle.checkbox label:hover::before { - background-color: rgba(255, 255, 255, 0.15); - border: none; -} - -/* Active */ - -.ui.toggle.checkbox input:checked ~ .box, -.ui.toggle.checkbox input:checked ~ label { - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.toggle.checkbox input:checked ~ .box:before, -.ui.toggle.checkbox input:checked ~ label:before { - background-color: #6987AF !important; -} - -.ui.toggle.checkbox input:checked ~ .box:after, -.ui.toggle.checkbox input:checked ~ label:after { - left: 2.15rem; - box-shadow: 0px 1px 2px 0 rgba(24, 26, 28, 0.45), 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; -} - -/* Active Focus */ - -.ui.toggle.checkbox input:focus:checked ~ .box, -.ui.toggle.checkbox input:focus:checked ~ label { - color: rgba(255, 255, 255, 0.95) !important; -} - -.ui.toggle.checkbox input:focus:checked ~ .box:before, -.ui.toggle.checkbox input:focus:checked ~ label:before { - background-color: #4c71a3 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.checkbox .box, -.ui.fitted.checkbox label { - padding-left: 0em !important; -} - -.ui.fitted.toggle.checkbox, -.ui.fitted.toggle.checkbox { - width: 3.5rem; -} - -.ui.fitted.slider.checkbox, -.ui.fitted.slider.checkbox { - width: 3.5rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Checkbox'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'); -} - -/* Checkmark */ - -.ui.checkbox label:after, -.ui.checkbox .box:after { - font-family: 'Checkbox'; -} - -/* Checked */ - -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - content: '\e800'; -} - -/* Indeterminate */ - -.ui.checkbox input:indeterminate ~ .box:after, -.ui.checkbox input:indeterminate ~ label:after { - font-size: 12px; - content: '\e801'; -} - -/* UTF Reference -.check:before { content: '\e800'; } -.dash:before { content: '\e801'; } -.plus:before { content: '\e802'; } -*/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Dimmer - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Dimmer -*******************************/ - -.dimmable:not(body) { - position: relative; -} - -.ui.dimmer { - display: none; - position: absolute; - top: 0em !important; - left: 0em !important; - width: 100%; - height: 100%; - text-align: center; - vertical-align: middle; - padding: 1em; - background-color: rgba(0, 0, 0, 0.25); - opacity: 0; - line-height: 1; - animation-fill-mode: both; - animation-duration: 0.5s; - transition: background-color 0.5s linear; - flex-direction: column; - align-items: center; - justify-content: center; - user-select: none; - will-change: opacity; - z-index: 1000; -} - -/* Dimmer Content */ - -.ui.dimmer > .content { - user-select: text; - color: #2E3235; -} - -/* Loose Coupling */ - -.ui.segment > .ui.dimmer { - border-radius: inherit !important; -} - -/* Scrollbars */ - -/******************************* - States -*******************************/ - -/* Animating */ - -.animating.dimmable:not(body), -.dimmed.dimmable:not(body) { - overflow: hidden; -} - -/* Animating / Active / Visible */ - -.dimmed.dimmable > .ui.animating.dimmer, -.dimmed.dimmable > .ui.visible.dimmer, -.ui.active.dimmer { - display: flex; - opacity: 1; -} - -/* Disabled */ - -.ui.disabled.dimmer { - width: 0 !important; - height: 0 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Legacy ----------------*/ - -/* Animating / Active / Visible */ - -.dimmed.dimmable > .ui.animating.legacy.dimmer, -.dimmed.dimmable > .ui.visible.legacy.dimmer, -.ui.active.legacy.dimmer { - display: block; -} - -/*-------------- - Alignment ----------------*/ - -.ui[class*="top aligned"].dimmer { - justify-content: flex-start; -} - -.ui[class*="bottom aligned"].dimmer { - justify-content: flex-end; -} - -/*-------------- - Page ----------------*/ - -.ui.page.dimmer { - position: fixed; - transform-style: ''; - perspective: 2000px; - transform-origin: center center; -} - -body.animating.in.dimmable, -body.dimmed.dimmable { - overflow: hidden; -} - -body.dimmable > .dimmer { - position: fixed; -} - -/*-------------- - Blurring ----------------*/ - -.blurring.dimmable > :not(.dimmer) { - filter: blur(0px) grayscale(0); - transition: 800ms filter ease; -} - -.blurring.dimmed.dimmable > :not(.dimmer) { - filter: blur(5px) grayscale(0.7); -} - -/* Dimmer Color */ - -.blurring.dimmable > .dimmer { - background-color: rgba(0, 0, 0, 0.6); -} - -.blurring.dimmable > .inverted.dimmer { - background-color: rgba(255, 255, 255, 0.6); -} - -/*-------------- - Aligned ----------------*/ - -.ui.dimmer > .top.aligned.content > * { - vertical-align: top; -} - -.ui.dimmer > .bottom.aligned.content > * { - vertical-align: bottom; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.dimmer { - background-color: rgba(255, 255, 255, 0.85); -} - -.ui.inverted.dimmer > .content > * { - color: #2E3235; -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dimmer { - display: block; - overflow: hidden; - opacity: 1; - width: 0%; - height: 0%; - z-index: -100; - background-color: rgba(0, 0, 0, 0); -} - -.dimmed.dimmable > .ui.simple.dimmer { - overflow: visible; - opacity: 1; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.25); - z-index: 1; -} - -.ui.simple.inverted.dimmer { - background-color: rgba(255, 255, 255, 0); -} - -.dimmed.dimmable > .ui.simple.inverted.dimmer { - background-color: rgba(255, 255, 255, 0.85); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Dropdown - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Dropdown -*******************************/ - -.ui.dropdown { - cursor: pointer; - position: relative; - display: inline-block; - text-align: left; - transition: box-shadow 0.1s ease, width 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; - outline: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/******************************* - Content -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.dropdown .menu { - cursor: auto; - position: absolute; - display: none; - outline: none; - top: 100%; - min-width: max-content; - margin: 0em; - padding: 0em 0em; - background: #2E3235; - font-size: 1em; - text-shadow: none; - text-align: left; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); - border: 1px solid rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; - transition: opacity 0.1s ease; - z-index: 11; - will-change: transform, opacity; -} - -.ui.dropdown .menu > * { - white-space: nowrap; -} - -/*-------------- - Hidden Input ----------------*/ - -.ui.dropdown > input:not(.search):first-child, -.ui.dropdown > select { - display: none !important; -} - -/*-------------- - Dropdown Icon ----------------*/ - -.ui.dropdown > .dropdown.icon { - position: relative; - width: auto; - font-size: 0.85714286em; - margin: 0em 0em 0em 1em; -} - -.ui.dropdown .menu > .item .dropdown.icon { - width: auto; - float: right; - margin: 0em 0em 0em 1em; -} - -.ui.dropdown .menu > .item .dropdown.icon + .text { - margin-right: 1em; -} - -/*-------------- - Text ----------------*/ - -.ui.dropdown > .text { - display: inline-block; - transition: outline-offset 100ms ease, outline-color 100ms ease; -} - -/*-------------- - Menu Item ----------------*/ - -.ui.dropdown .menu > .item { - position: relative; - cursor: pointer; - display: block; - border: none; - height: auto; - text-align: left; - border-top: none; - line-height: 1em; - color: #DDDDDD; - padding: 0.78571429rem 1.14285714rem !important; - font-size: 1rem; - text-transform: none; - font-weight: normal; - box-shadow: none; - -webkit-touch-callout: none; -} - -.ui.dropdown .menu > .item:first-child { - border-top-width: 0px; -} - -/*-------------- - Floated Content ----------------*/ - -.ui.dropdown > .text > [class*="right floated"], -.ui.dropdown .menu .item > [class*="right floated"] { - float: right !important; - margin-right: 0em !important; - margin-left: 1em !important; -} - -.ui.dropdown > .text > [class*="left floated"], -.ui.dropdown .menu .item > [class*="left floated"] { - float: left !important; - margin-left: 0em !important; - margin-right: 1em !important; -} - -.ui.dropdown .menu .item > .icon.floated, -.ui.dropdown .menu .item > .flag.floated, -.ui.dropdown .menu .item > .image.floated, -.ui.dropdown .menu .item > img.floated { - margin-top: 0em; -} - -/*-------------- - Menu Divider ----------------*/ - -.ui.dropdown .menu > .header { - margin: 1rem 0rem 0.75rem; - padding: 0em 1.14285714rem; - color: rgba(255, 255, 255, 0.95); - font-size: 0.78571429em; - font-weight: 600; - text-transform: uppercase; -} - -.ui.dropdown .menu > .divider { - border-top: 1px solid rgba(24, 26, 28, 0.1); - height: 0em; - margin: 0.5em 0em; -} - -.ui.dropdown.dropdown .menu > .input { - width: auto; - display: flex; - margin: 1.14285714rem 0.78571429rem; - min-width: 10rem; -} - -.ui.dropdown .menu > .header + .input { - margin-top: 0em; -} - -.ui.dropdown .menu > .input:not(.transparent) input { - padding: 0.5em 1em; -} - -.ui.dropdown .menu > .input:not(.transparent) .button, -.ui.dropdown .menu > .input:not(.transparent) .icon, -.ui.dropdown .menu > .input:not(.transparent) .label { - padding-top: 0.5em; - padding-bottom: 0.5em; -} - -/*----------------- - Item Description --------------------*/ - -.ui.dropdown > .text > .description, -.ui.dropdown .menu > .item > .description { - float: right; - margin: 0em 0em 0em 1em; - color: rgba(255, 255, 255, 0.5); -} - -/*----------------- - Message --------------------*/ - -.ui.dropdown .menu > .message { - padding: 0.78571429rem 1.14285714rem; - font-weight: normal; -} - -.ui.dropdown .menu > .message:not(.ui) { - color: rgba(255, 255, 255, 0.4); -} - -/*-------------- - Sub Menu ----------------*/ - -.ui.dropdown .menu .menu { - top: 0% !important; - left: 100%; - right: auto; - margin: 0em 0em 0em -0.5em !important; - border-radius: 0.35714286rem !important; - z-index: 21 !important; -} - -/* Hide Arrow */ - -.ui.dropdown .menu .menu:after { - display: none; -} - -/*-------------- - Sub Elements ----------------*/ - -/* Icons / Flags / Labels / Image */ - -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image { - margin-top: 0em; -} - -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-top: 0em; -} - -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-left: 0em; - float: none; - margin-right: 0.78571429rem; -} - -/*-------------- - Image ----------------*/ - -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - display: inline-block; - vertical-align: top; - width: auto; - margin-top: -0.5em; - margin-bottom: -0.5em; - max-height: 2em; -} - -/******************************* - Coupling -*******************************/ - -/*-------------- - Menu ----------------*/ - -/* Remove Menu Item Divider */ - -.ui.dropdown .ui.menu > .item:before, -.ui.menu .ui.dropdown .menu > .item:before { - display: none; -} - -/* Prevent Menu Item Border */ - -.ui.menu .ui.dropdown .menu .active.item { - border-left: none; -} - -/* Automatically float dropdown menu right on last menu item */ - -.ui.menu .right.menu .dropdown:last-child .menu, -.ui.menu .right.dropdown.item .menu, -.ui.buttons > .ui.dropdown:last-child .menu { - left: auto; - right: 0em; -} - -/*-------------- - Label ----------------*/ - -/* Dropdown Menu */ - -.ui.label.dropdown .menu { - min-width: 100%; -} - -/*-------------- - Button ----------------*/ - -/* No Margin On Icon Button */ - -.ui.dropdown.icon.button > .dropdown.icon { - margin: 0em; -} - -.ui.button.dropdown .menu { - min-width: 100%; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -/* Displays like a select box */ - -.ui.selection.dropdown { - cursor: pointer; - word-wrap: break-word; - line-height: 1em; - white-space: normal; - transform: rotateZ(0deg); - min-width: 14em; - min-height: 2.71428571em; - background: #2E3235; - display: inline-block; - padding: 0.78571429em 2.1em 0.78571429em 1em; - color: #DDDDDD; - box-shadow: none; - border: 1px solid rgba(24, 26, 28, 0.45); - border-radius: 0.35714286rem; - transition: box-shadow 0.1s ease, width 0.1s ease, outline-offset 0.1s ease, outline-color 0.1s ease; -} - -.ui.selection.dropdown.visible, -.ui.selection.dropdown.active { - z-index: 10; -} - -select.ui.dropdown { - height: 38px; - padding: 0.5em; - border: 1px solid rgba(24, 26, 28, 0.45); - visibility: visible; -} - -.ui.selection.dropdown > .search.icon, -.ui.selection.dropdown > .delete.icon, -.ui.selection.dropdown > .dropdown.icon { - cursor: pointer; - position: absolute; - width: auto; - height: auto; - line-height: 1.21428571em; - top: 0.78571429em; - right: 1em; - z-index: 3; - margin: -0.78571429em; - padding: 0.91666667em; - opacity: 0.8; - transition: opacity 0.1s ease; -} - -/* Compact */ - -.ui.compact.selection.dropdown { - min-width: 0px; -} - -/* Selection Menu */ - -.ui.selection.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - border-top-width: 0px !important; - width: auto; - outline: none; - margin: 0px -1px; - min-width: calc(100% + 2px ); - width: calc(100% + 2px ); - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); - transition: opacity 0.1s ease; -} - -.ui.selection.dropdown .menu:after, -.ui.selection.dropdown .menu:before { - display: none; -} - -/*-------------- - Message ----------------*/ - -.ui.selection.dropdown .menu > .message { - padding: 0.78571429rem 1.14285714rem; -} - -@media only screen and (max-width: 767px) { - .ui.selection.dropdown .menu { - max-height: 8.01428571rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.selection.dropdown .menu { - max-height: 10.68571429rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.selection.dropdown .menu { - max-height: 16.02857143rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.selection.dropdown .menu { - max-height: 21.37142857rem; - } -} - -/* Menu Item */ - -.ui.selection.dropdown .menu > .item { - border-top: 1px solid #222222; - padding: 0.78571429rem 1.14285714rem !important; - white-space: normal; - word-wrap: normal; -} - -/* User Item */ - -.ui.selection.dropdown .menu > .hidden.addition.item { - display: none; -} - -/* Hover */ - -.ui.selection.dropdown:hover { - border-color: rgba(24, 26, 28, 0.35); - box-shadow: none; -} - -/* Active */ - -.ui.selection.active.dropdown { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); -} - -.ui.selection.active.dropdown .menu { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); -} - -/* Focus */ - -.ui.selection.dropdown:focus { - border-color: #96C8DA; - box-shadow: none; -} - -.ui.selection.dropdown:focus .menu { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); -} - -/* Visible */ - -.ui.selection.visible.dropdown > .text:not(.default) { - font-weight: normal; - color: rgba(255, 255, 255, 0.8); -} - -/* Visible Hover */ - -.ui.selection.active.dropdown:hover { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); -} - -.ui.selection.active.dropdown:hover .menu { - border-color: #96C8DA; - box-shadow: 0px 2px 3px 0px rgba(24, 26, 28, 0.45); -} - -/* Dropdown Icon */ - -.ui.active.selection.dropdown > .dropdown.icon, -.ui.visible.selection.dropdown > .dropdown.icon { - opacity: ''; - z-index: 3; -} - -/* Connecting Border */ - -.ui.active.selection.dropdown { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -/* Empty Connecting Border */ - -.ui.active.empty.selection.dropdown { - border-radius: 0.35714286rem !important; - box-shadow: none !important; -} - -.ui.active.empty.selection.dropdown .menu { - border: none !important; - box-shadow: none !important; -} - -/*-------------- - Searchable ----------------*/ - -/* Search Selection */ - -.ui.search.dropdown { - min-width: ''; -} - -/* Search Dropdown */ - -.ui.search.dropdown > input.search { - background: none transparent !important; - border: none !important; - box-shadow: none !important; - cursor: text; - top: 0em; - left: 1px; - width: 100%; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - padding: inherit; -} - -/* Text Layering */ - -.ui.search.dropdown > input.search { - position: absolute; - z-index: 2; -} - -.ui.search.dropdown > .text { - cursor: text; - position: relative; - left: 1px; - z-index: 3; -} - -/* Search Selection */ - -.ui.search.selection.dropdown > input.search { - line-height: 1.21428571em; - padding: 0.67857143em 2.1em 0.67857143em 1em; -} - -/* Used to size multi select input to character width */ - -.ui.search.selection.dropdown > span.sizer { - line-height: 1.21428571em; - padding: 0.67857143em 2.1em 0.67857143em 1em; - display: none; - white-space: pre; -} - -/* Active/Visible Search */ - -.ui.search.dropdown.active > input.search, -.ui.search.dropdown.visible > input.search { - cursor: auto; -} - -.ui.search.dropdown.active > .text, -.ui.search.dropdown.visible > .text { - pointer-events: none; -} - -/* Filtered Text */ - -.ui.active.search.dropdown input.search:focus + .text .icon, -.ui.active.search.dropdown input.search:focus + .text .flag { - opacity: 0.45; -} - -.ui.active.search.dropdown input.search:focus + .text { - color: #777777 !important; -} - -/* Search Menu */ - -.ui.search.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; -} - -@media only screen and (max-width: 767px) { - .ui.search.dropdown .menu { - max-height: 8.01428571rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.search.dropdown .menu { - max-height: 10.68571429rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.search.dropdown .menu { - max-height: 16.02857143rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.search.dropdown .menu { - max-height: 21.37142857rem; - } -} - -/*-------------- - Multiple ----------------*/ - -/* Multiple Selection */ - -.ui.multiple.dropdown { - padding: 0.22619048em 2.1em 0.22619048em 0.35714286em; -} - -.ui.multiple.dropdown .menu { - cursor: auto; -} - -/* Multiple Search Selection */ - -.ui.multiple.search.dropdown, -.ui.multiple.search.dropdown > input.search { - cursor: text; -} - -/* Selection Label */ - -.ui.multiple.dropdown > .label { - user-select: none; - display: inline-block; - vertical-align: top; - white-space: normal; - font-size: 1em; - padding: 0.35714286em 0.78571429em; - margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; - box-shadow: 0px 0px 0px 1px rgba(24, 26, 28, 0.45) inset; -} - -/* Dropdown Icon */ - -.ui.multiple.dropdown .dropdown.icon { - margin: ''; - padding: ''; -} - -/* Text */ - -.ui.multiple.dropdown > .text { - position: static; - padding: 0; - max-width: 100%; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - line-height: 1.21428571em; -} - -.ui.multiple.dropdown > .label ~ input.search { - margin-left: 0.14285714em !important; -} - -.ui.multiple.dropdown > .label ~ .text { - display: none; -} - -/*----------------- - Multiple Search ------------------*/ - -/* Prompt Text */ - -.ui.multiple.search.dropdown > .text { - display: inline-block; - position: absolute; - top: 0; - left: 0; - padding: inherit; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - line-height: 1.21428571em; -} - -.ui.multiple.search.dropdown > .label ~ .text { - display: none; -} - -/* Search */ - -.ui.multiple.search.dropdown > input.search { - position: static; - padding: 0; - max-width: 100%; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - width: 2.2em; - line-height: 1.21428571em; -} - -/*-------------- - Inline ----------------*/ - -.ui.inline.dropdown { - cursor: pointer; - display: inline-block; - color: inherit; -} - -.ui.inline.dropdown .dropdown.icon { - margin: 0em 0.21428571em 0em 0.21428571em; - vertical-align: baseline; -} - -.ui.inline.dropdown > .text { - font-weight: 600; -} - -.ui.inline.dropdown .menu { - cursor: auto; - margin-top: 0.21428571em; - border-radius: 0.35714286rem; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Active -----------------------*/ - -/* Menu Item Active */ - -.ui.dropdown .menu .active.item { - background: transparent; - font-weight: 600; - color: rgba(255, 255, 255, 0.95); - box-shadow: none; - z-index: 12; -} - -/*-------------------- - Hover -----------------------*/ - -/* Menu Item Hover */ - -.ui.dropdown .menu > .item:hover { - background: rgba(255, 255, 255, 0.05); - color: rgba(255, 255, 255, 0.95); - z-index: 13; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.dropdown > i.icon { - height: 1em !important; -} - -.ui.loading.selection.dropdown > i.icon { - padding: 1.5em 1.28571429em !important; -} - -.ui.loading.dropdown > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.dropdown > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - box-shadow: 0px 0px 0px 1px transparent; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - animation: dropdown-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; -} - -/* Coupling */ - -.ui.loading.dropdown.button > i.icon:before, -.ui.loading.dropdown.button > i.icon:after { - display: none; -} - -@keyframes dropdown-spin { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -/*-------------------- - Default Text -----------------------*/ - -.ui.dropdown:not(.button) > .default.text, -.ui.default.dropdown:not(.button) > .text { - color: #777777; -} - -.ui.dropdown:not(.button) > input:focus ~ .default.text, -.ui.default.dropdown:not(.button) > input:focus ~ .text { - color: #777777; -} - -/*-------------------- - Loading -----------------------*/ - -.ui.loading.dropdown > .text { - transition: none; -} - -/* Used To Check Position */ - -.ui.dropdown .loading.menu { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.dropdown > .loading.menu { - left: 0px !important; - right: auto !important; -} - -.ui.dropdown > .menu .loading.menu { - left: 100% !important; - right: auto !important; -} - -/*-------------------- - Keyboard Select -----------------------*/ - -/* Selected Item */ - -.ui.dropdown.selected, -.ui.dropdown .menu .selected.item { - background: rgba(255, 255, 255, 0.03); - color: rgba(255, 255, 255, 0.95); -} - -/*-------------------- - Search Filtered -----------------------*/ - -/* Filtered Item */ - -.ui.dropdown > .filtered.text { - visibility: hidden; -} - -.ui.dropdown .filtered.item { - display: none !important; -} - -/*-------------------- - Error -----------------------*/ - -.ui.dropdown.error, -.ui.dropdown.error > .text, -.ui.dropdown.error > .default.text { - color: #9F3A38; -} - -.ui.selection.dropdown.error { - background: #FFF6F6; - border-color: #E0B4B4; -} - -.ui.selection.dropdown.error:hover { - border-color: #E0B4B4; -} - -.ui.dropdown.error > .menu, -.ui.dropdown.error > .menu .menu { - border-color: #E0B4B4; -} - -.ui.dropdown.error > .menu > .item { - color: #9F3A38; -} - -.ui.multiple.selection.error.dropdown > .label { - border-color: #E0B4B4; -} - -/* Item Hover */ - -.ui.dropdown.error > .menu > .item:hover { - background-color: #FFF2F2; -} - -/* Item Active */ - -.ui.dropdown.error > .menu .active.item { - background-color: #FDCFCF; -} - -/*-------------------- - Clear -----------------------*/ - -.ui.dropdown > .clear.dropdown.icon { - opacity: 0.8; - transition: opacity 0.1s ease; -} - -.ui.dropdown > .clear.dropdown.icon:hover { - opacity: 1; -} - -/*-------------------- - Disabled -----------------------*/ - -/* Disabled */ - -.ui.disabled.dropdown, -.ui.dropdown .menu > .disabled.item { - cursor: default; - pointer-events: none; - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Direction ----------------*/ - -/* Flyout Direction */ - -.ui.dropdown .menu { - left: 0px; -} - -/* Default Side (Right) */ - -.ui.dropdown .right.menu > .menu, -.ui.dropdown .menu .right.menu { - left: 100% !important; - right: auto !important; - border-radius: 0.35714286rem !important; -} - -/* Leftward Opening Menu */ - -.ui.dropdown > .left.menu { - left: auto !important; - right: 0px !important; -} - -.ui.dropdown > .left.menu .menu, -.ui.dropdown .menu .left.menu { - left: auto; - right: 100%; - margin: 0em -0.5em 0em 0em !important; - border-radius: 0.35714286rem !important; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon + .text, -.ui.dropdown .left.menu .item .dropdown.icon + .text { - margin-left: 1em; - margin-right: 0em; -} - -/*-------------- - Upward ----------------*/ - -/* Upward Main Menu */ - -.ui.upward.dropdown > .menu { - top: auto; - bottom: 100%; - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -/* Upward Sub Menu */ - -.ui.dropdown .upward.menu { - top: auto !important; - bottom: 0 !important; -} - -/* Active Upward */ - -.ui.simple.upward.active.dropdown, -.ui.simple.upward.dropdown:hover { - border-radius: 0.35714286rem 0.35714286rem 0em 0em !important; -} - -.ui.upward.dropdown.button:not(.pointing):not(.floating).active { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -/* Selection */ - -.ui.upward.selection.dropdown .menu { - border-top-width: 1px !important; - border-bottom-width: 0px !important; - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -.ui.upward.selection.dropdown:hover { - box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); -} - -/* Active Upward */ - -.ui.active.upward.selection.dropdown { - border-radius: 0em 0em 0.35714286rem 0.35714286rem !important; -} - -/* Visible Upward */ - -.ui.upward.selection.dropdown.visible { - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0em 0.35714286rem 0.35714286rem !important; -} - -/* Visible Hover Upward */ - -.ui.upward.active.selection.dropdown:hover { - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); -} - -.ui.upward.active.selection.dropdown:hover .menu { - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -/*-------------- - Simple ----------------*/ - -/* Selection Menu */ - -.ui.scrolling.dropdown .menu, -.ui.dropdown .scrolling.menu { - overflow-x: hidden; - overflow-y: auto; -} - -.ui.scrolling.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - min-width: 100% !important; - width: auto !important; -} - -.ui.dropdown .scrolling.menu { - position: static; - overflow-y: auto; - border: none; - box-shadow: none !important; - border-radius: 0 !important; - margin: 0 !important; - min-width: 100% !important; - width: auto !important; - border-top: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.scrolling.dropdown .menu .item.item.item, -.ui.dropdown .scrolling.menu > .item.item.item { - border-top: none; -} - -.ui.scrolling.dropdown .menu .item:first-child, -.ui.dropdown .scrolling.menu .item:first-child { - border-top: none; -} - -.ui.dropdown > .animating.menu .scrolling.menu, -.ui.dropdown > .visible.menu .scrolling.menu { - display: block; -} - -/* Scrollbar in IE */ - -@media all and (-ms-high-contrast: none) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - min-width: calc(100% - 6px); - } -} - -@media only screen and (max-width: 767px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 10.28571429rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 15.42857143rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 20.57142857rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 20.57142857rem; - } -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dropdown .menu:before, -.ui.simple.dropdown .menu:after { - display: none; -} - -.ui.simple.dropdown .menu { - position: absolute; - display: block; - overflow: hidden; - top: -9999px !important; - opacity: 0; - width: 0; - height: 0; - transition: opacity 0.1s ease; -} - -.ui.simple.active.dropdown, -.ui.simple.dropdown:hover { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -.ui.simple.active.dropdown > .menu, -.ui.simple.dropdown:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 100% !important; - opacity: 1; -} - -.ui.simple.dropdown > .menu > .item:active > .menu, -.ui.simple.dropdown:hover > .menu > .item:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 0% !important; - left: 100% !important; - opacity: 1; -} - -.ui.simple.disabled.dropdown:hover .menu { - display: none; - height: 0px; - width: 0px; - overflow: hidden; -} - -/* Visible */ - -.ui.simple.visible.dropdown > .menu { - display: block; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.dropdown { - display: block; - width: 100%; - min-width: 0em; -} - -.ui.fluid.dropdown > .dropdown.icon { - float: right; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.dropdown .menu { - left: 0; - right: auto; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; - border-radius: 0.35714286rem !important; -} - -.ui.floating.dropdown > .menu { - margin-top: 0.5em !important; - border-radius: 0.35714286rem !important; -} - -/*-------------- - Pointing ----------------*/ - -.ui.pointing.dropdown > .menu { - top: 100%; - margin-top: 0.78571429rem; - border-radius: 0.35714286rem; -} - -.ui.pointing.dropdown > .menu:after { - display: block; - position: absolute; - pointer-events: none; - content: ''; - visibility: visible; - transform: rotate(45deg); - width: 0.5em; - height: 0.5em; - box-shadow: -1px -1px 0px 0px rgba(24, 26, 28, 0.45); - background: #2E3235; - z-index: 2; -} - -.ui.pointing.dropdown > .menu:after { - top: -0.25em; - left: 50%; - margin: 0em 0em 0em -0.25em; -} - -/* Top Left Pointing */ - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu:after { - top: -0.25em; - left: 1em; - right: auto; - margin: 0em; - transform: rotate(45deg); -} - -/* Top Right Pointing */ - -.ui.top.right.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - right: 0%; - left: auto; - margin: 1em 0em 0em; -} - -.ui.top.pointing.dropdown > .left.menu:after, -.ui.top.right.pointing.dropdown > .menu:after { - top: -0.25em; - left: auto !important; - right: 1em !important; - margin: 0em; - transform: rotate(45deg); -} - -/* Left Pointing */ - -.ui.left.pointing.dropdown > .menu { - top: 0%; - left: 100%; - right: auto; - margin: 0em 0em 0em 1em; -} - -.ui.left.pointing.dropdown > .menu:after { - top: 1em; - left: -0.25em; - margin: 0em 0em 0em 0em; - transform: rotate(-45deg); -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu { - left: auto !important; - right: 100% !important; - margin: 0em 1em 0em 0em; -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - transform: rotate(135deg); -} - -/* Right Pointing */ - -.ui.right.pointing.dropdown > .menu { - top: 0%; - left: auto; - right: 100%; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.dropdown > .menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - transform: rotate(135deg); -} - -/* Bottom Pointing */ - -.ui.bottom.pointing.dropdown > .menu { - top: auto; - bottom: 100%; - left: 0%; - right: auto; - margin: 0em 0em 1em; -} - -.ui.bottom.pointing.dropdown > .menu:after { - top: auto; - bottom: -0.25em; - right: auto; - margin: 0em; - transform: rotate(-135deg); -} - -/* Reverse Sub-Menu Direction */ - -.ui.bottom.pointing.dropdown > .menu .menu { - top: auto !important; - bottom: 0px !important; -} - -/* Bottom Left */ - -.ui.bottom.left.pointing.dropdown > .menu { - left: 0%; - right: auto; -} - -.ui.bottom.left.pointing.dropdown > .menu:after { - left: 1em; - right: auto; -} - -/* Bottom Right */ - -.ui.bottom.right.pointing.dropdown > .menu { - right: 0%; - left: auto; -} - -.ui.bottom.right.pointing.dropdown > .menu:after { - left: auto; - right: 1em; -} - -/* Upward pointing */ - -.ui.pointing.upward.dropdown .menu, -.ui.top.pointing.upward.dropdown .menu { - top: auto !important; - bottom: 100% !important; - margin: 0em 0em 0.78571429rem; - border-radius: 0.35714286rem; -} - -.ui.pointing.upward.dropdown .menu:after, -.ui.top.pointing.upward.dropdown .menu:after { - top: 100% !important; - bottom: auto !important; - box-shadow: 1px 1px 0px 0px rgba(24, 26, 28, 0.45); - margin: -0.25em 0em 0em; -} - -/* Right Pointing Upward */ - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - box-shadow: -1px -1px 0px 0px rgba(24, 26, 28, 0.45); -} - -/* Left Pointing Upward */ - -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 0em 1em; -} - -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - box-shadow: -1px -1px 0px 0px rgba(24, 26, 28, 0.45); -} - -/******************************* - Theme Overrides -*******************************/ - -/* Dropdown Carets */ - -@font-face { - font-family: 'Dropdown'; - src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff'); - font-weight: normal; - font-style: normal; -} - -.ui.dropdown > .dropdown.icon { - font-family: 'Dropdown'; - line-height: 1; - height: 1em; - width: 1.23em; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.dropdown > .dropdown.icon { - width: auto; -} - -.ui.dropdown > .dropdown.icon:before { - content: '\f0d7'; -} - -/* Inline dropdown menu */ - -.ui.inline.dropdown .menu { - background: rgba(46, 50, 53, 0.7); - backdrop-filter: blur(10px); -} - -/* Sub Menu */ - -.ui.dropdown .menu .item .dropdown.icon:before { - content: '\f0da' ; -} - -.ui.dropdown .item .left.dropdown.icon:before, -.ui.dropdown .left.menu .item .dropdown.icon:before { - content: "\f0d9" ; -} - -/* Vertical Menu Dropdown */ - -.ui.vertical.menu .dropdown.item > .dropdown.icon:before { - content: "\f0da" ; -} - -.ui.dropdown > .clear.icon:before { - content: "\f00d"; -} - -/* Icons for Reference (Subsetted in 2.4.0) - .dropdown.down:before { content: "\f0d7"; } - .dropdown.up:before { content: "\f0d8"; } - .dropdown.left:before { content: "\f0d9"; } - .dropdown.right:before { content: "\f0da"; } - .dropdown.close:before { content: "\f00d"; } -*/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Video - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Types -*******************************/ - -.ui.embed { - position: relative; - max-width: 100%; - height: 0px; - overflow: hidden; - background: #DCDDDE; - padding-bottom: 56.25%; -} - -/*----------------- - Embedded Content -------------------*/ - -.ui.embed iframe, -.ui.embed embed, -.ui.embed object { - position: absolute; - border: none; - width: 100%; - height: 100%; - top: 0px; - left: 0px; - margin: 0em; - padding: 0em; -} - -/*----------------- - Embed -------------------*/ - -.ui.embed > .embed { - display: none; -} - -/*-------------- - Placeholder ----------------*/ - -.ui.embed > .placeholder { - position: absolute; - cursor: pointer; - top: 0px; - left: 0px; - display: block; - width: 100%; - height: 100%; - background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); -} - -/*-------------- - Icon ----------------*/ - -.ui.embed > .icon { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - z-index: 2; -} - -.ui.embed > .icon:after { - position: absolute; - top: 0%; - left: 0%; - width: 100%; - height: 100%; - z-index: 3; - content: ''; - background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - opacity: 0.5; - transition: opacity 0.5s ease; -} - -.ui.embed > .icon:before { - position: absolute; - top: 50%; - left: 50%; - z-index: 4; - transform: translateX(-50%) translateY(-50%); - color: #2E3235; - font-size: 6rem; - text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2); - transition: opacity 0.5s ease, color 0.5s ease; - z-index: 10; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.embed .icon:hover:after { - background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - opacity: 1; -} - -.ui.embed .icon:hover:before { - color: #2E3235; -} - -/*-------------- - Active ----------------*/ - -.ui.active.embed > .icon, -.ui.active.embed > .placeholder { - display: none; -} - -.ui.active.embed > .embed { - display: block; -} - -/******************************* - Video Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ - -/******************************* - Variations -*******************************/ - -.ui.square.embed { - padding-bottom: 100%; -} - -.ui[class*="4:3"].embed { - padding-bottom: 75%; -} - -.ui[class*="16:9"].embed { - padding-bottom: 56.25%; -} - -.ui[class*="21:9"].embed { - padding-bottom: 42.85714286%; -} -/*! - * # Semantic UI - Modal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Modal -*******************************/ - -.ui.modal { - position: absolute; - display: none; - z-index: 1001; - text-align: left; - border: none; - box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); - transform-origin: 50% 25%; - flex: 0 0 auto; - border-radius: 0.35714286rem; - user-select: text; - will-change: top, left, margin, transform, opacity; -} - -.ui.modal > :first-child:not(.icon), -.ui.modal > .icon:first-child + * { - border-top-left-radius: 0.35714286rem; - border-top-right-radius: 0.35714286rem; -} - -.ui.modal > :last-child { - border-bottom-left-radius: 0.35714286rem; - border-bottom-right-radius: 0.35714286rem; -} - -/******************************* - Content -*******************************/ - -/*-------------- - Close ----------------*/ - -.ui.modal > .close { - cursor: pointer; - position: absolute; - top: -2.5rem; - right: -2.5rem; - z-index: 1; - opacity: 0.8; - font-size: 1.25em; - color: #2E3235; - width: 2.25rem; - height: 2.25rem; - padding: 0.625rem 0rem 0rem 0rem; -} - -.ui.modal > .close:hover { - opacity: 1; -} - -/*-------------- - Header ----------------*/ - -.ui.modal > .header { - display: block; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - background: #2E3235; - margin: 0em; - padding: 1rem 1.2rem; - box-shadow: none; - color: rgba(255, 255, 255, 0.95); - border-bottom: 1px solid rgba(24, 26, 28, 0.45); -} - -.ui.modal > .header:not(.ui) { - font-size: 1em; - line-height: 1.28571429em; - font-weight: 600; -} - -/*-------------- - Content ----------------*/ - -.ui.modal > .content { - display: block; - width: 100%; - font-size: 1em; - line-height: 1.4; - padding: 1rem; - background: #2E3235; -} - -.ui.modal > .image.content { - display: flex; - flex-direction: row; -} - -/* Image */ - -.ui.modal > .content > .image { - display: block; - flex: 0 1 auto; - width: ''; - align-self: top; -} - -.ui.modal > [class*="top aligned"] { - align-self: top; -} - -.ui.modal > [class*="middle aligned"] { - align-self: middle; -} - -.ui.modal > [class*="stretched"] { - align-self: stretch; -} - -/* Description */ - -.ui.modal > .content > .description { - display: block; - flex: 1 0 auto; - min-width: 0px; - align-self: top; -} - -.ui.modal > .content > .icon + .description, -.ui.modal > .content > .image + .description { - flex: 0 1 auto; - min-width: ''; - width: auto; - padding-left: 2em; -} - -/*rtl:ignore*/ - -.ui.modal > .content > .image > i.icon { - margin: 0em; - opacity: 1; - width: auto; - line-height: 1; - font-size: 8rem; -} - -/*-------------- - Actions ----------------*/ - -.ui.modal > .actions { - background: #34393D; - padding: 1rem 1rem; - border-top: 1px solid rgba(24, 26, 28, 0.45); - text-align: right; -} - -.ui.modal .actions > .button { - margin-left: 0.75em; - min-width: 10em; -} - -.ui.modal .actions > .button:first-child { - margin-left: 0.25em; -} - -/*------------------- - Responsive ---------------------*/ - -/* Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.modal { - width: 850px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.modal { - width: 900px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.modal { - width: 950px; - margin: 0em 0em 0em 0em; - } -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .ui.modal > .header { - padding-right: 2.25rem; - } - - .ui.modal > .close { - top: 0.8035rem; - right: 1rem; - color: #DDDDDD; - } -} - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui.modal > .header { - padding: 0.75rem 1rem !important; - padding-right: 2.25rem !important; - } - - .ui.modal > .content { - display: block; - padding: 1rem !important; - } - - .ui.modal > .close { - top: 0.5rem !important; - right: 0.5rem !important; - } - - /*rtl:ignore*/ - - .ui.modal .image.content { - flex-direction: column; - } - - .ui.modal .content > .image { - display: block; - max-width: 100%; - margin: 0em auto !important; - text-align: center; - padding: 0rem 0rem 1rem !important; - } - - .ui.modal > .content > .image > i.icon { - font-size: 5rem; - text-align: center; - } - - /*rtl:ignore*/ - - .ui.modal .content > .description { - display: block; - width: 100% !important; - margin: 0em !important; - padding: 1rem 0rem !important; - box-shadow: none; - } - - /* Let Buttons Stack */ - - .ui.modal > .actions { - padding: 1rem 1rem 0rem !important; - } - - .ui.modal .actions > .buttons, - .ui.modal .actions > .button { - margin-bottom: 1rem; - } -} - -/*-------------- - Coupling ----------------*/ - -.ui.inverted.dimmer > .ui.modal { - box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); -} - -/******************************* - Types -*******************************/ - -.ui.basic.modal { - background-color: transparent; - border: none; - border-radius: 0em; - box-shadow: none !important; - color: #DDDDDD; -} - -.ui.basic.modal > .header, -.ui.basic.modal > .content, -.ui.basic.modal > .actions { - background-color: transparent; -} - -.ui.basic.modal > .header { - color: #DDDDDD; -} - -.ui.basic.modal > .close { - top: 1rem; - right: 1.5rem; -} - -.ui.inverted.dimmer > .basic.modal { - color: #DDDDDD; -} - -.ui.inverted.dimmer > .ui.basic.modal > .header { - color: rgba(255, 255, 255, 0.95); -} - -/* Resort to margin positioning if legacy */ - -.ui.legacy.modal, -.ui.legacy.page.dimmer > .ui.modal { - top: 50%; - left: 50%; -} - -.ui.legacy.page.dimmer > .ui.scrolling.modal, -.ui.page.dimmer > .ui.scrolling.legacy.modal, -.ui.top.aligned.legacy.page.dimmer > .ui.modal, -.ui.top.aligned.dimmer > .ui.legacy.modal { - top: auto; -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .ui.basic.modal > .close { - color: #2E3235; - } -} - -/******************************* - States -*******************************/ - -.ui.loading.modal { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.active.modal { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Top Aligned ----------------*/ - -/* Top Aligned Modal */ - -.modals.dimmer[class*="top aligned"] .modal { - margin: 5vh auto; -} - -@media only screen and (max-width: 767px) { - .modals.dimmer[class*="top aligned"] .modal { - margin: 1rem auto; - } -} - -/* Legacy Top Aligned */ - -.legacy.modals.dimmer[class*="top aligned"] { - padding-top: 5vh; -} - -@media only screen and (max-width: 767px) { - .legacy.modals.dimmer[class*="top aligned"] { - padding-top: 1rem; - } -} - -/*-------------- - Scrolling ----------------*/ - -/* Scrolling Dimmer */ - -.scrolling.dimmable.dimmed { - overflow: hidden; -} - -.scrolling.dimmable > .dimmer { - justify-content: flex-start; -} - -.scrolling.dimmable.dimmed > .dimmer { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.scrolling.dimmable > .dimmer { - position: fixed; -} - -.modals.dimmer .ui.scrolling.modal { - margin: 1rem auto; -} - -/* Undetached Scrolling */ - -.scrolling.undetached.dimmable.dimmed { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.scrolling.undetached.dimmable.dimmed > .dimmer { - overflow: hidden; -} - -.scrolling.undetached.dimmable .ui.scrolling.modal { - position: absolute; - left: 50%; - margin-top: 1rem !important; -} - -/* Scrolling Content */ - -.ui.modal .scrolling.content { - max-height: calc(80vh - 10em); - overflow: auto; -} - -/*-------------- - Full Screen ----------------*/ - -.ui.fullscreen.modal { - width: 95% !important; - margin: 1em auto; -} - -.ui.fullscreen.modal > .header { - padding-right: 2.25rem; -} - -.ui.fullscreen.modal > .close { - top: 0.8035rem; - right: 1rem; - color: #DDDDDD; -} - -/*-------------- - Size ----------------*/ - -.ui.modal { - font-size: 1rem; -} - -/* Mini */ - -.ui.mini.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Mini Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.mini.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.mini.modal { - width: 35.2%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.mini.modal { - width: 340px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.mini.modal { - width: 360px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.mini.modal { - width: 380px; - margin: 0em 0em 0em 0em; - } -} - -/* mini */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Tiny Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.tiny.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.tiny.modal { - width: 52.8%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.tiny.modal { - width: 510px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.tiny.modal { - width: 540px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.tiny.modal { - width: 570px; - margin: 0em 0em 0em 0em; - } -} - -/* Small */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Small Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.small.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.small.modal { - width: 70.4%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.small.modal { - width: 680px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.small.modal { - width: 720px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.small.modal { - width: 760px; - margin: 0em 0em 0em 0em; - } -} - -/* Large Modal Width */ - -.ui.large.modal > .header { - font-size: 1.6em; -} - -@media only screen and (max-width: 767px) { - .ui.large.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.large.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.large.modal { - width: 1020px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.large.modal { - width: 1080px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.large.modal { - width: 1140px; - margin: 0em 0em 0em 0em; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Nag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: 0.95; - position: relative; - top: 0em; - left: 0px; - z-index: 999; - min-height: 0em; - width: 100%; - margin: 0em; - padding: 0.75em 1em; - background: #555555; - box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); - font-size: 1rem; - text-align: center; - color: #DDDDDD; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; - transition: 0.2s background ease; -} - -a.ui.nag { - cursor: pointer; -} - -.ui.nag > .title { - display: inline-block; - margin: 0em 0.5em; - color: #2E3235; -} - -.ui.nag > .close.icon { - cursor: pointer; - opacity: 0.4; - position: absolute; - top: 50%; - right: 1em; - font-size: 1em; - margin: -0.5em 0em 0em; - color: #2E3235; - transition: opacity 0.2s ease; -} - -/******************************* - States -*******************************/ - -/* Hover */ - -.ui.nag:hover { - background: #555555; - opacity: 1; -} - -.ui.nag .close:hover { - opacity: 1; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Static ----------------*/ - -.ui.overlay.nag { - position: absolute; - display: block; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.nag { - position: fixed; -} - -/*-------------- - Bottom ----------------*/ - -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; - top: auto; - bottom: 0em; -} - -/*-------------- - White ----------------*/ - -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: #4B5257; - color: rgba(255, 255, 255, 0.95); -} - -.ui.inverted.nags .nag .close, -.ui.inverted.nags .nag .title, -.ui.inverted.nag .close, -.ui.inverted.nag .title { - color: rgba(255, 255, 255, 0.5); -} - -/******************************* - Groups -*******************************/ - -.ui.nags .nag { - border-radius: 0em !important; -} - -.ui.nags .nag:last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.bottom.nags .nag:last-child { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Popup - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Popup -*******************************/ - -.ui.popup { - display: none; - position: absolute; - top: 0px; - right: 0px; - /* Fixes content being squished when inline (moz only) */ - min-width: min-content; - z-index: 1900; - border: 1px solid #3B3C3E; - line-height: 1.4285em; - max-width: 250px; - background: #2E3235; - padding: 0.833em 1em; - font-weight: normal; - font-style: normal; - color: #DDDDDD; - border-radius: 0.35714286rem; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -.ui.popup > .header { - padding: 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1.14285714em; - line-height: 1.2; - font-weight: 600; -} - -.ui.popup > .header + .content { - padding-top: 0.5em; -} - -.ui.popup:before { - position: absolute; - content: ''; - width: 0.71428571em; - height: 0.71428571em; - background: #2E3235; - transform: rotate(45deg); - z-index: 2; - box-shadow: 1px 1px 0px 0px #222324; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Tooltip ----------------*/ - -/* Content */ - -[data-tooltip] { - position: relative; -} - -/* Arrow */ - -[data-tooltip]:before { - pointer-events: none; - position: absolute; - content: ''; - font-size: 1rem; - width: 0.71428571em; - height: 0.71428571em; - background: #2E3235; - transform: rotate(45deg); - z-index: 2; - box-shadow: 1px 1px 0px 0px #222324; -} - -/* Popup */ - -[data-tooltip]:after { - pointer-events: none; - content: attr(data-tooltip); - position: absolute; - text-transform: none; - text-align: left; - white-space: nowrap; - font-size: 1rem; - border: 1px solid #3B3C3E; - line-height: 1.4285em; - max-width: none; - background: #2E3235; - padding: 0.833em 1em; - font-weight: normal; - font-style: normal; - color: #DDDDDD; - border-radius: 0.35714286rem; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - z-index: 1; -} - -/* Default Position (Top Center) */ - -[data-tooltip]:not([data-position]):before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: #2E3235; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -[data-tooltip]:not([data-position]):after { - left: 50%; - transform: translateX(-50%); - bottom: 100%; - margin-bottom: 0.5em; -} - -/* Animation */ - -[data-tooltip]:before, -[data-tooltip]:after { - pointer-events: none; - visibility: hidden; -} - -[data-tooltip]:before { - opacity: 0; - transform: rotate(45deg) scale(0) !important; - transform-origin: center top; - transition: all 0.1s ease; -} - -[data-tooltip]:after { - opacity: 1; - transform-origin: center bottom; - transition: all 0.1s ease; -} - -[data-tooltip]:hover:before, -[data-tooltip]:hover:after { - visibility: visible; - pointer-events: auto; -} - -[data-tooltip]:hover:before { - transform: rotate(45deg) scale(1) !important; - opacity: 1; -} - -/* Animation Position */ - -[data-tooltip]:after, -[data-tooltip][data-position="top center"]:after, -[data-tooltip][data-position="bottom center"]:after { - transform: translateX(-50%) scale(0) !important; -} - -[data-tooltip]:hover:after, -[data-tooltip][data-position="bottom center"]:hover:after { - transform: translateX(-50%) scale(1) !important; -} - -[data-tooltip][data-position="left center"]:after, -[data-tooltip][data-position="right center"]:after { - transform: translateY(-50%) scale(0) !important; -} - -[data-tooltip][data-position="left center"]:hover:after, -[data-tooltip][data-position="right center"]:hover:after { - transform: translateY(-50%) scale(1) !important; -} - -[data-tooltip][data-position="top left"]:after, -[data-tooltip][data-position="top right"]:after, -[data-tooltip][data-position="bottom left"]:after, -[data-tooltip][data-position="bottom right"]:after { - transform: scale(0) !important; -} - -[data-tooltip][data-position="top left"]:hover:after, -[data-tooltip][data-position="top right"]:hover:after, -[data-tooltip][data-position="bottom left"]:hover:after, -[data-tooltip][data-position="bottom right"]:hover:after { - transform: scale(1) !important; -} - -/*-------------- - Inverted ----------------*/ - -/* Arrow */ - -[data-tooltip][data-inverted]:before { - box-shadow: none !important; -} - -/* Arrow Position */ - -[data-tooltip][data-inverted]:before { - background: #F9FAFB; -} - -/* Popup */ - -[data-tooltip][data-inverted]:after { - background: #F9FAFB; - color: #2E3235; - border: none; - box-shadow: none; -} - -[data-tooltip][data-inverted]:after .header { - background-color: none; - color: #2E3235; -} - -/*-------------- - Position ----------------*/ - -/* Top Center */ - -[data-position="top center"][data-tooltip]:after { - top: auto; - right: auto; - left: 50%; - bottom: 100%; - transform: translateX(-50%); - margin-bottom: 0.5em; -} - -[data-position="top center"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: #2E3235; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Top Left */ - -[data-position="top left"][data-tooltip]:after { - top: auto; - right: auto; - left: 0; - bottom: 100%; - margin-bottom: 0.5em; -} - -[data-position="top left"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: 1em; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Top Right */ - -[data-position="top right"][data-tooltip]:after { - top: auto; - left: auto; - right: 0; - bottom: 100%; - margin-bottom: 0.5em; -} - -[data-position="top right"][data-tooltip]:before { - top: auto; - left: auto; - bottom: 100%; - right: 1em; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Bottom Center */ - -[data-position="bottom center"][data-tooltip]:after { - bottom: auto; - right: auto; - left: 50%; - top: 100%; - transform: translateX(-50%); - margin-top: 0.5em; -} - -[data-position="bottom center"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: 50%; - margin-left: -0.07142857rem; - margin-top: 0.14285714rem; -} - -/* Bottom Left */ - -[data-position="bottom left"][data-tooltip]:after { - left: 0; - top: 100%; - margin-top: 0.5em; -} - -[data-position="bottom left"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: 1em; - margin-left: -0.07142857rem; - margin-top: 0.14285714rem; -} - -/* Bottom Right */ - -[data-position="bottom right"][data-tooltip]:after { - right: 0; - top: 100%; - margin-top: 0.5em; -} - -[data-position="bottom right"][data-tooltip]:before { - bottom: auto; - left: auto; - top: 100%; - right: 1em; - margin-left: -0.14285714rem; - margin-top: 0.07142857rem; -} - -/* Left Center */ - -[data-position="left center"][data-tooltip]:after { - right: 100%; - top: 50%; - margin-right: 0.5em; - transform: translateY(-50%); -} - -[data-position="left center"][data-tooltip]:before { - right: 100%; - top: 50%; - margin-top: -0.14285714rem; - margin-right: -0.07142857rem; -} - -/* Right Center */ - -[data-position="right center"][data-tooltip]:after { - left: 100%; - top: 50%; - margin-left: 0.5em; - transform: translateY(-50%); -} - -[data-position="right center"][data-tooltip]:before { - left: 100%; - top: 50%; - margin-top: -0.07142857rem; - margin-left: 0.14285714rem; -} - -/* Arrow */ - -[data-position~="bottom"][data-tooltip]:before { - background: #2E3235; - box-shadow: -1px -1px 0px 0px #222324; -} - -[data-position="left center"][data-tooltip]:before { - background: #2E3235; - box-shadow: 1px -1px 0px 0px #222324; -} - -[data-position="right center"][data-tooltip]:before { - background: #2E3235; - box-shadow: -1px 1px 0px 0px #222324; -} - -[data-position~="top"][data-tooltip]:before { - background: #2E3235; -} - -/* Inverted Arrow Color */ - -[data-inverted][data-position~="bottom"][data-tooltip]:before { - background: #F9FAFB; - box-shadow: -1px -1px 0px 0px #222324; -} - -[data-inverted][data-position="left center"][data-tooltip]:before { - background: #F9FAFB; - box-shadow: 1px -1px 0px 0px #222324; -} - -[data-inverted][data-position="right center"][data-tooltip]:before { - background: #F9FAFB; - box-shadow: -1px 1px 0px 0px #222324; -} - -[data-inverted][data-position~="top"][data-tooltip]:before { - background: #F9FAFB; -} - -[data-position~="bottom"][data-tooltip]:before { - transform-origin: center bottom; -} - -[data-position~="bottom"][data-tooltip]:after { - transform-origin: center top; -} - -[data-position="left center"][data-tooltip]:before { - transform-origin: top center; -} - -[data-position="left center"][data-tooltip]:after { - transform-origin: right center; -} - -[data-position="right center"][data-tooltip]:before { - transform-origin: right center; -} - -[data-position="right center"][data-tooltip]:after { - transform-origin: left center; -} - -/*-------------- - Spacing ----------------*/ - -.ui.popup { - margin: 0em; -} - -/* Extending from Top */ - -.ui.top.popup { - margin: 0em 0em 0.71428571em; -} - -.ui.top.left.popup { - transform-origin: left bottom; -} - -.ui.top.center.popup { - transform-origin: center bottom; -} - -.ui.top.right.popup { - transform-origin: right bottom; -} - -/* Extending from Vertical Center */ - -.ui.left.center.popup { - margin: 0em 0.71428571em 0em 0em; - transform-origin: right 50%; -} - -.ui.right.center.popup { - margin: 0em 0em 0em 0.71428571em; - transform-origin: left 50%; -} - -/* Extending from Bottom */ - -.ui.bottom.popup { - margin: 0.71428571em 0em 0em; -} - -.ui.bottom.left.popup { - transform-origin: left top; -} - -.ui.bottom.center.popup { - transform-origin: center top; -} - -.ui.bottom.right.popup { - transform-origin: right top; -} - -/*-------------- - Pointer ----------------*/ - -/*--- Below ---*/ - -.ui.bottom.center.popup:before { - margin-left: -0.30714286em; - top: -0.30714286em; - left: 50%; - right: auto; - bottom: auto; - box-shadow: -1px -1px 0px 0px #222324; -} - -.ui.bottom.left.popup { - margin-left: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.left.popup:before { - top: -0.30714286em; - left: 1em; - right: auto; - bottom: auto; - margin-left: 0em; - box-shadow: -1px -1px 0px 0px #222324; -} - -.ui.bottom.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.right.popup:before { - top: -0.30714286em; - right: 1em; - bottom: auto; - left: auto; - margin-left: 0em; - box-shadow: -1px -1px 0px 0px #222324; -} - -/*--- Above ---*/ - -.ui.top.center.popup:before { - top: auto; - right: auto; - bottom: -0.30714286em; - left: 50%; - margin-left: -0.30714286em; -} - -.ui.top.left.popup { - margin-left: 0em; -} - -/*rtl:rename*/ - -.ui.top.left.popup:before { - bottom: -0.30714286em; - left: 1em; - top: auto; - right: auto; - margin-left: 0em; -} - -.ui.top.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.top.right.popup:before { - bottom: -0.30714286em; - right: 1em; - top: auto; - left: auto; - margin-left: 0em; -} - -/*--- Left Center ---*/ - -/*rtl:rename*/ - -.ui.left.center.popup:before { - top: 50%; - right: -0.30714286em; - bottom: auto; - left: auto; - margin-top: -0.30714286em; - box-shadow: 1px -1px 0px 0px #222324; -} - -/*--- Right Center ---*/ - -/*rtl:rename*/ - -.ui.right.center.popup:before { - top: 50%; - left: -0.30714286em; - bottom: auto; - right: auto; - margin-top: -0.30714286em; - box-shadow: -1px 1px 0px 0px #222324; -} - -/* Arrow Color By Location */ - -.ui.bottom.popup:before { - background: #2E3235; -} - -.ui.right.center.popup:before, -.ui.left.center.popup:before { - background: #2E3235; -} - -.ui.top.popup:before { - background: #2E3235; -} - -/* Inverted Arrow Color */ - -.ui.inverted.bottom.popup:before { - background: #F9FAFB; -} - -.ui.inverted.right.center.popup:before, -.ui.inverted.left.center.popup:before { - background: #F9FAFB; -} - -.ui.inverted.top.popup:before { - background: #F9FAFB; -} - -/******************************* - Coupling -*******************************/ - -/* Immediate Nested Grid */ - -.ui.popup > .ui.grid:not(.padded) { - width: calc(100% + 1.75rem); - margin: -0.7rem -0.875rem; -} - -/******************************* - States -*******************************/ - -.ui.loading.popup { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.animating.popup, -.ui.visible.popup { - display: block; -} - -.ui.visible.popup { - transform: translateZ(0px); - backface-visibility: hidden; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Basic ----------------*/ - -.ui.basic.popup:before { - display: none; -} - -/*-------------- - Wide ----------------*/ - -.ui.wide.popup { - max-width: 350px; -} - -.ui[class*="very wide"].popup { - max-width: 550px; -} - -@media only screen and (max-width: 767px) { - .ui.wide.popup, - .ui[class*="very wide"].popup { - max-width: 250px; - } -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.popup { - width: 100%; - max-width: none; -} - -/*-------------- - Colors ----------------*/ - -/* Inverted colors */ - -.ui.inverted.popup { - background: #F9FAFB; - color: #2E3235; - border: none; - box-shadow: none; -} - -.ui.inverted.popup .header { - background-color: none; - color: #2E3235; -} - -.ui.inverted.popup:before { - background-color: #F9FAFB; - box-shadow: none !important; -} - -/*-------------- - Flowing ----------------*/ - -.ui.flowing.popup { - max-width: none; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.popup { - font-size: 0.78571429rem; -} - -.ui.tiny.popup { - font-size: 0.85714286rem; -} - -.ui.small.popup { - font-size: 0.92857143rem; -} - -.ui.popup { - font-size: 1rem; -} - -.ui.large.popup { - font-size: 1.14285714rem; -} - -.ui.huge.popup { - font-size: 1.42857143rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Progress Bar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Progress -*******************************/ - -.ui.progress { - position: relative; - display: block; - max-width: 100%; - border: none; - margin: 1em 0em 2.5em; - box-shadow: none; - background: rgba(255, 255, 255, 0.1); - padding: 0em; - border-radius: 0.35714286rem; -} - -.ui.progress:first-child { - margin: 0em 0em 2.5em; -} - -.ui.progress:last-child { - margin: 0em 0em 1.5em; -} - -/******************************* - Content -*******************************/ - -/* Activity Bar */ - -.ui.progress .bar { - display: block; - line-height: 1; - position: relative; - width: 0%; - min-width: 2em; - background: #888888; - border-radius: 0.35714286rem; - transition: width 0.1s ease, background-color 0.1s ease; -} - -/* Percent Complete */ - -.ui.progress .bar > .progress { - white-space: nowrap; - position: absolute; - width: auto; - font-size: 0.92857143em; - top: 50%; - right: 0.5em; - left: auto; - bottom: auto; - color: rgba(0, 0, 0, 0.7); - text-shadow: none; - margin-top: -0.5em; - font-weight: 600; - text-align: left; -} - -/* Label */ - -.ui.progress > .label { - position: absolute; - width: 100%; - font-size: 1em; - top: 100%; - right: auto; - left: 0%; - bottom: auto; - color: #DDDDDD; - font-weight: 600; - text-shadow: none; - margin-top: 0.2em; - text-align: center; - transition: color 0.4s ease; -} - -/******************************* - Types -*******************************/ - -/* Indicating */ - -.ui.indicating.progress[data-percent^="1"] .bar, -.ui.indicating.progress[data-percent^="2"] .bar { - background-color: #D95C5C; -} - -.ui.indicating.progress[data-percent^="3"] .bar { - background-color: #EFBC72; -} - -.ui.indicating.progress[data-percent^="4"] .bar, -.ui.indicating.progress[data-percent^="5"] .bar { - background-color: #E6BB48; -} - -.ui.indicating.progress[data-percent^="6"] .bar { - background-color: #DDC928; -} - -.ui.indicating.progress[data-percent^="7"] .bar, -.ui.indicating.progress[data-percent^="8"] .bar { - background-color: #B4D95C; -} - -.ui.indicating.progress[data-percent^="9"] .bar, -.ui.indicating.progress[data-percent^="100"] .bar { - background-color: #66DA81; -} - -/* Indicating Label */ - -.ui.indicating.progress[data-percent^="1"] .label, -.ui.indicating.progress[data-percent^="2"] .label { - color: #DDDDDD; -} - -.ui.indicating.progress[data-percent^="3"] .label { - color: #DDDDDD; -} - -.ui.indicating.progress[data-percent^="4"] .label, -.ui.indicating.progress[data-percent^="5"] .label { - color: #DDDDDD; -} - -.ui.indicating.progress[data-percent^="6"] .label { - color: #DDDDDD; -} - -.ui.indicating.progress[data-percent^="7"] .label, -.ui.indicating.progress[data-percent^="8"] .label { - color: #DDDDDD; -} - -.ui.indicating.progress[data-percent^="9"] .label, -.ui.indicating.progress[data-percent^="100"] .label { - color: #DDDDDD; -} - -/* Single Digits */ - -.ui.indicating.progress[data-percent="1"] .bar, -.ui.indicating.progress[data-percent="2"] .bar, -.ui.indicating.progress[data-percent="3"] .bar, -.ui.indicating.progress[data-percent="4"] .bar, -.ui.indicating.progress[data-percent="5"] .bar, -.ui.indicating.progress[data-percent="6"] .bar, -.ui.indicating.progress[data-percent="7"] .bar, -.ui.indicating.progress[data-percent="8"] .bar, -.ui.indicating.progress[data-percent="9"] .bar { - background-color: #D95C5C; -} - -.ui.indicating.progress[data-percent="1"] .label, -.ui.indicating.progress[data-percent="2"] .label, -.ui.indicating.progress[data-percent="3"] .label, -.ui.indicating.progress[data-percent="4"] .label, -.ui.indicating.progress[data-percent="5"] .label, -.ui.indicating.progress[data-percent="6"] .label, -.ui.indicating.progress[data-percent="7"] .label, -.ui.indicating.progress[data-percent="8"] .label, -.ui.indicating.progress[data-percent="9"] .label { - color: #DDDDDD; -} - -/* Indicating Success */ - -.ui.indicating.progress.success .label { - color: #1A531B; -} - -/******************************* - States -*******************************/ - -/*-------------- - Success ----------------*/ - -.ui.progress.success .bar { - background-color: #21BA45 !important; -} - -.ui.progress.success .bar, -.ui.progress.success .bar::after { - animation: none !important; -} - -.ui.progress.success > .label { - color: #1A531B; -} - -/*-------------- - Warning ----------------*/ - -.ui.progress.warning .bar { - background-color: #F2C037 !important; -} - -.ui.progress.warning .bar, -.ui.progress.warning .bar::after { - animation: none !important; -} - -.ui.progress.warning > .label { - color: #794B02; -} - -/*-------------- - Error ----------------*/ - -.ui.progress.error .bar { - background-color: #DB2828 !important; -} - -.ui.progress.error .bar, -.ui.progress.error .bar::after { - animation: none !important; -} - -.ui.progress.error > .label { - color: #912D2B; -} - -/*-------------- - Active ----------------*/ - -.ui.active.progress .bar { - position: relative; - min-width: 2em; -} - -.ui.active.progress .bar::after { - content: ''; - opacity: 0; - position: absolute; - top: 0px; - left: 0px; - right: 0px; - bottom: 0px; - background: #2E3235; - border-radius: 0.35714286rem; - animation: progress-active 2s ease infinite; -} - -@keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } - - 100% { - opacity: 0; - width: 100%; - } -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.progress { - opacity: 0.35; -} - -.ui.disabled.progress .bar, -.ui.disabled.progress .bar::after { - animation: none !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.progress { - background: rgba(0, 0, 0, 0.08); - border: none; -} - -.ui.inverted.progress .bar { - background: #888888; -} - -.ui.inverted.progress .bar > .progress { - color: #34393D; -} - -.ui.inverted.progress > .label { - color: #2E3235; -} - -.ui.inverted.progress.success > .label { - color: #21BA45; -} - -.ui.inverted.progress.warning > .label { - color: #F2C037; -} - -.ui.inverted.progress.error > .label { - color: #DB2828; -} - -/*-------------- - Attached ----------------*/ - -/* bottom attached */ - -.ui.progress.attached { - background: transparent; - position: relative; - border: none; - margin: 0em; -} - -.ui.progress.attached, -.ui.progress.attached .bar { - display: block; - height: 0.2rem; - padding: 0px; - overflow: hidden; - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -.ui.progress.attached .bar { - border-radius: 0em; -} - -/* top attached */ - -.ui.progress.top.attached, -.ui.progress.top.attached .bar { - top: 0px; - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.progress.top.attached .bar { - border-radius: 0em; -} - -/* Coupling */ - -.ui.segment > .ui.attached.progress, -.ui.card > .ui.attached.progress { - position: absolute; - top: auto; - left: 0; - bottom: 100%; - width: 100%; -} - -.ui.segment > .ui.bottom.attached.progress, -.ui.card > .ui.bottom.attached.progress { - top: 100%; - bottom: auto; -} - -/*-------------- - Colors ----------------*/ - -/* Red */ - -.ui.red.progress .bar { - background-color: #DB2828; -} - -.ui.red.inverted.progress .bar { - background-color: #FF695E; -} - -/* Orange */ - -.ui.orange.progress .bar { - background-color: #C06D36; -} - -.ui.orange.inverted.progress .bar { - background-color: #FF851B; -} - -/* Yellow */ - -.ui.yellow.progress .bar { - background-color: #FBBD08; -} - -.ui.yellow.inverted.progress .bar { - background-color: #FFE21F; -} - -/* Olive */ - -.ui.olive.progress .bar { - background-color: #B5CC18; -} - -.ui.olive.inverted.progress .bar { - background-color: #D9E778; -} - -/* Green */ - -.ui.green.progress .bar { - background-color: #21BA45; -} - -.ui.green.inverted.progress .bar { - background-color: #2ECC40; -} - -/* Teal */ - -.ui.teal.progress .bar { - background-color: #00B5AD; -} - -.ui.teal.inverted.progress .bar { - background-color: #6DFFFF; -} - -/* Blue */ - -.ui.blue.progress .bar { - background-color: #2185D0; -} - -.ui.blue.inverted.progress .bar { - background-color: #54C8FF; -} - -/* Violet */ - -.ui.violet.progress .bar { - background-color: #6435C9; -} - -.ui.violet.inverted.progress .bar { - background-color: #A291FB; -} - -/* Purple */ - -.ui.purple.progress .bar { - background-color: #A333C8; -} - -.ui.purple.inverted.progress .bar { - background-color: #DC73FF; -} - -/* Pink */ - -.ui.pink.progress .bar { - background-color: #E03997; -} - -.ui.pink.inverted.progress .bar { - background-color: #FF8EDF; -} - -/* Brown */ - -.ui.brown.progress .bar { - background-color: #A5673F; -} - -.ui.brown.inverted.progress .bar { - background-color: #D67C1C; -} - -/* Grey */ - -.ui.grey.progress .bar { - background-color: #767676; -} - -.ui.grey.inverted.progress .bar { - background-color: #DCDDDE; -} - -/* Black */ - -.ui.black.progress .bar { - background-color: #F9FAFB; -} - -.ui.black.inverted.progress .bar { - background-color: #545454; -} - -/*-------------- - Sizes ----------------*/ - -.ui.tiny.progress { - font-size: 0.85714286rem; -} - -.ui.tiny.progress .bar { - height: 0.5em; -} - -.ui.small.progress { - font-size: 0.92857143rem; -} - -.ui.small.progress .bar { - height: 1em; -} - -.ui.progress { - font-size: 1rem; -} - -.ui.progress .bar { - height: 1.75em; -} - -.ui.large.progress { - font-size: 1.14285714rem; -} - -.ui.large.progress .bar { - height: 2.5em; -} - -.ui.big.progress { - font-size: 1.28571429rem; -} - -.ui.big.progress .bar { - height: 3.5em; -} - -/******************************* - Progress -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Rating - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Rating -*******************************/ - -.ui.rating { - display: inline-flex; - white-space: nowrap; - vertical-align: baseline; -} - -.ui.rating:last-child { - margin-right: 0em; -} - -/* Icon */ - -.ui.rating .icon { - padding: 0em; - margin: 0em; - text-align: center; - font-weight: normal; - font-style: normal; - flex: 1 0 auto; - cursor: pointer; - width: 1.25em; - height: auto; - transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Standard ---------------------*/ - -/* Inactive Icon */ - -.ui.rating .icon { - background: transparent; - color: rgba(0, 0, 0, 0.15); -} - -/* Active Icon */ - -.ui.rating .active.icon { - background: transparent; - color: rgba(255, 255, 255, 0.95); -} - -/* Selected Icon */ - -.ui.rating .icon.selected, -.ui.rating .icon.selected.active { - background: transparent; - color: #DDDDDD; -} - -/*------------------- - Star ---------------------*/ - -/* Inactive */ - -.ui.star.rating .icon { - width: 1.25em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none; -} - -/* Active Star */ - -.ui.star.rating .active.icon { - background: transparent !important; - color: #FFE623 !important; - text-shadow: 0px -1px 0px #DDC507, -1px 0px 0px #DDC507, 0px 1px 0px #DDC507, 1px 0px 0px #DDC507 !important; -} - -/* Selected Star */ - -.ui.star.rating .icon.selected, -.ui.star.rating .icon.selected.active { - background: transparent !important; - color: #FFCC00 !important; - text-shadow: 0px -1px 0px #E6A200, -1px 0px 0px #E6A200, 0px 1px 0px #E6A200, 1px 0px 0px #E6A200 !important; -} - -/*------------------- - Heart ---------------------*/ - -.ui.heart.rating .icon { - width: 1.4em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none !important; -} - -/* Active Heart */ - -.ui.heart.rating .active.icon { - background: transparent !important; - color: #FF6D75 !important; - text-shadow: 0px -1px 0px #CD0707, -1px 0px 0px #CD0707, 0px 1px 0px #CD0707, 1px 0px 0px #CD0707 !important; -} - -/* Selected Heart */ - -.ui.heart.rating .icon.selected, -.ui.heart.rating .icon.selected.active { - background: transparent !important; - color: #FF3000 !important; - text-shadow: 0px -1px 0px #AA0101, -1px 0px 0px #AA0101, 0px 1px 0px #AA0101, 1px 0px 0px #AA0101 !important; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -/* disabled rating */ - -.ui.disabled.rating .icon { - cursor: default; -} - -/*------------------- - User Interactive ---------------------*/ - -/* Selected Rating */ - -.ui.rating.selected .active.icon { - opacity: 1; -} - -.ui.rating.selected .icon.selected, -.ui.rating .icon.selected { - opacity: 1; -} - -/******************************* - Variations -*******************************/ - -.ui.mini.rating { - font-size: 0.78571429rem; -} - -.ui.tiny.rating { - font-size: 0.85714286rem; -} - -.ui.small.rating { - font-size: 0.92857143rem; -} - -.ui.rating { - font-size: 1rem; -} - -.ui.large.rating { - font-size: 1.14285714rem; -} - -.ui.huge.rating { - font-size: 1.42857143rem; -} - -.ui.massive.rating { - font-size: 2rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Rating'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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kIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOE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) format('woff'); - font-weight: normal; - font-style: normal; -} - -.ui.rating .icon { - font-family: 'Rating'; - line-height: 1; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -/* Empty Star */ - -.ui.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.rating .active.icon:before { - content: '\f005'; -} - -/*------------------- - Star ---------------------*/ - -/* Unfilled Star */ - -.ui.star.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.star.rating .active.icon:before { - content: '\f005'; -} - -/* Partial */ - -.ui.star.rating .partial.icon:before { - content: '\f006'; -} - -.ui.star.rating .partial.icon { - content: '\f005'; -} - -/*------------------- - Heart ---------------------*/ - -/* Empty Heart -.ui.heart.rating .icon:before { - content: '\f08a'; -} -*/ - -.ui.heart.rating .icon:before { - content: '\f004'; -} - -/* Active */ - -.ui.heart.rating .active.icon:before { - content: '\f004'; -} - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Search - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Search -*******************************/ - -.ui.search { - position: relative; -} - -.ui.search > .prompt { - margin: 0em; - outline: none; - -webkit-appearance: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - text-shadow: none; - font-style: normal; - font-weight: normal; - line-height: 1.21428571em; - padding: 0.67857143em 1em; - font-size: 1em; - background: #2E3235; - border: 1px solid rgba(24, 26, 28, 0.45); - color: #DDDDDD; - box-shadow: 0em 0em 0em 0em transparent inset; - transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease; -} - -.ui.search .prompt { - border-radius: 500rem; -} - -/*-------------- - Icon ----------------*/ - -.ui.search .prompt ~ .search.icon { - cursor: pointer; -} - -/*-------------- - Results ----------------*/ - -.ui.search > .results { - display: none; - position: absolute; - top: 100%; - left: 0%; - transform-origin: center top; - white-space: normal; - text-align: left; - text-transform: none; - background: #2E3235; - margin-top: 0.5em; - width: 18em; - border-radius: 0.35714286rem; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - border: 1px solid #3B3C3E; - z-index: 998; -} - -.ui.search > .results > :first-child { - border-radius: 0.35714286rem 0.35714286rem 0em 0em; -} - -.ui.search > .results > :last-child { - border-radius: 0em 0em 0.35714286rem 0.35714286rem; -} - -/*-------------- - Result ----------------*/ - -.ui.search > .results .result { - cursor: pointer; - display: block; - overflow: hidden; - font-size: 1em; - padding: 0.85714286em 1.14285714em; - color: #DDDDDD; - line-height: 1.33; - border-bottom: 1px solid rgba(24, 26, 28, 0.1); -} - -.ui.search > .results .result:last-child { - border-bottom: none !important; -} - -/* Image */ - -.ui.search > .results .result .image { - float: right; - overflow: hidden; - background: none; - width: 5em; - height: 3em; - border-radius: 0.25em; -} - -.ui.search > .results .result .image img { - display: block; - width: auto; - height: 100%; -} - -/*-------------- - Info ----------------*/ - -.ui.search > .results .result .image + .content { - margin: 0em 6em 0em 0em; -} - -.ui.search > .results .result .title { - margin: -0.14285714em 0em 0em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-weight: 600; - font-size: 1em; - color: rgba(255, 255, 255, 0.95); -} - -.ui.search > .results .result .description { - margin-top: 0; - font-size: 0.92857143em; - color: rgba(255, 255, 255, 0.5); -} - -.ui.search > .results .result .price { - float: right; - color: #21BA45; -} - -/*-------------- - Message ----------------*/ - -.ui.search > .results > .message { - padding: 1em 1em; -} - -.ui.search > .results > .message .header { - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1rem; - font-weight: 600; - color: #DDDDDD; -} - -.ui.search > .results > .message .description { - margin-top: 0.25rem; - font-size: 1em; - color: #DDDDDD; -} - -/* View All Results */ - -.ui.search > .results > .action { - display: block; - border-top: none; - background: #4B5257; - padding: 0.92857143em 1em; - color: #DDDDDD; - font-weight: 600; - text-align: center; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Focus ----------------------*/ - -.ui.search > .prompt:focus { - border-color: rgba(24, 26, 28, 0.35); - background: #2E3235; - color: rgba(255, 255, 255, 0.95); -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.search .input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.search .input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - animation: button-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; -} - -/*-------------- - Hover ----------------*/ - -.ui.search > .results .result:hover, -.ui.category.search > .results .category .result:hover { - background: #34393D; -} - -.ui.search .action:hover { - background: #E0E0E0; -} - -/*-------------- - Active ----------------*/ - -.ui.category.search > .results .category.active { - background: #4B5257; -} - -.ui.category.search > .results .category.active > .name { - color: #DDDDDD; -} - -.ui.search > .results .result.active, -.ui.category.search > .results .category .result.active { - position: relative; - border-left-color: rgba(24, 26, 28, 0.1); - background: #4B5257; - box-shadow: none; -} - -.ui.search > .results .result.active .title { - color: rgba(255, 255, 255, 0.95); -} - -.ui.search > .results .result.active .description { - color: rgba(255, 255, 255, 0.95); -} - -/*-------------------- - Disabled -----------------------*/ - -/* Disabled */ - -.ui.disabled.search { - cursor: default; - pointer-events: none; - opacity: 0.45; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -.ui.search.selection .prompt { - border-radius: 0.35714286rem; -} - -/* Remove input */ - -.ui.search.selection > .icon.input > .remove.icon { - pointer-events: none; - position: absolute; - left: auto; - opacity: 0; - color: ''; - top: 0em; - right: 0em; - transition: color 0.1s ease, opacity 0.1s ease; -} - -.ui.search.selection > .icon.input > .active.remove.icon { - cursor: pointer; - opacity: 0.8; - pointer-events: auto; -} - -.ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon { - right: 1.85714em; -} - -.ui.search.selection > .icon.input > .remove.icon:hover { - opacity: 1; - color: #DB2828; -} - -/*-------------- - Category ----------------*/ - -.ui.category.search .results { - width: 28em; -} - -.ui.category.search .results.animating, -.ui.category.search .results.visible { - display: table; -} - -/* Category */ - -.ui.category.search > .results .category { - display: table-row; - background: #4B5257; - box-shadow: none; - transition: background 0.1s ease, border-color 0.1s ease; -} - -/* Last Category */ - -.ui.category.search > .results .category:last-child { - border-bottom: none; -} - -/* First / Last */ - -.ui.category.search > .results .category:first-child .name + .result { - border-radius: 0em 0.35714286rem 0em 0em; -} - -.ui.category.search > .results .category:last-child .result:last-child { - border-radius: 0em 0em 0.35714286rem 0em; -} - -/* Category Result Name */ - -.ui.category.search > .results .category > .name { - display: table-cell; - text-overflow: ellipsis; - width: 100px; - white-space: nowrap; - background: transparent; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: 1em; - padding: 0.4em 1em; - font-weight: 600; - color: rgba(255, 255, 255, 0.5); - border-bottom: 1px solid rgba(24, 26, 28, 0.1); -} - -/* Category Result */ - -.ui.category.search > .results .category .results { - display: table-cell; - background: #2E3235; - border-left: 1px solid rgba(24, 26, 28, 0.45); - border-bottom: 1px solid rgba(24, 26, 28, 0.1); -} - -.ui.category.search > .results .category .result { - border-bottom: 1px solid rgba(24, 26, 28, 0.1); - transition: background 0.1s ease, border-color 0.1s ease; - padding: 0.85714286em 1.14285714em; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Left / Right ---------------------*/ - -.ui[class*="left aligned"].search > .results { - right: auto; - left: 0%; -} - -.ui[class*="right aligned"].search > .results { - right: 0%; - left: auto; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.search .results { - width: 100%; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.search { - font-size: 0.78571429em; -} - -.ui.small.search { - font-size: 0.92857143em; -} - -.ui.search { - font-size: 1em; -} - -.ui.large.search { - font-size: 1.14285714em; -} - -.ui.big.search { - font-size: 1.28571429em; -} - -.ui.huge.search { - font-size: 1.42857143em; -} - -.ui.massive.search { - font-size: 1.71428571em; -} - -/*-------------- - Mobile ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.search .results { - max-width: calc(100vw - 2rem); - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Shape - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Shape -*******************************/ - -.ui.shape { - position: relative; - vertical-align: top; - display: inline-block; - perspective: 2000px; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; -} - -.ui.shape .sides { - transform-style: preserve-3d; -} - -.ui.shape .side { - opacity: 1; - width: 100%; - margin: 0em !important; - backface-visibility: hidden; -} - -.ui.shape .side { - display: none; -} - -.ui.shape .side * { - backface-visibility: visible !important; -} - -/******************************* - Types -*******************************/ - -.ui.cube.shape .side { - min-width: 15em; - height: 15em; - padding: 2em; - background-color: #E6E6E6; - color: #DDDDDD; - box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); -} - -.ui.cube.shape .side > .content { - width: 100%; - height: 100%; - display: table; - text-align: center; - user-select: text; -} - -.ui.cube.shape .side > .content > div { - display: table-cell; - vertical-align: middle; - font-size: 2em; -} - -/******************************* - Variations -*******************************/ - -.ui.text.shape.animating .sides { - position: static; -} - -.ui.text.shape .side { - white-space: nowrap; -} - -.ui.text.shape .side > * { - white-space: normal; -} - -/******************************* - States -*******************************/ - -/*-------------- - Loading ----------------*/ - -.ui.loading.shape { - position: absolute; - top: -9999px; - left: -9999px; -} - -/*-------------- - Animating ----------------*/ - -.ui.shape .animating.side { - position: absolute; - top: 0px; - left: 0px; - display: block; - z-index: 100; -} - -.ui.shape .hidden.side { - opacity: 0.6; -} - -/*-------------- - CSS ----------------*/ - -.ui.shape.animating .sides { - position: absolute; -} - -.ui.shape.animating .sides { - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; -} - -.ui.shape.animating .side { - transition: opacity 0.6s ease-in-out; -} - -/*-------------- - Active ----------------*/ - -.ui.shape .active.side { - display: block; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Sidebar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Sidebar -*******************************/ - -/* Sidebar Menu */ - -.ui.sidebar { - position: fixed; - top: 0; - left: 0; - backface-visibility: hidden; - transition: none; - will-change: transform; - transform: translate3d(0, 0, 0); - visibility: hidden; - -webkit-overflow-scrolling: touch; - height: 100% !important; - max-height: 100%; - border-radius: 0em !important; - margin: 0em !important; - overflow-y: auto !important; - z-index: 102; -} - -/* GPU Layers for Child Elements */ - -.ui.sidebar > * { - backface-visibility: hidden; -} - -/*-------------- - Direction ----------------*/ - -.ui.left.sidebar { - right: auto; - left: 0px; - transform: translate3d(-100%, 0, 0); -} - -.ui.right.sidebar { - right: 0px !important; - left: auto !important; - transform: translate3d(100%, 0%, 0); -} - -.ui.top.sidebar, -.ui.bottom.sidebar { - width: 100% !important; - height: auto !important; -} - -.ui.top.sidebar { - top: 0px !important; - bottom: auto !important; - transform: translate3d(0, -100%, 0); -} - -.ui.bottom.sidebar { - top: auto !important; - bottom: 0px !important; - transform: translate3d(0, 100%, 0); -} - -/*-------------- - Pushable ----------------*/ - -.pushable { - height: 100%; - overflow-x: hidden; - padding: 0em !important; -} - -/* Whole Page */ - -body.pushable { - background: #545454 !important; -} - -/* Page Context */ - -.pushable:not(body) { - transform: translate3d(0, 0, 0); -} - -.pushable:not(body) > .ui.sidebar, -.pushable:not(body) > .fixed, -.pushable:not(body) > .pusher:after { - position: absolute; -} - -/*-------------- - Fixed ----------------*/ - -.pushable > .fixed { - position: fixed; - backface-visibility: hidden; - transition: transform 500ms ease; - will-change: transform; - z-index: 101; -} - -/*-------------- - Page ----------------*/ - -.pushable > .pusher { - position: relative; - backface-visibility: hidden; - overflow: hidden; - min-height: 100%; - transition: transform 500ms ease; - z-index: 2; -} - -body.pushable > .pusher { - background: #2E3235; -} - -/* Pusher should inherit background from context */ - -.pushable > .pusher { - background: inherit; -} - -/*-------------- - Dimmer ----------------*/ - -.pushable > .pusher:after { - position: fixed; - top: 0px; - right: 0px; - content: ''; - background-color: rgba(0, 0, 0, 0.4); - overflow: hidden; - opacity: 0; - transition: opacity 500ms; - will-change: opacity; - z-index: 1000; -} - -/*-------------- - Coupling ----------------*/ - -.ui.sidebar.menu .item { - border-radius: 0em !important; -} - -/******************************* - States -*******************************/ - -/*-------------- - Dimmed ----------------*/ - -.pushable > .pusher.dimmed:after { - width: 100% !important; - height: 100% !important; - opacity: 1 !important; -} - -/*-------------- - Animating ----------------*/ - -.ui.animating.sidebar { - visibility: visible; -} - -/*-------------- - Visible ----------------*/ - -.ui.visible.sidebar { - visibility: visible; - transform: translate3d(0, 0, 0); -} - -/* Shadow Direction */ - -.ui.left.visible.sidebar, -.ui.right.visible.sidebar { - box-shadow: 0px 0px 20px rgba(24, 26, 28, 0.45); -} - -.ui.top.visible.sidebar, -.ui.bottom.visible.sidebar { - box-shadow: 0px 0px 20px rgba(24, 26, 28, 0.45); -} - -/* Visible On Load */ - -.ui.visible.left.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .pusher { - transform: translate3d(260px, 0, 0); -} - -.ui.visible.right.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .pusher { - transform: translate3d(-260px, 0, 0); -} - -.ui.visible.top.sidebar ~ .fixed, -.ui.visible.top.sidebar ~ .pusher { - transform: translate3d(0, 36px, 0); -} - -.ui.visible.bottom.sidebar ~ .fixed, -.ui.visible.bottom.sidebar ~ .pusher { - transform: translate3d(0, -36px, 0); -} - -/* opposite sides visible forces content overlay */ - -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher { - transform: translate3d(0, 0, 0); -} - -/*-------------- - iOS ----------------*/ - -/******************************* - Variations -*******************************/ - -/*-------------- - Width ----------------*/ - -/* Left / Right */ - -.ui.thin.left.sidebar, -.ui.thin.right.sidebar { - width: 150px; -} - -.ui[class*="very thin"].left.sidebar, -.ui[class*="very thin"].right.sidebar { - width: 60px; -} - -.ui.left.sidebar, -.ui.right.sidebar { - width: 260px; -} - -.ui.wide.left.sidebar, -.ui.wide.right.sidebar { - width: 350px; -} - -.ui[class*="very wide"].left.sidebar, -.ui[class*="very wide"].right.sidebar { - width: 475px; -} - -/* Left Visible */ - -.ui.visible.thin.left.sidebar ~ .fixed, -.ui.visible.thin.left.sidebar ~ .pusher { - transform: translate3d(150px, 0, 0); -} - -.ui.visible[class*="very thin"].left.sidebar ~ .fixed, -.ui.visible[class*="very thin"].left.sidebar ~ .pusher { - transform: translate3d(60px, 0, 0); -} - -.ui.visible.wide.left.sidebar ~ .fixed, -.ui.visible.wide.left.sidebar ~ .pusher { - transform: translate3d(350px, 0, 0); -} - -.ui.visible[class*="very wide"].left.sidebar ~ .fixed, -.ui.visible[class*="very wide"].left.sidebar ~ .pusher { - transform: translate3d(475px, 0, 0); -} - -/* Right Visible */ - -.ui.visible.thin.right.sidebar ~ .fixed, -.ui.visible.thin.right.sidebar ~ .pusher { - transform: translate3d(-150px, 0, 0); -} - -.ui.visible[class*="very thin"].right.sidebar ~ .fixed, -.ui.visible[class*="very thin"].right.sidebar ~ .pusher { - transform: translate3d(-60px, 0, 0); -} - -.ui.visible.wide.right.sidebar ~ .fixed, -.ui.visible.wide.right.sidebar ~ .pusher { - transform: translate3d(-350px, 0, 0); -} - -.ui.visible[class*="very wide"].right.sidebar ~ .fixed, -.ui.visible[class*="very wide"].right.sidebar ~ .pusher { - transform: translate3d(-475px, 0, 0); -} - -/******************************* - Animations -*******************************/ - -/*-------------- - Overlay ----------------*/ - -/* Set-up */ - -.ui.overlay.sidebar { - z-index: 102; -} - -/* Initial */ - -.ui.left.overlay.sidebar { - transform: translate3d(-100%, 0%, 0); -} - -.ui.right.overlay.sidebar { - transform: translate3d(100%, 0%, 0); -} - -.ui.top.overlay.sidebar { - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.overlay.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* Animation */ - -.animating.ui.overlay.sidebar, -.ui.visible.overlay.sidebar { - transition: transform 500ms ease; -} - -/* End - Sidebar */ - -.ui.visible.left.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.right.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.top.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.bottom.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} - -/* End - Pusher */ - -.ui.visible.overlay.sidebar ~ .fixed, -.ui.visible.overlay.sidebar ~ .pusher { - transform: none !important; -} - -/*-------------- - Push ----------------*/ - -/* Initial */ - -.ui.push.sidebar { - transition: transform 500ms ease; - z-index: 102; -} - -/* Sidebar - Initial */ - -.ui.left.push.sidebar { - transform: translate3d(-100%, 0, 0); -} - -.ui.right.push.sidebar { - transform: translate3d(100%, 0, 0); -} - -.ui.top.push.sidebar { - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.push.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* End */ - -.ui.visible.push.sidebar { - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Uncover ----------------*/ - -/* Initial */ - -.ui.uncover.sidebar { - transform: translate3d(0, 0, 0); - z-index: 1; -} - -/* End */ - -.ui.visible.uncover.sidebar { - transform: translate3d(0, 0, 0); - transition: transform 500ms ease; -} - -/*-------------- - Slide Along ----------------*/ - -/* Initial */ - -.ui.slide.along.sidebar { - z-index: 1; -} - -/* Sidebar - Initial */ - -.ui.left.slide.along.sidebar { - transform: translate3d(-50%, 0, 0); -} - -.ui.right.slide.along.sidebar { - transform: translate3d(50%, 0, 0); -} - -.ui.top.slide.along.sidebar { - transform: translate3d(0, -50%, 0); -} - -.ui.bottom.slide.along.sidebar { - transform: translate3d(0%, 50%, 0); -} - -/* Animation */ - -.ui.animating.slide.along.sidebar { - transition: transform 500ms ease; -} - -/* End */ - -.ui.visible.slide.along.sidebar { - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Slide Out ----------------*/ - -/* Initial */ - -.ui.slide.out.sidebar { - z-index: 1; -} - -/* Sidebar - Initial */ - -.ui.left.slide.out.sidebar { - transform: translate3d(50%, 0, 0); -} - -.ui.right.slide.out.sidebar { - transform: translate3d(-50%, 0, 0); -} - -.ui.top.slide.out.sidebar { - transform: translate3d(0%, 50%, 0); -} - -.ui.bottom.slide.out.sidebar { - transform: translate3d(0%, -50%, 0); -} - -/* Animation */ - -.ui.animating.slide.out.sidebar { - transition: transform 500ms ease; -} - -/* End */ - -.ui.visible.slide.out.sidebar { - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Scale Down ----------------*/ - -/* Initial */ - -.ui.scale.down.sidebar { - transition: transform 500ms ease; - z-index: 102; -} - -/* Sidebar - Initial */ - -.ui.left.scale.down.sidebar { - transform: translate3d(-100%, 0, 0); -} - -.ui.right.scale.down.sidebar { - transform: translate3d(100%, 0, 0); -} - -.ui.top.scale.down.sidebar { - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.scale.down.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* Pusher - Initial */ - -.ui.scale.down.left.sidebar ~ .pusher { - transform-origin: 75% 50%; -} - -.ui.scale.down.right.sidebar ~ .pusher { - transform-origin: 25% 50%; -} - -.ui.scale.down.top.sidebar ~ .pusher { - transform-origin: 50% 75%; -} - -.ui.scale.down.bottom.sidebar ~ .pusher { - transform-origin: 50% 25%; -} - -/* Animation */ - -.ui.animating.scale.down > .visible.ui.sidebar { - transition: transform 500ms ease; -} - -.ui.visible.scale.down.sidebar ~ .pusher, -.ui.animating.scale.down.sidebar ~ .pusher { - display: block !important; - width: 100%; - height: 100%; - overflow: hidden !important; -} - -/* End */ - -.ui.visible.scale.down.sidebar { - transform: translate3d(0, 0, 0); -} - -.ui.visible.scale.down.sidebar ~ .pusher { - transform: scale(0.75); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Sticky - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Sticky -*******************************/ - -.ui.sticky { - position: static; - transition: none; - z-index: 800; -} - -/******************************* - States -*******************************/ - -/* Bound */ - -.ui.sticky.bound { - position: absolute; - left: auto; - right: auto; -} - -/* Fixed */ - -.ui.sticky.fixed { - position: fixed; - left: auto; - right: auto; -} - -/* Bound/Fixed Position */ - -.ui.sticky.bound.top, -.ui.sticky.fixed.top { - top: 0px; - bottom: auto; -} - -.ui.sticky.bound.bottom, -.ui.sticky.fixed.bottom { - top: auto; - bottom: 0px; -} - -/******************************* - Types -*******************************/ - -.ui.native.sticky { - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! - * # Semantic UI - Tab - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - UI Tabs -*******************************/ - -.ui.tab { - display: none; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Active ----------------------*/ - -.ui.tab.active, -.ui.tab.open { - display: block; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.tab.loading { - position: relative; - overflow: hidden; - display: block; - min-height: 250px; -} - -.ui.tab.loading * { - position: relative !important; - left: -10000px !important; -} - -.ui.tab.loading:before, -.ui.tab.loading.segment:before { - position: absolute; - content: ''; - top: 100px; - left: 50%; - margin: -1.25em 0em 0em -1.25em; - width: 2.5em; - height: 2.5em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.tab.loading:after, -.ui.tab.loading.segment:after { - position: absolute; - content: ''; - top: 100px; - left: 50%; - margin: -1.25em 0em 0em -1.25em; - width: 2.5em; - height: 2.5em; - animation: button-spin 0.6s linear; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - box-shadow: 0px 0px 0px 1px transparent; -} - -/******************************* - Tab Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! - * # Semantic UI - Transition - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Transitions -*******************************/ - -.transition { - animation-iteration-count: 1; - animation-duration: 300ms; - animation-timing-function: ease; - animation-fill-mode: both; -} - -/******************************* - States -*******************************/ - -/* Animating */ - -.animating.transition { - backface-visibility: hidden; - visibility: visible !important; -} - -/* Loading */ - -.loading.transition { - position: absolute; - top: -99999px; - left: -99999px; -} - -/* Hidden */ - -.hidden.transition { - display: none; - visibility: hidden; -} - -/* Visible */ - -.visible.transition { - display: block !important; - visibility: visible !important; - /* backface-visibility: @backfaceVisibility; - transform: @use3DAcceleration;*/ -} - -/* Disabled */ - -.disabled.transition { - animation-play-state: paused; -} - -/******************************* - Variations -*******************************/ - -.looping.transition { - animation-iteration-count: infinite; -} - -/******************************* - Transitions -*******************************/ - -/* - Some transitions adapted from Animate CSS - https://github.com/daneden/animate.css - - Additional transitions adapted from Glide - by Nick Pettit - https://github.com/nickpettit/glide -*/ - -/*-------------- - Browse ----------------*/ - -.transition.browse { - animation-duration: 500ms; -} - -.transition.browse.in { - animation-name: browseIn; -} - -.transition.browse.out, -.transition.browse.left.out { - animation-name: browseOutLeft; -} - -.transition.browse.right.out { - animation-name: browseOutRight; -} - -/* In */ - -@keyframes browseIn { - 0% { - transform: scale(0.8) translateZ(0px); - z-index: -1; - } - - 10% { - transform: scale(0.8) translateZ(0px); - z-index: -1; - opacity: 0.7; - } - - 80% { - transform: scale(1.05) translateZ(0px); - opacity: 1; - z-index: 999; - } - - 100% { - transform: scale(1) translateZ(0px); - z-index: 999; - } -} - -/* Out */ - -@keyframes browseOutLeft { - 0% { - z-index: 999; - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: -1; - transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: -1; - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -@keyframes browseOutRight { - 0% { - z-index: 999; - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: 1; - transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: 1; - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -/*-------------- - Drop ----------------*/ - -.drop.transition { - transform-origin: top center; - animation-duration: 400ms; - animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); -} - -.drop.transition.in { - animation-name: dropIn; -} - -.drop.transition.out { - animation-name: dropOut; -} - -/* Drop */ - -@keyframes dropIn { - 0% { - opacity: 0; - transform: scale(0); - } - - 100% { - opacity: 1; - transform: scale(1); - } -} - -@keyframes dropOut { - 0% { - opacity: 1; - transform: scale(1); - } - - 100% { - opacity: 0; - transform: scale(0); - } -} - -/*-------------- - Fade ----------------*/ - -.transition.fade.in { - animation-name: fadeIn; -} - -.transition[class*="fade up"].in { - animation-name: fadeInUp; -} - -.transition[class*="fade down"].in { - animation-name: fadeInDown; -} - -.transition[class*="fade left"].in { - animation-name: fadeInLeft; -} - -.transition[class*="fade right"].in { - animation-name: fadeInRight; -} - -.transition.fade.out { - animation-name: fadeOut; -} - -.transition[class*="fade up"].out { - animation-name: fadeOutUp; -} - -.transition[class*="fade down"].out { - animation-name: fadeOutDown; -} - -.transition[class*="fade left"].out { - animation-name: fadeOutLeft; -} - -.transition[class*="fade right"].out { - animation-name: fadeOutRight; -} - -/* In */ - -@keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - transform: translateY(10%); - } - - 100% { - opacity: 1; - transform: translateY(0%); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - transform: translateY(-10%); - } - - 100% { - opacity: 1; - transform: translateY(0%); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - transform: translateX(10%); - } - - 100% { - opacity: 1; - transform: translateX(0%); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - transform: translateX(-10%); - } - - 100% { - opacity: 1; - transform: translateX(0%); - } -} - -/* Out */ - -@keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - transform: translateY(0%); - } - - 100% { - opacity: 0; - transform: translateY(5%); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - transform: translateY(0%); - } - - 100% { - opacity: 0; - transform: translateY(-5%); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - transform: translateX(0%); - } - - 100% { - opacity: 0; - transform: translateX(5%); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - transform: translateX(0%); - } - - 100% { - opacity: 0; - transform: translateX(-5%); - } -} - -/*-------------- - Flips ----------------*/ - -.flip.transition.in, -.flip.transition.out { - animation-duration: 600ms; -} - -.horizontal.flip.transition.in { - animation-name: horizontalFlipIn; -} - -.horizontal.flip.transition.out { - animation-name: horizontalFlipOut; -} - -.vertical.flip.transition.in { - animation-name: verticalFlipIn; -} - -.vertical.flip.transition.out { - animation-name: verticalFlipOut; -} - -/* In */ - -@keyframes horizontalFlipIn { - 0% { - transform: perspective(2000px) rotateY(-90deg); - opacity: 0; - } - - 100% { - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } -} - -@keyframes verticalFlipIn { - 0% { - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } - - 100% { - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } -} - -/* Out */ - -@keyframes horizontalFlipOut { - 0% { - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } - - 100% { - transform: perspective(2000px) rotateY(90deg); - opacity: 0; - } -} - -@keyframes verticalFlipOut { - 0% { - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } - - 100% { - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } -} - -/*-------------- - Scale ----------------*/ - -.scale.transition.in { - animation-name: scaleIn; -} - -.scale.transition.out { - animation-name: scaleOut; -} - -@keyframes scaleIn { - 0% { - opacity: 0; - transform: scale(0.8); - } - - 100% { - opacity: 1; - transform: scale(1); - } -} - -/* Out */ - -@keyframes scaleOut { - 0% { - opacity: 1; - transform: scale(1); - } - - 100% { - opacity: 0; - transform: scale(0.9); - } -} - -/*-------------- - Fly ----------------*/ - -/* Inward */ - -.transition.fly { - animation-duration: 0.6s; - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -} - -.transition.fly.in { - animation-name: flyIn; -} - -.transition[class*="fly up"].in { - animation-name: flyInUp; -} - -.transition[class*="fly down"].in { - animation-name: flyInDown; -} - -.transition[class*="fly left"].in { - animation-name: flyInLeft; -} - -.transition[class*="fly right"].in { - animation-name: flyInRight; -} - -/* Outward */ - -.transition.fly.out { - animation-name: flyOut; -} - -.transition[class*="fly up"].out { - animation-name: flyOutUp; -} - -.transition[class*="fly down"].out { - animation-name: flyOutDown; -} - -.transition[class*="fly left"].out { - animation-name: flyOutLeft; -} - -.transition[class*="fly right"].out { - animation-name: flyOutRight; -} - -/* In */ - -@keyframes flyIn { - 0% { - opacity: 0; - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - transform: scale3d(0.97, 0.97, 0.97); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1); - } -} - -@keyframes flyInUp { - 0% { - opacity: 0; - transform: translate3d(0, 1500px, 0); - } - - 60% { - opacity: 1; - transform: translate3d(0, -20px, 0); - } - - 75% { - transform: translate3d(0, 10px, 0); - } - - 90% { - transform: translate3d(0, -5px, 0); - } - - 100% { - transform: translate3d(0, 0, 0); - } -} - -@keyframes flyInDown { - 0% { - opacity: 0; - transform: translate3d(0, -1500px, 0); - } - - 60% { - opacity: 1; - transform: translate3d(0, 25px, 0); - } - - 75% { - transform: translate3d(0, -10px, 0); - } - - 90% { - transform: translate3d(0, 5px, 0); - } - - 100% { - transform: none; - } -} - -@keyframes flyInLeft { - 0% { - opacity: 0; - transform: translate3d(1500px, 0, 0); - } - - 60% { - opacity: 1; - transform: translate3d(-25px, 0, 0); - } - - 75% { - transform: translate3d(10px, 0, 0); - } - - 90% { - transform: translate3d(-5px, 0, 0); - } - - 100% { - transform: none; - } -} - -@keyframes flyInRight { - 0% { - opacity: 0; - transform: translate3d(-1500px, 0, 0); - } - - 60% { - opacity: 1; - transform: translate3d(25px, 0, 0); - } - - 75% { - transform: translate3d(-10px, 0, 0); - } - - 90% { - transform: translate3d(5px, 0, 0); - } - - 100% { - transform: none; - } -} - -/* Out */ - -@keyframes flyOut { - 20% { - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, 55% { - opacity: 1; - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - opacity: 0; - transform: scale3d(0.3, 0.3, 0.3); - } -} - -@keyframes flyOutUp { - 20% { - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - transform: translate3d(0, -20px, 0); - } - - 100% { - opacity: 0; - transform: translate3d(0, 2000px, 0); - } -} - -@keyframes flyOutDown { - 20% { - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - transform: translate3d(0, 20px, 0); - } - - 100% { - opacity: 0; - transform: translate3d(0, -2000px, 0); - } -} - -@keyframes flyOutRight { - 20% { - opacity: 1; - transform: translate3d(20px, 0, 0); - } - - 100% { - opacity: 0; - transform: translate3d(-2000px, 0, 0); - } -} - -@keyframes flyOutLeft { - 20% { - opacity: 1; - transform: translate3d(-20px, 0, 0); - } - - 100% { - opacity: 0; - transform: translate3d(2000px, 0, 0); - } -} - -/*-------------- - Slide ----------------*/ - -.transition.slide.in, -.transition[class*="slide down"].in { - animation-name: slideInY; - transform-origin: top center; -} - -.transition[class*="slide up"].in { - animation-name: slideInY; - transform-origin: bottom center; -} - -.transition[class*="slide left"].in { - animation-name: slideInX; - transform-origin: center right; -} - -.transition[class*="slide right"].in { - animation-name: slideInX; - transform-origin: center left; -} - -.transition.slide.out, -.transition[class*="slide down"].out { - animation-name: slideOutY; - transform-origin: top center; -} - -.transition[class*="slide up"].out { - animation-name: slideOutY; - transform-origin: bottom center; -} - -.transition[class*="slide left"].out { - animation-name: slideOutX; - transform-origin: center right; -} - -.transition[class*="slide right"].out { - animation-name: slideOutX; - transform-origin: center left; -} - -/* In */ - -@keyframes slideInY { - 0% { - opacity: 0; - transform: scaleY(0); - } - - 100% { - opacity: 1; - transform: scaleY(1); - } -} - -@keyframes slideInX { - 0% { - opacity: 0; - transform: scaleX(0); - } - - 100% { - opacity: 1; - transform: scaleX(1); - } -} - -/* Out */ - -@keyframes slideOutY { - 0% { - opacity: 1; - transform: scaleY(1); - } - - 100% { - opacity: 0; - transform: scaleY(0); - } -} - -@keyframes slideOutX { - 0% { - opacity: 1; - transform: scaleX(1); - } - - 100% { - opacity: 0; - transform: scaleX(0); - } -} - -/*-------------- - Swing ----------------*/ - -.transition.swing { - animation-duration: 800ms; -} - -.transition[class*="swing down"].in { - animation-name: swingInX; - transform-origin: top center; -} - -.transition[class*="swing up"].in { - animation-name: swingInX; - transform-origin: bottom center; -} - -.transition[class*="swing left"].in { - animation-name: swingInY; - transform-origin: center right; -} - -.transition[class*="swing right"].in { - animation-name: swingInY; - transform-origin: center left; -} - -.transition.swing.out, -.transition[class*="swing down"].out { - animation-name: swingOutX; - transform-origin: top center; -} - -.transition[class*="swing up"].out { - animation-name: swingOutX; - transform-origin: bottom center; -} - -.transition[class*="swing left"].out { - animation-name: swingOutY; - transform-origin: center right; -} - -.transition[class*="swing right"].out { - animation-name: swingOutY; - transform-origin: center left; -} - -/* In */ - -@keyframes swingInX { - 0% { - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } - - 40% { - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 60% { - transform: perspective(1000px) rotateX(15deg); - } - - 80% { - transform: perspective(1000px) rotateX(-7.5deg); - } - - 100% { - transform: perspective(1000px) rotateX(0deg); - } -} - -@keyframes swingInY { - 0% { - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } - - 40% { - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 60% { - transform: perspective(1000px) rotateY(-17.5deg); - } - - 80% { - transform: perspective(1000px) rotateY(7.5deg); - } - - 100% { - transform: perspective(1000px) rotateY(0deg); - } -} - -/* Out */ - -@keyframes swingOutX { - 0% { - transform: perspective(1000px) rotateX(0deg); - } - - 40% { - transform: perspective(1000px) rotateX(-7.5deg); - } - - 60% { - transform: perspective(1000px) rotateX(17.5deg); - } - - 80% { - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 100% { - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } -} - -@keyframes swingOutY { - 0% { - transform: perspective(1000px) rotateY(0deg); - } - - 40% { - transform: perspective(1000px) rotateY(7.5deg); - } - - 60% { - transform: perspective(1000px) rotateY(-10deg); - } - - 80% { - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 100% { - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } -} - -/*-------------- - Zoom ----------------*/ - -.transition.zoom.in { - animation-name: zoomIn; -} - -.transition.zoom.out { - animation-name: zoomOut; -} - -@keyframes zoomIn { - 0% { - opacity: 1; - transform: scale(0); - } - - 100% { - opacity: 1; - transform: scale(1); - } -} - -@keyframes zoomOut { - 0% { - opacity: 1; - transform: scale(1); - } - - 100% { - opacity: 1; - transform: scale(0); - } -} - -/******************************* - Static Animations -*******************************/ - -/*-------------- - Emphasis ----------------*/ - -.flash.transition { - animation-duration: 750ms; - animation-name: flash; -} - -.shake.transition { - animation-duration: 750ms; - animation-name: shake; -} - -.bounce.transition { - animation-duration: 750ms; - animation-name: bounce; -} - -.tada.transition { - animation-duration: 750ms; - animation-name: tada; -} - -.pulse.transition { - animation-duration: 500ms; - animation-name: pulse; -} - -.jiggle.transition { - animation-duration: 750ms; - animation-name: jiggle; -} - -.transition.glow { - animation-duration: 2000ms; - animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); -} - -.transition.glow { - animation-name: glow; -} - -/* Flash */ - -@keyframes flash { - 0%, 50%, 100% { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -/* Shake */ - -@keyframes shake { - 0%, 100% { - transform: translateX(0); - } - - 10%, 30%, 50%, 70%, 90% { - transform: translateX(-10px); - } - - 20%, 40%, 60%, 80% { - transform: translateX(10px); - } -} - -/* Bounce */ - -@keyframes bounce { - 0%, 20%, 50%, 80%, 100% { - transform: translateY(0); - } - - 40% { - transform: translateY(-30px); - } - - 60% { - transform: translateY(-15px); - } -} - -/* Tada */ - -@keyframes tada { - 0% { - transform: scale(1); - } - - 10%, 20% { - transform: scale(0.9) rotate(-3deg); - } - - 30%, 50%, 70%, 90% { - transform: scale(1.1) rotate(3deg); - } - - 40%, 60%, 80% { - transform: scale(1.1) rotate(-3deg); - } - - 100% { - transform: scale(1) rotate(0); - } -} - -/* Pulse */ - -@keyframes pulse { - 0% { - transform: scale(1); - opacity: 1; - } - - 50% { - transform: scale(0.9); - opacity: 0.7; - } - - 100% { - transform: scale(1); - opacity: 1; - } -} - -/* Jiggle */ - -@keyframes jiggle { - 0% { - transform: scale3d(1, 1, 1); - } - - 30% { - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - transform: scale3d(1.05, 0.95, 1); - } - - 100% { - transform: scale3d(1, 1, 1); - } -} - -/* Glow */ - -@keyframes glow { - 0% { - background-color: #FCFCFD; - } - - 30% { - background-color: #FFF6CD; - } - - 100% { - background-color: #FCFCFD; - } -} - -/******************************* - Site Overrides -*******************************/ \ No newline at end of file diff --git a/styles/theme.min.css b/styles/theme.min.css deleted file mode 100644 index 41d4e9e..0000000 --- a/styles/theme.min.css +++ /dev/null @@ -1,11 +0,0 @@ -/* - * # Fomantic UI - 2.8.8 - * https://github.com/fomantic/Fomantic-UI - * http://fomantic-ui.com/ - * - * Copyright 2024 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -body,html{height:100%}html{font-size:14px}body{margin:0;padding:0;overflow-x:hidden;min-width:320px;background:#2e3235;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:14px;line-height:1.4285em;color:#ddd;font-smoothing:antialiased}h1,h2,h3,h4,h5{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;line-height:1.28571429em;margin:calc(2rem - .1428571428571429em) 0 1rem;font-weight:600;padding:0}h1{min-height:1rem;font-size:2rem}h2{font-size:1.71428571rem}h3{font-size:1.28571429rem}h4{font-size:1.07142857rem}h5{font-size:1rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child{margin-bottom:0}p{margin:0 0 1em;line-height:1.4285em}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a{color:#6987af;text-decoration:none}a:hover{color:#729ad0;text-decoration:none}::-webkit-selection{background-color:#6987af;color:#ddd}::selection{background-color:#6987af;color:#ddd}input::-webkit-selection,textarea::-webkit-selection{background-color:#2185d0;color:#ddd}input::selection,textarea::selection{background-color:#2185d0;color:#ddd}:root{color-scheme:dark}:root{--font-name:'Lato';--font-smoothing:antialiased;--header-font:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;--page-font:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;--google-font-name:'Lato';--import-google-fonts:false;--google-font-sizes:'400,700,400italic,700italic';--google-subset:'latin';--google-protocol:'https://';--google-font-request:'Lato:400,700,400italic,700italic&subset=latin';--em-size:14px;--font-size:14px;--relative-border-radius:0.35714286em;--absolute-border-radius:0.35714286rem;--default-border-radius:0.35714286rem;--primary-color:#6987AF;--secondary-color:#F9FAFB;--light-primary-color:#54C8FF;--light-secondary-color:#545454;--header-font-weight:600;--header-line-height:1.28571429em;--h1:2rem;--h2:1.71428571rem;--h3:1.28571429rem;--h4:1.07142857rem;--h5:1rem;--input-background:#2E3235;--input-vertical-padding:0.78571429em;--input-horizontal-padding:1em;--input-padding:0.78571429em 1em;--input-color:#DDDDDD;--input-placeholder-color:#777777;--input-placeholder-focus-color:#777777;--input-line-height:1.21428571em;--focused-form-border-color:#85B7D9;--focused-form-muted-border-color:#96C8DA;--unfocused-outline-color:transparent;--unfocused-outline-offset:0.4rem;--focused-outline-style:solid;--focused-outline-width:0.14285714rem;--focused-outline-color:color-mix(in srgb, #96C8DA, transparent 50%);--focused-outline-offset:0rem;--mini-size:0.78571429;--tiny-size:0.85714286;--small-size:0.92857143;--medium-size:1;--large-size:1.14285714;--big-size:1.28571429;--huge-size:1.42857143;--massive-size:1.71428571;--page-background:#2E3235;--page-overflow-x:hidden;--line-height:1.4285em;--text-color:#DDDDDD;--paragraph-margin:0em 0em 1em;--paragraph-line-height:1.4285em;--link-color:#6987AF;--link-underline:none;--link-hover-color:#729ad0;--link-hover-underline:none;--highlight-background:#6987AF;--highlight-color:#DDDDDD;--input-highlight-background:#2185D0;--input-highlight-color:#DDDDDD;--loader-size:1.28571429em;--loader-speed:0.6s;--loader-line-width:0.2em;--loader-fill-color:rgba(0, 0, 0, 0.1);--loader-line-color:#767676;--inverted-loader-fill-color:rgba(255, 255, 255, 0.15);--inverted-loader-line-color:#2E3235;--column-count:16;--default-duration:0.1s;--default-easing:ease;--mobile-breakpoint:320px;--tablet-breakpoint:768px;--computer-breakpoint:992px;--large-monitor-breakpoint:1200px;--widescreen-monitor-breakpoint:1920px;--red:#DB2828;--orange:#C06D36;--yellow:#FBBD08;--olive:#B5CC18;--green:#21BA45;--teal:#00B5AD;--blue:#2185D0;--violet:#6435C9;--purple:#A333C8;--pink:#E03997;--brown:#A5673F;--grey:#767676;--black:#F9FAFB;--light-red:#FF695E;--light-orange:#FF851B;--light-yellow:#FFE21F;--light-olive:#D9E778;--light-green:#2ECC40;--light-teal:#6DFFFF;--light-blue:#54C8FF;--light-violet:#A291FB;--light-purple:#DC73FF;--light-pink:#FF8EDF;--light-brown:#D67C1C;--light-grey:#DCDDDE;--light-black:#545454;--full-black:#FFFFFF;--off-white:#34393D;--dark-white:#4B5257;--mid-white:#666E74;--white:#2E3235;--red-background:#FFE8E6;--orange-background:#FFEDDE;--yellow-background:#FFF8DB;--olive-background:#FBFDEF;--green-background:#E5F9E7;--teal-background:#E1F7F7;--blue-background:#DFF0FF;--violet-background:#EAE7FF;--purple-background:#F6E7FF;--pink-background:#FFE3FB;--brown-background:#F1E2D3;--red-header-color:#c82121;--olive-header-color:#7aa61a;--green-header-color:#1aa62a;--yellow-header-color:#9c6f04;--blue-header-color:#1e77ba;--teal-header-color:#0e8c8c;--pink-header-color:#dd238b;--violet-header-color:#5a30b5;--purple-header-color:#922eb4;--orange-header-color:#ac6230;--brown-header-color:#935b38;--red-text-color:#DB2828;--orange-text-color:#C06D36;--yellow-text-color:#B58105;--olive-text-color:#8ABC1E;--green-text-color:#1EBC30;--teal-text-color:#10A3A3;--blue-text-color:#2185D0;--violet-text-color:#6435C9;--purple-text-color:#A333C8;--pink-text-color:#E03997;--brown-text-color:#A5673F;--red-border-color:#DB2828;--orange-border-color:#C06D36;--yellow-border-color:#B58105;--olive-border-color:#8ABC1E;--green-border-color:#1EBC30;--teal-border-color:#10A3A3;--blue-border-color:#2185D0;--violet-border-color:#6435C9;--purple-border-color:#A333C8;--pink-border-color:#E03997;--brown-border-color:#A5673F;--subtle-transparent-black:rgba(255, 255, 255, 0.03);--transparent-black:rgba(255, 255, 255, 0.05);--strong-transparent-black:rgba(255, 255, 255, 0.1);--very-strong-transparent-black:rgba(255, 255, 255, 0.15);--subtle-transparent-white:rgba(0, 0, 0, 0.02);--transparent-white:rgba(0, 0, 0, 0.08);--strong-transparent-white:rgba(0, 0, 0, 0.15);--subtle-gradient:linear-gradient(transparent, rgba(255, 255, 255, 0.05));--subtle-shadow:0px 1px 2px 0 rgba(24, 26, 28, 0.45);--floating-shadow:0px 2px 4px 0px rgba(34, 36, 38, 0.12),0px 2px 10px 0px rgba(34, 36, 38, 0.15);--raised-shadow:0px 2px 3px 0px rgba(24, 26, 28, 0.45);--positive-color:#21BA45;--positive-background-color:#FCFFF5;--positive-border-color:#A3C293;--positive-header-color:#1A531B;--positive-text-color:#2C662D;--negative-color:#DB2828;--negative-background-color:#FFF6F6;--negative-border-color:#E0B4B4;--negative-header-color:#912D2B;--negative-text-color:#9F3A38;--info-color:#31CCEC;--info-background-color:#F8FFFF;--info-border-color:#A9D5DE;--info-header-color:#0E566C;--info-text-color:#276F86;--warning-color:#F2C037;--warning-border-color:#794B02;--warning-background-color:#FFFAF3;--warning-header-color:#794B02;--warning-text-color:#573A08;--image-path:'./themes/default/assets/images';--font-path:'inkdrop://default-dark-ui/styles/themes/default/assets/fonts';--mini:0.78571429rem;--tiny:0.85714286rem;--small:0.92857143rem;--medium:1rem;--large:1.14285714rem;--big:1.28571429rem;--huge:1.42857143rem;--massive:1.71428571rem;--relative-mini:0.78571429em;--relative-tiny:0.85714286em;--relative-small:0.92857143em;--relative-medium:1em;--relative-large:1.14285714em;--relative-big:1.28571429em;--relative-huge:1.42857143em;--relative-massive:1.71428571em;--absolute-mini:0.78571429rem;--absolute-tiny:0.85714286rem;--absolute-small:0.92857143rem;--absolute-medium:1rem;--absolute-large:1.14285714rem;--absolute-big:1.28571429rem;--absolute-huge:1.42857143rem;--absolute-massive:1.71428571rem;--icon-width:1.18em;--dark-text-color:rgba(255, 255, 255, 0.95);--muted-text-color:rgba(255, 255, 255, 0.6);--light-text-color:rgba(255, 255, 255, 0.5);--unselected-text-color:rgba(255, 255, 255, 0.4);--hovered-text-color:rgba(255, 255, 255, 0.8);--pressed-text-color:rgba(255, 255, 255, 0.9);--selected-text-color:rgba(255, 255, 255, 0.95);--inverted-text-color:rgba(0, 0, 0, 0.9);--inverted-muted-text-color:rgba(0, 0, 0, 0.8);--inverted-light-text-color:rgba(0, 0, 0, 0.7);--inverted-unselected-text-color:rgba(0, 0, 0, 0.5);--inverted-hovered-text-color:#000000;--inverted-pressed-text-color:#000000;--inverted-selected-text-color:#000000;--facebook-color:#3B5998;--twitter-color:#55ACEE;--google-plus-color:#DD4B39;--linked-in-color:#1F88BE;--youtube-color:#FF0000;--instagram-color:#49769C;--pinterest-color:#BD081C;--vk-color:#4D7198;--circular-radius:500rem;--border-color:rgba(24, 26, 28, 0.45);--strong-border-color:rgba(24, 26, 28, 0.22);--internal-border-color:rgba(24, 26, 28, 0.1);--selected-border-color:rgba(24, 26, 28, 0.35);--strong-selected-border-color:rgba(24, 26, 28, 0.5);--disabled-border-color:rgba(24, 26, 28, 0.5);--solid-internal-border-color:#222222;--solid-border-color:#3B3C3E;--solid-selected-border-color:#4D5B66;--white-border-color:rgba(0, 0, 0, 0.1);--selected-white-border-color:rgba(0, 0, 0, 0.8);--solid-white-border-color:#34393D;--selected-solid-white-border-color:#4D5B66;--loader-offset:-0.64285714em;--loader-margin:-0.64285714em 0em 0em -0.64285714em;--glyph-width:1.1em;--line-height-offset:0.21425em;--header-line-height-offset:0.14285714em;--header-top-margin:calc(2rem - 0.1428571428571429em);--header-bottom-margin:1rem;--header-margin:calc(2rem - 0.1428571428571429em) 0em 1rem;--page-min-width:320px;--success-background-color:#FCFFF5;--success-color:#21BA45;--success-border-color:#A3C293;--success-header-color:#1A531B;--success-text-color:#2C662D;--error-background-color:#FFF6F6;--error-color:#DB2828;--error-border-color:#E0B4B4;--error-header-color:#912D2B;--error-text-color:#9F3A38;--largest-mobile-screen:767px;--largest-tablet-screen:991px;--largest-small-monitor:1199px;--largest-large-monitor:1919px;--1px:0.07142857rem;--2px:0.14285714rem;--3px:0.21428571rem;--4px:0.28571429rem;--5px:0.35714286rem;--6px:0.42857143rem;--7px:0.5rem;--8px:0.57142857rem;--9px:0.64285714rem;--10px:0.71428571rem;--11px:0.78571429rem;--12px:0.85714286rem;--13px:0.92857143rem;--14px:1rem;--15px:1.07142857rem;--16px:1.14285714rem;--17px:1.21428571rem;--18px:1.28571429rem;--19px:1.35714286rem;--20px:1.42857143rem;--21px:1.5rem;--22px:1.57142857rem;--23px:1.64285714rem;--24px:1.71428571rem;--25px:1.78571429rem;--26px:1.85714286rem;--27px:1.92857143rem;--28px:2rem;--29px:2.07142857rem;--30px:2.14285714rem;--31px:2.21428571rem;--32px:2.28571429rem;--33px:2.35714286rem;--34px:2.42857143rem;--35px:2.5rem;--36px:2.57142857rem;--37px:2.64285714rem;--38px:2.71428571rem;--39px:2.78571429rem;--40px:2.85714286rem;--41px:2.92857143rem;--42px:3rem;--43px:3.07142857rem;--44px:3.14285714rem;--45px:3.21428571rem;--46px:3.28571429rem;--47px:3.35714286rem;--48px:3.42857143rem;--49px:3.5rem;--50px:3.57142857rem;--51px:3.64285714rem;--52px:3.71428571rem;--53px:3.78571429rem;--54px:3.85714286rem;--55px:3.92857143rem;--56px:4rem;--57px:4.07142857rem;--58px:4.14285714rem;--59px:4.21428571rem;--60px:4.28571429rem;--61px:4.35714286rem;--62px:4.42857143rem;--63px:4.5rem;--64px:4.57142857rem;--relative1px:0.07142857em;--relative2px:0.14285714em;--relative3px:0.21428571em;--relative4px:0.28571429em;--relative5px:0.35714286em;--relative6px:0.42857143em;--relative7px:0.5em;--relative8px:0.57142857em;--relative9px:0.64285714em;--relative10px:0.71428571em;--relative11px:0.78571429em;--relative12px:0.85714286em;--relative13px:0.92857143em;--relative14px:1em;--relative15px:1.07142857em;--relative16px:1.14285714em;--relative17px:1.21428571em;--relative18px:1.28571429em;--relative19px:1.35714286em;--relative20px:1.42857143em;--relative21px:1.5em;--relative22px:1.57142857em;--relative23px:1.64285714em;--relative24px:1.71428571em;--relative25px:1.78571429em;--relative26px:1.85714286em;--relative27px:1.92857143em;--relative28px:2em;--relative29px:2.07142857em;--relative30px:2.14285714em;--relative31px:2.21428571em;--relative32px:2.28571429em;--relative33px:2.35714286em;--relative34px:2.42857143em;--relative35px:2.5em;--relative36px:2.57142857em;--relative37px:2.64285714em;--relative38px:2.71428571em;--relative39px:2.78571429em;--relative40px:2.85714286em;--relative41px:2.92857143em;--relative42px:3em;--relative43px:3.07142857em;--relative44px:3.14285714em;--relative45px:3.21428571em;--relative46px:3.28571429em;--relative47px:3.35714286em;--relative48px:3.42857143em;--relative49px:3.5em;--relative50px:3.57142857em;--relative51px:3.64285714em;--relative52px:3.71428571em;--relative53px:3.78571429em;--relative54px:3.85714286em;--relative55px:3.92857143em;--relative56px:4em;--relative57px:4.07142857em;--relative58px:4.14285714em;--relative59px:4.21428571em;--relative60px:4.28571429em;--relative61px:4.35714286em;--relative62px:4.42857143em;--relative63px:4.5em;--relative64px:4.57142857em;--one-wide:6.25%;--two-wide:12.5%;--three-wide:18.75%;--four-wide:25%;--five-wide:31.25%;--six-wide:37.5%;--seven-wide:43.75%;--eight-wide:50%;--nine-wide:56.25%;--ten-wide:62.5%;--eleven-wide:68.75%;--twelve-wide:75%;--thirteen-wide:81.25%;--fourteen-wide:87.5%;--fifteen-wide:93.75%;--sixteen-wide:100%;--one-column:100%;--two-column:50%;--three-column:33.33333333%;--four-column:25%;--five-column:20%;--six-column:16.66666667%;--seven-column:14.28571429%;--eight-column:12.5%;--nine-column:11.11111111%;--ten-column:10%;--eleven-column:9.09090909%;--twelve-column:8.33333333%;--thirteen-column:7.69230769%;--fourteen-column:7.14285714%;--fifteen-column:6.66666667%;--sixteen-column:6.25%;--disabled-opacity:0.45;--disabled-text-color:rgba(255, 255, 255, 0.2);--inverted-disabled-text-color:rgba(0, 0, 0, 0.2);--floating-shadow-hover:0px 2px 4px 0px rgba(34, 36, 38, 0.15),0px 2px 10px 0px rgba(34, 36, 38, 0.25);--primary-color-hover:#5579aa;--secondary-color-hover:#ffffff;--red-hover:#d01919;--orange-hover:#b2602a;--yellow-hover:#eaae00;--olive-hover:#a7bd0d;--green-hover:#16ab39;--teal-hover:#009c95;--blue-hover:#1678c2;--violet-hover:#5829bb;--purple-hover:#9627ba;--pink-hover:#e61a8d;--brown-hover:#975b33;--light-red-hover:#ff5144;--light-orange-hover:#ff7701;--light-yellow-hover:#ffdf05;--light-olive-hover:#d8ea5c;--light-green-hover:#22be34;--light-teal-hover:#54ffff;--light-blue-hover:#3ac0ff;--light-violet-hover:#8a73ff;--light-purple-hover:#d65aff;--light-pink-hover:#ff74d8;--light-brown-hover:#c86f11;--light-grey-hover:#cfd0d2;--light-black-hover:#f2f2f2;--positive-color-hover:#16ab39;--negative-color-hover:#d01919;--facebook-hover-color:#304d8a;--twitter-hover-color:#35a2f4;--google-plus-hover-color:#e0321c;--linked-in-hover-color:#147baf;--youtube-hover-color:#e60000;--instagram-hover-color:#3d698e;--pinterest-hover-color:#ac0013;--vk-hover-color:#41648a;--full-black-hover:#ffffff;--black-hover:#ffffff;--grey-hover:#838383;--white-hover:#222527;--off-white-hover:#282c2f;--dark-white-hover:#3f4549;--primary-color-focus:#4c71a3;--secondary-color-focus:#ffffff;--red-focus:#ca1010;--orange-focus:#ac5922;--yellow-focus:#daa300;--olive-focus:#a0b605;--green-focus:#0ea432;--teal-focus:#008c86;--blue-focus:#0d71bb;--violet-focus:#4f20b5;--purple-focus:#8f1eb4;--pink-focus:#e10f85;--brown-focus:#90532b;--light-red-focus:#ff4335;--light-orange-focus:#f17000;--light-yellow-focus:#f5d500;--light-olive-focus:#daef47;--light-green-focus:#19b82b;--light-teal-focus:#44ffff;--light-blue-focus:#2bbbff;--light-violet-focus:#7d64ff;--light-purple-focus:#d24aff;--light-pink-focus:#ff65d3;--light-brown-focus:#c16808;--light-grey-focus:#c7c9cb;--light-black-focus:#ebebeb;--positive-color-focus:#0ea432;--negative-color-focus:#ca1010;--facebook-focus-color:#284582;--twitter-focus-color:#1d9cfd;--google-plus-focus-color:#db2812;--linked-in-focus-color:#0c73a8;--youtube-focus-color:#d60000;--instagram-focus-color:#356287;--pinterest-focus-color:#9c0011;--vk-focus-color:#395d83;--full-black-focus:#ffffff;--black-focus:#ffffff;--grey-focus:#8a8a8a;--white-focus:#1b1d1f;--off-white-focus:#212427;--dark-white-focus:#383d41;--primary-color-down:#506e95;--secondary-color-down:#ffffff;--red-down:#b21e1e;--orange-down:#98562b;--yellow-down:#cd9903;--olive-down:#8d9e13;--green-down:#198f35;--teal-down:#00827c;--blue-down:#1a69a4;--violet-down:#502aa1;--purple-down:#82299f;--pink-down:#c71f7e;--brown-down:#805031;--light-red-down:#ff392b;--light-orange-down:#e76b00;--light-yellow-down:#ebcd00;--light-olive-down:#cddf4d;--light-green-down:#25a233;--light-teal-down:#3affff;--light-blue-down:#21b8ff;--light-violet-down:#7860f9;--light-purple-down:#cf40ff;--light-pink-down:#ff5bd1;--light-brown-down:#a96216;--light-grey-down:#c2c4c5;--light-black-down:#e6e6e6;--positive-color-down:#198f35;--negative-color-down:#b21e1e;--facebook-down-color:#2d4373;--twitter-down-color:#2795e9;--google-plus-down-color:#c23321;--linked-in-down-color:#186992;--youtube-down-color:#cc0000;--instagram-down-color:#395c79;--pinterest-down-color:#8c0615;--vk-down-color:#3c5876;--full-black-down:#ffffff;--black-down:#ffffff;--grey-down:#909090;--white-down:#16181a;--off-white-down:#1d1f21;--dark-white-down:#33383c;--primary-color-active:#5379ac;--secondary-color-active:#ffffff;--red-active:#d41515;--orange-active:#b56027;--yellow-active:#eaae00;--olive-active:#aac109;--green-active:#13ae38;--teal-active:#009c95;--blue-active:#1279c6;--violet-active:#5626bf;--purple-active:#9724be;--pink-active:#ea158d;--brown-active:#995a31;--light-red-active:#ff5144;--light-orange-active:#ff7701;--light-yellow-active:#ffdf05;--light-olive-active:#daed59;--light-green-active:#1fc231;--light-teal-active:#54ffff;--light-blue-active:#3ac0ff;--light-violet-active:#8a73ff;--light-purple-active:#d65aff;--light-pink-active:#ff74d8;--light-brown-active:#cc6f0d;--light-grey-active:#cfd0d2;--light-black-active:#f2f2f2;--positive-color-active:#13ae38;--negative-color-active:#d41515;--facebook-active-color:#2e4c8c;--twitter-active-color:#31a2f9;--google-plus-active-color:#e52e18;--linked-in-active-color:#117cb3;--youtube-active-color:#e60000;--instagram-active-color:#3b6990;--pinterest-active-color:#ac0013;--vk-active-color:#3f648c;--full-black-active:#f2f2f2;--black-active:#eaedf1;--grey-active:#696969;--white-active:#222527;--off-white-active:#282c2f;--dark-white-active:#3f4549;--sidebar-background:#2E3235;--sidebar-menu-item-active-background:hsl(var(--hsl-slate-500) / 40%);--sidebar-menu-item-inactive-background:rgba(0, 0, 0, 0.2);--sidebar-menu-section-color:rgba(255, 255, 255, 0.5);--sidebar-menu-section-separator-color:rgba(255, 255, 255, 0.1);--sidebar-menu-item-color:#DDDDDD;--sidebar-menu-action-color:rgba(255, 255, 255, 0.5);--sidebar-menu-action-hover-color:#4c71a3;--sidebar-sync-status-view-background:#26292C;--sidebar-sync-status-view-text-color:#DDDDDD;--sidebar-sync-status-view-detail-color:rgba(255, 255, 255, 0.5);--sidebar-scrollbar-width:6px;--sidebar-scrollbar-track-background:rgba(0, 0, 0, 0.02);--sidebar-scrollbar-thumb-background:rgba(255, 255, 255, 0.1);--scrollbar-width:6px;--scrollbar-track-background:rgba(0, 0, 0, 0.02);--scrollbar-thumb-background:rgba(255, 255, 255, 0.1);--note-list-bar-background:#34393D;--note-list-bar-pinned-section-header-background:rgba(255, 255, 255, 0.05);--note-list-bar-pinned-section-header-border-bottom:1px solid rgba(255, 255, 255, 0.1);--note-list-bar-pinned-section-footer-border-bottom:4px solid rgba(255, 255, 255, 0.2);--note-list-view-item-color:rgba(255, 255, 255, 0.6);--note-list-view-item-separator-border:1px solid #2E3235;--note-list-view-item-date-color:#6987AF;--note-list-view-item-tag-color:#6987AF;--note-list-view-item-inactive-background:#6987AF30;--note-list-view-item-active-background:#6987AF60;--note-list-view-item-active-color:#DDDDDD;--note-list-view-item-active-date-color:#DDDDDD;--note-list-view-item-active-tag-color:#DDDDDD;--note-list-view-item-focus-inner-shadow:none;--note-search-bar-background:#34393D;--note-search-bar-border-bottom:1px solid #2E3235;--note-search-bar-input-border:1px solid transparent;--note-search-bar-input-background:#2E3235;--editor-background:#2E3235;--header-note-menu-background:transparent;--header-note-menu-color:rgba(255, 255, 255, 0.5);--header-note-menu-action-item-active-background:rgba(49, 204, 236, 0.3);--header-note-menu-action-item-active-border:1px solid rgba(49, 204, 236, 0.8);--header-note-menu-action-item-separator-border:1px solid #16181a;--header-note-menu-encrypt-button-color:#B58105;--header-note-menu-encrypt-button-background:#FFF8DB;--preferences-sidebar-background:#2E3235;--preferences-sidebar-item-active-background:#6987AF40;--preferences-view-background:#34393D;--task-icon-active:hsl(var(--hsl-slate-400));--task-icon-onhold:hsl(var(--hsl-amber-500));--task-icon-completed:hsl(var(--hsl-emerald-500));--task-icon-dropped:hsl(var(--hsl-rose-400));--task-progress-view-border-color:hsl(var(--hsl-gray-50) / 10%);--task-progress-view-background-color:hsl(var(--hsl-gray-950) / 30%);--task-progress-view-foreground-color:hsl(var(--hsl-gray-50) / 60%);--task-progress-view-completed-color:hsl(var(--hsl-green-500))}.ui.button{cursor:pointer;display:inline-block;min-height:1em;outline-offset:var(--unfocused-outline-offset);outline-width:var(--focused-outline-width);outline-color:var(--unfocused-outline-color);outline-style:var(--focused-outline-style);border:1px solid var(--very-strong-transparent-black);vertical-align:baseline;background:#25282a none;color:#ddd;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;margin:0 .25em 0 0;padding:.78571429em 1.5em .78571429em;text-transform:none;text-shadow:none;font-weight:600;line-height:1em;font-style:normal;text-align:center;text-decoration:none;border-radius:.35714286rem;box-shadow:0 1px 2px 0 rgba(24,26,28,.45);user-select:none;transition:opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease,outline-offset .1s ease,outline-color .1s ease;will-change:'';-webkit-tap-highlight-color:transparent}.ui.button:hover{background-color:#292d30;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45);color:rgba(255,255,255,.8)}.ui.button:hover .icon{opacity:.85}.ui.button:focus{background-color:#292d30;color:rgba(255,255,255,.8);background-image:''!important;box-shadow:''!important;outline-offset:var(--focused-outline-offset);outline-color:var(--focused-outline-color)}.ui.button:focus .icon{opacity:.85}.ui.active.button:active,.ui.button:active{background-color:#25282a;background-image:'';color:rgba(255,255,255,.9);box-shadow:0 0 0 1px transparent inset,none}.ui.active.button{background-color:#25282a;background-image:none;box-shadow:0 0 0 1px transparent inset;color:rgba(255,255,255,.95)}.ui.active.button:hover{background-color:#25282a;background-image:none;color:rgba(255,255,255,.95)}.ui.active.button:active{background-color:#25282a;background-image:none}.ui.loading.loading.loading.loading.loading.loading.button{position:relative;cursor:default;text-shadow:none!important;color:transparent!important;opacity:1;pointer-events:auto;transition:all 0s linear,opacity .1s ease}.ui.loading.button:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.15)}.ui.loading.button:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#2e3235 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.labeled.icon.loading.button .icon{background-color:transparent;box-shadow:none}@keyframes button-spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}.ui.basic.loading.button:not(.inverted):before{border-color:rgba(0,0,0,.1)}.ui.basic.loading.button:not(.inverted):after{border-top-color:#767676}.ui.button:disabled,.ui.buttons .disabled.button,.ui.disabled.active.button,.ui.disabled.button,.ui.disabled.button:hover{cursor:default;opacity:.45!important;background-image:none!important;box-shadow:none!important;pointer-events:none!important}.ui.basic.buttons .ui.disabled.button{border-color:rgba(24,26,28,.5)}.ui.animated.button{position:relative;overflow:hidden;padding-right:0!important;vertical-align:middle;z-index:1}.ui.animated.button .content{will-change:transform,opacity}.ui.animated.button .visible.content{position:relative;margin-right:1.5em}.ui.animated.button .hidden.content{position:absolute;width:100%}.ui.animated.button .hidden.content,.ui.animated.button .visible.content{transition:right .3s ease 0s}.ui.animated.button .visible.content{left:auto;right:0}.ui.animated.button .hidden.content{top:50%;left:auto;right:-100%;margin-top:-.5em}.ui.animated.button:focus .visible.content,.ui.animated.button:hover .visible.content{left:auto;right:200%}.ui.animated.button:focus .hidden.content,.ui.animated.button:hover .hidden.content{left:auto;right:0}.ui.vertical.animated.button .hidden.content,.ui.vertical.animated.button .visible.content{transition:top .3s ease,transform .3s ease}.ui.vertical.animated.button .visible.content{transform:translateY(0);right:auto}.ui.vertical.animated.button .hidden.content{top:-50%;left:0;right:auto}.ui.vertical.animated.button:focus .visible.content,.ui.vertical.animated.button:hover .visible.content{transform:translateY(200%);right:auto}.ui.vertical.animated.button:focus .hidden.content,.ui.vertical.animated.button:hover .hidden.content{top:50%;right:auto}.ui.fade.animated.button .hidden.content,.ui.fade.animated.button .visible.content{transition:opacity .3s ease,transform .3s ease}.ui.fade.animated.button .visible.content{left:auto;right:auto;opacity:1;transform:scale(1)}.ui.fade.animated.button .hidden.content{opacity:0;left:0;right:auto;transform:scale(1.5)}.ui.fade.animated.button:focus .visible.content,.ui.fade.animated.button:hover .visible.content{left:auto;right:auto;opacity:0;transform:scale(.75)}.ui.fade.animated.button:focus .hidden.content,.ui.fade.animated.button:hover .hidden.content{left:0;right:auto;opacity:1;transform:scale(1)}.ui.inverted.button{box-shadow:0 0 0 2px #2e3235 inset!important;background:transparent none;color:#2e3235;text-shadow:none!important}.ui.inverted.buttons .button{margin:0 0 0 -2px}.ui.inverted.buttons .button:first-child{margin-left:0}.ui.inverted.vertical.buttons .button{margin:0 0 -2px 0}.ui.inverted.vertical.buttons .button:first-child{margin-top:0}.ui.inverted.button:hover{background:#2e3235;box-shadow:0 0 0 2px #2e3235 inset!important;color:rgba(255,255,255,.8)}.ui.inverted.button.active,.ui.inverted.button:focus{background:#2e3235;box-shadow:0 0 0 2px #2e3235 inset!important;color:rgba(255,255,255,.8)}.ui.inverted.button.active:focus{background:#666e74;box-shadow:0 0 0 2px #666e74 inset!important;color:rgba(255,255,255,.8)}.ui.labeled.button:not(.icon){display:inline-flex;flex-direction:row;background:0 0!important;padding:0!important;border:none!important;box-shadow:none!important}.ui.labeled.button>.button{margin:0}.ui.labeled.button>.label{display:flex;align-items:center;margin:0 0 0 -1px!important;padding:'';font-size:1em;border-color:rgba(24,26,28,.45)}.ui.labeled.button>.tag.label:before{width:1.85em;height:1.85em}.ui.labeled.button:not([class*="left labeled"])>.button{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.button:not([class*="left labeled"])>.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="left labeled"].button>.button{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="left labeled"].button>.label{border-top-right-radius:0;border-bottom-right-radius:0}.ui.facebook.button{background-color:#3b5998;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.facebook.button:hover{background-color:#304d8a;color:#2e3235;text-shadow:none}.ui.facebook.button:active{background-color:#2d4373;color:#2e3235;text-shadow:none}.ui.twitter.button{background-color:#55acee;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.twitter.button:hover{background-color:#35a2f4;color:#2e3235;text-shadow:none}.ui.twitter.button:active{background-color:#2795e9;color:#2e3235;text-shadow:none}.ui.google.plus.button{background-color:#dd4b39;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.google.plus.button:hover{background-color:#e0321c;color:#2e3235;text-shadow:none}.ui.google.plus.button:active{background-color:#c23321;color:#2e3235;text-shadow:none}.ui.linkedin.button{background-color:#1f88be;color:#2e3235;text-shadow:none}.ui.linkedin.button:hover{background-color:#147baf;color:#2e3235;text-shadow:none}.ui.linkedin.button:active{background-color:#186992;color:#2e3235;text-shadow:none}.ui.youtube.button{background-color:red;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.youtube.button:hover{background-color:#e60000;color:#2e3235;text-shadow:none}.ui.youtube.button:active{background-color:#c00;color:#2e3235;text-shadow:none}.ui.instagram.button{background-color:#49769c;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.instagram.button:hover{background-color:#3d698e;color:#2e3235;text-shadow:none}.ui.instagram.button:active{background-color:#395c79;color:#2e3235;text-shadow:none}.ui.pinterest.button{background-color:#bd081c;color:#2e3235;text-shadow:none;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.pinterest.button:hover{background-color:#ac0013;color:#2e3235;text-shadow:none}.ui.pinterest.button:active{background-color:#8c0615;color:#2e3235;text-shadow:none}.ui.vk.button{background-color:#4d7198;color:#2e3235;background-image:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.vk.button:hover{background-color:#41648a;color:#2e3235}.ui.vk.button:active{background-color:#3c5876;color:#2e3235}.ui.button>.icon:not(.button){height:.85714286em;opacity:.8;margin:0 .42857143em 0 -.21428571em;transition:opacity .1s ease;vertical-align:'';color:''}.ui.button:not(.icon)>.icon:not(.button):not(.dropdown){margin:0 .42857143em 0 -.21428571em}.ui.button:not(.icon)>.right.icon:not(.button):not(.dropdown){margin:0 -.21428571em 0 .42857143em}.ui[class*="left floated"].button,.ui[class*="left floated"].buttons{float:left;margin-left:0;margin-right:.25em}.ui[class*="right floated"].button,.ui[class*="right floated"].buttons{float:right;margin-right:0;margin-left:.25em}.ui.compact.button,.ui.compact.buttons .button{padding:.58928571em 1.125em .58928571em}.ui.compact.icon.button,.ui.compact.icon.buttons .button{padding:.58928571em .58928571em .58928571em}.ui.compact.labeled.icon.button,.ui.compact.labeled.icon.buttons .button{padding:.58928571em 3.69642857em .58928571em}.ui.mini.button,.ui.mini.buttons .button,.ui.mini.buttons .or{font-size:.78571429rem}.ui.tiny.button,.ui.tiny.buttons .button,.ui.tiny.buttons .or{font-size:.85714286rem}.ui.small.button,.ui.small.buttons .button,.ui.small.buttons .or{font-size:.92857143rem}.ui.button,.ui.buttons .button,.ui.buttons .or{font-size:1rem}.ui.large.button,.ui.large.buttons .button,.ui.large.buttons .or{font-size:1.14285714rem}.ui.big.button,.ui.big.buttons .button,.ui.big.buttons .or{font-size:1.28571429rem}.ui.huge.button,.ui.huge.buttons .button,.ui.huge.buttons .or{font-size:1.42857143rem}.ui.massive.button,.ui.massive.buttons .button,.ui.massive.buttons .or{font-size:1.71428571rem}.ui.icon.button,.ui.icon.buttons .button{padding:.78571429em .78571429em .78571429em}.ui.icon.button>.icon,.ui.icon.buttons .button>.icon{opacity:.9;margin:0!important;vertical-align:top}.ui.basic.button,.ui.basic.buttons .button{background:transparent none!important;color:#ddd!important;font-weight:400;border-radius:.35714286rem;text-transform:none;text-shadow:none!important;box-shadow:0 0 0 1px rgba(24,26,28,.45) inset}.ui.basic.buttons{box-shadow:none;border:1px solid rgba(24,26,28,.45);border-radius:.35714286rem}.ui.basic.buttons .button{border-radius:0}.ui.basic.button:hover,.ui.basic.buttons .button:hover{background:#2e3235!important;color:rgba(255,255,255,.8)!important;box-shadow:0 0 0 1px rgba(24,26,28,.35) inset,0 0 0 0 rgba(24,26,28,.45) inset}.ui.basic.button:focus,.ui.basic.buttons .button:focus{background:#2e3235!important;color:rgba(255,255,255,.8)!important;box-shadow:0 0 0 1px rgba(24,26,28,.35) inset,0 0 0 0 rgba(24,26,28,.45) inset}.ui.basic.button:active,.ui.basic.buttons .button:active{background:#34393d!important;color:rgba(255,255,255,.9)!important;box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(24,26,28,.45) inset}.ui.basic.active.button,.ui.basic.buttons .active.button{background:rgba(255,255,255,.05)!important;box-shadow:''!important;color:rgba(255,255,255,.95)!important}.ui.basic.active.button:hover,.ui.basic.buttons .active.button:hover{background-color:rgba(255,255,255,.05)}.ui.basic.buttons .button:hover{box-shadow:0 0 0 1px rgba(24,26,28,.35) inset,0 0 0 0 rgba(24,26,28,.45) inset inset}.ui.basic.buttons .button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 1px 4px 0 rgba(24,26,28,.45) inset inset}.ui.basic.buttons .active.button{box-shadow:''!important}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{background-color:transparent!important;color:#34393d!important;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important}.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:hover{color:#2e3235!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.buttons .button:focus{color:#2e3235!important;box-shadow:0 0 0 2px #fff inset!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{background-color:rgba(0,0,0,.08)!important;color:#2e3235!important;box-shadow:0 0 0 2px rgba(255,255,255,.9) inset!important}.ui.basic.inverted.active.button,.ui.basic.inverted.buttons .active.button{background-color:rgba(0,0,0,.08);color:#2e3235;text-shadow:none;box-shadow:0 0 0 2px rgba(255,255,255,.7) inset}.ui.basic.inverted.active.button:hover,.ui.basic.inverted.buttons .active.button:hover{background-color:rgba(0,0,0,.15);box-shadow:0 0 0 2px #fff inset!important}.ui.basic.buttons .button{border-left:1px solid rgba(24,26,28,.45);box-shadow:none}.ui.basic.vertical.buttons .button{border-left:none}.ui.basic.vertical.buttons .button{border-left-width:0;border-top:1px solid rgba(24,26,28,.45)}.ui.basic.vertical.buttons .button:first-child{border-top-width:0}.ui.labeled.icon.button,.ui.labeled.icon.buttons .button{position:relative;padding-left:4.07142857em!important;padding-right:1.5em!important}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{position:absolute;height:100%;line-height:1;border-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit;text-align:center;margin:0;width:2.57142857em;background-color:rgba(0,0,0,.05);color:'';box-shadow:-1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon,.ui.labeled.icon.buttons>.button>.icon{top:0;left:0}.ui[class*="right labeled"].icon.button{padding-right:4.07142857em!important;padding-left:1.5em!important}.ui[class*="right labeled"].icon.button>.icon{left:auto;right:0;border-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;box-shadow:1px 0 0 0 transparent inset}.ui.labeled.icon.button>.icon:after,.ui.labeled.icon.button>.icon:before,.ui.labeled.icon.buttons>.button>.icon:after,.ui.labeled.icon.buttons>.button>.icon:before{display:block;position:absolute;width:100%;top:50%;text-align:center;transform:translateY(-50%)}.ui.labeled.icon.buttons .button>.icon{border-radius:0}.ui.labeled.icon.buttons .button:first-child>.icon{border-top-left-radius:.35714286rem;border-bottom-left-radius:.35714286rem}.ui.labeled.icon.buttons .button:last-child>.icon{border-top-right-radius:.35714286rem;border-bottom-right-radius:.35714286rem}.ui.vertical.labeled.icon.buttons .button:first-child>.icon{border-radius:0;border-top-left-radius:.35714286rem}.ui.vertical.labeled.icon.buttons .button:last-child>.icon{border-radius:0;border-bottom-left-radius:.35714286rem}.ui.fluid[class*="left labeled"].icon.button,.ui.fluid[class*="right labeled"].icon.button{padding-left:1.5em!important;padding-right:1.5em!important}.ui.button.toggle.active,.ui.buttons .button.toggle.active,.ui.toggle.buttons .active.button{background-color:#21ba45!important;box-shadow:none!important;text-shadow:none;color:#2e3235!important}.ui.button.toggle.active:hover{background-color:#16ab39!important;text-shadow:none;color:#2e3235!important}.ui.circular.button{border-radius:10em}.ui.circular.button>.icon{width:1em;vertical-align:baseline}.ui.buttons .or{position:relative;width:.3em;height:2.57142857em;z-index:3}.ui.buttons .or:before{position:absolute;text-align:center;border-radius:500rem;content:'or';top:50%;left:50%;background-color:#2e3235;text-shadow:none;margin-top:-.89285714em;margin-left:-.89285714em;width:1.78571429em;height:1.78571429em;line-height:1.78571429em;color:rgba(255,255,255,.5);font-style:normal;font-weight:600;box-shadow:0 0 0 1px transparent inset}.ui.buttons .or[data-text]:before{content:attr(data-text)}.ui.fluid.buttons .or{width:0!important}.ui.fluid.buttons .or:after{display:none}.ui.attached.button{position:relative;display:block;margin:0;border-radius:0;box-shadow:0 0 0 1px rgba(24,26,28,.45)!important}.ui.attached.top.button{border-radius:.35714286rem .35714286rem 0 0}.ui.attached.bottom.button{border-radius:0 0 .35714286rem .35714286rem}.ui.left.attached.button{display:inline-block;border-left:none;text-align:right;padding-right:.75em;border-radius:.35714286rem 0 0 .35714286rem}.ui.right.attached.button{display:inline-block;text-align:left;padding-left:.75em;border-radius:0 .35714286rem .35714286rem 0}.ui.attached.buttons{position:relative;display:flex;border-radius:0;width:auto!important;z-index:2;margin-left:-1px;margin-right:-1px}.ui.attached.buttons .button{margin:0}.ui.attached.buttons .button:first-child{border-radius:0}.ui.attached.buttons .button:last-child{border-radius:0}.ui[class*="top attached"].buttons{margin-bottom:-1px;border-radius:.35714286rem .35714286rem 0 0}.ui[class*="top attached"].buttons .button:first-child{border-radius:.35714286rem 0 0 0}.ui[class*="top attached"].buttons .button:last-child{border-radius:0 .35714286rem 0 0}.ui[class*="bottom attached"].buttons{margin-top:-1px;border-radius:0 0 .35714286rem .35714286rem}.ui[class*="bottom attached"].buttons .button:first-child{border-radius:0 0 0 .35714286rem}.ui[class*="bottom attached"].buttons .button:last-child{border-radius:0 0 .35714286rem 0}.ui[class*="left attached"].buttons{display:inline-flex;margin-right:0;margin-left:-1px;border-radius:0 .35714286rem .35714286rem 0}.ui[class*="left attached"].buttons .button:first-child{margin-left:-1px;border-radius:0 .35714286rem 0 0}.ui[class*="left attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 .35714286rem 0}.ui[class*="right attached"].buttons{display:inline-flex;margin-left:0;margin-right:-1px;border-radius:.35714286rem 0 0 .35714286rem}.ui[class*="right attached"].buttons .button:first-child{margin-left:-1px;border-radius:.35714286rem 0 0 0}.ui[class*="right attached"].buttons .button:last-child{margin-left:-1px;border-radius:0 0 0 .35714286rem}.ui.fluid.button,.ui.fluid.buttons{width:100%}.ui.fluid.button{display:block}.ui.two.buttons{width:100%}.ui.two.buttons>.button{width:50%}.ui.three.buttons{width:100%}.ui.three.buttons>.button{width:33.333%}.ui.four.buttons{width:100%}.ui.four.buttons>.button{width:25%}.ui.five.buttons{width:100%}.ui.five.buttons>.button{width:20%}.ui.six.buttons{width:100%}.ui.six.buttons>.button{width:16.666%}.ui.seven.buttons{width:100%}.ui.seven.buttons>.button{width:14.285%}.ui.eight.buttons{width:100%}.ui.eight.buttons>.button{width:12.5%}.ui.nine.buttons{width:100%}.ui.nine.buttons>.button{width:11.11%}.ui.ten.buttons{width:100%}.ui.ten.buttons>.button{width:10%}.ui.eleven.buttons{width:100%}.ui.eleven.buttons>.button{width:9.09%}.ui.twelve.buttons{width:100%}.ui.twelve.buttons>.button{width:8.3333%}.ui.fluid.vertical.buttons,.ui.fluid.vertical.buttons>.button{display:flex;width:auto}.ui.two.vertical.buttons>.button{height:50%}.ui.three.vertical.buttons>.button{height:33.333%}.ui.four.vertical.buttons>.button{height:25%}.ui.five.vertical.buttons>.button{height:20%}.ui.six.vertical.buttons>.button{height:16.666%}.ui.seven.vertical.buttons>.button{height:14.285%}.ui.eight.vertical.buttons>.button{height:12.5%}.ui.nine.vertical.buttons>.button{height:11.11%}.ui.ten.vertical.buttons>.button{height:10%}.ui.eleven.vertical.buttons>.button{height:9.09%}.ui.twelve.vertical.buttons>.button{height:8.3333%}.ui.black.button,.ui.black.buttons .button{background-color:#f9fafb;color:#2e3235;text-shadow:none;background-image:none}.ui.black.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.black.button:hover,.ui.black.buttons .button:hover{background-color:#fff;color:#2e3235;text-shadow:none}.ui.black.button:focus,.ui.black.buttons .button:focus{background-color:#fff;color:#2e3235;text-shadow:none}.ui.black.button:active,.ui.black.buttons .button:active{background-color:#fff;color:#2e3235;text-shadow:none}.ui.black.active.button,.ui.black.button .active.button:active,.ui.black.buttons .active.button,.ui.black.buttons .active.button:active{background-color:#eaedf1;color:#2e3235;text-shadow:none}.ui.basic.black.button,.ui.basic.black.buttons .button{box-shadow:0 0 0 1px #f9fafb inset!important;color:#f9fafb!important}.ui.basic.black.button:hover,.ui.basic.black.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.basic.black.button:focus,.ui.basic.black.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.basic.black.active.button,.ui.basic.black.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #eaedf1 inset!important;color:#fff!important}.ui.basic.black.button:active,.ui.basic.black.buttons .button:active{box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.buttons:not(.vertical)>.basic.black.button:not(:first-child){margin-left:-1px}.ui.inverted.black.button,.ui.inverted.black.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #3b3c3e inset!important;color:#2e3235}.ui.inverted.black.button.active,.ui.inverted.black.button:active,.ui.inverted.black.button:focus,.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button.active,.ui.inverted.black.buttons .button:active,.ui.inverted.black.buttons .button:focus,.ui.inverted.black.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.black.button:hover,.ui.inverted.black.buttons .button:hover{background-color:#f2f2f2}.ui.inverted.black.button:focus,.ui.inverted.black.buttons .button:focus{background-color:#ebebeb}.ui.inverted.black.active.button,.ui.inverted.black.buttons .active.button{background-color:#f2f2f2}.ui.inverted.black.button:active,.ui.inverted.black.buttons .button:active{background-color:#e6e6e6}.ui.inverted.black.basic.button,.ui.inverted.black.basic.buttons .button,.ui.inverted.black.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.black.basic.button:hover,.ui.inverted.black.basic.buttons .button:hover,.ui.inverted.black.buttons .basic.button:hover{box-shadow:0 0 0 2px #f2f2f2 inset!important;color:#2e3235!important}.ui.inverted.black.basic.button:focus,.ui.inverted.black.basic.buttons .button:focus{box-shadow:0 0 0 2px #ebebeb inset!important;color:#545454!important}.ui.inverted.black.basic.active.button,.ui.inverted.black.basic.buttons .active.button,.ui.inverted.black.buttons .basic.active.button{box-shadow:0 0 0 2px #f2f2f2 inset!important;color:#2e3235!important}.ui.inverted.black.basic.button:active,.ui.inverted.black.basic.buttons .button:active,.ui.inverted.black.buttons .basic.button:active{box-shadow:0 0 0 2px #e6e6e6 inset!important;color:#2e3235!important}.ui.grey.button,.ui.grey.buttons .button{background-color:#767676;color:#2e3235;text-shadow:none;background-image:none}.ui.grey.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.grey.button:hover,.ui.grey.buttons .button:hover{background-color:#838383;color:#2e3235;text-shadow:none}.ui.grey.button:focus,.ui.grey.buttons .button:focus{background-color:#8a8a8a;color:#2e3235;text-shadow:none}.ui.grey.button:active,.ui.grey.buttons .button:active{background-color:#909090;color:#2e3235;text-shadow:none}.ui.grey.active.button,.ui.grey.button .active.button:active,.ui.grey.buttons .active.button,.ui.grey.buttons .active.button:active{background-color:#696969;color:#2e3235;text-shadow:none}.ui.basic.grey.button,.ui.basic.grey.buttons .button{box-shadow:0 0 0 1px #767676 inset!important;color:#767676!important}.ui.basic.grey.button:hover,.ui.basic.grey.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #838383 inset!important;color:#838383!important}.ui.basic.grey.button:focus,.ui.basic.grey.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8a8a8a inset!important;color:#838383!important}.ui.basic.grey.active.button,.ui.basic.grey.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #696969 inset!important;color:#909090!important}.ui.basic.grey.button:active,.ui.basic.grey.buttons .button:active{box-shadow:0 0 0 1px #909090 inset!important;color:#909090!important}.ui.buttons:not(.vertical)>.basic.grey.button:not(:first-child){margin-left:-1px}.ui.inverted.grey.button,.ui.inverted.grey.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #3b3c3e inset!important;color:#2e3235}.ui.inverted.grey.button.active,.ui.inverted.grey.button:active,.ui.inverted.grey.button:focus,.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button.active,.ui.inverted.grey.buttons .button:active,.ui.inverted.grey.buttons .button:focus,.ui.inverted.grey.buttons .button:hover{box-shadow:none!important;color:#ddd}.ui.inverted.grey.button:hover,.ui.inverted.grey.buttons .button:hover{background-color:#cfd0d2}.ui.inverted.grey.button:focus,.ui.inverted.grey.buttons .button:focus{background-color:#c7c9cb}.ui.inverted.grey.active.button,.ui.inverted.grey.buttons .active.button{background-color:#cfd0d2}.ui.inverted.grey.button:active,.ui.inverted.grey.buttons .button:active{background-color:#c2c4c5}.ui.inverted.grey.basic.button,.ui.inverted.grey.basic.buttons .button,.ui.inverted.grey.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.grey.basic.button:hover,.ui.inverted.grey.basic.buttons .button:hover,.ui.inverted.grey.buttons .basic.button:hover{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#2e3235!important}.ui.inverted.grey.basic.button:focus,.ui.inverted.grey.basic.buttons .button:focus{box-shadow:0 0 0 2px #c7c9cb inset!important;color:#dcddde!important}.ui.inverted.grey.basic.active.button,.ui.inverted.grey.basic.buttons .active.button,.ui.inverted.grey.buttons .basic.active.button{box-shadow:0 0 0 2px #cfd0d2 inset!important;color:#2e3235!important}.ui.inverted.grey.basic.button:active,.ui.inverted.grey.basic.buttons .button:active,.ui.inverted.grey.buttons .basic.button:active{box-shadow:0 0 0 2px #c2c4c5 inset!important;color:#2e3235!important}.ui.brown.button,.ui.brown.buttons .button{background-color:#a5673f;color:#2e3235;text-shadow:none;background-image:none}.ui.brown.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.brown.button:hover,.ui.brown.buttons .button:hover{background-color:#975b33;color:#2e3235;text-shadow:none}.ui.brown.button:focus,.ui.brown.buttons .button:focus{background-color:#90532b;color:#2e3235;text-shadow:none}.ui.brown.button:active,.ui.brown.buttons .button:active{background-color:#805031;color:#2e3235;text-shadow:none}.ui.brown.active.button,.ui.brown.button .active.button:active,.ui.brown.buttons .active.button,.ui.brown.buttons .active.button:active{background-color:#995a31;color:#2e3235;text-shadow:none}.ui.basic.brown.button,.ui.basic.brown.buttons .button{box-shadow:0 0 0 1px #a5673f inset!important;color:#a5673f!important}.ui.basic.brown.button:hover,.ui.basic.brown.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #975b33 inset!important;color:#975b33!important}.ui.basic.brown.button:focus,.ui.basic.brown.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #90532b inset!important;color:#975b33!important}.ui.basic.brown.active.button,.ui.basic.brown.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #995a31 inset!important;color:#805031!important}.ui.basic.brown.button:active,.ui.basic.brown.buttons .button:active{box-shadow:0 0 0 1px #805031 inset!important;color:#805031!important}.ui.buttons:not(.vertical)>.basic.brown.button:not(:first-child){margin-left:-1px}.ui.inverted.brown.button,.ui.inverted.brown.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d67c1c inset!important;color:#d67c1c}.ui.inverted.brown.button.active,.ui.inverted.brown.button:active,.ui.inverted.brown.button:focus,.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button.active,.ui.inverted.brown.buttons .button:active,.ui.inverted.brown.buttons .button:focus,.ui.inverted.brown.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.brown.button:hover,.ui.inverted.brown.buttons .button:hover{background-color:#c86f11}.ui.inverted.brown.button:focus,.ui.inverted.brown.buttons .button:focus{background-color:#c16808}.ui.inverted.brown.active.button,.ui.inverted.brown.buttons .active.button{background-color:#cc6f0d}.ui.inverted.brown.button:active,.ui.inverted.brown.buttons .button:active{background-color:#a96216}.ui.inverted.brown.basic.button,.ui.inverted.brown.basic.buttons .button,.ui.inverted.brown.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.brown.basic.button:hover,.ui.inverted.brown.basic.buttons .button:hover,.ui.inverted.brown.buttons .basic.button:hover{box-shadow:0 0 0 2px #c86f11 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:focus,.ui.inverted.brown.basic.buttons .button:focus{box-shadow:0 0 0 2px #c16808 inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.active.button,.ui.inverted.brown.basic.buttons .active.button,.ui.inverted.brown.buttons .basic.active.button{box-shadow:0 0 0 2px #cc6f0d inset!important;color:#d67c1c!important}.ui.inverted.brown.basic.button:active,.ui.inverted.brown.basic.buttons .button:active,.ui.inverted.brown.buttons .basic.button:active{box-shadow:0 0 0 2px #a96216 inset!important;color:#d67c1c!important}.ui.blue.button,.ui.blue.buttons .button{background-color:#2185d0;color:#2e3235;text-shadow:none;background-image:none}.ui.blue.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.blue.button:hover,.ui.blue.buttons .button:hover{background-color:#1678c2;color:#2e3235;text-shadow:none}.ui.blue.button:focus,.ui.blue.buttons .button:focus{background-color:#0d71bb;color:#2e3235;text-shadow:none}.ui.blue.button:active,.ui.blue.buttons .button:active{background-color:#1a69a4;color:#2e3235;text-shadow:none}.ui.blue.active.button,.ui.blue.button .active.button:active,.ui.blue.buttons .active.button,.ui.blue.buttons .active.button:active{background-color:#1279c6;color:#2e3235;text-shadow:none}.ui.basic.blue.button,.ui.basic.blue.buttons .button{box-shadow:0 0 0 1px #2185d0 inset!important;color:#2185d0!important}.ui.basic.blue.button:hover,.ui.basic.blue.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #1678c2 inset!important;color:#1678c2!important}.ui.basic.blue.button:focus,.ui.basic.blue.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0d71bb inset!important;color:#1678c2!important}.ui.basic.blue.active.button,.ui.basic.blue.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #1279c6 inset!important;color:#1a69a4!important}.ui.basic.blue.button:active,.ui.basic.blue.buttons .button:active{box-shadow:0 0 0 1px #1a69a4 inset!important;color:#1a69a4!important}.ui.buttons:not(.vertical)>.basic.blue.button:not(:first-child){margin-left:-1px}.ui.inverted.blue.button,.ui.inverted.blue.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff}.ui.inverted.blue.button.active,.ui.inverted.blue.button:active,.ui.inverted.blue.button:focus,.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button.active,.ui.inverted.blue.buttons .button:active,.ui.inverted.blue.buttons .button:focus,.ui.inverted.blue.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.blue.button:hover,.ui.inverted.blue.buttons .button:hover{background-color:#3ac0ff}.ui.inverted.blue.button:focus,.ui.inverted.blue.buttons .button:focus{background-color:#2bbbff}.ui.inverted.blue.active.button,.ui.inverted.blue.buttons .active.button{background-color:#3ac0ff}.ui.inverted.blue.button:active,.ui.inverted.blue.buttons .button:active{background-color:#21b8ff}.ui.inverted.blue.basic.button,.ui.inverted.blue.basic.buttons .button,.ui.inverted.blue.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.blue.basic.button:hover,.ui.inverted.blue.basic.buttons .button:hover,.ui.inverted.blue.buttons .basic.button:hover{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:focus,.ui.inverted.blue.basic.buttons .button:focus{box-shadow:0 0 0 2px #2bbbff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.active.button,.ui.inverted.blue.basic.buttons .active.button,.ui.inverted.blue.buttons .basic.active.button{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.blue.basic.button:active,.ui.inverted.blue.basic.buttons .button:active,.ui.inverted.blue.buttons .basic.button:active{box-shadow:0 0 0 2px #21b8ff inset!important;color:#54c8ff!important}.ui.green.button,.ui.green.buttons .button{background-color:#21ba45;color:#2e3235;text-shadow:none;background-image:none}.ui.green.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#16ab39;color:#2e3235;text-shadow:none}.ui.green.button:focus,.ui.green.buttons .button:focus{background-color:#0ea432;color:#2e3235;text-shadow:none}.ui.green.button:active,.ui.green.buttons .button:active{background-color:#198f35;color:#2e3235;text-shadow:none}.ui.green.active.button,.ui.green.button .active.button:active,.ui.green.buttons .active.button,.ui.green.buttons .active.button:active{background-color:#13ae38;color:#2e3235;text-shadow:none}.ui.basic.green.button,.ui.basic.green.buttons .button{box-shadow:0 0 0 1px #21ba45 inset!important;color:#21ba45!important}.ui.basic.green.button:hover,.ui.basic.green.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #16ab39 inset!important;color:#16ab39!important}.ui.basic.green.button:focus,.ui.basic.green.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0ea432 inset!important;color:#16ab39!important}.ui.basic.green.active.button,.ui.basic.green.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #13ae38 inset!important;color:#198f35!important}.ui.basic.green.button:active,.ui.basic.green.buttons .button:active{box-shadow:0 0 0 1px #198f35 inset!important;color:#198f35!important}.ui.buttons:not(.vertical)>.basic.green.button:not(:first-child){margin-left:-1px}.ui.inverted.green.button,.ui.inverted.green.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #2ecc40 inset!important;color:#2ecc40}.ui.inverted.green.button.active,.ui.inverted.green.button:active,.ui.inverted.green.button:focus,.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button.active,.ui.inverted.green.buttons .button:active,.ui.inverted.green.buttons .button:focus,.ui.inverted.green.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.green.button:hover,.ui.inverted.green.buttons .button:hover{background-color:#22be34}.ui.inverted.green.button:focus,.ui.inverted.green.buttons .button:focus{background-color:#19b82b}.ui.inverted.green.active.button,.ui.inverted.green.buttons .active.button{background-color:#1fc231}.ui.inverted.green.button:active,.ui.inverted.green.buttons .button:active{background-color:#25a233}.ui.inverted.green.basic.button,.ui.inverted.green.basic.buttons .button,.ui.inverted.green.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.green.basic.button:hover,.ui.inverted.green.basic.buttons .button:hover,.ui.inverted.green.buttons .basic.button:hover{box-shadow:0 0 0 2px #22be34 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:focus,.ui.inverted.green.basic.buttons .button:focus{box-shadow:0 0 0 2px #19b82b inset!important;color:#2ecc40!important}.ui.inverted.green.basic.active.button,.ui.inverted.green.basic.buttons .active.button,.ui.inverted.green.buttons .basic.active.button{box-shadow:0 0 0 2px #1fc231 inset!important;color:#2ecc40!important}.ui.inverted.green.basic.button:active,.ui.inverted.green.basic.buttons .button:active,.ui.inverted.green.buttons .basic.button:active{box-shadow:0 0 0 2px #25a233 inset!important;color:#2ecc40!important}.ui.orange.button,.ui.orange.buttons .button{background-color:#c06d36;color:#2e3235;text-shadow:none;background-image:none}.ui.orange.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.orange.button:hover,.ui.orange.buttons .button:hover{background-color:#b2602a;color:#2e3235;text-shadow:none}.ui.orange.button:focus,.ui.orange.buttons .button:focus{background-color:#ac5922;color:#2e3235;text-shadow:none}.ui.orange.button:active,.ui.orange.buttons .button:active{background-color:#98562b;color:#2e3235;text-shadow:none}.ui.orange.active.button,.ui.orange.button .active.button:active,.ui.orange.buttons .active.button,.ui.orange.buttons .active.button:active{background-color:#b56027;color:#2e3235;text-shadow:none}.ui.basic.orange.button,.ui.basic.orange.buttons .button{box-shadow:0 0 0 1px #c06d36 inset!important;color:#c06d36!important}.ui.basic.orange.button:hover,.ui.basic.orange.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #b2602a inset!important;color:#b2602a!important}.ui.basic.orange.button:focus,.ui.basic.orange.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #ac5922 inset!important;color:#b2602a!important}.ui.basic.orange.active.button,.ui.basic.orange.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #b56027 inset!important;color:#98562b!important}.ui.basic.orange.button:active,.ui.basic.orange.buttons .button:active{box-shadow:0 0 0 1px #98562b inset!important;color:#98562b!important}.ui.buttons:not(.vertical)>.basic.orange.button:not(:first-child){margin-left:-1px}.ui.inverted.orange.button,.ui.inverted.orange.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff851b inset!important;color:#ff851b}.ui.inverted.orange.button.active,.ui.inverted.orange.button:active,.ui.inverted.orange.button:focus,.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button.active,.ui.inverted.orange.buttons .button:active,.ui.inverted.orange.buttons .button:focus,.ui.inverted.orange.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.orange.button:hover,.ui.inverted.orange.buttons .button:hover{background-color:#ff7701}.ui.inverted.orange.button:focus,.ui.inverted.orange.buttons .button:focus{background-color:#f17000}.ui.inverted.orange.active.button,.ui.inverted.orange.buttons .active.button{background-color:#ff7701}.ui.inverted.orange.button:active,.ui.inverted.orange.buttons .button:active{background-color:#e76b00}.ui.inverted.orange.basic.button,.ui.inverted.orange.basic.buttons .button,.ui.inverted.orange.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.orange.basic.button:hover,.ui.inverted.orange.basic.buttons .button:hover,.ui.inverted.orange.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:focus,.ui.inverted.orange.basic.buttons .button:focus{box-shadow:0 0 0 2px #f17000 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.active.button,.ui.inverted.orange.basic.buttons .active.button,.ui.inverted.orange.buttons .basic.active.button{box-shadow:0 0 0 2px #ff7701 inset!important;color:#ff851b!important}.ui.inverted.orange.basic.button:active,.ui.inverted.orange.basic.buttons .button:active,.ui.inverted.orange.buttons .basic.button:active{box-shadow:0 0 0 2px #e76b00 inset!important;color:#ff851b!important}.ui.pink.button,.ui.pink.buttons .button{background-color:#e03997;color:#2e3235;text-shadow:none;background-image:none}.ui.pink.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.pink.button:hover,.ui.pink.buttons .button:hover{background-color:#e61a8d;color:#2e3235;text-shadow:none}.ui.pink.button:focus,.ui.pink.buttons .button:focus{background-color:#e10f85;color:#2e3235;text-shadow:none}.ui.pink.button:active,.ui.pink.buttons .button:active{background-color:#c71f7e;color:#2e3235;text-shadow:none}.ui.pink.active.button,.ui.pink.button .active.button:active,.ui.pink.buttons .active.button,.ui.pink.buttons .active.button:active{background-color:#ea158d;color:#2e3235;text-shadow:none}.ui.basic.pink.button,.ui.basic.pink.buttons .button{box-shadow:0 0 0 1px #e03997 inset!important;color:#e03997!important}.ui.basic.pink.button:hover,.ui.basic.pink.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #e61a8d inset!important;color:#e61a8d!important}.ui.basic.pink.button:focus,.ui.basic.pink.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #e10f85 inset!important;color:#e61a8d!important}.ui.basic.pink.active.button,.ui.basic.pink.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #ea158d inset!important;color:#c71f7e!important}.ui.basic.pink.button:active,.ui.basic.pink.buttons .button:active{box-shadow:0 0 0 1px #c71f7e inset!important;color:#c71f7e!important}.ui.buttons:not(.vertical)>.basic.pink.button:not(:first-child){margin-left:-1px}.ui.inverted.pink.button,.ui.inverted.pink.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff8edf inset!important;color:#ff8edf}.ui.inverted.pink.button.active,.ui.inverted.pink.button:active,.ui.inverted.pink.button:focus,.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button.active,.ui.inverted.pink.buttons .button:active,.ui.inverted.pink.buttons .button:focus,.ui.inverted.pink.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.pink.button:hover,.ui.inverted.pink.buttons .button:hover{background-color:#ff74d8}.ui.inverted.pink.button:focus,.ui.inverted.pink.buttons .button:focus{background-color:#ff65d3}.ui.inverted.pink.active.button,.ui.inverted.pink.buttons .active.button{background-color:#ff74d8}.ui.inverted.pink.button:active,.ui.inverted.pink.buttons .button:active{background-color:#ff5bd1}.ui.inverted.pink.basic.button,.ui.inverted.pink.basic.buttons .button,.ui.inverted.pink.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.pink.basic.button:hover,.ui.inverted.pink.basic.buttons .button:hover,.ui.inverted.pink.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:focus,.ui.inverted.pink.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff65d3 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.active.button,.ui.inverted.pink.basic.buttons .active.button,.ui.inverted.pink.buttons .basic.active.button{box-shadow:0 0 0 2px #ff74d8 inset!important;color:#ff8edf!important}.ui.inverted.pink.basic.button:active,.ui.inverted.pink.basic.buttons .button:active,.ui.inverted.pink.buttons .basic.button:active{box-shadow:0 0 0 2px #ff5bd1 inset!important;color:#ff8edf!important}.ui.violet.button,.ui.violet.buttons .button{background-color:#6435c9;color:#2e3235;text-shadow:none;background-image:none}.ui.violet.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.violet.button:hover,.ui.violet.buttons .button:hover{background-color:#5829bb;color:#2e3235;text-shadow:none}.ui.violet.button:focus,.ui.violet.buttons .button:focus{background-color:#4f20b5;color:#2e3235;text-shadow:none}.ui.violet.button:active,.ui.violet.buttons .button:active{background-color:#502aa1;color:#2e3235;text-shadow:none}.ui.violet.active.button,.ui.violet.button .active.button:active,.ui.violet.buttons .active.button,.ui.violet.buttons .active.button:active{background-color:#5626bf;color:#2e3235;text-shadow:none}.ui.basic.violet.button,.ui.basic.violet.buttons .button{box-shadow:0 0 0 1px #6435c9 inset!important;color:#6435c9!important}.ui.basic.violet.button:hover,.ui.basic.violet.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #5829bb inset!important;color:#5829bb!important}.ui.basic.violet.button:focus,.ui.basic.violet.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #4f20b5 inset!important;color:#5829bb!important}.ui.basic.violet.active.button,.ui.basic.violet.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #5626bf inset!important;color:#502aa1!important}.ui.basic.violet.button:active,.ui.basic.violet.buttons .button:active{box-shadow:0 0 0 1px #502aa1 inset!important;color:#502aa1!important}.ui.buttons:not(.vertical)>.basic.violet.button:not(:first-child){margin-left:-1px}.ui.inverted.violet.button,.ui.inverted.violet.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #a291fb inset!important;color:#a291fb}.ui.inverted.violet.button.active,.ui.inverted.violet.button:active,.ui.inverted.violet.button:focus,.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button.active,.ui.inverted.violet.buttons .button:active,.ui.inverted.violet.buttons .button:focus,.ui.inverted.violet.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.violet.button:hover,.ui.inverted.violet.buttons .button:hover{background-color:#8a73ff}.ui.inverted.violet.button:focus,.ui.inverted.violet.buttons .button:focus{background-color:#7d64ff}.ui.inverted.violet.active.button,.ui.inverted.violet.buttons .active.button{background-color:#8a73ff}.ui.inverted.violet.button:active,.ui.inverted.violet.buttons .button:active{background-color:#7860f9}.ui.inverted.violet.basic.button,.ui.inverted.violet.basic.buttons .button,.ui.inverted.violet.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.violet.basic.button:hover,.ui.inverted.violet.basic.buttons .button:hover,.ui.inverted.violet.buttons .basic.button:hover{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:focus,.ui.inverted.violet.basic.buttons .button:focus{box-shadow:0 0 0 2px #7d64ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.active.button,.ui.inverted.violet.basic.buttons .active.button,.ui.inverted.violet.buttons .basic.active.button{box-shadow:0 0 0 2px #8a73ff inset!important;color:#a291fb!important}.ui.inverted.violet.basic.button:active,.ui.inverted.violet.basic.buttons .button:active,.ui.inverted.violet.buttons .basic.button:active{box-shadow:0 0 0 2px #7860f9 inset!important;color:#a291fb!important}.ui.purple.button,.ui.purple.buttons .button{background-color:#a333c8;color:#2e3235;text-shadow:none;background-image:none}.ui.purple.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.purple.button:hover,.ui.purple.buttons .button:hover{background-color:#9627ba;color:#2e3235;text-shadow:none}.ui.purple.button:focus,.ui.purple.buttons .button:focus{background-color:#8f1eb4;color:#2e3235;text-shadow:none}.ui.purple.button:active,.ui.purple.buttons .button:active{background-color:#82299f;color:#2e3235;text-shadow:none}.ui.purple.active.button,.ui.purple.button .active.button:active,.ui.purple.buttons .active.button,.ui.purple.buttons .active.button:active{background-color:#9724be;color:#2e3235;text-shadow:none}.ui.basic.purple.button,.ui.basic.purple.buttons .button{box-shadow:0 0 0 1px #a333c8 inset!important;color:#a333c8!important}.ui.basic.purple.button:hover,.ui.basic.purple.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #9627ba inset!important;color:#9627ba!important}.ui.basic.purple.button:focus,.ui.basic.purple.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #8f1eb4 inset!important;color:#9627ba!important}.ui.basic.purple.active.button,.ui.basic.purple.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #9724be inset!important;color:#82299f!important}.ui.basic.purple.button:active,.ui.basic.purple.buttons .button:active{box-shadow:0 0 0 1px #82299f inset!important;color:#82299f!important}.ui.buttons:not(.vertical)>.basic.purple.button:not(:first-child){margin-left:-1px}.ui.inverted.purple.button,.ui.inverted.purple.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #dc73ff inset!important;color:#dc73ff}.ui.inverted.purple.button.active,.ui.inverted.purple.button:active,.ui.inverted.purple.button:focus,.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button.active,.ui.inverted.purple.buttons .button:active,.ui.inverted.purple.buttons .button:focus,.ui.inverted.purple.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.purple.button:hover,.ui.inverted.purple.buttons .button:hover{background-color:#d65aff}.ui.inverted.purple.button:focus,.ui.inverted.purple.buttons .button:focus{background-color:#d24aff}.ui.inverted.purple.active.button,.ui.inverted.purple.buttons .active.button{background-color:#d65aff}.ui.inverted.purple.button:active,.ui.inverted.purple.buttons .button:active{background-color:#cf40ff}.ui.inverted.purple.basic.button,.ui.inverted.purple.basic.buttons .button,.ui.inverted.purple.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.purple.basic.button:hover,.ui.inverted.purple.basic.buttons .button:hover,.ui.inverted.purple.buttons .basic.button:hover{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:focus,.ui.inverted.purple.basic.buttons .button:focus{box-shadow:0 0 0 2px #d24aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.active.button,.ui.inverted.purple.basic.buttons .active.button,.ui.inverted.purple.buttons .basic.active.button{box-shadow:0 0 0 2px #d65aff inset!important;color:#dc73ff!important}.ui.inverted.purple.basic.button:active,.ui.inverted.purple.basic.buttons .button:active,.ui.inverted.purple.buttons .basic.button:active{box-shadow:0 0 0 2px #cf40ff inset!important;color:#dc73ff!important}.ui.red.button,.ui.red.buttons .button{background-color:#db2828;color:#2e3235;text-shadow:none;background-image:none}.ui.red.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#d01919;color:#2e3235;text-shadow:none}.ui.red.button:focus,.ui.red.buttons .button:focus{background-color:#ca1010;color:#2e3235;text-shadow:none}.ui.red.button:active,.ui.red.buttons .button:active{background-color:#b21e1e;color:#2e3235;text-shadow:none}.ui.red.active.button,.ui.red.button .active.button:active,.ui.red.buttons .active.button,.ui.red.buttons .active.button:active{background-color:#d41515;color:#2e3235;text-shadow:none}.ui.basic.red.button,.ui.basic.red.buttons .button{box-shadow:0 0 0 1px #db2828 inset!important;color:#db2828!important}.ui.basic.red.button:hover,.ui.basic.red.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #d01919 inset!important;color:#d01919!important}.ui.basic.red.button:focus,.ui.basic.red.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #ca1010 inset!important;color:#d01919!important}.ui.basic.red.active.button,.ui.basic.red.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #d41515 inset!important;color:#b21e1e!important}.ui.basic.red.button:active,.ui.basic.red.buttons .button:active{box-shadow:0 0 0 1px #b21e1e inset!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.red.button:not(:first-child){margin-left:-1px}.ui.inverted.red.button,.ui.inverted.red.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ff695e inset!important;color:#ff695e}.ui.inverted.red.button.active,.ui.inverted.red.button:active,.ui.inverted.red.button:focus,.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button.active,.ui.inverted.red.buttons .button:active,.ui.inverted.red.buttons .button:focus,.ui.inverted.red.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.red.button:hover,.ui.inverted.red.buttons .button:hover{background-color:#ff5144}.ui.inverted.red.button:focus,.ui.inverted.red.buttons .button:focus{background-color:#ff4335}.ui.inverted.red.active.button,.ui.inverted.red.buttons .active.button{background-color:#ff5144}.ui.inverted.red.button:active,.ui.inverted.red.buttons .button:active{background-color:#ff392b}.ui.inverted.red.basic.button,.ui.inverted.red.basic.buttons .button,.ui.inverted.red.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.red.basic.button:hover,.ui.inverted.red.basic.buttons .button:hover,.ui.inverted.red.buttons .basic.button:hover{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:focus,.ui.inverted.red.basic.buttons .button:focus{box-shadow:0 0 0 2px #ff4335 inset!important;color:#ff695e!important}.ui.inverted.red.basic.active.button,.ui.inverted.red.basic.buttons .active.button,.ui.inverted.red.buttons .basic.active.button{box-shadow:0 0 0 2px #ff5144 inset!important;color:#ff695e!important}.ui.inverted.red.basic.button:active,.ui.inverted.red.basic.buttons .button:active,.ui.inverted.red.buttons .basic.button:active{box-shadow:0 0 0 2px #ff392b inset!important;color:#ff695e!important}.ui.teal.button,.ui.teal.buttons .button{background-color:#00b5ad;color:#2e3235;text-shadow:none;background-image:none}.ui.teal.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.teal.button:hover,.ui.teal.buttons .button:hover{background-color:#009c95;color:#2e3235;text-shadow:none}.ui.teal.button:focus,.ui.teal.buttons .button:focus{background-color:#008c86;color:#2e3235;text-shadow:none}.ui.teal.button:active,.ui.teal.buttons .button:active{background-color:#00827c;color:#2e3235;text-shadow:none}.ui.teal.active.button,.ui.teal.button .active.button:active,.ui.teal.buttons .active.button,.ui.teal.buttons .active.button:active{background-color:#009c95;color:#2e3235;text-shadow:none}.ui.basic.teal.button,.ui.basic.teal.buttons .button{box-shadow:0 0 0 1px #00b5ad inset!important;color:#00b5ad!important}.ui.basic.teal.button:hover,.ui.basic.teal.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#009c95!important}.ui.basic.teal.button:focus,.ui.basic.teal.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #008c86 inset!important;color:#009c95!important}.ui.basic.teal.active.button,.ui.basic.teal.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #009c95 inset!important;color:#00827c!important}.ui.basic.teal.button:active,.ui.basic.teal.buttons .button:active{box-shadow:0 0 0 1px #00827c inset!important;color:#00827c!important}.ui.buttons:not(.vertical)>.basic.teal.button:not(:first-child){margin-left:-1px}.ui.inverted.teal.button,.ui.inverted.teal.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #6dffff inset!important;color:#6dffff}.ui.inverted.teal.button.active,.ui.inverted.teal.button:active,.ui.inverted.teal.button:focus,.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button.active,.ui.inverted.teal.buttons .button:active,.ui.inverted.teal.buttons .button:focus,.ui.inverted.teal.buttons .button:hover{box-shadow:none!important;color:#ddd}.ui.inverted.teal.button:hover,.ui.inverted.teal.buttons .button:hover{background-color:#54ffff}.ui.inverted.teal.button:focus,.ui.inverted.teal.buttons .button:focus{background-color:#4ff}.ui.inverted.teal.active.button,.ui.inverted.teal.buttons .active.button{background-color:#54ffff}.ui.inverted.teal.button:active,.ui.inverted.teal.buttons .button:active{background-color:#3affff}.ui.inverted.teal.basic.button,.ui.inverted.teal.basic.buttons .button,.ui.inverted.teal.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.teal.basic.button:hover,.ui.inverted.teal.basic.buttons .button:hover,.ui.inverted.teal.buttons .basic.button:hover{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:focus,.ui.inverted.teal.basic.buttons .button:focus{box-shadow:0 0 0 2px #4ff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.active.button,.ui.inverted.teal.basic.buttons .active.button,.ui.inverted.teal.buttons .basic.active.button{box-shadow:0 0 0 2px #54ffff inset!important;color:#6dffff!important}.ui.inverted.teal.basic.button:active,.ui.inverted.teal.basic.buttons .button:active,.ui.inverted.teal.buttons .basic.button:active{box-shadow:0 0 0 2px #3affff inset!important;color:#6dffff!important}.ui.olive.button,.ui.olive.buttons .button{background-color:#b5cc18;color:#2e3235;text-shadow:none;background-image:none}.ui.olive.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.olive.button:hover,.ui.olive.buttons .button:hover{background-color:#a7bd0d;color:#2e3235;text-shadow:none}.ui.olive.button:focus,.ui.olive.buttons .button:focus{background-color:#a0b605;color:#2e3235;text-shadow:none}.ui.olive.button:active,.ui.olive.buttons .button:active{background-color:#8d9e13;color:#2e3235;text-shadow:none}.ui.olive.active.button,.ui.olive.button .active.button:active,.ui.olive.buttons .active.button,.ui.olive.buttons .active.button:active{background-color:#aac109;color:#2e3235;text-shadow:none}.ui.basic.olive.button,.ui.basic.olive.buttons .button{box-shadow:0 0 0 1px #b5cc18 inset!important;color:#b5cc18!important}.ui.basic.olive.button:hover,.ui.basic.olive.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #a7bd0d inset!important;color:#a7bd0d!important}.ui.basic.olive.button:focus,.ui.basic.olive.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #a0b605 inset!important;color:#a7bd0d!important}.ui.basic.olive.active.button,.ui.basic.olive.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #aac109 inset!important;color:#8d9e13!important}.ui.basic.olive.button:active,.ui.basic.olive.buttons .button:active{box-shadow:0 0 0 1px #8d9e13 inset!important;color:#8d9e13!important}.ui.buttons:not(.vertical)>.basic.olive.button:not(:first-child){margin-left:-1px}.ui.inverted.olive.button,.ui.inverted.olive.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #d9e778 inset!important;color:#d9e778}.ui.inverted.olive.button.active,.ui.inverted.olive.button:active,.ui.inverted.olive.button:focus,.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button.active,.ui.inverted.olive.buttons .button:active,.ui.inverted.olive.buttons .button:focus,.ui.inverted.olive.buttons .button:hover{box-shadow:none!important;color:#ddd}.ui.inverted.olive.button:hover,.ui.inverted.olive.buttons .button:hover{background-color:#d8ea5c}.ui.inverted.olive.button:focus,.ui.inverted.olive.buttons .button:focus{background-color:#daef47}.ui.inverted.olive.active.button,.ui.inverted.olive.buttons .active.button{background-color:#daed59}.ui.inverted.olive.button:active,.ui.inverted.olive.buttons .button:active{background-color:#cddf4d}.ui.inverted.olive.basic.button,.ui.inverted.olive.basic.buttons .button,.ui.inverted.olive.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.olive.basic.button:hover,.ui.inverted.olive.basic.buttons .button:hover,.ui.inverted.olive.buttons .basic.button:hover{box-shadow:0 0 0 2px #d8ea5c inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:focus,.ui.inverted.olive.basic.buttons .button:focus{box-shadow:0 0 0 2px #daef47 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.active.button,.ui.inverted.olive.basic.buttons .active.button,.ui.inverted.olive.buttons .basic.active.button{box-shadow:0 0 0 2px #daed59 inset!important;color:#d9e778!important}.ui.inverted.olive.basic.button:active,.ui.inverted.olive.basic.buttons .button:active,.ui.inverted.olive.buttons .basic.button:active{box-shadow:0 0 0 2px #cddf4d inset!important;color:#d9e778!important}.ui.yellow.button,.ui.yellow.buttons .button{background-color:#fbbd08;color:#2e3235;text-shadow:none;background-image:none}.ui.yellow.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.yellow.button:hover,.ui.yellow.buttons .button:hover{background-color:#eaae00;color:#2e3235;text-shadow:none}.ui.yellow.button:focus,.ui.yellow.buttons .button:focus{background-color:#daa300;color:#2e3235;text-shadow:none}.ui.yellow.button:active,.ui.yellow.buttons .button:active{background-color:#cd9903;color:#2e3235;text-shadow:none}.ui.yellow.active.button,.ui.yellow.button .active.button:active,.ui.yellow.buttons .active.button,.ui.yellow.buttons .active.button:active{background-color:#eaae00;color:#2e3235;text-shadow:none}.ui.basic.yellow.button,.ui.basic.yellow.buttons .button{box-shadow:0 0 0 1px #fbbd08 inset!important;color:#fbbd08!important}.ui.basic.yellow.button:hover,.ui.basic.yellow.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#eaae00!important}.ui.basic.yellow.button:focus,.ui.basic.yellow.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #daa300 inset!important;color:#eaae00!important}.ui.basic.yellow.active.button,.ui.basic.yellow.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #eaae00 inset!important;color:#cd9903!important}.ui.basic.yellow.button:active,.ui.basic.yellow.buttons .button:active{box-shadow:0 0 0 1px #cd9903 inset!important;color:#cd9903!important}.ui.buttons:not(.vertical)>.basic.yellow.button:not(:first-child){margin-left:-1px}.ui.inverted.yellow.button,.ui.inverted.yellow.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #ffe21f inset!important;color:#ffe21f}.ui.inverted.yellow.button.active,.ui.inverted.yellow.button:active,.ui.inverted.yellow.button:focus,.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button.active,.ui.inverted.yellow.buttons .button:active,.ui.inverted.yellow.buttons .button:focus,.ui.inverted.yellow.buttons .button:hover{box-shadow:none!important;color:#ddd}.ui.inverted.yellow.button:hover,.ui.inverted.yellow.buttons .button:hover{background-color:#ffdf05}.ui.inverted.yellow.button:focus,.ui.inverted.yellow.buttons .button:focus{background-color:#f5d500}.ui.inverted.yellow.active.button,.ui.inverted.yellow.buttons .active.button{background-color:#ffdf05}.ui.inverted.yellow.button:active,.ui.inverted.yellow.buttons .button:active{background-color:#ebcd00}.ui.inverted.yellow.basic.button,.ui.inverted.yellow.basic.buttons .button,.ui.inverted.yellow.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.yellow.basic.button:hover,.ui.inverted.yellow.basic.buttons .button:hover,.ui.inverted.yellow.buttons .basic.button:hover{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:focus,.ui.inverted.yellow.basic.buttons .button:focus{box-shadow:0 0 0 2px #f5d500 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.active.button,.ui.inverted.yellow.basic.buttons .active.button,.ui.inverted.yellow.buttons .basic.active.button{box-shadow:0 0 0 2px #ffdf05 inset!important;color:#ffe21f!important}.ui.inverted.yellow.basic.button:active,.ui.inverted.yellow.basic.buttons .button:active,.ui.inverted.yellow.buttons .basic.button:active{box-shadow:0 0 0 2px #ebcd00 inset!important;color:#ffe21f!important}.ui.primary.button,.ui.primary.buttons .button{background-color:#6987af;color:#2e3235;text-shadow:none;background-image:none}.ui.primary.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.primary.button:hover,.ui.primary.buttons .button:hover{background-color:#5579aa;color:#2e3235;text-shadow:none}.ui.primary.button:focus,.ui.primary.buttons .button:focus{background-color:#4c71a3;color:#2e3235;text-shadow:none}.ui.primary.button:active,.ui.primary.buttons .button:active{background-color:#506e95;color:#2e3235;text-shadow:none}.ui.primary.active.button,.ui.primary.button .active.button:active,.ui.primary.buttons .active.button,.ui.primary.buttons .active.button:active{background-color:#5379ac;color:#2e3235;text-shadow:none}.ui.basic.primary.button,.ui.basic.primary.buttons .button{box-shadow:0 0 0 1px #6987af inset!important;color:#6987af!important}.ui.basic.primary.button:hover,.ui.basic.primary.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #5579aa inset!important;color:#5579aa!important}.ui.basic.primary.button:focus,.ui.basic.primary.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #4c71a3 inset!important;color:#5579aa!important}.ui.basic.primary.active.button,.ui.basic.primary.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #5379ac inset!important;color:#506e95!important}.ui.basic.primary.button:active,.ui.basic.primary.buttons .button:active{box-shadow:0 0 0 1px #506e95 inset!important;color:#506e95!important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.inverted.primary.button,.ui.inverted.primary.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #54c8ff inset!important;color:#54c8ff}.ui.inverted.primary.button.active,.ui.inverted.primary.button:active,.ui.inverted.primary.button:focus,.ui.inverted.primary.button:hover,.ui.inverted.primary.buttons .button.active,.ui.inverted.primary.buttons .button:active,.ui.inverted.primary.buttons .button:focus,.ui.inverted.primary.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.primary.button:hover,.ui.inverted.primary.buttons .button:hover{background-color:#3ac0ff}.ui.inverted.primary.button:focus,.ui.inverted.primary.buttons .button:focus{background-color:#2bbbff}.ui.inverted.primary.active.button,.ui.inverted.primary.buttons .active.button{background-color:#3ac0ff}.ui.inverted.primary.button:active,.ui.inverted.primary.buttons .button:active{background-color:#21b8ff}.ui.inverted.primary.basic.button,.ui.inverted.primary.basic.buttons .button,.ui.inverted.primary.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.primary.basic.button:hover,.ui.inverted.primary.basic.buttons .button:hover,.ui.inverted.primary.buttons .basic.button:hover{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.primary.basic.button:focus,.ui.inverted.primary.basic.buttons .button:focus{box-shadow:0 0 0 2px #2bbbff inset!important;color:#54c8ff!important}.ui.inverted.primary.basic.active.button,.ui.inverted.primary.basic.buttons .active.button,.ui.inverted.primary.buttons .basic.active.button{box-shadow:0 0 0 2px #3ac0ff inset!important;color:#54c8ff!important}.ui.inverted.primary.basic.button:active,.ui.inverted.primary.basic.buttons .button:active,.ui.inverted.primary.buttons .basic.button:active{box-shadow:0 0 0 2px #21b8ff inset!important;color:#54c8ff!important}.ui.secondary.button,.ui.secondary.buttons .button{background-color:#f9fafb;color:#2e3235;text-shadow:none;background-image:none}.ui.secondary.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.secondary.button:hover,.ui.secondary.buttons .button:hover{background-color:#fff;color:#2e3235;text-shadow:none}.ui.secondary.button:focus,.ui.secondary.buttons .button:focus{background-color:#fff;color:#2e3235;text-shadow:none}.ui.secondary.button:active,.ui.secondary.buttons .button:active{background-color:#fff;color:#2e3235;text-shadow:none}.ui.secondary.active.button,.ui.secondary.button .active.button:active,.ui.secondary.buttons .active.button,.ui.secondary.buttons .active.button:active{background-color:#fff;color:#2e3235;text-shadow:none}.ui.basic.secondary.button,.ui.basic.secondary.buttons .button{box-shadow:0 0 0 1px #f9fafb inset!important;color:#f9fafb!important}.ui.basic.secondary.button:hover,.ui.basic.secondary.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.basic.secondary.button:focus,.ui.basic.secondary.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.basic.secondary.active.button,.ui.basic.secondary.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.basic.secondary.button:active,.ui.basic.secondary.buttons .button:active{box-shadow:0 0 0 1px #fff inset!important;color:#fff!important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.inverted.secondary.button,.ui.inverted.secondary.buttons .button{background-color:transparent;box-shadow:0 0 0 2px #545454 inset!important;color:#545454}.ui.inverted.secondary.button.active,.ui.inverted.secondary.button:active,.ui.inverted.secondary.button:focus,.ui.inverted.secondary.button:hover,.ui.inverted.secondary.buttons .button.active,.ui.inverted.secondary.buttons .button:active,.ui.inverted.secondary.buttons .button:focus,.ui.inverted.secondary.buttons .button:hover{box-shadow:none!important;color:#2e3235}.ui.inverted.secondary.button:hover,.ui.inverted.secondary.buttons .button:hover{background-color:#616161}.ui.inverted.secondary.button:focus,.ui.inverted.secondary.buttons .button:focus{background-color:#686868}.ui.inverted.secondary.active.button,.ui.inverted.secondary.buttons .active.button{background-color:#616161}.ui.inverted.secondary.button:active,.ui.inverted.secondary.buttons .button:active{background-color:#6e6e6e}.ui.inverted.secondary.basic.button,.ui.inverted.secondary.basic.buttons .button,.ui.inverted.secondary.buttons .basic.button{background-color:transparent;box-shadow:0 0 0 2px rgba(255,255,255,.5) inset!important;color:#2e3235!important}.ui.inverted.secondary.basic.button:hover,.ui.inverted.secondary.basic.buttons .button:hover,.ui.inverted.secondary.buttons .basic.button:hover{box-shadow:0 0 0 2px #616161 inset!important;color:#545454!important}.ui.inverted.secondary.basic.button:focus,.ui.inverted.secondary.basic.buttons .button:focus{box-shadow:0 0 0 2px #686868 inset!important;color:#545454!important}.ui.inverted.secondary.basic.active.button,.ui.inverted.secondary.basic.buttons .active.button,.ui.inverted.secondary.buttons .basic.active.button{box-shadow:0 0 0 2px #616161 inset!important;color:#545454!important}.ui.inverted.secondary.basic.button:active,.ui.inverted.secondary.basic.buttons .button:active,.ui.inverted.secondary.buttons .basic.button:active{box-shadow:0 0 0 2px #6e6e6e inset!important;color:#545454!important}.ui.positive.button,.ui.positive.buttons .button{background-color:#21ba45;color:#2e3235;text-shadow:none;background-image:none}.ui.positive.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.positive.button:hover,.ui.positive.buttons .button:hover{background-color:#16ab39;color:#2e3235;text-shadow:none}.ui.positive.button:focus,.ui.positive.buttons .button:focus{background-color:#0ea432;color:#2e3235;text-shadow:none}.ui.positive.button:active,.ui.positive.buttons .button:active{background-color:#198f35;color:#2e3235;text-shadow:none}.ui.positive.active.button,.ui.positive.button .active.button:active,.ui.positive.buttons .active.button,.ui.positive.buttons .active.button:active{background-color:#13ae38;color:#2e3235;text-shadow:none}.ui.basic.positive.button,.ui.basic.positive.buttons .button{box-shadow:0 0 0 1px #21ba45 inset!important;color:#21ba45!important}.ui.basic.positive.button:hover,.ui.basic.positive.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #16ab39 inset!important;color:#16ab39!important}.ui.basic.positive.button:focus,.ui.basic.positive.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #0ea432 inset!important;color:#16ab39!important}.ui.basic.positive.active.button,.ui.basic.positive.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #13ae38 inset!important;color:#198f35!important}.ui.basic.positive.button:active,.ui.basic.positive.buttons .button:active{box-shadow:0 0 0 1px #198f35 inset!important;color:#198f35!important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.negative.button,.ui.negative.buttons .button{background-color:#db2828;color:#2e3235;text-shadow:none;background-image:none}.ui.negative.button{box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.negative.button:hover,.ui.negative.buttons .button:hover{background-color:#d01919;color:#2e3235;text-shadow:none}.ui.negative.button:focus,.ui.negative.buttons .button:focus{background-color:#ca1010;color:#2e3235;text-shadow:none}.ui.negative.button:active,.ui.negative.buttons .button:active{background-color:#b21e1e;color:#2e3235;text-shadow:none}.ui.negative.active.button,.ui.negative.button .active.button:active,.ui.negative.buttons .active.button,.ui.negative.buttons .active.button:active{background-color:#d41515;color:#2e3235;text-shadow:none}.ui.basic.negative.button,.ui.basic.negative.buttons .button{box-shadow:0 0 0 1px #db2828 inset!important;color:#db2828!important}.ui.basic.negative.button:hover,.ui.basic.negative.buttons .button:hover{background:0 0!important;box-shadow:0 0 0 1px #d01919 inset!important;color:#d01919!important}.ui.basic.negative.button:focus,.ui.basic.negative.buttons .button:focus{background:0 0!important;box-shadow:0 0 0 1px #ca1010 inset!important;color:#d01919!important}.ui.basic.negative.active.button,.ui.basic.negative.buttons .active.button{background:0 0!important;box-shadow:0 0 0 1px #d41515 inset!important;color:#b21e1e!important}.ui.basic.negative.button:active,.ui.basic.negative.buttons .button:active{box-shadow:0 0 0 1px #b21e1e inset!important;color:#b21e1e!important}.ui.buttons:not(.vertical)>.basic.primary.button:not(:first-child){margin-left:-1px}.ui.buttons{display:inline-flex;flex-direction:row;font-size:0;vertical-align:baseline;margin:0 .25em 0 0}.ui.buttons:not(.basic):not(.inverted){box-shadow:none}.ui.buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.buttons .button{flex:1 0 auto;margin:0;border-radius:0;margin:0}.ui.buttons:not(.basic):not(.inverted)>.button,.ui.buttons>.ui.button:not(.basic):not(.inverted){box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.buttons .button:first-child{border-left:none;margin-left:0;border-top-left-radius:.35714286rem;border-bottom-left-radius:.35714286rem}.ui.buttons .button:last-child{border-top-right-radius:.35714286rem;border-bottom-right-radius:.35714286rem}.ui.vertical.buttons{display:inline-flex;flex-direction:column}.ui.vertical.buttons .button{display:block;float:none;width:100%;margin:0;box-shadow:none;border-radius:0}.ui.vertical.buttons .button:first-child{border-top-left-radius:.35714286rem;border-top-right-radius:.35714286rem}.ui.vertical.buttons .button:last-child{margin-bottom:0;border-bottom-left-radius:.35714286rem;border-bottom-right-radius:.35714286rem}.ui.vertical.buttons .button:only-child{border-radius:.35714286rem}.ui.basic.inverted.button,.ui.basic.inverted.buttons .button{color:#ddd!important}.ui.basic.inverted.button:hover,.ui.basic.inverted.buttons .button:hover{color:#fff!important}.ui.basic.inverted.button:focus,.ui.basic.inverted.buttons .button:focus{color:#fff!important}.ui.basic.inverted.button:active,.ui.basic.inverted.buttons .button:active{color:#fff!important}.ui.container{display:block;max-width:100%!important}@media only screen and (max-width:767px){.ui.container{width:auto!important;margin-left:1em!important;margin-right:1em!important}.ui.grid.container{width:auto!important}.ui.relaxed.grid.container{width:auto!important}.ui.very.relaxed.grid.container{width:auto!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.container{width:734px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(734px + 2rem)!important}.ui.relaxed.grid.container{width:calc(734px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(734px + 5rem)!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.container{width:944px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(944px + 2rem)!important}.ui.relaxed.grid.container{width:calc(944px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(944px + 5rem)!important}}@media only screen and (min-width:1200px){.ui.container{width:1138px;margin-left:auto!important;margin-right:auto!important}.ui.grid.container{width:calc(1138px + 2rem)!important}.ui.relaxed.grid.container{width:calc(1138px + 3rem)!important}.ui.very.relaxed.grid.container{width:calc(1138px + 5rem)!important}}.ui.text.container{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;max-width:700px!important;line-height:1.5}.ui.text.container{font-size:1.14285714rem}.ui.fluid.container{width:100%}.ui[class*="left aligned"].container{text-align:left}.ui[class*="center aligned"].container{text-align:center}.ui[class*="right aligned"].container{text-align:right}.ui.justified.container{text-align:justify;hyphens:auto}.ui.divider{margin:1rem 0;line-height:1;height:0;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:rgba(255,255,255,.95);user-select:none;-webkit-tap-highlight-color:transparent}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(24,26,28,.45);border-bottom:1px solid rgba(0,0,0,.1)}.ui.grid>.column+.divider,.ui.grid>.row>.column+.divider{left:auto}.ui.horizontal.divider{display:table;white-space:nowrap;height:auto;margin:'';line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.horizontal.divider:before{background-position:right 1em top 50%}.ui.horizontal.divider:after{background-position:left 1em top 50%}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(24,26,28,.45);border-right:1px solid rgba(0,0,0,.1);width:0%;height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{display:table;white-space:nowrap;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center;position:static;top:0;left:0;transform:none}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{position:static;left:0;border-left:none;border-right:none;content:'';display:table-cell;position:relative;top:50%;width:50%;background-repeat:no-repeat}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{background-position:right 1em top 50%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{background-position:left 1em top 50%}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.hidden.divider:after,.ui.hidden.divider:before{display:none}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#2e3235}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(24,26,28,.45)!important;border-left-color:rgba(24,26,28,.45)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}.ui.divider{font-size:1rem}.ui.horizontal.divider:after,.ui.horizontal.divider:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC)}}i.flag:not(.icon){display:inline-block;width:16px;height:11px;line-height:11px;vertical-align:baseline;margin:0 .5em 0 0;text-decoration:inherit;speak:none;font-smoothing:antialiased;backface-visibility:hidden}i.flag:not(.icon):before{display:inline-block;content:'';background:url(themes/default/assets/images/flags.png) no-repeat -108px -1976px;width:16px;height:11px}i.flag.ad:before,i.flag.andorra:before{background-position:0 0}i.flag.ae:before,i.flag.uae:before,i.flag.united.arab.emirates:before{background-position:0 -26px}i.flag.af:before,i.flag.afghanistan:before{background-position:0 -52px}i.flag.ag:before,i.flag.antigua:before{background-position:0 -78px}i.flag.ai:before,i.flag.anguilla:before{background-position:0 -104px}i.flag.al:before,i.flag.albania:before{background-position:0 -130px}i.flag.am:before,i.flag.armenia:before{background-position:0 -156px}i.flag.an:before,i.flag.netherlands.antilles:before{background-position:0 -182px}i.flag.angola:before,i.flag.ao:before{background-position:0 -208px}i.flag.ar:before,i.flag.argentina:before{background-position:0 -234px}i.flag.american.samoa:before,i.flag.as:before{background-position:0 -260px}i.flag.at:before,i.flag.austria:before{background-position:0 -286px}i.flag.au:before,i.flag.australia:before{background-position:0 -312px}i.flag.aruba:before,i.flag.aw:before{background-position:0 -338px}i.flag.aland.islands:before,i.flag.ax:before{background-position:0 -364px}i.flag.az:before,i.flag.azerbaijan:before{background-position:0 -390px}i.flag.ba:before,i.flag.bosnia:before{background-position:0 -416px}i.flag.barbados:before,i.flag.bb:before{background-position:0 -442px}i.flag.bangladesh:before,i.flag.bd:before{background-position:0 -468px}i.flag.be:before,i.flag.belgium:before{background-position:0 -494px}i.flag.bf:before,i.flag.burkina.faso:before{background-position:0 -520px}i.flag.bg:before,i.flag.bulgaria:before{background-position:0 -546px}i.flag.bahrain:before,i.flag.bh:before{background-position:0 -572px}i.flag.bi:before,i.flag.burundi:before{background-position:0 -598px}i.flag.benin:before,i.flag.bj:before{background-position:0 -624px}i.flag.bermuda:before,i.flag.bm:before{background-position:0 -650px}i.flag.bn:before,i.flag.brunei:before{background-position:0 -676px}i.flag.bo:before,i.flag.bolivia:before{background-position:0 -702px}i.flag.br:before,i.flag.brazil:before{background-position:0 -728px}i.flag.bahamas:before,i.flag.bs:before{background-position:0 -754px}i.flag.bhutan:before,i.flag.bt:before{background-position:0 -780px}i.flag.bouvet.island:before,i.flag.bv:before{background-position:0 -806px}i.flag.botswana:before,i.flag.bw:before{background-position:0 -832px}i.flag.belarus:before,i.flag.by:before{background-position:0 -858px}i.flag.belize:before,i.flag.bz:before{background-position:0 -884px}i.flag.ca:before,i.flag.canada:before{background-position:0 -910px}i.flag.cc:before,i.flag.cocos.islands:before{background-position:0 -962px}i.flag.cd:before,i.flag.congo:before{background-position:0 -988px}i.flag.central.african.republic:before,i.flag.cf:before{background-position:0 -1014px}i.flag.cg:before,i.flag.congo.brazzaville:before{background-position:0 -1040px}i.flag.ch:before,i.flag.switzerland:before{background-position:0 -1066px}i.flag.ci:before,i.flag.cote.divoire:before{background-position:0 -1092px}i.flag.ck:before,i.flag.cook.islands:before{background-position:0 -1118px}i.flag.chile:before,i.flag.cl:before{background-position:0 -1144px}i.flag.cameroon:before,i.flag.cm:before{background-position:0 -1170px}i.flag.china:before,i.flag.cn:before{background-position:0 -1196px}i.flag.co:before,i.flag.colombia:before{background-position:0 -1222px}i.flag.costa.rica:before,i.flag.cr:before{background-position:0 -1248px}i.flag.cs:before,i.flag.serbia:before{background-position:0 -1274px}i.flag.cu:before,i.flag.cuba:before{background-position:0 -1300px}i.flag.cape.verde:before,i.flag.cv:before{background-position:0 -1326px}i.flag.christmas.island:before,i.flag.cx:before{background-position:0 -1352px}i.flag.cy:before,i.flag.cyprus:before{background-position:0 -1378px}i.flag.cz:before,i.flag.czech.republic:before{background-position:0 -1404px}i.flag.de:before,i.flag.germany:before{background-position:0 -1430px}i.flag.dj:before,i.flag.djibouti:before{background-position:0 -1456px}i.flag.denmark:before,i.flag.dk:before{background-position:0 -1482px}i.flag.dm:before,i.flag.dominica:before{background-position:0 -1508px}i.flag.do:before,i.flag.dominican.republic:before{background-position:0 -1534px}i.flag.algeria:before,i.flag.dz:before{background-position:0 -1560px}i.flag.ec:before,i.flag.ecuador:before{background-position:0 -1586px}i.flag.ee:before,i.flag.estonia:before{background-position:0 -1612px}i.flag.eg:before,i.flag.egypt:before{background-position:0 -1638px}i.flag.eh:before,i.flag.western.sahara:before{background-position:0 -1664px}i.flag.england:before,i.flag.gb.eng:before{background-position:0 -1690px}i.flag.er:before,i.flag.eritrea:before{background-position:0 -1716px}i.flag.es:before,i.flag.spain:before{background-position:0 -1742px}i.flag.et:before,i.flag.ethiopia:before{background-position:0 -1768px}i.flag.eu:before,i.flag.european.union:before{background-position:0 -1794px}i.flag.fi:before,i.flag.finland:before{background-position:0 -1846px}i.flag.fiji:before,i.flag.fj:before{background-position:0 -1872px}i.flag.falkland.islands:before,i.flag.fk:before{background-position:0 -1898px}i.flag.fm:before,i.flag.micronesia:before{background-position:0 -1924px}i.flag.faroe.islands:before,i.flag.fo:before{background-position:0 -1950px}i.flag.fr:before,i.flag.france:before{background-position:0 -1976px}i.flag.ga:before,i.flag.gabon:before{background-position:-36px 0}i.flag.gb:before,i.flag.uk:before,i.flag.united.kingdom:before{background-position:-36px -26px}i.flag.gd:before,i.flag.grenada:before{background-position:-36px -52px}i.flag.ge:before,i.flag.georgia:before{background-position:-36px -78px}i.flag.french.guiana:before,i.flag.gf:before{background-position:-36px -104px}i.flag.gh:before,i.flag.ghana:before{background-position:-36px -130px}i.flag.gi:before,i.flag.gibraltar:before{background-position:-36px -156px}i.flag.gl:before,i.flag.greenland:before{background-position:-36px -182px}i.flag.gambia:before,i.flag.gm:before{background-position:-36px -208px}i.flag.gn:before,i.flag.guinea:before{background-position:-36px -234px}i.flag.gp:before,i.flag.guadeloupe:before{background-position:-36px -260px}i.flag.equatorial.guinea:before,i.flag.gq:before{background-position:-36px -286px}i.flag.gr:before,i.flag.greece:before{background-position:-36px -312px}i.flag.gs:before,i.flag.sandwich.islands:before{background-position:-36px -338px}i.flag.gt:before,i.flag.guatemala:before{background-position:-36px -364px}i.flag.gu:before,i.flag.guam:before{background-position:-36px -390px}i.flag.guinea-bissau:before,i.flag.gw:before{background-position:-36px -416px}i.flag.guyana:before,i.flag.gy:before{background-position:-36px -442px}i.flag.hk:before,i.flag.hong.kong:before{background-position:-36px -468px}i.flag.heard.island:before,i.flag.hm:before{background-position:-36px -494px}i.flag.hn:before,i.flag.honduras:before{background-position:-36px -520px}i.flag.croatia:before,i.flag.hr:before{background-position:-36px -546px}i.flag.haiti:before,i.flag.ht:before{background-position:-36px -572px}i.flag.hu:before,i.flag.hungary:before{background-position:-36px -598px}i.flag.id:before,i.flag.indonesia:before{background-position:-36px -624px}i.flag.ie:before,i.flag.ireland:before{background-position:-36px -650px}i.flag.il:before,i.flag.israel:before{background-position:-36px -676px}i.flag.in:before,i.flag.india:before{background-position:-36px -702px}i.flag.indian.ocean.territory:before,i.flag.io:before{background-position:-36px -728px}i.flag.iq:before,i.flag.iraq:before{background-position:-36px -754px}i.flag.ir:before,i.flag.iran:before{background-position:-36px -780px}i.flag.iceland:before,i.flag.is:before{background-position:-36px -806px}i.flag.it:before,i.flag.italy:before{background-position:-36px -832px}i.flag.jamaica:before,i.flag.jm:before{background-position:-36px -858px}i.flag.jo:before,i.flag.jordan:before{background-position:-36px -884px}i.flag.japan:before,i.flag.jp:before{background-position:-36px -910px}i.flag.ke:before,i.flag.kenya:before{background-position:-36px -936px}i.flag.kg:before,i.flag.kyrgyzstan:before{background-position:-36px -962px}i.flag.cambodia:before,i.flag.kh:before{background-position:-36px -988px}i.flag.ki:before,i.flag.kiribati:before{background-position:-36px -1014px}i.flag.comoros:before,i.flag.km:before{background-position:-36px -1040px}i.flag.kn:before,i.flag.saint.kitts.and.nevis:before{background-position:-36px -1066px}i.flag.kp:before,i.flag.north.korea:before{background-position:-36px -1092px}i.flag.kr:before,i.flag.south.korea:before{background-position:-36px -1118px}i.flag.kuwait:before,i.flag.kw:before{background-position:-36px -1144px}i.flag.cayman.islands:before,i.flag.ky:before{background-position:-36px -1170px}i.flag.kazakhstan:before,i.flag.kz:before{background-position:-36px -1196px}i.flag.la:before,i.flag.laos:before{background-position:-36px -1222px}i.flag.lb:before,i.flag.lebanon:before{background-position:-36px -1248px}i.flag.lc:before,i.flag.saint.lucia:before{background-position:-36px -1274px}i.flag.li:before,i.flag.liechtenstein:before{background-position:-36px -1300px}i.flag.lk:before,i.flag.sri.lanka:before{background-position:-36px -1326px}i.flag.liberia:before,i.flag.lr:before{background-position:-36px -1352px}i.flag.lesotho:before,i.flag.ls:before{background-position:-36px -1378px}i.flag.lithuania:before,i.flag.lt:before{background-position:-36px -1404px}i.flag.lu:before,i.flag.luxembourg:before{background-position:-36px -1430px}i.flag.latvia:before,i.flag.lv:before{background-position:-36px -1456px}i.flag.libya:before,i.flag.ly:before{background-position:-36px -1482px}i.flag.ma:before,i.flag.morocco:before{background-position:-36px -1508px}i.flag.mc:before,i.flag.monaco:before{background-position:-36px -1534px}i.flag.md:before,i.flag.moldova:before{background-position:-36px -1560px}i.flag.me:before,i.flag.montenegro:before{background-position:-36px -1586px}i.flag.madagascar:before,i.flag.mg:before{background-position:-36px -1613px}i.flag.marshall.islands:before,i.flag.mh:before{background-position:-36px -1639px}i.flag.macedonia:before,i.flag.mk:before{background-position:-36px -1665px}i.flag.mali:before,i.flag.ml:before{background-position:-36px -1691px}i.flag.burma:before,i.flag.mm:before,i.flag.myanmar:before{background-position:-73px -1821px}i.flag.mn:before,i.flag.mongolia:before{background-position:-36px -1743px}i.flag.macau:before,i.flag.mo:before{background-position:-36px -1769px}i.flag.mp:before,i.flag.northern.mariana.islands:before{background-position:-36px -1795px}i.flag.martinique:before,i.flag.mq:before{background-position:-36px -1821px}i.flag.mauritania:before,i.flag.mr:before{background-position:-36px -1847px}i.flag.montserrat:before,i.flag.ms:before{background-position:-36px -1873px}i.flag.malta:before,i.flag.mt:before{background-position:-36px -1899px}i.flag.mauritius:before,i.flag.mu:before{background-position:-36px -1925px}i.flag.maldives:before,i.flag.mv:before{background-position:-36px -1951px}i.flag.malawi:before,i.flag.mw:before{background-position:-36px -1977px}i.flag.mexico:before,i.flag.mx:before{background-position:-72px 0}i.flag.malaysia:before,i.flag.my:before{background-position:-72px -26px}i.flag.mozambique:before,i.flag.mz:before{background-position:-72px -52px}i.flag.na:before,i.flag.namibia:before{background-position:-72px -78px}i.flag.nc:before,i.flag.new.caledonia:before{background-position:-72px -104px}i.flag.ne:before,i.flag.niger:before{background-position:-72px -130px}i.flag.nf:before,i.flag.norfolk.island:before{background-position:-72px -156px}i.flag.ng:before,i.flag.nigeria:before{background-position:-72px -182px}i.flag.ni:before,i.flag.nicaragua:before{background-position:-72px -208px}i.flag.netherlands:before,i.flag.nl:before{background-position:-72px -234px}i.flag.no:before,i.flag.norway:before{background-position:-72px -260px}i.flag.nepal:before,i.flag.np:before{background-position:-72px -286px}i.flag.nauru:before,i.flag.nr:before{background-position:-72px -312px}i.flag.niue:before,i.flag.nu:before{background-position:-72px -338px}i.flag.new.zealand:before,i.flag.nz:before{background-position:-72px -364px}i.flag.om:before,i.flag.oman:before{background-position:-72px -390px}i.flag.pa:before,i.flag.panama:before{background-position:-72px -416px}i.flag.pe:before,i.flag.peru:before{background-position:-72px -442px}i.flag.french.polynesia:before,i.flag.pf:before{background-position:-72px -468px}i.flag.new.guinea:before,i.flag.pg:before{background-position:-72px -494px}i.flag.ph:before,i.flag.philippines:before{background-position:-72px -520px}i.flag.pakistan:before,i.flag.pk:before{background-position:-72px -546px}i.flag.pl:before,i.flag.poland:before{background-position:-72px -572px}i.flag.pm:before,i.flag.saint.pierre:before{background-position:-72px -598px}i.flag.pitcairn.islands:before,i.flag.pn:before{background-position:-72px -624px}i.flag.pr:before,i.flag.puerto.rico:before{background-position:-72px -650px}i.flag.palestine:before,i.flag.ps:before{background-position:-72px -676px}i.flag.portugal:before,i.flag.pt:before{background-position:-72px -702px}i.flag.palau:before,i.flag.pw:before{background-position:-72px -728px}i.flag.paraguay:before,i.flag.py:before{background-position:-72px -754px}i.flag.qa:before,i.flag.qatar:before{background-position:-72px -780px}i.flag.re:before,i.flag.reunion:before{background-position:-72px -806px}i.flag.ro:before,i.flag.romania:before{background-position:-72px -832px}i.flag.rs:before,i.flag.serbia:before{background-position:-72px -858px}i.flag.ru:before,i.flag.russia:before{background-position:-72px -884px}i.flag.rw:before,i.flag.rwanda:before{background-position:-72px -910px}i.flag.sa:before,i.flag.saudi.arabia:before{background-position:-72px -936px}i.flag.sb:before,i.flag.solomon.islands:before{background-position:-72px -962px}i.flag.sc:before,i.flag.seychelles:before{background-position:-72px -988px}i.flag.gb.sct:before,i.flag.scotland:before{background-position:-72px -1014px}i.flag.sd:before,i.flag.sudan:before{background-position:-72px -1040px}i.flag.se:before,i.flag.sweden:before{background-position:-72px -1066px}i.flag.sg:before,i.flag.singapore:before{background-position:-72px -1092px}i.flag.saint.helena:before,i.flag.sh:before{background-position:-72px -1118px}i.flag.si:before,i.flag.slovenia:before{background-position:-72px -1144px}i.flag.jan.mayen:before,i.flag.sj:before,i.flag.svalbard:before{background-position:-72px -1170px}i.flag.sk:before,i.flag.slovakia:before{background-position:-72px -1196px}i.flag.sierra.leone:before,i.flag.sl:before{background-position:-72px -1222px}i.flag.san.marino:before,i.flag.sm:before{background-position:-72px -1248px}i.flag.senegal:before,i.flag.sn:before{background-position:-72px -1274px}i.flag.so:before,i.flag.somalia:before{background-position:-72px -1300px}i.flag.sr:before,i.flag.suriname:before{background-position:-72px -1326px}i.flag.sao.tome:before,i.flag.st:before{background-position:-72px -1352px}i.flag.el.salvador:before,i.flag.sv:before{background-position:-72px -1378px}i.flag.sy:before,i.flag.syria:before{background-position:-72px -1404px}i.flag.swaziland:before,i.flag.sz:before{background-position:-72px -1430px}i.flag.caicos.islands:before,i.flag.tc:before{background-position:-72px -1456px}i.flag.chad:before,i.flag.td:before{background-position:-72px -1482px}i.flag.french.territories:before,i.flag.tf:before{background-position:-72px -1508px}i.flag.tg:before,i.flag.togo:before{background-position:-72px -1534px}i.flag.th:before,i.flag.thailand:before{background-position:-72px -1560px}i.flag.tajikistan:before,i.flag.tj:before{background-position:-72px -1586px}i.flag.tk:before,i.flag.tokelau:before{background-position:-72px -1612px}i.flag.timorleste:before,i.flag.tl:before{background-position:-72px -1638px}i.flag.tm:before,i.flag.turkmenistan:before{background-position:-72px -1664px}i.flag.tn:before,i.flag.tunisia:before{background-position:-72px -1690px}i.flag.to:before,i.flag.tonga:before{background-position:-72px -1716px}i.flag.tr:before,i.flag.turkey:before{background-position:-72px -1742px}i.flag.trinidad:before,i.flag.tt:before{background-position:-72px -1768px}i.flag.tuvalu:before,i.flag.tv:before{background-position:-72px -1794px}i.flag.taiwan:before,i.flag.tw:before{background-position:-72px -1820px}i.flag.tanzania:before,i.flag.tz:before{background-position:-72px -1846px}i.flag.ua:before,i.flag.ukraine:before{background-position:-72px -1872px}i.flag.ug:before,i.flag.uganda:before{background-position:-72px -1898px}i.flag.um:before,i.flag.us.minor.islands:before{background-position:-72px -1924px}i.flag.america:before,i.flag.united.states:before,i.flag.us:before{background-position:-72px -1950px}i.flag.uruguay:before,i.flag.uy:before{background-position:-72px -1976px}i.flag.uz:before,i.flag.uzbekistan:before{background-position:-108px 0}i.flag.va:before,i.flag.vatican.city:before{background-position:-108px -26px}i.flag.saint.vincent:before,i.flag.vc:before{background-position:-108px -52px}i.flag.ve:before,i.flag.venezuela:before{background-position:-108px -78px}i.flag.british.virgin.islands:before,i.flag.vg:before{background-position:-108px -104px}i.flag.us.virgin.islands:before,i.flag.vi:before{background-position:-108px -130px}i.flag.vietnam:before,i.flag.vn:before{background-position:-108px -156px}i.flag.vanuatu:before,i.flag.vu:before{background-position:-108px -182px}i.flag.gb.wls:before,i.flag.wales:before{background-position:-108px -208px}i.flag.wallis.and.futuna:before,i.flag.wf:before{background-position:-108px -234px}i.flag.samoa:before,i.flag.ws:before{background-position:-108px -260px}i.flag.ye:before,i.flag.yemen:before{background-position:-108px -286px}i.flag.mayotte:before,i.flag.yt:before{background-position:-108px -312px}i.flag.south.africa:before,i.flag.za:before{background-position:-108px -338px}i.flag.zambia:before,i.flag.zm:before{background-position:-108px -364px}i.flag.zimbabwe:before,i.flag.zw:before{background-position:-108px -390px}.ui.header{border:none;margin:calc(2rem - .1428571428571429em) 0 1rem;padding:0 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:600;line-height:1.28571429em;text-transform:none;color:#ddd}.ui.header:first-child{margin-top:-.14285714em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{display:block;font-weight:400;padding:0;margin:0;font-size:1rem;line-height:1.2em;color:rgba(255,255,255,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:0;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image:not(.icon),.ui.header>img{display:inline-block;margin-top:.14285714em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:not(.icon):only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.71428571rem}h3.ui.header{font-size:1.28571429rem}h4.ui.header{font-size:1.07142857rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header{font-size:1.14285714rem}h2.ui.header .sub.header{font-size:1.14285714rem}h3.ui.header .sub.header{font-size:1rem}h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.92857143rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.71428571em}.ui.medium.header{font-size:1.28571429em}.ui.small.header{font-size:1.07142857em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header{font-size:1.14285714rem}.ui.large.header .sub.header{font-size:1.14285714rem}.ui.header .sub.header{font-size:1rem}.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.92857143rem}.ui.sub.header{padding:0;margin-bottom:.14285714rem;font-weight:600;font-size:.85714286em;text-transform:uppercase;color:''}.ui.small.sub.header{font-size:.78571429em}.ui.sub.header{font-size:.85714286em}.ui.large.sub.header{font-size:.92857143em}.ui.huge.sub.header{font-size:1em}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0;font-size:3em;margin:0 auto .5rem;opacity:1}.ui.icon.header .content{display:block;padding:0}.ui.icon.header .circular.icon{font-size:2em}.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.45}.ui.inverted.header{color:#2e3235}.ui.inverted.header .sub.header{color:rgba(0,0,0,.8)}.ui.inverted.attached.header{background:#545454 linear-gradient(transparent,rgba(255,255,255,.05));box-shadow:none;border-color:transparent}.ui.inverted.block.header{background:#545454 linear-gradient(transparent,rgba(255,255,255,.05));box-shadow:none}.ui.inverted.block.header{border-bottom:none}.ui.red.header{color:#db2828!important}a.ui.red.header:hover{color:#d01919!important}.ui.red.dividing.header{border-bottom:2px solid #db2828}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff5144!important}.ui.orange.header{color:#c06d36!important}a.ui.orange.header:hover{color:#b2602a!important}.ui.orange.dividing.header{border-bottom:2px solid #c06d36}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff7701!important}.ui.olive.header{color:#b5cc18!important}a.ui.olive.header:hover{color:#a7bd0d!important}.ui.olive.dividing.header{border-bottom:2px solid #b5cc18}.ui.inverted.olive.header{color:#d9e778!important}a.ui.inverted.olive.header:hover{color:#d8ea5c!important}.ui.yellow.header{color:#fbbd08!important}a.ui.yellow.header:hover{color:#eaae00!important}.ui.yellow.dividing.header{border-bottom:2px solid #fbbd08}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffdf05!important}.ui.green.header{color:#21ba45!important}a.ui.green.header:hover{color:#16ab39!important}.ui.green.dividing.header{border-bottom:2px solid #21ba45}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#22be34!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#009c95!important}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#54ffff!important}.ui.blue.header{color:#2185d0!important}a.ui.blue.header:hover{color:#1678c2!important}.ui.blue.dividing.header{border-bottom:2px solid #2185d0}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#3ac0ff!important}.ui.violet.header{color:#6435c9!important}a.ui.violet.header:hover{color:#5829bb!important}.ui.violet.dividing.header{border-bottom:2px solid #6435c9}.ui.inverted.violet.header{color:#a291fb!important}a.ui.inverted.violet.header:hover{color:#8a73ff!important}.ui.purple.header{color:#a333c8!important}a.ui.purple.header:hover{color:#9627ba!important}.ui.purple.dividing.header{border-bottom:2px solid #a333c8}.ui.inverted.purple.header{color:#dc73ff!important}a.ui.inverted.purple.header:hover{color:#d65aff!important}.ui.pink.header{color:#e03997!important}a.ui.pink.header:hover{color:#e61a8d!important}.ui.pink.dividing.header{border-bottom:2px solid #e03997}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff74d8!important}.ui.brown.header{color:#a5673f!important}a.ui.brown.header:hover{color:#975b33!important}.ui.brown.dividing.header{border-bottom:2px solid #a5673f}.ui.inverted.brown.header{color:#d67c1c!important}a.ui.inverted.brown.header:hover{color:#c86f11!important}.ui.grey.header{color:#767676!important}a.ui.grey.header:hover{color:#838383!important}.ui.grey.dividing.header{border-bottom:2px solid #767676}.ui.inverted.grey.header{color:#dcddde!important}a.ui.inverted.grey.header:hover{color:#cfd0d2!important}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.21428571rem;border-bottom:1px solid rgba(24,26,28,.45)}.ui.dividing.header .sub.header{padding-bottom:.21428571rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(0,0,0,.1)}.ui.block.header{background:#4b5257;padding:.78571429rem 1rem;box-shadow:none;border:1px solid #3b3c3e;border-radius:.35714286rem}.ui.tiny.block.header{font-size:.85714286rem}.ui.small.block.header{font-size:.92857143rem}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}.ui.large.block.header{font-size:1.14285714rem}.ui.huge.block.header{font-size:1.42857143rem}.ui.attached.header{background:#2e3235;padding:.78571429rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #3b3c3e}.ui.attached.block.header{background:#4b5257}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-radius:.35714286rem .35714286rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .35714286rem .35714286rem}.ui.tiny.attached.header{font-size:.85714286em}.ui.small.attached.header{font-size:.92857143em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.14285714em}.ui.huge.attached.header{font-size:1.42857143em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28571429em}@font-face{font-family:Icons;src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.eot);src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.eot?#iefix) format('embedded-opentype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.woff2) format('woff2'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.woff) format('woff'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.ttf) format('truetype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon{display:inline-block;opacity:1;margin:0 .25rem 0 0;width:1.18em;height:1em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;speak:none;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;backface-visibility:hidden}i.icon:before{background:0 0!important}i.icon.loading{height:1em;line-height:1;animation:icon-loading 2s linear infinite}@keyframes icon-loading{from{transform:rotate(0)}to{transform:rotate(360deg)}}i.icon.hover{opacity:1!important}i.icon.active{opacity:1!important}i.emphasized.icon{opacity:1!important}i.disabled.icon{opacity:.45!important}i.fitted.icon{width:auto;margin:0!important}i.link.icon,i.link.icons{cursor:pointer;opacity:.8;transition:opacity .1s ease}i.link.icon:hover,i.link.icons:hover{opacity:1!important}i.circular.icon{border-radius:500em!important;line-height:1!important;padding:.5em 0!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset;width:2em!important;height:2em!important}i.circular.inverted.icon{border:none;box-shadow:none}i.flipped.icon,i.horizontally.flipped.icon{transform:scale(-1,1)}i.vertically.flipped.icon{transform:scale(1,-1)}i.clockwise.rotated.icon,i.right.rotated.icon,i.rotated.icon{transform:rotate(90deg)}i.counterclockwise.rotated.icon,i.left.rotated.icon{transform:rotate(-90deg)}i.bordered.icon{line-height:1;vertical-align:baseline;width:2em;height:2em;padding:.5em 0!important;box-shadow:0 0 0 .1em rgba(0,0,0,.1) inset}i.bordered.inverted.icon{border:none;box-shadow:none}i.inverted.bordered.icon,i.inverted.circular.icon{background-color:#f9fafb!important;color:#2e3235!important}i.inverted.icon{color:#2e3235}i.red.icon{color:#db2828!important}i.inverted.red.icon{color:#ff695e!important}i.inverted.bordered.red.icon,i.inverted.circular.red.icon{background-color:#db2828!important;color:#2e3235!important}i.orange.icon{color:#c06d36!important}i.inverted.orange.icon{color:#ff851b!important}i.inverted.bordered.orange.icon,i.inverted.circular.orange.icon{background-color:#c06d36!important;color:#2e3235!important}i.yellow.icon{color:#fbbd08!important}i.inverted.yellow.icon{color:#ffe21f!important}i.inverted.bordered.yellow.icon,i.inverted.circular.yellow.icon{background-color:#fbbd08!important;color:#2e3235!important}i.olive.icon{color:#b5cc18!important}i.inverted.olive.icon{color:#d9e778!important}i.inverted.bordered.olive.icon,i.inverted.circular.olive.icon{background-color:#b5cc18!important;color:#2e3235!important}i.green.icon{color:#21ba45!important}i.inverted.green.icon{color:#2ecc40!important}i.inverted.bordered.green.icon,i.inverted.circular.green.icon{background-color:#21ba45!important;color:#2e3235!important}i.teal.icon{color:#00b5ad!important}i.inverted.teal.icon{color:#6dffff!important}i.inverted.bordered.teal.icon,i.inverted.circular.teal.icon{background-color:#00b5ad!important;color:#2e3235!important}i.blue.icon{color:#2185d0!important}i.inverted.blue.icon{color:#54c8ff!important}i.inverted.bordered.blue.icon,i.inverted.circular.blue.icon{background-color:#2185d0!important;color:#2e3235!important}i.violet.icon{color:#6435c9!important}i.inverted.violet.icon{color:#a291fb!important}i.inverted.bordered.violet.icon,i.inverted.circular.violet.icon{background-color:#6435c9!important;color:#2e3235!important}i.purple.icon{color:#a333c8!important}i.inverted.purple.icon{color:#dc73ff!important}i.inverted.bordered.purple.icon,i.inverted.circular.purple.icon{background-color:#a333c8!important;color:#2e3235!important}i.pink.icon{color:#e03997!important}i.inverted.pink.icon{color:#ff8edf!important}i.inverted.bordered.pink.icon,i.inverted.circular.pink.icon{background-color:#e03997!important;color:#2e3235!important}i.brown.icon{color:#a5673f!important}i.inverted.brown.icon{color:#d67c1c!important}i.inverted.bordered.brown.icon,i.inverted.circular.brown.icon{background-color:#a5673f!important;color:#2e3235!important}i.grey.icon{color:#767676!important}i.inverted.grey.icon{color:#dcddde!important}i.inverted.bordered.grey.icon,i.inverted.circular.grey.icon{background-color:#767676!important;color:#2e3235!important}i.black.icon{color:#f9fafb!important}i.inverted.black.icon{color:#545454!important}i.inverted.bordered.black.icon,i.inverted.circular.black.icon{background-color:#f9fafb!important;color:#2e3235!important}i.mini.icon,i.mini.icons{line-height:1;font-size:.4em}i.tiny.icon,i.tiny.icons{line-height:1;font-size:.5em}i.small.icon,i.small.icons{line-height:1;font-size:.75em}i.icon,i.icons{font-size:1em}i.large.icon,i.large.icons{line-height:1;vertical-align:middle;font-size:1.5em}i.big.icon,i.big.icons{line-height:1;vertical-align:middle;font-size:2em}i.huge.icon,i.huge.icons{line-height:1;vertical-align:middle;font-size:4em}i.massive.icon,i.massive.icons{line-height:1;vertical-align:middle;font-size:8em}i.icons{display:inline-block;position:relative;line-height:1}i.icons .icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);margin:0;margin:0}i.icons .icon:first-child{position:static;width:auto;height:auto;vertical-align:top;transform:none;margin-right:.25rem}i.icons .corner.icon{top:auto;left:auto;right:0;bottom:0;transform:none;font-size:.45em;text-shadow:-1px -1px 0 #2e3235,1px -1px 0 #2e3235,-1px 1px 0 #2e3235,1px 1px 0 #2e3235}i.icons .top.right.corner.icon{top:0;left:auto;right:0;bottom:auto}i.icons .top.left.corner.icon{top:0;left:0;right:auto;bottom:auto}i.icons .bottom.left.corner.icon{top:auto;left:0;right:auto;bottom:0}i.icons .bottom.right.corner.icon{top:auto;left:auto;right:0;bottom:0}i.icons .inverted.corner.icon{text-shadow:-1px -1px 0 #f9fafb,1px -1px 0 #f9fafb,-1px 1px 0 #f9fafb,1px 1px 0 #f9fafb}i.icon.linkedin.in:before{content:"\f0e1"}i.icon.zoom.in:before{content:"\f00e"}i.icon.zoom.out:before{content:"\f010"}i.icon.sign.in:before{content:"\f2f6"}i.icon.in.cart:before{content:"\f218"}i.icon.log.out:before{content:"\f2f5"}i.icon.sign.out:before{content:"\f2f5"}i.icon.\35 00px:before{content:"\f26e"}i.icon.accessible.icon:before{content:"\f368"}i.icon.accusoft:before{content:"\f369"}i.icon.address.book:before{content:"\f2b9"}i.icon.address.card:before{content:"\f2bb"}i.icon.adjust:before{content:"\f042"}i.icon.adn:before{content:"\f170"}i.icon.adversal:before{content:"\f36a"}i.icon.affiliatetheme:before{content:"\f36b"}i.icon.algolia:before{content:"\f36c"}i.icon.align.center:before{content:"\f037"}i.icon.align.justify:before{content:"\f039"}i.icon.align.left:before{content:"\f036"}i.icon.align.right:before{content:"\f038"}i.icon.amazon:before{content:"\f270"}i.icon.amazon.pay:before{content:"\f42c"}i.icon.ambulance:before{content:"\f0f9"}i.icon.american.sign.language.interpreting:before{content:"\f2a3"}i.icon.amilia:before{content:"\f36d"}i.icon.anchor:before{content:"\f13d"}i.icon.android:before{content:"\f17b"}i.icon.angellist:before{content:"\f209"}i.icon.angle.double.down:before{content:"\f103"}i.icon.angle.double.left:before{content:"\f100"}i.icon.angle.double.right:before{content:"\f101"}i.icon.angle.double.up:before{content:"\f102"}i.icon.angle.down:before{content:"\f107"}i.icon.angle.left:before{content:"\f104"}i.icon.angle.right:before{content:"\f105"}i.icon.angle.up:before{content:"\f106"}i.icon.angrycreative:before{content:"\f36e"}i.icon.angular:before{content:"\f420"}i.icon.app.store:before{content:"\f36f"}i.icon.app.store.ios:before{content:"\f370"}i.icon.apper:before{content:"\f371"}i.icon.apple:before{content:"\f179"}i.icon.apple.pay:before{content:"\f415"}i.icon.archive:before{content:"\f187"}i.icon.arrow.alternate.circle.down:before{content:"\f358"}i.icon.arrow.alternate.circle.left:before{content:"\f359"}i.icon.arrow.alternate.circle.right:before{content:"\f35a"}i.icon.arrow.alternate.circle.up:before{content:"\f35b"}i.icon.arrow.circle.down:before{content:"\f0ab"}i.icon.arrow.circle.left:before{content:"\f0a8"}i.icon.arrow.circle.right:before{content:"\f0a9"}i.icon.arrow.circle.up:before{content:"\f0aa"}i.icon.arrow.down:before{content:"\f063"}i.icon.arrow.left:before{content:"\f060"}i.icon.arrow.right:before{content:"\f061"}i.icon.arrow.up:before{content:"\f062"}i.icon.arrows.alternate:before{content:"\f0b2"}i.icon.arrows.alternate.horizontal:before{content:"\f337"}i.icon.arrows.alternate.vertical:before{content:"\f338"}i.icon.assistive.listening.systems:before{content:"\f2a2"}i.icon.asterisk:before{content:"\f069"}i.icon.asymmetrik:before{content:"\f372"}i.icon.at:before{content:"\f1fa"}i.icon.audible:before{content:"\f373"}i.icon.audio.description:before{content:"\f29e"}i.icon.autoprefixer:before{content:"\f41c"}i.icon.avianex:before{content:"\f374"}i.icon.aviato:before{content:"\f421"}i.icon.aws:before{content:"\f375"}i.icon.backward:before{content:"\f04a"}i.icon.balance.scale:before{content:"\f24e"}i.icon.ban:before{content:"\f05e"}i.icon.band.aid:before{content:"\f462"}i.icon.bandcamp:before{content:"\f2d5"}i.icon.barcode:before{content:"\f02a"}i.icon.bars:before{content:"\f0c9"}i.icon.baseball.ball:before{content:"\f433"}i.icon.basketball.ball:before{content:"\f434"}i.icon.bath:before{content:"\f2cd"}i.icon.battery.empty:before{content:"\f244"}i.icon.battery.full:before{content:"\f240"}i.icon.battery.half:before{content:"\f242"}i.icon.battery.quarter:before{content:"\f243"}i.icon.battery.three.quarters:before{content:"\f241"}i.icon.bed:before{content:"\f236"}i.icon.beer:before{content:"\f0fc"}i.icon.behance:before{content:"\f1b4"}i.icon.behance.square:before{content:"\f1b5"}i.icon.bell:before{content:"\f0f3"}i.icon.bell.slash:before{content:"\f1f6"}i.icon.bicycle:before{content:"\f206"}i.icon.bimobject:before{content:"\f378"}i.icon.binoculars:before{content:"\f1e5"}i.icon.birthday.cake:before{content:"\f1fd"}i.icon.bitbucket:before{content:"\f171"}i.icon.bitcoin:before{content:"\f379"}i.icon.bity:before{content:"\f37a"}i.icon.black.tie:before{content:"\f27e"}i.icon.blackberry:before{content:"\f37b"}i.icon.blind:before{content:"\f29d"}i.icon.blogger:before{content:"\f37c"}i.icon.blogger.b:before{content:"\f37d"}i.icon.bluetooth:before{content:"\f293"}i.icon.bluetooth.b:before{content:"\f294"}i.icon.bold:before{content:"\f032"}i.icon.bolt:before{content:"\f0e7"}i.icon.bomb:before{content:"\f1e2"}i.icon.book:before{content:"\f02d"}i.icon.bookmark:before{content:"\f02e"}i.icon.bowling.ball:before{content:"\f436"}i.icon.box:before{content:"\f466"}i.icon.boxes:before{content:"\f468"}i.icon.braille:before{content:"\f2a1"}i.icon.briefcase:before{content:"\f0b1"}i.icon.btc:before{content:"\f15a"}i.icon.bug:before{content:"\f188"}i.icon.building:before{content:"\f1ad"}i.icon.bullhorn:before{content:"\f0a1"}i.icon.bullseye:before{content:"\f140"}i.icon.buromobelexperte:before{content:"\f37f"}i.icon.bus:before{content:"\f207"}i.icon.buysellads:before{content:"\f20d"}i.icon.calculator:before{content:"\f1ec"}i.icon.calendar:before{content:"\f133"}i.icon.calendar.alternate:before{content:"\f073"}i.icon.calendar.check:before{content:"\f274"}i.icon.calendar.minus:before{content:"\f272"}i.icon.calendar.plus:before{content:"\f271"}i.icon.calendar.times:before{content:"\f273"}i.icon.camera:before{content:"\f030"}i.icon.camera.retro:before{content:"\f083"}i.icon.car:before{content:"\f1b9"}i.icon.caret.down:before{content:"\f0d7"}i.icon.caret.left:before{content:"\f0d9"}i.icon.caret.right:before{content:"\f0da"}i.icon.caret.square.down:before{content:"\f150"}i.icon.caret.square.left:before{content:"\f191"}i.icon.caret.square.right:before{content:"\f152"}i.icon.caret.square.up:before{content:"\f151"}i.icon.caret.up:before{content:"\f0d8"}i.icon.cart.arrow.down:before{content:"\f218"}i.icon.cart.plus:before{content:"\f217"}i.icon.cc.amazon.pay:before{content:"\f42d"}i.icon.cc.amex:before{content:"\f1f3"}i.icon.cc.apple.pay:before{content:"\f416"}i.icon.cc.diners.club:before{content:"\f24c"}i.icon.cc.discover:before{content:"\f1f2"}i.icon.cc.jcb:before{content:"\f24b"}i.icon.cc.mastercard:before{content:"\f1f1"}i.icon.cc.paypal:before{content:"\f1f4"}i.icon.cc.stripe:before{content:"\f1f5"}i.icon.cc.visa:before{content:"\f1f0"}i.icon.centercode:before{content:"\f380"}i.icon.certificate:before{content:"\f0a3"}i.icon.chart.area:before{content:"\f1fe"}i.icon.chart.bar:before{content:"\f080"}i.icon.chart.line:before{content:"\f201"}i.icon.chart.pie:before{content:"\f200"}i.icon.check:before{content:"\f00c"}i.icon.check.circle:before{content:"\f058"}i.icon.check.square:before{content:"\f14a"}i.icon.chess:before{content:"\f439"}i.icon.chess.bishop:before{content:"\f43a"}i.icon.chess.board:before{content:"\f43c"}i.icon.chess.king:before{content:"\f43f"}i.icon.chess.knight:before{content:"\f441"}i.icon.chess.pawn:before{content:"\f443"}i.icon.chess.queen:before{content:"\f445"}i.icon.chess.rook:before{content:"\f447"}i.icon.chevron.circle.down:before{content:"\f13a"}i.icon.chevron.circle.left:before{content:"\f137"}i.icon.chevron.circle.right:before{content:"\f138"}i.icon.chevron.circle.up:before{content:"\f139"}i.icon.chevron.down:before{content:"\f078"}i.icon.chevron.left:before{content:"\f053"}i.icon.chevron.right:before{content:"\f054"}i.icon.chevron.up:before{content:"\f077"}i.icon.child:before{content:"\f1ae"}i.icon.chrome:before{content:"\f268"}i.icon.circle:before{content:"\f111"}i.icon.circle.notch:before{content:"\f1ce"}i.icon.clipboard:before{content:"\f328"}i.icon.clipboard.check:before{content:"\f46c"}i.icon.clipboard.list:before{content:"\f46d"}i.icon.clock:before{content:"\f017"}i.icon.clone:before{content:"\f24d"}i.icon.closed.captioning:before{content:"\f20a"}i.icon.cloud:before{content:"\f0c2"}i.icon.cloudscale:before{content:"\f383"}i.icon.cloudsmith:before{content:"\f384"}i.icon.cloudversify:before{content:"\f385"}i.icon.code:before{content:"\f121"}i.icon.code.branch:before{content:"\f126"}i.icon.codepen:before{content:"\f1cb"}i.icon.codiepie:before{content:"\f284"}i.icon.coffee:before{content:"\f0f4"}i.icon.cog:before{content:"\f013"}i.icon.cogs:before{content:"\f085"}i.icon.columns:before{content:"\f0db"}i.icon.comment:before{content:"\f075"}i.icon.comment.alternate:before{content:"\f27a"}i.icon.comments:before{content:"\f086"}i.icon.compass:before{content:"\f14e"}i.icon.compress:before{content:"\f066"}i.icon.connectdevelop:before{content:"\f20e"}i.icon.contao:before{content:"\f26d"}i.icon.copy:before{content:"\f0c5"}i.icon.copyright:before{content:"\f1f9"}i.icon.cpanel:before{content:"\f388"}i.icon.creative.commons:before{content:"\f25e"}i.icon.credit.card:before{content:"\f09d"}i.icon.crop:before{content:"\f125"}i.icon.crosshairs:before{content:"\f05b"}i.icon.css3:before{content:"\f13c"}i.icon.css3.alternate:before{content:"\f38b"}i.icon.cube:before{content:"\f1b2"}i.icon.cubes:before{content:"\f1b3"}i.icon.cut:before{content:"\f0c4"}i.icon.cuttlefish:before{content:"\f38c"}i.icon.d.and.d:before{content:"\f38d"}i.icon.dashcube:before{content:"\f210"}i.icon.database:before{content:"\f1c0"}i.icon.deaf:before{content:"\f2a4"}i.icon.delicious:before{content:"\f1a5"}i.icon.deploydog:before{content:"\f38e"}i.icon.deskpro:before{content:"\f38f"}i.icon.desktop:before{content:"\f108"}i.icon.deviantart:before{content:"\f1bd"}i.icon.digg:before{content:"\f1a6"}i.icon.digital.ocean:before{content:"\f391"}i.icon.discord:before{content:"\f392"}i.icon.discourse:before{content:"\f393"}i.icon.dna:before{content:"\f471"}i.icon.dochub:before{content:"\f394"}i.icon.docker:before{content:"\f395"}i.icon.dollar.sign:before{content:"\f155"}i.icon.dolly:before{content:"\f472"}i.icon.dolly.flatbed:before{content:"\f474"}i.icon.dot.circle:before{content:"\f192"}i.icon.download:before{content:"\f019"}i.icon.draft2digital:before{content:"\f396"}i.icon.dribbble:before{content:"\f17d"}i.icon.dribbble.square:before{content:"\f397"}i.icon.dropbox:before{content:"\f16b"}i.icon.drupal:before{content:"\f1a9"}i.icon.dyalog:before{content:"\f399"}i.icon.earlybirds:before{content:"\f39a"}i.icon.edge:before{content:"\f282"}i.icon.edit:before{content:"\f044"}i.icon.eject:before{content:"\f052"}i.icon.elementor:before{content:"\f430"}i.icon.ellipsis.horizontal:before{content:"\f141"}i.icon.ellipsis.vertical:before{content:"\f142"}i.icon.ember:before{content:"\f423"}i.icon.empire:before{content:"\f1d1"}i.icon.envelope:before{content:"\f0e0"}i.icon.envelope.open:before{content:"\f2b6"}i.icon.envelope.square:before{content:"\f199"}i.icon.envira:before{content:"\f299"}i.icon.eraser:before{content:"\f12d"}i.icon.erlang:before{content:"\f39d"}i.icon.ethereum:before{content:"\f42e"}i.icon.etsy:before{content:"\f2d7"}i.icon.euro.sign:before{content:"\f153"}i.icon.exchange.alternate:before{content:"\f362"}i.icon.exclamation:before{content:"\f12a"}i.icon.exclamation.circle:before{content:"\f06a"}i.icon.exclamation.triangle:before{content:"\f071"}i.icon.expand:before{content:"\f065"}i.icon.expand.arrows.alternate:before{content:"\f31e"}i.icon.expeditedssl:before{content:"\f23e"}i.icon.external.alternate:before{content:"\f35d"}i.icon.external.square.alternate:before{content:"\f360"}i.icon.eye:before{content:"\f06e"}i.icon.eye.dropper:before{content:"\f1fb"}i.icon.eye.slash:before{content:"\f070"}i.icon.facebook:before{content:"\f09a"}i.icon.facebook.f:before{content:"\f39e"}i.icon.facebook.messenger:before{content:"\f39f"}i.icon.facebook.square:before{content:"\f082"}i.icon.fast.backward:before{content:"\f049"}i.icon.fast.forward:before{content:"\f050"}i.icon.fax:before{content:"\f1ac"}i.icon.female:before{content:"\f182"}i.icon.fighter.jet:before{content:"\f0fb"}i.icon.file:before{content:"\f15b"}i.icon.file.alternate:before{content:"\f15c"}i.icon.file.archive:before{content:"\f1c6"}i.icon.file.audio:before{content:"\f1c7"}i.icon.file.code:before{content:"\f1c9"}i.icon.file.excel:before{content:"\f1c3"}i.icon.file.image:before{content:"\f1c5"}i.icon.file.pdf:before{content:"\f1c1"}i.icon.file.powerpoint:before{content:"\f1c4"}i.icon.file.video:before{content:"\f1c8"}i.icon.file.word:before{content:"\f1c2"}i.icon.film:before{content:"\f008"}i.icon.filter:before{content:"\f0b0"}i.icon.fire:before{content:"\f06d"}i.icon.fire.extinguisher:before{content:"\f134"}i.icon.firefox:before{content:"\f269"}i.icon.first.aid:before{content:"\f479"}i.icon.first.order:before{content:"\f2b0"}i.icon.firstdraft:before{content:"\f3a1"}i.icon.flag:before{content:"\f024"}i.icon.flag.checkered:before{content:"\f11e"}i.icon.flask:before{content:"\f0c3"}i.icon.flickr:before{content:"\f16e"}i.icon.flipboard:before{content:"\f44d"}i.icon.fly:before{content:"\f417"}i.icon.folder:before{content:"\f07b"}i.icon.folder.open:before{content:"\f07c"}i.icon.font:before{content:"\f031"}i.icon.font.awesome:before{content:"\f2b4"}i.icon.font.awesome.alternate:before{content:"\f35c"}i.icon.font.awesome.flag:before{content:"\f425"}i.icon.fonticons:before{content:"\f280"}i.icon.fonticons.fi:before{content:"\f3a2"}i.icon.football.ball:before{content:"\f44e"}i.icon.fort.awesome:before{content:"\f286"}i.icon.fort.awesome.alternate:before{content:"\f3a3"}i.icon.forumbee:before{content:"\f211"}i.icon.forward:before{content:"\f04e"}i.icon.foursquare:before{content:"\f180"}i.icon.free.code.camp:before{content:"\f2c5"}i.icon.freebsd:before{content:"\f3a4"}i.icon.frown:before{content:"\f119"}i.icon.futbol:before{content:"\f1e3"}i.icon.gamepad:before{content:"\f11b"}i.icon.gavel:before{content:"\f0e3"}i.icon.gem:before{content:"\f3a5"}i.icon.genderless:before{content:"\f22d"}i.icon.get.pocket:before{content:"\f265"}i.icon.gg:before{content:"\f260"}i.icon.gg.circle:before{content:"\f261"}i.icon.gift:before{content:"\f06b"}i.icon.git:before{content:"\f1d3"}i.icon.git.square:before{content:"\f1d2"}i.icon.github:before{content:"\f09b"}i.icon.github.alternate:before{content:"\f113"}i.icon.github.square:before{content:"\f092"}i.icon.gitkraken:before{content:"\f3a6"}i.icon.gitlab:before{content:"\f296"}i.icon.gitter:before{content:"\f426"}i.icon.glass.martini:before{content:"\f000"}i.icon.glide:before{content:"\f2a5"}i.icon.glide.g:before{content:"\f2a6"}i.icon.globe:before{content:"\f0ac"}i.icon.gofore:before{content:"\f3a7"}i.icon.golf.ball:before{content:"\f450"}i.icon.goodreads:before{content:"\f3a8"}i.icon.goodreads.g:before{content:"\f3a9"}i.icon.google:before{content:"\f1a0"}i.icon.google.drive:before{content:"\f3aa"}i.icon.google.play:before{content:"\f3ab"}i.icon.google.plus:before{content:"\f2b3"}i.icon.google.plus.g:before{content:"\f0d5"}i.icon.google.plus.square:before{content:"\f0d4"}i.icon.google.wallet:before{content:"\f1ee"}i.icon.graduation.cap:before{content:"\f19d"}i.icon.gratipay:before{content:"\f184"}i.icon.grav:before{content:"\f2d6"}i.icon.gripfire:before{content:"\f3ac"}i.icon.grunt:before{content:"\f3ad"}i.icon.gulp:before{content:"\f3ae"}i.icon.h.square:before{content:"\f0fd"}i.icon.hacker.news:before{content:"\f1d4"}i.icon.hacker.news.square:before{content:"\f3af"}i.icon.hand.lizard:before{content:"\f258"}i.icon.hand.paper:before{content:"\f256"}i.icon.hand.peace:before{content:"\f25b"}i.icon.hand.point.down:before{content:"\f0a7"}i.icon.hand.point.left:before{content:"\f0a5"}i.icon.hand.point.right:before{content:"\f0a4"}i.icon.hand.point.up:before{content:"\f0a6"}i.icon.hand.pointer:before{content:"\f25a"}i.icon.hand.rock:before{content:"\f255"}i.icon.hand.scissors:before{content:"\f257"}i.icon.hand.spock:before{content:"\f259"}i.icon.handshake:before{content:"\f2b5"}i.icon.hashtag:before{content:"\f292"}i.icon.hdd:before{content:"\f0a0"}i.icon.heading:before{content:"\f1dc"}i.icon.headphones:before{content:"\f025"}i.icon.heart:before{content:"\f004"}i.icon.heartbeat:before{content:"\f21e"}i.icon.hips:before{content:"\f452"}i.icon.hire.a.helper:before{content:"\f3b0"}i.icon.history:before{content:"\f1da"}i.icon.hockey.puck:before{content:"\f453"}i.icon.home:before{content:"\f015"}i.icon.hooli:before{content:"\f427"}i.icon.hospital:before{content:"\f0f8"}i.icon.hospital.symbol:before{content:"\f47e"}i.icon.hotjar:before{content:"\f3b1"}i.icon.hourglass:before{content:"\f254"}i.icon.hourglass.end:before{content:"\f253"}i.icon.hourglass.half:before{content:"\f252"}i.icon.hourglass.start:before{content:"\f251"}i.icon.houzz:before{content:"\f27c"}i.icon.html5:before{content:"\f13b"}i.icon.hubspot:before{content:"\f3b2"}i.icon.i.cursor:before{content:"\f246"}i.icon.id.badge:before{content:"\f2c1"}i.icon.id.card:before{content:"\f2c2"}i.icon.image:before{content:"\f03e"}i.icon.images:before{content:"\f302"}i.icon.imdb:before{content:"\f2d8"}i.icon.inbox:before{content:"\f01c"}i.icon.indent:before{content:"\f03c"}i.icon.industry:before{content:"\f275"}i.icon.info:before{content:"\f129"}i.icon.info.circle:before{content:"\f05a"}i.icon.instagram:before{content:"\f16d"}i.icon.internet.explorer:before{content:"\f26b"}i.icon.ioxhost:before{content:"\f208"}i.icon.italic:before{content:"\f033"}i.icon.itunes:before{content:"\f3b4"}i.icon.itunes.note:before{content:"\f3b5"}i.icon.jenkins:before{content:"\f3b6"}i.icon.joget:before{content:"\f3b7"}i.icon.joomla:before{content:"\f1aa"}i.icon.js:before{content:"\f3b8"}i.icon.js.square:before{content:"\f3b9"}i.icon.jsfiddle:before{content:"\f1cc"}i.icon.key:before{content:"\f084"}i.icon.keyboard:before{content:"\f11c"}i.icon.keycdn:before{content:"\f3ba"}i.icon.kickstarter:before{content:"\f3bb"}i.icon.kickstarter.k:before{content:"\f3bc"}i.icon.korvue:before{content:"\f42f"}i.icon.language:before{content:"\f1ab"}i.icon.laptop:before{content:"\f109"}i.icon.laravel:before{content:"\f3bd"}i.icon.lastfm:before{content:"\f202"}i.icon.lastfm.square:before{content:"\f203"}i.icon.leaf:before{content:"\f06c"}i.icon.leanpub:before{content:"\f212"}i.icon.lemon:before{content:"\f094"}i.icon.less:before{content:"\f41d"}i.icon.level.down.alternate:before{content:"\f3be"}i.icon.level.up.alternate:before{content:"\f3bf"}i.icon.life.ring:before{content:"\f1cd"}i.icon.lightbulb:before{content:"\f0eb"}i.icon.linechat:before{content:"\f3c0"}i.icon.linkify:before{content:"\f0c1"}i.icon.linkedin:before{content:"\f08c"}i.icon.linkedin.alt:before{content:"\f0e1"}i.icon.linode:before{content:"\f2b8"}i.icon.linux:before{content:"\f17c"}i.icon.lira.sign:before{content:"\f195"}i.icon.list:before{content:"\f03a"}i.icon.list.alternate:before{content:"\f022"}i.icon.list.ol:before{content:"\f0cb"}i.icon.list.ul:before{content:"\f0ca"}i.icon.location.arrow:before{content:"\f124"}i.icon.lock:before{content:"\f023"}i.icon.lock.open:before{content:"\f3c1"}i.icon.long.arrow.alternate.down:before{content:"\f309"}i.icon.long.arrow.alternate.left:before{content:"\f30a"}i.icon.long.arrow.alternate.right:before{content:"\f30b"}i.icon.long.arrow.alternate.up:before{content:"\f30c"}i.icon.low.vision:before{content:"\f2a8"}i.icon.lyft:before{content:"\f3c3"}i.icon.magento:before{content:"\f3c4"}i.icon.magic:before{content:"\f0d0"}i.icon.magnet:before{content:"\f076"}i.icon.male:before{content:"\f183"}i.icon.map:before{content:"\f279"}i.icon.map.marker:before{content:"\f041"}i.icon.map.marker.alternate:before{content:"\f3c5"}i.icon.map.pin:before{content:"\f276"}i.icon.map.signs:before{content:"\f277"}i.icon.mars:before{content:"\f222"}i.icon.mars.double:before{content:"\f227"}i.icon.mars.stroke:before{content:"\f229"}i.icon.mars.stroke.horizontal:before{content:"\f22b"}i.icon.mars.stroke.vertical:before{content:"\f22a"}i.icon.maxcdn:before{content:"\f136"}i.icon.medapps:before{content:"\f3c6"}i.icon.medium:before{content:"\f23a"}i.icon.medium.m:before{content:"\f3c7"}i.icon.medkit:before{content:"\f0fa"}i.icon.medrt:before{content:"\f3c8"}i.icon.meetup:before{content:"\f2e0"}i.icon.meh:before{content:"\f11a"}i.icon.mercury:before{content:"\f223"}i.icon.microchip:before{content:"\f2db"}i.icon.microphone:before{content:"\f130"}i.icon.microphone.slash:before{content:"\f131"}i.icon.microsoft:before{content:"\f3ca"}i.icon.minus:before{content:"\f068"}i.icon.minus.circle:before{content:"\f056"}i.icon.minus.square:before{content:"\f146"}i.icon.mix:before{content:"\f3cb"}i.icon.mixcloud:before{content:"\f289"}i.icon.mizuni:before{content:"\f3cc"}i.icon.mobile:before{content:"\f10b"}i.icon.mobile.alternate:before{content:"\f3cd"}i.icon.modx:before{content:"\f285"}i.icon.monero:before{content:"\f3d0"}i.icon.money.bill.alternate:before{content:"\f3d1"}i.icon.moon:before{content:"\f186"}i.icon.motorcycle:before{content:"\f21c"}i.icon.mouse.pointer:before{content:"\f245"}i.icon.music:before{content:"\f001"}i.icon.napster:before{content:"\f3d2"}i.icon.neuter:before{content:"\f22c"}i.icon.newspaper:before{content:"\f1ea"}i.icon.nintendo.switch:before{content:"\f418"}i.icon.node:before{content:"\f419"}i.icon.node.js:before{content:"\f3d3"}i.icon.npm:before{content:"\f3d4"}i.icon.ns8:before{content:"\f3d5"}i.icon.nutritionix:before{content:"\f3d6"}i.icon.object.group:before{content:"\f247"}i.icon.object.ungroup:before{content:"\f248"}i.icon.odnoklassniki:before{content:"\f263"}i.icon.odnoklassniki.square:before{content:"\f264"}i.icon.opencart:before{content:"\f23d"}i.icon.openid:before{content:"\f19b"}i.icon.opera:before{content:"\f26a"}i.icon.optin.monster:before{content:"\f23c"}i.icon.osi:before{content:"\f41a"}i.icon.outdent:before{content:"\f03b"}i.icon.page4:before{content:"\f3d7"}i.icon.pagelines:before{content:"\f18c"}i.icon.paint.brush:before{content:"\f1fc"}i.icon.palfed:before{content:"\f3d8"}i.icon.pallet:before{content:"\f482"}i.icon.paper.plane:before{content:"\f1d8"}i.icon.paperclip:before{content:"\f0c6"}i.icon.paragraph:before{content:"\f1dd"}i.icon.paste:before{content:"\f0ea"}i.icon.patreon:before{content:"\f3d9"}i.icon.pause:before{content:"\f04c"}i.icon.pause.circle:before{content:"\f28b"}i.icon.paw:before{content:"\f1b0"}i.icon.paypal:before{content:"\f1ed"}i.icon.pen.square:before{content:"\f14b"}i.icon.pencil.alternate:before{content:"\f303"}i.icon.percent:before{content:"\f295"}i.icon.periscope:before{content:"\f3da"}i.icon.phabricator:before{content:"\f3db"}i.icon.phoenix.framework:before{content:"\f3dc"}i.icon.phone:before{content:"\f095"}i.icon.phone.square:before{content:"\f098"}i.icon.phone.volume:before{content:"\f2a0"}i.icon.php:before{content:"\f457"}i.icon.pied.piper:before{content:"\f2ae"}i.icon.pied.piper.alternate:before{content:"\f1a8"}i.icon.pied.piper.pp:before{content:"\f1a7"}i.icon.pills:before{content:"\f484"}i.icon.pinterest:before{content:"\f0d2"}i.icon.pinterest.p:before{content:"\f231"}i.icon.pinterest.square:before{content:"\f0d3"}i.icon.plane:before{content:"\f072"}i.icon.play:before{content:"\f04b"}i.icon.play.circle:before{content:"\f144"}i.icon.playstation:before{content:"\f3df"}i.icon.plug:before{content:"\f1e6"}i.icon.plus:before{content:"\f067"}i.icon.plus.circle:before{content:"\f055"}i.icon.plus.square:before{content:"\f0fe"}i.icon.podcast:before{content:"\f2ce"}i.icon.pound.sign:before{content:"\f154"}i.icon.power.off:before{content:"\f011"}i.icon.print:before{content:"\f02f"}i.icon.product.hunt:before{content:"\f288"}i.icon.pushed:before{content:"\f3e1"}i.icon.puzzle.piece:before{content:"\f12e"}i.icon.python:before{content:"\f3e2"}i.icon.qq:before{content:"\f1d6"}i.icon.qrcode:before{content:"\f029"}i.icon.question:before{content:"\f128"}i.icon.question.circle:before{content:"\f059"}i.icon.quidditch:before{content:"\f458"}i.icon.quinscape:before{content:"\f459"}i.icon.quora:before{content:"\f2c4"}i.icon.quote.left:before{content:"\f10d"}i.icon.quote.right:before{content:"\f10e"}i.icon.random:before{content:"\f074"}i.icon.ravelry:before{content:"\f2d9"}i.icon.react:before{content:"\f41b"}i.icon.rebel:before{content:"\f1d0"}i.icon.recycle:before{content:"\f1b8"}i.icon.redriver:before{content:"\f3e3"}i.icon.reddit:before{content:"\f1a1"}i.icon.reddit.alien:before{content:"\f281"}i.icon.reddit.square:before{content:"\f1a2"}i.icon.redo:before{content:"\f01e"}i.icon.redo.alternate:before{content:"\f2f9"}i.icon.registered:before{content:"\f25d"}i.icon.rendact:before{content:"\f3e4"}i.icon.renren:before{content:"\f18b"}i.icon.reply:before{content:"\f3e5"}i.icon.reply.all:before{content:"\f122"}i.icon.replyd:before{content:"\f3e6"}i.icon.resolving:before{content:"\f3e7"}i.icon.retweet:before{content:"\f079"}i.icon.road:before{content:"\f018"}i.icon.rocket:before{content:"\f135"}i.icon.rocketchat:before{content:"\f3e8"}i.icon.rockrms:before{content:"\f3e9"}i.icon.rss:before{content:"\f09e"}i.icon.rss.square:before{content:"\f143"}i.icon.ruble.sign:before{content:"\f158"}i.icon.rupee.sign:before{content:"\f156"}i.icon.safari:before{content:"\f267"}i.icon.sass:before{content:"\f41e"}i.icon.save:before{content:"\f0c7"}i.icon.schlix:before{content:"\f3ea"}i.icon.scribd:before{content:"\f28a"}i.icon.search:before{content:"\f002"}i.icon.search.minus:before{content:"\f010"}i.icon.search.plus:before{content:"\f00e"}i.icon.searchengin:before{content:"\f3eb"}i.icon.sellcast:before{content:"\f2da"}i.icon.sellsy:before{content:"\f213"}i.icon.server:before{content:"\f233"}i.icon.servicestack:before{content:"\f3ec"}i.icon.share:before{content:"\f064"}i.icon.share.alternate:before{content:"\f1e0"}i.icon.share.alternate.square:before{content:"\f1e1"}i.icon.share.square:before{content:"\f14d"}i.icon.shekel.sign:before{content:"\f20b"}i.icon.shield.alternate:before{content:"\f3ed"}i.icon.ship:before{content:"\f21a"}i.icon.shipping.fast:before{content:"\f48b"}i.icon.shirtsinbulk:before{content:"\f214"}i.icon.shopping.bag:before{content:"\f290"}i.icon.shopping.basket:before{content:"\f291"}i.icon.shopping.cart:before{content:"\f07a"}i.icon.shower:before{content:"\f2cc"}i.icon.sign.language:before{content:"\f2a7"}i.icon.signal:before{content:"\f012"}i.icon.simplybuilt:before{content:"\f215"}i.icon.sistrix:before{content:"\f3ee"}i.icon.sitemap:before{content:"\f0e8"}i.icon.skyatlas:before{content:"\f216"}i.icon.skype:before{content:"\f17e"}i.icon.slack:before{content:"\f198"}i.icon.slack.hash:before{content:"\f3ef"}i.icon.sliders.horizontal:before{content:"\f1de"}i.icon.slideshare:before{content:"\f1e7"}i.icon.smile:before{content:"\f118"}i.icon.snapchat:before{content:"\f2ab"}i.icon.snapchat.ghost:before{content:"\f2ac"}i.icon.snapchat.square:before{content:"\f2ad"}i.icon.snowflake:before{content:"\f2dc"}i.icon.sort:before{content:"\f0dc"}i.icon.sort.alphabet.down:before{content:"\f15d"}i.icon.sort.alphabet.up:before{content:"\f15e"}i.icon.sort.amount.down:before{content:"\f160"}i.icon.sort.amount.up:before{content:"\f161"}i.icon.sort.down:before{content:"\f0dd"}i.icon.sort.numeric.down:before{content:"\f162"}i.icon.sort.numeric.up:before{content:"\f163"}i.icon.sort.up:before{content:"\f0de"}i.icon.soundcloud:before{content:"\f1be"}i.icon.space.shuttle:before{content:"\f197"}i.icon.speakap:before{content:"\f3f3"}i.icon.spinner:before{content:"\f110"}i.icon.spotify:before{content:"\f1bc"}i.icon.square:before{content:"\f0c8"}i.icon.square.full:before{content:"\f45c"}i.icon.stack.exchange:before{content:"\f18d"}i.icon.stack.overflow:before{content:"\f16c"}i.icon.star:before{content:"\f005"}i.icon.star.half:before{content:"\f089"}i.icon.staylinked:before{content:"\f3f5"}i.icon.steam:before{content:"\f1b6"}i.icon.steam.square:before{content:"\f1b7"}i.icon.steam.symbol:before{content:"\f3f6"}i.icon.step.backward:before{content:"\f048"}i.icon.step.forward:before{content:"\f051"}i.icon.stethoscope:before{content:"\f0f1"}i.icon.sticker.mule:before{content:"\f3f7"}i.icon.sticky.note:before{content:"\f249"}i.icon.stop:before{content:"\f04d"}i.icon.stop.circle:before{content:"\f28d"}i.icon.stopwatch:before{content:"\f2f2"}i.icon.strava:before{content:"\f428"}i.icon.street.view:before{content:"\f21d"}i.icon.strikethrough:before{content:"\f0cc"}i.icon.stripe:before{content:"\f429"}i.icon.stripe.s:before{content:"\f42a"}i.icon.studiovinari:before{content:"\f3f8"}i.icon.stumbleupon:before{content:"\f1a4"}i.icon.stumbleupon.circle:before{content:"\f1a3"}i.icon.subscript:before{content:"\f12c"}i.icon.subway:before{content:"\f239"}i.icon.suitcase:before{content:"\f0f2"}i.icon.sun:before{content:"\f185"}i.icon.superpowers:before{content:"\f2dd"}i.icon.superscript:before{content:"\f12b"}i.icon.supple:before{content:"\f3f9"}i.icon.sync:before{content:"\f021"}i.icon.sync.alternate:before{content:"\f2f1"}i.icon.syringe:before{content:"\f48e"}i.icon.table:before{content:"\f0ce"}i.icon.table.tennis:before{content:"\f45d"}i.icon.tablet:before{content:"\f10a"}i.icon.tablet.alternate:before{content:"\f3fa"}i.icon.tachometer.alternate:before{content:"\f3fd"}i.icon.tag:before{content:"\f02b"}i.icon.tags:before{content:"\f02c"}i.icon.tasks:before{content:"\f0ae"}i.icon.taxi:before{content:"\f1ba"}i.icon.telegram:before{content:"\f2c6"}i.icon.telegram.plane:before{content:"\f3fe"}i.icon.tencent.weibo:before{content:"\f1d5"}i.icon.terminal:before{content:"\f120"}i.icon.text.height:before{content:"\f034"}i.icon.text.width:before{content:"\f035"}i.icon.th:before{content:"\f00a"}i.icon.th.large:before{content:"\f009"}i.icon.th.list:before{content:"\f00b"}i.icon.themeisle:before{content:"\f2b2"}i.icon.thermometer:before{content:"\f491"}i.icon.thermometer.empty:before{content:"\f2cb"}i.icon.thermometer.full:before{content:"\f2c7"}i.icon.thermometer.half:before{content:"\f2c9"}i.icon.thermometer.quarter:before{content:"\f2ca"}i.icon.thermometer.three.quarters:before{content:"\f2c8"}i.icon.thumbs.down:before{content:"\f165"}i.icon.thumbs.up:before{content:"\f164"}i.icon.thumbtack:before{content:"\f08d"}i.icon.ticket.alternate:before{content:"\f3ff"}i.icon.times:before{content:"\f00d"}i.icon.times.circle:before{content:"\f057"}i.icon.tint:before{content:"\f043"}i.icon.toggle.off:before{content:"\f204"}i.icon.toggle.on:before{content:"\f205"}i.icon.trademark:before{content:"\f25c"}i.icon.train:before{content:"\f238"}i.icon.transgender:before{content:"\f224"}i.icon.transgender.alternate:before{content:"\f225"}i.icon.trash:before{content:"\f1f8"}i.icon.trash.alternate:before{content:"\f2ed"}i.icon.tree:before{content:"\f1bb"}i.icon.trello:before{content:"\f181"}i.icon.tripadvisor:before{content:"\f262"}i.icon.trophy:before{content:"\f091"}i.icon.truck:before{content:"\f0d1"}i.icon.tty:before{content:"\f1e4"}i.icon.tumblr:before{content:"\f173"}i.icon.tumblr.square:before{content:"\f174"}i.icon.tv:before{content:"\f26c"}i.icon.twitch:before{content:"\f1e8"}i.icon.twitter:before{content:"\f099"}i.icon.twitter.square:before{content:"\f081"}i.icon.typo3:before{content:"\f42b"}i.icon.uber:before{content:"\f402"}i.icon.uikit:before{content:"\f403"}i.icon.umbrella:before{content:"\f0e9"}i.icon.underline:before{content:"\f0cd"}i.icon.undo:before{content:"\f0e2"}i.icon.undo.alternate:before{content:"\f2ea"}i.icon.uniregistry:before{content:"\f404"}i.icon.universal.access:before{content:"\f29a"}i.icon.university:before{content:"\f19c"}i.icon.unlink:before{content:"\f127"}i.icon.unlock:before{content:"\f09c"}i.icon.unlock.alternate:before{content:"\f13e"}i.icon.untappd:before{content:"\f405"}i.icon.upload:before{content:"\f093"}i.icon.usb:before{content:"\f287"}i.icon.user:before{content:"\f007"}i.icon.user.circle:before{content:"\f2bd"}i.icon.user.md:before{content:"\f0f0"}i.icon.user.plus:before{content:"\f234"}i.icon.user.secret:before{content:"\f21b"}i.icon.user.times:before{content:"\f235"}i.icon.users:before{content:"\f0c0"}i.icon.ussunnah:before{content:"\f407"}i.icon.utensil.spoon:before{content:"\f2e5"}i.icon.utensils:before{content:"\f2e7"}i.icon.vaadin:before{content:"\f408"}i.icon.venus:before{content:"\f221"}i.icon.venus.double:before{content:"\f226"}i.icon.venus.mars:before{content:"\f228"}i.icon.viacoin:before{content:"\f237"}i.icon.viadeo:before{content:"\f2a9"}i.icon.viadeo.square:before{content:"\f2aa"}i.icon.viber:before{content:"\f409"}i.icon.video:before{content:"\f03d"}i.icon.vimeo:before{content:"\f40a"}i.icon.vimeo.square:before{content:"\f194"}i.icon.vimeo.v:before{content:"\f27d"}i.icon.vine:before{content:"\f1ca"}i.icon.vk:before{content:"\f189"}i.icon.vnv:before{content:"\f40b"}i.icon.volleyball.ball:before{content:"\f45f"}i.icon.volume.down:before{content:"\f027"}i.icon.volume.off:before{content:"\f026"}i.icon.volume.up:before{content:"\f028"}i.icon.vuejs:before{content:"\f41f"}i.icon.warehouse:before{content:"\f494"}i.icon.weibo:before{content:"\f18a"}i.icon.weight:before{content:"\f496"}i.icon.weixin:before{content:"\f1d7"}i.icon.whatsapp:before{content:"\f232"}i.icon.whatsapp.square:before{content:"\f40c"}i.icon.wheelchair:before{content:"\f193"}i.icon.whmcs:before{content:"\f40d"}i.icon.wifi:before{content:"\f1eb"}i.icon.wikipedia.w:before{content:"\f266"}i.icon.window.close:before{content:"\f410"}i.icon.window.maximize:before{content:"\f2d0"}i.icon.window.minimize:before{content:"\f2d1"}i.icon.window.restore:before{content:"\f2d2"}i.icon.windows:before{content:"\f17a"}i.icon.won.sign:before{content:"\f159"}i.icon.wordpress:before{content:"\f19a"}i.icon.wordpress.simple:before{content:"\f411"}i.icon.wpbeginner:before{content:"\f297"}i.icon.wpexplorer:before{content:"\f2de"}i.icon.wpforms:before{content:"\f298"}i.icon.wrench:before{content:"\f0ad"}i.icon.xbox:before{content:"\f412"}i.icon.xing:before{content:"\f168"}i.icon.xing.square:before{content:"\f169"}i.icon.y.combinator:before{content:"\f23b"}i.icon.yahoo:before{content:"\f19e"}i.icon.yandex:before{content:"\f413"}i.icon.yandex.international:before{content:"\f414"}i.icon.yelp:before{content:"\f1e9"}i.icon.yen.sign:before{content:"\f157"}i.icon.yoast:before{content:"\f2b1"}i.icon.youtube:before{content:"\f167"}i.icon.youtube.square:before{content:"\f431"}i.icon.chess.rock:before{content:"\f447"}i.icon.ordered.list:before{content:"\f0cb"}i.icon.unordered.list:before{content:"\f0ca"}i.icon.user.doctor:before{content:"\f0f0"}i.icon.shield:before{content:"\f3ed"}i.icon.puzzle:before{content:"\f12e"}i.icon.credit.card.amazon.pay:before{content:"\f42d"}i.icon.credit.card.american.express:before{content:"\f1f3"}i.icon.credit.card.diners.club:before{content:"\f24c"}i.icon.credit.card.discover:before{content:"\f1f2"}i.icon.credit.card.jcb:before{content:"\f24b"}i.icon.credit.card.mastercard:before{content:"\f1f1"}i.icon.credit.card.paypal:before{content:"\f1f4"}i.icon.credit.card.stripe:before{content:"\f1f5"}i.icon.credit.card.visa:before{content:"\f1f0"}i.icon.add.circle:before{content:"\f055"}i.icon.add.square:before{content:"\f0fe"}i.icon.add.to.calendar:before{content:"\f271"}i.icon.add.to.cart:before{content:"\f217"}i.icon.add.user:before{content:"\f234"}i.icon.add:before{content:"\f067"}i.icon.alarm.mute:before{content:"\f1f6"}i.icon.alarm:before{content:"\f0f3"}i.icon.ald:before{content:"\f2a2"}i.icon.als:before{content:"\f2a2"}i.icon.american.express.card:before{content:"\f1f3"}i.icon.american.express:before{content:"\f1f3"}i.icon.amex:before{content:"\f1f3"}i.icon.announcement:before{content:"\f0a1"}i.icon.area.chart:before{content:"\f1fe"}i.icon.area.graph:before{content:"\f1fe"}i.icon.arrow.down.cart:before{content:"\f218"}i.icon.asexual:before{content:"\f22d"}i.icon.asl.interpreting:before{content:"\f2a3"}i.icon.asl:before{content:"\f2a3"}i.icon.assistive.listening.devices:before{content:"\f2a2"}i.icon.attach:before{content:"\f0c6"}i.icon.attention:before{content:"\f06a"}i.icon.balance:before{content:"\f24e"}i.icon.bar:before{content:"\f0fc"}i.icon.bathtub:before{content:"\f2cd"}i.icon.battery.four:before{content:"\f240"}i.icon.battery.high:before{content:"\f241"}i.icon.battery.low:before{content:"\f243"}i.icon.battery.medium:before{content:"\f242"}i.icon.battery.one:before{content:"\f243"}i.icon.battery.three:before{content:"\f241"}i.icon.battery.two:before{content:"\f242"}i.icon.battery.zero:before{content:"\f244"}i.icon.birthday:before{content:"\f1fd"}i.icon.block.layout:before{content:"\f009"}i.icon.bluetooth.alternative:before{content:"\f294"}i.icon.broken.chain:before{content:"\f127"}i.icon.browser:before{content:"\f022"}i.icon.call.square:before{content:"\f098"}i.icon.call:before{content:"\f095"}i.icon.cancel:before{content:"\f00d"}i.icon.cart:before{content:"\f07a"}i.icon.cc:before{content:"\f20a"}i.icon.chain:before{content:"\f0c1"}i.icon.chat:before{content:"\f075"}i.icon.checked.calendar:before{content:"\f274"}i.icon.checkmark:before{content:"\f00c"}i.icon.circle.notched:before{content:"\f1ce"}i.icon.close:before{content:"\f00d"}i.icon.cny:before{content:"\f157"}i.icon.cocktail:before{content:"\f000"}i.icon.commenting:before{content:"\f27a"}i.icon.computer:before{content:"\f108"}i.icon.configure:before{content:"\f0ad"}i.icon.content:before{content:"\f0c9"}i.icon.deafness:before{content:"\f2a4"}i.icon.delete.calendar:before{content:"\f273"}i.icon.delete:before{content:"\f00d"}i.icon.detective:before{content:"\f21b"}i.icon.diners.club.card:before{content:"\f24c"}i.icon.diners.club:before{content:"\f24c"}i.icon.discover.card:before{content:"\f1f2"}i.icon.discover:before{content:"\f1f2"}i.icon.discussions:before{content:"\f086"}i.icon.doctor:before{content:"\f0f0"}i.icon.dollar:before{content:"\f155"}i.icon.dont:before{content:"\f05e"}i.icon.dribble:before{content:"\f17d"}i.icon.drivers.license:before{content:"\f2c2"}i.icon.dropdown:before{content:"\f0d7"}i.icon.eercast:before{content:"\f2da"}i.icon.emergency:before{content:"\f0f9"}i.icon.envira.gallery:before{content:"\f299"}i.icon.erase:before{content:"\f12d"}i.icon.eur:before{content:"\f153"}i.icon.euro:before{content:"\f153"}i.icon.eyedropper:before{content:"\f1fb"}i.icon.fa:before{content:"\f2b4"}i.icon.factory:before{content:"\f275"}i.icon.favorite:before{content:"\f005"}i.icon.feed:before{content:"\f09e"}i.icon.female.homosexual:before{content:"\f226"}i.icon.file.text:before{content:"\f15c"}i.icon.find:before{content:"\f1e5"}i.icon.first.aid:before{content:"\f0fa"}i.icon.five.hundred.pixels:before{content:"\f26e"}i.icon.fork:before{content:"\f126"}i.icon.game:before{content:"\f11b"}i.icon.gay:before{content:"\f227"}i.icon.gbp:before{content:"\f154"}i.icon.gittip:before{content:"\f184"}i.icon.google.plus.circle:before{content:"\f2b3"}i.icon.google.plus.official:before{content:"\f2b3"}i.icon.grab:before{content:"\f255"}i.icon.graduation:before{content:"\f19d"}i.icon.grid.layout:before{content:"\f00a"}i.icon.group:before{content:"\f0c0"}i.icon.h:before{content:"\f0fd"}i.icon.hand.victory:before{content:"\f25b"}i.icon.handicap:before{content:"\f193"}i.icon.hard.of.hearing:before{content:"\f2a4"}i.icon.header:before{content:"\f1dc"}i.icon.help.circle:before{content:"\f059"}i.icon.help:before{content:"\f128"}i.icon.heterosexual:before{content:"\f228"}i.icon.hide:before{content:"\f070"}i.icon.hotel:before{content:"\f236"}i.icon.hourglass.four:before{content:"\f254"}i.icon.hourglass.full:before{content:"\f254"}i.icon.hourglass.one:before{content:"\f251"}i.icon.hourglass.three:before{content:"\f253"}i.icon.hourglass.two:before{content:"\f252"}i.icon.idea:before{content:"\f0eb"}i.icon.ils:before{content:"\f20b"}i.icon.in-cart:before{content:"\f218"}i.icon.inr:before{content:"\f156"}i.icon.intergender:before{content:"\f224"}i.icon.intersex:before{content:"\f224"}i.icon.japan.credit.bureau.card:before{content:"\f24b"}i.icon.japan.credit.bureau:before{content:"\f24b"}i.icon.jcb:before{content:"\f24b"}i.icon.jpy:before{content:"\f157"}i.icon.krw:before{content:"\f159"}i.icon.lab:before{content:"\f0c3"}i.icon.law:before{content:"\f24e"}i.icon.legal:before{content:"\f0e3"}i.icon.lesbian:before{content:"\f226"}i.icon.lightning:before{content:"\f0e7"}i.icon.like:before{content:"\f004"}i.icon.line.graph:before{content:"\f201"}i.icon.linkedin.square:before{content:"\f08c"}i.icon.linkify:before{content:"\f0c1"}i.icon.lira:before{content:"\f195"}i.icon.list.layout:before{content:"\f00b"}i.icon.magnify:before{content:"\f00e"}i.icon.mail.forward:before{content:"\f064"}i.icon.mail.square:before{content:"\f199"}i.icon.mail:before{content:"\f0e0"}i.icon.male.homosexual:before{content:"\f227"}i.icon.man:before{content:"\f222"}i.icon.marker:before{content:"\f041"}i.icon.mars.alternate:before{content:"\f229"}i.icon.mars.horizontal:before{content:"\f22b"}i.icon.mars.vertical:before{content:"\f22a"}i.icon.mastercard.card:before{content:"\f1f1"}i.icon.mastercard:before{content:"\f1f1"}i.icon.microsoft.edge:before{content:"\f282"}i.icon.military:before{content:"\f0fb"}i.icon.ms.edge:before{content:"\f282"}i.icon.mute:before{content:"\f131"}i.icon.new.pied.piper:before{content:"\f2ae"}i.icon.non.binary.transgender:before{content:"\f223"}i.icon.numbered.list:before{content:"\f0cb"}i.icon.optinmonster:before{content:"\f23c"}i.icon.options:before{content:"\f1de"}i.icon.other.gender.horizontal:before{content:"\f22b"}i.icon.other.gender.vertical:before{content:"\f22a"}i.icon.other.gender:before{content:"\f229"}i.icon.payment:before{content:"\f09d"}i.icon.paypal.card:before{content:"\f1f4"}i.icon.pencil.square:before{content:"\f14b"}i.icon.photo:before{content:"\f030"}i.icon.picture:before{content:"\f03e"}i.icon.pie.chart:before{content:"\f200"}i.icon.pie.graph:before{content:"\f200"}i.icon.pied.piper.hat:before{content:"\f2ae"}i.icon.pin:before{content:"\f08d"}i.icon.plus.cart:before{content:"\f217"}i.icon.pocket:before{content:"\f265"}i.icon.point:before{content:"\f041"}i.icon.pointing.down:before{content:"\f0a7"}i.icon.pointing.left:before{content:"\f0a5"}i.icon.pointing.right:before{content:"\f0a4"}i.icon.pointing.up:before{content:"\f0a6"}i.icon.pound:before{content:"\f154"}i.icon.power.cord:before{content:"\f1e6"}i.icon.power:before{content:"\f011"}i.icon.privacy:before{content:"\f084"}i.icon.r.circle:before{content:"\f25d"}i.icon.rain:before{content:"\f0e9"}i.icon.record:before{content:"\f03d"}i.icon.refresh:before{content:"\f021"}i.icon.remove.circle:before{content:"\f057"}i.icon.remove.from.calendar:before{content:"\f272"}i.icon.remove.user:before{content:"\f235"}i.icon.remove:before{content:"\f00d"}i.icon.repeat:before{content:"\f01e"}i.icon.rmb:before{content:"\f157"}i.icon.rouble:before{content:"\f158"}i.icon.rub:before{content:"\f158"}i.icon.ruble:before{content:"\f158"}i.icon.rupee:before{content:"\f156"}i.icon.s15:before{content:"\f2cd"}i.icon.selected.radio:before{content:"\f192"}i.icon.send:before{content:"\f1d8"}i.icon.setting:before{content:"\f013"}i.icon.settings:before{content:"\f085"}i.icon.shekel:before{content:"\f20b"}i.icon.sheqel:before{content:"\f20b"}i.icon.shipping:before{content:"\f0d1"}i.icon.shop:before{content:"\f07a"}i.icon.shuffle:before{content:"\f074"}i.icon.shutdown:before{content:"\f011"}i.icon.sidebar:before{content:"\f0c9"}i.icon.signing:before{content:"\f2a7"}i.icon.signup:before{content:"\f044"}i.icon.sliders:before{content:"\f1de"}i.icon.soccer:before{content:"\f1e3"}i.icon.sort.alphabet.ascending:before{content:"\f15d"}i.icon.sort.alphabet.descending:before{content:"\f15e"}i.icon.sort.ascending:before{content:"\f0de"}i.icon.sort.content.ascending:before{content:"\f160"}i.icon.sort.content.descending:before{content:"\f161"}i.icon.sort.descending:before{content:"\f0dd"}i.icon.sort.numeric.ascending:before{content:"\f162"}i.icon.sort.numeric.descending:before{content:"\f163"}i.icon.sound:before{content:"\f025"}i.icon.spy:before{content:"\f21b"}i.icon.stripe.card:before{content:"\f1f5"}i.icon.student:before{content:"\f19d"}i.icon.talk:before{content:"\f27a"}i.icon.target:before{content:"\f140"}i.icon.teletype:before{content:"\f1e4"}i.icon.television:before{content:"\f26c"}i.icon.text.cursor:before{content:"\f246"}i.icon.text.telephone:before{content:"\f1e4"}i.icon.theme.isle:before{content:"\f2b2"}i.icon.theme:before{content:"\f043"}i.icon.thermometer:before{content:"\f2c7"}i.icon.thumb.tack:before{content:"\f08d"}i.icon.time:before{content:"\f017"}i.icon.tm:before{content:"\f25c"}i.icon.toggle.down:before{content:"\f150"}i.icon.toggle.left:before{content:"\f191"}i.icon.toggle.right:before{content:"\f152"}i.icon.toggle.up:before{content:"\f151"}i.icon.translate:before{content:"\f1ab"}i.icon.travel:before{content:"\f0b1"}i.icon.treatment:before{content:"\f0f1"}i.icon.triangle.down:before{content:"\f0d7"}i.icon.triangle.left:before{content:"\f0d9"}i.icon.triangle.right:before{content:"\f0da"}i.icon.triangle.up:before{content:"\f0d8"}i.icon.try:before{content:"\f195"}i.icon.unhide:before{content:"\f06e"}i.icon.unlinkify:before{content:"\f127"}i.icon.unmute:before{content:"\f130"}i.icon.usd:before{content:"\f155"}i.icon.user.cancel:before{content:"\f235"}i.icon.user.close:before{content:"\f235"}i.icon.user.delete:before{content:"\f235"}i.icon.user.x:before{content:"\f235"}i.icon.vcard:before{content:"\f2bb"}i.icon.video.camera:before{content:"\f03d"}i.icon.video.play:before{content:"\f144"}i.icon.visa.card:before{content:"\f1f0"}i.icon.visa:before{content:"\f1f0"}i.icon.volume.control.phone:before{content:"\f2a0"}i.icon.wait:before{content:"\f017"}i.icon.warning.circle:before{content:"\f06a"}i.icon.warning.sign:before{content:"\f071"}i.icon.warning:before{content:"\f12a"}i.icon.wechat:before{content:"\f1d7"}i.icon.wi-fi:before{content:"\f1eb"}i.icon.wikipedia:before{content:"\f266"}i.icon.winner:before{content:"\f091"}i.icon.wizard:before{content:"\f0d0"}i.icon.woman:before{content:"\f221"}i.icon.won:before{content:"\f159"}i.icon.wordpress.beginner:before{content:"\f297"}i.icon.wordpress.forms:before{content:"\f298"}i.icon.world:before{content:"\f0ac"}i.icon.write.square:before{content:"\f14b"}i.icon.x:before{content:"\f00d"}i.icon.yc:before{content:"\f23b"}i.icon.ycombinator:before{content:"\f23b"}i.icon.yen:before{content:"\f157"}i.icon.zip:before{content:"\f187"}i.icon.zoom-in:before{content:"\f00e"}i.icon.zoom-out:before{content:"\f010"}i.icon.zoom:before{content:"\f00e"}i.icon.bitbucket.square:before{content:"\f171"}i.icon.checkmark.box:before{content:"\f14a"}i.icon.circle.thin:before{content:"\f111"}i.icon.cloud.download:before{content:"\f381"}i.icon.cloud.upload:before{content:"\f382"}i.icon.compose:before{content:"\f303"}i.icon.conversation:before{content:"\f086"}i.icon.credit.card.alternative:before{content:"\f09d"}i.icon.currency:before{content:"\f3d1"}i.icon.dashboard:before{content:"\f3fd"}i.icon.diamond:before{content:"\f3a5"}i.icon.disk:before{content:"\f0a0"}i.icon.exchange:before{content:"\f362"}i.icon.external.share:before{content:"\f14d"}i.icon.external.square:before{content:"\f360"}i.icon.external:before{content:"\f35d"}i.icon.facebook.official:before{content:"\f082"}i.icon.food:before{content:"\f2e7"}i.icon.hourglass.zero:before{content:"\f253"}i.icon.level.down:before{content:"\f3be"}i.icon.level.up:before{content:"\f3bf"}i.icon.logout:before{content:"\f2f5"}i.icon.meanpath:before{content:"\f0c8"}i.icon.money:before{content:"\f3d1"}i.icon.move:before{content:"\f0b2"}i.icon.pencil:before{content:"\f303"}i.icon.protect:before{content:"\f023"}i.icon.radio:before{content:"\f192"}i.icon.remove.bookmark:before{content:"\f02e"}i.icon.resize.horizontal:before{content:"\f337"}i.icon.resize.vertical:before{content:"\f338"}i.icon.sign-in:before{content:"\f2f6"}i.icon.sign-out:before{content:"\f2f5"}i.icon.spoon:before{content:"\f2e5"}i.icon.star.half.empty:before{content:"\f089"}i.icon.star.half.full:before{content:"\f089"}i.icon.ticket:before{content:"\f3ff"}i.icon.times.rectangle:before{content:"\f410"}i.icon.write:before{content:"\f303"}i.icon.youtube.play:before{content:"\f167"}@font-face{font-family:outline-icons;src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.eot);src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.eot?#iefix) format('embedded-opentype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.woff2) format('woff2'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.woff) format('woff'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.ttf) format('truetype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/outline-icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon.outline{font-family:outline-icons}i.icon.address.book.outline:before{content:"\f2b9"}i.icon.address.card.outline:before{content:"\f2bb"}i.icon.arrow.alternate.circle.down.outline:before{content:"\f358"}i.icon.arrow.alternate.circle.left.outline:before{content:"\f359"}i.icon.arrow.alternate.circle.right.outline:before{content:"\f35a"}i.icon.arrow.alternate.circle.up.outline:before{content:"\f35b"}i.icon.bell.outline:before{content:"\f0f3"}i.icon.bell.slash.outline:before{content:"\f1f6"}i.icon.bookmark.outline:before{content:"\f02e"}i.icon.building.outline:before{content:"\f1ad"}i.icon.calendar.outline:before{content:"\f133"}i.icon.calendar.alternate.outline:before{content:"\f073"}i.icon.calendar.check.outline:before{content:"\f274"}i.icon.calendar.minus.outline:before{content:"\f272"}i.icon.calendar.plus.outline:before{content:"\f271"}i.icon.calendar.times.outline:before{content:"\f273"}i.icon.caret.square.down.outline:before{content:"\f150"}i.icon.caret.square.left.outline:before{content:"\f191"}i.icon.caret.square.right.outline:before{content:"\f152"}i.icon.caret.square.up.outline:before{content:"\f151"}i.icon.chart.bar.outline:before{content:"\f080"}i.icon.check.circle.outline:before{content:"\f058"}i.icon.check.square.outline:before{content:"\f14a"}i.icon.circle.outline:before{content:"\f111"}i.icon.clipboard.outline:before{content:"\f328"}i.icon.clock.outline:before{content:"\f017"}i.icon.clone.outline:before{content:"\f24d"}i.icon.closed.captioning.outline:before{content:"\f20a"}i.icon.comment.outline:before{content:"\f075"}i.icon.comment.alternate.outline:before{content:"\f27a"}i.icon.comments.outline:before{content:"\f086"}i.icon.compass.outline:before{content:"\f14e"}i.icon.copy.outline:before{content:"\f0c5"}i.icon.copyright.outline:before{content:"\f1f9"}i.icon.credit.card.outline:before{content:"\f09d"}i.icon.dot.circle.outline:before{content:"\f192"}i.icon.edit.outline:before{content:"\f044"}i.icon.envelope.outline:before{content:"\f0e0"}i.icon.envelope.open.outline:before{content:"\f2b6"}i.icon.eye.slash.outline:before{content:"\f070"}i.icon.file.outline:before{content:"\f15b"}i.icon.file.alternate.outline:before{content:"\f15c"}i.icon.file.archive.outline:before{content:"\f1c6"}i.icon.file.audio.outline:before{content:"\f1c7"}i.icon.file.code.outline:before{content:"\f1c9"}i.icon.file.excel.outline:before{content:"\f1c3"}i.icon.file.image.outline:before{content:"\f1c5"}i.icon.file.pdf.outline:before{content:"\f1c1"}i.icon.file.powerpoint.outline:before{content:"\f1c4"}i.icon.file.video.outline:before{content:"\f1c8"}i.icon.file.word.outline:before{content:"\f1c2"}i.icon.flag.outline:before{content:"\f024"}i.icon.folder.outline:before{content:"\f07b"}i.icon.folder.open.outline:before{content:"\f07c"}i.icon.frown.outline:before{content:"\f119"}i.icon.futbol.outline:before{content:"\f1e3"}i.icon.gem.outline:before{content:"\f3a5"}i.icon.hand.lizard.outline:before{content:"\f258"}i.icon.hand.paper.outline:before{content:"\f256"}i.icon.hand.peace.outline:before{content:"\f25b"}i.icon.hand.point.down.outline:before{content:"\f0a7"}i.icon.hand.point.left.outline:before{content:"\f0a5"}i.icon.hand.point.right.outline:before{content:"\f0a4"}i.icon.hand.point.up.outline:before{content:"\f0a6"}i.icon.hand.pointer.outline:before{content:"\f25a"}i.icon.hand.rock.outline:before{content:"\f255"}i.icon.hand.scissors.outline:before{content:"\f257"}i.icon.hand.spock.outline:before{content:"\f259"}i.icon.handshake.outline:before{content:"\f2b5"}i.icon.hdd.outline:before{content:"\f0a0"}i.icon.heart.outline:before{content:"\f004"}i.icon.hospital.outline:before{content:"\f0f8"}i.icon.hourglass.outline:before{content:"\f254"}i.icon.id.badge.outline:before{content:"\f2c1"}i.icon.id.card.outline:before{content:"\f2c2"}i.icon.image.outline:before{content:"\f03e"}i.icon.images.outline:before{content:"\f302"}i.icon.keyboard.outline:before{content:"\f11c"}i.icon.lemon.outline:before{content:"\f094"}i.icon.life.ring.outline:before{content:"\f1cd"}i.icon.lightbulb.outline:before{content:"\f0eb"}i.icon.list.alternate.outline:before{content:"\f022"}i.icon.map.outline:before{content:"\f279"}i.icon.meh.outline:before{content:"\f11a"}i.icon.minus.square.outline:before{content:"\f146"}i.icon.money.bill.alternate.outline:before{content:"\f3d1"}i.icon.moon.outline:before{content:"\f186"}i.icon.newspaper.outline:before{content:"\f1ea"}i.icon.object.group.outline:before{content:"\f247"}i.icon.object.ungroup.outline:before{content:"\f248"}i.icon.paper.plane.outline:before{content:"\f1d8"}i.icon.pause.circle.outline:before{content:"\f28b"}i.icon.play.circle.outline:before{content:"\f144"}i.icon.plus.square.outline:before{content:"\f0fe"}i.icon.question.circle.outline:before{content:"\f059"}i.icon.registered.outline:before{content:"\f25d"}i.icon.save.outline:before{content:"\f0c7"}i.icon.share.square.outline:before{content:"\f14d"}i.icon.smile.outline:before{content:"\f118"}i.icon.snowflake.outline:before{content:"\f2dc"}i.icon.square.outline:before{content:"\f0c8"}i.icon.star.outline:before{content:"\f005"}i.icon.star.half.outline:before{content:"\f089"}i.icon.sticky.note.outline:before{content:"\f249"}i.icon.stop.circle.outline:before{content:"\f28d"}i.icon.sun.outline:before{content:"\f185"}i.icon.thumbs.down.outline:before{content:"\f165"}i.icon.thumbs.up.outline:before{content:"\f164"}i.icon.times.circle.outline:before{content:"\f057"}i.icon.trash.alternate.outline:before{content:"\f2ed"}i.icon.user.outline:before{content:"\f007"}i.icon.user.circle.outline:before{content:"\f2bd"}i.icon.window.close.outline:before{content:"\f410"}i.icon.window.maximize.outline:before{content:"\f2d0"}i.icon.window.minimize.outline:before{content:"\f2d1"}i.icon.window.restore.outline:before{content:"\f2d2"}i.icon.disk.outline:before{content:"\f0a0"}i.icon.heart.empty,i.icon.star.empty{font-family:outline-icons}i.icon.heart.empty:before{content:"\f004"}i.icon.star.empty:before{content:"\f089"}@font-face{font-family:brand-icons;src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.eot);src:url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.eot?#iefix) format('embedded-opentype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.woff2) format('woff2'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.woff) format('woff'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.ttf) format('truetype'),url(inkdrop://default-dark-ui/styles/themes/default/assets/fonts/brand-icons.svg#icons) format('svg');font-style:normal;font-weight:400;font-variant:normal;text-decoration:inherit;text-transform:none}i.icon.\35 00px,i.icon.accessible.icon,i.icon.accusoft,i.icon.adn,i.icon.adversal,i.icon.affiliatetheme,i.icon.algolia,i.icon.amazon,i.icon.amazon.pay,i.icon.amilia,i.icon.android,i.icon.angellist,i.icon.angrycreative,i.icon.angular,i.icon.app.store,i.icon.app.store.ios,i.icon.apper,i.icon.apple,i.icon.apple.pay,i.icon.asymmetrik,i.icon.audible,i.icon.autoprefixer,i.icon.avianex,i.icon.aviato,i.icon.aws,i.icon.bandcamp,i.icon.behance,i.icon.behance.square,i.icon.bimobject,i.icon.bitbucket,i.icon.bitcoin,i.icon.bity,i.icon.black.tie,i.icon.blackberry,i.icon.blogger,i.icon.blogger.b,i.icon.bluetooth,i.icon.bluetooth.b,i.icon.btc,i.icon.buromobelexperte,i.icon.buysellads,i.icon.cc.amazon.pay,i.icon.cc.amex,i.icon.cc.apple.pay,i.icon.cc.diners.club,i.icon.cc.discover,i.icon.cc.jcb,i.icon.cc.mastercard,i.icon.cc.paypal,i.icon.cc.stripe,i.icon.cc.visa,i.icon.centercode,i.icon.chrome,i.icon.cloudscale,i.icon.cloudsmith,i.icon.cloudversify,i.icon.codepen,i.icon.codiepie,i.icon.connectdevelop,i.icon.contao,i.icon.cpanel,i.icon.creative.commons,i.icon.css3,i.icon.css3.alternate,i.icon.cuttlefish,i.icon.d.and.d,i.icon.dashcube,i.icon.delicious,i.icon.deploydog,i.icon.deskpro,i.icon.deviantart,i.icon.digg,i.icon.digital.ocean,i.icon.discord,i.icon.discourse,i.icon.dochub,i.icon.docker,i.icon.draft2digital,i.icon.dribbble,i.icon.dribbble.square,i.icon.dropbox,i.icon.drupal,i.icon.dyalog,i.icon.earlybirds,i.icon.edge,i.icon.elementor,i.icon.ember,i.icon.empire,i.icon.envira,i.icon.erlang,i.icon.ethereum,i.icon.etsy,i.icon.expeditedssl,i.icon.facebook,i.icon.facebook.f,i.icon.facebook.messenger,i.icon.facebook.square,i.icon.firefox,i.icon.first.order,i.icon.firstdraft,i.icon.flickr,i.icon.flipboard,i.icon.fly,i.icon.font.awesome,i.icon.font.awesome.alternate,i.icon.font.awesome.flag,i.icon.fonticons,i.icon.fonticons.fi,i.icon.fort.awesome,i.icon.fort.awesome.alternate,i.icon.forumbee,i.icon.foursquare,i.icon.free.code.camp,i.icon.freebsd,i.icon.get.pocket,i.icon.gg,i.icon.gg.circle,i.icon.git,i.icon.git.square,i.icon.github,i.icon.github.alternate,i.icon.github.square,i.icon.gitkraken,i.icon.gitlab,i.icon.gitter,i.icon.glide,i.icon.glide.g,i.icon.gofore,i.icon.goodreads,i.icon.goodreads.g,i.icon.google,i.icon.google.drive,i.icon.google.play,i.icon.google.plus,i.icon.google.plus.g,i.icon.google.plus.square,i.icon.google.wallet,i.icon.gratipay,i.icon.grav,i.icon.gripfire,i.icon.grunt,i.icon.gulp,i.icon.hacker.news,i.icon.hacker.news.square,i.icon.hips,i.icon.hire.a.helper,i.icon.hooli,i.icon.hotjar,i.icon.houzz,i.icon.html5,i.icon.hubspot,i.icon.imdb,i.icon.instagram,i.icon.internet.explorer,i.icon.ioxhost,i.icon.itunes,i.icon.itunes.note,i.icon.jenkins,i.icon.joget,i.icon.joomla,i.icon.js,i.icon.js.square,i.icon.jsfiddle,i.icon.keycdn,i.icon.kickstarter,i.icon.kickstarter.k,i.icon.korvue,i.icon.laravel,i.icon.lastfm,i.icon.lastfm.square,i.icon.leanpub,i.icon.less,i.icon.linechat,i.icon.linkedin,i.icon.linkedin.alternate,i.icon.linkedin.in,i.icon.linode,i.icon.linux,i.icon.lyft,i.icon.magento,i.icon.maxcdn,i.icon.medapps,i.icon.medium,i.icon.medium.m,i.icon.medrt,i.icon.meetup,i.icon.microsoft,i.icon.mix,i.icon.mixcloud,i.icon.mizuni,i.icon.modx,i.icon.monero,i.icon.napster,i.icon.nintendo.switch,i.icon.node,i.icon.node.js,i.icon.npm,i.icon.ns8,i.icon.nutritionix,i.icon.odnoklassniki,i.icon.odnoklassniki.square,i.icon.opencart,i.icon.openid,i.icon.opera,i.icon.optin.monster,i.icon.osi,i.icon.page4,i.icon.pagelines,i.icon.palfed,i.icon.patreon,i.icon.paypal,i.icon.periscope,i.icon.phabricator,i.icon.phoenix.framework,i.icon.php,i.icon.pied.piper,i.icon.pied.piper.alternate,i.icon.pied.piper.pp,i.icon.pinterest,i.icon.pinterest.p,i.icon.pinterest.square,i.icon.playstation,i.icon.product.hunt,i.icon.pushed,i.icon.python,i.icon.qq,i.icon.quinscape,i.icon.quora,i.icon.ravelry,i.icon.react,i.icon.rebel,i.icon.reddit,i.icon.reddit.alien,i.icon.reddit.square,i.icon.redriver,i.icon.rendact,i.icon.renren,i.icon.replyd,i.icon.resolving,i.icon.rocketchat,i.icon.rockrms,i.icon.safari,i.icon.sass,i.icon.schlix,i.icon.scribd,i.icon.searchengin,i.icon.sellcast,i.icon.sellsy,i.icon.servicestack,i.icon.shirtsinbulk,i.icon.simplybuilt,i.icon.sistrix,i.icon.skyatlas,i.icon.skype,i.icon.slack,i.icon.slack.hash,i.icon.slideshare,i.icon.snapchat,i.icon.snapchat.ghost,i.icon.snapchat.square,i.icon.soundcloud,i.icon.speakap,i.icon.spotify,i.icon.stack.exchange,i.icon.stack.overflow,i.icon.staylinked,i.icon.steam,i.icon.steam.square,i.icon.steam.symbol,i.icon.sticker.mule,i.icon.strava,i.icon.stripe,i.icon.stripe.s,i.icon.studiovinari,i.icon.stumbleupon,i.icon.stumbleupon.circle,i.icon.superpowers,i.icon.supple,i.icon.telegram,i.icon.telegram.plane,i.icon.tencent.weibo,i.icon.themeisle,i.icon.trello,i.icon.tripadvisor,i.icon.tumblr,i.icon.tumblr.square,i.icon.twitch,i.icon.twitter,i.icon.twitter.square,i.icon.typo3,i.icon.uber,i.icon.uikit,i.icon.uniregistry,i.icon.untappd,i.icon.usb,i.icon.ussunnah,i.icon.vaadin,i.icon.viacoin,i.icon.viadeo,i.icon.viadeo.square,i.icon.viber,i.icon.vimeo,i.icon.vimeo.square,i.icon.vimeo.v,i.icon.vine,i.icon.vk,i.icon.vnv,i.icon.vuejs,i.icon.wechat,i.icon.weibo,i.icon.weixin,i.icon.whatsapp,i.icon.whatsapp.square,i.icon.whmcs,i.icon.wikipedia.w,i.icon.windows,i.icon.wordpress,i.icon.wordpress.simple,i.icon.wpbeginner,i.icon.wpexplorer,i.icon.wpforms,i.icon.xbox,i.icon.xing,i.icon.xing.square,i.icon.y.combinator,i.icon.yahoo,i.icon.yandex,i.icon.yandex.international,i.icon.yelp,i.icon.yoast,i.icon.youtube,i.icon.youtube.square{font-family:brand-icons}.ui.image{position:relative;display:inline-block;vertical-align:middle;max-width:100%;background-color:transparent}img.ui.image{display:block}.ui.image img,.ui.image svg{display:block;max-width:100%;height:auto}.ui.hidden.image,.ui.hidden.images{display:none}.ui.hidden.transition.image,.ui.hidden.transition.images{display:block;visibility:hidden}.ui.images>.hidden.transition{display:inline-block;visibility:hidden}.ui.disabled.image,.ui.disabled.images{cursor:default;opacity:.45}.ui.inline.image,.ui.inline.image img,.ui.inline.image svg{display:inline-block}.ui.top.aligned.image,.ui.top.aligned.image img,.ui.top.aligned.image svg,.ui.top.aligned.images .image{display:inline-block;vertical-align:top}.ui.middle.aligned.image,.ui.middle.aligned.image img,.ui.middle.aligned.image svg,.ui.middle.aligned.images .image{display:inline-block;vertical-align:middle}.ui.bottom.aligned.image,.ui.bottom.aligned.image img,.ui.bottom.aligned.image svg,.ui.bottom.aligned.images .image{display:inline-block;vertical-align:bottom}.ui.rounded.image,.ui.rounded.image>*,.ui.rounded.images .image,.ui.rounded.images .image>*{border-radius:.3125em}.ui.bordered.image img,.ui.bordered.image svg,.ui.bordered.images .image,.ui.bordered.images img,.ui.bordered.images svg,img.ui.bordered.image{border:1px solid rgba(0,0,0,.1)}.ui.circular.image,.ui.circular.images{overflow:hidden}.ui.circular.image,.ui.circular.image>*,.ui.circular.images .image,.ui.circular.images .image>*{border-radius:500rem}.ui.fluid.image,.ui.fluid.image img,.ui.fluid.image svg,.ui.fluid.images,.ui.fluid.images img,.ui.fluid.images svg{display:block;width:100%;height:auto}.ui.avatar.image,.ui.avatar.image img,.ui.avatar.image svg,.ui.avatar.images .image,.ui.avatar.images img,.ui.avatar.images svg{margin-right:.25em;display:inline-block;width:2em;height:2em;border-radius:500rem}.ui.spaced.image{display:inline-block!important;margin-left:.5em;margin-right:.5em}.ui[class*="left spaced"].image{margin-left:.5em;margin-right:0}.ui[class*="right spaced"].image{margin-left:0;margin-right:.5em}.ui.floated.image,.ui.floated.images{float:left;margin-right:1em;margin-bottom:1em}.ui.right.floated.image,.ui.right.floated.images{float:right;margin-right:0;margin-bottom:1em;margin-left:1em}.ui.floated.image:last-child,.ui.floated.images:last-child{margin-bottom:0}.ui.centered.image,.ui.centered.images{margin-left:auto;margin-right:auto}.ui.mini.image,.ui.mini.images .image,.ui.mini.images img,.ui.mini.images svg{width:35px;height:auto;font-size:.78571429rem}.ui.tiny.image,.ui.tiny.images .image,.ui.tiny.images img,.ui.tiny.images svg{width:80px;height:auto;font-size:.85714286rem}.ui.small.image,.ui.small.images .image,.ui.small.images img,.ui.small.images svg{width:150px;height:auto;font-size:.92857143rem}.ui.medium.image,.ui.medium.images .image,.ui.medium.images img,.ui.medium.images svg{width:300px;height:auto;font-size:1rem}.ui.large.image,.ui.large.images .image,.ui.large.images img,.ui.large.images svg{width:450px;height:auto;font-size:1.14285714rem}.ui.big.image,.ui.big.images .image,.ui.big.images img,.ui.big.images svg{width:600px;height:auto;font-size:1.28571429rem}.ui.huge.image,.ui.huge.images .image,.ui.huge.images img,.ui.huge.images svg{width:800px;height:auto;font-size:1.42857143rem}.ui.massive.image,.ui.massive.images .image,.ui.massive.images img,.ui.massive.images svg{width:960px;height:auto;font-size:1.71428571rem}.ui.images{font-size:0;margin:0 -.25rem 0}.ui.images .image,.ui.images>img,.ui.images>svg{display:inline-block;margin:0 .25rem .5rem}.ui.input{position:relative;font-weight:400;font-style:normal;display:inline-flex;color:#ddd}.ui.input>input{margin:0;max-width:100%;flex:1 0 auto;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);text-align:left;line-height:1.21428571em;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;padding:.67857143em 1em;background:#2e3235;border:1px solid rgba(24,26,28,.45);color:#ddd;border-radius:.35714286rem;transition:box-shadow .1s ease,border-color .1s ease,outline-offset .1s ease,outline-color .1s ease;box-shadow:none}.ui.input>input::-webkit-input-placeholder{color:#777}.ui.input>input::-moz-placeholder{color:#777}.ui.input>input:-ms-input-placeholder{color:#777}.ui.disabled.input,.ui.input:not(.disabled) input[disabled]{opacity:.45}.ui.disabled.input>input,.ui.input:not(.disabled) input[disabled]{pointer-events:none}.ui.input.down input,.ui.input>input:active{border-color:rgba(0,0,0,.3);background:#fafafa;color:#ddd;box-shadow:none}.ui.loading.loading.input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.loading.input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.input.focus>input,.ui.input>input:focus{border-color:#85b7d9;background:#2e3235;color:rgba(255,255,255,.8);box-shadow:none}.ui.input.focus>input::-webkit-input-placeholder,.ui.input>input:focus::-webkit-input-placeholder{color:#777}.ui.input.focus>input::-moz-placeholder,.ui.input>input:focus::-moz-placeholder{color:#777}.ui.input.focus>input:-ms-input-placeholder,.ui.input>input:focus:-ms-input-placeholder{color:#777}.ui.input.error>input{background-color:#fff6f6;border-color:#e0b4b4;color:#9f3a38;box-shadow:none}.ui.input.error>input::-webkit-input-placeholder{color:#e7bdbc}.ui.input.error>input::-moz-placeholder{color:#e7bdbc}.ui.input.error>input:-ms-input-placeholder{color:#e7bdbc!important}.ui.input.error>input:focus::-webkit-input-placeholder{color:#da9796}.ui.input.error>input:focus::-moz-placeholder{color:#da9796}.ui.input.error>input:focus:-ms-input-placeholder{color:#da9796!important}.ui.transparent.input>input{border-color:transparent!important;background-color:transparent!important;padding:0!important;box-shadow:none!important;border-radius:0!important}.ui.transparent.icon.input>i.icon{width:1.1em}.ui.transparent.icon.input>input{padding-left:0!important;padding-right:2em!important}.ui.transparent[class*="left icon"].input>input{padding-left:2em!important;padding-right:0!important}.ui.transparent.inverted.input{color:#2e3235}.ui.transparent.inverted.input>input{color:inherit}.ui.transparent.inverted.input>input::-webkit-input-placeholder{color:rgba(0,0,0,.5)}.ui.transparent.inverted.input>input::-moz-placeholder{color:rgba(0,0,0,.5)}.ui.transparent.inverted.input>input:-ms-input-placeholder{color:rgba(0,0,0,.5)}.ui.icon.input>i.icon{cursor:default;position:absolute;line-height:1;text-align:center;top:0;right:0;margin:0;height:100%;width:2.67142857em;opacity:.5;border-radius:0 .35714286rem .35714286rem 0;transition:opacity .3s ease}.ui.icon.input>i.icon:not(.link){pointer-events:none}.ui.icon.input>input{padding-right:2.67142857em!important}.ui.icon.input>i.icon:after,.ui.icon.input>i.icon:before{left:0;position:absolute;text-align:center;top:50%;width:100%;margin-top:-.5em}.ui.icon.input>i.link.icon{cursor:pointer}.ui.icon.input>i.circular.icon{top:.35em;right:.5em}.ui[class*="left icon"].input>i.icon{right:auto;left:1px;border-radius:.35714286rem 0 0 .35714286rem}.ui[class*="left icon"].input>i.circular.icon{right:auto;left:.5em}.ui[class*="left icon"].input>input{padding-left:2.67142857em!important;padding-right:1em!important}.ui.icon.input>input:focus~i.icon{opacity:1}.ui.labeled.input>.label{flex:0 0 auto;margin:0;font-size:1em}.ui.labeled.input>.label:not(.corner){padding-top:.78571429em;padding-bottom:.78571429em}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:transparent}.ui.labeled.input:not([class*="corner labeled"]) .label:first-child+input:focus{border-left-color:#85b7d9}.ui[class*="right labeled"].input>input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui[class*="right labeled"].input>input+.label{border-top-left-radius:0;border-bottom-left-radius:0}.ui[class*="right labeled"].input>input:focus{border-right-color:#85b7d9!important}.ui.labeled.input .corner.label{top:1px;right:1px;font-size:.64285714em;border-radius:0 .35714286rem 0 0}.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input>input{padding-right:2.5em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>input{padding-right:3.25em!important}.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"])>.icon{margin-right:1.25em}.ui[class*="left corner labeled"].labeled.input>input{padding-left:2.5em!important}.ui[class*="left corner labeled"].icon.input>input{padding-left:3.25em!important}.ui[class*="left corner labeled"].icon.input>.icon{margin-left:1.25em}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.left.corner.label{right:auto;left:1px}.ui.action.input>.button,.ui.action.input>.buttons{display:flex;align-items:center;flex:0 0 auto}.ui.action.input>.button,.ui.action.input>.buttons>.button{padding-top:.78571429em;padding-bottom:.78571429em;margin:0}.ui.action.input:not([class*="left action"])>input{border-top-right-radius:0!important;border-bottom-right-radius:0!important;border-right-color:transparent!important}.ui.action.input:not([class*="left action"])>.button:not(:first-child),.ui.action.input:not([class*="left action"])>.buttons:not(:first-child)>.button,.ui.action.input:not([class*="left action"])>.dropdown:not(:first-child){border-radius:0}.ui.action.input:not([class*="left action"])>.button:last-child,.ui.action.input:not([class*="left action"])>.buttons:last-child>.button,.ui.action.input:not([class*="left action"])>.dropdown:last-child{border-radius:0 .35714286rem .35714286rem 0}.ui.action.input:not([class*="left action"])>input:focus{border-right-color:#85b7d9!important}.ui[class*="left action"].input>input{border-top-left-radius:0!important;border-bottom-left-radius:0!important;border-left-color:transparent!important}.ui[class*="left action"].input>.button,.ui[class*="left action"].input>.buttons>.button,.ui[class*="left action"].input>.dropdown{border-radius:0}.ui[class*="left action"].input>.button:first-child,.ui[class*="left action"].input>.buttons:first-child>.button,.ui[class*="left action"].input>.dropdown:first-child{border-radius:.35714286rem 0 0 .35714286rem}.ui[class*="left action"].input>input:focus{border-left-color:#85b7d9!important}.ui.inverted.input>input{border:none}.ui.fluid.input{display:flex}.ui.fluid.input>input{width:0!important}.ui.mini.input{font-size:.78571429em}.ui.small.input{font-size:.92857143em}.ui.input{font-size:1em}.ui.large.input{font-size:1.14285714em}.ui.big.input{font-size:1.28571429em}.ui.huge.input{font-size:1.42857143em}.ui.massive.input{font-size:1.71428571em}.ui.label{display:inline-block;line-height:1;vertical-align:baseline;margin:0 .14285714em;--label-border-color:hsl(var(--hsl-slate-400) / 20%);background-color:var(--label-background-color,hsl(var(--hsl-gray-400) / 10%));background-image:none;padding:.5833em .833em;color:var(--label-text-color,hsl(var(--hsl-gray-400)));--label-active-background-color:hsl(var(--hsl-slate-400) / 20%);--label-active-border-color:hsl(var(--hsl-slate-400) / 30%);--label-active-text-color:hsl(var(--hsl-slate-300));--label-circular-background-color:hsl(var(--hsl-slate-400) / 30%);--label-circular-border-color:hsl(var(--hsl-slate-400));text-transform:none;font-weight:var(--font-weights-medium);border:0 solid transparent;border-radius:.35714286rem;transition:background .1s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label>a{cursor:pointer;color:inherit;opacity:.5;transition:.1s opacity ease}.ui.label>a:hover{opacity:1}.ui.label>img{width:auto!important;vertical-align:middle;height:2.1666em!important}.ui.label>.icon{width:auto;margin:0 .75em 0 0}.ui.label>.detail{display:inline-block;vertical-align:top;font-weight:600;margin-left:1em;opacity:.8}.ui.label>.detail .icon{margin:0 .25em 0 0}.ui.label>.close.icon,.ui.label>.delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;font-size:.92857143em;opacity:.5;transition:background .1s ease}.ui.label>.delete.icon:hover{opacity:1}.ui.labels>.label{margin:0 .5em .5em 0}.ui.header>.ui.label{margin-top:-.29165em}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label+[class*="right floated"]+*,.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:hsl(var(--hsl-gray-400) / 10%);padding:.5833em .833em .5833em .5em;border-radius:.35714286rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.1666em;margin:-.5833em .5em -.5833em -.5em;border-radius:.35714286rem 0 0 .35714286rem}.ui.image.label .detail{background:rgba(255,255,255,.1);margin:-.5833em -.833em -.5833em .5em;padding:.5833em .833em;border-radius:0 .35714286rem .35714286rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .35714286rem .35714286rem 0;transition:none}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:inherit;background-image:none;width:1.56em;height:1.56em;transition:none}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#2e3235!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;border-color:hsl(var(--hsl-gray-400) / 10%);width:4em;height:4em;z-index:1;transition:border-color .1s ease}.ui.corner.label{background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:4em solid transparent;border-bottom:4em solid transparent;border-left:0 solid transparent;border-right-color:inherit;transition:border-color .1s ease}.ui.corner.label .icon{cursor:default;position:relative;top:.64285714em;left:.78571429em;font-size:1.14285714em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:4em solid transparent;border-right:4em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.78571429em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.ribbon.label{position:relative;margin:0;min-width:max-content;border-radius:0 .35714286rem .35714286rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:'';top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui.ribbon.label{left:calc(-1rem - 1.2em);margin-right:-1.2em;padding-left:calc(1rem + 1.2em);padding-right:1.2em}.ui[class*="right ribbon"].label{left:calc(100% + 1rem + 1.2em);padding-left:1.2em;padding-right:calc(1rem + 1.2em)}.ui[class*="right ribbon"].label{text-align:left;transform:translateX(-100%);border-radius:.35714286rem 0 0 .35714286rem}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.card .image>.ribbon.label,.ui.image>.ribbon.label{position:absolute;top:1rem}.ui.card .image>.ui.ribbon.label,.ui.image>.ui.ribbon.label{left:calc(--.05rem - 1.2em)}.ui.card .image>.ui[class*="right ribbon"].label,.ui.image>.ui[class*="right ribbon"].label{left:calc(100% + -.05rem + 1.2em);padding-left:.833em}.ui.table td>.ui.ribbon.label{left:calc(-.78571429em - 1.2em)}.ui.table td>.ui[class*="right ribbon"].label{left:calc(100% + .78571429em + 1.2em);padding-left:.833em}.ui.attached.label,.ui[class*="top attached"].label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.21428571rem .21428571rem 0 0}.ui[class*="bottom attached"].label{top:auto;bottom:0;border-radius:0 0 .21428571rem .21428571rem}.ui[class*="top left attached"].label{width:auto;margin-top:0!important;border-radius:.21428571rem 0 .35714286rem 0}.ui[class*="top right attached"].label{width:auto;left:auto;right:0;border-radius:0 .21428571rem 0 .35714286rem}.ui[class*="bottom left attached"].label{width:auto;top:auto;bottom:0;border-radius:0 .35714286rem 0 .21428571rem}.ui[class*="bottom right attached"].label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.35714286rem 0 .21428571rem 0}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#7f888e;border-color:#7f888e;background-image:none;color:rgba(255,255,255,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{color:rgba(255,255,255,.8)}.ui.active.label{background-color:var(--label-active-background-color,#7f888e);border-color:var(--label-active-border-color,#7f888e);background-image:none;color:var(--label-active-text-color,rgba(255,255,255,.95))}.ui.active.label:before{background-color:#7f888e;background-image:none;color:rgba(255,255,255,.95)}a.ui.active.label:hover,a.ui.labels .active.label:hover{background-color:#7f888e;border-color:#7f888e;background-image:none;color:rgba(255,255,255,.95)}.ui.labels a.active.label:ActiveHover:before,a.ui.active.label:ActiveHover:before{background-color:#7f888e;background-image:none;color:rgba(255,255,255,.95)}.ui.label.visible:not(.dropdown),.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.red.label,.ui.red.labels .label{--label-background-color:hsl(var(--hsl-red-400) / 10%);--label-border-color:hsl(var(--hsl-red-400) / 20%);--label-text-color:hsl(var(--hsl-red-400));--label-active-background-color:hsl(var(--hsl-red-400) / 20%);--label-active-border-color:hsl(var(--hsl-red-400) / 30%);--label-active-text-color:hsl(var(--hsl-red-500));--label-circular-background-color:hsl(var(--hsl-red-400) / 30%);--label-circular-border-color:hsl(var(--hsl-red-400))}.ui.red.labels .label:hover,a.ui.red.label:hover{background-color:#d01919!important;border-color:#d01919!important;color:#f9fafb!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}.ui.red.ribbon.label{border-color:#b21e1e!important}.ui.basic.red.label{background:none #2e3235!important;color:#db2828!important;border-color:#db2828!important}.ui.basic.red.labels a.label:hover,a.ui.basic.red.label:hover{background-color:#2e3235!important;color:#d01919!important;border-color:#d01919!important}.ui.orange.label,.ui.orange.labels .label{--label-background-color:hsl(var(--hsl-orange-400) / 10%);--label-border-color:hsl(var(--hsl-orange-400) / 20%);--label-text-color:hsl(var(--hsl-orange-400));--label-active-background-color:hsl(var(--hsl-orange-400) / 20%);--label-active-border-color:hsl(var(--hsl-orange-400) / 30%);--label-active-text-color:hsl(var(--hsl-orange-500));--label-circular-background-color:hsl(var(--hsl-orange-400) / 30%);--label-circular-border-color:hsl(var(--hsl-orange-400))}.ui.orange.labels .label:hover,a.ui.orange.label:hover{background-color:#b2602a!important;border-color:#b2602a!important;color:#f9fafb!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#98562b!important}.ui.basic.orange.label{background:none #2e3235!important;color:#c06d36!important;border-color:#c06d36!important}.ui.basic.orange.labels a.label:hover,a.ui.basic.orange.label:hover{background-color:#2e3235!important;color:#b2602a!important;border-color:#b2602a!important}.ui.yellow.label,.ui.yellow.labels .label{--label-background-color:hsl(var(--hsl-yellow-400) / 10%);--label-border-color:hsl(var(--hsl-yellow-400) / 20%);--label-text-color:hsl(var(--hsl-yellow-400));--label-active-background-color:hsl(var(--hsl-yellow-400) / 20%);--label-active-border-color:hsl(var(--hsl-yellow-400) / 30%);--label-active-text-color:hsl(var(--hsl-yellow-500));--label-circular-background-color:hsl(var(--hsl-yellow-400) / 30%);--label-circular-border-color:hsl(var(--hsl-yellow-400))}.ui.yellow.labels .label:hover,a.ui.yellow.label:hover{background-color:#eaae00!important;border-color:#eaae00!important;color:#f9fafb!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#cd9903!important}.ui.basic.yellow.label{background:none #2e3235!important;color:#fbbd08!important;border-color:#fbbd08!important}.ui.basic.yellow.labels a.label:hover,a.ui.basic.yellow.label:hover{background-color:#2e3235!important;color:#eaae00!important;border-color:#eaae00!important}.ui.olive.label,.ui.olive.labels .label{--label-background-color:hsl(var(--hsl-lime-400) / 10%);--label-border-color:hsl(var(--hsl-lime-400) / 20%);--label-text-color:hsl(var(--hsl-lime-400));--label-active-background-color:hsl(var(--hsl-lime-400) / 20%);--label-active-border-color:hsl(var(--hsl-lime-400) / 30%);--label-active-text-color:hsl(var(--hsl-lime-500));--label-circular-background-color:hsl(var(--hsl-lime-400) / 30%);--label-circular-border-color:hsl(var(--hsl-lime-400))}.ui.olive.labels .label:hover,a.ui.olive.label:hover{background-color:#a7bd0d!important;border-color:#a7bd0d!important;color:#f9fafb!important}.ui.olive.corner.label,.ui.olive.corner.label:hover{background-color:transparent!important}.ui.olive.ribbon.label{border-color:#198f35!important}.ui.basic.olive.label{background:none #2e3235!important;color:#b5cc18!important;border-color:#b5cc18!important}.ui.basic.olive.labels a.label:hover,a.ui.basic.olive.label:hover{background-color:#2e3235!important;color:#a7bd0d!important;border-color:#a7bd0d!important}.ui.green.label,.ui.green.labels .label{--label-background-color:hsl(var(--hsl-green-400) / 10%);--label-border-color:hsl(var(--hsl-green-400) / 20%);--label-text-color:hsl(var(--hsl-green-400));--label-active-background-color:hsl(var(--hsl-green-400) / 20%);--label-active-border-color:hsl(var(--hsl-green-400) / 30%);--label-active-text-color:hsl(var(--hsl-green-500));--label-circular-background-color:hsl(var(--hsl-green-400) / 30%);--label-circular-border-color:hsl(var(--hsl-green-400))}.ui.green.labels .label:hover,a.ui.green.label:hover{background-color:#16ab39!important;border-color:#16ab39!important;color:#f9fafb!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#198f35!important}.ui.basic.green.label{background:none #2e3235!important;color:#21ba45!important;border-color:#21ba45!important}.ui.basic.green.labels a.label:hover,a.ui.basic.green.label:hover{background-color:#2e3235!important;color:#16ab39!important;border-color:#16ab39!important}.ui.teal.label,.ui.teal.labels .label{--label-background-color:hsl(var(--hsl-teal-400) / 10%);--label-border-color:hsl(var(--hsl-teal-400) / 20%);--label-text-color:hsl(var(--hsl-teal-400));--label-active-background-color:hsl(var(--hsl-teal-400) / 20%);--label-active-border-color:hsl(var(--hsl-teal-400) / 30%);--label-active-text-color:hsl(var(--hsl-teal-500));--label-circular-background-color:hsl(var(--hsl-teal-400) / 30%);--label-circular-border-color:hsl(var(--hsl-teal-400))}.ui.teal.labels .label:hover,a.ui.teal.label:hover{background-color:#009c95!important;border-color:#009c95!important;color:#f9fafb!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.basic.teal.label{background:none #2e3235!important;color:#00b5ad!important;border-color:#00b5ad!important}.ui.basic.teal.labels a.label:hover,a.ui.basic.teal.label:hover{background-color:#2e3235!important;color:#009c95!important;border-color:#009c95!important}.ui.blue.label,.ui.blue.labels .label{--label-background-color:hsl(var(--hsl-blue-400) / 10%);--label-border-color:hsl(var(--hsl-blue-400) / 20%);--label-text-color:hsl(var(--hsl-blue-400));--label-active-background-color:hsl(var(--hsl-blue-400) / 20%);--label-active-border-color:hsl(var(--hsl-blue-400) / 30%);--label-active-text-color:hsl(var(--hsl-blue-500));--label-circular-background-color:hsl(var(--hsl-blue-400) / 30%);--label-circular-border-color:hsl(var(--hsl-blue-400))}.ui.blue.labels .label:hover,a.ui.blue.label:hover{background-color:#1678c2!important;border-color:#1678c2!important;color:#f9fafb!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#1a69a4!important}.ui.basic.blue.label{background:none #2e3235!important;color:#2185d0!important;border-color:#2185d0!important}.ui.basic.blue.labels a.label:hover,a.ui.basic.blue.label:hover{background-color:#2e3235!important;color:#1678c2!important;border-color:#1678c2!important}.ui.violet.label,.ui.violet.labels .label{--label-background-color:hsl(var(--hsl-violet-400) / 10%);--label-border-color:hsl(var(--hsl-violet-400) / 20%);--label-text-color:hsl(var(--hsl-violet-400));--label-active-background-color:hsl(var(--hsl-violet-400) / 20%);--label-active-border-color:hsl(var(--hsl-violet-400) / 30%);--label-active-text-color:hsl(var(--hsl-violet-500));--label-circular-background-color:hsl(var(--hsl-violet-400) / 30%);--label-circular-border-color:hsl(var(--hsl-violet-400))}.ui.violet.labels .label:hover,a.ui.violet.label:hover{background-color:#5829bb!important;border-color:#5829bb!important;color:#f9fafb!important}.ui.violet.corner.label,.ui.violet.corner.label:hover{background-color:transparent!important}.ui.violet.ribbon.label{border-color:#502aa1!important}.ui.basic.violet.label{background:none #2e3235!important;color:#6435c9!important;border-color:#6435c9!important}.ui.basic.violet.labels a.label:hover,a.ui.basic.violet.label:hover{background-color:#2e3235!important;color:#5829bb!important;border-color:#5829bb!important}.ui.purple.label,.ui.purple.labels .label{--label-background-color:hsl(var(--hsl-purple-400) / 10%);--label-border-color:hsl(var(--hsl-purple-400) / 20%);--label-text-color:hsl(var(--hsl-purple-400));--label-active-background-color:hsl(var(--hsl-purple-400) / 20%);--label-active-border-color:hsl(var(--hsl-purple-400) / 30%);--label-active-text-color:hsl(var(--hsl-purple-500));--label-circular-background-color:hsl(var(--hsl-purple-400) / 30%);--label-circular-border-color:hsl(var(--hsl-purple-400))}.ui.purple.labels .label:hover,a.ui.purple.label:hover{background-color:#9627ba!important;border-color:#9627ba!important;color:#f9fafb!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#82299f!important}.ui.basic.purple.label{background:none #2e3235!important;color:#a333c8!important;border-color:#a333c8!important}.ui.basic.purple.labels a.label:hover,a.ui.basic.purple.label:hover{background-color:#2e3235!important;color:#9627ba!important;border-color:#9627ba!important}.ui.pink.label,.ui.pink.labels .label{--label-background-color:hsl(var(--hsl-pink-400) / 10%);--label-border-color:hsl(var(--hsl-pink-400) / 20%);--label-text-color:hsl(var(--hsl-pink-400));--label-active-background-color:hsl(var(--hsl-pink-400) / 20%);--label-active-border-color:hsl(var(--hsl-pink-400) / 30%);--label-active-text-color:hsl(var(--hsl-pink-500));--label-circular-background-color:hsl(var(--hsl-pink-400) / 30%);--label-circular-border-color:hsl(var(--hsl-pink-400))}.ui.pink.labels .label:hover,a.ui.pink.label:hover{background-color:#e61a8d!important;border-color:#e61a8d!important;color:#f9fafb!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c71f7e!important}.ui.basic.pink.label{background:none #2e3235!important;color:#e03997!important;border-color:#e03997!important}.ui.basic.pink.labels a.label:hover,a.ui.basic.pink.label:hover{background-color:#2e3235!important;color:#e61a8d!important;border-color:#e61a8d!important}.ui.brown.label,.ui.brown.labels .label{--label-background-color:hsl(var(--hsl-amber-800) / 30%);--label-border-color:hsl(var(--hsl-amber-700) / 30%);--label-text-color:hsl(var(--hsl-amber-600));--label-active-background-color:hsl(var(--hsl-amber-800) / 40%);--label-active-border-color:hsl(var(--hsl-amber-700) / 50%);--label-active-text-color:hsl(var(--hsl-amber-500));--label-circular-background-color:hsl(var(--hsl-amber-700) / 30%);--label-circular-border-color:hsl(var(--hsl-amber-700))}.ui.brown.labels .label:hover,a.ui.brown.label:hover{background-color:#975b33!important;border-color:#975b33!important;color:#f9fafb!important}.ui.brown.corner.label,.ui.brown.corner.label:hover{background-color:transparent!important}.ui.brown.ribbon.label{border-color:#805031!important}.ui.basic.brown.label{background:none #2e3235!important;color:#a5673f!important;border-color:#a5673f!important}.ui.basic.brown.labels a.label:hover,a.ui.basic.brown.label:hover{background-color:#2e3235!important;color:#975b33!important;border-color:#975b33!important}.ui.grey.label,.ui.grey.labels .label{--label-background-color:hsl(var(--hsl-gray-500) / 20%);--label-border-color:hsl(var(--hsl-gray-400) / 20%);--label-text-color:hsl(var(--hsl-gray-400));--label-active-background-color:hsl(var(--hsl-gray-400) / 20%);--label-active-border-color:hsl(var(--hsl-gray-400) / 30%);--label-active-text-color:hsl(var(--hsl-gray-300));--label-circular-background-color:hsl(var(--hsl-gray-400) / 30%);--label-circular-border-color:hsl(var(--hsl-gray-400))}.ui.grey.labels .label:hover,a.ui.grey.label:hover{background-color:#838383!important;border-color:#838383!important;color:#f9fafb!important}.ui.grey.corner.label,.ui.grey.corner.label:hover{background-color:transparent!important}.ui.grey.ribbon.label{border-color:#805031!important}.ui.basic.grey.label{background:none #2e3235!important;color:#767676!important;border-color:#767676!important}.ui.basic.grey.labels a.label:hover,a.ui.basic.grey.label:hover{background-color:#2e3235!important;color:#838383!important;border-color:#838383!important}.ui.black.label,.ui.black.labels .label{--label-background-color:hsl(var(--hsl-gray-950) / 40%);--label-border-color:hsl(var(--hsl-gray-300) / 30%);--label-text-color:hsl(var(--hsl-gray-400));--label-active-background-color:hsl(var(--hsl-gray-950) / 50%);--label-active-border-color:hsl(var(--hsl-gray-300) / 40%);--label-active-text-color:hsl(var(--hsl-gray-300));--label-circular-background-color:hsl(var(--hsl-gray-950) / 40%);--label-circular-border-color:hsl(var(--hsl-gray-400) / 40%)}.ui.black.labels .label:hover,a.ui.black.label:hover{background-color:#000!important;border-color:#000!important;color:#f9fafb!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#805031!important}.ui.basic.black.label{background:none #2e3235!important;color:#f9fafb!important;border-color:#f9fafb!important}.ui.basic.black.labels a.label:hover,a.ui.basic.black.label:hover{background-color:#2e3235!important;color:#fff!important;border-color:#fff!important}.ui.basic.label{background:none #2e3235;border:1px solid rgba(24,26,28,.45);color:#ddd;box-shadow:none}a.ui.basic.label:hover{text-decoration:none;background:none #2e3235;color:#729ad0;box-shadow:1px solid rgba(24,26,28,.45);box-shadow:none}.ui.basic.pointing.label:before{border-color:inherit}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:rgba(0,0,0,.9)!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .833em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline;background-color:var(--label-circular-background-color,var(--label-text-color))!important;border-color:var(--label-circular-border-color,var(--label-border-color))!important;border-width:1px}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{background-color:inherit;background-image:inherit;border-width:none;border-style:solid;border-color:inherit}.ui.pointing.label:before{position:absolute;content:'';transform:rotate(45deg);background-image:none;z-index:2;width:.6666em;height:.6666em;transition:background .1s ease}.ui.pointing.label,.ui[class*="pointing above"].label{margin-top:1em}.ui.pointing.label:before,.ui[class*="pointing above"].label:before{border-width:1px 0 0 1px;transform:translateX(-50%) translateY(-50%) rotate(45deg);top:0;left:50%}.ui[class*="bottom pointing"].label,.ui[class*="pointing below"].label{margin-top:0;margin-bottom:1em}.ui[class*="bottom pointing"].label:before,.ui[class*="pointing below"].label:before{border-width:0 1px 1px 0;top:auto;right:auto;transform:translateX(-50%) translateY(-50%) rotate(45deg);top:100%;left:50%}.ui[class*="left pointing"].label{margin-top:0;margin-left:.6666em}.ui[class*="left pointing"].label:before{border-width:0 0 1px 1px;transform:translateX(-50%) translateY(-50%) rotate(45deg);bottom:auto;right:auto;top:50%;left:0}.ui[class*="right pointing"].label{margin-top:0;margin-right:.6666em}.ui[class*="right pointing"].label:before{border-width:1px 1px 0 0;transform:translateX(50%) translateY(-50%) rotate(45deg);top:50%;right:0;bottom:auto;left:auto}.ui.basic.pointing.label:before,.ui.basic[class*="pointing above"].label:before{margin-top:-1px}.ui.basic[class*="bottom pointing"].label:before,.ui.basic[class*="pointing below"].label:before{bottom:auto;top:100%;margin-top:1px}.ui.basic[class*="left pointing"].label:before{top:50%;left:-1px}.ui.basic[class*="right pointing"].label:before{top:50%;right:-1px}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.64285714rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.71428571rem}.ui.small.label,.ui.small.labels .label{font-size:.78571429rem}.ui.label,.ui.labels .label{font-size:.85714286rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.28571429rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.42857143rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.71428571rem}.ui.list,ol.ui.list,ul.ui.list{list-style-type:none;margin:1em 0;padding:0 0}.ui.list:first-child,ol.ui.list:first-child,ul.ui.list:first-child{margin-top:0;padding-top:0}.ui.list:last-child,ol.ui.list:last-child,ul.ui.list:last-child{margin-bottom:0;padding-bottom:0}.ui.list .list>.item,.ui.list>.item,ol.ui.list li,ul.ui.list li{display:list-item;table-layout:fixed;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.list>.item:after,.ui.list>.list>.item,ol.ui.list>li:first-child:after,ul.ui.list>li:first-child:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.list .list>.item:first-child,.ui.list>.item:first-child,ol.ui.list li:first-child,ul.ui.list li:first-child{padding-top:0}.ui.list .list>.item:last-child,.ui.list>.item:last-child,ol.ui.list li:last-child,ul.ui.list li:last-child{padding-bottom:0}.ui.list .list,ol.ui.list ol,ul.ui.list ul{clear:both;margin:0;padding:.75em 0 .25em .5em}.ui.list .list>.item,ol.ui.list ol li,ul.ui.list ul li{padding:.14285714em 0;line-height:inherit}.ui.list .list>.item>i.icon,.ui.list>.item>i.icon{display:table-cell;margin:0;padding-top:0;padding-right:.28571429em;vertical-align:top;transition:color .1s ease}.ui.list .list>.item>i.icon:only-child,.ui.list>.item>i.icon:only-child{display:inline-block;vertical-align:top}.ui.list .list>.item>.image,.ui.list>.item>.image{display:table-cell;background-color:transparent;margin:0;vertical-align:top}.ui.list .list>.item>.image:not(:only-child):not(img),.ui.list>.item>.image:not(:only-child):not(img){padding-right:.5em}.ui.list .list>.item>.image img,.ui.list>.item>.image img{vertical-align:top}.ui.list .list>.item>.image:only-child,.ui.list .list>.item>img.image,.ui.list>.item>.image:only-child,.ui.list>.item>img.image{display:inline-block}.ui.list .list>.item>.content,.ui.list>.item>.content{line-height:1.14285714em}.ui.list .list>.item>.icon+.content,.ui.list .list>.item>.image+.content,.ui.list>.item>.icon+.content,.ui.list>.item>.image+.content{display:table-cell;width:100%;padding:0 0 0 .5em;vertical-align:top}.ui.list .list>.item>img.image+.content,.ui.list>.item>img.image+.content{display:inline-block;width:auto}.ui.list .list>.item>.content>.list,.ui.list>.item>.content>.list{margin-left:0;padding-left:0}.ui.list .list>.item .header,.ui.list>.item .header{display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:600;color:#ddd}.ui.list .list>.item .description,.ui.list>.item .description{display:block;color:rgba(0,0,0,.7)}.ui.list .list>.item a,.ui.list>.item a{cursor:pointer}.ui.list .list>a.item,.ui.list>a.item{cursor:pointer;color:#6987af}.ui.list .list>a.item:hover,.ui.list>a.item:hover{color:#729ad0}.ui.list .list>a.item i.icon,.ui.list>a.item i.icon{color:rgba(255,255,255,.5)}.ui.list .list>.item a.header,.ui.list>.item a.header{cursor:pointer;color:#6987af!important}.ui.list .list>.item a.header:hover,.ui.list>.item a.header:hover{color:#729ad0!important}.ui[class*="left floated"].list{float:left}.ui[class*="right floated"].list{float:right}.ui.list .list>.item [class*="left floated"],.ui.list>.item [class*="left floated"]{float:left;margin:0 1em 0 0}.ui.list .list>.item [class*="right floated"],.ui.list>.item [class*="right floated"]{float:right;margin:0 0 0 1em}.ui.menu .ui.list .list>.item,.ui.menu .ui.list>.item{display:list-item;table-layout:fixed;background-color:transparent;list-style-type:none;list-style-position:outside;padding:.21428571em 0;line-height:1.14285714em}.ui.menu .ui.list .list>.item:before,.ui.menu .ui.list>.item:before{border:none;background:0 0}.ui.menu .ui.list .list>.item:first-child,.ui.menu .ui.list>.item:first-child{padding-top:0}.ui.menu .ui.list .list>.item:last-child,.ui.menu .ui.list>.item:last-child{padding-bottom:0}.ui.horizontal.list{display:inline-block;font-size:0}.ui.horizontal.list>.item{display:inline-block;margin-left:1em;font-size:1rem}.ui.horizontal.list:not(.celled)>.item:first-child{margin-left:0!important;padding-left:0!important}.ui.horizontal.list .list{padding-left:0;padding-bottom:0}.ui.horizontal.list .list>.item>.content,.ui.horizontal.list .list>.item>.icon,.ui.horizontal.list .list>.item>.image,.ui.horizontal.list>.item>.content,.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.image{vertical-align:middle}.ui.horizontal.list>.item:first-child,.ui.horizontal.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.horizontal.list>.item>i.icon{margin:0;padding:0 .25em 0 0}.ui.horizontal.list>.item>.icon,.ui.horizontal.list>.item>.icon+.content{float:none;display:inline-block}.ui.list .list>.disabled.item,.ui.list>.disabled.item{pointer-events:none;color:rgba(255,255,255,.2)!important}.ui.inverted.list .list>.disabled.item,.ui.inverted.list>.disabled.item{color:rgba(0,0,0,.2)!important}.ui.list .list>a.item:hover .icon,.ui.list>a.item:hover .icon{color:#ddd}.ui.inverted.list .list>a.item>.icon,.ui.inverted.list>a.item>.icon{color:rgba(0,0,0,.7)}.ui.inverted.list .list>.item .header,.ui.inverted.list>.item .header{color:rgba(0,0,0,.9)}.ui.inverted.list .list>.item .description,.ui.inverted.list>.item .description{color:rgba(0,0,0,.7)}.ui.inverted.list .list>a.item,.ui.inverted.list>a.item{cursor:pointer;color:rgba(0,0,0,.9)}.ui.inverted.list .list>a.item:hover,.ui.inverted.list>a.item:hover{color:#729ad0}.ui.inverted.list .item a:not(.ui){color:rgba(0,0,0,.9)!important}.ui.inverted.list .item a:not(.ui):hover{color:#729ad0!important}.ui.list [class*="top aligned"],.ui.list[class*="top aligned"] .content,.ui.list[class*="top aligned"] .image{vertical-align:top!important}.ui.list [class*="middle aligned"],.ui.list[class*="middle aligned"] .content,.ui.list[class*="middle aligned"] .image{vertical-align:middle!important}.ui.list [class*="bottom aligned"],.ui.list[class*="bottom aligned"] .content,.ui.list[class*="bottom aligned"] .image{vertical-align:bottom!important}.ui.link.list .item,.ui.link.list .item a:not(.ui),.ui.link.list a.item{color:rgba(255,255,255,.4);transition:.1s color ease}.ui.link.list.list .item a:not(.ui):hover,.ui.link.list.list a.item:hover{color:rgba(255,255,255,.8)}.ui.link.list.list .item a:not(.ui):active,.ui.link.list.list a.item:active{color:rgba(255,255,255,.9)}.ui.link.list.list .active.item,.ui.link.list.list .active.item a:not(.ui){color:rgba(255,255,255,.95)}.ui.inverted.link.list .item,.ui.inverted.link.list .item a:not(.ui),.ui.inverted.link.list a.item{color:rgba(0,0,0,.5)}.ui.inverted.link.list.list .item a:not(.ui):hover,.ui.inverted.link.list.list a.item:hover{color:#000}.ui.inverted.link.list.list .item a:not(.ui):active,.ui.inverted.link.list.list a.item:active{color:#000}.ui.inverted.link.list.list .active.item a:not(.ui),.ui.inverted.link.list.list a.active.item{color:#000}.ui.selection.list .list>.item,.ui.selection.list>.item{cursor:pointer;background:0 0;padding:.5em .5em;margin:0;color:rgba(255,255,255,.4);border-radius:.5em;transition:.1s color ease,.1s padding-left ease,.1s background-color ease}.ui.selection.list .list>.item:last-child,.ui.selection.list>.item:last-child{margin-bottom:0}.ui.selection.list.list>.item:hover,.ui.selection.list>.item:hover{background:rgba(255,255,255,.03);color:rgba(255,255,255,.8)}.ui.selection.list .list>.item:active,.ui.selection.list>.item:active{background:rgba(255,255,255,.05);color:rgba(255,255,255,.9)}.ui.selection.list .list>.item.active,.ui.selection.list>.item.active{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.inverted.selection.list>.item{background:0 0;color:rgba(0,0,0,.5)}.ui.inverted.selection.list>.item:hover{background:rgba(0,0,0,.02);color:#000}.ui.inverted.selection.list>.item:active{background:rgba(0,0,0,.08);color:#000}.ui.inverted.selection.list>.item.active{background:rgba(0,0,0,.08);color:#000}.ui.celled.selection.list .list>.item,.ui.celled.selection.list>.item,.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{border-radius:0}.ui.animated.list>.item{transition:.25s color ease .1s,.25s padding-left ease .1s,.25s background-color ease .1s}.ui.animated.list:not(.horizontal)>.item:hover{padding-left:1em}.ui.fitted.list:not(.selection) .list>.item,.ui.fitted.list:not(.selection)>.item{padding-left:0;padding-right:0}.ui.fitted.selection.list .list>.item,.ui.fitted.selection.list>.item{margin-left:-.5em;margin-right:-.5em}.ui.bulleted.list,ul.ui.list{margin-left:1.25rem}.ui.bulleted.list .list>.item,.ui.bulleted.list>.item,ul.ui.list li{position:relative}.ui.bulleted.list .list>.item:before,.ui.bulleted.list>.item:before,ul.ui.list li:before{user-select:none;pointer-events:none;position:absolute;top:auto;left:auto;font-weight:400;margin-left:-1.25rem;content:'•';opacity:1;color:inherit;vertical-align:top}.ui.bulleted.list .list>a.item:before,.ui.bulleted.list>a.item:before,ul.ui.list li:before{color:#ddd}.ui.bulleted.list .list,ul.ui.list ul{padding-left:1.25rem}.ui.horizontal.bulleted.list,ul.ui.horizontal.bulleted.list{margin-left:0}.ui.horizontal.bulleted.list>.item,ul.ui.horizontal.bulleted.list li{margin-left:1.75rem}.ui.horizontal.bulleted.list>.item:first-child,ul.ui.horizontal.bulleted.list li:first-child{margin-left:0}.ui.horizontal.bulleted.list>.item::before,ul.ui.horizontal.bulleted.list li::before{color:#ddd}.ui.horizontal.bulleted.list>.item:first-child::before,ul.ui.horizontal.bulleted.list li:first-child::before{display:none}.ui.ordered.list,.ui.ordered.list .list,ol.ui.list,ol.ui.list ol{counter-reset:ordered;margin-left:1.25rem;list-style-type:none}.ui.ordered.list .list>.item,.ui.ordered.list>.item,ol.ui.list li{list-style-type:none;position:relative}.ui.ordered.list .list>.item:before,.ui.ordered.list>.item:before,ol.ui.list li:before{position:absolute;top:auto;left:auto;user-select:none;pointer-events:none;margin-left:-1.25rem;counter-increment:ordered;content:counters(ordered, ".") " ";text-align:right;color:#ddd;vertical-align:middle;opacity:.8}.ui.ordered.inverted.list .list>.item:before,.ui.ordered.inverted.list>.item:before,ol.ui.inverted.list li:before{color:rgba(0,0,0,.7)}.ui.ordered.list>.item[data-value],.ui.ordered.list>.list>.item[data-value]{content:attr(data-value)}ol.ui.list li[value]:before{content:attr(value)}.ui.ordered.list .list,ol.ui.list ol{margin-left:1em}.ui.ordered.list .list>.item:before,ol.ui.list ol li:before{margin-left:-2em}.ui.ordered.horizontal.list,ol.ui.horizontal.list{margin-left:0}.ui.ordered.horizontal.list .list>.item:before,.ui.ordered.horizontal.list>.item:before,ol.ui.horizontal.list li:before{position:static;margin:0 .5em 0 0}.ui.divided.list>.item{border-top:1px solid rgba(24,26,28,.45)}.ui.divided.list .list>.item{border-top:none}.ui.divided.list .item .list>.item{border-top:none}.ui.divided.list .list>.item:first-child,.ui.divided.list>.item:first-child{border-top:none}.ui.divided.list:not(.horizontal) .list>.item:first-child{border-top-width:1px}.ui.divided.bulleted.list .list,.ui.divided.bulleted.list:not(.horizontal){margin-left:0;padding-left:0}.ui.divided.bulleted.list>.item:not(.horizontal){padding-left:1.25rem}.ui.divided.ordered.list{margin-left:0}.ui.divided.ordered.list .list>.item,.ui.divided.ordered.list>.item{padding-left:1.25rem}.ui.divided.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.divided.ordered.list .item .list>.item{padding-left:1em}.ui.divided.selection.list .list>.item,.ui.divided.selection.list>.item{margin:0;border-radius:0}.ui.divided.horizontal.list{margin-left:0}.ui.divided.horizontal.list>.item:not(:first-child){padding-left:.5em}.ui.divided.horizontal.list>.item:not(:last-child){padding-right:.5em}.ui.divided.horizontal.list>.item{border-top:none;border-left:1px solid rgba(24,26,28,.45);margin:0;line-height:.6}.ui.horizontal.divided.list>.item:first-child{border-left:none}.ui.divided.inverted.horizontal.list>.item,.ui.divided.inverted.list>.item,.ui.divided.inverted.list>.list{border-color:rgba(0,0,0,.1)}.ui.celled.list>.item,.ui.celled.list>.list{border-top:1px solid rgba(24,26,28,.45);padding-left:.5em;padding-right:.5em}.ui.celled.list>.item:last-child{border-bottom:1px solid rgba(24,26,28,.45)}.ui.celled.list>.item:first-child,.ui.celled.list>.item:last-child{padding-top:.21428571em;padding-bottom:.21428571em}.ui.celled.list .item .list>.item{border-width:0}.ui.celled.list .list>.item:first-child{border-top-width:0}.ui.celled.bulleted.list{margin-left:0}.ui.celled.bulleted.list .list>.item,.ui.celled.bulleted.list>.item{padding-left:1.25rem}.ui.celled.bulleted.list .item .list{margin-left:-1.25rem;margin-right:-1.25rem;padding-bottom:.21428571em}.ui.celled.ordered.list{margin-left:0}.ui.celled.ordered.list .list>.item,.ui.celled.ordered.list>.item{padding-left:1.25rem}.ui.celled.ordered.list .item .list{margin-left:0;margin-right:0;padding-bottom:.21428571em}.ui.celled.ordered.list .list>.item{padding-left:1em}.ui.horizontal.celled.list{margin-left:0}.ui.horizontal.celled.list .list>.item,.ui.horizontal.celled.list>.item{border-top:none;border-left:1px solid rgba(24,26,28,.45);margin:0;padding-left:.5em;padding-right:.5em;line-height:.6}.ui.horizontal.celled.list .list>.item:last-child,.ui.horizontal.celled.list>.item:last-child{border-bottom:none;border-right:1px solid rgba(24,26,28,.45)}.ui.celled.inverted.list>.item,.ui.celled.inverted.list>.list{border-color:1px solid rgba(0,0,0,.1)}.ui.celled.inverted.horizontal.list .list>.item,.ui.celled.inverted.horizontal.list>.item{border-color:1px solid rgba(0,0,0,.1)}.ui.relaxed.list:not(.horizontal)>.item:not(:first-child){padding-top:.42857143em}.ui.relaxed.list:not(.horizontal)>.item:not(:last-child){padding-bottom:.42857143em}.ui.horizontal.relaxed.list .list>.item:not(:first-child),.ui.horizontal.relaxed.list>.item:not(:first-child){padding-left:1rem}.ui.horizontal.relaxed.list .list>.item:not(:last-child),.ui.horizontal.relaxed.list>.item:not(:last-child){padding-right:1rem}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:first-child){padding-top:.85714286em}.ui[class*="very relaxed"].list:not(.horizontal)>.item:not(:last-child){padding-bottom:.85714286em}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:first-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:first-child){padding-left:1.5rem}.ui.horizontal[class*="very relaxed"].list .list>.item:not(:last-child),.ui.horizontal[class*="very relaxed"].list>.item:not(:last-child){padding-right:1.5rem}.ui.mini.list{font-size:.78571429em}.ui.tiny.list{font-size:.85714286em}.ui.small.list{font-size:.92857143em}.ui.list{font-size:1em}.ui.large.list{font-size:1.14285714em}.ui.big.list{font-size:1.28571429em}.ui.huge.list{font-size:1.42857143em}.ui.massive.list{font-size:1.71428571em}.ui.mini.horizontal.list .list>.item,.ui.mini.horizontal.list>.item{font-size:.78571429rem}.ui.tiny.horizontal.list .list>.item,.ui.tiny.horizontal.list>.item{font-size:.85714286rem}.ui.small.horizontal.list .list>.item,.ui.small.horizontal.list>.item{font-size:.92857143rem}.ui.horizontal.list .list>.item,.ui.horizontal.list>.item{font-size:1rem}.ui.large.horizontal.list .list>.item,.ui.large.horizontal.list>.item{font-size:1.14285714rem}.ui.big.horizontal.list .list>.item,.ui.big.horizontal.list>.item{font-size:1.28571429rem}.ui.huge.horizontal.list .list>.item,.ui.huge.horizontal.list>.item{font-size:1.42857143rem}.ui.massive.horizontal.list .list>.item,.ui.massive.horizontal.list>.item{font-size:1.71428571rem}.ui.loader{display:none;position:absolute;top:50%;left:50%;margin:0;text-align:center;z-index:1000;transform:translateX(-50%) translateY(-50%)}.ui.loader:before{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loader:after{position:absolute;content:'';top:0;left:50%;width:100%;height:100%;animation:loader .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}@keyframes loader{from{transform:rotate(0)}to{transform:rotate(360deg)}}.ui.mini.loader:after,.ui.mini.loader:before{width:1rem;height:1rem;margin:0 0 0 -.5rem}.ui.tiny.loader:after,.ui.tiny.loader:before{width:1.14285714rem;height:1.14285714rem;margin:0 0 0 -.57142857rem}.ui.small.loader:after,.ui.small.loader:before{width:1.71428571rem;height:1.71428571rem;margin:0 0 0 -.85714286rem}.ui.loader:after,.ui.loader:before{width:2.28571429rem;height:2.28571429rem;margin:0 0 0 -1.14285714rem}.ui.large.loader:after,.ui.large.loader:before{width:3.42857143rem;height:3.42857143rem;margin:0 0 0 -1.71428571rem}.ui.big.loader:after,.ui.big.loader:before{width:3.71428571rem;height:3.71428571rem;margin:0 0 0 -1.85714286rem}.ui.huge.loader:after,.ui.huge.loader:before{width:4.14285714rem;height:4.14285714rem;margin:0 0 0 -2.07142857rem}.ui.massive.loader:after,.ui.massive.loader:before{width:4.57142857rem;height:4.57142857rem;margin:0 0 0 -2.28571429rem}.ui.dimmer .loader{display:block}.ui.dimmer .ui.loader{color:rgba(0,0,0,.9)}.ui.dimmer .ui.loader:before{border-color:rgba(255,255,255,.15)}.ui.dimmer .ui.loader:after{border-color:#2e3235 transparent transparent}.ui.inverted.dimmer .ui.loader{color:#ddd}.ui.inverted.dimmer .ui.loader:before{border-color:rgba(0,0,0,.1)}.ui.inverted.dimmer .ui.loader:after{border-color:#767676 transparent transparent}.ui.text.loader{width:auto!important;height:auto!important;text-align:center;font-style:normal}.ui.indeterminate.loader:after{animation-direction:reverse;animation-duration:1.2s}.ui.loader.active,.ui.loader.visible{display:block}.ui.loader.disabled,.ui.loader.hidden{display:none}.ui.inverted.dimmer .ui.mini.loader,.ui.mini.loader{width:1rem;height:1rem;font-size:.78571429em}.ui.inverted.dimmer .ui.tiny.loader,.ui.tiny.loader{width:1.14285714rem;height:1.14285714rem;font-size:.85714286em}.ui.inverted.dimmer .ui.small.loader,.ui.small.loader{width:1.71428571rem;height:1.71428571rem;font-size:.92857143em}.ui.inverted.dimmer .ui.loader,.ui.loader{width:2.28571429rem;height:2.28571429rem;font-size:1em}.ui.inverted.dimmer .ui.large.loader,.ui.large.loader{width:3.42857143rem;height:3.42857143rem;font-size:1.14285714em}.ui.big.loader,.ui.inverted.dimmer .ui.big.loader{width:3.71428571rem;height:3.71428571rem;font-size:1.28571429em}.ui.huge.loader,.ui.inverted.dimmer .ui.huge.loader{width:4.14285714rem;height:4.14285714rem;font-size:1.42857143em}.ui.inverted.dimmer .ui.massive.loader,.ui.massive.loader{width:4.57142857rem;height:4.57142857rem;font-size:1.71428571em}.ui.mini.text.loader{min-width:1rem;padding-top:1.78571429rem}.ui.tiny.text.loader{min-width:1.14285714rem;padding-top:1.92857143rem}.ui.small.text.loader{min-width:1.71428571rem;padding-top:2.5rem}.ui.text.loader{min-width:2.28571429rem;padding-top:3.07142857rem}.ui.large.text.loader{min-width:3.42857143rem;padding-top:4.21428571rem}.ui.big.text.loader{min-width:3.71428571rem;padding-top:4.5rem}.ui.huge.text.loader{min-width:4.14285714rem;padding-top:4.92857143rem}.ui.massive.text.loader{min-width:4.57142857rem;padding-top:5.35714286rem}.ui.inverted.loader{color:rgba(0,0,0,.9)}.ui.inverted.loader:before{border-color:rgba(255,255,255,.15)}.ui.inverted.loader:after{border-top-color:#2e3235}.ui.inline.loader{position:relative;vertical-align:middle;margin:0;left:0;top:0;transform:none}.ui.inline.loader.active,.ui.inline.loader.visible{display:inline-block}.ui.centered.inline.loader.active,.ui.centered.inline.loader.visible{display:block;margin-left:auto;margin-right:auto}.ui.placeholder{position:static;overflow:hidden;animation:placeholderShimmer 2s linear;animation-iteration-count:infinite;background-color:#2e3235;background-image:linear-gradient(to right,rgba(0,0,0,.08) 0,rgba(0,0,0,.15) 15%,rgba(0,0,0,.08) 30%);background-size:1200px 100%;max-width:30rem}@keyframes placeholderShimmer{0%{background-position:-1200px 0}100%{background-position:1200px 0}}.ui.placeholder+.ui.placeholder{margin-top:2rem}.ui.placeholder+.ui.placeholder{animation-delay:.15s}.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.3s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.45s}.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder+.ui.placeholder{animation-delay:.6s}.ui.placeholder,.ui.placeholder .image.header:after,.ui.placeholder .line,.ui.placeholder .line:after,.ui.placeholder>:before{background-color:#2e3235}.ui.placeholder .image:not(.header):not(.ui){height:100px}.ui.placeholder .square.image:not(.header){height:0;overflow:hidden;padding-top:100%}.ui.placeholder .rectangular.image:not(.header){height:0;overflow:hidden;padding-top:75%}.ui.placeholder .line{position:relative;height:.85714286em}.ui.placeholder .line:after,.ui.placeholder .line:before{top:100%;position:absolute;content:'';background-color:inherit}.ui.placeholder .line:before{left:0}.ui.placeholder .line:after{right:0}.ui.placeholder .line{margin-bottom:.5em}.ui.placeholder .line:after,.ui.placeholder .line:before{height:.5em}.ui.placeholder .line:not(:first-child){margin-top:.5em}.ui.placeholder .header{position:relative;overflow:hidden}.ui.placeholder .line:nth-child(1):after{width:0%}.ui.placeholder .line:nth-child(2):after{width:50%}.ui.placeholder .line:nth-child(3):after{width:10%}.ui.placeholder .line:nth-child(4):after{width:35%}.ui.placeholder .line:nth-child(5):after{width:65%}.ui.placeholder .header .line{margin-bottom:.64285714em}.ui.placeholder .header .line:after,.ui.placeholder .header .line:before{height:.64285714em}.ui.placeholder .header .line:not(:first-child){margin-top:.64285714em}.ui.placeholder .header .line:after{width:20%}.ui.placeholder .header .line:nth-child(2):after{width:60%}.ui.placeholder .image.header .line{margin-left:3em}.ui.placeholder .image.header .line:before{width:.71428571rem}.ui.placeholder .image.header:after{display:block;height:.85714286em;content:'';margin-left:3em}.ui.placeholder .header .line:first-child,.ui.placeholder .image .line:first-child,.ui.placeholder .paragraph .line:first-child{height:.01px}.ui.placeholder .header:not(:first-child):before,.ui.placeholder .image:not(:first-child):before,.ui.placeholder .paragraph:not(:first-child):before{height:1.42857143em;content:'';display:block}.ui.inverted.placeholder{background-image:linear-gradient(to right,rgba(255,255,255,.08) 0,rgba(255,255,255,.14) 15%,rgba(255,255,255,.08) 30%)}.ui.inverted.placeholder,.ui.inverted.placeholder .image.header:after,.ui.inverted.placeholder .line,.ui.inverted.placeholder .line:after,.ui.inverted.placeholder>:before{background-color:#f9fafb}.ui.placeholder .full.line.line.line:after{width:0%}.ui.placeholder .very.long.line.line.line:after{width:10%}.ui.placeholder .long.line.line.line:after{width:35%}.ui.placeholder .medium.line.line.line:after{width:50%}.ui.placeholder .short.line.line.line:after{width:65%}.ui.placeholder .very.short.line.line.line:after{width:80%}.ui.fluid.placeholder{max-width:none}.ui.rail{position:absolute;top:0;width:300px;height:100%}.ui.left.rail{left:auto;right:100%;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.right.rail{left:100%;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.left.internal.rail{left:0;right:auto;padding:0 0 0 2rem;margin:0 0 0 2rem}.ui.right.internal.rail{left:auto;right:0;padding:0 2rem 0 0;margin:0 2rem 0 0}.ui.dividing.rail{width:302.5px}.ui.left.dividing.rail{padding:0 2.5rem 0 0;margin:0 2.5rem 0 0;border-right:1px solid rgba(24,26,28,.45)}.ui.right.dividing.rail{border-left:1px solid rgba(24,26,28,.45);padding:0 0 0 2.5rem;margin:0 0 0 2.5rem}.ui.close.rail{width:calc(300px + 1em)}.ui.close.left.rail{padding:0 1em 0 0;margin:0 1em 0 0}.ui.close.right.rail{padding:0 0 0 1em;margin:0 0 0 1em}.ui.very.close.rail{width:calc(300px + .5em)}.ui.very.close.left.rail{padding:0 .5em 0 0;margin:0 .5em 0 0}.ui.very.close.right.rail{padding:0 0 0 .5em;margin:0 0 0 .5em}.ui.attached.left.rail,.ui.attached.right.rail{padding:0;margin:0}.ui.mini.rail{font-size:.78571429rem}.ui.tiny.rail{font-size:.85714286rem}.ui.small.rail{font-size:.92857143rem}.ui.rail{font-size:1rem}.ui.large.rail{font-size:1.14285714rem}.ui.big.rail{font-size:1.28571429rem}.ui.huge.rail{font-size:1.42857143rem}.ui.massive.rail{font-size:1.71428571rem}.ui.reveal{display:inherit;position:relative!important;font-size:0!important}.ui.reveal>.visible.content{position:absolute!important;top:0!important;left:0!important;z-index:3!important;transition:all .5s ease .1s}.ui.reveal>.hidden.content{position:relative!important;z-index:2!important}.ui.active.reveal .visible.content,.ui.reveal:hover .visible.content{z-index:4!important}.ui.slide.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.slide.reveal>.content{display:block;width:100%;white-space:normal;float:left;margin:0;transition:transform .5s ease .1s}.ui.slide.reveal>.visible.content{position:relative!important}.ui.slide.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important;transform:translateX(100%)!important}.ui.slide.active.reveal>.visible.content,.ui.slide.reveal:hover>.visible.content{transform:translateX(-100%)!important}.ui.slide.active.reveal>.hidden.content,.ui.slide.reveal:hover>.hidden.content{transform:translateX(0)!important}.ui.slide.right.reveal>.visible.content{transform:translateX(0)!important}.ui.slide.right.reveal>.hidden.content{transform:translateX(-100%)!important}.ui.slide.right.active.reveal>.visible.content,.ui.slide.right.reveal:hover>.visible.content{transform:translateX(100%)!important}.ui.slide.right.active.reveal>.hidden.content,.ui.slide.right.reveal:hover>.hidden.content{transform:translateX(0)!important}.ui.slide.up.reveal>.hidden.content{transform:translateY(100%)!important}.ui.slide.up.active.reveal>.visible.content,.ui.slide.up.reveal:hover>.visible.content{transform:translateY(-100%)!important}.ui.slide.up.active.reveal>.hidden.content,.ui.slide.up.reveal:hover>.hidden.content{transform:translateY(0)!important}.ui.slide.down.reveal>.hidden.content{transform:translateY(-100%)!important}.ui.slide.down.active.reveal>.visible.content,.ui.slide.down.reveal:hover>.visible.content{transform:translateY(100%)!important}.ui.slide.down.active.reveal>.hidden.content,.ui.slide.down.reveal:hover>.hidden.content{transform:translateY(0)!important}.ui.fade.reveal>.visible.content{opacity:1}.ui.fade.active.reveal>.visible.content,.ui.fade.reveal:hover>.visible.content{opacity:0}.ui.move.reveal{position:relative!important;overflow:hidden!important;white-space:nowrap}.ui.move.reveal>.content{display:block;float:left;white-space:normal;margin:0;transition:transform .5s cubic-bezier(.175,.885,.32,1) .1s}.ui.move.reveal>.visible.content{position:relative!important}.ui.move.reveal>.hidden.content{position:absolute!important;left:0!important;width:100%!important}.ui.move.active.reveal>.visible.content,.ui.move.reveal:hover>.visible.content{transform:translateX(-100%)!important}.ui.move.right.active.reveal>.visible.content,.ui.move.right.reveal:hover>.visible.content{transform:translateX(100%)!important}.ui.move.up.active.reveal>.visible.content,.ui.move.up.reveal:hover>.visible.content{transform:translateY(-100%)!important}.ui.move.down.active.reveal>.visible.content,.ui.move.down.reveal:hover>.visible.content{transform:translateY(100%)!important}.ui.rotate.reveal>.visible.content{transition-duration:.5s;transform:rotate(0)}.ui.rotate.reveal>.visible.content,.ui.rotate.right.reveal>.visible.content{transform-origin:bottom right}.ui.rotate.active.reveal>.visible.content,.ui.rotate.reveal:hover>.visible.content,.ui.rotate.right.active.reveal>.visible.content,.ui.rotate.right.reveal:hover>.visible.content{transform:rotate(110deg)}.ui.rotate.left.reveal>.visible.content{transform-origin:bottom left}.ui.rotate.left.active.reveal>.visible.content,.ui.rotate.left.reveal:hover>.visible.content{transform:rotate(-110deg)}.ui.disabled.reveal:hover>.visible.visible.content{position:static!important;display:block!important;opacity:1!important;top:0!important;left:0!important;right:auto!important;bottom:auto!important;transform:none!important}.ui.disabled.reveal:hover>.hidden.hidden.content{display:none!important}.ui.reveal>.ui.ribbon.label{z-index:5}.ui.visible.reveal{overflow:visible}.ui.instant.reveal>.content{transition-delay:0s!important}.ui.reveal>.content{font-size:1rem!important}.ui.segment{position:relative;background:#2e3235;box-shadow:0 1px 2px 0 rgba(24,26,28,.45);margin:1rem 0;padding:1em 1em;border-radius:.35714286rem;border:1px solid rgba(24,26,28,.45)}.ui.segment:first-child{margin-top:0}.ui.segment:last-child{margin-bottom:0}.ui.vertical.segment{margin:0;padding-left:0;padding-right:0;background:none transparent;border-radius:0;box-shadow:none;border:none;border-bottom:1px solid rgba(24,26,28,.45)}.ui.vertical.segment:last-child{border-bottom:none}.ui.inverted.segment>.ui.header{color:#2e3235}.ui[class*="bottom attached"].segment>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui[class*="top attached"].segment>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="top attached"].label{border-top-left-radius:0;border-top-right-radius:0}.ui.attached.segment:not(.top):not(.bottom)>[class*="bottom attached"].label{border-bottom-left-radius:0;border-bottom-right-radius:0}.ui.grid>.row>.ui.segment.column,.ui.grid>.ui.segment.column,.ui.page.grid.segment{padding-top:2em;padding-bottom:2em}.ui.grid.segment{margin:1rem 0;border-radius:.35714286rem}.ui.basic.table.segment{background:#2e3235;border:1px solid rgba(24,26,28,.45);box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui[class*="very basic"].table.segment{padding:1em 1em}.ui.placeholder.segment{display:flex;flex-direction:column;justify-content:center;align-items:stretch;max-width:initial;animation:none;overflow:visible;padding:1em 1em;min-height:18rem;background:#34393d;border-color:rgba(24,26,28,.45);box-shadow:0 2px 25px 0 rgba(34,36,38,.05) inset}.ui.placeholder.segment .button,.ui.placeholder.segment textarea{display:block}.ui.placeholder.segment .button,.ui.placeholder.segment .field,.ui.placeholder.segment textarea,.ui.placeholder.segment>.ui.input{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment .column .button,.ui.placeholder.segment .column .field,.ui.placeholder.segment .column textarea,.ui.placeholder.segment .column>.ui.input{max-width:15rem;margin-left:auto;margin-right:auto}.ui.placeholder.segment>.inline{align-self:center}.ui.placeholder.segment>.inline>.button{display:inline-block;width:auto;margin:0 .35714286rem 0 0}.ui.placeholder.segment>.inline>.button:last-child{margin-right:0}.ui.piled.segment,.ui.piled.segments{margin:3em 0;box-shadow:'';z-index:auto}.ui.piled.segment:first-child{margin-top:0}.ui.piled.segment:last-child{margin-bottom:0}.ui.piled.segment:after,.ui.piled.segment:before,.ui.piled.segments:after,.ui.piled.segments:before{background-color:#2e3235;visibility:visible;content:'';display:block;height:100%;left:0;position:absolute;width:100%;border:1px solid rgba(24,26,28,.45);box-shadow:''}.ui.piled.segment:before,.ui.piled.segments:before{transform:rotate(-1.2deg);top:0;z-index:-2}.ui.piled.segment:after,.ui.piled.segments:after{transform:rotate(1.2deg);top:0;z-index:-1}.ui[class*="top attached"].piled.segment{margin-top:3em;margin-bottom:0}.ui.piled.segment[class*="top attached"]:first-child{margin-top:0}.ui.piled.segment[class*="bottom attached"]{margin-top:0;margin-bottom:3em}.ui.piled.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.stacked.segment{padding-bottom:1.4em}.ui.stacked.segment:after,.ui.stacked.segment:before,.ui.stacked.segments:after,.ui.stacked.segments:before{content:'';position:absolute;bottom:-3px;left:0;border-top:1px solid rgba(24,26,28,.45);background:rgba(255,255,255,.03);width:100%;height:6px;visibility:visible}.ui.stacked.segment:before,.ui.stacked.segments:before{display:none}.ui.tall.stacked.segment:before,.ui.tall.stacked.segments:before{display:block;bottom:0}.ui.stacked.inverted.segment:after,.ui.stacked.inverted.segment:before,.ui.stacked.inverted.segments:after,.ui.stacked.inverted.segments:before{background-color:rgba(255,255,255,.03);border-top:1px solid rgba(24,26,28,.35)}.ui.padded.segment{padding:1.5em}.ui[class*="very padded"].segment{padding:3em}.ui.padded.segment.vertical.segment,.ui[class*="very padded"].vertical.segment{padding-left:0;padding-right:0}.ui.compact.segment{display:table}.ui.compact.segments{display:inline-flex}.ui.compact.segments .segment,.ui.segments .compact.segment{display:block;flex:0 1 auto}.ui.circular.segment{display:table-cell;padding:2em;text-align:center;vertical-align:middle;border-radius:500em}.ui.raised.segment,.ui.raised.segments{box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.segments{flex-direction:column;position:relative;margin:1rem 0;border:1px solid rgba(24,26,28,.45);box-shadow:0 1px 2px 0 rgba(24,26,28,.45);border-radius:.35714286rem}.ui.segments:first-child{margin-top:0}.ui.segments:last-child{margin-bottom:0}.ui.segments>.segment{top:0;bottom:0;border-radius:0;margin:0;width:auto;box-shadow:none;border:none;border-top:1px solid rgba(24,26,28,.45)}.ui.segments:not(.horizontal)>.segment:first-child{border-top:none;margin-top:0;bottom:0;margin-bottom:0;top:0;border-radius:.35714286rem .35714286rem 0 0}.ui.segments:not(.horizontal)>.segment:last-child{top:0;bottom:0;margin-top:0;margin-bottom:0;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),none;border-radius:0 0 .35714286rem .35714286rem}.ui.segments:not(.horizontal)>.segment:only-child{border-radius:.35714286rem}.ui.segments>.ui.segments{border-top:1px solid rgba(24,26,28,.45);margin:1rem 1rem}.ui.segments>.segments:first-child{border-top:none}.ui.segments>.segment+.segments:not(.horizontal){margin-top:0}.ui.horizontal.segments{display:flex;flex-direction:row;background-color:transparent;border-radius:0;padding:0;background-color:#2e3235;box-shadow:0 1px 2px 0 rgba(24,26,28,.45);margin:1rem 0;border-radius:.35714286rem;border:1px solid rgba(24,26,28,.45)}.ui.segments>.horizontal.segments{margin:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-top:1px solid rgba(24,26,28,.45)}.ui.horizontal.segments>.segment{flex:1 1 auto;-ms-flex:1 1 0px;margin:0;min-width:0;background-color:transparent;border-radius:0;border:none;box-shadow:none;border-left:1px solid rgba(24,26,28,.45)}.ui.segments>.horizontal.segments:first-child{border-top:none}.ui.horizontal.segments>.segment:first-child{border-left:none}.ui.disabled.segment{opacity:.45;color:rgba(255,255,255,.2)}.ui.loading.segment{position:relative;cursor:default;pointer-events:none;text-shadow:none!important;color:transparent!important;transition:all 0s linear}.ui.loading.segment:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;border-radius:.35714286rem;z-index:100}.ui.loading.segment:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;animation:segment-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@keyframes segment-spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}.ui.basic.segment{background:none transparent;box-shadow:none;border:none;border-radius:0}.ui.clearing.segment:after{content:".";display:block;height:0;clear:both;visibility:hidden}.ui.red.segment:not(.inverted){border-top:2px solid #db2828!important}.ui.inverted.red.segment{background-color:#db2828!important;color:#2e3235!important}.ui.orange.segment:not(.inverted){border-top:2px solid #c06d36!important}.ui.inverted.orange.segment{background-color:#c06d36!important;color:#2e3235!important}.ui.yellow.segment:not(.inverted){border-top:2px solid #fbbd08!important}.ui.inverted.yellow.segment{background-color:#fbbd08!important;color:#2e3235!important}.ui.olive.segment:not(.inverted){border-top:2px solid #b5cc18!important}.ui.inverted.olive.segment{background-color:#b5cc18!important;color:#2e3235!important}.ui.green.segment:not(.inverted){border-top:2px solid #21ba45!important}.ui.inverted.green.segment{background-color:#21ba45!important;color:#2e3235!important}.ui.teal.segment:not(.inverted){border-top:2px solid #00b5ad!important}.ui.inverted.teal.segment{background-color:#00b5ad!important;color:#2e3235!important}.ui.blue.segment:not(.inverted){border-top:2px solid #2185d0!important}.ui.inverted.blue.segment{background-color:#2185d0!important;color:#2e3235!important}.ui.violet.segment:not(.inverted){border-top:2px solid #6435c9!important}.ui.inverted.violet.segment{background-color:#6435c9!important;color:#2e3235!important}.ui.purple.segment:not(.inverted){border-top:2px solid #a333c8!important}.ui.inverted.purple.segment{background-color:#a333c8!important;color:#2e3235!important}.ui.pink.segment:not(.inverted){border-top:2px solid #e03997!important}.ui.inverted.pink.segment{background-color:#e03997!important;color:#2e3235!important}.ui.brown.segment:not(.inverted){border-top:2px solid #a5673f!important}.ui.inverted.brown.segment{background-color:#a5673f!important;color:#2e3235!important}.ui.grey.segment:not(.inverted){border-top:2px solid #767676!important}.ui.inverted.grey.segment{background-color:#767676!important;color:#2e3235!important}.ui.black.segment:not(.inverted){border-top:2px solid #f9fafb!important}.ui.inverted.black.segment{background-color:#f9fafb!important;color:#2e3235!important}.ui[class*="left aligned"].segment{text-align:left}.ui[class*="right aligned"].segment{text-align:right}.ui[class*="center aligned"].segment{text-align:center}.ui.floated.segment,.ui[class*="left floated"].segment{float:left;margin-right:1em}.ui[class*="right floated"].segment{float:right;margin-left:1em}.ui.inverted.segment{border:none;box-shadow:none}.ui.inverted.segment,.ui.primary.inverted.segment{background:#f9fafb;color:rgba(0,0,0,.9)}.ui.inverted.segment .segment{color:#ddd}.ui.inverted.segment .inverted.segment{color:rgba(0,0,0,.9)}.ui.inverted.attached.segment{border-color:#34393d}.ui.secondary.segment{background:#4b5257;color:rgba(255,255,255,.6)}.ui.secondary.inverted.segment{background:#fff linear-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.2) 100%);color:rgba(0,0,0,.8)}.ui.tertiary.segment{background:#666e74;color:rgba(255,255,255,.6)}.ui.tertiary.inverted.segment{background:#fff linear-gradient(rgba(255,255,255,.35) 0,rgba(255,255,255,.35) 100%);color:rgba(0,0,0,.8)}.ui.attached.segment{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% - (-1px * 2));max-width:calc(100% - (-1px * 2));box-shadow:none;border:1px solid #3b3c3e}.ui.attached:not(.message)+.ui.attached.segment:not(.top){border-top:none}.ui[class*="top attached"].segment{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.35714286rem .35714286rem 0 0}.ui.segment[class*="top attached"]:first-child{margin-top:0}.ui.segment[class*="bottom attached"]{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),none;border-radius:0 0 .35714286rem .35714286rem}.ui.segment[class*="bottom attached"]:last-child{margin-bottom:0}.ui.mini.segment,.ui.mini.segments .segment{font-size:.78571429rem}.ui.tiny.segment,.ui.tiny.segments .segment{font-size:.85714286rem}.ui.small.segment,.ui.small.segments .segment{font-size:.92857143rem}.ui.segment,.ui.segments .segment{font-size:1rem}.ui.large.segment,.ui.large.segments .segment{font-size:1.14285714rem}.ui.big.segment,.ui.big.segments .segment{font-size:1.28571429rem}.ui.huge.segment,.ui.huge.segments .segment{font-size:1.42857143rem}.ui.massive.segment,.ui.massive.segments .segment{font-size:1.71428571rem}.ui.steps{display:inline-flex;flex-direction:row;align-items:stretch;margin:1em 0;background:'';box-shadow:none;line-height:1.14285714em;border-radius:.35714286rem;border:1px solid rgba(24,26,28,.45)}.ui.steps:first-child{margin-top:0}.ui.steps:last-child{margin-bottom:0}.ui.steps .step{position:relative;display:flex;flex:1 0 auto;flex-wrap:wrap;flex-direction:row;vertical-align:middle;align-items:center;justify-content:center;margin:0 0;padding:1.14285714em 2em;background:#2e3235;color:#ddd;box-shadow:none;border-radius:0;border:none;border-right:1px solid rgba(24,26,28,.45);transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease}.ui.steps .step:after{display:none;position:absolute;z-index:2;content:'';top:50%;right:0;border:medium none;background-color:#2e3235;width:1.14285714em;height:1.14285714em;border-style:solid;border-color:rgba(24,26,28,.45);border-width:0 1px 1px 0;transition:background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;transform:translateY(-50%) translateX(50%) rotate(-45deg)}.ui.steps .step:first-child{padding-left:2em;border-radius:.35714286rem 0 0 .35714286rem}.ui.steps .step:last-child{border-radius:0 .35714286rem .35714286rem 0}.ui.steps .step:last-child{border-right:none;margin-right:0}.ui.steps .step:only-child{border-radius:.35714286rem}.ui.steps .step .title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1.14285714em;font-weight:600}.ui.steps .step>.title{width:100%}.ui.steps .step .description{font-weight:400;font-size:.92857143em;color:#ddd}.ui.steps .step>.description{width:100%}.ui.steps .step .title~.description{margin-top:.25em}.ui.steps .step>.icon{line-height:1;font-size:2.5em;margin:0 1rem 0 0}.ui.steps .step>.icon,.ui.steps .step>.icon~.content{display:block;flex:0 1 auto;align-self:middle}.ui.steps .step>.icon~.content{flex-grow:1 0 auto}.ui.steps:not(.vertical) .step>.icon{width:auto}.ui.steps .link.step,.ui.steps a.step{cursor:pointer}.ui.ordered.steps{counter-reset:ordered}.ui.ordered.steps .step:before{display:block;position:static;text-align:center;content:counters(ordered, ".");align-self:middle;margin-right:1rem;font-size:2.5em;counter-increment:ordered;font-family:inherit;font-weight:600}.ui.ordered.steps .step>*{display:block;align-self:middle}.ui.vertical.steps{display:inline-flex;flex-direction:column;overflow:visible}.ui.vertical.steps .step{justify-content:flex-start;border-radius:0;padding:1.14285714em 2em;border-right:none;border-bottom:1px solid rgba(24,26,28,.45)}.ui.vertical.steps .step:first-child{padding:1.14285714em 2em;border-radius:.35714286rem .35714286rem 0 0}.ui.vertical.steps .step:last-child{border-bottom:none;border-radius:0 0 .35714286rem .35714286rem}.ui.vertical.steps .step:only-child{border-radius:.35714286rem}.ui.vertical.steps .step:after{display:none}.ui.vertical.steps .step:after{top:50%;right:0;border-width:0 1px 1px 0}.ui.vertical.steps .step:after{display:none}.ui.vertical.steps .active.step:after{display:block}.ui.vertical.steps .step:last-child:after{display:none}.ui.vertical.steps .active.step:last-child:after{display:block}@media only screen and (max-width:767px){.ui.steps:not(.unstackable){display:inline-flex;overflow:visible;flex-direction:column}.ui.steps:not(.unstackable) .step{width:100%!important;flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui.steps:not(.unstackable) .step:first-child{padding:1.14285714em 2em;border-radius:.35714286rem .35714286rem 0 0}.ui.steps:not(.unstackable) .step:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui.steps:not(.unstackable) .step:after{display:none!important}.ui.steps:not(.unstackable) .step .content{text-align:center}.ui.ordered.steps:not(.unstackable) .step:before,.ui.steps:not(.unstackable) .step>.icon{margin:0 0 1rem 0}}.ui.steps .link.step:hover,.ui.steps .link.step:hover::after,.ui.steps a.step:hover,.ui.steps a.step:hover::after{background:#34393d;color:rgba(255,255,255,.8)}.ui.steps .link.step:active,.ui.steps .link.step:active::after,.ui.steps a.step:active,.ui.steps a.step:active::after{background:#4b5257;color:rgba(255,255,255,.9)}.ui.steps .step.active{cursor:auto;background:#4b5257}.ui.steps .step.active:after{background:#4b5257}.ui.steps .step.active .title{color:#6987af}.ui.ordered.steps .step.active:before,.ui.steps .active.step .icon{color:rgba(255,255,255,.95)}.ui.steps .step:after{display:block}.ui.steps .active.step:after{display:block}.ui.steps .step:last-child:after{display:none}.ui.steps .active.step:last-child:after{display:none}.ui.steps .link.active.step:hover,.ui.steps .link.active.step:hover::after,.ui.steps a.active.step:hover,.ui.steps a.active.step:hover::after{cursor:pointer;background:#dcddde;color:#ddd}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{color:#21ba45}.ui.steps .disabled.step{cursor:auto;background:#2e3235;pointer-events:none}.ui.steps .disabled.step,.ui.steps .disabled.step .description,.ui.steps .disabled.step .title{color:rgba(255,255,255,.2)}.ui.steps .disabled.step:after{background:#2e3235}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].steps{display:inline-flex;overflow:visible;flex-direction:column}.ui[class*="tablet stackable"].steps .step{flex-direction:column;border-radius:0;padding:1.14285714em 2em}.ui[class*="tablet stackable"].steps .step:first-child{padding:1.14285714em 2em;border-radius:.35714286rem .35714286rem 0 0}.ui[class*="tablet stackable"].steps .step:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui[class*="tablet stackable"].steps .step:after{display:none!important}.ui[class*="tablet stackable"].steps .step .content{text-align:center}.ui[class*="tablet stackable"].ordered.steps .step:before,.ui[class*="tablet stackable"].steps .step>.icon{margin:0 0 1rem 0}}.ui.fluid.steps{display:flex;width:100%}.ui.attached.steps{width:calc(100% + (--1px * 2))!important;margin:0 -1px 0;max-width:calc(100% + (--1px * 2));border-radius:.35714286rem .35714286rem 0 0}.ui.attached.steps .step:first-child{border-radius:.35714286rem 0 0 0}.ui.attached.steps .step:last-child{border-radius:0 .35714286rem 0 0}.ui.bottom.attached.steps{margin:0 -1px 0;border-radius:0 0 .35714286rem .35714286rem}.ui.bottom.attached.steps .step:first-child{border-radius:0 0 0 .35714286rem}.ui.bottom.attached.steps .step:last-child{border-radius:0 0 .35714286rem 0}.ui.eight.steps,.ui.five.steps,.ui.four.steps,.ui.one.steps,.ui.seven.steps,.ui.six.steps,.ui.three.steps,.ui.two.steps{width:100%}.ui.eight.steps>.step,.ui.five.steps>.step,.ui.four.steps>.step,.ui.one.steps>.step,.ui.seven.steps>.step,.ui.six.steps>.step,.ui.three.steps>.step,.ui.two.steps>.step{flex-wrap:nowrap}.ui.one.steps>.step{width:100%}.ui.two.steps>.step{width:50%}.ui.three.steps>.step{width:33.333%}.ui.four.steps>.step{width:25%}.ui.five.steps>.step{width:20%}.ui.six.steps>.step{width:16.666%}.ui.seven.steps>.step{width:14.285%}.ui.eight.steps>.step{width:12.5%}.ui.mini.step,.ui.mini.steps .step{font-size:.78571429rem}.ui.tiny.step,.ui.tiny.steps .step{font-size:.85714286rem}.ui.small.step,.ui.small.steps .step{font-size:.92857143rem}.ui.step,.ui.steps .step{font-size:1rem}.ui.large.step,.ui.large.steps .step{font-size:1.14285714rem}.ui.big.step,.ui.big.steps .step{font-size:1.28571429rem}.ui.huge.step,.ui.huge.steps .step{font-size:1.42857143rem}.ui.massive.step,.ui.massive.steps .step{font-size:1.71428571rem}@font-face{font-family:Step;src:url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff')}.ui.ordered.steps .step.completed:before,.ui.steps .step.completed>.icon:before{font-family:Step;content:'\e800'}.ui.breadcrumb{line-height:1;display:inline-block;margin:0 0;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.7;margin:0 .21428571rem 0;font-size:.92857143em;color:rgba(255,255,255,.5);vertical-align:baseline}.ui.breadcrumb a{color:#6987af}.ui.breadcrumb a:hover{color:#729ad0}.ui.breadcrumb .icon.divider{font-size:.85714286em;vertical-align:baseline}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.78571429em 1em}.ui.breadcrumb .active.section{font-weight:600}.ui.mini.breadcrumb{font-size:.78571429rem}.ui.tiny.breadcrumb{font-size:.85714286rem}.ui.small.breadcrumb{font-size:.92857143rem}.ui.breadcrumb{font-size:1rem}.ui.large.breadcrumb{font-size:1.14285714rem}.ui.big.breadcrumb{font-size:1.28571429rem}.ui.huge.breadcrumb{font-size:1.42857143rem}.ui.massive.breadcrumb{font-size:1.71428571rem}.ui.form{position:relative;max-width:100%}.ui.form>p{margin:1em 0}.ui.form .field{clear:both;margin:0 0 1em}.ui.form .field:last-child,.ui.form .fields:last-child .field{margin-bottom:0}.ui.form .fields .field{clear:both;margin:0}.ui.form .field>label{display:block;margin:0 0 .28571429rem 0;color:#ddd;font-size:.92857143em;font-weight:600;text-transform:none}.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=file],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=text],.ui.form input[type=time],.ui.form input[type=url],.ui.form textarea{width:100%;vertical-align:top}.ui.form ::-webkit-datetime-edit,.ui.form ::-webkit-inner-spin-button{height:1.21428571em}.ui.form input:not([type]),.ui.form input[type=date],.ui.form input[type=datetime-local],.ui.form input[type=email],.ui.form input[type=file],.ui.form input[type=number],.ui.form input[type=password],.ui.form input[type=search],.ui.form input[type=tel],.ui.form input[type=text],.ui.form input[type=time],.ui.form input[type=url]{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;margin:0;outline-offset:var(--unfocused-outline-offset);outline-width:var(--focused-outline-width);outline-color:var(--unfocused-outline-color);outline-style:var(--focused-outline-style);-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);line-height:1.21428571em;padding:.67857143em 1em;font-size:1em;background:#2e3235;border:1px solid rgba(24,26,28,.45);color:#ddd;border-radius:.35714286rem;box-shadow:0 0 0 0 transparent inset;transition:color .1s ease,border-color .1s ease,outline-offset .1s ease,outline-color .1s ease}.ui.form input:not([type]):focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=email]:focus,.ui.form input[type=file]:focus,.ui.form input[type=number]:focus,.ui.form input[type=password]:focus,.ui.form input[type=search]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=text]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus{outline-offset:var(--focused-outline-offset);outline-color:var(--focused-outline-color)}.ui.form textarea{margin:0;-webkit-appearance:none;tap-highlight-color:rgba(255,255,255,0);padding:.78571429em 1em;background:#2e3235;border:1px solid rgba(24,26,28,.45);outline-offset:var(--unfocused-outline-offset);outline-width:var(--focused-outline-width);outline-color:var(--unfocused-outline-color);outline-style:var(--focused-outline-style);color:#ddd;border-radius:.35714286rem;box-shadow:0 0 0 0 transparent inset;transition:color .1s ease,border-color .1s ease,outline-offset .1s ease,outline-color .1s ease;font-size:1em;line-height:1.2857;resize:vertical}.ui.form textarea:focus{outline-offset:var(--focused-outline-offset);outline-color:var(--focused-outline-color)}.ui.form textarea:not([rows]){height:12em;min-height:8em;max-height:24em}.ui.form input[type=checkbox],.ui.form textarea{vertical-align:top}.ui.form input.attached{width:auto}.ui.form select{display:block;height:auto;width:100%;background:#2e3235;border:1px solid rgba(24,26,28,.45);border-radius:.35714286rem;box-shadow:0 0 0 0 transparent inset;padding:.62em 1em;color:#ddd;transition:color .1s ease,border-color .1s ease,outline-offset .1s ease,outline-color .1s ease}.ui.form .field>.selection.dropdown{width:100%}.ui.form .field>.selection.dropdown>.dropdown.icon{float:right}.ui.form .inline.field>.selection.dropdown,.ui.form .inline.fields .field>.selection.dropdown{width:auto}.ui.form .inline.field>.selection.dropdown>.dropdown.icon,.ui.form .inline.fields .field>.selection.dropdown>.dropdown.icon{float:none}.ui.form .field .ui.input,.ui.form .fields .field .ui.input,.ui.form .wide.field .ui.input{width:100%}.ui.form .inline.field:not(.wide) .ui.input,.ui.form .inline.fields .field:not(.wide) .ui.input{width:auto;vertical-align:middle}.ui.form .field .ui.input input,.ui.form .fields .field .ui.input input{width:auto}.ui.form .eight.fields .ui.input input,.ui.form .five.fields .ui.input input,.ui.form .four.fields .ui.input input,.ui.form .nine.fields .ui.input input,.ui.form .seven.fields .ui.input input,.ui.form .six.fields .ui.input input,.ui.form .ten.fields .ui.input input,.ui.form .three.fields .ui.input input,.ui.form .two.fields .ui.input input,.ui.form .wide.field .ui.input input{flex:1 0 auto;width:0}.ui.form .error.message,.ui.form .success.message,.ui.form .warning.message{display:none}.ui.form .message:first-child{margin-top:0}.ui.form .field .prompt.label{white-space:normal;background:#2e3235!important;border:1px solid #e0b4b4!important;color:#9f3a38!important}.ui.form .inline.field .prompt,.ui.form .inline.fields .field .prompt{vertical-align:top;margin:-.25em 0 -.5em .5em}.ui.form .inline.field .prompt:before,.ui.form .inline.fields .field .prompt:before{border-width:0 0 1px 1px;bottom:auto;right:auto;top:50%;left:0}.ui.form .field.field input:-webkit-autofill{box-shadow:0 0 0 100px ivory inset!important;border-color:#e5dfa1!important}.ui.form .field.field input:-webkit-autofill:focus{box-shadow:0 0 0 100px ivory inset!important;border-color:#d5c315!important}.ui.form .error.error input:-webkit-autofill{box-shadow:0 0 0 100px #fffaf0 inset!important;border-color:#e0b4b4!important}.ui.form ::-webkit-input-placeholder{color:#777}.ui.form :-ms-input-placeholder{color:#777!important}.ui.form ::-moz-placeholder{color:#777}.ui.form :focus::-webkit-input-placeholder{color:#777}.ui.form :focus:-ms-input-placeholder{color:#777!important}.ui.form :focus::-moz-placeholder{color:#777}.ui.form .error ::-webkit-input-placeholder{color:#e7bdbc}.ui.form .error :-ms-input-placeholder{color:#e7bdbc!important}.ui.form .error ::-moz-placeholder{color:#e7bdbc}.ui.form .error :focus::-webkit-input-placeholder{color:#da9796}.ui.form .error :focus:-ms-input-placeholder{color:#da9796!important}.ui.form .error :focus::-moz-placeholder{color:#da9796}.ui.form input:not([type]):focus,.ui.form input[type=date]:focus,.ui.form input[type=datetime-local]:focus,.ui.form input[type=email]:focus,.ui.form input[type=file]:focus,.ui.form input[type=number]:focus,.ui.form input[type=password]:focus,.ui.form input[type=search]:focus,.ui.form input[type=tel]:focus,.ui.form input[type=text]:focus,.ui.form input[type=time]:focus,.ui.form input[type=url]:focus{color:rgba(255,255,255,.95);border-color:#85b7d9;border-radius:.35714286rem;background:#2e3235;box-shadow:0 0 0 0 rgba(24,26,28,.35) inset}.ui.form textarea:focus{color:rgba(255,255,255,.95);border-color:#85b7d9;border-radius:.35714286rem;background:#2e3235;box-shadow:0 0 0 0 rgba(24,26,28,.35) inset;-webkit-appearance:none}.ui.form.success .success.message:not(:empty){display:block}.ui.form.success .compact.success.message:not(:empty){display:inline-block}.ui.form.success .icon.success.message:not(:empty){display:flex}.ui.form.warning .warning.message:not(:empty){display:block}.ui.form.warning .compact.warning.message:not(:empty){display:inline-block}.ui.form.warning .icon.warning.message:not(:empty){display:flex}.ui.form.error .error.message:not(:empty){display:block}.ui.form.error .compact.error.message:not(:empty){display:inline-block}.ui.form.error .icon.error.message:not(:empty){display:flex}.ui.form .field.error .input,.ui.form .field.error label,.ui.form .fields.error .field .input,.ui.form .fields.error .field label{color:#9f3a38}.ui.form .field.error .corner.label,.ui.form .fields.error .field .corner.label{border-color:#9f3a38;color:#2e3235}.ui.form .field.error input:not([type]),.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=email],.ui.form .field.error input[type=file],.ui.form .field.error input[type=number],.ui.form .field.error input[type=password],.ui.form .field.error input[type=search],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=text],.ui.form .field.error input[type=time],.ui.form .field.error input[type=url],.ui.form .field.error select,.ui.form .field.error textarea,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=file],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=url],.ui.form .fields.error .field select,.ui.form .fields.error .field textarea{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;border-radius:'';box-shadow:none}.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=file]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=url]:focus,.ui.form .field.error select:focus,.ui.form .field.error textarea:focus{background:#fff6f6;border-color:#e0b4b4;color:#9f3a38;-webkit-appearance:none;box-shadow:none}.ui.form .field.error select{-webkit-appearance:menulist-button}.ui.form .field.error .ui.dropdown,.ui.form .field.error .ui.dropdown .item,.ui.form .field.error .ui.dropdown .text,.ui.form .fields.error .field .ui.dropdown,.ui.form .fields.error .field .ui.dropdown .item{background:#fff6f6;color:#9f3a38}.ui.form .field.error .ui.dropdown,.ui.form .fields.error .field .ui.dropdown{border-color:#e0b4b4!important}.ui.form .field.error .ui.dropdown:hover,.ui.form .fields.error .field .ui.dropdown:hover{border-color:#e0b4b4!important}.ui.form .field.error .ui.dropdown:hover .menu,.ui.form .fields.error .field .ui.dropdown:hover .menu{border-color:#e0b4b4}.ui.form .field.error .ui.multiple.selection.dropdown>.label,.ui.form .fields.error .field .ui.multiple.selection.dropdown>.label{background-color:#eacbcb;color:#9f3a38}.ui.form .field.error .ui.dropdown .menu .item:hover,.ui.form .fields.error .field .ui.dropdown .menu .item:hover{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .selected.item,.ui.form .fields.error .field .ui.dropdown .menu .selected.item{background-color:#fbe7e7}.ui.form .field.error .ui.dropdown .menu .active.item,.ui.form .fields.error .field .ui.dropdown .menu .active.item{background-color:#fdcfcf!important}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label{color:#9f3a38}.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before,.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before{background:#fff6f6;border-color:#e0b4b4}.ui.form .field.error .checkbox .box:after,.ui.form .field.error .checkbox label:after,.ui.form .fields.error .field .checkbox .box:after,.ui.form .fields.error .field .checkbox label:after{color:#9f3a38}.ui.form .disabled.field,.ui.form .disabled.fields .field,.ui.form .field :disabled{pointer-events:none;opacity:.45}.ui.form .field.disabled>label,.ui.form .fields.disabled>label{opacity:.45}.ui.form .field.disabled :disabled{opacity:1}.ui.loading.form{position:relative;cursor:default;pointer-events:none}.ui.loading.form:before{position:absolute;content:'';top:0;left:0;background:rgba(255,255,255,.8);width:100%;height:100%;z-index:100}.ui.loading.form:after{position:absolute;content:'';top:50%;left:50%;margin:-1.5em 0 0 -1.5em;width:3em;height:3em;animation:form-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent;visibility:visible;z-index:101}@keyframes form-spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}.ui.form .required.field>.checkbox:after,.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>label:after{margin:-.2em 0 0 .2em;content:'*';color:#db2828}.ui.form .required.field>label:after,.ui.form .required.fields.grouped>label:after,.ui.form .required.fields:not(.grouped)>.field>label:after{display:inline-block;vertical-align:top}.ui.form .required.field>.checkbox:after,.ui.form .required.fields:not(.grouped)>.field>.checkbox:after{position:absolute;top:0;left:100%}.ui.form .inverted.segment .ui.checkbox .box,.ui.form .inverted.segment .ui.checkbox label,.ui.form .inverted.segment label,.ui.inverted.form .inline.field>label,.ui.inverted.form .inline.field>p,.ui.inverted.form .inline.fields .field>label,.ui.inverted.form .inline.fields .field>p,.ui.inverted.form .inline.fields>label,.ui.inverted.form .ui.checkbox .box,.ui.inverted.form .ui.checkbox label,.ui.inverted.form label{color:rgba(0,0,0,.9)}.ui.inverted.form input:not([type]),.ui.inverted.form input[type=date],.ui.inverted.form input[type=datetime-local],.ui.inverted.form input[type=email],.ui.inverted.form input[type=file],.ui.inverted.form input[type=number],.ui.inverted.form input[type=password],.ui.inverted.form input[type=search],.ui.inverted.form input[type=tel],.ui.inverted.form input[type=text],.ui.inverted.form input[type=time],.ui.inverted.form input[type=url]{background:#2e3235;border-color:rgba(0,0,0,.1);color:#ddd;box-shadow:none}.ui.form .grouped.fields{display:block;margin:0 0 1em}.ui.form .grouped.fields:last-child{margin-bottom:0}.ui.form .grouped.fields>label{margin:0 0 .28571429rem 0;color:#ddd;font-size:.92857143em;font-weight:600;text-transform:none}.ui.form .grouped.fields .field,.ui.form .grouped.inline.fields .field{display:block;margin:.5em 0;padding:0}.ui.form .fields{display:flex;flex-direction:row;margin:0 -.5em 1em}.ui.form .fields>.field{flex:0 1 auto;padding-left:.5em;padding-right:.5em}.ui.form .fields>.field:first-child{border-left:none;box-shadow:none}.ui.form .two.fields>.field,.ui.form .two.fields>.fields{width:50%}.ui.form .three.fields>.field,.ui.form .three.fields>.fields{width:33.33333333%}.ui.form .four.fields>.field,.ui.form .four.fields>.fields{width:25%}.ui.form .five.fields>.field,.ui.form .five.fields>.fields{width:20%}.ui.form .six.fields>.field,.ui.form .six.fields>.fields{width:16.66666667%}.ui.form .seven.fields>.field,.ui.form .seven.fields>.fields{width:14.28571429%}.ui.form .eight.fields>.field,.ui.form .eight.fields>.fields{width:12.5%}.ui.form .nine.fields>.field,.ui.form .nine.fields>.fields{width:11.11111111%}.ui.form .ten.fields>.field,.ui.form .ten.fields>.fields{width:10%}@media only screen and (max-width:767px){.ui.form .fields{flex-wrap:wrap}.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .eight.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .nine.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .seven.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .six.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .ten.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable)>.field,.ui[class*="equal width"].form:not(.unstackable) .fields>.field{width:100%!important;margin:0 0 1em}}.ui.form .fields .wide.field{width:6.25%;padding-left:.5em;padding-right:.5em}.ui.form .one.wide.field{width:6.25%!important}.ui.form .two.wide.field{width:12.5%!important}.ui.form .three.wide.field{width:18.75%!important}.ui.form .four.wide.field{width:25%!important}.ui.form .five.wide.field{width:31.25%!important}.ui.form .six.wide.field{width:37.5%!important}.ui.form .seven.wide.field{width:43.75%!important}.ui.form .eight.wide.field{width:50%!important}.ui.form .nine.wide.field{width:56.25%!important}.ui.form .ten.wide.field{width:62.5%!important}.ui.form .eleven.wide.field{width:68.75%!important}.ui.form .twelve.wide.field{width:75%!important}.ui.form .thirteen.wide.field{width:81.25%!important}.ui.form .fourteen.wide.field{width:87.5%!important}.ui.form .fifteen.wide.field{width:93.75%!important}.ui.form .sixteen.wide.field{width:100%!important}@media only screen and (max-width:767px){.ui.form:not(.unstackable) .fields:not(.unstackable)>.eight.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.eleven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fifteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.five.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.four.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.fourteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.nine.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.seven.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.six.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.sixteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.ten.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.thirteen.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.three.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.twelve.wide.field,.ui.form:not(.unstackable) .fields:not(.unstackable)>.two.wide.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .five.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .four.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .three.fields:not(.unstackable)>.fields,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.field,.ui.form:not(.unstackable) .two.fields:not(.unstackable)>.fields{width:100%!important}.ui.form .fields{margin-bottom:0}}.ui.form [class*="equal width"].fields>.field,.ui[class*="equal width"].form .fields>.field{width:100%;flex:1 1 auto}.ui.form .inline.fields{margin:0 0 1em;align-items:center}.ui.form .inline.fields .field{margin:0;padding:0 1em 0 0}.ui.form .inline.field>label,.ui.form .inline.field>p,.ui.form .inline.fields .field>label,.ui.form .inline.fields .field>p,.ui.form .inline.fields>label{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:baseline;font-size:.92857143em;font-weight:600;color:#ddd;text-transform:none}.ui.form .inline.fields>label{margin:.035714em 1em 0 0}.ui.form .inline.field>input,.ui.form .inline.field>select,.ui.form .inline.fields .field>input,.ui.form .inline.fields .field>select{display:inline-block;width:auto;margin-top:0;margin-bottom:0;vertical-align:middle;font-size:1em}.ui.form .inline.field>:first-child,.ui.form .inline.fields .field>:first-child{margin:0 .85714286em 0 0}.ui.form .inline.field>:only-child,.ui.form .inline.fields .field>:only-child{margin:0}.ui.form .inline.fields .wide.field{display:flex;align-items:center}.ui.form .inline.fields .wide.field>input,.ui.form .inline.fields .wide.field>select{width:100%}.ui.mini.form{font-size:.78571429rem}.ui.tiny.form{font-size:.85714286rem}.ui.small.form{font-size:.92857143rem}.ui.form{font-size:1rem}.ui.large.form{font-size:1.14285714rem}.ui.big.form{font-size:1.28571429rem}.ui.huge.form{font-size:1.42857143rem}.ui.massive.form{font-size:1.71428571rem}.ui.grid{display:flex;flex-direction:row;flex-wrap:wrap;align-items:stretch;padding:0}.ui.grid{margin-top:-1rem;margin-bottom:-1rem;margin-left:-1rem;margin-right:-1rem}.ui.relaxed.grid{margin-left:-1.5rem;margin-right:-1.5rem}.ui[class*="very relaxed"].grid{margin-left:-2.5rem;margin-right:-2.5rem}.ui.grid+.grid{margin-top:1rem}.ui.grid>.column:not(.row),.ui.grid>.row>.column{position:relative;display:inline-block;width:6.25%;padding-left:1rem;padding-right:1rem;vertical-align:top}.ui.grid>*{padding-left:1rem;padding-right:1rem}.ui.grid>.row{position:relative;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:inherit;align-items:stretch;width:100%!important;padding:0;padding-top:1rem;padding-bottom:1rem}.ui.grid>.column:not(.row){padding-top:1rem;padding-bottom:1rem}.ui.grid>.row>.column{margin-top:0;margin-bottom:0}.ui.grid>.row>.column>img,.ui.grid>.row>img{max-width:100%}.ui.grid>.ui.grid:first-child{margin-top:0}.ui.grid>.ui.grid:last-child{margin-bottom:0}.ui.aligned.grid .column>.segment:not(.compact):not(.attached),.ui.grid .aligned.row>.column>.segment:not(.compact):not(.attached){width:100%}.ui.grid .row+.ui.divider{flex-grow:1;margin:1rem 1rem}.ui.grid .column+.ui.vertical.divider{height:calc(50% - (2rem / 2))}.ui.grid>.column:last-child>.horizontal.segment,.ui.grid>.row>.column:last-child>.horizontal.segment{box-shadow:none}@media only screen and (max-width:767px){.ui.page.grid{width:auto;padding-left:0;padding-right:0;margin-left:0;margin-right:0}}@media only screen and (min-width:768px) and (max-width:991px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:2em;padding-right:2em}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:3%;padding-right:3%}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:15%;padding-right:15%}}@media only screen and (min-width:1920px){.ui.page.grid{width:auto;margin-left:0;margin-right:0;padding-left:23%;padding-right:23%}}.ui.grid>.column:only-child,.ui.grid>.row>.column:only-child{width:100%}.ui[class*="one column"].grid>.column:not(.row),.ui[class*="one column"].grid>.row>.column{width:100%}.ui[class*="two column"].grid>.column:not(.row),.ui[class*="two column"].grid>.row>.column{width:50%}.ui[class*="three column"].grid>.column:not(.row),.ui[class*="three column"].grid>.row>.column{width:33.33333333%}.ui[class*="four column"].grid>.column:not(.row),.ui[class*="four column"].grid>.row>.column{width:25%}.ui[class*="five column"].grid>.column:not(.row),.ui[class*="five column"].grid>.row>.column{width:20%}.ui[class*="six column"].grid>.column:not(.row),.ui[class*="six column"].grid>.row>.column{width:16.66666667%}.ui[class*="seven column"].grid>.column:not(.row),.ui[class*="seven column"].grid>.row>.column{width:14.28571429%}.ui[class*="eight column"].grid>.column:not(.row),.ui[class*="eight column"].grid>.row>.column{width:12.5%}.ui[class*="nine column"].grid>.column:not(.row),.ui[class*="nine column"].grid>.row>.column{width:11.11111111%}.ui[class*="ten column"].grid>.column:not(.row),.ui[class*="ten column"].grid>.row>.column{width:10%}.ui[class*="eleven column"].grid>.column:not(.row),.ui[class*="eleven column"].grid>.row>.column{width:9.09090909%}.ui[class*="twelve column"].grid>.column:not(.row),.ui[class*="twelve column"].grid>.row>.column{width:8.33333333%}.ui[class*="thirteen column"].grid>.column:not(.row),.ui[class*="thirteen column"].grid>.row>.column{width:7.69230769%}.ui[class*="fourteen column"].grid>.column:not(.row),.ui[class*="fourteen column"].grid>.row>.column{width:7.14285714%}.ui[class*="fifteen column"].grid>.column:not(.row),.ui[class*="fifteen column"].grid>.row>.column{width:6.66666667%}.ui[class*="sixteen column"].grid>.column:not(.row),.ui[class*="sixteen column"].grid>.row>.column{width:6.25%}.ui.grid>[class*="one column"].row>.column{width:100%!important}.ui.grid>[class*="two column"].row>.column{width:50%!important}.ui.grid>[class*="three column"].row>.column{width:33.33333333%!important}.ui.grid>[class*="four column"].row>.column{width:25%!important}.ui.grid>[class*="five column"].row>.column{width:20%!important}.ui.grid>[class*="six column"].row>.column{width:16.66666667%!important}.ui.grid>[class*="seven column"].row>.column{width:14.28571429%!important}.ui.grid>[class*="eight column"].row>.column{width:12.5%!important}.ui.grid>[class*="nine column"].row>.column{width:11.11111111%!important}.ui.grid>[class*="ten column"].row>.column{width:10%!important}.ui.grid>[class*="eleven column"].row>.column{width:9.09090909%!important}.ui.grid>[class*="twelve column"].row>.column{width:8.33333333%!important}.ui.grid>[class*="thirteen column"].row>.column{width:7.69230769%!important}.ui.grid>[class*="fourteen column"].row>.column{width:7.14285714%!important}.ui.grid>[class*="fifteen column"].row>.column{width:6.66666667%!important}.ui.grid>[class*="sixteen column"].row>.column{width:6.25%!important}.ui.celled.page.grid{box-shadow:none}.ui.column.grid>[class*="one wide"].column,.ui.grid>.column.row>[class*="one wide"].column,.ui.grid>.row>[class*="one wide"].column,.ui.grid>[class*="one wide"].column{width:6.25%!important}.ui.column.grid>[class*="two wide"].column,.ui.grid>.column.row>[class*="two wide"].column,.ui.grid>.row>[class*="two wide"].column,.ui.grid>[class*="two wide"].column{width:12.5%!important}.ui.column.grid>[class*="three wide"].column,.ui.grid>.column.row>[class*="three wide"].column,.ui.grid>.row>[class*="three wide"].column,.ui.grid>[class*="three wide"].column{width:18.75%!important}.ui.column.grid>[class*="four wide"].column,.ui.grid>.column.row>[class*="four wide"].column,.ui.grid>.row>[class*="four wide"].column,.ui.grid>[class*="four wide"].column{width:25%!important}.ui.column.grid>[class*="five wide"].column,.ui.grid>.column.row>[class*="five wide"].column,.ui.grid>.row>[class*="five wide"].column,.ui.grid>[class*="five wide"].column{width:31.25%!important}.ui.column.grid>[class*="six wide"].column,.ui.grid>.column.row>[class*="six wide"].column,.ui.grid>.row>[class*="six wide"].column,.ui.grid>[class*="six wide"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide"].column,.ui.grid>.column.row>[class*="seven wide"].column,.ui.grid>.row>[class*="seven wide"].column,.ui.grid>[class*="seven wide"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide"].column,.ui.grid>.column.row>[class*="eight wide"].column,.ui.grid>.row>[class*="eight wide"].column,.ui.grid>[class*="eight wide"].column{width:50%!important}.ui.column.grid>[class*="nine wide"].column,.ui.grid>.column.row>[class*="nine wide"].column,.ui.grid>.row>[class*="nine wide"].column,.ui.grid>[class*="nine wide"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide"].column,.ui.grid>.column.row>[class*="ten wide"].column,.ui.grid>.row>[class*="ten wide"].column,.ui.grid>[class*="ten wide"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide"].column,.ui.grid>.column.row>[class*="eleven wide"].column,.ui.grid>.row>[class*="eleven wide"].column,.ui.grid>[class*="eleven wide"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide"].column,.ui.grid>.column.row>[class*="twelve wide"].column,.ui.grid>.row>[class*="twelve wide"].column,.ui.grid>[class*="twelve wide"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide"].column,.ui.grid>.column.row>[class*="thirteen wide"].column,.ui.grid>.row>[class*="thirteen wide"].column,.ui.grid>[class*="thirteen wide"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide"].column,.ui.grid>.column.row>[class*="fourteen wide"].column,.ui.grid>.row>[class*="fourteen wide"].column,.ui.grid>[class*="fourteen wide"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide"].column,.ui.grid>.column.row>[class*="fifteen wide"].column,.ui.grid>.row>[class*="fifteen wide"].column,.ui.grid>[class*="fifteen wide"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide"].column,.ui.grid>.column.row>[class*="sixteen wide"].column,.ui.grid>.row>[class*="sixteen wide"].column,.ui.grid>[class*="sixteen wide"].column{width:100%!important}@media only screen and (min-width:320px) and (max-width:767px){.ui.column.grid>[class*="one wide mobile"].column,.ui.grid>.column.row>[class*="one wide mobile"].column,.ui.grid>.row>[class*="one wide mobile"].column,.ui.grid>[class*="one wide mobile"].column{width:6.25%!important}.ui.column.grid>[class*="two wide mobile"].column,.ui.grid>.column.row>[class*="two wide mobile"].column,.ui.grid>.row>[class*="two wide mobile"].column,.ui.grid>[class*="two wide mobile"].column{width:12.5%!important}.ui.column.grid>[class*="three wide mobile"].column,.ui.grid>.column.row>[class*="three wide mobile"].column,.ui.grid>.row>[class*="three wide mobile"].column,.ui.grid>[class*="three wide mobile"].column{width:18.75%!important}.ui.column.grid>[class*="four wide mobile"].column,.ui.grid>.column.row>[class*="four wide mobile"].column,.ui.grid>.row>[class*="four wide mobile"].column,.ui.grid>[class*="four wide mobile"].column{width:25%!important}.ui.column.grid>[class*="five wide mobile"].column,.ui.grid>.column.row>[class*="five wide mobile"].column,.ui.grid>.row>[class*="five wide mobile"].column,.ui.grid>[class*="five wide mobile"].column{width:31.25%!important}.ui.column.grid>[class*="six wide mobile"].column,.ui.grid>.column.row>[class*="six wide mobile"].column,.ui.grid>.row>[class*="six wide mobile"].column,.ui.grid>[class*="six wide mobile"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide mobile"].column,.ui.grid>.column.row>[class*="seven wide mobile"].column,.ui.grid>.row>[class*="seven wide mobile"].column,.ui.grid>[class*="seven wide mobile"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide mobile"].column,.ui.grid>.column.row>[class*="eight wide mobile"].column,.ui.grid>.row>[class*="eight wide mobile"].column,.ui.grid>[class*="eight wide mobile"].column{width:50%!important}.ui.column.grid>[class*="nine wide mobile"].column,.ui.grid>.column.row>[class*="nine wide mobile"].column,.ui.grid>.row>[class*="nine wide mobile"].column,.ui.grid>[class*="nine wide mobile"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide mobile"].column,.ui.grid>.column.row>[class*="ten wide mobile"].column,.ui.grid>.row>[class*="ten wide mobile"].column,.ui.grid>[class*="ten wide mobile"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide mobile"].column,.ui.grid>.column.row>[class*="eleven wide mobile"].column,.ui.grid>.row>[class*="eleven wide mobile"].column,.ui.grid>[class*="eleven wide mobile"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide mobile"].column,.ui.grid>.column.row>[class*="twelve wide mobile"].column,.ui.grid>.row>[class*="twelve wide mobile"].column,.ui.grid>[class*="twelve wide mobile"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide mobile"].column,.ui.grid>.column.row>[class*="thirteen wide mobile"].column,.ui.grid>.row>[class*="thirteen wide mobile"].column,.ui.grid>[class*="thirteen wide mobile"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide mobile"].column,.ui.grid>.column.row>[class*="fourteen wide mobile"].column,.ui.grid>.row>[class*="fourteen wide mobile"].column,.ui.grid>[class*="fourteen wide mobile"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide mobile"].column,.ui.grid>.column.row>[class*="fifteen wide mobile"].column,.ui.grid>.row>[class*="fifteen wide mobile"].column,.ui.grid>[class*="fifteen wide mobile"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide mobile"].column,.ui.grid>.column.row>[class*="sixteen wide mobile"].column,.ui.grid>.row>[class*="sixteen wide mobile"].column,.ui.grid>[class*="sixteen wide mobile"].column{width:100%!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.column.grid>[class*="one wide tablet"].column,.ui.grid>.column.row>[class*="one wide tablet"].column,.ui.grid>.row>[class*="one wide tablet"].column,.ui.grid>[class*="one wide tablet"].column{width:6.25%!important}.ui.column.grid>[class*="two wide tablet"].column,.ui.grid>.column.row>[class*="two wide tablet"].column,.ui.grid>.row>[class*="two wide tablet"].column,.ui.grid>[class*="two wide tablet"].column{width:12.5%!important}.ui.column.grid>[class*="three wide tablet"].column,.ui.grid>.column.row>[class*="three wide tablet"].column,.ui.grid>.row>[class*="three wide tablet"].column,.ui.grid>[class*="three wide tablet"].column{width:18.75%!important}.ui.column.grid>[class*="four wide tablet"].column,.ui.grid>.column.row>[class*="four wide tablet"].column,.ui.grid>.row>[class*="four wide tablet"].column,.ui.grid>[class*="four wide tablet"].column{width:25%!important}.ui.column.grid>[class*="five wide tablet"].column,.ui.grid>.column.row>[class*="five wide tablet"].column,.ui.grid>.row>[class*="five wide tablet"].column,.ui.grid>[class*="five wide tablet"].column{width:31.25%!important}.ui.column.grid>[class*="six wide tablet"].column,.ui.grid>.column.row>[class*="six wide tablet"].column,.ui.grid>.row>[class*="six wide tablet"].column,.ui.grid>[class*="six wide tablet"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide tablet"].column,.ui.grid>.column.row>[class*="seven wide tablet"].column,.ui.grid>.row>[class*="seven wide tablet"].column,.ui.grid>[class*="seven wide tablet"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide tablet"].column,.ui.grid>.column.row>[class*="eight wide tablet"].column,.ui.grid>.row>[class*="eight wide tablet"].column,.ui.grid>[class*="eight wide tablet"].column{width:50%!important}.ui.column.grid>[class*="nine wide tablet"].column,.ui.grid>.column.row>[class*="nine wide tablet"].column,.ui.grid>.row>[class*="nine wide tablet"].column,.ui.grid>[class*="nine wide tablet"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide tablet"].column,.ui.grid>.column.row>[class*="ten wide tablet"].column,.ui.grid>.row>[class*="ten wide tablet"].column,.ui.grid>[class*="ten wide tablet"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide tablet"].column,.ui.grid>.column.row>[class*="eleven wide tablet"].column,.ui.grid>.row>[class*="eleven wide tablet"].column,.ui.grid>[class*="eleven wide tablet"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide tablet"].column,.ui.grid>.column.row>[class*="twelve wide tablet"].column,.ui.grid>.row>[class*="twelve wide tablet"].column,.ui.grid>[class*="twelve wide tablet"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide tablet"].column,.ui.grid>.column.row>[class*="thirteen wide tablet"].column,.ui.grid>.row>[class*="thirteen wide tablet"].column,.ui.grid>[class*="thirteen wide tablet"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide tablet"].column,.ui.grid>.column.row>[class*="fourteen wide tablet"].column,.ui.grid>.row>[class*="fourteen wide tablet"].column,.ui.grid>[class*="fourteen wide tablet"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide tablet"].column,.ui.grid>.column.row>[class*="fifteen wide tablet"].column,.ui.grid>.row>[class*="fifteen wide tablet"].column,.ui.grid>[class*="fifteen wide tablet"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide tablet"].column,.ui.grid>.column.row>[class*="sixteen wide tablet"].column,.ui.grid>.row>[class*="sixteen wide tablet"].column,.ui.grid>[class*="sixteen wide tablet"].column{width:100%!important}}@media only screen and (min-width:992px){.ui.column.grid>[class*="one wide computer"].column,.ui.grid>.column.row>[class*="one wide computer"].column,.ui.grid>.row>[class*="one wide computer"].column,.ui.grid>[class*="one wide computer"].column{width:6.25%!important}.ui.column.grid>[class*="two wide computer"].column,.ui.grid>.column.row>[class*="two wide computer"].column,.ui.grid>.row>[class*="two wide computer"].column,.ui.grid>[class*="two wide computer"].column{width:12.5%!important}.ui.column.grid>[class*="three wide computer"].column,.ui.grid>.column.row>[class*="three wide computer"].column,.ui.grid>.row>[class*="three wide computer"].column,.ui.grid>[class*="three wide computer"].column{width:18.75%!important}.ui.column.grid>[class*="four wide computer"].column,.ui.grid>.column.row>[class*="four wide computer"].column,.ui.grid>.row>[class*="four wide computer"].column,.ui.grid>[class*="four wide computer"].column{width:25%!important}.ui.column.grid>[class*="five wide computer"].column,.ui.grid>.column.row>[class*="five wide computer"].column,.ui.grid>.row>[class*="five wide computer"].column,.ui.grid>[class*="five wide computer"].column{width:31.25%!important}.ui.column.grid>[class*="six wide computer"].column,.ui.grid>.column.row>[class*="six wide computer"].column,.ui.grid>.row>[class*="six wide computer"].column,.ui.grid>[class*="six wide computer"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide computer"].column,.ui.grid>.column.row>[class*="seven wide computer"].column,.ui.grid>.row>[class*="seven wide computer"].column,.ui.grid>[class*="seven wide computer"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide computer"].column,.ui.grid>.column.row>[class*="eight wide computer"].column,.ui.grid>.row>[class*="eight wide computer"].column,.ui.grid>[class*="eight wide computer"].column{width:50%!important}.ui.column.grid>[class*="nine wide computer"].column,.ui.grid>.column.row>[class*="nine wide computer"].column,.ui.grid>.row>[class*="nine wide computer"].column,.ui.grid>[class*="nine wide computer"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide computer"].column,.ui.grid>.column.row>[class*="ten wide computer"].column,.ui.grid>.row>[class*="ten wide computer"].column,.ui.grid>[class*="ten wide computer"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide computer"].column,.ui.grid>.column.row>[class*="eleven wide computer"].column,.ui.grid>.row>[class*="eleven wide computer"].column,.ui.grid>[class*="eleven wide computer"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide computer"].column,.ui.grid>.column.row>[class*="twelve wide computer"].column,.ui.grid>.row>[class*="twelve wide computer"].column,.ui.grid>[class*="twelve wide computer"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide computer"].column,.ui.grid>.column.row>[class*="thirteen wide computer"].column,.ui.grid>.row>[class*="thirteen wide computer"].column,.ui.grid>[class*="thirteen wide computer"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide computer"].column,.ui.grid>.column.row>[class*="fourteen wide computer"].column,.ui.grid>.row>[class*="fourteen wide computer"].column,.ui.grid>[class*="fourteen wide computer"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide computer"].column,.ui.grid>.column.row>[class*="fifteen wide computer"].column,.ui.grid>.row>[class*="fifteen wide computer"].column,.ui.grid>[class*="fifteen wide computer"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide computer"].column,.ui.grid>.column.row>[class*="sixteen wide computer"].column,.ui.grid>.row>[class*="sixteen wide computer"].column,.ui.grid>[class*="sixteen wide computer"].column{width:100%!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.column.grid>[class*="one wide large screen"].column,.ui.grid>.column.row>[class*="one wide large screen"].column,.ui.grid>.row>[class*="one wide large screen"].column,.ui.grid>[class*="one wide large screen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide large screen"].column,.ui.grid>.column.row>[class*="two wide large screen"].column,.ui.grid>.row>[class*="two wide large screen"].column,.ui.grid>[class*="two wide large screen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide large screen"].column,.ui.grid>.column.row>[class*="three wide large screen"].column,.ui.grid>.row>[class*="three wide large screen"].column,.ui.grid>[class*="three wide large screen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide large screen"].column,.ui.grid>.column.row>[class*="four wide large screen"].column,.ui.grid>.row>[class*="four wide large screen"].column,.ui.grid>[class*="four wide large screen"].column{width:25%!important}.ui.column.grid>[class*="five wide large screen"].column,.ui.grid>.column.row>[class*="five wide large screen"].column,.ui.grid>.row>[class*="five wide large screen"].column,.ui.grid>[class*="five wide large screen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide large screen"].column,.ui.grid>.column.row>[class*="six wide large screen"].column,.ui.grid>.row>[class*="six wide large screen"].column,.ui.grid>[class*="six wide large screen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide large screen"].column,.ui.grid>.column.row>[class*="seven wide large screen"].column,.ui.grid>.row>[class*="seven wide large screen"].column,.ui.grid>[class*="seven wide large screen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide large screen"].column,.ui.grid>.column.row>[class*="eight wide large screen"].column,.ui.grid>.row>[class*="eight wide large screen"].column,.ui.grid>[class*="eight wide large screen"].column{width:50%!important}.ui.column.grid>[class*="nine wide large screen"].column,.ui.grid>.column.row>[class*="nine wide large screen"].column,.ui.grid>.row>[class*="nine wide large screen"].column,.ui.grid>[class*="nine wide large screen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide large screen"].column,.ui.grid>.column.row>[class*="ten wide large screen"].column,.ui.grid>.row>[class*="ten wide large screen"].column,.ui.grid>[class*="ten wide large screen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide large screen"].column,.ui.grid>.column.row>[class*="eleven wide large screen"].column,.ui.grid>.row>[class*="eleven wide large screen"].column,.ui.grid>[class*="eleven wide large screen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide large screen"].column,.ui.grid>.column.row>[class*="twelve wide large screen"].column,.ui.grid>.row>[class*="twelve wide large screen"].column,.ui.grid>[class*="twelve wide large screen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide large screen"].column,.ui.grid>.column.row>[class*="thirteen wide large screen"].column,.ui.grid>.row>[class*="thirteen wide large screen"].column,.ui.grid>[class*="thirteen wide large screen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide large screen"].column,.ui.grid>.column.row>[class*="fourteen wide large screen"].column,.ui.grid>.row>[class*="fourteen wide large screen"].column,.ui.grid>[class*="fourteen wide large screen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide large screen"].column,.ui.grid>.column.row>[class*="fifteen wide large screen"].column,.ui.grid>.row>[class*="fifteen wide large screen"].column,.ui.grid>[class*="fifteen wide large screen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide large screen"].column,.ui.grid>.column.row>[class*="sixteen wide large screen"].column,.ui.grid>.row>[class*="sixteen wide large screen"].column,.ui.grid>[class*="sixteen wide large screen"].column{width:100%!important}}@media only screen and (min-width:1920px){.ui.column.grid>[class*="one wide widescreen"].column,.ui.grid>.column.row>[class*="one wide widescreen"].column,.ui.grid>.row>[class*="one wide widescreen"].column,.ui.grid>[class*="one wide widescreen"].column{width:6.25%!important}.ui.column.grid>[class*="two wide widescreen"].column,.ui.grid>.column.row>[class*="two wide widescreen"].column,.ui.grid>.row>[class*="two wide widescreen"].column,.ui.grid>[class*="two wide widescreen"].column{width:12.5%!important}.ui.column.grid>[class*="three wide widescreen"].column,.ui.grid>.column.row>[class*="three wide widescreen"].column,.ui.grid>.row>[class*="three wide widescreen"].column,.ui.grid>[class*="three wide widescreen"].column{width:18.75%!important}.ui.column.grid>[class*="four wide widescreen"].column,.ui.grid>.column.row>[class*="four wide widescreen"].column,.ui.grid>.row>[class*="four wide widescreen"].column,.ui.grid>[class*="four wide widescreen"].column{width:25%!important}.ui.column.grid>[class*="five wide widescreen"].column,.ui.grid>.column.row>[class*="five wide widescreen"].column,.ui.grid>.row>[class*="five wide widescreen"].column,.ui.grid>[class*="five wide widescreen"].column{width:31.25%!important}.ui.column.grid>[class*="six wide widescreen"].column,.ui.grid>.column.row>[class*="six wide widescreen"].column,.ui.grid>.row>[class*="six wide widescreen"].column,.ui.grid>[class*="six wide widescreen"].column{width:37.5%!important}.ui.column.grid>[class*="seven wide widescreen"].column,.ui.grid>.column.row>[class*="seven wide widescreen"].column,.ui.grid>.row>[class*="seven wide widescreen"].column,.ui.grid>[class*="seven wide widescreen"].column{width:43.75%!important}.ui.column.grid>[class*="eight wide widescreen"].column,.ui.grid>.column.row>[class*="eight wide widescreen"].column,.ui.grid>.row>[class*="eight wide widescreen"].column,.ui.grid>[class*="eight wide widescreen"].column{width:50%!important}.ui.column.grid>[class*="nine wide widescreen"].column,.ui.grid>.column.row>[class*="nine wide widescreen"].column,.ui.grid>.row>[class*="nine wide widescreen"].column,.ui.grid>[class*="nine wide widescreen"].column{width:56.25%!important}.ui.column.grid>[class*="ten wide widescreen"].column,.ui.grid>.column.row>[class*="ten wide widescreen"].column,.ui.grid>.row>[class*="ten wide widescreen"].column,.ui.grid>[class*="ten wide widescreen"].column{width:62.5%!important}.ui.column.grid>[class*="eleven wide widescreen"].column,.ui.grid>.column.row>[class*="eleven wide widescreen"].column,.ui.grid>.row>[class*="eleven wide widescreen"].column,.ui.grid>[class*="eleven wide widescreen"].column{width:68.75%!important}.ui.column.grid>[class*="twelve wide widescreen"].column,.ui.grid>.column.row>[class*="twelve wide widescreen"].column,.ui.grid>.row>[class*="twelve wide widescreen"].column,.ui.grid>[class*="twelve wide widescreen"].column{width:75%!important}.ui.column.grid>[class*="thirteen wide widescreen"].column,.ui.grid>.column.row>[class*="thirteen wide widescreen"].column,.ui.grid>.row>[class*="thirteen wide widescreen"].column,.ui.grid>[class*="thirteen wide widescreen"].column{width:81.25%!important}.ui.column.grid>[class*="fourteen wide widescreen"].column,.ui.grid>.column.row>[class*="fourteen wide widescreen"].column,.ui.grid>.row>[class*="fourteen wide widescreen"].column,.ui.grid>[class*="fourteen wide widescreen"].column{width:87.5%!important}.ui.column.grid>[class*="fifteen wide widescreen"].column,.ui.grid>.column.row>[class*="fifteen wide widescreen"].column,.ui.grid>.row>[class*="fifteen wide widescreen"].column,.ui.grid>[class*="fifteen wide widescreen"].column{width:93.75%!important}.ui.column.grid>[class*="sixteen wide widescreen"].column,.ui.grid>.column.row>[class*="sixteen wide widescreen"].column,.ui.grid>.row>[class*="sixteen wide widescreen"].column,.ui.grid>[class*="sixteen wide widescreen"].column{width:100%!important}}.ui.centered.grid,.ui.centered.grid>.row,.ui.grid>.centered.row{text-align:center;justify-content:center}.ui.centered.grid>.column:not(.aligned):not(.justified):not(.row),.ui.centered.grid>.row>.column:not(.aligned):not(.justified),.ui.grid .centered.row>.column:not(.aligned):not(.justified){text-align:left}.ui.grid>.centered.column,.ui.grid>.row>.centered.column{display:block;margin-left:auto;margin-right:auto}.ui.grid>.relaxed.row>.column,.ui.relaxed.grid>.column:not(.row),.ui.relaxed.grid>.row>.column{padding-left:1.5rem;padding-right:1.5rem}.ui.grid>[class*="very relaxed"].row>.column,.ui[class*="very relaxed"].grid>.column:not(.row),.ui[class*="very relaxed"].grid>.row>.column{padding-left:2.5rem;padding-right:2.5rem}.ui.grid .relaxed.row+.ui.divider,.ui.relaxed.grid .row+.ui.divider{margin-left:1.5rem;margin-right:1.5rem}.ui.grid [class*="very relaxed"].row+.ui.divider,.ui[class*="very relaxed"].grid .row+.ui.divider{margin-left:2.5rem;margin-right:2.5rem}.ui.padded.grid:not(.vertically):not(.horizontally){margin:0!important}[class*="horizontally padded"].ui.grid{margin-left:0!important;margin-right:0!important}[class*="vertically padded"].ui.grid{margin-top:0!important;margin-bottom:0!important}.ui.grid [class*="left floated"].column{margin-right:auto}.ui.grid [class*="right floated"].column{margin-left:auto}.ui.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(24,26,28,.45)}.ui[class*="vertically divided"].grid>.column:not(.row),.ui[class*="vertically divided"].grid>.row>.column{margin-top:1rem;margin-bottom:1rem;padding-top:0;padding-bottom:0}.ui[class*="vertically divided"].grid>.row{margin-top:0;margin-bottom:0}.ui.divided.grid:not([class*="vertically divided"])>.column:first-child,.ui.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row:first-child>.column{margin-top:0}.ui.grid>.divided.row>.column{box-shadow:-1px 0 0 0 rgba(24,26,28,.45)}.ui.grid>.divided.row>.column:first-child{box-shadow:none}.ui[class*="vertically divided"].grid>.row{position:relative}.ui[class*="vertically divided"].grid>.row:before{position:absolute;content:"";top:0;left:0;width:calc(100% - 2rem);height:1px;margin:0 1rem;box-shadow:0 -1px 0 0 rgba(24,26,28,.45)}.ui.padded.divided.grid:not(.vertically):not(.horizontally),[class*="horizontally padded"].ui.divided.grid{width:100%}.ui[class*="vertically divided"].grid>.row:first-child:before{box-shadow:none}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row),.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column{box-shadow:-1px 0 0 0 rgba(0,0,0,.1)}.ui.inverted.divided.grid:not([class*="vertically divided"])>.column:not(.row):first-child,.ui.inverted.divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:none}.ui.inverted[class*="vertically divided"].grid>.row:before{box-shadow:0 -1px 0 0 rgba(0,0,0,.1)}.ui.relaxed[class*="vertically divided"].grid>.row:before{margin-left:1.5rem;margin-right:1.5rem;width:calc(100% - 3rem)}.ui[class*="very relaxed"][class*="vertically divided"].grid>.row:before{margin-left:2.5rem;margin-right:2.5rem;width:calc(100% - 5rem)}.ui.celled.grid{width:100%;margin:1em 0;box-shadow:0 0 0 1px #3b3c3e}.ui.celled.grid>.row{width:100%!important;margin:0;padding:0;box-shadow:0 -1px 0 0 #3b3c3e}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{box-shadow:-1px 0 0 0 #3b3c3e}.ui.celled.grid>.column:first-child,.ui.celled.grid>.row>.column:first-child{box-shadow:none}.ui.celled.grid>.column:not(.row),.ui.celled.grid>.row>.column{padding:1em}.ui.relaxed.celled.grid>.column:not(.row),.ui.relaxed.celled.grid>.row>.column{padding:1.5em}.ui[class*="very relaxed"].celled.grid>.column:not(.row),.ui[class*="very relaxed"].celled.grid>.row>.column{padding:2em}.ui[class*="internally celled"].grid{box-shadow:none;margin:0}.ui[class*="internally celled"].grid>.row:first-child{box-shadow:none}.ui[class*="internally celled"].grid>.row>.column:first-child{box-shadow:none}.ui.grid>.row>[class*="top aligned"].column,.ui.grid>[class*="top aligned"].column:not(.row),.ui.grid>[class*="top aligned"].row>.column,.ui[class*="top aligned"].grid>.column:not(.row),.ui[class*="top aligned"].grid>.row>.column{flex-direction:column;vertical-align:top;align-self:flex-start!important}.ui.grid>.row>[class*="middle aligned"].column,.ui.grid>[class*="middle aligned"].column:not(.row),.ui.grid>[class*="middle aligned"].row>.column,.ui[class*="middle aligned"].grid>.column:not(.row),.ui[class*="middle aligned"].grid>.row>.column{flex-direction:column;vertical-align:middle;align-self:center!important}.ui.grid>.row>[class*="bottom aligned"].column,.ui.grid>[class*="bottom aligned"].column:not(.row),.ui.grid>[class*="bottom aligned"].row>.column,.ui[class*="bottom aligned"].grid>.column:not(.row),.ui[class*="bottom aligned"].grid>.row>.column{flex-direction:column;vertical-align:bottom;align-self:flex-end!important}.ui.grid>.row>.stretched.column,.ui.grid>.stretched.column:not(.row),.ui.grid>.stretched.row>.column,.ui.stretched.grid>.column,.ui.stretched.grid>.row>.column{display:inline-flex!important;align-self:stretch;flex-direction:column}.ui.grid>.row>.stretched.column>*,.ui.grid>.stretched.column:not(.row)>*,.ui.grid>.stretched.row>.column>*,.ui.stretched.grid>.column>*,.ui.stretched.grid>.row>.column>*{flex-grow:1}.ui.grid>.row>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].column.column,.ui.grid>[class*="left aligned"].row>.column,.ui[class*="left aligned"].grid>.column,.ui[class*="left aligned"].grid>.row>.column{text-align:left;align-self:inherit}.ui.grid>.row>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].column.column,.ui.grid>[class*="center aligned"].row>.column,.ui[class*="center aligned"].grid>.column,.ui[class*="center aligned"].grid>.row>.column{text-align:center;align-self:inherit}.ui[class*="center aligned"].grid{justify-content:center}.ui.grid>.row>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].column.column,.ui.grid>[class*="right aligned"].row>.column,.ui[class*="right aligned"].grid>.column,.ui[class*="right aligned"].grid>.row>.column{text-align:right;align-self:inherit}.ui.grid>.justified.column.column,.ui.grid>.justified.row>.column,.ui.grid>.row>.justified.column.column,.ui.justified.grid>.column,.ui.justified.grid>.row>.column{text-align:justify;hyphens:auto}.ui.grid>.row>.black.column,.ui.grid>.row>.blue.column,.ui.grid>.row>.brown.column,.ui.grid>.row>.green.column,.ui.grid>.row>.grey.column,.ui.grid>.row>.olive.column,.ui.grid>.row>.orange.column,.ui.grid>.row>.pink.column,.ui.grid>.row>.purple.column,.ui.grid>.row>.red.column,.ui.grid>.row>.teal.column,.ui.grid>.row>.violet.column,.ui.grid>.row>.yellow.column{margin-top:-1rem;margin-bottom:-1rem;padding-top:1rem;padding-bottom:1rem}.ui.grid>.red.column,.ui.grid>.red.row,.ui.grid>.row>.red.column{background-color:#db2828!important;color:#2e3235}.ui.grid>.orange.column,.ui.grid>.orange.row,.ui.grid>.row>.orange.column{background-color:#c06d36!important;color:#2e3235}.ui.grid>.row>.yellow.column,.ui.grid>.yellow.column,.ui.grid>.yellow.row{background-color:#fbbd08!important;color:#2e3235}.ui.grid>.olive.column,.ui.grid>.olive.row,.ui.grid>.row>.olive.column{background-color:#b5cc18!important;color:#2e3235}.ui.grid>.green.column,.ui.grid>.green.row,.ui.grid>.row>.green.column{background-color:#21ba45!important;color:#2e3235}.ui.grid>.row>.teal.column,.ui.grid>.teal.column,.ui.grid>.teal.row{background-color:#00b5ad!important;color:#2e3235}.ui.grid>.blue.column,.ui.grid>.blue.row,.ui.grid>.row>.blue.column{background-color:#2185d0!important;color:#2e3235}.ui.grid>.row>.violet.column,.ui.grid>.violet.column,.ui.grid>.violet.row{background-color:#6435c9!important;color:#2e3235}.ui.grid>.purple.column,.ui.grid>.purple.row,.ui.grid>.row>.purple.column{background-color:#a333c8!important;color:#2e3235}.ui.grid>.pink.column,.ui.grid>.pink.row,.ui.grid>.row>.pink.column{background-color:#e03997!important;color:#2e3235}.ui.grid>.brown.column,.ui.grid>.brown.row,.ui.grid>.row>.brown.column{background-color:#a5673f!important;color:#2e3235}.ui.grid>.grey.column,.ui.grid>.grey.row,.ui.grid>.row>.grey.column{background-color:#767676!important;color:#2e3235}.ui.grid>.black.column,.ui.grid>.black.row,.ui.grid>.row>.black.column{background-color:#f9fafb!important;color:#2e3235}.ui.grid>[class*="equal width"].row>.column,.ui[class*="equal width"].grid>.column:not(.row),.ui[class*="equal width"].grid>.row>.column{display:inline-block;flex-grow:1}.ui.grid>[class*="equal width"].row>.wide.column,.ui[class*="equal width"].grid>.row>.wide.column,.ui[class*="equal width"].grid>.wide.column{flex-grow:0}@media only screen and (max-width:767px){.ui.grid>[class*="mobile reversed"].row,.ui[class*="mobile reversed"].grid,.ui[class*="mobile reversed"].grid>.row{flex-direction:row-reverse}.ui.stackable[class*="mobile reversed"],.ui[class*="mobile vertically reversed"].grid{flex-direction:column-reverse}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(24,26,28,.45)}.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(24,26,28,.45)}.ui.grid[class*="vertically divided"][class*="mobile vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="mobile reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #3b3c3e}.ui[class*="mobile reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid>[class*="tablet reversed"].row,.ui[class*="tablet reversed"].grid,.ui[class*="tablet reversed"].grid>.row{flex-direction:row-reverse}.ui[class*="tablet vertically reversed"].grid{flex-direction:column-reverse}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(24,26,28,.45)}.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(24,26,28,.45)}.ui.grid[class*="vertically divided"][class*="tablet vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="tablet reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #3b3c3e}.ui[class*="tablet reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:992px){.ui.grid>[class*="computer reversed"].row,.ui[class*="computer reversed"].grid,.ui[class*="computer reversed"].grid>.row{flex-direction:row-reverse}.ui[class*="computer vertically reversed"].grid{flex-direction:column-reverse}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:first-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:first-child{box-shadow:-1px 0 0 0 rgba(24,26,28,.45)}.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.column:last-child,.ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"])>.row>.column:last-child{box-shadow:none}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:first-child:before{box-shadow:0 -1px 0 0 rgba(24,26,28,.45)}.ui.grid[class*="vertically divided"][class*="computer vertically reversed"]>.row:last-child:before{box-shadow:none}.ui[class*="computer reversed"].celled.grid>.row>.column:first-child{box-shadow:-1px 0 0 0 #3b3c3e}.ui[class*="computer reversed"].celled.grid>.row>.column:last-child{box-shadow:none}}@media only screen and (min-width:768px) and (max-width:991px){.ui.doubling.grid{width:auto}.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{display:inline-block!important;padding-top:1rem!important;padding-bottom:1rem!important;box-shadow:none!important;margin:0}.ui.grid>[class*="two column"].doubling.row.row>.column,.ui[class*="two column"].doubling.grid>.column:not(.row),.ui[class*="two column"].doubling.grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling.row.row>.column,.ui[class*="three column"].doubling.grid>.column:not(.row),.ui[class*="three column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="four column"].doubling.row.row>.column,.ui[class*="four column"].doubling.grid>.column:not(.row),.ui[class*="four column"].doubling.grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling.row.row>.column,.ui[class*="five column"].doubling.grid>.column:not(.row),.ui[class*="five column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="six column"].doubling.row.row>.column,.ui[class*="six column"].doubling.grid>.column:not(.row),.ui[class*="six column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="seven column"].doubling.row.row>.column,.ui[class*="seven column"].doubling.grid>.column:not(.row),.ui[class*="seven column"].doubling.grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eight column"].doubling.row.row>.column,.ui[class*="eight column"].doubling.grid>.column:not(.row),.ui[class*="eight column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="nine column"].doubling.row.row>.column,.ui[class*="nine column"].doubling.grid>.column:not(.row),.ui[class*="nine column"].doubling.grid>.row>.column{width:25%!important}.ui.grid>[class*="ten column"].doubling.row.row>.column,.ui[class*="ten column"].doubling.grid>.column:not(.row),.ui[class*="ten column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="eleven column"].doubling.row.row>.column,.ui[class*="eleven column"].doubling.grid>.column:not(.row),.ui[class*="eleven column"].doubling.grid>.row>.column{width:20%!important}.ui.grid>[class*="twelve column"].doubling.row.row>.column,.ui[class*="twelve column"].doubling.grid>.column:not(.row),.ui[class*="twelve column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="thirteen column"].doubling.row.row>.column,.ui[class*="thirteen column"].doubling.grid>.column:not(.row),.ui[class*="thirteen column"].doubling.grid>.row>.column{width:16.66666667%!important}.ui.grid>[class*="fourteen column"].doubling.row.row>.column,.ui[class*="fourteen column"].doubling.grid>.column:not(.row),.ui[class*="fourteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="fifteen column"].doubling.row.row>.column,.ui[class*="fifteen column"].doubling.grid>.column:not(.row),.ui[class*="fifteen column"].doubling.grid>.row>.column{width:14.28571429%!important}.ui.grid>[class*="sixteen column"].doubling.row.row>.column,.ui[class*="sixteen column"].doubling.grid>.column:not(.row),.ui[class*="sixteen column"].doubling.grid>.row>.column{width:12.5%!important}}@media only screen and (max-width:767px){.ui.doubling.grid>.row,.ui.grid>.doubling.row{margin:0!important;padding:0!important}.ui.doubling.grid>.row>.column,.ui.grid>.doubling.row>.column{padding-top:1rem!important;padding-bottom:1rem!important;margin:0!important;box-shadow:none!important}.ui.grid>[class*="two column"].doubling:not(.stackable).row.row>.column,.ui[class*="two column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="two column"].doubling:not(.stackable).grid>.row>.column{width:100%!important}.ui.grid>[class*="three column"].doubling:not(.stackable).row.row>.column,.ui[class*="three column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="three column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="four column"].doubling:not(.stackable).row.row>.column,.ui[class*="four column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="four column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="five column"].doubling:not(.stackable).row.row>.column,.ui[class*="five column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="five column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="six column"].doubling:not(.stackable).row.row>.column,.ui[class*="six column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="six column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="seven column"].doubling:not(.stackable).row.row>.column,.ui[class*="seven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="seven column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="eight column"].doubling:not(.stackable).row.row>.column,.ui[class*="eight column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eight column"].doubling:not(.stackable).grid>.row>.column{width:50%!important}.ui.grid>[class*="nine column"].doubling:not(.stackable).row.row>.column,.ui[class*="nine column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="nine column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="ten column"].doubling:not(.stackable).row.row>.column,.ui[class*="ten column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="ten column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="eleven column"].doubling:not(.stackable).row.row>.column,.ui[class*="eleven column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="eleven column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="twelve column"].doubling:not(.stackable).row.row>.column,.ui[class*="twelve column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="twelve column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="thirteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="thirteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="thirteen column"].doubling:not(.stackable).grid>.row>.column{width:33.33333333%!important}.ui.grid>[class*="fourteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="fourteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fourteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.grid>[class*="fifteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="fifteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="fifteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}.ui.grid>[class*="sixteen column"].doubling:not(.stackable).row.row>.column,.ui[class*="sixteen column"].doubling:not(.stackable).grid>.column:not(.row),.ui[class*="sixteen column"].doubling:not(.stackable).grid>.row>.column{width:25%!important}}@media only screen and (max-width:767px){.ui.stackable.grid{width:auto;margin-left:0!important;margin-right:0!important}.ui.grid>.stackable.stackable.row>.column,.ui.stackable.grid>.column.grid>.column,.ui.stackable.grid>.column.row>.column,.ui.stackable.grid>.column:not(.row),.ui.stackable.grid>.row>.column,.ui.stackable.grid>.row>.wide.column,.ui.stackable.grid>.wide.column{width:100%!important;margin:0 0!important;box-shadow:none!important;padding:1rem 1rem!important}.ui.stackable.grid:not(.vertically)>.row{margin:0;padding:0}.ui.container>.ui.stackable.grid>.column,.ui.container>.ui.stackable.grid>.row>.column{padding-left:0!important;padding-right:0!important}.ui.grid .ui.stackable.grid,.ui.segment:not(.vertical) .ui.stackable.page.grid{margin-left:-1rem!important;margin-right:-1rem!important}.ui.stackable.celled.grid>.column:not(.row):first-child,.ui.stackable.celled.grid>.row:first-child>.column:first-child,.ui.stackable.divided.grid>.column:not(.row):first-child,.ui.stackable.divided.grid>.row:first-child>.column:first-child{border-top:none!important}.ui.inverted.stackable.celled.grid>.column:not(.row),.ui.inverted.stackable.celled.grid>.row>.column,.ui.inverted.stackable.divided.grid>.column:not(.row),.ui.inverted.stackable.divided.grid>.row>.column{border-top:1px solid rgba(0,0,0,.1)}.ui.stackable.celled.grid>.column:not(.row),.ui.stackable.celled.grid>.row>.column,.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{border-top:1px solid rgba(24,26,28,.45);box-shadow:none!important;padding-top:2rem!important;padding-bottom:2rem!important}.ui.stackable.celled.grid>.row{box-shadow:none!important}.ui.stackable.divided:not(.vertically).grid>.column:not(.row),.ui.stackable.divided:not(.vertically).grid>.row>.column{padding-left:0!important;padding-right:0!important}}@media only screen and (max-width:767px){.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].column:not(.mobile),.ui.grid.grid.grid>[class*="tablet only"].row:not(.mobile),.ui[class*="tablet only"].grid.grid.grid:not(.mobile){display:none!important}.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].column:not(.mobile),.ui.grid.grid.grid>[class*="computer only"].row:not(.mobile),.ui[class*="computer only"].grid.grid.grid:not(.mobile){display:none!important}.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile){display:none!important}.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:768px) and (max-width:991px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].column:not(.tablet),.ui.grid.grid.grid>[class*="mobile only"].row:not(.tablet),.ui[class*="mobile only"].grid.grid.grid:not(.tablet){display:none!important}.ui.grid.grid.grid>.row>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].column:not(.tablet),.ui.grid.grid.grid>[class*="computer only"].row:not(.tablet),.ui[class*="computer only"].grid.grid.grid:not(.tablet){display:none!important}.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile){display:none!important}.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:992px) and (max-width:1199px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer){display:none!important}.ui.grid.grid.grid>.row>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="large screen only"].row:not(.mobile),.ui[class*="large screen only"].grid.grid.grid:not(.mobile){display:none!important}.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:1200px) and (max-width:1919px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer){display:none!important}.ui.grid.grid.grid>.row>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].column:not(.mobile),.ui.grid.grid.grid>[class*="widescreen only"].row:not(.mobile),.ui[class*="widescreen only"].grid.grid.grid:not(.mobile){display:none!important}}@media only screen and (min-width:1920px){.ui.grid.grid.grid>.row>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].column:not(.computer),.ui.grid.grid.grid>[class*="mobile only"].row:not(.computer),.ui[class*="mobile only"].grid.grid.grid:not(.computer){display:none!important}.ui.grid.grid.grid>.row>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].column:not(.computer),.ui.grid.grid.grid>[class*="tablet only"].row:not(.computer),.ui[class*="tablet only"].grid.grid.grid:not(.computer){display:none!important}}.ui.menu{display:flex;margin:1rem 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;background:#2e3235;font-weight:400;border:1px solid rgba(24,26,28,.45);box-shadow:0 1px 2px 0 rgba(24,26,28,.45);border-radius:.35714286rem;min-height:2.85714286em}.ui.menu:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.menu:first-child{margin-top:0}.ui.menu:last-child{margin-bottom:0}.ui.menu .menu{margin:0}.ui.menu:not(.vertical)>.menu{display:flex}.ui.menu:not(.vertical) .item{display:flex;align-items:center}.ui.menu .item{position:relative;vertical-align:middle;line-height:1;text-decoration:none;-webkit-tap-highlight-color:transparent;flex:0 0 auto;user-select:none;background:0 0;padding:.92857143em 1.14285714em;text-transform:none;color:#ddd;font-weight:400;transition:background .1s ease,box-shadow .1s ease,color .1s ease}.ui.menu>.item:first-child{border-radius:.35714286rem 0 0 .35714286rem}.ui.menu .item:before{position:absolute;content:'';top:0;right:0;height:100%;width:1px;background:rgba(24,26,28,.1)}.ui.menu .item>a:not(.ui),.ui.menu .item>p:only-child,.ui.menu .text.item>*{user-select:text;line-height:1.3}.ui.menu .item>p:first-child{margin-top:0}.ui.menu .item>p:last-child{margin-bottom:0}.ui.menu .item>i.icon{opacity:.9;float:none;margin:0 .35714286em 0 0}.ui.menu:not(.vertical) .item>.button{position:relative;top:0;margin:-.5em 0;padding-bottom:.78571429em;padding-top:.78571429em;font-size:1em}.ui.menu>.container,.ui.menu>.grid{display:flex;align-items:inherit;flex-direction:inherit}.ui.menu .item>.input{width:100%}.ui.menu:not(.vertical) .item>.input{position:relative;top:0;margin:-.5em 0}.ui.menu .item>.input input{font-size:1em;padding-top:.57142857em;padding-bottom:.57142857em}.ui.menu .header.item,.ui.vertical.menu .header.item{margin:0;background:'';text-transform:normal;font-weight:600}.ui.vertical.menu .item>.header:not(.ui){margin:0 0 .5em;font-size:1em;font-weight:600}.ui.menu .item>i.dropdown.icon{padding:0;float:right;margin:0 0 0 1em}.ui.menu .dropdown.item .menu{min-width:calc(100% - 1px);border-radius:0 0 .35714286rem .35714286rem;background:#2e3235;margin:0 0 0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);flex-direction:column!important}.ui.menu .ui.dropdown .menu>.item{margin:0;text-align:left;font-size:1em!important;padding:.78571429em 1.14285714em!important;background:0 0!important;color:#ddd!important;text-transform:none!important;font-weight:400!important;box-shadow:none!important;transition:none!important}.ui.menu .ui.dropdown .menu>.item:hover{background:rgba(255,255,255,.05)!important;color:rgba(255,255,255,.95)!important}.ui.menu .ui.dropdown .menu>.selected.item{background:rgba(255,255,255,.05)!important;color:rgba(255,255,255,.95)!important}.ui.menu .ui.dropdown .menu>.active.item{background:rgba(255,255,255,.03)!important;font-weight:600!important;color:rgba(255,255,255,.95)!important}.ui.menu .ui.dropdown.item .menu .item:not(.filtered){display:block}.ui.menu .ui.dropdown .menu>.item .icon:not(.dropdown){display:inline-block;font-size:1em!important;float:none;margin:0 .75em 0 0!important}.ui.secondary.menu .dropdown.item>.menu,.ui.text.menu .dropdown.item>.menu{border-radius:.35714286rem;margin-top:.35714286em}.ui.menu .pointing.dropdown.item .menu{margin-top:.75em}.ui.inverted.menu .search.dropdown.item>.search,.ui.inverted.menu .search.dropdown.item>.text{color:rgba(0,0,0,.9)}.ui.vertical.menu .dropdown.item>.icon{float:right;content:"\f0da";margin-left:1em}.ui.vertical.menu .dropdown.item .menu{left:100%;min-width:0;margin:0;box-shadow:0 1px 3px 0 rgba(0,0,0,.08);border-radius:0 .35714286rem .35714286rem .35714286rem}.ui.vertical.menu .dropdown.item.upward .menu{bottom:0}.ui.vertical.menu .dropdown.item:not(.upward) .menu{top:0}.ui.vertical.menu .active.dropdown.item{border-top-right-radius:0;border-bottom-right-radius:0}.ui.vertical.menu .dropdown.active.item{box-shadow:none}.ui.item.menu .dropdown .menu .item{width:100%}.ui.menu .item>.label{background:#999;color:#2e3235;margin-left:1em;padding:.3em .78571429em}.ui.vertical.menu .item>.label{background:#999;color:#2e3235;margin-top:-.15em;margin-bottom:-.15em;padding:.3em .78571429em}.ui.menu .item>.floating.label{padding:.3em .78571429em}.ui.menu .item>img:not(.ui){display:inline-block;vertical-align:middle;margin:-.3em 0;width:2.5em}.ui.vertical.menu .item>img:not(.ui):only-child{display:block;max-width:100%;width:auto}.ui.menu .list .item:before{background:0 0!important}.ui.vertical.sidebar.menu>.item:first-child:before{display:block!important}.ui.vertical.sidebar.menu>.item::before{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.menu>.ui.container{width:100%!important;margin-left:0!important;margin-right:0!important}}@media only screen and (min-width:768px){.ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless)>.container>.item:not(.right):not(.borderless):first-child{border-left:1px solid rgba(24,26,28,.1)}}.ui.link.menu .item:hover,.ui.menu .dropdown.item:hover,.ui.menu .link.item:hover,.ui.menu a.item:hover{cursor:pointer;background:rgba(255,255,255,.03);color:rgba(255,255,255,.95)}.ui.link.menu .item:active,.ui.menu .link.item:active,.ui.menu a.item:active{background:rgba(255,255,255,.03);color:rgba(255,255,255,.95)}.ui.menu .active.item{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95);font-weight:400;box-shadow:none}.ui.menu .active.item>i.icon{opacity:1}.ui.menu .active.item:hover,.ui.vertical.menu .active.item:hover{background-color:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.menu .item.disabled,.ui.menu .item.disabled:hover{cursor:default!important;background-color:transparent!important;color:rgba(255,255,255,.2)!important}.ui.menu:not(.vertical) .left.item,.ui.menu:not(.vertical) :not(.dropdown)>.left.menu{display:flex;margin-right:auto!important}.ui.menu:not(.vertical) .right.item,.ui.menu:not(.vertical) .right.menu{display:flex;margin-left:auto!important}.ui.menu .right.item::before,.ui.menu .right.menu>.item::before{right:auto;left:0}.ui.vertical.menu{display:block;flex-direction:column;background:rgba(46,50,53,.7);box-shadow:0 1px 2px 0 rgba(24,26,28,.45)}.ui.vertical.menu .item{display:block;background:0 0;border-top:none;border-right:none}.ui.vertical.menu>.item:first-child{border-radius:.35714286rem .35714286rem 0 0}.ui.vertical.menu>.item:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui.vertical.menu .item>.label{float:right;text-align:center}.ui.vertical.menu .item>i.icon{width:1.18em;float:right;margin:0 0 0 .5em}.ui.vertical.menu .item>.label+i.icon{float:none;margin:0 .5em 0 0}.ui.vertical.menu .item:before{position:absolute;content:'';top:0;left:0;width:100%;height:1px;background:rgba(24,26,28,.1)}.ui.vertical.menu .item:first-child:before{display:none!important}.ui.vertical.menu .item>.menu{margin:.5em -1.14285714em 0}.ui.vertical.menu .menu .item{background:0 0;padding:.5em 1.33333333em;font-size:.85714286em;color:rgba(0,0,0,.5)}.ui.vertical.menu .item .menu .link.item:hover,.ui.vertical.menu .item .menu a.item:hover{color:rgba(255,255,255,.95)}.ui.vertical.menu .menu .item:before{display:none}.ui.vertical.menu .active.item{background:rgba(255,255,255,.05);border-radius:0;box-shadow:none}.ui.vertical.menu>.active.item:first-child{border-radius:.35714286rem .35714286rem 0 0}.ui.vertical.menu>.active.item:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui.vertical.menu>.active.item:only-child{border-radius:.35714286rem}.ui.vertical.menu .active.item .menu .active.item{border-left:none}.ui.vertical.menu .item .menu .active.item{background-color:transparent;font-weight:600;color:rgba(255,255,255,.95)}.ui.tabular.menu{border-radius:0;box-shadow:none!important;border:none;background:none transparent;border-bottom:1px solid rgba(24,26,28,.45)}.ui.tabular.fluid.menu{width:calc(100% + (1px * 2))!important}.ui.tabular.menu .item{background:0 0;border-bottom:none;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;padding:.92857143em 1.42857143em;color:#ddd}.ui.tabular.menu .item:before{display:none}.ui.tabular.menu .item:hover{background-color:transparent;color:rgba(255,255,255,.8)}.ui.tabular.menu .active.item{background:none #2e3235;color:rgba(255,255,255,.95);border-top-width:1px;border-color:rgba(24,26,28,.45);font-weight:600;margin-bottom:-1px;box-shadow:none;border-radius:.35714286rem .35714286rem 0 0!important}.ui.tabular.menu+.attached:not(.top).segment,.ui.tabular.menu+.attached:not(.top).segment+.attached:not(.top).segment{border-top:none;margin-left:0;margin-top:0;margin-right:0;width:100%}.top.attached.segment+.ui.bottom.tabular.menu{position:relative;width:calc(100% + (1px * 2));left:-1px}.ui.bottom.tabular.menu{background:none transparent;border-radius:0;box-shadow:none!important;border-bottom:none;border-top:1px solid rgba(24,26,28,.45)}.ui.bottom.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:none}.ui.bottom.tabular.menu .active.item{background:none #2e3235;color:rgba(255,255,255,.95);border-color:rgba(24,26,28,.45);margin:-1px 0 0 0;border-radius:0 0 .35714286rem .35714286rem!important}.ui.vertical.tabular.menu{background:none transparent;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:1px solid rgba(24,26,28,.45)}.ui.vertical.tabular.menu .item{background:0 0;border-left:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-right:none}.ui.vertical.tabular.menu .active.item{background:none #2e3235;color:rgba(255,255,255,.95);border-color:rgba(24,26,28,.45);margin:0 -1px 0 0;border-radius:.35714286rem 0 0 .35714286rem!important}.ui.vertical.right.tabular.menu{background:none transparent;border-radius:0;box-shadow:none!important;border-bottom:none;border-right:none;border-left:1px solid rgba(24,26,28,.45)}.ui.vertical.right.tabular.menu .item{background:0 0;border-right:1px solid transparent;border-bottom:1px solid transparent;border-top:1px solid transparent;border-left:none}.ui.vertical.right.tabular.menu .active.item{background:none #2e3235;color:rgba(255,255,255,.95);border-color:rgba(24,26,28,.45);margin:0 0 0 -1px;border-radius:0 .35714286rem .35714286rem 0!important}.ui.tabular.menu .active.dropdown.item{margin-bottom:0;border-left:1px solid transparent;border-right:1px solid transparent;border-top:2px solid transparent;border-bottom:none}.ui.pagination.menu{margin:0;display:inline-flex;vertical-align:middle}.ui.pagination.menu .item:last-child{border-radius:0 .35714286rem .35714286rem 0}.ui.compact.menu .item:last-child{border-radius:0 .35714286rem .35714286rem 0}.ui.pagination.menu .item:last-child:before{display:none}.ui.pagination.menu .item{min-width:3em;text-align:center}.ui.pagination.menu .icon.item i.icon{vertical-align:top}.ui.pagination.menu .active.item{border-top:none;padding-top:.92857143em;background-color:rgba(255,255,255,.05);color:rgba(255,255,255,.95);box-shadow:none}.ui.secondary.menu{background:0 0;margin-left:-.35714286em;margin-right:-.35714286em;border-radius:0;border:none;box-shadow:none}.ui.secondary.menu .item{align-self:center;box-shadow:none;border:none;padding:.78571429em .92857143em;margin:0 .35714286em;background:0 0;transition:color .1s ease;border-radius:.35714286rem}.ui.secondary.menu .item:before{display:none!important}.ui.secondary.menu .header.item{border-radius:0;border-right:none;background:none transparent}.ui.secondary.menu .item>img:not(.ui){margin:0}.ui.secondary.menu .dropdown.item:hover,.ui.secondary.menu .link.item:hover,.ui.secondary.menu a.item:hover{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.secondary.menu .active.item{box-shadow:none;background:rgba(255,255,255,.05);color:rgba(255,255,255,.95);border-radius:.35714286rem}.ui.secondary.menu .active.item:hover{box-shadow:none;background:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.secondary.inverted.menu .link.item,.ui.secondary.inverted.menu a.item{color:rgba(0,0,0,.7)!important}.ui.secondary.inverted.menu .dropdown.item:hover,.ui.secondary.inverted.menu .link.item:hover,.ui.secondary.inverted.menu a.item:hover{background:rgba(0,0,0,.08);color:#000!important}.ui.secondary.inverted.menu .active.item{background:rgba(0,0,0,.15);color:#000!important}.ui.secondary.item.menu{margin-left:0;margin-right:0}.ui.secondary.item.menu .item:last-child{margin-right:0}.ui.secondary.attached.menu{box-shadow:none}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu{margin:0 -.92857143em}.ui.vertical.secondary.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 1.33333333em}.ui.secondary.vertical.menu>.item{border:none;margin:0 0 .35714286em;border-radius:.35714286rem!important}.ui.secondary.vertical.menu>.header.item{border-radius:0}.ui.vertical.secondary.menu .item>.menu .item{background-color:transparent}.ui.secondary.inverted.menu{background-color:transparent}.ui.secondary.pointing.menu{margin-left:0;margin-right:0;border-bottom:2px solid rgba(24,26,28,.45)}.ui.secondary.pointing.menu .item{border-bottom-color:transparent;border-bottom-style:solid;border-radius:0;align-self:flex-end;margin:0 0 -2px;padding:.85714286em 1.14285714em;border-bottom-width:2px;transition:color .1s ease}.ui.secondary.pointing.menu .header.item{color:rgba(255,255,255,.95)!important}.ui.secondary.pointing.menu .text.item{box-shadow:none!important}.ui.secondary.pointing.menu .item:after{display:none}.ui.secondary.pointing.menu .dropdown.item:hover,.ui.secondary.pointing.menu .link.item:hover,.ui.secondary.pointing.menu a.item:hover{background-color:transparent;color:#ddd}.ui.secondary.pointing.menu .dropdown.item:active,.ui.secondary.pointing.menu .link.item:active,.ui.secondary.pointing.menu a.item:active{background-color:transparent;border-color:rgba(24,26,28,.45)}.ui.secondary.pointing.menu .active.item{background-color:transparent;box-shadow:none;border-color:#f9fafb;font-weight:600;color:rgba(255,255,255,.95)}.ui.secondary.pointing.menu .active.item:hover{border-color:#f9fafb;color:rgba(255,255,255,.95)}.ui.secondary.pointing.menu .active.dropdown.item{border-color:transparent}.ui.secondary.vertical.pointing.menu{border-bottom-width:0;border-right-width:2px;border-right-style:solid;border-right-color:rgba(24,26,28,.45)}.ui.secondary.vertical.pointing.menu .item{border-bottom:none;border-right-style:solid;border-right-color:transparent;border-radius:0!important;margin:0 -2px 0 0;border-right-width:2px}.ui.secondary.vertical.pointing.menu .active.item{border-color:#f9fafb}.ui.secondary.inverted.pointing.menu{border-color:rgba(0,0,0,.1)}.ui.secondary.inverted.pointing.menu{border-width:2px;border-color:rgba(24,26,28,.45)}.ui.secondary.inverted.pointing.menu .item{color:rgba(0,0,0,.9)}.ui.secondary.inverted.pointing.menu .header.item{color:#2e3235!important}.ui.secondary.inverted.pointing.menu .link.item:hover,.ui.secondary.inverted.pointing.menu a.item:hover{color:rgba(255,255,255,.95)}.ui.secondary.inverted.pointing.menu .active.item{border-color:#2e3235;color:#000}.ui.text.menu{background:none transparent;border-radius:0;box-shadow:none;border:none;margin:1em -.5em}.ui.text.menu .item{border-radius:0;box-shadow:none;align-self:center;margin:0 0;padding:.35714286em .5em;font-weight:400;color:rgba(255,255,255,.6);transition:opacity .1s ease}.ui.text.menu .item:before,.ui.text.menu .menu .item:before{display:none!important}.ui.text.menu .header.item{background-color:transparent;opacity:1;color:rgba(255,255,255,.95);font-size:.92857143em;text-transform:uppercase;font-weight:600}.ui.text.menu .item>img:not(.ui){margin:0}.ui.text.item.menu .item{margin:0}.ui.vertical.text.menu{margin:1em 0}.ui.vertical.text.menu:first-child{margin-top:0}.ui.vertical.text.menu:last-child{margin-bottom:0}.ui.vertical.text.menu .item{margin:.57142857em 0;padding-left:0;padding-right:0}.ui.vertical.text.menu .item>i.icon{float:none;margin:0 .35714286em 0 0}.ui.vertical.text.menu .header.item{margin:.57142857em 0 .71428571em}.ui.vertical.text.menu .item:not(.dropdown)>.menu{margin:0}.ui.vertical.text.menu .item:not(.dropdown)>.menu>.item{margin:0;padding:.5em 0}.ui.text.menu .item:hover{opacity:1;background-color:transparent}.ui.text.menu .active.item{background-color:transparent;border:none;box-shadow:none;font-weight:400;color:rgba(255,255,255,.95)}.ui.text.menu .active.item:hover{background-color:transparent}.ui.text.pointing.menu .active.item:after{box-shadow:none}.ui.text.attached.menu{box-shadow:none}.ui.inverted.text.menu,.ui.inverted.text.menu .active.item,.ui.inverted.text.menu .item,.ui.inverted.text.menu .item:hover{background-color:transparent!important}.ui.fluid.text.menu{margin-left:0;margin-right:0}.ui.vertical.icon.menu{display:inline-block;width:auto}.ui.icon.menu .item{height:auto;text-align:center;color:#f9fafb}.ui.icon.menu .item>.icon:not(.dropdown){margin:0;opacity:1}.ui.icon.menu .icon:before{opacity:1}.ui.menu .icon.item>.icon{width:auto;margin:0 auto}.ui.vertical.icon.menu .item>.icon:not(.dropdown){display:block;opacity:1;margin:0 auto;float:none}.ui.inverted.icon.menu .item{color:#2e3235}.ui.labeled.icon.menu{text-align:center}.ui.labeled.icon.menu .item{min-width:6em;flex-direction:column}.ui.labeled.icon.menu .item>.icon:not(.dropdown){height:1em;display:block;font-size:1.71428571em!important;margin:0 auto .5rem!important}.ui.fluid.labeled.icon.menu>.item{min-width:0}@media only screen and (max-width:767px){.ui.stackable.menu{flex-direction:column}.ui.stackable.menu .item{width:100%!important}.ui.stackable.menu .item:before{position:absolute;content:'';top:auto;bottom:0;left:0;width:100%;height:1px;background:rgba(24,26,28,.1)}.ui.stackable.menu .left.item,.ui.stackable.menu .left.menu{margin-right:0!important}.ui.stackable.menu .right.item,.ui.stackable.menu .right.menu{margin-left:0!important}.ui.stackable.menu .left.menu,.ui.stackable.menu .right.menu{flex-direction:column}}.ui.menu .red.active.item,.ui.red.menu .active.item{border-color:#db2828!important;color:#db2828!important}.ui.menu .orange.active.item,.ui.orange.menu .active.item{border-color:#c06d36!important;color:#c06d36!important}.ui.menu .yellow.active.item,.ui.yellow.menu .active.item{border-color:#fbbd08!important;color:#fbbd08!important}.ui.menu .olive.active.item,.ui.olive.menu .active.item{border-color:#b5cc18!important;color:#b5cc18!important}.ui.green.menu .active.item,.ui.menu .green.active.item{border-color:#21ba45!important;color:#21ba45!important}.ui.menu .teal.active.item,.ui.teal.menu .active.item{border-color:#00b5ad!important;color:#00b5ad!important}.ui.blue.menu .active.item,.ui.menu .blue.active.item{border-color:#2185d0!important;color:#2185d0!important}.ui.menu .violet.active.item,.ui.violet.menu .active.item{border-color:#6435c9!important;color:#6435c9!important}.ui.menu .purple.active.item,.ui.purple.menu .active.item{border-color:#a333c8!important;color:#a333c8!important}.ui.menu .pink.active.item,.ui.pink.menu .active.item{border-color:#e03997!important;color:#e03997!important}.ui.brown.menu .active.item,.ui.menu .brown.active.item{border-color:#a5673f!important;color:#a5673f!important}.ui.grey.menu .active.item,.ui.menu .grey.active.item{border-color:#767676!important;color:#767676!important}.ui.inverted.menu{border:0 solid transparent;background:#f9fafb;box-shadow:none}.ui.inverted.menu .item,.ui.inverted.menu .item>a:not(.ui){background:0 0;color:rgba(0,0,0,.9)}.ui.inverted.menu .item.menu{background:0 0}.ui.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .item:before{background:rgba(255,255,255,.08)}.ui.vertical.inverted.menu .menu .item,.ui.vertical.inverted.menu .menu .item a:not(.ui){color:rgba(0,0,0,.5)}.ui.inverted.menu .header.item{margin:0;background:0 0;box-shadow:none}.ui.inverted.menu .item.disabled,.ui.inverted.menu .item.disabled:hover{color:rgba(0,0,0,.2)}.ui.inverted.menu .dropdown.item:hover,.ui.inverted.menu .link.item:hover,.ui.inverted.menu a.item:hover,.ui.link.inverted.menu .item:hover{background:rgba(0,0,0,.08);color:#000}.ui.vertical.inverted.menu .item .menu .link.item:hover,.ui.vertical.inverted.menu .item .menu a.item:hover{background:0 0;color:#000}.ui.inverted.menu .link.item:active,.ui.inverted.menu a.item:active{background:rgba(0,0,0,.08);color:#000}.ui.inverted.menu .active.item{background:rgba(0,0,0,.15);color:#000!important}.ui.inverted.vertical.menu .item .menu .active.item{background:0 0;color:#2e3235}.ui.inverted.pointing.menu .active.item:after{background:#3d3e3f!important;margin:0!important;box-shadow:none!important;border:none!important}.ui.inverted.menu .active.item:hover{background:rgba(0,0,0,.15);color:#2e3235!important}.ui.inverted.pointing.menu .active.item:hover:after{background:#3d3e3f!important}.ui.floated.menu{float:left;margin:0 .5rem 0 0}.ui.floated.menu .item:last-child:before{display:none}.ui.right.floated.menu{float:right;margin:0 0 0 .5rem}.ui.inverted.menu .red.active.item,.ui.inverted.red.menu{background-color:#db2828}.ui.inverted.red.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.red.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .orange.active.item,.ui.inverted.orange.menu{background-color:#c06d36}.ui.inverted.orange.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.orange.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .yellow.active.item,.ui.inverted.yellow.menu{background-color:#fbbd08}.ui.inverted.yellow.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.yellow.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .olive.active.item,.ui.inverted.olive.menu{background-color:#b5cc18}.ui.inverted.olive.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.olive.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.green.menu,.ui.inverted.menu .green.active.item{background-color:#21ba45}.ui.inverted.green.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.green.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .teal.active.item,.ui.inverted.teal.menu{background-color:#00b5ad}.ui.inverted.teal.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.teal.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.blue.menu,.ui.inverted.menu .blue.active.item{background-color:#2185d0}.ui.inverted.blue.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.blue.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .violet.active.item,.ui.inverted.violet.menu{background-color:#6435c9}.ui.inverted.violet.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.violet.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .purple.active.item,.ui.inverted.purple.menu{background-color:#a333c8}.ui.inverted.purple.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.purple.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.menu .pink.active.item,.ui.inverted.pink.menu{background-color:#e03997}.ui.inverted.pink.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.pink.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.brown.menu,.ui.inverted.menu .brown.active.item{background-color:#a5673f}.ui.inverted.brown.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.brown.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.inverted.grey.menu,.ui.inverted.menu .grey.active.item{background-color:#767676}.ui.inverted.grey.menu .item:before{background-color:rgba(24,26,28,.1)}.ui.inverted.grey.menu .active.item{background-color:rgba(255,255,255,.1)!important}.ui.fitted.menu .item,.ui.fitted.menu .item .menu .item,.ui.menu .fitted.item{padding:0}.ui.horizontally.fitted.menu .item,.ui.horizontally.fitted.menu .item .menu .item,.ui.menu .horizontally.fitted.item{padding-top:.92857143em;padding-bottom:.92857143em}.ui.menu .vertically.fitted.item,.ui.vertically.fitted.menu .item,.ui.vertically.fitted.menu .item .menu .item{padding-left:1.14285714em;padding-right:1.14285714em}.ui.borderless.menu .item .menu .item:before,.ui.borderless.menu .item:before,.ui.menu .borderless.item:before{background:0 0!important}.ui.compact.menu{display:inline-flex;margin:0;vertical-align:middle}.ui.compact.vertical.menu{display:inline-block}.ui.compact.menu .item:last-child{border-radius:0 .35714286rem .35714286rem 0}.ui.compact.menu .item:last-child:before{display:none}.ui.compact.vertical.menu{width:auto!important}.ui.compact.vertical.menu .item:last-child::before{display:block}.ui.menu.fluid,.ui.vertical.menu.fluid{width:100%!important}.ui.item.menu,.ui.item.menu .item{width:100%;padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important;text-align:center;justify-content:center}.ui.attached.item.menu{margin:0 -1px!important}.ui.item.menu .item:last-child:before{display:none}.ui.menu.two.item .item{width:50%}.ui.menu.three.item .item{width:33.333%}.ui.menu.four.item .item{width:25%}.ui.menu.five.item .item{width:20%}.ui.menu.six.item .item{width:16.666%}.ui.menu.seven.item .item{width:14.285%}.ui.menu.eight.item .item{width:12.5%}.ui.menu.nine.item .item{width:11.11%}.ui.menu.ten.item .item{width:10%}.ui.menu.eleven.item .item{width:9.09%}.ui.menu.twelve.item .item{width:8.333%}.ui.menu.fixed{position:fixed;z-index:101;margin:0;width:100%}.ui.menu.fixed,.ui.menu.fixed .item:first-child,.ui.menu.fixed .item:last-child{border-radius:0!important}.ui.fixed.menu,.ui[class*="top fixed"].menu{top:0;left:0;right:auto;bottom:auto}.ui[class*="top fixed"].menu{border-top:none;border-left:none;border-right:none}.ui[class*="right fixed"].menu{border-top:none;border-bottom:none;border-right:none;top:0;right:0;left:auto;bottom:auto;width:auto;height:100%}.ui[class*="bottom fixed"].menu{border-bottom:none;border-left:none;border-right:none;bottom:0;left:0;top:auto;right:auto}.ui[class*="left fixed"].menu{border-top:none;border-bottom:none;border-left:none;top:0;left:0;right:auto;bottom:auto;width:auto;height:100%}.ui.fixed.menu+.ui.grid{padding-top:2.75rem}.ui.pointing.menu .item:after{visibility:hidden;position:absolute;content:'';top:100%;left:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);background:0 0;margin:.5px 0 0;width:.57142857em;height:.57142857em;border:none;border-bottom:1px solid #3b3c3e;border-right:1px solid #3b3c3e;z-index:2;transition:background .1s ease}.ui.vertical.pointing.menu .item:after{position:absolute;top:50%;right:0;bottom:auto;left:auto;transform:translateX(50%) translateY(-50%) rotate(45deg);margin:0 -.5px 0 0;border:none;border-top:1px solid #3b3c3e;border-right:1px solid #3b3c3e}.ui.pointing.menu .active.item:after{visibility:visible}.ui.pointing.menu .active.dropdown.item:after{visibility:hidden}.ui.pointing.menu .active.item .menu .active.item:after,.ui.pointing.menu .dropdown.active.item:after{display:none}.ui.pointing.menu .active.item:hover:after{background-color:#f2f2f2}.ui.pointing.menu .active.item:after{background-color:#f2f2f2}.ui.pointing.menu .active.item:hover:after{background-color:#f2f2f2}.ui.vertical.pointing.menu .active.item:hover:after{background-color:#f2f2f2}.ui.vertical.pointing.menu .active.item:after{background-color:#f2f2f2}.ui.vertical.pointing.menu .menu .active.item:after{background-color:#2e3235}.ui.attached.menu{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% - (-1px * 2));max-width:calc(100% - (-1px * 2));box-shadow:none}.ui.attached+.ui.attached.menu:not(.top){border-top:none}.ui[class*="top attached"].menu{bottom:0;margin-bottom:0;top:0;margin-top:1rem;border-radius:.35714286rem .35714286rem 0 0}.ui.menu[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].menu{bottom:0;margin-top:0;top:0;margin-bottom:1rem;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),none;border-radius:0 0 .35714286rem .35714286rem}.ui[class*="bottom attached"].menu:last-child{margin-bottom:0}.ui.top.attached.menu>.item:first-child{border-radius:.35714286rem 0 0 0}.ui.bottom.attached.menu>.item:first-child{border-radius:0 0 0 .35714286rem}.ui.attached.menu:not(.tabular){border:1px solid #3b3c3e}.ui.attached.inverted.menu{border:none}.ui.attached.tabular.menu{margin-left:0;margin-right:0;width:100%}.ui.mini.menu{font-size:.78571429rem}.ui.mini.vertical.menu{width:9rem}.ui.tiny.menu{font-size:.85714286rem}.ui.tiny.vertical.menu{width:11rem}.ui.small.menu{font-size:.92857143rem}.ui.small.vertical.menu{width:13rem}.ui.menu{font-size:1rem}.ui.vertical.menu{width:15rem}.ui.large.menu{font-size:1.07142857rem}.ui.large.vertical.menu{width:18rem}.ui.huge.menu{font-size:1.21428571rem}.ui.huge.vertical.menu{width:22rem}.ui.big.menu{font-size:1.14285714rem}.ui.big.vertical.menu{width:20rem}.ui.massive.menu{font-size:1.28571429rem}.ui.massive.vertical.menu{width:25rem}.ui.vertical.menu{backdrop-filter:blur(10px)}.ui.message{position:relative;min-height:1em;margin:1em 0;background:#4b5257;padding:1em 1.5em;line-height:1.4285em;color:#ddd;transition:opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;border-radius:.35714286rem;box-shadow:0 0 0 1px rgba(24,26,28,.22) inset,0 0 0 0 transparent}.ui.message:first-child{margin-top:0}.ui.message:last-child{margin-bottom:0}.ui.message .header{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:600;margin:-.14285714em 0 0 0}.ui.message .header:not(.ui){font-size:1.14285714em}.ui.message p{opacity:.85;margin:.75em 0}.ui.message p:first-child{margin-top:0}.ui.message p:last-child{margin-bottom:0}.ui.message .header+p{margin-top:.25em}.ui.message .list:not(.ui){text-align:left;padding:0;opacity:.85;list-style-position:inside;margin:.5em 0 0}.ui.message .list:not(.ui):first-child{margin-top:0}.ui.message .list:not(.ui):last-child{margin-bottom:0}.ui.message .list:not(.ui) li{position:relative;list-style-type:none;margin:0 0 .3em 1em;padding:0}.ui.message .list:not(.ui) li:before{position:absolute;content:'•';left:-1em;height:100%;vertical-align:baseline}.ui.message .list:not(.ui) li:last-child{margin-bottom:0}.ui.message>.icon{margin-right:.6em}.ui.message>.close.icon{cursor:pointer;position:absolute;margin:0;top:.78575em;right:.5em;opacity:.7;transition:opacity .1s ease}.ui.message>.close.icon:hover{opacity:1}.ui.message>:first-child{margin-top:0}.ui.message>:last-child{margin-bottom:0}.ui.dropdown .menu>.message{margin:0 -1px}.ui.visible.visible.visible.visible.message{display:block}.ui.icon.visible.visible.visible.visible.message{display:flex}.ui.hidden.hidden.hidden.hidden.message{display:none}.ui.compact.message{display:inline-block}.ui.compact.icon.message{display:inline-flex}.ui.attached.message{margin-bottom:-1px;border-radius:.35714286rem .35714286rem 0 0;box-shadow:0 0 0 1px rgba(24,26,28,.45) inset;margin-left:-1px;margin-right:-1px}.ui.attached+.ui.attached.message:not(.top):not(.bottom){margin-top:-1px;border-radius:0}.ui.bottom.attached.message{margin-top:-1px;border-radius:0 0 .35714286rem .35714286rem;box-shadow:0 0 0 1px rgba(24,26,28,.45) inset,0 1px 2px 0 rgba(24,26,28,.45)}.ui.bottom.attached.message:not(:last-child){margin-bottom:1em}.ui.attached.icon.message{width:auto}.ui.icon.message{display:flex;width:100%;align-items:center}.ui.icon.message>.icon:not(.close){display:block;flex:0 0 auto;width:auto;line-height:1;vertical-align:middle;font-size:3em;opacity:.8}.ui.icon.message>.content{display:block;flex:1 1 auto;vertical-align:middle}.ui.icon.message .icon:not(.close)+.content{padding-left:0}.ui.icon.message .circular.icon{width:1em}.ui.floating.message{box-shadow:0 0 0 1px rgba(24,26,28,.22) inset,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.black.message{background-color:#f9fafb;color:rgba(0,0,0,.9)}.ui.positive.message{background-color:#fcfff5;color:#2c662d}.ui.attached.positive.message,.ui.positive.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.positive.message .header{color:#1a531b}.ui.negative.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.negative.message,.ui.negative.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.negative.message .header{color:#912d2b}.ui.info.message{background-color:#f8ffff;color:#276f86}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #a9d5de inset,0 0 0 0 transparent}.ui.info.message .header{color:#0e566c}.ui.warning.message{background-color:#fffaf3;color:#573a08}.ui.attached.warning.message,.ui.warning.message{box-shadow:0 0 0 1px #794b02 inset,0 0 0 0 transparent}.ui.warning.message .header{color:#794b02}.ui.error.message{background-color:#fff6f6;color:#9f3a38}.ui.attached.error.message,.ui.error.message{box-shadow:0 0 0 1px #e0b4b4 inset,0 0 0 0 transparent}.ui.error.message .header{color:#912d2b}.ui.success.message{background-color:#fcfff5;color:#2c662d}.ui.attached.success.message,.ui.success.message{box-shadow:0 0 0 1px #a3c293 inset,0 0 0 0 transparent}.ui.success.message .header{color:#1a531b}.ui.black.message,.ui.inverted.message{background-color:#f9fafb;color:rgba(0,0,0,.9)}.ui.red.message{background-color:#ffe8e6;color:#db2828;box-shadow:0 0 0 1px #db2828 inset,0 0 0 0 transparent}.ui.red.message .header{color:#c82121}.ui.orange.message{background-color:#ffedde;color:#c06d36;box-shadow:0 0 0 1px #c06d36 inset,0 0 0 0 transparent}.ui.orange.message .header{color:#ac6230}.ui.yellow.message{background-color:#fff8db;color:#b58105;box-shadow:0 0 0 1px #b58105 inset,0 0 0 0 transparent}.ui.yellow.message .header{color:#9c6f04}.ui.olive.message{background-color:#fbfdef;color:#8abc1e;box-shadow:0 0 0 1px #8abc1e inset,0 0 0 0 transparent}.ui.olive.message .header{color:#7aa61a}.ui.green.message{background-color:#e5f9e7;color:#1ebc30;box-shadow:0 0 0 1px #1ebc30 inset,0 0 0 0 transparent}.ui.green.message .header{color:#1aa62a}.ui.teal.message{background-color:#e1f7f7;color:#10a3a3;box-shadow:0 0 0 1px #10a3a3 inset,0 0 0 0 transparent}.ui.teal.message .header{color:#0e8c8c}.ui.blue.message{background-color:#dff0ff;color:#2185d0;box-shadow:0 0 0 1px #2185d0 inset,0 0 0 0 transparent}.ui.blue.message .header{color:#1e77ba}.ui.violet.message{background-color:#eae7ff;color:#6435c9;box-shadow:0 0 0 1px #6435c9 inset,0 0 0 0 transparent}.ui.violet.message .header{color:#5a30b5}.ui.purple.message{background-color:#f6e7ff;color:#a333c8;box-shadow:0 0 0 1px #a333c8 inset,0 0 0 0 transparent}.ui.purple.message .header{color:#922eb4}.ui.pink.message{background-color:#ffe3fb;color:#e03997;box-shadow:0 0 0 1px #e03997 inset,0 0 0 0 transparent}.ui.pink.message .header{color:#dd238b}.ui.brown.message{background-color:#f1e2d3;color:#a5673f;box-shadow:0 0 0 1px #a5673f inset,0 0 0 0 transparent}.ui.brown.message .header{color:#935b38}.ui.mini.message{font-size:.78571429em}.ui.tiny.message{font-size:.85714286em}.ui.small.message{font-size:.92857143em}.ui.message{font-size:1em}.ui.large.message{font-size:1.14285714em}.ui.big.message{font-size:1.28571429em}.ui.huge.message{font-size:1.42857143em}.ui.massive.message{font-size:1.71428571em}.ui.table{width:100%;background:#2e3235;margin:1em 0;border:1px solid rgba(24,26,28,.45);box-shadow:none;border-radius:.35714286rem;text-align:left;color:#ddd;border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#34393d;text-align:inherit;color:#ddd;padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:600;text-transform:none;border-bottom:1px solid rgba(24,26,28,.1);border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.35714286rem 0 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .35714286rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.35714286rem .35714286rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(24,26,28,.45);background:#34393d;text-align:inherit;color:#ddd;padding:.78571429em .78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .35714286rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .35714286rem 0}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .35714286rem .35714286rem}.ui.table tr td{border-top:1px solid rgba(24,26,28,.1)}.ui.table tr:first-child td{border-top:none}.ui.table tbody+tbody tr:first-child td{border-top:1px solid rgba(24,26,28,.1)}.ui.table td{padding:.78571429em .78571429em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable){padding:0}.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tfoot{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em!important;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:600}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(24,26,28,.45);border-right:1px solid rgba(24,26,28,.45)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(24,26,28,.1);border-right:1px solid rgba(24,26,28,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(255,255,255,.4);box-shadow:-1px -1px 0 1px #2e3235}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(255,255,255,.4);color:normal;box-shadow:1px 1px 0 1px #2e3235}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #2e3235}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #2e3235}.ui.definition.table tr td.definition,.ui.definition.table tr td:first-child:not(.ignored){background:rgba(255,255,255,.03);font-weight:600;color:rgba(255,255,255,.95);text-transform:'';box-shadow:'';text-align:'';font-size:1em;padding-left:'';padding-right:''}.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(24,26,28,.45)}.ui.definition.table tfoot:not(.full-width) th:nth-child(2){border-left:1px solid rgba(24,26,28,.45)}.ui.definition.table td:nth-child(2){border-left:1px solid rgba(24,26,28,.45)}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset}.ui.table td.positive,.ui.table tr.positive{background:#fcfff5!important;color:#2c662d!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset}.ui.table td.negative,.ui.table tr.negative{background:#fff6f6!important;color:#9f3a38!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset}.ui.table td.error,.ui.table tr.error{background:#fff6f6!important;color:#9f3a38!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #794b02 inset}.ui.table td.warning,.ui.table tr.warning{background:#fffaf3!important;color:#573a08!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 #ddd inset}.ui.table td.active,.ui.table tr.active{background:#e0e0e0!important;color:#ddd!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(255,255,255,.2)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tfoot{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover,.ui.table tbody tr td.selectable:hover{background:rgba(255,255,255,.05)!important;color:rgba(255,255,255,.95)!important}.ui.inverted.table tbody tr td.selectable:hover,.ui.selectable.inverted.table tbody tr:hover{background:rgba(0,0,0,.08)!important;color:#000!important}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em .78571429em}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:#ddd!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% - (-1px * 2));max-width:calc(100% - (-1px * 2));box-shadow:none;border:1px solid #3b3c3e}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.35714286rem .35714286rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none,none;border-radius:0 0 .35714286rem .35714286rem}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(255,255,255,.95)!important}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.red.table{border-top:.2em solid #db2828}.ui.inverted.red.table{background-color:#db2828!important;color:#2e3235!important}.ui.orange.table{border-top:.2em solid #c06d36}.ui.inverted.orange.table{background-color:#c06d36!important;color:#2e3235!important}.ui.yellow.table{border-top:.2em solid #fbbd08}.ui.inverted.yellow.table{background-color:#fbbd08!important;color:#2e3235!important}.ui.olive.table{border-top:.2em solid #b5cc18}.ui.inverted.olive.table{background-color:#b5cc18!important;color:#2e3235!important}.ui.green.table{border-top:.2em solid #21ba45}.ui.inverted.green.table{background-color:#21ba45!important;color:#2e3235!important}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#2e3235!important}.ui.blue.table{border-top:.2em solid #2185d0}.ui.inverted.blue.table{background-color:#2185d0!important;color:#2e3235!important}.ui.violet.table{border-top:.2em solid #6435c9}.ui.inverted.violet.table{background-color:#6435c9!important;color:#2e3235!important}.ui.purple.table{border-top:.2em solid #a333c8}.ui.inverted.purple.table{background-color:#a333c8!important;color:#2e3235!important}.ui.pink.table{border-top:.2em solid #e03997}.ui.inverted.pink.table{background-color:#e03997!important;color:#2e3235!important}.ui.brown.table{border-top:.2em solid #a5673f}.ui.inverted.brown.table{background-color:#a5673f!important;color:#2e3235!important}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676!important;color:#2e3235!important}.ui.black.table{border-top:.2em solid #f9fafb}.ui.inverted.black.table{background-color:#f9fafb!important;color:#2e3235!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td{width:6.25%}.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(24,26,28,.45);color:#ddd}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(255,255,255,.2)}.ui.sortable.table thead th:hover{background:rgba(255,255,255,.05);color:rgba(255,255,255,.8)}.ui.sortable.table thead th.sorted{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95)}.ui.inverted.sortable.table thead th.sorted{background:rgba(0,0,0,.15) linear-gradient(transparent,rgba(255,255,255,.05));color:#000}.ui.inverted.sortable.table thead th:hover{background:rgba(0,0,0,.08) linear-gradient(transparent,rgba(255,255,255,.05));color:#000}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(0,0,0,.9);border:none}.ui.inverted.table th{background-color:rgba(255,255,255,.15);border-color:rgba(0,0,0,.1)!important;color:rgba(0,0,0,.9)!important}.ui.inverted.table tr td{border-color:rgba(0,0,0,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(0,0,0,.2)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#2e3235}.ui.inverted.definition.table tr td:first-child{background:rgba(0,0,0,.02);color:#000}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(24,26,28,.45);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(255,255,255,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(24,26,28,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em 1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em 1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}.ui.ad{display:block;overflow:hidden;margin:1em 0}.ui.ad:first-child{margin:0}.ui.ad:last-child{margin:0}.ui.ad iframe{margin:0;padding:0;border:none;overflow:hidden}.ui.leaderboard.ad{width:728px;height:90px}.ui[class*="medium rectangle"].ad{width:300px;height:250px}.ui[class*="large rectangle"].ad{width:336px;height:280px}.ui[class*="half page"].ad{width:300px;height:600px}.ui.square.ad{width:250px;height:250px}.ui[class*="small square"].ad{width:200px;height:200px}.ui[class*="small rectangle"].ad{width:180px;height:150px}.ui[class*="vertical rectangle"].ad{width:240px;height:400px}.ui.button.ad{width:120px;height:90px}.ui[class*="square button"].ad{width:125px;height:125px}.ui[class*="small button"].ad{width:120px;height:60px}.ui.skyscraper.ad{width:120px;height:600px}.ui[class*="wide skyscraper"].ad{width:160px}.ui.banner.ad{width:468px;height:60px}.ui[class*="vertical banner"].ad{width:120px;height:240px}.ui[class*="top banner"].ad{width:930px;height:180px}.ui[class*="half banner"].ad{width:234px;height:60px}.ui[class*="large leaderboard"].ad{width:970px;height:90px}.ui.billboard.ad{width:970px;height:250px}.ui.panorama.ad{width:980px;height:120px}.ui.netboard.ad{width:580px;height:400px}.ui[class*="large mobile banner"].ad{width:320px;height:100px}.ui[class*="mobile leaderboard"].ad{width:320px;height:50px}.ui.mobile.ad{display:none}@media only screen and (max-width:767px){.ui.mobile.ad{display:block}}.ui.centered.ad{margin-left:auto;margin-right:auto}.ui.test.ad{position:relative;background:#545454}.ui.test.ad:after{position:absolute;top:50%;left:50%;width:100%;text-align:center;transform:translateX(-50%) translateY(-50%);content:'Ad';color:#2e3235;font-size:1em;font-weight:600}.ui.mobile.test.ad:after{font-size:.85714286em}.ui.test.ad[data-text]:after{content:attr(data-text)}.ui.card,.ui.cards>.card{max-width:100%;position:relative;display:flex;flex-direction:column;width:290px;min-height:0;background:#2e3235;padding:0;border:none;border-radius:.35714286rem;box-shadow:0 1px 3px 0 #3b3c3e,0 0 0 1px #3b3c3e;transition:box-shadow .1s ease,transform .1s ease;z-index:''}.ui.card{margin:1em 0}.ui.card a,.ui.cards>.card a{cursor:pointer}.ui.card:first-child{margin-top:0}.ui.card:last-child{margin-bottom:0}.ui.cards{display:flex;margin:-.875em -.5em;flex-wrap:wrap}.ui.cards>.card{display:flex;margin:.875em .5em;float:none}.ui.card:after,.ui.cards:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.cards~.ui.cards{margin-top:.875em}.ui.card>:first-child,.ui.cards>.card>:first-child{border-radius:.35714286rem .35714286rem 0 0!important;border-top:none!important}.ui.card>:last-child,.ui.cards>.card>:last-child{border-radius:0 0 .35714286rem .35714286rem!important}.ui.card>:only-child,.ui.cards>.card>:only-child{border-radius:.35714286rem!important}.ui.card>.image,.ui.cards>.card>.image{position:relative;display:block;flex:0 0 auto;padding:0;background:rgba(255,255,255,.05)}.ui.card>.image>img,.ui.cards>.card>.image>img{display:block;width:100%;height:auto;border-radius:inherit}.ui.card>.image:not(.ui)>img,.ui.cards>.card>.image:not(.ui)>img{border:none}.ui.card>.content,.ui.cards>.card>.content{flex-grow:1;border:none;border-top:1px solid rgba(24,26,28,.1);background:0 0;margin:0;padding:1em 1em;box-shadow:none;font-size:1em;border-radius:0}.ui.card>.content:after,.ui.cards>.card>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.card>.content>.header,.ui.cards>.card>.content>.header{display:block;margin:'';font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;color:rgba(255,255,255,.95)}.ui.card>.content>.header:not(.ui),.ui.cards>.card>.content>.header:not(.ui){font-weight:600;font-size:1.28571429em;margin-top:-.21425em;line-height:1.28571429em}.ui.card>.content>.header+.description,.ui.card>.content>.meta+.description,.ui.cards>.card>.content>.header+.description,.ui.cards>.card>.content>.meta+.description{margin-top:.5em}.ui.card [class*="left floated"],.ui.cards>.card [class*="left floated"]{float:left}.ui.card [class*="right floated"],.ui.cards>.card [class*="right floated"]{float:right}.ui.card [class*="left aligned"],.ui.cards>.card [class*="left aligned"]{text-align:left}.ui.card [class*="center aligned"],.ui.cards>.card [class*="center aligned"]{text-align:center}.ui.card [class*="right aligned"],.ui.cards>.card [class*="right aligned"]{text-align:right}.ui.card .content img,.ui.cards>.card .content img{display:inline-block;vertical-align:middle;width:''}.ui.card .avatar img,.ui.card img.avatar,.ui.cards>.card .avatar img,.ui.cards>.card img.avatar{width:2em;height:2em;border-radius:500rem}.ui.card>.content>.description,.ui.cards>.card>.content>.description{clear:both;color:rgba(0,0,0,.68)}.ui.card>.content p,.ui.cards>.card>.content p{margin:0 0 .5em}.ui.card>.content p:last-child,.ui.cards>.card>.content p:last-child{margin-bottom:0}.ui.card .meta,.ui.cards>.card .meta{font-size:1em;color:rgba(255,255,255,.5)}.ui.card .meta *,.ui.cards>.card .meta *{margin-right:.3em}.ui.card .meta :last-child,.ui.cards>.card .meta :last-child{margin-right:0}.ui.card .meta [class*="right floated"],.ui.cards>.card .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.card>.content a:not(.ui),.ui.cards>.card>.content a:not(.ui){color:'';transition:color .1s ease}.ui.card>.content a:not(.ui):hover,.ui.cards>.card>.content a:not(.ui):hover{color:''}.ui.card>.content>a.header,.ui.cards>.card>.content>a.header{color:rgba(255,255,255,.95)}.ui.card>.content>a.header:hover,.ui.cards>.card>.content>a.header:hover{color:#729ad0}.ui.card .meta>a:not(.ui),.ui.cards>.card .meta>a:not(.ui){color:rgba(255,255,255,.5)}.ui.card .meta>a:not(.ui):hover,.ui.cards>.card .meta>a:not(.ui):hover{color:#ddd}.ui.card>.button,.ui.card>.buttons,.ui.cards>.card>.button,.ui.cards>.card>.buttons{margin:0 -1px;width:calc(100% + 2px)}.ui.card .dimmer,.ui.cards>.card .dimmer{background-color:'';z-index:10}.ui.card>.content .star.icon,.ui.cards>.card>.content .star.icon{cursor:pointer;opacity:.75;transition:color .1s ease}.ui.card>.content .star.icon:hover,.ui.cards>.card>.content .star.icon:hover{opacity:1;color:#ffb70a}.ui.card>.content .active.star.icon,.ui.cards>.card>.content .active.star.icon{color:#ffe623}.ui.card>.content .like.icon,.ui.cards>.card>.content .like.icon{cursor:pointer;opacity:.75;transition:color .1s ease}.ui.card>.content .like.icon:hover,.ui.cards>.card>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.card>.content .active.like.icon,.ui.cards>.card>.content .active.like.icon{color:#ff2733}.ui.card>.extra,.ui.cards>.card>.extra{max-width:100%;min-height:0!important;flex-grow:0;border-top:1px solid rgba(0,0,0,.05)!important;position:static;background:0 0;width:auto;margin:0 0;padding:.75em 1em;top:0;left:0;color:rgba(255,255,255,.5);box-shadow:none;transition:color .1s ease}.ui.card>.extra a:not(.ui),.ui.cards>.card>.extra a:not(.ui){color:rgba(255,255,255,.4)}.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#729ad0}.ui.raised.card,.ui.raised.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.link.cards .raised.card:hover,.ui.link.raised.card:hover,.ui.raised.cards a.card:hover,a.ui.raised.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 4px 0 rgba(34,36,38,.15),0 2px 10px 0 rgba(34,36,38,.25)}.ui.raised.card,.ui.raised.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.centered.cards{justify-content:center}.ui.centered.card{margin-left:auto;margin-right:auto}.ui.fluid.card{width:100%;max-width:9999px}.ui.cards a.card,.ui.link.card,.ui.link.cards .card,a.ui.card{transform:none}.ui.cards a.card:hover,.ui.link.card:hover,.ui.link.cards .card:hover,a.ui.card:hover{cursor:pointer;z-index:5;background:#2e3235;border:none;box-shadow:0 1px 3px 0 #4d5b66,0 0 0 1px #3b3c3e;transform:translateY(-3px)}.ui.cards>.red.card,.ui.red.card,.ui.red.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #db2828,0 1px 3px 0 #3b3c3e}.ui.cards>.red.card:hover,.ui.red.card:hover,.ui.red.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #d01919,0 1px 3px 0 #4d5b66}.ui.cards>.orange.card,.ui.orange.card,.ui.orange.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #c06d36,0 1px 3px 0 #3b3c3e}.ui.cards>.orange.card:hover,.ui.orange.card:hover,.ui.orange.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #b2602a,0 1px 3px 0 #4d5b66}.ui.cards>.yellow.card,.ui.yellow.card,.ui.yellow.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #fbbd08,0 1px 3px 0 #3b3c3e}.ui.cards>.yellow.card:hover,.ui.yellow.card:hover,.ui.yellow.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #eaae00,0 1px 3px 0 #4d5b66}.ui.cards>.olive.card,.ui.olive.card,.ui.olive.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #b5cc18,0 1px 3px 0 #3b3c3e}.ui.cards>.olive.card:hover,.ui.olive.card:hover,.ui.olive.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #a7bd0d,0 1px 3px 0 #4d5b66}.ui.cards>.green.card,.ui.green.card,.ui.green.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #21ba45,0 1px 3px 0 #3b3c3e}.ui.cards>.green.card:hover,.ui.green.card:hover,.ui.green.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #16ab39,0 1px 3px 0 #4d5b66}.ui.cards>.teal.card,.ui.teal.card,.ui.teal.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #00b5ad,0 1px 3px 0 #3b3c3e}.ui.cards>.teal.card:hover,.ui.teal.card:hover,.ui.teal.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #009c95,0 1px 3px 0 #4d5b66}.ui.blue.card,.ui.blue.cards>.card,.ui.cards>.blue.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #2185d0,0 1px 3px 0 #3b3c3e}.ui.blue.card:hover,.ui.blue.cards>.card:hover,.ui.cards>.blue.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #1678c2,0 1px 3px 0 #4d5b66}.ui.cards>.violet.card,.ui.violet.card,.ui.violet.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #6435c9,0 1px 3px 0 #3b3c3e}.ui.cards>.violet.card:hover,.ui.violet.card:hover,.ui.violet.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #5829bb,0 1px 3px 0 #4d5b66}.ui.cards>.purple.card,.ui.purple.card,.ui.purple.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #a333c8,0 1px 3px 0 #3b3c3e}.ui.cards>.purple.card:hover,.ui.purple.card:hover,.ui.purple.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #9627ba,0 1px 3px 0 #4d5b66}.ui.cards>.pink.card,.ui.pink.card,.ui.pink.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #e03997,0 1px 3px 0 #3b3c3e}.ui.cards>.pink.card:hover,.ui.pink.card:hover,.ui.pink.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #e61a8d,0 1px 3px 0 #4d5b66}.ui.brown.card,.ui.brown.cards>.card,.ui.cards>.brown.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #a5673f,0 1px 3px 0 #3b3c3e}.ui.brown.card:hover,.ui.brown.cards>.card:hover,.ui.cards>.brown.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #975b33,0 1px 3px 0 #4d5b66}.ui.cards>.grey.card,.ui.grey.card,.ui.grey.cards>.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #767676,0 1px 3px 0 #3b3c3e}.ui.cards>.grey.card:hover,.ui.grey.card:hover,.ui.grey.cards>.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #838383,0 1px 3px 0 #4d5b66}.ui.black.card,.ui.black.cards>.card,.ui.cards>.black.card{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #f9fafb,0 1px 3px 0 #3b3c3e}.ui.black.card:hover,.ui.black.cards>.card:hover,.ui.cards>.black.card:hover{box-shadow:0 0 0 1px #3b3c3e,0 2px 0 0 #fff,0 1px 3px 0 #4d5b66}.ui.one.cards{margin-left:0;margin-right:0}.ui.one.cards>.card{width:100%}.ui.two.cards{margin-left:-1em;margin-right:-1em}.ui.two.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.three.cards{margin-left:-1em;margin-right:-1em}.ui.three.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.four.cards{margin-left:-.75em;margin-right:-.75em}.ui.four.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.five.cards{margin-left:-.75em;margin-right:-.75em}.ui.five.cards>.card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.six.cards{margin-left:-.75em;margin-right:-.75em}.ui.six.cards>.card{width:calc(16.66666667% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.seven.cards{margin-left:-.5em;margin-right:-.5em}.ui.seven.cards>.card{width:calc(14.28571429% - 1em);margin-left:.5em;margin-right:.5em}.ui.eight.cards{margin-left:-.5em;margin-right:-.5em}.ui.eight.cards>.card{width:calc(12.5% - 1em);margin-left:.5em;margin-right:.5em;font-size:11px}.ui.nine.cards{margin-left:-.5em;margin-right:-.5em}.ui.nine.cards>.card{width:calc(11.11111111% - 1em);margin-left:.5em;margin-right:.5em;font-size:10px}.ui.ten.cards{margin-left:-.5em;margin-right:-.5em}.ui.ten.cards>.card{width:calc(10% - 1em);margin-left:.5em;margin-right:.5em}@media only screen and (max-width:767px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards>.card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.seven.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.seven.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.nine.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.nine.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.ten.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.ten.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}}@media only screen and (min-width:768px) and (max-width:991px){.ui.two.doubling.cards{margin-left:0;margin-right:0}.ui.two.doubling.cards>.card{width:100%;margin-left:0;margin-right:0}.ui.three.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.three.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.four.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.four.doubling.cards>.card{width:calc(50% - 2em);margin-left:1em;margin-right:1em}.ui.five.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.five.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.six.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.six.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-1em;margin-right:-1em}.ui.eight.doubling.cards>.card{width:calc(33.33333333% - 2em);margin-left:1em;margin-right:1em}.ui.eight.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.eight.doubling.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.nine.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.nine.doubling.cards>.card{width:calc(25% - 1.5em);margin-left:.75em;margin-right:.75em}.ui.ten.doubling.cards{margin-left:-.75em;margin-right:-.75em}.ui.ten.doubling.cards>.card{width:calc(20% - 1.5em);margin-left:.75em;margin-right:.75em}}@media only screen and (max-width:767px){.ui.stackable.cards{display:block!important}.ui.stackable.cards .card:first-child{margin-top:0!important}.ui.stackable.cards>.card{display:block!important;height:auto!important;margin:1em 1em;padding:0!important;width:calc(100% - 2em)!important}}.ui.cards>.card{font-size:1em}.ui.comments{margin:1.5em 0;max-width:650px}.ui.comments:first-child{margin-top:0}.ui.comments:last-child{margin-bottom:0}.ui.comments .comment{position:relative;background:0 0;margin:.5em 0 0;padding:.5em 0 0;border:none;border-top:none;line-height:1.2}.ui.comments .comment:first-child{margin-top:0;padding-top:0}.ui.comments .comment .comments{margin:0 0 .5em .5em;padding:1em 0 1em 1em}.ui.comments .comment .comments:before{position:absolute;top:0;left:0}.ui.comments .comment .comments .comment{border:none;border-top:none;background:0 0}.ui.comments .comment .avatar{display:block;width:2.5em;height:auto;float:left;margin:.2em 0 0}.ui.comments .comment .avatar img,.ui.comments .comment img.avatar{display:block;margin:0 auto;width:100%;height:100%;border-radius:.25rem}.ui.comments .comment>.content{display:block}.ui.comments .comment>.avatar~.content{margin-left:3.5em}.ui.comments .comment .author{font-size:1em;color:#ddd;font-weight:600}.ui.comments .comment a.author{cursor:pointer}.ui.comments .comment a.author:hover{color:#729ad0}.ui.comments .comment .metadata{display:inline-block;margin-left:.5em;color:rgba(255,255,255,.5);font-size:.875em}.ui.comments .comment .metadata>*{display:inline-block;margin:0 .5em 0 0}.ui.comments .comment .metadata>:last-child{margin-right:0}.ui.comments .comment .text{margin:.25em 0 .5em;font-size:1em;word-wrap:break-word;color:#ddd;line-height:1.3}.ui.comments .comment .actions{font-size:.875em}.ui.comments .comment .actions a{cursor:pointer;display:inline-block;margin:0 .75em 0 0;color:rgba(255,255,255,.4)}.ui.comments .comment .actions a:last-child{margin-right:0}.ui.comments .comment .actions a.active,.ui.comments .comment .actions a:hover{color:rgba(255,255,255,.8)}.ui.comments>.reply.form{margin-top:1em}.ui.comments .comment .reply.form{width:100%;margin-top:1em}.ui.comments .reply.form textarea{font-size:1em;height:12em}.ui.collapsed.comments,.ui.comments .collapsed.comment,.ui.comments .collapsed.comments{display:none}.ui.threaded.comments .comment .comments{margin:-1.5em 0 -1em 1.25em;padding:3em 0 2em 2.25em;box-shadow:-1px 0 0 rgba(24,26,28,.45)}.ui.minimal.comments .comment .actions{opacity:0;position:absolute;top:0;right:0;left:auto;transition:opacity .2s ease;transition-delay:.1s}.ui.minimal.comments .comment>.content:hover>.actions{opacity:1}.ui.mini.comments{font-size:.78571429rem}.ui.tiny.comments{font-size:.85714286rem}.ui.small.comments{font-size:.92857143rem}.ui.comments{font-size:1rem}.ui.large.comments{font-size:1.14285714rem}.ui.big.comments{font-size:1.28571429rem}.ui.huge.comments{font-size:1.42857143rem}.ui.massive.comments{font-size:1.71428571rem}.ui.feed{margin:1em 0}.ui.feed:first-child{margin-top:0}.ui.feed:last-child{margin-bottom:0}.ui.feed>.event{display:flex;flex-direction:row;width:100%;padding:.21428571rem 0;margin:0;background:0 0;border-top:none}.ui.feed>.event:first-child{border-top:0;padding-top:0}.ui.feed>.event:last-child{padding-bottom:0}.ui.feed>.event>.label{display:block;flex:0 0 auto;width:2.5em;height:auto;align-self:stretch;text-align:left}.ui.feed>.event>.label .icon{opacity:1;font-size:1.5em;width:100%;padding:.25em;background:0 0;border:none;border-radius:none;color:rgba(0,0,0,.6)}.ui.feed>.event>.label img{width:100%;height:auto;border-radius:500rem}.ui.feed>.event>.label+.content{margin:.5em 0 .35714286em 1.14285714em}.ui.feed>.event>.content{display:block;flex:1 1 auto;align-self:stretch;text-align:left;word-wrap:break-word}.ui.feed>.event:last-child>.content{padding-bottom:0}.ui.feed>.event>.content a{cursor:pointer}.ui.feed>.event>.content .date{margin:-.5rem 0 0;padding:0;font-weight:400;font-size:1em;font-style:normal;color:rgba(255,255,255,.5)}.ui.feed>.event>.content .summary{margin:0;font-size:1em;font-weight:600;color:#ddd}.ui.feed>.event>.content .summary img{display:inline-block;width:auto;height:10em;margin:-.25em .25em 0 0;border-radius:.25em;vertical-align:middle}.ui.feed>.event>.content .user{display:inline-block;font-weight:600;margin-right:0;vertical-align:baseline}.ui.feed>.event>.content .user img{margin:-.25em .25em 0 0;width:auto;height:10em;vertical-align:middle}.ui.feed>.event>.content .summary>.date{display:inline-block;float:none;font-weight:400;font-size:.85714286em;font-style:normal;margin:0 0 0 .5em;padding:0;color:rgba(255,255,255,.5)}.ui.feed>.event>.content .extra{margin:.5em 0 0;background:0 0;padding:0;color:#ddd}.ui.feed>.event>.content .extra.images img{display:inline-block;margin:0 .25em 0 0;width:6em}.ui.feed>.event>.content .extra.text{padding:0;border-left:none;font-size:1em;max-width:500px;line-height:1.4285em}.ui.feed>.event>.content .meta{display:inline-block;font-size:.85714286em;margin:.5em 0 0;background:0 0;border:none;border-radius:0;box-shadow:none;padding:0;color:rgba(0,0,0,.6)}.ui.feed>.event>.content .meta>*{position:relative;margin-left:.75em}.ui.feed>.event>.content .meta>:after{content:'';color:rgba(0,0,0,.2);top:0;left:-1em;opacity:1;position:absolute;vertical-align:top}.ui.feed>.event>.content .meta .like{color:'';transition:.2s color ease}.ui.feed>.event>.content .meta .like:hover .icon{color:#ff2733}.ui.feed>.event>.content .meta .active.like .icon{color:#ef404a}.ui.feed>.event>.content .meta>:first-child{margin-left:0}.ui.feed>.event>.content .meta>:first-child::after{display:none}.ui.feed>.event>.content .meta a,.ui.feed>.event>.content .meta>.icon{cursor:pointer;opacity:1;color:rgba(0,0,0,.5);transition:color .1s ease}.ui.feed>.event>.content .meta a:hover,.ui.feed>.event>.content .meta a:hover .icon,.ui.feed>.event>.content .meta>.icon:hover{color:rgba(255,255,255,.95)}.ui.small.feed{font-size:.92857143rem}.ui.feed{font-size:1rem}.ui.large.feed{font-size:1.14285714rem}.ui.items>.item{display:flex;margin:1em 0;width:100%;min-height:0;background:0 0;padding:0;border:none;border-radius:0;box-shadow:none;transition:box-shadow .1s ease;z-index:''}.ui.items>.item a{cursor:pointer}.ui.items{margin:1.5em 0}.ui.items:first-child{margin-top:0!important}.ui.items:last-child{margin-bottom:0!important}.ui.items>.item:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item:first-child{margin-top:0}.ui.items>.item:last-child{margin-bottom:0}.ui.items>.item>.image{position:relative;flex:0 0 auto;display:block;float:none;margin:0;padding:0;max-height:'';align-self:top}.ui.items>.item>.image>img{display:block;width:100%;height:auto;border-radius:.125rem;border:none}.ui.items>.item>.image:only-child>img{border-radius:0}.ui.items>.item>.content{display:block;flex:1 1 auto;background:0 0;margin:0;padding:0;box-shadow:none;font-size:1em;border:none;border-radius:0}.ui.items>.item>.content:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image+.content{min-width:0;width:auto;display:block;margin-left:0;align-self:top;padding-left:1.5em}.ui.items>.item>.content>.header{display:inline-block;margin:-.21425em 0 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:600;color:rgba(255,255,255,.95)}.ui.items>.item>.content>.header:not(.ui){font-size:1.28571429em}.ui.items>.item [class*="left floated"]{float:left}.ui.items>.item [class*="right floated"]{float:right}.ui.items>.item .content img{align-self:middle;width:''}.ui.items>.item .avatar img,.ui.items>.item img.avatar{width:'';height:'';border-radius:500rem}.ui.items>.item>.content>.description{margin-top:.6em;max-width:auto;font-size:1em;line-height:1.4285em;color:#ddd}.ui.items>.item>.content p{margin:0 0 .5em}.ui.items>.item>.content p:last-child{margin-bottom:0}.ui.items>.item .meta{margin:.5em 0 .5em;font-size:1em;line-height:1em;color:rgba(0,0,0,.6)}.ui.items>.item .meta *{margin-right:.3em}.ui.items>.item .meta :last-child{margin-right:0}.ui.items>.item .meta [class*="right floated"]{margin-right:0;margin-left:.3em}.ui.items>.item>.content a:not(.ui){color:'';transition:color .1s ease}.ui.items>.item>.content a:not(.ui):hover{color:''}.ui.items>.item>.content>a.header{color:rgba(255,255,255,.95)}.ui.items>.item>.content>a.header:hover{color:#729ad0}.ui.items>.item .meta>a:not(.ui){color:rgba(255,255,255,.5)}.ui.items>.item .meta>a:not(.ui):hover{color:#ddd}.ui.items>.item>.content .favorite.icon{cursor:pointer;opacity:.75;transition:color .1s ease}.ui.items>.item>.content .favorite.icon:hover{opacity:1;color:#ffb70a}.ui.items>.item>.content .active.favorite.icon{color:#ffe623}.ui.items>.item>.content .like.icon{cursor:pointer;opacity:.75;transition:color .1s ease}.ui.items>.item>.content .like.icon:hover{opacity:1;color:#ff2733}.ui.items>.item>.content .active.like.icon{color:#ff2733}.ui.items>.item .extra{display:block;position:relative;background:0 0;margin:.5rem 0 0;width:100%;padding:0 0 0;top:0;left:0;color:rgba(255,255,255,.5);box-shadow:none;transition:color .1s ease;border-top:none}.ui.items>.item .extra>*{margin:.25rem .5rem .25rem 0}.ui.items>.item .extra>[class*="right floated"]{margin:.25rem 0 .25rem .5rem}.ui.items>.item .extra:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.items>.item>.image:not(.ui){width:175px}@media only screen and (min-width:768px) and (max-width:991px){.ui.items>.item{margin:1em 0}.ui.items>.item>.image:not(.ui){width:150px}.ui.items>.item>.image+.content{display:block;padding:0 0 0 1em}}@media only screen and (max-width:767px){.ui.items:not(.unstackable)>.item{flex-direction:column;margin:2em 0}.ui.items:not(.unstackable)>.item>.image{display:block;margin-left:auto;margin-right:auto}.ui.items:not(.unstackable)>.item>.image,.ui.items:not(.unstackable)>.item>.image>img{max-width:100%!important;width:auto!important;max-height:250px!important}.ui.items:not(.unstackable)>.item>.image+.content{display:block;padding:1.5em 0 0}}.ui.items>.item>.image+[class*="top aligned"].content{align-self:flex-start}.ui.items>.item>.image+[class*="middle aligned"].content{align-self:center}.ui.items>.item>.image+[class*="bottom aligned"].content{align-self:flex-end}.ui.relaxed.items>.item{margin:1.5em 0}.ui[class*="very relaxed"].items>.item{margin:2em 0}.ui.divided.items>.item{border-top:1px solid rgba(24,26,28,.45);margin:0;padding:1em 0}.ui.divided.items>.item:first-child{border-top:none;margin-top:0!important;padding-top:0!important}.ui.divided.items>.item:last-child{margin-bottom:0!important;padding-bottom:0!important}.ui.relaxed.divided.items>.item{margin:0;padding:1.5em 0}.ui[class*="very relaxed"].divided.items>.item{margin:0;padding:2em 0}.ui.items a.item:hover,.ui.link.items>.item:hover{cursor:pointer}.ui.items a.item:hover .content .header,.ui.link.items>.item:hover .content .header{color:#729ad0}.ui.items>.item{font-size:1em}@media only screen and (max-width:767px){.ui.unstackable.items>.item>.image,.ui.unstackable.items>.item>.image>img{width:125px!important}}.ui.statistic{display:inline-flex;flex-direction:column;margin:1em 0;max-width:auto}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{display:flex;align-items:flex-start;flex-wrap:wrap}.ui.statistics>.statistic{display:inline-flex;flex:0 1 auto;flex-direction:column;margin:0 1.5em 1em;max-width:auto}.ui.statistics{display:flex;margin:1em -1.5em -1em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:4rem;font-weight:400;line-height:1em;color:#f9fafb;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;font-weight:600;color:#ddd;text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistics .statistic>.label~.value{margin-top:0}.ui.statistic>.value~.label,.ui.statistics .statistic>.value~.label{margin-top:0}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:600;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.ten.statistics{margin:0 0 -1em}.ui.ten.statistics .statistic{min-width:10%;margin:0 0 1em}.ui.nine.statistics{margin:0 0 -1em}.ui.nine.statistics .statistic{min-width:11.11111111%;margin:0 0 1em}.ui.eight.statistics{margin:0 0 -1em}.ui.eight.statistics .statistic{min-width:12.5%;margin:0 0 1em}.ui.seven.statistics{margin:0 0 -1em}.ui.seven.statistics .statistic{min-width:14.28571429%;margin:0 0 1em}.ui.six.statistics{margin:0 0 -1em}.ui.six.statistics .statistic{min-width:16.66666667%;margin:0 0 1em}.ui.five.statistics{margin:0 0 -1em}.ui.five.statistics .statistic{min-width:20%;margin:0 0 1em}.ui.four.statistics{margin:0 0 -1em}.ui.four.statistics .statistic{min-width:25%;margin:0 0 1em}.ui.three.statistics{margin:0 0 -1em}.ui.three.statistics .statistic{min-width:33.33333333%;margin:0 0 1em}.ui.two.statistics{margin:0 0 -1em}.ui.two.statistics .statistic{min-width:50%;margin:0 0 1em}.ui.one.statistics{margin:0 0 -1em}.ui.one.statistics .statistic{min-width:100%;margin:0 0 1em}.ui.horizontal.statistic{flex-direction:row;align-items:center}.ui.horizontal.statistics{flex-direction:column;margin:0;max-width:none}.ui.horizontal.statistics .statistic{flex-direction:row;align-items:center;max-width:none;margin:1em 0}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#db2828}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#c06d36}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#fbbd08}.ui.olive.statistic>.value,.ui.olive.statistics .statistic>.value,.ui.statistics .olive.statistic>.value{color:#b5cc18}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#21ba45}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#2185d0}.ui.statistics .violet.statistic>.value,.ui.violet.statistic>.value,.ui.violet.statistics .statistic>.value{color:#6435c9}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#a333c8}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#e03997}.ui.brown.statistic>.value,.ui.brown.statistics .statistic>.value,.ui.statistics .brown.statistic>.value{color:#a5673f}.ui.grey.statistic>.value,.ui.grey.statistics .statistic>.value,.ui.statistics .grey.statistic>.value{color:#767676}.ui.inverted.statistic .value,.ui.inverted.statistics .statistic>.value{color:#2e3235}.ui.inverted.statistic .label,.ui.inverted.statistics .statistic>.label{color:rgba(0,0,0,.9)}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.inverted.olive.statistic>.value,.ui.inverted.olive.statistics .statistic>.value,.ui.statistics .inverted.olive.statistic>.value{color:#d9e778}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.inverted.violet.statistic>.value,.ui.inverted.violet.statistics .statistic>.value,.ui.statistics .inverted.violet.statistic>.value{color:#a291fb}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#dc73ff}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.inverted.brown.statistic>.value,.ui.inverted.brown.statistics .statistic>.value,.ui.statistics .inverted.brown.statistic>.value{color:#d67c1c}.ui.inverted.grey.statistic>.value,.ui.inverted.grey.statistics .statistic>.value,.ui.statistics .inverted.grey.statistic>.value{color:#dcddde}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem!important}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value{font-size:1.5rem!important}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem!important}.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem!important}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value{font-size:2rem!important}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem!important}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem!important}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem!important}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem!important}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem!important}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{font-size:3rem!important}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem!important}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem!important}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem!important}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem!important}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem!important}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem!important}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem!important}.ui.accordion,.ui.accordion .accordion{max-width:100%}.ui.accordion .accordion{margin:1em 0 0;padding:0}.ui.accordion .accordion .title,.ui.accordion .title{cursor:pointer}.ui.accordion .title:not(.ui){padding:.5em 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;color:#ddd}.ui.accordion .accordion .title~.content,.ui.accordion .title~.content{display:none}.ui.accordion:not(.styled) .accordion .title~.content:not(.ui),.ui.accordion:not(.styled) .title~.content:not(.ui){margin:'';padding:.5em 0 1em}.ui.accordion:not(.styled) .title~.content:not(.ui):last-child{padding-bottom:0}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{display:inline-block;float:none;opacity:1;width:1.25em;height:1em;margin:0 .25rem 0 0;padding:0;font-size:1em;transition:transform .1s ease,opacity .1s ease;vertical-align:baseline;transform:none}.ui.accordion.menu .item .title{display:block;padding:0}.ui.accordion.menu .item .title>.dropdown.icon{float:right;margin:.21425em 0 0 1em;transform:rotate(180deg)}.ui.accordion .ui.header .dropdown.icon{font-size:1em;margin:0 .25rem 0 0}.ui.accordion .accordion .active.title .dropdown.icon,.ui.accordion .active.title .dropdown.icon{transform:rotate(90deg)}.ui.accordion.menu .item .active.title>.dropdown.icon{transform:rotate(90deg)}.ui.styled.accordion{width:600px}.ui.styled.accordion,.ui.styled.accordion .accordion{border-radius:.35714286rem;background:#2e3235;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),0 0 0 1px rgba(24,26,28,.45)}.ui.styled.accordion .accordion .title,.ui.styled.accordion .title{margin:0;padding:.75em 1em;color:rgba(255,255,255,.4);font-weight:600;border-top:1px solid rgba(24,26,28,.45);transition:background .1s ease,color .1s ease}.ui.styled.accordion .accordion .title:first-child,.ui.styled.accordion>.title:first-child{border-top:none}.ui.styled.accordion .accordion .content,.ui.styled.accordion .content{margin:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .content{padding:0;padding:.5em 1em 1.5em}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover,.ui.styled.accordion .active.title,.ui.styled.accordion .title:hover{background:0 0;color:#ddd}.ui.styled.accordion .accordion .active.title,.ui.styled.accordion .accordion .title:hover{background:0 0;color:#ddd}.ui.styled.accordion .active.title{background:0 0;color:rgba(255,255,255,.95)}.ui.styled.accordion .accordion .active.title{background:0 0;color:rgba(255,255,255,.95)}.ui.accordion .accordion .active.content,.ui.accordion .active.content{display:block}.ui.fluid.accordion,.ui.fluid.accordion .accordion{width:100%}.ui.inverted.accordion .title:not(.ui){color:rgba(0,0,0,.9)}@font-face{font-family:Accordion;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');font-weight:400;font-style:normal}.ui.accordion .accordion .title .dropdown.icon,.ui.accordion .title .dropdown.icon{font-family:Accordion;line-height:1;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.accordion .accordion .title .dropdown.icon:before,.ui.accordion .title .dropdown.icon:before{content:'\f0da'}.ui.checkbox{position:relative;display:inline-block;backface-visibility:hidden;outline:0;vertical-align:baseline;font-style:normal;min-height:17px;font-size:1rem;line-height:17px;min-width:17px}.ui.checkbox input[type=checkbox],.ui.checkbox input[type=radio]{cursor:pointer;position:absolute;top:0;left:0;opacity:0!important;outline:0;z-index:3;width:17px;height:17px}.ui.checkbox .box,.ui.checkbox label{cursor:auto;position:relative;display:block;padding-left:1.85714em;outline:0;font-size:1em}.ui.checkbox .box:before,.ui.checkbox label:before{position:absolute;top:0;left:0;width:17px;height:17px;content:'';background:rgba(0,0,0,.2);border-radius:.21428571rem;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease;border:1px solid #3b3c3e}.ui.checkbox .box:after,.ui.checkbox label:after{position:absolute;font-size:14px;top:0;left:0;width:17px;height:17px;text-align:center;opacity:0;color:#ddd;transition:border .1s ease,opacity .1s ease,transform .1s ease,box-shadow .1s ease}.ui.checkbox label,.ui.checkbox+label{color:#ddd;transition:color .1s ease}.ui.checkbox+label{vertical-align:middle}.ui.checkbox .box:hover::before,.ui.checkbox label:hover::before{background:rgba(0,0,0,.2);border-color:rgba(24,26,28,.35)}.ui.checkbox label:hover,.ui.checkbox+label:hover{color:rgba(255,255,255,.8)}.ui.checkbox .box:active::before,.ui.checkbox label:active::before{background:#34393d;border-color:rgba(24,26,28,.35)}.ui.checkbox .box:active::after,.ui.checkbox label:active::after{color:rgba(255,255,255,.95)}.ui.checkbox input:active~label{color:rgba(255,255,255,.95)}.ui.checkbox input:focus~.box:before,.ui.checkbox input:focus~label:before{background:#2e3235;border-color:#96c8da}.ui.checkbox input:focus~.box:after,.ui.checkbox input:focus~label:after{color:rgba(255,255,255,.95)}.ui.checkbox input:focus~label{color:rgba(255,255,255,.95)}.ui.checkbox input:checked~.box:before,.ui.checkbox input:checked~label:before{background:rgba(0,0,0,.2);border-color:rgba(24,26,28,.35)}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{opacity:1;color:rgba(255,255,255,.95)}.ui.checkbox input:not([type=radio]):indeterminate~.box:before,.ui.checkbox input:not([type=radio]):indeterminate~label:before{background:rgba(0,0,0,.2);border-color:rgba(24,26,28,.35)}.ui.checkbox input:not([type=radio]):indeterminate~.box:after,.ui.checkbox input:not([type=radio]):indeterminate~label:after{opacity:1;color:rgba(255,255,255,.95)}.ui.checkbox input:checked:focus~.box:before,.ui.checkbox input:checked:focus~label:before,.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:before,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:before{background:#2e3235;border-color:#96c8da}.ui.checkbox input:checked:focus~.box:after,.ui.checkbox input:checked:focus~label:after,.ui.checkbox input:not([type=radio]):indeterminate:focus~.box:after,.ui.checkbox input:not([type=radio]):indeterminate:focus~label:after{color:rgba(255,255,255,.95)}.ui.read-only.checkbox,.ui.read-only.checkbox label{cursor:default}.ui.checkbox input[disabled]~.box:after,.ui.checkbox input[disabled]~label,.ui.disabled.checkbox .box:after,.ui.disabled.checkbox label{cursor:default!important;opacity:.5;color:#000}.ui.checkbox input.hidden{z-index:-1}.ui.checkbox input.hidden+label{cursor:pointer;user-select:none}.ui.radio.checkbox{min-height:15px}.ui.radio.checkbox .box,.ui.radio.checkbox label{padding-left:1.85714em}.ui.radio.checkbox .box:before,.ui.radio.checkbox label:before{content:'';transform:none;width:15px;height:15px;border-radius:500rem;top:1px;left:0}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{border:none;content:''!important;width:15px;height:15px;line-height:15px}.ui.radio.checkbox .box:after,.ui.radio.checkbox label:after{top:1px;left:0;width:15px;height:15px;border-radius:500rem;transform:scale(.46666667);background-color:#ddd}.ui.radio.checkbox input:focus~.box:before,.ui.radio.checkbox input:focus~label:before{background-color:#2e3235}.ui.radio.checkbox input:focus~.box:after,.ui.radio.checkbox input:focus~label:after{background-color:rgba(255,255,255,.95)}.ui.radio.checkbox input:indeterminate~.box:after,.ui.radio.checkbox input:indeterminate~label:after{opacity:0}.ui.radio.checkbox input:checked~.box:before,.ui.radio.checkbox input:checked~label:before{background-color:rgba(0,0,0,.2)}.ui.radio.checkbox input:checked~.box:after,.ui.radio.checkbox input:checked~label:after{background-color:rgba(255,255,255,.95)}.ui.radio.checkbox input:focus:checked~.box:before,.ui.radio.checkbox input:focus:checked~label:before{background-color:#2e3235}.ui.radio.checkbox input:focus:checked~.box:after,.ui.radio.checkbox input:focus:checked~label:after{background-color:rgba(255,255,255,.95)}.ui.slider.checkbox{min-height:1.25rem}.ui.slider.checkbox input{width:3.5rem;height:1.25rem}.ui.slider.checkbox .box,.ui.slider.checkbox label{padding-left:4.5rem;line-height:1rem;color:rgba(255,255,255,.4)}.ui.slider.checkbox .box:before,.ui.slider.checkbox label:before{display:block;position:absolute;content:'';border:none!important;left:0;z-index:1;top:.4rem;background-color:rgba(255,255,255,.05);width:3.5rem;height:.21428571rem;transform:none;border-radius:500rem;transition:background .3s ease}.ui.slider.checkbox .box:after,.ui.slider.checkbox label:after{background:#2e3235 linear-gradient(transparent,rgba(255,255,255,.05));position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),0 0 0 1px rgba(24,26,28,.45) inset;width:1.5rem;height:1.5rem;top:-.25rem;left:0;transform:none;border-radius:500rem;transition:left .3s ease}.ui.slider.checkbox input:focus~.box:before,.ui.slider.checkbox input:focus~label:before{background-color:rgba(255,255,255,.15);border:none}.ui.slider.checkbox .box:hover,.ui.slider.checkbox label:hover{color:rgba(255,255,255,.8)}.ui.slider.checkbox .box:hover::before,.ui.slider.checkbox label:hover::before{background:rgba(255,255,255,.15)}.ui.slider.checkbox input:checked~.box,.ui.slider.checkbox input:checked~label{color:rgba(255,255,255,.95)!important}.ui.slider.checkbox input:checked~.box:before,.ui.slider.checkbox input:checked~label:before{background-color:#545454!important}.ui.slider.checkbox input:checked~.box:after,.ui.slider.checkbox input:checked~label:after{left:2rem}.ui.slider.checkbox input:focus:checked~.box,.ui.slider.checkbox input:focus:checked~label{color:rgba(255,255,255,.95)!important}.ui.slider.checkbox input:focus:checked~.box:before,.ui.slider.checkbox input:focus:checked~label:before{background-color:#ebebeb!important}.ui.toggle.checkbox{min-height:1.5rem}.ui.toggle.checkbox input{width:3.5rem;height:1.5rem}.ui.toggle.checkbox .box,.ui.toggle.checkbox label{min-height:1.5rem;padding-left:4.5rem;color:#ddd}.ui.toggle.checkbox label{padding-top:.15em}.ui.toggle.checkbox .box:before,.ui.toggle.checkbox label:before{display:block;position:absolute;content:'';z-index:1;transform:none;border:none;top:0;background:rgba(255,255,255,.05);box-shadow:none;width:3.5rem;height:1.5rem;border-radius:500rem}.ui.toggle.checkbox .box:after,.ui.toggle.checkbox label:after{background:#2e3235 linear-gradient(transparent,rgba(255,255,255,.05));position:absolute;content:''!important;opacity:1;z-index:2;border:none;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),0 0 0 1px rgba(24,26,28,.45) inset;width:1.5rem;height:1.5rem;top:0;left:0;border-radius:500rem;transition:background .3s ease,left .3s ease}.ui.toggle.checkbox input~.box:after,.ui.toggle.checkbox input~label:after{left:-.05rem;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),0 0 0 1px rgba(24,26,28,.45) inset}.ui.toggle.checkbox input:focus~.box:before,.ui.toggle.checkbox input:focus~label:before{background-color:rgba(255,255,255,.15);border:none}.ui.toggle.checkbox .box:hover::before,.ui.toggle.checkbox label:hover::before{background-color:rgba(255,255,255,.15);border:none}.ui.toggle.checkbox input:checked~.box,.ui.toggle.checkbox input:checked~label{color:rgba(255,255,255,.95)!important}.ui.toggle.checkbox input:checked~.box:before,.ui.toggle.checkbox input:checked~label:before{background-color:#6987af!important}.ui.toggle.checkbox input:checked~.box:after,.ui.toggle.checkbox input:checked~label:after{left:2.15rem;box-shadow:0 1px 2px 0 rgba(24,26,28,.45),0 0 0 1px rgba(24,26,28,.45) inset}.ui.toggle.checkbox input:focus:checked~.box,.ui.toggle.checkbox input:focus:checked~label{color:rgba(255,255,255,.95)!important}.ui.toggle.checkbox input:focus:checked~.box:before,.ui.toggle.checkbox input:focus:checked~label:before{background-color:#4c71a3!important}.ui.fitted.checkbox .box,.ui.fitted.checkbox label{padding-left:0!important}.ui.fitted.toggle.checkbox{width:3.5rem}.ui.fitted.slider.checkbox{width:3.5rem}@font-face{font-family:Checkbox;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype')}.ui.checkbox .box:after,.ui.checkbox label:after{font-family:Checkbox}.ui.checkbox input:checked~.box:after,.ui.checkbox input:checked~label:after{content:'\e800'}.ui.checkbox input:indeterminate~.box:after,.ui.checkbox input:indeterminate~label:after{font-size:12px;content:'\e801'}.dimmable:not(body){position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;padding:1em;background-color:rgba(0,0,0,.25);opacity:0;line-height:1;animation-fill-mode:both;animation-duration:.5s;transition:background-color .5s linear;flex-direction:column;align-items:center;justify-content:center;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{user-select:text;color:#2e3235}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:flex;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.dimmed.dimmable>.ui.animating.legacy.dimmer,.dimmed.dimmable>.ui.visible.legacy.dimmer,.ui.active.legacy.dimmer{display:block}.ui[class*="top aligned"].dimmer{justify-content:flex-start}.ui[class*="bottom aligned"].dimmer{justify-content:flex-end}.ui.page.dimmer{position:fixed;transform-style:'';perspective:2000px;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.blurring.dimmable>:not(.dimmer){filter:blur(0) grayscale(0);transition:.8s filter ease}.blurring.dimmed.dimmable>:not(.dimmer){filter:blur(5px) grayscale(.7)}.blurring.dimmable>.dimmer{background-color:rgba(0,0,0,.6)}.blurring.dimmable>.inverted.dimmer{background-color:rgba(255,255,255,.6)}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#2e3235}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0%;height:0%;z-index:-100;background-color:rgba(0,0,0,0)}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background-color:rgba(0,0,0,.25);z-index:1}.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background-color:rgba(255,255,255,.85)}.ui.dropdown{cursor:pointer;position:relative;display:inline-block;text-align:left;transition:box-shadow .1s ease,width .1s ease,outline-offset .1s ease,outline-color .1s ease;outline:0;-webkit-tap-highlight-color:transparent}.ui.dropdown .menu{cursor:auto;position:absolute;display:none;outline:0;top:100%;min-width:max-content;margin:0;padding:0 0;background:#2e3235;font-size:1em;text-shadow:none;text-align:left;box-shadow:0 2px 3px 0 rgba(24,26,28,.45);border:1px solid rgba(24,26,28,.45);border-radius:.35714286rem;transition:opacity .1s ease;z-index:11;will-change:transform,opacity}.ui.dropdown .menu>*{white-space:nowrap}.ui.dropdown>input:not(.search):first-child,.ui.dropdown>select{display:none!important}.ui.dropdown>.dropdown.icon{position:relative;width:auto;font-size:.85714286em;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon{width:auto;float:right;margin:0 0 0 1em}.ui.dropdown .menu>.item .dropdown.icon+.text{margin-right:1em}.ui.dropdown>.text{display:inline-block;transition:outline-offset .1s ease,outline-color .1s ease}.ui.dropdown .menu>.item{position:relative;cursor:pointer;display:block;border:none;height:auto;text-align:left;border-top:none;line-height:1em;color:#ddd;padding:.78571429rem 1.14285714rem!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.ui.dropdown .menu>.item:first-child{border-top-width:0}.ui.dropdown .menu .item>[class*="right floated"],.ui.dropdown>.text>[class*="right floated"]{float:right!important;margin-right:0!important;margin-left:1em!important}.ui.dropdown .menu .item>[class*="left floated"],.ui.dropdown>.text>[class*="left floated"]{float:left!important;margin-left:0!important;margin-right:1em!important}.ui.dropdown .menu .item>.flag.floated,.ui.dropdown .menu .item>.icon.floated,.ui.dropdown .menu .item>.image.floated,.ui.dropdown .menu .item>img.floated{margin-top:0}.ui.dropdown .menu>.header{margin:1rem 0 .75rem;padding:0 1.14285714rem;color:rgba(255,255,255,.95);font-size:.78571429em;font-weight:600;text-transform:uppercase}.ui.dropdown .menu>.divider{border-top:1px solid rgba(24,26,28,.1);height:0;margin:.5em 0}.ui.dropdown.dropdown .menu>.input{width:auto;display:flex;margin:1.14285714rem .78571429rem;min-width:10rem}.ui.dropdown .menu>.header+.input{margin-top:0}.ui.dropdown .menu>.input:not(.transparent) input{padding:.5em 1em}.ui.dropdown .menu>.input:not(.transparent) .button,.ui.dropdown .menu>.input:not(.transparent) .icon,.ui.dropdown .menu>.input:not(.transparent) .label{padding-top:.5em;padding-bottom:.5em}.ui.dropdown .menu>.item>.description,.ui.dropdown>.text>.description{float:right;margin:0 0 0 1em;color:rgba(255,255,255,.5)}.ui.dropdown .menu>.message{padding:.78571429rem 1.14285714rem;font-weight:400}.ui.dropdown .menu>.message:not(.ui){color:rgba(255,255,255,.4)}.ui.dropdown .menu .menu{top:0!important;left:100%;right:auto;margin:0 0 0 -.5em!important;border-radius:.35714286rem!important;z-index:21!important}.ui.dropdown .menu .menu:after{display:none}.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-top:0}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img{margin-top:0}.ui.dropdown .menu>.item>.flag,.ui.dropdown .menu>.item>.icon,.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>.label,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.flag,.ui.dropdown>.text>.icon,.ui.dropdown>.text>.image,.ui.dropdown>.text>.label,.ui.dropdown>.text>img{margin-left:0;float:none;margin-right:.78571429rem}.ui.dropdown .menu>.item>.image,.ui.dropdown .menu>.item>img,.ui.dropdown>.text>.image,.ui.dropdown>.text>img{display:inline-block;vertical-align:top;width:auto;margin-top:-.5em;margin-bottom:-.5em;max-height:2em}.ui.dropdown .ui.menu>.item:before,.ui.menu .ui.dropdown .menu>.item:before{display:none}.ui.menu .ui.dropdown .menu .active.item{border-left:none}.ui.buttons>.ui.dropdown:last-child .menu,.ui.menu .right.dropdown.item .menu,.ui.menu .right.menu .dropdown:last-child .menu{left:auto;right:0}.ui.label.dropdown .menu{min-width:100%}.ui.dropdown.icon.button>.dropdown.icon{margin:0}.ui.button.dropdown .menu{min-width:100%}.ui.selection.dropdown{cursor:pointer;word-wrap:break-word;line-height:1em;white-space:normal;transform:rotateZ(0);min-width:14em;min-height:2.71428571em;background:#2e3235;display:inline-block;padding:.78571429em 2.1em .78571429em 1em;color:#ddd;box-shadow:none;border:1px solid rgba(24,26,28,.45);border-radius:.35714286rem;transition:box-shadow .1s ease,width .1s ease,outline-offset .1s ease,outline-color .1s ease}.ui.selection.dropdown.active,.ui.selection.dropdown.visible{z-index:10}select.ui.dropdown{height:38px;padding:.5em;border:1px solid rgba(24,26,28,.45);visibility:visible}.ui.selection.dropdown>.delete.icon,.ui.selection.dropdown>.dropdown.icon,.ui.selection.dropdown>.search.icon{cursor:pointer;position:absolute;width:auto;height:auto;line-height:1.21428571em;top:.78571429em;right:1em;z-index:3;margin:-.78571429em;padding:.91666667em;opacity:.8;transition:opacity .1s ease}.ui.compact.selection.dropdown{min-width:0}.ui.selection.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;border-top-width:0!important;width:auto;outline:0;margin:0 -1px;min-width:calc(100% + 2px);width:calc(100% + 2px);border-radius:0 0 .35714286rem .35714286rem;box-shadow:0 2px 3px 0 rgba(24,26,28,.45);transition:opacity .1s ease}.ui.selection.dropdown .menu:after,.ui.selection.dropdown .menu:before{display:none}.ui.selection.dropdown .menu>.message{padding:.78571429rem 1.14285714rem}@media only screen and (max-width:767px){.ui.selection.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width:768px){.ui.selection.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width:992px){.ui.selection.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width:1920px){.ui.selection.dropdown .menu{max-height:21.37142857rem}}.ui.selection.dropdown .menu>.item{border-top:1px solid #222;padding:.78571429rem 1.14285714rem!important;white-space:normal;word-wrap:normal}.ui.selection.dropdown .menu>.hidden.addition.item{display:none}.ui.selection.dropdown:hover{border-color:rgba(24,26,28,.35);box-shadow:none}.ui.selection.active.dropdown{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(24,26,28,.45)}.ui.selection.active.dropdown .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(24,26,28,.45)}.ui.selection.dropdown:focus{border-color:#96c8da;box-shadow:none}.ui.selection.dropdown:focus .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(24,26,28,.45)}.ui.selection.visible.dropdown>.text:not(.default){font-weight:400;color:rgba(255,255,255,.8)}.ui.selection.active.dropdown:hover{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(24,26,28,.45)}.ui.selection.active.dropdown:hover .menu{border-color:#96c8da;box-shadow:0 2px 3px 0 rgba(24,26,28,.45)}.ui.active.selection.dropdown>.dropdown.icon,.ui.visible.selection.dropdown>.dropdown.icon{opacity:'';z-index:3}.ui.active.selection.dropdown{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.active.empty.selection.dropdown{border-radius:.35714286rem!important;box-shadow:none!important}.ui.active.empty.selection.dropdown .menu{border:none!important;box-shadow:none!important}.ui.search.dropdown{min-width:''}.ui.search.dropdown>input.search{background:none transparent!important;border:none!important;box-shadow:none!important;cursor:text;top:0;left:1px;width:100%;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0);padding:inherit}.ui.search.dropdown>input.search{position:absolute;z-index:2}.ui.search.dropdown>.text{cursor:text;position:relative;left:1px;z-index:3}.ui.search.selection.dropdown>input.search{line-height:1.21428571em;padding:.67857143em 2.1em .67857143em 1em}.ui.search.selection.dropdown>span.sizer{line-height:1.21428571em;padding:.67857143em 2.1em .67857143em 1em;display:none;white-space:pre}.ui.search.dropdown.active>input.search,.ui.search.dropdown.visible>input.search{cursor:auto}.ui.search.dropdown.active>.text,.ui.search.dropdown.visible>.text{pointer-events:none}.ui.active.search.dropdown input.search:focus+.text .flag,.ui.active.search.dropdown input.search:focus+.text .icon{opacity:.45}.ui.active.search.dropdown input.search:focus+.text{color:#777!important}.ui.search.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch}@media only screen and (max-width:767px){.ui.search.dropdown .menu{max-height:8.01428571rem}}@media only screen and (min-width:768px){.ui.search.dropdown .menu{max-height:10.68571429rem}}@media only screen and (min-width:992px){.ui.search.dropdown .menu{max-height:16.02857143rem}}@media only screen and (min-width:1920px){.ui.search.dropdown .menu{max-height:21.37142857rem}}.ui.multiple.dropdown{padding:.22619048em 2.1em .22619048em .35714286em}.ui.multiple.dropdown .menu{cursor:auto}.ui.multiple.search.dropdown,.ui.multiple.search.dropdown>input.search{cursor:text}.ui.multiple.dropdown>.label{user-select:none;display:inline-block;vertical-align:top;white-space:normal;font-size:1em;padding:.35714286em .78571429em;margin:.14285714rem .28571429rem .14285714rem 0;box-shadow:0 0 0 1px rgba(24,26,28,.45) inset}.ui.multiple.dropdown .dropdown.icon{margin:'';padding:''}.ui.multiple.dropdown>.text{position:static;padding:0;max-width:100%;margin:.45238095em 0 .45238095em .64285714em;line-height:1.21428571em}.ui.multiple.dropdown>.label~input.search{margin-left:.14285714em!important}.ui.multiple.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>.text{display:inline-block;position:absolute;top:0;left:0;padding:inherit;margin:.45238095em 0 .45238095em .64285714em;line-height:1.21428571em}.ui.multiple.search.dropdown>.label~.text{display:none}.ui.multiple.search.dropdown>input.search{position:static;padding:0;max-width:100%;margin:.45238095em 0 .45238095em .64285714em;width:2.2em;line-height:1.21428571em}.ui.inline.dropdown{cursor:pointer;display:inline-block;color:inherit}.ui.inline.dropdown .dropdown.icon{margin:0 .21428571em 0 .21428571em;vertical-align:baseline}.ui.inline.dropdown>.text{font-weight:600}.ui.inline.dropdown .menu{cursor:auto;margin-top:.21428571em;border-radius:.35714286rem}.ui.dropdown .menu .active.item{background:0 0;font-weight:600;color:rgba(255,255,255,.95);box-shadow:none;z-index:12}.ui.dropdown .menu>.item:hover{background:rgba(255,255,255,.05);color:rgba(255,255,255,.95);z-index:13}.ui.loading.dropdown>i.icon{height:1em!important}.ui.loading.selection.dropdown>i.icon{padding:1.5em 1.28571429em!important}.ui.loading.dropdown>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.dropdown>i.icon:after{position:absolute;content:'';top:50%;left:50%;box-shadow:0 0 0 1px transparent;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;animation:dropdown-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em}.ui.loading.dropdown.button>i.icon:after,.ui.loading.dropdown.button>i.icon:before{display:none}@keyframes dropdown-spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}.ui.default.dropdown:not(.button)>.text,.ui.dropdown:not(.button)>.default.text{color:#777}.ui.default.dropdown:not(.button)>input:focus~.text,.ui.dropdown:not(.button)>input:focus~.default.text{color:#777}.ui.loading.dropdown>.text{transition:none}.ui.dropdown .loading.menu{display:block;visibility:hidden;z-index:-1}.ui.dropdown>.loading.menu{left:0!important;right:auto!important}.ui.dropdown>.menu .loading.menu{left:100%!important;right:auto!important}.ui.dropdown .menu .selected.item,.ui.dropdown.selected{background:rgba(255,255,255,.03);color:rgba(255,255,255,.95)}.ui.dropdown>.filtered.text{visibility:hidden}.ui.dropdown .filtered.item{display:none!important}.ui.dropdown.error,.ui.dropdown.error>.default.text,.ui.dropdown.error>.text{color:#9f3a38}.ui.selection.dropdown.error{background:#fff6f6;border-color:#e0b4b4}.ui.selection.dropdown.error:hover{border-color:#e0b4b4}.ui.dropdown.error>.menu,.ui.dropdown.error>.menu .menu{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item{color:#9f3a38}.ui.multiple.selection.error.dropdown>.label{border-color:#e0b4b4}.ui.dropdown.error>.menu>.item:hover{background-color:#fff2f2}.ui.dropdown.error>.menu .active.item{background-color:#fdcfcf}.ui.dropdown>.clear.dropdown.icon{opacity:.8;transition:opacity .1s ease}.ui.dropdown>.clear.dropdown.icon:hover{opacity:1}.ui.disabled.dropdown,.ui.dropdown .menu>.disabled.item{cursor:default;pointer-events:none;opacity:.45}.ui.dropdown .menu{left:0}.ui.dropdown .menu .right.menu,.ui.dropdown .right.menu>.menu{left:100%!important;right:auto!important;border-radius:.35714286rem!important}.ui.dropdown>.left.menu{left:auto!important;right:0!important}.ui.dropdown .menu .left.menu,.ui.dropdown>.left.menu .menu{left:auto;right:100%;margin:0 -.5em 0 0!important;border-radius:.35714286rem!important}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0}.ui.dropdown .item .left.dropdown.icon,.ui.dropdown .left.menu .item .dropdown.icon{width:auto;float:left;margin:0}.ui.dropdown .item .left.dropdown.icon+.text,.ui.dropdown .left.menu .item .dropdown.icon+.text{margin-left:1em;margin-right:0}.ui.upward.dropdown>.menu{top:auto;bottom:100%;box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:.35714286rem .35714286rem 0 0}.ui.dropdown .upward.menu{top:auto!important;bottom:0!important}.ui.simple.upward.active.dropdown,.ui.simple.upward.dropdown:hover{border-radius:.35714286rem .35714286rem 0 0!important}.ui.upward.dropdown.button:not(.pointing):not(.floating).active{border-radius:.35714286rem .35714286rem 0 0}.ui.upward.selection.dropdown .menu{border-top-width:1px!important;border-bottom-width:0!important;box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.upward.selection.dropdown:hover{box-shadow:0 0 2px 0 rgba(0,0,0,.05)}.ui.active.upward.selection.dropdown{border-radius:0 0 .35714286rem .35714286rem!important}.ui.upward.selection.dropdown.visible{box-shadow:0 0 3px 0 rgba(0,0,0,.08);border-radius:0 0 .35714286rem .35714286rem!important}.ui.upward.active.selection.dropdown:hover{box-shadow:0 0 3px 0 rgba(0,0,0,.05)}.ui.upward.active.selection.dropdown:hover .menu{box-shadow:0 -2px 3px 0 rgba(0,0,0,.08)}.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto}.ui.scrolling.dropdown .menu{overflow-x:hidden;overflow-y:auto;backface-visibility:hidden;-webkit-overflow-scrolling:touch;min-width:100%!important;width:auto!important}.ui.dropdown .scrolling.menu{position:static;overflow-y:auto;border:none;box-shadow:none!important;border-radius:0!important;margin:0!important;min-width:100%!important;width:auto!important;border-top:1px solid rgba(24,26,28,.45)}.ui.dropdown .scrolling.menu>.item.item.item,.ui.scrolling.dropdown .menu .item.item.item{border-top:none}.ui.dropdown .scrolling.menu .item:first-child,.ui.scrolling.dropdown .menu .item:first-child{border-top:none}.ui.dropdown>.animating.menu .scrolling.menu,.ui.dropdown>.visible.menu .scrolling.menu{display:block}@media all and (-ms-high-contrast:none){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{min-width:calc(100% - 6px)}}@media only screen and (max-width:767px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:10.28571429rem}}@media only screen and (min-width:768px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:15.42857143rem}}@media only screen and (min-width:992px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.57142857rem}}@media only screen and (min-width:1920px){.ui.dropdown .scrolling.menu,.ui.scrolling.dropdown .menu{max-height:20.57142857rem}}.ui.simple.dropdown .menu:after,.ui.simple.dropdown .menu:before{display:none}.ui.simple.dropdown .menu{position:absolute;display:block;overflow:hidden;top:-9999px!important;opacity:0;width:0;height:0;transition:opacity .1s ease}.ui.simple.active.dropdown,.ui.simple.dropdown:hover{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.ui.simple.active.dropdown>.menu,.ui.simple.dropdown:hover>.menu{overflow:visible;width:auto;height:auto;top:100%!important;opacity:1}.ui.simple.dropdown:hover>.menu>.item:hover>.menu,.ui.simple.dropdown>.menu>.item:active>.menu{overflow:visible;width:auto;height:auto;top:0!important;left:100%!important;opacity:1}.ui.simple.disabled.dropdown:hover .menu{display:none;height:0;width:0;overflow:hidden}.ui.simple.visible.dropdown>.menu{display:block}.ui.fluid.dropdown{display:block;width:100%;min-width:0}.ui.fluid.dropdown>.dropdown.icon{float:right}.ui.floating.dropdown .menu{left:0;right:auto;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)!important;border-radius:.35714286rem!important}.ui.floating.dropdown>.menu{margin-top:.5em!important;border-radius:.35714286rem!important}.ui.pointing.dropdown>.menu{top:100%;margin-top:.78571429rem;border-radius:.35714286rem}.ui.pointing.dropdown>.menu:after{display:block;position:absolute;pointer-events:none;content:'';visibility:visible;transform:rotate(45deg);width:.5em;height:.5em;box-shadow:-1px -1px 0 0 rgba(24,26,28,.45);background:#2e3235;z-index:2}.ui.pointing.dropdown>.menu:after{top:-.25em;left:50%;margin:0 0 0 -.25em}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu{top:100%;bottom:auto;left:0;right:auto;margin:1em 0 0}.ui.top.left.pointing.dropdown>.menu:after{top:-.25em;left:1em;right:auto;margin:0;transform:rotate(45deg)}.ui.top.right.pointing.dropdown>.menu{top:100%;bottom:auto;right:0;left:auto;margin:1em 0 0}.ui.top.pointing.dropdown>.left.menu:after,.ui.top.right.pointing.dropdown>.menu:after{top:-.25em;left:auto!important;right:1em!important;margin:0;transform:rotate(45deg)}.ui.left.pointing.dropdown>.menu{top:0;left:100%;right:auto;margin:0 0 0 1em}.ui.left.pointing.dropdown>.menu:after{top:1em;left:-.25em;margin:0;transform:rotate(-45deg)}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu{left:auto!important;right:100%!important;margin:0 1em 0 0}.ui.left:not(.top):not(.bottom).pointing.dropdown>.left.menu:after{top:1em;left:auto;right:-.25em;margin:0;transform:rotate(135deg)}.ui.right.pointing.dropdown>.menu{top:0;left:auto;right:100%;margin:0 1em 0 0}.ui.right.pointing.dropdown>.menu:after{top:1em;left:auto;right:-.25em;margin:0;transform:rotate(135deg)}.ui.bottom.pointing.dropdown>.menu{top:auto;bottom:100%;left:0;right:auto;margin:0 0 1em}.ui.bottom.pointing.dropdown>.menu:after{top:auto;bottom:-.25em;right:auto;margin:0;transform:rotate(-135deg)}.ui.bottom.pointing.dropdown>.menu .menu{top:auto!important;bottom:0!important}.ui.bottom.left.pointing.dropdown>.menu{left:0;right:auto}.ui.bottom.left.pointing.dropdown>.menu:after{left:1em;right:auto}.ui.bottom.right.pointing.dropdown>.menu{right:0;left:auto}.ui.bottom.right.pointing.dropdown>.menu:after{left:auto;right:1em}.ui.pointing.upward.dropdown .menu,.ui.top.pointing.upward.dropdown .menu{top:auto!important;bottom:100%!important;margin:0 0 .78571429rem;border-radius:.35714286rem}.ui.pointing.upward.dropdown .menu:after,.ui.top.pointing.upward.dropdown .menu:after{top:100%!important;bottom:auto!important;box-shadow:1px 1px 0 0 rgba(24,26,28,.45);margin:-.25em 0 0}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto!important;bottom:0!important;margin:0 1em 0 0}.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto!important;bottom:0!important;margin:0 0 1em 0;box-shadow:-1px -1px 0 0 rgba(24,26,28,.45)}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu{top:auto!important;bottom:0!important;margin:0 0 0 1em}.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after{top:auto!important;bottom:0!important;margin:0 0 1em 0;box-shadow:-1px -1px 0 0 rgba(24,26,28,.45)}@font-face{font-family:Dropdown;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff');font-weight:400;font-style:normal}.ui.dropdown>.dropdown.icon{font-family:Dropdown;line-height:1;height:1em;width:1.23em;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.dropdown>.dropdown.icon{width:auto}.ui.dropdown>.dropdown.icon:before{content:'\f0d7'}.ui.inline.dropdown .menu{background:rgba(46,50,53,.7);backdrop-filter:blur(10px)}.ui.dropdown .menu .item .dropdown.icon:before{content:'\f0da'}.ui.dropdown .item .left.dropdown.icon:before,.ui.dropdown .left.menu .item .dropdown.icon:before{content:"\f0d9"}.ui.vertical.menu .dropdown.item>.dropdown.icon:before{content:"\f0da"}.ui.dropdown>.clear.icon:before{content:"\f00d"}.ui.embed{position:relative;max-width:100%;height:0;overflow:hidden;background:#dcddde;padding-bottom:56.25%}.ui.embed embed,.ui.embed iframe,.ui.embed object{position:absolute;border:none;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.ui.embed>.embed{display:none}.ui.embed>.placeholder{position:absolute;cursor:pointer;top:0;left:0;display:block;width:100%;height:100%;background-color:radial-gradient(transparent 45%,rgba(0,0,0,.3))}.ui.embed>.icon{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ui.embed>.icon:after{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;content:'';background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:.5;transition:opacity .5s ease}.ui.embed>.icon:before{position:absolute;top:50%;left:50%;z-index:4;transform:translateX(-50%) translateY(-50%);color:#2e3235;font-size:6rem;text-shadow:0 2px 10px rgba(34,36,38,.2);transition:opacity .5s ease,color .5s ease;z-index:10}.ui.embed .icon:hover:after{background:radial-gradient(transparent 45%,rgba(0,0,0,.3));opacity:1}.ui.embed .icon:hover:before{color:#2e3235}.ui.active.embed>.icon,.ui.active.embed>.placeholder{display:none}.ui.active.embed>.embed{display:block}.ui.square.embed{padding-bottom:100%}.ui[class*="4:3"].embed{padding-bottom:75%}.ui[class*="16:9"].embed{padding-bottom:56.25%}.ui[class*="21:9"].embed{padding-bottom:42.85714286%}.ui.modal{position:absolute;display:none;z-index:1001;text-align:left;border:none;box-shadow:1px 3px 3px 0 rgba(0,0,0,.2),1px 3px 15px 2px rgba(0,0,0,.2);transform-origin:50% 25%;flex:0 0 auto;border-radius:.35714286rem;user-select:text;will-change:top,left,margin,transform,opacity}.ui.modal>.icon:first-child+*,.ui.modal>:first-child:not(.icon){border-top-left-radius:.35714286rem;border-top-right-radius:.35714286rem}.ui.modal>:last-child{border-bottom-left-radius:.35714286rem;border-bottom-right-radius:.35714286rem}.ui.modal>.close{cursor:pointer;position:absolute;top:-2.5rem;right:-2.5rem;z-index:1;opacity:.8;font-size:1.25em;color:#2e3235;width:2.25rem;height:2.25rem;padding:.625rem 0 0 0}.ui.modal>.close:hover{opacity:1}.ui.modal>.header{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;background:#2e3235;margin:0;padding:1rem 1.2rem;box-shadow:none;color:rgba(255,255,255,.95);border-bottom:1px solid rgba(24,26,28,.45)}.ui.modal>.header:not(.ui){font-size:1em;line-height:1.28571429em;font-weight:600}.ui.modal>.content{display:block;width:100%;font-size:1em;line-height:1.4;padding:1rem;background:#2e3235}.ui.modal>.image.content{display:flex;flex-direction:row}.ui.modal>.content>.image{display:block;flex:0 1 auto;width:'';align-self:top}.ui.modal>[class*="top aligned"]{align-self:top}.ui.modal>[class*="middle aligned"]{align-self:middle}.ui.modal>[class*=stretched]{align-self:stretch}.ui.modal>.content>.description{display:block;flex:1 0 auto;min-width:0;align-self:top}.ui.modal>.content>.icon+.description,.ui.modal>.content>.image+.description{flex:0 1 auto;min-width:'';width:auto;padding-left:2em}.ui.modal>.content>.image>i.icon{margin:0;opacity:1;width:auto;line-height:1;font-size:8rem}.ui.modal>.actions{background:#34393d;padding:1rem 1rem;border-top:1px solid rgba(24,26,28,.45);text-align:right}.ui.modal .actions>.button{margin-left:.75em;min-width:10em}.ui.modal .actions>.button:first-child{margin-left:.25em}@media only screen and (max-width:767px){.ui.modal{width:95%;margin:0}}@media only screen and (min-width:768px){.ui.modal{width:88%;margin:0}}@media only screen and (min-width:992px){.ui.modal{width:850px;margin:0}}@media only screen and (min-width:1200px){.ui.modal{width:900px;margin:0}}@media only screen and (min-width:1920px){.ui.modal{width:950px;margin:0}}@media only screen and (max-width:991px){.ui.modal>.header{padding-right:2.25rem}.ui.modal>.close{top:.8035rem;right:1rem;color:#ddd}}@media only screen and (max-width:767px){.ui.modal>.header{padding:.75rem 1rem!important;padding-right:2.25rem!important}.ui.modal>.content{display:block;padding:1rem!important}.ui.modal>.close{top:.5rem!important;right:.5rem!important}.ui.modal .image.content{flex-direction:column}.ui.modal .content>.image{display:block;max-width:100%;margin:0 auto!important;text-align:center;padding:0 0 1rem!important}.ui.modal>.content>.image>i.icon{font-size:5rem;text-align:center}.ui.modal .content>.description{display:block;width:100%!important;margin:0!important;padding:1rem 0!important;box-shadow:none}.ui.modal>.actions{padding:1rem 1rem 0!important}.ui.modal .actions>.button,.ui.modal .actions>.buttons{margin-bottom:1rem}}.ui.inverted.dimmer>.ui.modal{box-shadow:1px 3px 10px 2px rgba(0,0,0,.2)}.ui.basic.modal{background-color:transparent;border:none;border-radius:0;box-shadow:none!important;color:#ddd}.ui.basic.modal>.actions,.ui.basic.modal>.content,.ui.basic.modal>.header{background-color:transparent}.ui.basic.modal>.header{color:#ddd}.ui.basic.modal>.close{top:1rem;right:1.5rem}.ui.inverted.dimmer>.basic.modal{color:#ddd}.ui.inverted.dimmer>.ui.basic.modal>.header{color:rgba(255,255,255,.95)}.ui.legacy.modal,.ui.legacy.page.dimmer>.ui.modal{top:50%;left:50%}.ui.legacy.page.dimmer>.ui.scrolling.modal,.ui.page.dimmer>.ui.scrolling.legacy.modal,.ui.top.aligned.dimmer>.ui.legacy.modal,.ui.top.aligned.legacy.page.dimmer>.ui.modal{top:auto}@media only screen and (max-width:991px){.ui.basic.modal>.close{color:#2e3235}}.ui.loading.modal{display:block;visibility:hidden;z-index:-1}.ui.active.modal{display:block}.modals.dimmer[class*="top aligned"] .modal{margin:5vh auto}@media only screen and (max-width:767px){.modals.dimmer[class*="top aligned"] .modal{margin:1rem auto}}.legacy.modals.dimmer[class*="top aligned"]{padding-top:5vh}@media only screen and (max-width:767px){.legacy.modals.dimmer[class*="top aligned"]{padding-top:1rem}}.scrolling.dimmable.dimmed{overflow:hidden}.scrolling.dimmable>.dimmer{justify-content:flex-start}.scrolling.dimmable.dimmed>.dimmer{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.dimmable>.dimmer{position:fixed}.modals.dimmer .ui.scrolling.modal{margin:1rem auto}.scrolling.undetached.dimmable.dimmed{overflow:auto;-webkit-overflow-scrolling:touch}.scrolling.undetached.dimmable.dimmed>.dimmer{overflow:hidden}.scrolling.undetached.dimmable .ui.scrolling.modal{position:absolute;left:50%;margin-top:1rem!important}.ui.modal .scrolling.content{max-height:calc(80vh - 10em);overflow:auto}.ui.fullscreen.modal{width:95%!important;margin:1em auto}.ui.fullscreen.modal>.header{padding-right:2.25rem}.ui.fullscreen.modal>.close{top:.8035rem;right:1rem;color:#ddd}.ui.modal{font-size:1rem}.ui.mini.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.mini.modal{width:95%;margin:0}}@media only screen and (min-width:768px){.ui.mini.modal{width:35.2%;margin:0}}@media only screen and (min-width:992px){.ui.mini.modal{width:340px;margin:0}}@media only screen and (min-width:1200px){.ui.mini.modal{width:360px;margin:0}}@media only screen and (min-width:1920px){.ui.mini.modal{width:380px;margin:0}}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.tiny.modal{width:95%;margin:0}}@media only screen and (min-width:768px){.ui.tiny.modal{width:52.8%;margin:0}}@media only screen and (min-width:992px){.ui.tiny.modal{width:510px;margin:0}}@media only screen and (min-width:1200px){.ui.tiny.modal{width:540px;margin:0}}@media only screen and (min-width:1920px){.ui.tiny.modal{width:570px;margin:0}}.ui.small.modal>.header:not(.ui){font-size:1.3em}@media only screen and (max-width:767px){.ui.small.modal{width:95%;margin:0}}@media only screen and (min-width:768px){.ui.small.modal{width:70.4%;margin:0}}@media only screen and (min-width:992px){.ui.small.modal{width:680px;margin:0}}@media only screen and (min-width:1200px){.ui.small.modal{width:720px;margin:0}}@media only screen and (min-width:1920px){.ui.small.modal{width:760px;margin:0}}.ui.large.modal>.header{font-size:1.6em}@media only screen and (max-width:767px){.ui.large.modal{width:95%;margin:0}}@media only screen and (min-width:768px){.ui.large.modal{width:88%;margin:0}}@media only screen and (min-width:992px){.ui.large.modal{width:1020px;margin:0}}@media only screen and (min-width:1200px){.ui.large.modal{width:1080px;margin:0}}@media only screen and (min-width:1920px){.ui.large.modal{width:1140px;margin:0}}.ui.nag{display:none;opacity:.95;position:relative;top:0;left:0;z-index:999;min-height:0;width:100%;margin:0;padding:.75em 1em;background:#555;box-shadow:0 1px 2px 0 rgba(0,0,0,.2);font-size:1rem;text-align:center;color:#ddd;border-radius:0 0 .35714286rem .35714286rem;transition:.2s background ease}a.ui.nag{cursor:pointer}.ui.nag>.title{display:inline-block;margin:0 .5em;color:#2e3235}.ui.nag>.close.icon{cursor:pointer;opacity:.4;position:absolute;top:50%;right:1em;font-size:1em;margin:-.5em 0 0;color:#2e3235;transition:opacity .2s ease}.ui.nag:hover{background:#555;opacity:1}.ui.nag .close:hover{opacity:1}.ui.overlay.nag{position:absolute;display:block}.ui.fixed.nag{position:fixed}.ui.bottom.nag,.ui.bottom.nags{border-radius:.35714286rem .35714286rem 0 0;top:auto;bottom:0}.ui.inverted.nag,.ui.inverted.nags .nag{background-color:#4b5257;color:rgba(255,255,255,.95)}.ui.inverted.nag .close,.ui.inverted.nag .title,.ui.inverted.nags .nag .close,.ui.inverted.nags .nag .title{color:rgba(255,255,255,.5)}.ui.nags .nag{border-radius:0!important}.ui.nags .nag:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui.bottom.nags .nag:last-child{border-radius:.35714286rem .35714286rem 0 0}.ui.popup{display:none;position:absolute;top:0;right:0;min-width:min-content;z-index:1900;border:1px solid #3b3c3e;line-height:1.4285em;max-width:250px;background:#2e3235;padding:.833em 1em;font-weight:400;font-style:normal;color:#ddd;border-radius:.35714286rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15)}.ui.popup>.header{padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1.14285714em;line-height:1.2;font-weight:600}.ui.popup>.header+.content{padding-top:.5em}.ui.popup:before{position:absolute;content:'';width:.71428571em;height:.71428571em;background:#2e3235;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #222324}[data-tooltip]{position:relative}[data-tooltip]:before{pointer-events:none;position:absolute;content:'';font-size:1rem;width:.71428571em;height:.71428571em;background:#2e3235;transform:rotate(45deg);z-index:2;box-shadow:1px 1px 0 0 #222324}[data-tooltip]:after{pointer-events:none;content:attr(data-tooltip);position:absolute;text-transform:none;text-align:left;white-space:nowrap;font-size:1rem;border:1px solid #3b3c3e;line-height:1.4285em;max-width:none;background:#2e3235;padding:.833em 1em;font-weight:400;font-style:normal;color:#ddd;border-radius:.35714286rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);z-index:1}[data-tooltip]:not([data-position]):before{top:auto;right:auto;bottom:100%;left:50%;background:#2e3235;margin-left:-.07142857rem;margin-bottom:.14285714rem}[data-tooltip]:not([data-position]):after{left:50%;transform:translateX(-50%);bottom:100%;margin-bottom:.5em}[data-tooltip]:after,[data-tooltip]:before{pointer-events:none;visibility:hidden}[data-tooltip]:before{opacity:0;transform:rotate(45deg) scale(0)!important;transform-origin:center top;transition:all .1s ease}[data-tooltip]:after{opacity:1;transform-origin:center bottom;transition:all .1s ease}[data-tooltip]:hover:after,[data-tooltip]:hover:before{visibility:visible;pointer-events:auto}[data-tooltip]:hover:before{transform:rotate(45deg) scale(1)!important;opacity:1}[data-tooltip]:after,[data-tooltip][data-position="bottom center"]:after,[data-tooltip][data-position="top center"]:after{transform:translateX(-50%) scale(0)!important}[data-tooltip]:hover:after,[data-tooltip][data-position="bottom center"]:hover:after{transform:translateX(-50%) scale(1)!important}[data-tooltip][data-position="left center"]:after,[data-tooltip][data-position="right center"]:after{transform:translateY(-50%) scale(0)!important}[data-tooltip][data-position="left center"]:hover:after,[data-tooltip][data-position="right center"]:hover:after{transform:translateY(-50%) scale(1)!important}[data-tooltip][data-position="bottom left"]:after,[data-tooltip][data-position="bottom right"]:after,[data-tooltip][data-position="top left"]:after,[data-tooltip][data-position="top right"]:after{transform:scale(0)!important}[data-tooltip][data-position="bottom left"]:hover:after,[data-tooltip][data-position="bottom right"]:hover:after,[data-tooltip][data-position="top left"]:hover:after,[data-tooltip][data-position="top right"]:hover:after{transform:scale(1)!important}[data-tooltip][data-inverted]:before{box-shadow:none!important}[data-tooltip][data-inverted]:before{background:#f9fafb}[data-tooltip][data-inverted]:after{background:#f9fafb;color:#2e3235;border:none;box-shadow:none}[data-tooltip][data-inverted]:after .header{background-color:none;color:#2e3235}[data-position="top center"][data-tooltip]:after{top:auto;right:auto;left:50%;bottom:100%;transform:translateX(-50%);margin-bottom:.5em}[data-position="top center"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:50%;background:#2e3235;margin-left:-.07142857rem;margin-bottom:.14285714rem}[data-position="top left"][data-tooltip]:after{top:auto;right:auto;left:0;bottom:100%;margin-bottom:.5em}[data-position="top left"][data-tooltip]:before{top:auto;right:auto;bottom:100%;left:1em;margin-left:-.07142857rem;margin-bottom:.14285714rem}[data-position="top right"][data-tooltip]:after{top:auto;left:auto;right:0;bottom:100%;margin-bottom:.5em}[data-position="top right"][data-tooltip]:before{top:auto;left:auto;bottom:100%;right:1em;margin-left:-.07142857rem;margin-bottom:.14285714rem}[data-position="bottom center"][data-tooltip]:after{bottom:auto;right:auto;left:50%;top:100%;transform:translateX(-50%);margin-top:.5em}[data-position="bottom center"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:50%;margin-left:-.07142857rem;margin-top:.14285714rem}[data-position="bottom left"][data-tooltip]:after{left:0;top:100%;margin-top:.5em}[data-position="bottom left"][data-tooltip]:before{bottom:auto;right:auto;top:100%;left:1em;margin-left:-.07142857rem;margin-top:.14285714rem}[data-position="bottom right"][data-tooltip]:after{right:0;top:100%;margin-top:.5em}[data-position="bottom right"][data-tooltip]:before{bottom:auto;left:auto;top:100%;right:1em;margin-left:-.14285714rem;margin-top:.07142857rem}[data-position="left center"][data-tooltip]:after{right:100%;top:50%;margin-right:.5em;transform:translateY(-50%)}[data-position="left center"][data-tooltip]:before{right:100%;top:50%;margin-top:-.14285714rem;margin-right:-.07142857rem}[data-position="right center"][data-tooltip]:after{left:100%;top:50%;margin-left:.5em;transform:translateY(-50%)}[data-position="right center"][data-tooltip]:before{left:100%;top:50%;margin-top:-.07142857rem;margin-left:.14285714rem}[data-position~=bottom][data-tooltip]:before{background:#2e3235;box-shadow:-1px -1px 0 0 #222324}[data-position="left center"][data-tooltip]:before{background:#2e3235;box-shadow:1px -1px 0 0 #222324}[data-position="right center"][data-tooltip]:before{background:#2e3235;box-shadow:-1px 1px 0 0 #222324}[data-position~=top][data-tooltip]:before{background:#2e3235}[data-inverted][data-position~=bottom][data-tooltip]:before{background:#f9fafb;box-shadow:-1px -1px 0 0 #222324}[data-inverted][data-position="left center"][data-tooltip]:before{background:#f9fafb;box-shadow:1px -1px 0 0 #222324}[data-inverted][data-position="right center"][data-tooltip]:before{background:#f9fafb;box-shadow:-1px 1px 0 0 #222324}[data-inverted][data-position~=top][data-tooltip]:before{background:#f9fafb}[data-position~=bottom][data-tooltip]:before{transform-origin:center bottom}[data-position~=bottom][data-tooltip]:after{transform-origin:center top}[data-position="left center"][data-tooltip]:before{transform-origin:top center}[data-position="left center"][data-tooltip]:after{transform-origin:right center}[data-position="right center"][data-tooltip]:before{transform-origin:right center}[data-position="right center"][data-tooltip]:after{transform-origin:left center}.ui.popup{margin:0}.ui.top.popup{margin:0 0 .71428571em}.ui.top.left.popup{transform-origin:left bottom}.ui.top.center.popup{transform-origin:center bottom}.ui.top.right.popup{transform-origin:right bottom}.ui.left.center.popup{margin:0 .71428571em 0 0;transform-origin:right 50%}.ui.right.center.popup{margin:0 0 0 .71428571em;transform-origin:left 50%}.ui.bottom.popup{margin:.71428571em 0 0}.ui.bottom.left.popup{transform-origin:left top}.ui.bottom.center.popup{transform-origin:center top}.ui.bottom.right.popup{transform-origin:right top}.ui.bottom.center.popup:before{margin-left:-.30714286em;top:-.30714286em;left:50%;right:auto;bottom:auto;box-shadow:-1px -1px 0 0 #222324}.ui.bottom.left.popup{margin-left:0}.ui.bottom.left.popup:before{top:-.30714286em;left:1em;right:auto;bottom:auto;margin-left:0;box-shadow:-1px -1px 0 0 #222324}.ui.bottom.right.popup{margin-right:0}.ui.bottom.right.popup:before{top:-.30714286em;right:1em;bottom:auto;left:auto;margin-left:0;box-shadow:-1px -1px 0 0 #222324}.ui.top.center.popup:before{top:auto;right:auto;bottom:-.30714286em;left:50%;margin-left:-.30714286em}.ui.top.left.popup{margin-left:0}.ui.top.left.popup:before{bottom:-.30714286em;left:1em;top:auto;right:auto;margin-left:0}.ui.top.right.popup{margin-right:0}.ui.top.right.popup:before{bottom:-.30714286em;right:1em;top:auto;left:auto;margin-left:0}.ui.left.center.popup:before{top:50%;right:-.30714286em;bottom:auto;left:auto;margin-top:-.30714286em;box-shadow:1px -1px 0 0 #222324}.ui.right.center.popup:before{top:50%;left:-.30714286em;bottom:auto;right:auto;margin-top:-.30714286em;box-shadow:-1px 1px 0 0 #222324}.ui.bottom.popup:before{background:#2e3235}.ui.left.center.popup:before,.ui.right.center.popup:before{background:#2e3235}.ui.top.popup:before{background:#2e3235}.ui.inverted.bottom.popup:before{background:#f9fafb}.ui.inverted.left.center.popup:before,.ui.inverted.right.center.popup:before{background:#f9fafb}.ui.inverted.top.popup:before{background:#f9fafb}.ui.popup>.ui.grid:not(.padded){width:calc(100% + 1.75rem);margin:-.7rem -.875rem}.ui.loading.popup{display:block;visibility:hidden;z-index:-1}.ui.animating.popup,.ui.visible.popup{display:block}.ui.visible.popup{transform:translateZ(0);backface-visibility:hidden}.ui.basic.popup:before{display:none}.ui.wide.popup{max-width:350px}.ui[class*="very wide"].popup{max-width:550px}@media only screen and (max-width:767px){.ui.wide.popup,.ui[class*="very wide"].popup{max-width:250px}}.ui.fluid.popup{width:100%;max-width:none}.ui.inverted.popup{background:#f9fafb;color:#2e3235;border:none;box-shadow:none}.ui.inverted.popup .header{background-color:none;color:#2e3235}.ui.inverted.popup:before{background-color:#f9fafb;box-shadow:none!important}.ui.flowing.popup{max-width:none}.ui.mini.popup{font-size:.78571429rem}.ui.tiny.popup{font-size:.85714286rem}.ui.small.popup{font-size:.92857143rem}.ui.popup{font-size:1rem}.ui.large.popup{font-size:1.14285714rem}.ui.huge.popup{font-size:1.42857143rem}.ui.progress{position:relative;display:block;max-width:100%;border:none;margin:1em 0 2.5em;box-shadow:none;background:rgba(255,255,255,.1);padding:0;border-radius:.35714286rem}.ui.progress:first-child{margin:0 0 2.5em}.ui.progress:last-child{margin:0 0 1.5em}.ui.progress .bar{display:block;line-height:1;position:relative;width:0%;min-width:2em;background:#888;border-radius:.35714286rem;transition:width .1s ease,background-color .1s ease}.ui.progress .bar>.progress{white-space:nowrap;position:absolute;width:auto;font-size:.92857143em;top:50%;right:.5em;left:auto;bottom:auto;color:rgba(0,0,0,.7);text-shadow:none;margin-top:-.5em;font-weight:600;text-align:left}.ui.progress>.label{position:absolute;width:100%;font-size:1em;top:100%;right:auto;left:0;bottom:auto;color:#ddd;font-weight:600;text-shadow:none;margin-top:.2em;text-align:center;transition:color .4s ease}.ui.indicating.progress[data-percent^="1"] .bar,.ui.indicating.progress[data-percent^="2"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent^="3"] .bar{background-color:#efbc72}.ui.indicating.progress[data-percent^="4"] .bar,.ui.indicating.progress[data-percent^="5"] .bar{background-color:#e6bb48}.ui.indicating.progress[data-percent^="6"] .bar{background-color:#ddc928}.ui.indicating.progress[data-percent^="7"] .bar,.ui.indicating.progress[data-percent^="8"] .bar{background-color:#b4d95c}.ui.indicating.progress[data-percent^="100"] .bar,.ui.indicating.progress[data-percent^="9"] .bar{background-color:#66da81}.ui.indicating.progress[data-percent^="1"] .label,.ui.indicating.progress[data-percent^="2"] .label{color:#ddd}.ui.indicating.progress[data-percent^="3"] .label{color:#ddd}.ui.indicating.progress[data-percent^="4"] .label,.ui.indicating.progress[data-percent^="5"] .label{color:#ddd}.ui.indicating.progress[data-percent^="6"] .label{color:#ddd}.ui.indicating.progress[data-percent^="7"] .label,.ui.indicating.progress[data-percent^="8"] .label{color:#ddd}.ui.indicating.progress[data-percent^="100"] .label,.ui.indicating.progress[data-percent^="9"] .label{color:#ddd}.ui.indicating.progress[data-percent="1"] .bar,.ui.indicating.progress[data-percent="2"] .bar,.ui.indicating.progress[data-percent="3"] .bar,.ui.indicating.progress[data-percent="4"] .bar,.ui.indicating.progress[data-percent="5"] .bar,.ui.indicating.progress[data-percent="6"] .bar,.ui.indicating.progress[data-percent="7"] .bar,.ui.indicating.progress[data-percent="8"] .bar,.ui.indicating.progress[data-percent="9"] .bar{background-color:#d95c5c}.ui.indicating.progress[data-percent="1"] .label,.ui.indicating.progress[data-percent="2"] .label,.ui.indicating.progress[data-percent="3"] .label,.ui.indicating.progress[data-percent="4"] .label,.ui.indicating.progress[data-percent="5"] .label,.ui.indicating.progress[data-percent="6"] .label,.ui.indicating.progress[data-percent="7"] .label,.ui.indicating.progress[data-percent="8"] .label,.ui.indicating.progress[data-percent="9"] .label{color:#ddd}.ui.indicating.progress.success .label{color:#1a531b}.ui.progress.success .bar{background-color:#21ba45!important}.ui.progress.success .bar,.ui.progress.success .bar::after{animation:none!important}.ui.progress.success>.label{color:#1a531b}.ui.progress.warning .bar{background-color:#f2c037!important}.ui.progress.warning .bar,.ui.progress.warning .bar::after{animation:none!important}.ui.progress.warning>.label{color:#794b02}.ui.progress.error .bar{background-color:#db2828!important}.ui.progress.error .bar,.ui.progress.error .bar::after{animation:none!important}.ui.progress.error>.label{color:#912d2b}.ui.active.progress .bar{position:relative;min-width:2em}.ui.active.progress .bar::after{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#2e3235;border-radius:.35714286rem;animation:progress-active 2s ease infinite}@keyframes progress-active{0%{opacity:.3;width:0}100%{opacity:0;width:100%}}.ui.disabled.progress{opacity:.35}.ui.disabled.progress .bar,.ui.disabled.progress .bar::after{animation:none!important}.ui.inverted.progress{background:rgba(0,0,0,.08);border:none}.ui.inverted.progress .bar{background:#888}.ui.inverted.progress .bar>.progress{color:#34393d}.ui.inverted.progress>.label{color:#2e3235}.ui.inverted.progress.success>.label{color:#21ba45}.ui.inverted.progress.warning>.label{color:#f2c037}.ui.inverted.progress.error>.label{color:#db2828}.ui.progress.attached{background:0 0;position:relative;border:none;margin:0}.ui.progress.attached,.ui.progress.attached .bar{display:block;height:.2rem;padding:0;overflow:hidden;border-radius:0 0 .35714286rem .35714286rem}.ui.progress.attached .bar{border-radius:0}.ui.progress.top.attached,.ui.progress.top.attached .bar{top:0;border-radius:.35714286rem .35714286rem 0 0}.ui.progress.top.attached .bar{border-radius:0}.ui.card>.ui.attached.progress,.ui.segment>.ui.attached.progress{position:absolute;top:auto;left:0;bottom:100%;width:100%}.ui.card>.ui.bottom.attached.progress,.ui.segment>.ui.bottom.attached.progress{top:100%;bottom:auto}.ui.red.progress .bar{background-color:#db2828}.ui.red.inverted.progress .bar{background-color:#ff695e}.ui.orange.progress .bar{background-color:#c06d36}.ui.orange.inverted.progress .bar{background-color:#ff851b}.ui.yellow.progress .bar{background-color:#fbbd08}.ui.yellow.inverted.progress .bar{background-color:#ffe21f}.ui.olive.progress .bar{background-color:#b5cc18}.ui.olive.inverted.progress .bar{background-color:#d9e778}.ui.green.progress .bar{background-color:#21ba45}.ui.green.inverted.progress .bar{background-color:#2ecc40}.ui.teal.progress .bar{background-color:#00b5ad}.ui.teal.inverted.progress .bar{background-color:#6dffff}.ui.blue.progress .bar{background-color:#2185d0}.ui.blue.inverted.progress .bar{background-color:#54c8ff}.ui.violet.progress .bar{background-color:#6435c9}.ui.violet.inverted.progress .bar{background-color:#a291fb}.ui.purple.progress .bar{background-color:#a333c8}.ui.purple.inverted.progress .bar{background-color:#dc73ff}.ui.pink.progress .bar{background-color:#e03997}.ui.pink.inverted.progress .bar{background-color:#ff8edf}.ui.brown.progress .bar{background-color:#a5673f}.ui.brown.inverted.progress .bar{background-color:#d67c1c}.ui.grey.progress .bar{background-color:#767676}.ui.grey.inverted.progress .bar{background-color:#dcddde}.ui.black.progress .bar{background-color:#f9fafb}.ui.black.inverted.progress .bar{background-color:#545454}.ui.tiny.progress{font-size:.85714286rem}.ui.tiny.progress .bar{height:.5em}.ui.small.progress{font-size:.92857143rem}.ui.small.progress .bar{height:1em}.ui.progress{font-size:1rem}.ui.progress .bar{height:1.75em}.ui.large.progress{font-size:1.14285714rem}.ui.large.progress .bar{height:2.5em}.ui.big.progress{font-size:1.28571429rem}.ui.big.progress .bar{height:3.5em}.ui.rating{display:inline-flex;white-space:nowrap;vertical-align:baseline}.ui.rating:last-child{margin-right:0}.ui.rating .icon{padding:0;margin:0;text-align:center;font-weight:400;font-style:normal;flex:1 0 auto;cursor:pointer;width:1.25em;height:auto;transition:opacity .1s ease,background .1s ease,text-shadow .1s ease,color .1s ease}.ui.rating .icon{background:0 0;color:rgba(0,0,0,.15)}.ui.rating .active.icon{background:0 0;color:rgba(255,255,255,.95)}.ui.rating .icon.selected,.ui.rating .icon.selected.active{background:0 0;color:#ddd}.ui.star.rating .icon{width:1.25em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none}.ui.star.rating .active.icon{background:0 0!important;color:#ffe623!important;text-shadow:0 -1px 0 #ddc507,-1px 0 0 #ddc507,0 1px 0 #ddc507,1px 0 0 #ddc507!important}.ui.star.rating .icon.selected,.ui.star.rating .icon.selected.active{background:0 0!important;color:#fc0!important;text-shadow:0 -1px 0 #e6a200,-1px 0 0 #e6a200,0 1px 0 #e6a200,1px 0 0 #e6a200!important}.ui.heart.rating .icon{width:1.4em;height:auto;background:0 0;color:rgba(0,0,0,.15);text-shadow:none!important}.ui.heart.rating .active.icon{background:0 0!important;color:#ff6d75!important;text-shadow:0 -1px 0 #cd0707,-1px 0 0 #cd0707,0 1px 0 #cd0707,1px 0 0 #cd0707!important}.ui.heart.rating .icon.selected,.ui.heart.rating .icon.selected.active{background:0 0!important;color:#ff3000!important;text-shadow:0 -1px 0 #aa0101,-1px 0 0 #aa0101,0 1px 0 #aa0101,1px 0 0 #aa0101!important}.ui.disabled.rating .icon{cursor:default}.ui.rating.selected .active.icon{opacity:1}.ui.rating .icon.selected,.ui.rating.selected .icon.selected{opacity:1}.ui.mini.rating{font-size:.78571429rem}.ui.tiny.rating{font-size:.85714286rem}.ui.small.rating{font-size:.92857143rem}.ui.rating{font-size:1rem}.ui.large.rating{font-size:1.14285714rem}.ui.huge.rating{font-size:1.42857143rem}.ui.massive.rating{font-size:2rem}@font-face{font-family:Rating;src:url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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kIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOE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) format('woff');font-weight:400;font-style:normal}.ui.rating .icon{font-family:Rating;line-height:1;backface-visibility:hidden;font-weight:400;font-style:normal;text-align:center}.ui.rating .icon:before{content:'\f005'}.ui.rating .active.icon:before{content:'\f005'}.ui.star.rating .icon:before{content:'\f005'}.ui.star.rating .active.icon:before{content:'\f005'}.ui.star.rating .partial.icon:before{content:'\f006'}.ui.star.rating .partial.icon{content:'\f005'}.ui.heart.rating .icon:before{content:'\f004'}.ui.heart.rating .active.icon:before{content:'\f004'}.ui.search{position:relative}.ui.search>.prompt{margin:0;outline:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(255,255,255,0);text-shadow:none;font-style:normal;font-weight:400;line-height:1.21428571em;padding:.67857143em 1em;font-size:1em;background:#2e3235;border:1px solid rgba(24,26,28,.45);color:#ddd;box-shadow:0 0 0 0 transparent inset;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease,border-color .1s ease}.ui.search .prompt{border-radius:500rem}.ui.search .prompt~.search.icon{cursor:pointer}.ui.search>.results{display:none;position:absolute;top:100%;left:0;transform-origin:center top;white-space:normal;text-align:left;text-transform:none;background:#2e3235;margin-top:.5em;width:18em;border-radius:.35714286rem;box-shadow:0 2px 4px 0 rgba(34,36,38,.12),0 2px 10px 0 rgba(34,36,38,.15);border:1px solid #3b3c3e;z-index:998}.ui.search>.results>:first-child{border-radius:.35714286rem .35714286rem 0 0}.ui.search>.results>:last-child{border-radius:0 0 .35714286rem .35714286rem}.ui.search>.results .result{cursor:pointer;display:block;overflow:hidden;font-size:1em;padding:.85714286em 1.14285714em;color:#ddd;line-height:1.33;border-bottom:1px solid rgba(24,26,28,.1)}.ui.search>.results .result:last-child{border-bottom:none!important}.ui.search>.results .result .image{float:right;overflow:hidden;background:0 0;width:5em;height:3em;border-radius:.25em}.ui.search>.results .result .image img{display:block;width:auto;height:100%}.ui.search>.results .result .image+.content{margin:0 6em 0 0}.ui.search>.results .result .title{margin:-.14285714em 0 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:600;font-size:1em;color:rgba(255,255,255,.95)}.ui.search>.results .result .description{margin-top:0;font-size:.92857143em;color:rgba(255,255,255,.5)}.ui.search>.results .result .price{float:right;color:#21ba45}.ui.search>.results>.message{padding:1em 1em}.ui.search>.results>.message .header{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:600;color:#ddd}.ui.search>.results>.message .description{margin-top:.25rem;font-size:1em;color:#ddd}.ui.search>.results>.action{display:block;border-top:none;background:#4b5257;padding:.92857143em 1em;color:#ddd;font-weight:600;text-align:center}.ui.search>.prompt:focus{border-color:rgba(24,26,28,.35);background:#2e3235;color:rgba(255,255,255,.95)}.ui.loading.search .input>i.icon:before{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.loading.search .input>i.icon:after{position:absolute;content:'';top:50%;left:50%;margin:-.64285714em 0 0 -.64285714em;width:1.28571429em;height:1.28571429em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.ui.category.search>.results .category .result:hover,.ui.search>.results .result:hover{background:#34393d}.ui.search .action:hover{background:#e0e0e0}.ui.category.search>.results .category.active{background:#4b5257}.ui.category.search>.results .category.active>.name{color:#ddd}.ui.category.search>.results .category .result.active,.ui.search>.results .result.active{position:relative;border-left-color:rgba(24,26,28,.1);background:#4b5257;box-shadow:none}.ui.search>.results .result.active .title{color:rgba(255,255,255,.95)}.ui.search>.results .result.active .description{color:rgba(255,255,255,.95)}.ui.disabled.search{cursor:default;pointer-events:none;opacity:.45}.ui.search.selection .prompt{border-radius:.35714286rem}.ui.search.selection>.icon.input>.remove.icon{pointer-events:none;position:absolute;left:auto;opacity:0;color:'';top:0;right:0;transition:color .1s ease,opacity .1s ease}.ui.search.selection>.icon.input>.active.remove.icon{cursor:pointer;opacity:.8;pointer-events:auto}.ui.search.selection>.icon.input:not([class*="left icon"])>.icon~.remove.icon{right:1.85714em}.ui.search.selection>.icon.input>.remove.icon:hover{opacity:1;color:#db2828}.ui.category.search .results{width:28em}.ui.category.search .results.animating,.ui.category.search .results.visible{display:table}.ui.category.search>.results .category{display:table-row;background:#4b5257;box-shadow:none;transition:background .1s ease,border-color .1s ease}.ui.category.search>.results .category:last-child{border-bottom:none}.ui.category.search>.results .category:first-child .name+.result{border-radius:0 .35714286rem 0 0}.ui.category.search>.results .category:last-child .result:last-child{border-radius:0 0 .35714286rem 0}.ui.category.search>.results .category>.name{display:table-cell;text-overflow:ellipsis;width:100px;white-space:nowrap;background:0 0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;padding:.4em 1em;font-weight:600;color:rgba(255,255,255,.5);border-bottom:1px solid rgba(24,26,28,.1)}.ui.category.search>.results .category .results{display:table-cell;background:#2e3235;border-left:1px solid rgba(24,26,28,.45);border-bottom:1px solid rgba(24,26,28,.1)}.ui.category.search>.results .category .result{border-bottom:1px solid rgba(24,26,28,.1);transition:background .1s ease,border-color .1s ease;padding:.85714286em 1.14285714em}.ui[class*="left aligned"].search>.results{right:auto;left:0}.ui[class*="right aligned"].search>.results{right:0;left:auto}.ui.fluid.search .results{width:100%}.ui.mini.search{font-size:.78571429em}.ui.small.search{font-size:.92857143em}.ui.search{font-size:1em}.ui.large.search{font-size:1.14285714em}.ui.big.search{font-size:1.28571429em}.ui.huge.search{font-size:1.42857143em}.ui.massive.search{font-size:1.71428571em}@media only screen and (max-width:767px){.ui.search .results{max-width:calc(100vw - 2rem)}}.ui.shape{position:relative;vertical-align:top;display:inline-block;perspective:2000px;transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape .sides{transform-style:preserve-3d}.ui.shape .side{opacity:1;width:100%;margin:0!important;backface-visibility:hidden}.ui.shape .side{display:none}.ui.shape .side *{backface-visibility:visible!important}.ui.cube.shape .side{min-width:15em;height:15em;padding:2em;background-color:#e6e6e6;color:#ddd;box-shadow:0 0 2px rgba(0,0,0,.3)}.ui.cube.shape .side>.content{width:100%;height:100%;display:table;text-align:center;user-select:text}.ui.cube.shape .side>.content>div{display:table-cell;vertical-align:middle;font-size:2em}.ui.text.shape.animating .sides{position:static}.ui.text.shape .side{white-space:nowrap}.ui.text.shape .side>*{white-space:normal}.ui.loading.shape{position:absolute;top:-9999px;left:-9999px}.ui.shape .animating.side{position:absolute;top:0;left:0;display:block;z-index:100}.ui.shape .hidden.side{opacity:.6}.ui.shape.animating .sides{position:absolute}.ui.shape.animating .sides{transition:transform .6s ease-in-out,left .6s ease-in-out,width .6s ease-in-out,height .6s ease-in-out}.ui.shape.animating .side{transition:opacity .6s ease-in-out}.ui.shape .active.side{display:block}.ui.sidebar{position:fixed;top:0;left:0;backface-visibility:hidden;transition:none;will-change:transform;transform:translate3d(0,0,0);visibility:hidden;-webkit-overflow-scrolling:touch;height:100%!important;max-height:100%;border-radius:0!important;margin:0!important;overflow-y:auto!important;z-index:102}.ui.sidebar>*{backface-visibility:hidden}.ui.left.sidebar{right:auto;left:0;transform:translate3d(-100%,0,0)}.ui.right.sidebar{right:0!important;left:auto!important;transform:translate3d(100%,0,0)}.ui.bottom.sidebar,.ui.top.sidebar{width:100%!important;height:auto!important}.ui.top.sidebar{top:0!important;bottom:auto!important;transform:translate3d(0,-100%,0)}.ui.bottom.sidebar{top:auto!important;bottom:0!important;transform:translate3d(0,100%,0)}.pushable{height:100%;overflow-x:hidden;padding:0!important}body.pushable{background:#545454!important}.pushable:not(body){transform:translate3d(0,0,0)}.pushable:not(body)>.fixed,.pushable:not(body)>.pusher:after,.pushable:not(body)>.ui.sidebar{position:absolute}.pushable>.fixed{position:fixed;backface-visibility:hidden;transition:transform .5s ease;will-change:transform;z-index:101}.pushable>.pusher{position:relative;backface-visibility:hidden;overflow:hidden;min-height:100%;transition:transform .5s ease;z-index:2}body.pushable>.pusher{background:#2e3235}.pushable>.pusher{background:inherit}.pushable>.pusher:after{position:fixed;top:0;right:0;content:'';background-color:rgba(0,0,0,.4);overflow:hidden;opacity:0;transition:opacity .5s;will-change:opacity;z-index:1000}.ui.sidebar.menu .item{border-radius:0!important}.pushable>.pusher.dimmed:after{width:100%!important;height:100%!important;opacity:1!important}.ui.animating.sidebar{visibility:visible}.ui.visible.sidebar{visibility:visible;transform:translate3d(0,0,0)}.ui.left.visible.sidebar,.ui.right.visible.sidebar{box-shadow:0 0 20px rgba(24,26,28,.45)}.ui.bottom.visible.sidebar,.ui.top.visible.sidebar{box-shadow:0 0 20px rgba(24,26,28,.45)}.ui.visible.left.sidebar~.fixed,.ui.visible.left.sidebar~.pusher{transform:translate3d(260px,0,0)}.ui.visible.right.sidebar~.fixed,.ui.visible.right.sidebar~.pusher{transform:translate3d(-260px,0,0)}.ui.visible.top.sidebar~.fixed,.ui.visible.top.sidebar~.pusher{transform:translate3d(0,36px,0)}.ui.visible.bottom.sidebar~.fixed,.ui.visible.bottom.sidebar~.pusher{transform:translate3d(0,-36px,0)}.ui.visible.left.sidebar~.ui.visible.right.sidebar~.fixed,.ui.visible.left.sidebar~.ui.visible.right.sidebar~.pusher,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.fixed,.ui.visible.right.sidebar~.ui.visible.left.sidebar~.pusher{transform:translate3d(0,0,0)}.ui.thin.left.sidebar,.ui.thin.right.sidebar{width:150px}.ui[class*="very thin"].left.sidebar,.ui[class*="very thin"].right.sidebar{width:60px}.ui.left.sidebar,.ui.right.sidebar{width:260px}.ui.wide.left.sidebar,.ui.wide.right.sidebar{width:350px}.ui[class*="very wide"].left.sidebar,.ui[class*="very wide"].right.sidebar{width:475px}.ui.visible.thin.left.sidebar~.fixed,.ui.visible.thin.left.sidebar~.pusher{transform:translate3d(150px,0,0)}.ui.visible[class*="very thin"].left.sidebar~.fixed,.ui.visible[class*="very thin"].left.sidebar~.pusher{transform:translate3d(60px,0,0)}.ui.visible.wide.left.sidebar~.fixed,.ui.visible.wide.left.sidebar~.pusher{transform:translate3d(350px,0,0)}.ui.visible[class*="very wide"].left.sidebar~.fixed,.ui.visible[class*="very wide"].left.sidebar~.pusher{transform:translate3d(475px,0,0)}.ui.visible.thin.right.sidebar~.fixed,.ui.visible.thin.right.sidebar~.pusher{transform:translate3d(-150px,0,0)}.ui.visible[class*="very thin"].right.sidebar~.fixed,.ui.visible[class*="very thin"].right.sidebar~.pusher{transform:translate3d(-60px,0,0)}.ui.visible.wide.right.sidebar~.fixed,.ui.visible.wide.right.sidebar~.pusher{transform:translate3d(-350px,0,0)}.ui.visible[class*="very wide"].right.sidebar~.fixed,.ui.visible[class*="very wide"].right.sidebar~.pusher{transform:translate3d(-475px,0,0)}.ui.overlay.sidebar{z-index:102}.ui.left.overlay.sidebar{transform:translate3d(-100%,0,0)}.ui.right.overlay.sidebar{transform:translate3d(100%,0,0)}.ui.top.overlay.sidebar{transform:translate3d(0,-100%,0)}.ui.bottom.overlay.sidebar{transform:translate3d(0,100%,0)}.animating.ui.overlay.sidebar,.ui.visible.overlay.sidebar{transition:transform .5s ease}.ui.visible.left.overlay.sidebar{transform:translate3d(0,0,0)}.ui.visible.right.overlay.sidebar{transform:translate3d(0,0,0)}.ui.visible.top.overlay.sidebar{transform:translate3d(0,0,0)}.ui.visible.bottom.overlay.sidebar{transform:translate3d(0,0,0)}.ui.visible.overlay.sidebar~.fixed,.ui.visible.overlay.sidebar~.pusher{transform:none!important}.ui.push.sidebar{transition:transform .5s ease;z-index:102}.ui.left.push.sidebar{transform:translate3d(-100%,0,0)}.ui.right.push.sidebar{transform:translate3d(100%,0,0)}.ui.top.push.sidebar{transform:translate3d(0,-100%,0)}.ui.bottom.push.sidebar{transform:translate3d(0,100%,0)}.ui.visible.push.sidebar{transform:translate3d(0,0,0)}.ui.uncover.sidebar{transform:translate3d(0,0,0);z-index:1}.ui.visible.uncover.sidebar{transform:translate3d(0,0,0);transition:transform .5s ease}.ui.slide.along.sidebar{z-index:1}.ui.left.slide.along.sidebar{transform:translate3d(-50%,0,0)}.ui.right.slide.along.sidebar{transform:translate3d(50%,0,0)}.ui.top.slide.along.sidebar{transform:translate3d(0,-50%,0)}.ui.bottom.slide.along.sidebar{transform:translate3d(0,50%,0)}.ui.animating.slide.along.sidebar{transition:transform .5s ease}.ui.visible.slide.along.sidebar{transform:translate3d(0,0,0)}.ui.slide.out.sidebar{z-index:1}.ui.left.slide.out.sidebar{transform:translate3d(50%,0,0)}.ui.right.slide.out.sidebar{transform:translate3d(-50%,0,0)}.ui.top.slide.out.sidebar{transform:translate3d(0,50%,0)}.ui.bottom.slide.out.sidebar{transform:translate3d(0,-50%,0)}.ui.animating.slide.out.sidebar{transition:transform .5s ease}.ui.visible.slide.out.sidebar{transform:translate3d(0,0,0)}.ui.scale.down.sidebar{transition:transform .5s ease;z-index:102}.ui.left.scale.down.sidebar{transform:translate3d(-100%,0,0)}.ui.right.scale.down.sidebar{transform:translate3d(100%,0,0)}.ui.top.scale.down.sidebar{transform:translate3d(0,-100%,0)}.ui.bottom.scale.down.sidebar{transform:translate3d(0,100%,0)}.ui.scale.down.left.sidebar~.pusher{transform-origin:75% 50%}.ui.scale.down.right.sidebar~.pusher{transform-origin:25% 50%}.ui.scale.down.top.sidebar~.pusher{transform-origin:50% 75%}.ui.scale.down.bottom.sidebar~.pusher{transform-origin:50% 25%}.ui.animating.scale.down>.visible.ui.sidebar{transition:transform .5s ease}.ui.animating.scale.down.sidebar~.pusher,.ui.visible.scale.down.sidebar~.pusher{display:block!important;width:100%;height:100%;overflow:hidden!important}.ui.visible.scale.down.sidebar{transform:translate3d(0,0,0)}.ui.visible.scale.down.sidebar~.pusher{transform:scale(.75)}.ui.sticky{position:static;transition:none;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.ui.tab{display:none}.ui.tab.active,.ui.tab.open{display:block}.ui.tab.loading{position:relative;overflow:hidden;display:block;min-height:250px}.ui.tab.loading *{position:relative!important;left:-10000px!important}.ui.tab.loading.segment:before,.ui.tab.loading:before{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;border-radius:500rem;border:.2em solid rgba(0,0,0,.1)}.ui.tab.loading.segment:after,.ui.tab.loading:after{position:absolute;content:'';top:100px;left:50%;margin:-1.25em 0 0 -1.25em;width:2.5em;height:2.5em;animation:button-spin .6s linear;animation-iteration-count:infinite;border-radius:500rem;border-color:#767676 transparent transparent;border-style:solid;border-width:.2em;box-shadow:0 0 0 1px transparent}.transition{animation-iteration-count:1;animation-duration:.3s;animation-timing-function:ease;animation-fill-mode:both}.animating.transition{backface-visibility:hidden;visibility:visible!important}.loading.transition{position:absolute;top:-99999px;left:-99999px}.hidden.transition{display:none;visibility:hidden}.visible.transition{display:block!important;visibility:visible!important}.disabled.transition{animation-play-state:paused}.looping.transition{animation-iteration-count:infinite}.transition.browse{animation-duration:.5s}.transition.browse.in{animation-name:browseIn}.transition.browse.left.out,.transition.browse.out{animation-name:browseOutLeft}.transition.browse.right.out{animation-name:browseOutRight}@keyframes browseIn{0%{transform:scale(.8) translateZ(0);z-index:-1}10%{transform:scale(.8) translateZ(0);z-index:-1;opacity:.7}80%{transform:scale(1.05) translateZ(0);opacity:1;z-index:999}100%{transform:scale(1) translateZ(0);z-index:999}}@keyframes browseOutLeft{0%{z-index:999;transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:-1;transform:translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:-1;transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}@keyframes browseOutRight{0%{z-index:999;transform:translateX(0) rotateY(0) rotateX(0)}50%{z-index:1;transform:translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px)}80%{opacity:1}100%{z-index:1;transform:translateX(0) rotateY(0) rotateX(0) translateZ(-10px);opacity:0}}.drop.transition{transform-origin:top center;animation-duration:.4s;animation-timing-function:cubic-bezier(.34,1.61,.7,1)}.drop.transition.in{animation-name:dropIn}.drop.transition.out{animation-name:dropOut}@keyframes dropIn{0%{opacity:0;transform:scale(0)}100%{opacity:1;transform:scale(1)}}@keyframes dropOut{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0)}}.transition.fade.in{animation-name:fadeIn}.transition[class*="fade up"].in{animation-name:fadeInUp}.transition[class*="fade down"].in{animation-name:fadeInDown}.transition[class*="fade left"].in{animation-name:fadeInLeft}.transition[class*="fade right"].in{animation-name:fadeInRight}.transition.fade.out{animation-name:fadeOut}.transition[class*="fade up"].out{animation-name:fadeOutUp}.transition[class*="fade down"].out{animation-name:fadeOutDown}.transition[class*="fade left"].out{animation-name:fadeOutLeft}.transition[class*="fade right"].out{animation-name:fadeOutRight}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10%)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-10%)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(10%)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(-10%)}100%{opacity:1;transform:translateX(0)}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOutUp{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(5%)}}@keyframes fadeOutDown{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(-5%)}}@keyframes fadeOutLeft{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(5%)}}@keyframes fadeOutRight{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(-5%)}}.flip.transition.in,.flip.transition.out{animation-duration:.6s}.horizontal.flip.transition.in{animation-name:horizontalFlipIn}.horizontal.flip.transition.out{animation-name:horizontalFlipOut}.vertical.flip.transition.in{animation-name:verticalFlipIn}.vertical.flip.transition.out{animation-name:verticalFlipOut}@keyframes horizontalFlipIn{0%{transform:perspective(2000px) rotateY(-90deg);opacity:0}100%{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes verticalFlipIn{0%{transform:perspective(2000px) rotateX(-90deg);opacity:0}100%{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes horizontalFlipOut{0%{transform:perspective(2000px) rotateY(0);opacity:1}100%{transform:perspective(2000px) rotateY(90deg);opacity:0}}@keyframes verticalFlipOut{0%{transform:perspective(2000px) rotateX(0);opacity:1}100%{transform:perspective(2000px) rotateX(-90deg);opacity:0}}.scale.transition.in{animation-name:scaleIn}.scale.transition.out{animation-name:scaleOut}@keyframes scaleIn{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes scaleOut{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.9)}}.transition.fly{animation-duration:.6s;transition-timing-function:cubic-bezier(.215,.61,.355,1)}.transition.fly.in{animation-name:flyIn}.transition[class*="fly up"].in{animation-name:flyInUp}.transition[class*="fly down"].in{animation-name:flyInDown}.transition[class*="fly left"].in{animation-name:flyInLeft}.transition[class*="fly right"].in{animation-name:flyInRight}.transition.fly.out{animation-name:flyOut}.transition[class*="fly up"].out{animation-name:flyOutUp}.transition[class*="fly down"].out{animation-name:flyOutDown}.transition[class*="fly left"].out{animation-name:flyOutLeft}.transition[class*="fly right"].out{animation-name:flyOutRight}@keyframes flyIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}100%{opacity:1;transform:scale3d(1,1,1)}}@keyframes flyInUp{0%{opacity:0;transform:translate3d(0,1500px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}100%{transform:translate3d(0,0,0)}}@keyframes flyInDown{0%{opacity:0;transform:translate3d(0,-1500px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}100%{transform:none}}@keyframes flyInLeft{0%{opacity:0;transform:translate3d(1500px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}100%{transform:none}}@keyframes flyInRight{0%{opacity:0;transform:translate3d(-1500px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}100%{transform:none}}@keyframes flyOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;transform:scale3d(.3,.3,.3)}}@keyframes flyOutUp{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}100%{opacity:0;transform:translate3d(0,2000px,0)}}@keyframes flyOutDown{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}100%{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes flyOutRight{20%{opacity:1;transform:translate3d(20px,0,0)}100%{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes flyOutLeft{20%{opacity:1;transform:translate3d(-20px,0,0)}100%{opacity:0;transform:translate3d(2000px,0,0)}}.transition.slide.in,.transition[class*="slide down"].in{animation-name:slideInY;transform-origin:top center}.transition[class*="slide up"].in{animation-name:slideInY;transform-origin:bottom center}.transition[class*="slide left"].in{animation-name:slideInX;transform-origin:center right}.transition[class*="slide right"].in{animation-name:slideInX;transform-origin:center left}.transition.slide.out,.transition[class*="slide down"].out{animation-name:slideOutY;transform-origin:top center}.transition[class*="slide up"].out{animation-name:slideOutY;transform-origin:bottom center}.transition[class*="slide left"].out{animation-name:slideOutX;transform-origin:center right}.transition[class*="slide right"].out{animation-name:slideOutX;transform-origin:center left}@keyframes slideInY{0%{opacity:0;transform:scaleY(0)}100%{opacity:1;transform:scaleY(1)}}@keyframes slideInX{0%{opacity:0;transform:scaleX(0)}100%{opacity:1;transform:scaleX(1)}}@keyframes slideOutY{0%{opacity:1;transform:scaleY(1)}100%{opacity:0;transform:scaleY(0)}}@keyframes slideOutX{0%{opacity:1;transform:scaleX(1)}100%{opacity:0;transform:scaleX(0)}}.transition.swing{animation-duration:.8s}.transition[class*="swing down"].in{animation-name:swingInX;transform-origin:top center}.transition[class*="swing up"].in{animation-name:swingInX;transform-origin:bottom center}.transition[class*="swing left"].in{animation-name:swingInY;transform-origin:center right}.transition[class*="swing right"].in{animation-name:swingInY;transform-origin:center left}.transition.swing.out,.transition[class*="swing down"].out{animation-name:swingOutX;transform-origin:top center}.transition[class*="swing up"].out{animation-name:swingOutX;transform-origin:bottom center}.transition[class*="swing left"].out{animation-name:swingOutY;transform-origin:center right}.transition[class*="swing right"].out{animation-name:swingOutY;transform-origin:center left}@keyframes swingInX{0%{transform:perspective(1000px) rotateX(90deg);opacity:0}40%{transform:perspective(1000px) rotateX(-30deg);opacity:1}60%{transform:perspective(1000px) rotateX(15deg)}80%{transform:perspective(1000px) rotateX(-7.5deg)}100%{transform:perspective(1000px) rotateX(0)}}@keyframes swingInY{0%{transform:perspective(1000px) rotateY(-90deg);opacity:0}40%{transform:perspective(1000px) rotateY(30deg);opacity:1}60%{transform:perspective(1000px) rotateY(-17.5deg)}80%{transform:perspective(1000px) rotateY(7.5deg)}100%{transform:perspective(1000px) rotateY(0)}}@keyframes swingOutX{0%{transform:perspective(1000px) rotateX(0)}40%{transform:perspective(1000px) rotateX(-7.5deg)}60%{transform:perspective(1000px) rotateX(17.5deg)}80%{transform:perspective(1000px) rotateX(-30deg);opacity:1}100%{transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes swingOutY{0%{transform:perspective(1000px) rotateY(0)}40%{transform:perspective(1000px) rotateY(7.5deg)}60%{transform:perspective(1000px) rotateY(-10deg)}80%{transform:perspective(1000px) rotateY(30deg);opacity:1}100%{transform:perspective(1000px) rotateY(-90deg);opacity:0}}.transition.zoom.in{animation-name:zoomIn}.transition.zoom.out{animation-name:zoomOut}@keyframes zoomIn{0%{opacity:1;transform:scale(0)}100%{opacity:1;transform:scale(1)}}@keyframes zoomOut{0%{opacity:1;transform:scale(1)}100%{opacity:1;transform:scale(0)}}.flash.transition{animation-duration:750ms;animation-name:flash}.shake.transition{animation-duration:750ms;animation-name:shake}.bounce.transition{animation-duration:750ms;animation-name:bounce}.tada.transition{animation-duration:750ms;animation-name:tada}.pulse.transition{animation-duration:.5s;animation-name:pulse}.jiggle.transition{animation-duration:750ms;animation-name:jiggle}.transition.glow{animation-duration:2s;animation-timing-function:cubic-bezier(.19,1,.22,1)}.transition.glow{animation-name:glow}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes shake{0%,100%{transform:translateX(0)}10%,30%,50%,70%,90%{transform:translateX(-10px)}20%,40%,60%,80%{transform:translateX(10px)}}@keyframes bounce{0%,100%,20%,50%,80%{transform:translateY(0)}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}@keyframes tada{0%{transform:scale(1)}10%,20%{transform:scale(.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(3deg)}40%,60%,80%{transform:scale(1.1) rotate(-3deg)}100%{transform:scale(1) rotate(0)}}@keyframes pulse{0%{transform:scale(1);opacity:1}50%{transform:scale(.9);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes jiggle{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}100%{transform:scale3d(1,1,1)}}@keyframes glow{0%{background-color:#fcfcfd}30%{background-color:#fff6cd}100%{background-color:#fcfcfd}} \ No newline at end of file diff --git a/styles/themes/default/assets/fonts/brand-icons.eot b/styles/themes/default/assets/fonts/brand-icons.eot deleted file mode 100644 index 0a1ef3f7ec16d6686bea362f2e41247b813e6d40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98640 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

2LiaYv-Uxv|O@DH|N zJ6yl=P728ny|%tK3mR%4fJ;mmLOP8 zW-Uq+0-Ue#f51NNHke}))A>yiwIUph5U{zh4)*6c9gmKlHZpSB*3(8u*KN%8_U6`Q zdwYL+oTH^)KD)lDo=9wLoL%3NOr=ui(2Kq7lzorP{MMMaV!rXxOUC>ac=yGL;>66h z+Q!x8P?faswXm}S;8C~@;D_&g>Iq7-2x< z!fj;CH+*0mSwt(d`X`%g?&%1-gO^&>>Ep6&%{y@d-93bLksjJm)Oy0v=*~nbfxl&T z#?+%h%hj#4T`&}%o^*UBv~Nw*VIu`#|YE+A3 zo`1VgbPK$znBU>8!yy+D5Xzj_6(`yn^VHf(tE_?_@i5N@q8{oH4I5as6-ZiOKaB5I zoAjwZQBh%Lio}J8<3t3wGPj-BzcW|BNk@ZrGLtFy*-QibY)`R2mdeEYiuqVIpRdLa zIUzF`30--0IQC)=(V!ZQ6j@ZL{^b+8?#5ik2#2i{Uf$w&t=@!At?&xy`+6!Mxm8yR zq&6Y)SqK?{5IqoPdv_6^K1DwYnihhEG7Fu)4*$>@@HJlv%61=ihJ6XU5r06A;GGq( z<2^kAnqWJ$LGf7hM>SfS^UJgfu*f3(jl~4i%OG=(Is!^oQ%7rvp2PfdYY0$(lf72P z42B56+?b$(h*5-WT7d`+8*V|xpU0)^O~%P<*d5@dn80uhVhu1krVjPHUUge#OmoP{ z5iEdcvsO_G5N5D&V4!qZ3}35O_XLk9c22q$m%emAo$oXsnY>e!_d>pq?hkuE3P zldTlg?A9Bw`HevqhtR~w%La5P;J>WG6$KFXjXD9G7$f>r)DVMC&mlD8re)M3XGPVM1Lb!D4bD{_|(s ze8MC>h*EBP!-jOMJb7ng{rY5b{rcT1tPiqO(h#WW5eF5OAc){Pq5$E& z@Xov&iVfbj#Rh?m!vT2Ru(LtlP@XKi>9aPZ-O`lzZkSnpkn#QuEC5TfLiXWZ0w2W+ z`8=cKv+DsuvIDywW^$e%c?9ppId3&+>SMX?aW(D7vjt z=FmWXt}eQuH@F7h#_>x2=Q^CZI+(V(;IziG<5 z;JXqNaNhKoYmd>FN>G(heCejJ&ajX0Y+G>irl<>sPC9PGsbm+*$Q z0lx?+OhaKF(;65C6cI)dp=~qT0_%#?0>{Ac<8-TmLQu^%ltWcD44PA`m+AWr z2n~+$xi<~axS@u8BEnolK|2a>C8AjsGvtILZgP3D=;Sp`HIl0kcCHB79?%_mum}IH zPDd;RF%|2ft6ge2QW`RPpq9bf_xZ0qli3FI*M34xtLriazy7$^s|Q2bbWbUj&Fg8+8DrYO ziF{cFPhz&HmFzuGC4>^TMkj^0@D0l7EjX(Rs|KUJ9v^^d83cWnkud!d3le%9+o0%T zQ6exA>K*-&EaiiO=kt5Rk}VY+5-!Z@#XbGH=1u!V9wqDeEa-wKp(STsGDi2qkK_e=d=i`&rhRzes(R z{VS%6c&|j6fOyr*FaO=$Tb3 zWd-UDmpw}mG`)CVL9SqyqJ=G`eB-IbU9F|#Q~7TXt_qK>7{ec3@V=A~yLi=9W6GHM z;JLl6Z3`y*PyLU}2S@XzC4OOeZIR^~YpVIPN}rTU*_~IcKQysw(c4z&*J^#}A7=OE zHogRW!DH+lKUDQ(1+25O*D$s05wi+BQc$NnnIxjVDM*v;ndCe85Uoik^vY0i0VJpR zV7w=p2!s(%D6E$BO^ChI3|;mu+P!e$?yK0>qJdQd1FJT$FIv_LJ&THdJvEp>+&-fE z!{$cWcNwNWO3AOymO!zY1G7a?&hv+Vlb(wH)R=|x4XFwHIa#z5<|u3Ygg{TNE*~3P zUOfX%9a>TEUp_Xva+D6Gc=vo4eN9mF_6 z8-VoR@}yE`;A0<8&@U=#6>E)ypG1-u$x&2j3gl*o{E)W^c&P-=mziAijKAtXe97Wsme&#cXde z(;tiaX(DVHT14}YVE2MdBY|b*e5RrWux&_|qrR}5O9mUUr0Gi~%86Kdu^`31u9p$bfQ_H{x>%JGsF;1-!S?J~p?EqqkewRy_r)UE zN)<>Z26YQNi~PEZ`}bm%&d(UCQm!J7FCK+W&Ka+n8X^hZLL?-`{f0i8E#~}jClV=? z(|tz3dOvROwL$Uq&Ncw8h|je^-WZ37(B9@XdAPsf0OejKe?=R0p?aLGw2G`Y3?R(=jLoaqQ|_fj7woBl z;A++$uqL*Vqoy(&DTWuv$SPE72>+S~9Z$Xx?*0oUQ>XKEiuh$!Zox!ZpS$vQDWKE3 ztkM>Oie~l>4i3_xnlz8rC9yUvu%9bvacaji{;2Qtb*HadyG*%en@Gon9jEWPWd7st z#BTXh?yebBs5KWZTnm$4|N79|;Q^)RoqYh;wx3fz2g2IseR3cgkwS}Gk^^_|zn&$D zioQ)0JgXtT1aZ6M6V8DlANxrWj-=B~5-ws9!$}|rn<>ot;#R8rwePOh#8IOuY=f}A zS*ZI)5Ka`-tW(aTA78rb>xR4GjEx)DuT0UUl%6k1=WpEqu0;!Fx!HsUg3yKNtV)Is6-ntcGUgs=Yq&eZYZ5N`Cu0`CbM|=6+YZrPxX))pkc>*S7gbOWT z(F~s1jTWP>%19-1+ajVJdAJXD5{f9qH?}`}2s@K~q2xL<5;4b}pu?WYPd~dk7kO_W z>IcBh{cdWfYq|#_GUrct(^z zF$9p`gj*>Kv$toP%NxDe7anF&8h)q|Mm(p=sd7>Dmuv_eMk16`s3v1Oo`h)e1P-64 z;<%~{;u8f5WD zOitl3LpI)z$E-?t4-kfAcCQ1b7uX|2Ikuma@2tbG1`Guj#69SV%&OZ$-~dJx?vyGf z=Fn;^Nl$it*8*dUJTRRo{}zw6=`rB}*%W5aE~g6`VqEUv~Io zIbZmVGx@&$>@YpFc;5K(lNPilmdqPpw)oOQaVV48^0qChRCQ={!MrWaM?$)P(2hG+ z*y%mFuO}2a{$qAc9f1%0Af6Z@)FB(Yi!1?AzazB9c8P&N!YKXVgT$dg{4sKuHSnrj80dMO$#NIdx`FU2_i@HtD zl-O<^riPU(bYq}7e>9aEo!<;Z7ZB;B*cqRn`btTV8Y=Z6N>)c$FgCy-o-ULr4xBVd zpG44FK+#1b7!}bF6=pBk-+cN4-4A(D5RHH>K~sjI7C!JQf|e)^2eEA(n`lNeP!5wZ zAs@4J)jzXY31XWtLP!x3uK4hx1Vs75aE20L-PRE-iJOMgczSR^#Q3^O*b*o<$%~&*FX% zUX5dF~Fdo7knbcV9mMjGFFfP(Sglc2VPY){ZDUFVn=s(VEvjex|MGofG4Ui}<>(J*wLo;lL4ILIo#4^14 z%qKRx#An|%BYLh%_~#)7I5qk;=1@iC1WeP+j)Av1h`Jx|?AR7b<#hF_!wmEqxGNBT zju3bloenC9wv!P4#Wr)QGapg)!%qQBX2Cz`HP=C}NuU)C$mwUIEpX3+%0bs;-nu4e z#2X&0%K!T%=pAVKac@ECE&e^azh1|V>To3HM#8phO@-68owBd1)lAn8N8+vn-V|Jn zQ~0CHSOoH1Nb$^pM7f-x?3>Oz>Vy#Iu9rtEaAJzVanp_@B9VLk=hI)c1ILIL%#80` zIdP15HQ}3$fplyJF>0^Se}aWLj%Qy*$SiMY)WIHMwPPPoKZnW6f%}$)t$D$-=oIe< z3zPL;oWvvtyh5Q~VY-&;Hp|L)vaX38BtmknPj}M=|G}hf1wI{Ky(*{XgIJ3Q9fnA2 zoE>u0;i#a9%ISds!pMSWoRo8Kno?suQ)M`S6Bgc%l&i&}5P#?saQ9`8{6hj(5RysbzuwR&-}+u+^RJ^h!(#FyZ8 zA~rLGdLiW{IBh(uC@NO@VUgX9O&4}){ra0~*(~kj>F$Yy)x@y&`iHUjJ7LJV7GedqmXsxTRyABt_r_Woz zX4RIjZC&*qc&)wrAIAE8&hxVs*?SU?+k)n-@ud)x9^5?FP*_ln$U?zbyg+euj4^c= z@uk>!&ln?|Po50HbXbo&!>;TV#}8cgCY$Tog780OSWyI9Snu?+Z$yX2vxBxd^K&Pg zb?8PXdvX|4DjCp4cyHywT|<`YGr|!VJOXymhe!!*L-GegHr}rQ4~xIhH`Hrk2c~8~ zSPupKn(}QU6p97$FUHbGW*X5{Z+J8trJJMK?9A)6W-=7Q?j#*sMdO04q1`&%IRbX! zI`LGchy9jRN5cCn6a^eJgv~J6ZHoXL7F@<@8?ymE439eKCW`=oKM)=k76Jf|UkkD| z_C>(`XVPCS+CA~Bg}W9m+%=JopBA2^BcU9MN>a6d1-{*an-}8Gq2adxubU;0I;6)o>*}V7F z_ipYy*aYsHIhEvaj?>-C+nUlLlGF^BxWKO&#-DZD6q*vbod$}!36pnosN{7b(Q$3J{R ziGGJi7g4td0ud2$PzfMF){+0DAHLu)f2R+_#wf2Ubf*icao_O`zgXKjWx8H<-$Sqb z@yTkwnYF)8Mn5Z!p1*tGyEm^t@Yu%2#snEX<5kCxHX?U0GuJ+R|J{u9pm#w29@`l8 zQ_;nLoEas?FLfpTbTyXrQxwSoU2CK*a?7m2Uc`$GK7JLIEm87>8%ca8l7_SEMigC_ z>L1}yot@wL;9YBF%PeFYaW;#mj!7lczvW=2KySCNaEiW;trDcaEj=U;Jk+s+Ng;Y!Pw&x z@p&`GWJ&Tmz=On6Mjva+)w2>`lHaW72Z~6YRCHWS5jyTI)#m&h3 zvBrsZIvg~rHyPISa;?xMdFQf%RcfTXTw~r$)jP$EYLMF3`jkw;2?moXdi#Q_`OD4a zOn2Hfv=dRz>P@=^=htG}UmW`7_eg!X``zm zh?1`sYqOGkk-TeZFnsb@wj(mVBWLf5ODd|Z&f4~3znHNL-G%Y#<$Hc{YJBThuj*`_ zYEGR#;@~EmhXCo?{M7trE3@+QU-#-$a{$p7E>0*rTRYMtcg~E8#a1xzbM@fJx>wfL z4}qg!JpB`d|EwZViK+g4{famAx)a6gPDPp8Wmj94Zq6`yi!byUEysA4(L9>-Fir=< z0M{JT9mZn*x_e2{N@W9vQauLZ{9O5x|m_^01UgUJw) zH~N(LP{ldGFMXZ4h_|(6+G!LPT#E*431C-x9Iit)ly&HbqD_cCA-fUyFFQ#*wQMP% zGWmv!NNu~*ZnlM)VCTwSHeU!-&C$fxhe|4TwKnOTnOn`CX0rFz*slS4p|7O zvwEt4qJZYE8E*O>L^QxWhgl)$g`IK%nz3fFNGOq9R?ljZ92%q1&~{5`5Dv7 zS6b6ct20we^OG}cOS8E4cRuZqz=+Z;{F_(_dKzL+$jb;T3MdxPtcDj6mKIQIX z_n+FoTCcSlo!j@Rr(QKIMOR$YCFN?n-CS8-pSilx?TVa0w*QLyYBCN=Xe?92{C^D= z?SJ7Oim{H8)=wbUbm+vQ<)C0;M&U9P{n3XMcV*zCI;cDcJ>&P;?h3B7`U9kBP2 z2p{Dx@YR=f5o}wU3}GJ7GO&);X&oF;2Q_g_L zDEnsG`&}X-8QXpz@fffdYM&YUv9rBWiYmDl9CO&kIozF?w-$yjdCIw{(Jpkbue_|5 zp)>nN#?k5!`H+WoaDF3Q_M?pN5Wgh_6+2iXG>i3T7`0$(d=^VE#S&d7Z9-42O?7f5 zjDA*d$%nvIn60P%o&TZm9lF&p?KyB&r20Y8vzPG@vIPulIIuN1CqRw9)yP1}RPi8@ z01{aY`e5JTl2qSKFVjGu&>^wpbpddP%v&kzr8ZFZz2|$O)bo~woJXLj4nZ@Mq+^V3 z#0jTKmN?tt8`W)_3}uprNzvA9=pZywiM<2!cqLjnCvqLz!5xV|J404C&=jISq(a$g z*UFFrg$4#Z#z1i})6iS6hL_RuMJFhb?dyLZ`H_Os!7!ei!Zo7lnYn2intMaaP?)kb z-M&dOcUURygxRR%vyx^^MkQxAR{7`jaUI)jY`CzlQUb6NxHS*yThf{6>WOEDWrTxw zr4pSq={)U<`ptUdzU?C`3yoTOe0l4#Ak4+gG(T-PR%U;*rH-x)mZoP0<;HE(^EJ2+ z_J28d8MbJ%zOt~f(i(s+O1s4}q#i-8I=gse?SL+#{v@=9W-p1?BKMV#>y*l}WR?fcg%g)C?^O?Z}f4j#S6ArG| zz-<3DDEvwZ?yWySQV)=|t1>o3YIj#L&!mY)l9)jB5M8N166wI=@n?4qlH(^xeU!J*(MNxXy8mC_QWx;=F(E)zJUqC&E~S80W$@>SJ3yu zR+9H%UV}rKW(Z5*PRmu=R@@2MLatI11~cSCik0yRq`}*o@M=kV3y?8d&qyC~JeV=q zI}22{m^M;{jP_d7hWLLyzbr!u{F8%lXa7j@DD#d`T6u`(IekrLRe% z3(1SO{ouI=x09Cv&fC2`eXbNN=k0C7*tYY_K`E1|dzn&hg+;o~qLpkp<5zt3q+Zb0 z7wnvyo%8}jl$oB4O zY(MyZJD0O+n{_Mj?Zva_Qu&#%9J?hiDu*-q)Dc}jk}Qh6ix$Z}#6`4=)v1z0I2I(S zm?AbpA#7oAB{M`{UcuZZhGg=BqLIW8l9xgMZMU54Rv9n)HI?IGD-@VWs~BYLZ2m~3 zJ9a(JL`JhVInyx-s@9`WFM7qerk%tvG8ue-x;T1PQ#lYbXemAR02kbftYIMhu@fR4J??GXZyi#k4RaY~pa1 zrR)ws`cM9Hww4CF3FCevoBI0w$l+KANgsW?rH?lvAO5`*&=su$_|_^Es#CK!*BWRy z&OP?(5Cgt~VqpeHZhL4ok20c{p>bVX$n>)%!+bB25ayXUfA!VbDx6?Sea9dRa~*-h zkzF|&@6*IfFJr9VCso@nVGM!QdIUC-5O$Imi7Ijd$rN9TFcS6&R%AV{kl!vKkdkZ& zylKykdL+Olps=s)zia>gyB?L7A6&nBJ*DRnWBH{#1Sgaf_p?af)JLCxQ+E0ml(m{E0M{dWBC?oOldv)I z*~H%nneVP+Vb_2Z{d09i{UJGfC~=@6QenzNIZ4AqioCEL%h7c^({LewO9w5Ku*PyD zO7_0}#f3k_$Pp9PWXraj;ysw9fbn6ul$@p|g-g0LjzmQ8{wC zLf)eU2qdAHkTzu4e1YXU8-*1pN|`r- zITuc|>wA;4p1-f3v4%XHVTCFJF56qFuqdfW@6La8fj83*O$bjvX@HO*vMwE4yNIto%hM(|mU9 z+&MLN?#WlY;(xsImFnu3e(9lyzIb5v)NOJAUUuUy=V(6{Nm&J1j(?vhl30d3EcqD9 z$I%-;|KtaCZu{K%_no_?a_)WSdEMSQ#~;TzS2@QoyuS1NE!z;j$l{ToF!3P^XKtG# zJl_`GMJ1cddmk=k!~L6TueaLkJu!NF9?$I`%TIgHi;ktEv5+MxY&5A5ZH2JHuDQ#3 z{r#CUA3k%_O*egDL`?J3A6B_Dcb-X~N!sHV)xFFce!@v}8GQ-xM*=*OalfSsh#;IT zi3l4BF~SkRJ$MZIdLr`Vv)F+mM+74>5MdSlN=KE^c=r+e4*^r>Q`Qfr-q zcy=h6a-P5 z*xcoFo9u$Wg_Wc8&2sJ8v4xragKDi)EbH&=uMQ>_XAWG|naJDKxI^(W@!kGW5;Mx8 z(~Zzr|JQi3)04-1wZTjE{Tm`K=c^}?P|s_zEwAN=h3Qp+XIqExqfO7n1qS6}@0RxZLO(63` zx>o7&XqckXaHevCA=!!}tqYdxz2AXeEmIo-B|wj@0e&1nZ9@_T2}Gf)f~E6a&4m+mE`mumD<>FTHwYWSpv&lVO^nc3Saewu7&nA zZ|pkE6P1U1xMz%#Ah!y&ym;x7ggX?~fA4)&#!ey!RuCH(>Zjr2BW}fqSoXJ_Mxlrx;JNAg~`>^h4^yAsJxZ`O7f4&#JyOQ7hG^T3(VRr zd%qcPWu41Pg=S!28N+C`)(bbSa?#)VWTV>oFZa2|jgKS0B~L{? zsy@!B0vdo;gZUtEGI1VY$}s?V?~7-ew#Dik!P1$AMhj3P`ilwFekoE%cK)vHyLlL- zt;clz`WXFw(JIc8#glpobgG_xtKc3D+@x2KhjTM#fb}IStv*hjuAS4d*b3>lBff)w zZnsVxNZBr_qMmDw#~9=32T=>IGbN2Mkp*AZ_Nmv6jZ>Ta9b@mswoS|&(NKVsjm$76 znM8+?UY5iMt#~1h1f_+3!*Aj-m-s75okC_a;#80fPnnpQWs8E174&wuv%A|}-_@X> z#BUSYLy4G0LPVJqON=nW*lslQCb3;iZ1hAHwU<_oH5B;+k+9bRCJb_U>XW$nT#zNi zn$qmp`?PX(<>5?WT$Afcawk14OKmeUw9|xEOkDlhHqE4)(o>B z_+J^0l>I;!IAz=L<1#@oH=k`U@BEvU7Or4VEi50}S}evk)c0vWTdKDwrU$)dEz0_2 zR+B1T{5*4yh-vBsVVRLWO^6OM5Z8q8-m(bcI+;8XW8kQu{ZY~eUEIK~)zBM$!6k|- z_E6-(nm*$da`kytPN%G_J~>>uZ{SrR&8-gR7pCCIDm8XKP6)BZ{nVfR-_QQ3`W5wF z^wk(_#@HyxiBpkImhkKK<@TZ4qnTO9w~LNFzjEMiDZFs^{wkQppkTu{UuoBKez(^vq}`}n=`5bi!|6I1mTJhx z^8UMDDH}Yx$T^Ch^LOf#>KyoW0!NG!@lho}55!krH$h$}N*KKjP`BhyNi5bn=u9?0oy{Uq4=QPo1i)mQP=?`>Ay5%Gb;FOCzX9v9ZW$mBT%E$mF=AWheKE_+vi#(SUVLxm)H2J3V=;BxSdwpn52q zj^JAIql%t3*C!~hrBZ&;=XrmR&jD^j%dP;1@N&I-dgHGsm2;WQw_X7B)XoA>ZkGH; zN-q>s%B`0@XRRPP*95{cy3vX(kmcRW~yeiZ8xo>KcX?N5qRCM4W7OJyg!fq$~S$sS^~7L1%H%sT3y8FbOZDOSTuA3+mQ(`fvOwsz=ey?k9c!lWsCcJPS_ujr6Lu zB+8WV@Gv!ubcbD2ia8C_b~GW3CJYjKm@#4oFjAkHKzK^TdXWLn2cQ+B;(-u7B_UZR zNG6eAu$``(PP<*lX02XxzPgfGtu3?$`Qj9j#B_JDJT*VnFE4hms?vjPik;QHa3ORX z+0Foacl_|e;qk@m0`iVzAGY(VLatcM^@BnoXdSpLPi7v83Hk2C@X$i3OeQU)c#cgb z6%n^`Jol>Zf`Lz8r53ses76*gTL}8Q+cRtd9_%Yi}>X_z23 zatsjyyot#`Byo z=Lo9q3rPThRG|)%iBhy#AJ9C`Jsf1Dky)7P^?;;4UFa~Vf-3GoEH>SBeBLHe41=47 zvnQsePRtH(nqh(#SQG!`NfHcYRntailt8j3@>Fn%ze6qBkKh5!pbb7uY~-899w)n1 zm_|@VXef#E_ha6c*ZLARLEQkJvr4E<8a~lTcmXpcw}S__jpZT&`5+N|v3sD7lG_=} zjLJGA{l=0E?~#tfy~3IUg&;3677n{%-W6m4H-ApOPh!7Vxm>R^4G{7`4i@U| zLb}juERf*=W+?6WF29pQ%)0Bx7H(Me-0k}}shextTE5qN!mawN6wx|zg9Eu%N)IX{m9vtMwW$Ezn9KYzRk!-IipPq5zUz`Tty63>ol(_ z2pl-=1Z^W1<&E3QFFU?@Zykgb2@7YBtlxb!bDyDqbNa;DBMY+>Coqh~)su&}PwU^K z)c5G8w-29Md2lq-E{xt1oY3bG5kEzgSJ;P(;Csi01v>4pATG}3#VWk*It{BQUmJh& zH9`mXX}-Si@fW<{J$3nd6M3oYkAH3Fiyt;%(6ub<13O<-{WE8h1tLH`FtRz$tB3J1 z@8Q13hKWNqST67`c@2k`mR`hjdHJ5DrPr&&CwES&pOydrHBz0#$4_>^s1|9DsYIYa zNxw+^kYaK$xUskxmwZN0%B>fbMposgky(-SBN@$t#2G=bleLqXOtwf&gJOX_O-`&SmBXy>=rCN#JIJspi3jmP6g>{v0LHab6jf zjN=DQw`AylgUHMw;5rSzTwJ9%!NSb!;ma5nvm`oGf2B$077jfIfx|Ma(^%976q?jHMWrDlRa1c#dFJF!-j$vB6lNH(v*;cnW+oCc#$E>~_eD&u_}NCXY0CwBQW>aFUjG2xZRiz3Pyq%j(^ z!Y&WPDCL!AN<<0-bOaOWE#yJEx_V~wMF$SNXmeqDt^@1-!UL}? zV~Ul}b;ifHuGpko9Bg$q?tKl3>ETqpSbOAVYFGli9@#t}QFqg4XN4(xNZ*vqRk<;% zYb2~9@yz}}ENQWt`C)ZANK9v$fJT*M6LlfkLbM1l3)(<;RtHl{c>#E8!LW1sHqFjm zbzq7@RZ7jqm9_P?0~PnJwNfRQ*Y#X}BCfYf9iLHHZ_erqWM;dIwZRmreyy&i-+FVe zHQbJiRb6fF{OrMrxr|SBj)MAjKU;6jEcT}heiHUc_LrVUC zGJfRjtK;@7@o}f~xK3Bdblg~p#-$-B2->bzx~5iDRxr`&6JTpp>N$S0GPQDR zsuWHgxv-1&*B*T7gvw{KQ{!Q2|AwYY5O3K_g%(%hv{c~LQ6MSIl3Xh`+f%zTYpka) z7g84a)_Pn}*Zs&3zjx>9Yt-5`JMVnwH9z!(s_uL>e#=`_cIO{>k+w1zpXb$IAoDbI z$ef_#dxKOj@ecvG!t5hL(i^B_Usk1^pTcTVKX%~Ip$&?>Kc-3>PyfMte#$NF951J8E$SHn@-QHU7M^nILBM8e;y`;cb=Dq?ANVfFLvBXLESe{R za#J0;;ndRNQgxzLUM_9g#;J$arge&UHI?|R_H4<&e% zpdm+sP|p4XoS;3t?tQKIEOj+#vU#l}l7OS~gT?mBj)H9K`}xjJ=xYPM6&XN))h zwebtbAKFTgIfo84O>=x4K=WnO#auOtZUovSeHbnX(cL{c;w6YCTp_!{1Qk$}HE9FO zyy&hhJn{%qp5*01F(~y*L9vjfMYM}=$e+C99bjg`dcxCJQ&q$CoLt8DWL#PtdsOFi z6pLQK_CGrI3o??JKodh%LLW=O0xH14{m*AZf zCMs4F+atLh(8$d~kIn;QpEsijb`-0tByYGQkCXP_%w_=4V`Mm!ZNsGsZ0fNKxT(XK zRykn7ct!-7D~@CrAaXqp8j$3riy4Osqe0px)I>GbbO>sfQfkx|A`!hDS4mSK?IeOH z3ag}uWr#~gN>Um*QJCqE(CXDH%XW!6ZtncVUnl2ixXBq~pRzZe$s0vQ^2IKSfaX~l zKkp4e?x&Ue-~}(-Ll&-HqM|@($#Riem$a83_jJwot7X`4(@wV0gf0aXj>-hM&Z~7& zUs909`*w-iAJp&yI!)PYtbMGKyzNkGxh)y$=}Nv8rR`Kqg_lZnWd&?+Hk_izNMHR` zb%?$?LyhUNcvr1V{A4m57@gP}Ja!Gk#7IoKNLU=o!Y;Z8PxvZ_>ktIMb62 ze-e6^wqGn~Cpun8ZaJ2+TP=gN0tSum)$-n`9YIxuy8#?AbphPKH?q391mc*Yc|mcX z@C!Be)$;ZBU(Ny?Fo= zE}-)CWj)HpVs(^Tj1f>1#0Xd(4xEJ=g}n^lN0=;l1o&em1|fuWX( zVnHyXn^@UHQ5M)_5mQ}$*xNiBFuAbaVrL*CRW$fST@_VM%=?70jU#n2<`eCHc{q?! zndrT8Sg{VQ{*eE{s%R(7SbG{WT)=WkA`}?x@|glO$q*I)&F&qx1ZXDPC0CC(bVPY9 z7sFw6afY$)L>o5hu#)CwsP|kUzDN1wk zV7YA0p+^}L5{Hq`E32b(g{owL07at|tAG>aG^9n4Ko~nnCzi`qClEXFb;t#oext%>-rXer93GOW}gG%#KpfL4oVy<;Oz(zk^W6pH#JcR2V0;l%ie<6*!Ov?Mzu z6H<7Sq%CeRf-4K}GGUscZAWl_DdW?45P?cMM9q;+6~vxbpw>P{B_e!3WVH3JNkLnZhoph={lWJ@qHKp1VLV(zS76E7iW zghvwwf4DiEZWYoL!a;>_BAfRDVh1pM=d%-y7_UVv=^-F0J+nd|N|o_7npqzn2tHJ( zCt<4z;tQ#gsr#Rx+tYQ(*4J^00+PwtHIt*$$#9;g8x(qhkA_R2KQ;DQY);sdadNFP&n!vi2MdREMLUxswBw5PpAz>qAiHX=`W=oK7 z@$#sC&!{v5SR{l?k>f4O`WS_>`{kvBnuxF>Vl7d%iY#F8qYfdZ5~u5O%<3FG3rixP zA&C4t02^y?~hwD;vZs(CNHm~kYd8U<_ z=w52S{qow2?tRDUj-PJ>9J}~9I-Y#2N-@DpcO-baG3{~nYV6|c zsoVSVu{XeVITozM%WGhXWU|F+%-okmXhZ=RAzoH{i~_<0GC7J5V^LO3$Y4i`z-XqY zpC*c&&{MA@(W@lQf_-lanM1;~@tiB!x`3pCupk+O0O9mWEv}AJsIH1gau2xl-$`Bl zW4Rq5yzSLi3jb+3?ANM@qDn1FqvGx-t=uKo7EZ2moYh}l46C^!`zf~@OZEB^KCkhW z@$v6xKRipqF%qEkK8yyhU*n=ne;d)BZ%&&TvckVj*VhYH#sz*|XKoRKr&;bbRs0;i z?8b#DpU$36+X)>%7Ss9c1&YO*XwK}1zv#E)lZy{?D-cgmV2LipZjd(n$GZUjB0e@$YmR$>v zzbMPBCw%a>X0?JzW_ZkT-JJ|t7K`|SB*N^Aj)ygwH2w|JctY46ab5$M|?qEJq3Ih;;e5YV}3a6W1dTbn8SBhF_I_y}Cj_7r!S8Dxnrx zVYfZGhY@wpMvvsCV16beN1&&P&s37&lgFt2*?2_9_uOr~WQ!3eHg5P77O*9!F@Th3 z*cpWC|Los?V*k!>P$Ng;w=mnA<$BPJaE)N}2m@s)!Y(CUyH4T6sM-h%UT8KNRUG7q zs+fH4WGi$mO}6ELmT^Q?s3J^oA$hTWifZSc9~8r8shAZeyTCtKszTS6UCetg$VC7VvO&&4;ewt& zor$@1vIAGX@qL3C$e0v;w7IwMy`P{9<6x`}C+Ih<-OiETSPEWErdY0SQs?P}0{xVt zPpD`A`PtuAzl@J@iZ9Zrm`KTu7Ef|w2#84I-f$~X{jp#qkk(i4Zl4?;ABX(PaHheg{rvRc=DRqbkc|X5>4V4V4oD|Rw$W}xEb2dhF_vfNhLi2~Bh!HM^=S|oUhO7L%cTpoY=>NB?MB0> z+RcWtsYUp1l9;sAK&PHa37?XAy_Nori^4iT-aB`0LroOU-EhNAH(e*S52-|Z4lID( zgv&9loT+o-aPr4TTn5j89TRS=5bnN%NWM!whR@Brn5d&0hKxyaz>sRpNJ)qoiI%X& zFwZbqk0e(T^^?{}X7xRB$4rw9A%+X0%`%^9t~Q&iTk_Iu&dhAh%sfgWRxTIiPHL9j zD~IcES`W)Ts3tLxF8;dcHFN!NvNb`$%Z5lRV((rv=tUDO>gSqXvIth#(at%-CuHwi zGoNy0@40^c8+VI(w|A6Z{*U*`VfK!kjLDCpQhbU?*b3Z4mmw*T2J{;mp-=PR3XtXy zr-n$1#4FBs8fCS;)=$xJrnC^vMvP3n79&p=i`1WzLa;oycyRTe%e`Z(SFPtge|_;p zSP!}AX#p;TbzjHFP(w*=2(&-;io7Zlsc&-{ZQQnKtTeOOCrO@jedR?D8 zv+t_t_`R*(OzWs=_Q9o`J_<)?P^ye~PQ0^!s7Sq>ZvW>d*VZOK7BxzKF`sK!;5$on z)n8?9{4jdz=GYZnVONl+$*^Z?lfbaJuM_+h*Tg?v*}=FVq7E1%>=wT@oT z4$6#sKlwxnx}tyQ+HGs=^L!|kp8K>LmPf8X`|KB!T;{`!cy0zafS5eD4f{yylj6nd zi%lgR6shG)!ecU93kx-HJyylkO5$`WE|9~FsT{3qF}gJaOB+5lV>^UQ@6ww=vi1o>?%3x-VIX zB4_C@x7E}?PH${X%gc|fo>^HrbHBW(hv%+J_QcEI7XhxrynzuWekUz;BCQ3?+Ak5` z6&jq<8xTN<5oO*)f!I(vFWNFxYqU?<@yPhth^-K6&pH_cCufSlLBaA8&J412wK+)qVqghmD z`8<+jI4i{unEYZ%%1xVC>zcSWNl0bsK=eQM#D4_%F%;?nLgp(nG0>MNBccshgKkK- z8tsx!#?;Bd*=+A1eKQv8od-UK-NVU=?fSXnzDOJv-~<+OCkqF7(rINA0O3r%{Q;wL zD6x%YcEGwqk7vr24yjTj8SAW+kg9NoO>J?N(l;tbfcaWtz$Is!SZrK|1;(SB%@W%1ufvPG8=8zCNoEL;Zr;zvv8>Tsj>t$r+HtWQ3YAdLD$EAfveK3|zpaD6aG zpdiEzoG8ht9Qm93t7}~QXg!mGX>zT}1#?G2E~1}hd{VW8U)ZHwyoJyOc`*PvmfQ(a zljoG6Cx_@Sg)Dpy=!=8`3RXVwo6Cz6sgj$mxp}jN_Dc`ML+1Kr0xs~x6r(cr$N=?W z_Nn&;*3O?{M?m~U&J>O;YV)M*TIp0sA`~N;{%aQN8TK;AWRJb$r}921f|yj9lpbOx zVdj{*BbAA6&4akt%!az#AppZPRt({&k4lZW9%V>WOq*UQ=QRqc!9!|(k@W7BNeV(G}mZKoV(_>Md&dp$^!hlR?IfbU}z}KJYwKLS8r2cKr zGRUDI?K=y=fBO1{l~3ge0Xku(rNaZ2sgl_(83|-4bYDuqOl)F8P58?6jN|5TQbJEn z3b!N+YStuS0IXu))+-7x7yZiHEC%yAh5rILBLYZ_ZljD-41hMiQ7Yx8vl^M4cy004 znqBdUlN6u821${JOvCQw;Owytch-j^4ATxuA&Ro*)G;q)vN5TEMh$CRsTqf)ImcL= zZTg0d_nS7i06H3^%M*V%uHoYaNeX!p-mo-mCZ0GHa%7SC$v^*jUAY!cst~RbW#obAzinNf}F2Za4E9xJK5f;FbZ&LSeOiGuG zMmVBQW@!AXh!=5GNT_FTLKBgQC|DanGN)~6NIXO_qG0i$S{2ce{EPtH74%6U=_>(F z0$^sft?ot%m-Agi+j~#*p0kU?Rr}ATI(Z7p;&{eZxqh*gvHWyb-#YvFD~{`1>l?=p zKJwq2ou8PKKxqY>E;G4?F)VQwe42JKEa&k^6Y}N$`QE~sQpc87^+x9vTPam7=HM!T zGXRI^YG{g2i^ zqy-Vx3DS>QY;CBzrMPXBm%^EBBXsVWxu@t^#mXCJ?r|GYb~f_UQKLKG(JQNk+_8VN z{KDO{_qb8RpDFIE7@e@(Z9Fh@kApoo6Zw?l=$1ovwp>v6l)Lp1SvccI4VS$Z)+$E( zj?uQW@d{sJwhgUJF?Z}o%S#1T**joZ?Uv*AzTI`BW!B|570QC(^}NL2+JGB-Og#@% z11&jyh=LMa1W|WA-K#f!1aV1 z#tBHiB6F`?!&`jO_2~GI*GGQc|DV@z{x|=VCob;c|Kthl=-kh0ht%U^En5GzBMl2( zMHHj~nhm-~LIjz3BE?}WLzD1ycfgGhb(>cjJ;BJ(^fCSfR2O=s+@}PC41^{b#!{ya zz%sMHtd~3lxh!cCqFD$vrFvGN`l;aB7tc+U)AOg8W$JNwU_73?<(oGL8~J9YK0R^u z(zVwft@?#JlXCi4UoiaP#KKF)`=CB*4dW%oV6os-XBtgt1SX&!f`lWLnVG5T?Vy{j zjAx0@76xIO8o&~hu#MdGLg{yqf)#I(RL6MIDC}EAh{i{b5tveoCyqYZw0}Kr<(=wm1WV;))65a*LWaYN-7oj^j&h3=IrIq6>5Z2p z5Q|nqsj(UQiiIBhtB8ybQ!!-*E8$lB_pg%t*Mma684VK)bj^ww0Ew;E6EqAGVI&QJ z(VRVXsELdtrC^8ZaQDK9euXhhRk8-ORhc#zcQqZA!;18zbjdi zSn?%xwot2)(syw2^zM!(wc5uld$7@P=8m7*Xr!!bj3Dcta9f>)&i=uHc1NjF)Kc2C z8pMNIF(}*rYjN1#s+2X?p;EM)n=fy7rzT$KW*0QanK>}ij~4f}50q~^#m*ep;EaamNrxR1@VnXW9^}LzZF6U9g{jBC9yb3=^kps@gRdL-txZkZg z5Jqfs>EuibKjtq|(>aHK4K(%hWo%j&WcuREW=bL(Z- zeC&r0-+BIwdRMo!^I?{j)a9k_O^-hM_;;Q?``BX~!yqs7E7}w4hw#nrXU@BR&t_wo zGu!DnDCnpnr_luxAuxoSa`&+W zV%@r&7$dp@84ue3Hut0J6HrV&u!QuQv+dJZ#efhtC7w9)@1DoMn;pCP8(UmQOiBn2 zIVip;x`CKg$#`ba%hV_R_IWTC|BQ~>S7ZeVfDxTOe}zZnPS9viVcTj~r*wXx@KT+YdfD zM}Gc6E;{b^D1)x#2qw#QCdbjzI8u*g-F@@3`&-RQ zr#Z8*IW_tB;~jW-CMUO6sRym58pk@@Q&Za=Qp7v+YqET8zB3(ny8Gtm_jM5x*Zixh z*TB*#tuQ^g^TAwsa|AMX4GlxFq1&0Hj$QrxFEsw?olUx6<0 zE~+H{JmYso6wbtT4yTC(3{W^x3=({GqKwi{S36uSQ$AA+R{%XGy?OV}C5mgJwWcJN zMyKWG$>uUa@e%Gfx&zcX93=@%z-mSbnk0X;lLX!VuRFy>BT6yT9zBH8$?OH+#`03A zy+|)`1S%H^5CU3b21`ND_Rd0TsL>+OupuHl#^~xAI|2QNgbY%PqGXv-Ws^h z7ou;B^%8bOiiuu`-%F4b52HZlLec#2G{U_>#)2@W>@J`a@@4d+ki*DId+*N=%j`0% zaECWfj;t)lnM={nD5Gx>jHp|kU+o%w~1 zs(0qMW=`CE<;>{=p12>o6AN+YpD)wZ%oO}0@}}#T$#Y|!S8Qch-;f0^2N^wXy0E8( z9~$2n=ec+yt-A#ym#wuc0~rc3UykfIohZyW)-73Exax$6D53O0ePDc(7aoA?AC288 zyyy1Y=b~0?rqxo9-fp_v8Rxc}l@pa(hbqOEnx2$jW?DNx`90&gYAN4+8;ht(HrYOw z)L54Im*@&bxa#5Be*O#%?F_lqd#8}%p6s21q!#R*0>Qy^Ni`yQ-TC6-Bb{6nwc=Pg zhf~&^V;$aBRyH5c6@2y7h4M$4!p^y;pZ=$~8T0(7`!IBZO!%Q&QWAOVRtOOtX z|AKos4BO}lr1`bvkKZ!(V)WLtV<(6u8wS~!*Kzh&ZOF2Tu80_p(5{kTtV^+`Fd9?qXRsyshNS& zp3utx3;q$;Q!RB^ z;cqFd5IIP^&Yj^xw6p@kjZFJOVh&gXajp^??~6r{%({FZ;MGM=i!X+owF?~<18vW3 zLywZti4;fkz(>2Qepn*S1y4aLY}{vt7T3BE%#2XQTQC5K)nTzI!XIu+%#3AmY4a2f zM=~i*o#XO0Lg%tK3y3tkl!qKs=8u?LEk@#S4N+k&<7t=El}vG5<#@E^k?bJJS(qQ~ z%*66x3%SPK(={pH8nJ9nw}^k^QzG?X1Z0jQ*}Ird#DMh$eBDeQ1edxAVg#?syw>kT zpGH5Fn2=Ex35!_zeFXxqN;!b2>P48TUNJDeJn&!Yw^C}bj;GkM!~vwIGBBP1Y=Ky1 z8muf%Tq+wBC%WWoKvD^suI=aGY6E$z=hV{zEk$=io3ufs8EMSg8SozppcKZU7Z45< zkp-=#1&)`Bba(=N+!toE=tKZ`aG%0}jwjI~yEc_=_?5VfV>jjbKL8pumD9Ua_DY#O z1Goq|5E;O!U@`IzIU;bZfFF(|k5i5Zji-X{%<+s!^4AMKK3fZ)ShZdIAq-l|pqbPn z1U-oBSad*lzDOw#s%Ih?e@Z`4Z%sgo5SFKW{AYM_#dDgr^-_IqIR_9@qnA{g|(8_YzMV^#Fuk{ z|8$Hbb(}jwf6@i-B6b9Zgn9+Yk~z_#nQjF9MUQ4Yt@g-pO9H>lL^9y;lC3f^tTA{o zC{WCp;Dw+8hUd{hJ4lR;O~E2XvUc}0MY&Vli<2+mN%#h$og>Xdrfe~+jQiN8JPw1Q4_synwa{UIaI7wZ&h!kOHu>5Ws_ zmp)>druE3Ck#V0;=gAlZ0|Q9{Tm=Q_M+jhayC@=yG`0oLQU?po1vxy6mU4qUf!*T$@Rw6Wav%+x>S3Oj#=i-Z3=OVdLt z#w32+^Xd@iH_e=UaO@mbjK~nw02)*z$?{q~vV?Uf8B8E7EHC6WUOou#1y!q50) ze2Z@%1S|=kW&6#NJ@9Sv^02&|k(X~GtOHSQDeWhPqWm=FMkRV7TAw&mq5n%ThV zt_H&ko@5mcN`cd)W`OIY^J(A7RlE6Gt-apnS*zu{RYe(N%{ zAWOEjmj2tnP4^6I=kF~8Xa?xc)R%YuS`|Oy*<0!KmhD|+v+Kg!B*io%)u9sd}(vH|yk!ySl%x@}HyXokG>qcyb55&6h;}ncYrASlz_V>U4 zicj!Jol1$mix?&ZSQ^Beaa zwXG!Q&a#i*_f*ZVfMcAQwm0v%Z@Q2hoVoh<={%X%RQLKp?eZ(?ty<WOZF@3|W7=$FQRgZ835$a+UP5zn>wn2A6M;|8tMA1&(lo?Ei_ zfi@kjOf+Wn5hwO&2_9HH7SiV2FWOr`C+Ip-8EK7uN|h#Ai0zyBUqy`(Wk*~YGFth{ zEl$QQRGAEYw!@PvV>!av!;*My_v=VLKX=}D<3+OI6tLb(6wd|2@7+p@8?0k@nR$5r6{Zp<(=4Ol8D@uK~eAb}`yRA=@lB&E9NYZydvr zZ}#+(Z*?o)`jKk;U|%NR8wslynbl1K$0#8U$`s?$c1ViUTq&*$kfx?vrDB>$F{U!r zZ?zm8{(jN)x*Bn5EhuWb54J5J&w%1w1?;>+2PiO-Lrb01J^1|iSHD3xj>JaW{IwJ` zMK1pzG$?~?^S?@nmW%PUw~wyFwT9$Wa;2Je+Q?-z7!>rkwyzBHQ57q)n5l=A)Y3tc zhzKAB+Q@$Fj;53!X0k01|rDVw@l`P;ie`U zWF?ty`MA`Ia#P)jbha*g(T%H9#jIS5F`5rXIK}69J(!WZh^4MnC6)IteBm$mp6aPD zeBldu{zaBO`!(#lbCOq3W^$IXCvgv%s4xC3vof@tdbLv$|8})g=9@aV^WI_{7yphN zo>K7xVH}5#7DDoHOJU6GZzku3o^VdRmN{>gc*1qed~+K979uZ6CUZOS)>!zUF=1mS zf4Zi)N`!QV&PbO|=w~D`MT&}J34jbqy6Qz=)sGo-C#KiV1XIK23cjbozNyunKdetp z?GK#@9)m{qV6U^Ea9aS|Qnt|ie9wwKtIN%x{Y$itWpVV<;Xrea%Uf$b&H0#c64EaZ?((o4)#`J zt8-hPs}mE_zR2xM@K(BM;daOA9%HhP$jczK9(}kd$@+We+W=QzU7RS&TYH|@ixaGO zo`TFc2OKtdTGy#29tS&r-^x8BA9iK;GwQ?YDKxfGozJme91aRytlC}}Lo72?_w=6l z*{9=onmfNYXWabs>;7B(h3nO!{+;$OJY6q**RP41C)e>0$bSb`^06MpMml}mTJbQ& zKPLVKeL>y%VEd8BA89{$-+en@d-r>;92JGgY!43|8lJoV{;NOx?stE7FgZ$BpOi+j z@Xdcx{fqiBG@6inkxl9~-YU3Kuy%bcYACqqDM%}lJL0t^x`ybOv=^!jqC%7%9>^>4 z*VA~WB>}#EK@ufJuB{HFTEt*MtVB^{l1RQF0?Yx+two}Qi+wc})#~9}n}bgC?z@|v zeslW1_cgD(u1Rp`o*Bozxem*lH9gqB{_??;rD`GA?9#;9M<&akXf^?iU@5tiepq}n z{`s7f-J&n~lkZ}f_xqxXL@SXx5!z1iS1ZnY4o<-X-k;ujk5g&X>tR?oO>it`bS%HQ zl|Mc|oy|6<=Z-1)c1&5bt=6oyvjfV3s^0<-(&K7ULlk4L7UPckW-JwIIgtqnX+O<* zQN6J;n&H;iO;jow!>1y{4J4Yx@Zuz{gI^O5FI{0YO(Z;`TY%hT3J}N|t73yP9I?t5 z5@EoXQ8P11CsRu&*VW_{R82 zmy|i(BBKhFO_m~8jW_F8n)P`puY|2-t&FFyc_Ba*;3iSf!s zKniNzkA4~D?+-u5vCLLv{k2tSlAf`yk@%RTj({=2=^38+qmSYm(c5LDyxYCa{3ffn zWNN>mL!uji?J)8ITtGpdc9TB-DdgbCh&aCnubQyrNe4oQW;*1G`M#%cMTv;qRa?Zv zOLv+RPAr)@2@xg2Q|4BTd0IE2z7n-u6dRxYWD3X#U|fULKh&Gn>K1q|inm}0=zgQzWi(Wg!S53>IW zqHcF3d0=lM5A45=eP-;7YE0!xewb7ef0VXny#7Z`EnZ(bU{_Y7k!fSrWI@uv(z+6` zC?3!xI%78UP*Rx&;ujWo{n}8nWkkwayBrd0D9ZdQ(L@p;m*V8h@={OkFdL0-^6pI^ z-A{Z>5;s^|#c1W{i%%m_SozJuuh{8Y;(f+>b5Jd8GFG0~YuK3_tpgxYs>8lxsbh;^Yb57h>@5bXuMhEjyda~)z`QeG`BAREOr_m7_1v{ywd zVxY)asZxl}tEBU;eAk+Ob_gVmC%L#(PDPDk9V|0(6Nx)y=O0i_W!WZn+&KOqP*%d- z3yqw*+F;@6No8(b>*=!!0O9WQbNr?!KkG(M14E@1V#4! zft-QhLuXW~t?(eq>*#~ni+n$vN1w9}TSnX9X&p}MZS64GSU?`|Nohrggis+uBuOcB zHUPenUri*CP$TFwxPtN6kl^=LE(S-bX57IwhMF-8ogePje=!I3NHuaQAv1j+C0i50t=7Sb-f3APXQ3?>WqpBHZiJ}7{%$M@Dg zo|3h@T)RBZd2*MtG z4yv{D%(0ytlWB4 ztY8h$4TmJ7B$;Y`q!RUZWDL+#S<3Xl1tdJ#ymzf7rc~%4Mw1AlF(HRoli78Ic#kA5 zhH@sh$45KE#l_j?^7?{$J9zeNJYP09+o}2)1e@+Y;aquz7ZJ7G9JTvzA7<Yl@p z&A$8Y+iFRrQdOzyU;qE}e~#btd&=qNH8$?9LdttE+;qsYjXU$m9Uz7&Dv72uO68%4 z9>4$o$06Ycml`j*@kUa^u?Jiu(|}lpvtdra6PT`q^>!<_u zgO*~})I^l?7;ou0J0DvhddKfrL*;^tM8^Uaoa1yZjU<_ zWNZuqK3Eb!0_gZ(qa@*{EY~19N%>|w14;|`H1#jD+kbw|z{_U6!8Kc3^YdFDlw`R? z;y79Mkq7|~O%+(0*g!jI{EufU8UB^X708FL%9#7w>zPc|^B%e^=j-9x?Cid|*&mNk=LyDBDh5MLPq`^7T&_VZ zA^SrXu@+)TMvxu&dY}GxoY@5|81ZX}ZZ5@E1@9?|4}Q0ofxvXNLsu~L2a76YS+V3K z#RoNV_wp6Hx_s7%SB+ywjauA1yIRT9@l+GHw3W;*W|Qy_!cq+r>h^c*YX{fr{>xTt zvBm#Gu6ov}8nQ1(IIFrTh}^O?if9SF;!)PV(BDhRlk2tdrm`2iC?<)9&P=jkWs@!gjLx4hJhPfH z+*EdE=vGs%sHDD5`dxI=H*>bo7&f(Dfc6|=_7Jm9QrTS!e-6@AVNC2_zLn8E9342e zvj2%!HcOoY{d%Gjp4>RRXG)#cmyWDx$_>@+^KU3RDQ!AZ#sNJ({#TTL+5!XxX}CCQ;o};$crF5Zk&>)3 zjjfY?vH(^D;q9kJ`%@csV+nmuaz><^%Mv408j9O75Pt-nMCMB973nM<{tLgVxvXYz z3q|{oU+0Aoe>pEdLK>DP;)DO{Lg%XuX)s2)zrqheaNa(9+OP-6 zjwDz~j$LHgcj&M)UYs;HM#_b#K<<@RpzXw?9vKuy^GPLX&2;qY*7n~RO(^I+QdIto zczV5%Q9t=kHIr|U{0sXAJ~L_r$BA6Ui47VF@>n8D5*-adOu|Z#f@7F89Gb7N&SfGY z640G?6Cl>RZ-ALo_^&NZQptjXB(n*)C5g=81=J~ z$dx(4sRbi7h?SJ$)C&1IdOaGv36~%WxSa~e78>u0JZ&yn3oi8lz3H8OW6DdyvyQ@Y1h$itHVm5H8Ftx-gS<<8k3PBJjR1Ek) zBk`#YKLkZagwTz+MdNA|=nK|O?T|-A6^bK_6|-hBPvF~!vP$xCG^#s8(iTg?B2N%k ziLs94el@85y`GO+DY!er5j$2-hA8xr%tKZMS~%5!MalmrWkvJ*l69Dx!ucdTHOrg{ zta*k~9ag$>w;oMF{|l#00(b>Q;0U}c5Kk#lO2JydB~b~rvIWa1rKgB; zC8##YZSwD9Sh`6V_b}zVaD4ncb>cLuU|BASSfOY+VZw7Kv2r>|&`af7cFY18hG!#^ ztnqqK;kLmd$FTzaY@!k`=po>ej^bJz1uFBiys3uUtKCq@^RU>4q1a@#;aY_C zTm{_mYADcELUTc-ySJFhhQb{m2Ro_`qS~S1%GTg?F8}GR(c->{p3U63zWTroX^g(t z#lp#Uc|KgvXQ!jVi1zvzfXK>Jv7F4o6=p5Z_6vc~!=YelsWPu8%=tnW_4eUVAUk{b z)XLdxPFMHLEy(;QIF@l8Z(-a{;eRX;yP1WBazp&o-o@ya(kHy;xx-N#uPHXZ6mD{~ zI{YelL46ukG1sIdhySJKdIM@x`l^HF91r?@i}O2nV7u^jzrg6);_R?a2u zE|oINXO}f}vbht*ndYEyxLE6d!#5IJ1(pucPg93cjamz;uh)K?`b)xRF!F1B;jd%b6h9omow+`Z0z((m zv5Xd`O+O}qh3R%w#V!`K0 zv+?lXl}D?&Mo=+RZNqqqP*+?{RNdtnC1nR1>-g)p2mvKb@N%v#q*+r8j53ddU z$O;AOBwI3F#yWzbjjzfPx4c@Qz(nLEAelnaNo5j_T8zfD=ypX78&}P$IX5#4V+&=^ z4uhSg@NHzW)@sz6+FHkmE2dRAvv+7ZndG(MFnfK6VhH$GL`+AmZ;*;ef)R<0#Z*BA zG?Qz@W=7M^q%ce{tj6-@%bf1VXj}M+gvoY1oG=HJezG2zSh(S?8|UY5yz7RA?TOQ; zf3R@Ff~;9sxN-Y2Udza!SUVIX_mabwCR zZ0LJh5mr*e8GY!v0RunL)#TBxl7D&CzLe)pMfGI)0S^+mzs32bCL5)x>{L7oK2Hr( z5mq5RJrobUI352v<3tC#IOX}2hyV_iY}e;c0Y?b`1keL}F6U@L{ex82R&Oywfd{w7 zw$cUVBgBHUNRk6+)nkY680X?^)|?i-V%Q4ersN@DirsJ*J;SD@unSS7=0(dx6>QV* zl!uB(I?J~&SDjL&(#qs!vtH3HE9DO*_Ll3ew{Y{~{EZ8qTPyE5OM&CLY9&(0H*;3J zx!G3Em#ZsxtjzD7Y)=(ybD;PpH|D2~Z$G#+)$8`#gIflJTNXS0Zf|NyDZ^w{DxPel z@~{V|RXx8d_cDY|{(a&s3>C=E!0rb2!* z@)NKZBz2oxHlV8HLf@xa-HC;d+Ai}A_lrFMn23KgEY$Fl3)E8f#n8cu_~;zPHexZx zE=+!iyDL^l`Ihx23fq#B%GpXX=lq{%n|IvNygixRdEb7F_|59^YgSx$<(lK4G@`PT zP8}2_P3R;7AFZQAkwP(t8_YZ($;9K4L_*fuh8)r6$Y+%X0namuxy0F>g;y1?Ilk(; z;{)SWn|S(9@OA$J9)RmWFuw&ZsIR~v@Q*?nh2zZk^ULJ9BP2vrkaDh$v9PHCfC;D;bZ*^#ts{ zMLipE>t(yra2r$gMjJ9VUGEX259?W{n0c6D?MgiHnR30F!E>ktbJ=EHm?AN*39n}z zxOwplr))Fty<169#LbgZb4h1$t5hWio*ioKH$#I7bj;4hEmU-1jAnrRjJ%;!JXX&I zv(coX!nm1A7pYLI$BkG@hspo1(alM>cVeoQ1~eEq8_k09EGo?z5rB|jkSLlhb6Py` zdrC3ok(J^xI+V z#?)FDD|dGX@orz-UfFy7;r-WMyZ`X}$8Xo)bmXd&C$Bp4k@4H7!^vn-H={sE^x%t| zx>1fhCJ4*Qp?5U(c#Z;x%yLaIWtb>bI&MB4PR0s5+rNx0Dr|1+Y_8m#b`Ksu=<#|GcaX%Nhn@MG6OXr_zD@kG^Hc?+=RhZ>O11M^W_UQQKQ2NRM4P8vZTlJ8FVKjfia+VL~anWyo-Vr^eG) zEyh#OQDE8_v4mrLFR_LoaQeaYo5T2s6)TIMZKSMLbCU}=g_-M3@-@Pam+~kMOBM?d z;)sLpKRZD6(}EohgG)#wVi@MHhXgdbd5q9RB%9O>H913Zdvs00Y@q%UHdY3`IRr~X zIKv=U(P@DmdGl^47qfpm9^9uS(@sF^BbxA~#xzh(&?zWsBZ~7ig_|;%$jmNF=!1wi zNJxyfKxq3P;*qXytMgxkzBIST>=QLoC^<38Hqmn#(y%?CVnO8)u93eh$tNg$F};{x z#EU`HpVA@V8fB%9J%;}@#mH4_9$+gaX9?vnj`9#p&x~nw%W4vM3glj5yO&a(u3d)D znKIOnRKT2`PDzPUSIOxcb8$Hv*?Xx)5 zsM9>cFA1Sj&4;+lC$|616b@ya%qh$}JOj4<#1($+@0X{i%c*2{(fIImiJL_2@x^$e zJdG#F3+)f3uMh1HrpxK~T;|ArYIbv0|E*|0oUQhtaSJ@g;;hfv^dFEnzeKL*giK&E z5X8!r_m)T$Vj(+onP?uYmbsQqq)U?K>5l~=oRP=QhNHmwZq|UEMUBAf;Kqz%uTyVl z7P3Wiawgqu&Mf1Q2n@pdaILX*a5HNomh<(=!C-zw`GX|j_(HffQ>)n(q zb`}-~O&!G*DIgw zwx@>Gyq9M*W8mqDWM{pxvRJOPy#g(h&|46&WYP?+V%eS>73NB2!3qYZ^3Gx2(JmpE--jL}2=)J)%@amBSlLUbwB z8NyKK{~=99t)!YO)y~1GeyiRpFmEy8MWXpkuGU@YR#RyxM`G!6jG+T+B@{d*jDgA- zAbJl4q67nREQCqeO^JZdcW_}}=qF$0|r!+H>O8s;JpZn(hfbO|5xAucr%xbO}HjN0S5#SEtxEMoreCP z0_27|>VlycUz1EQDE`nvZD2XzD3N!S9NDDxn{PLQZq>M}*)AU}mUZnfC~$k*@aXDn zVRrl9xapW(ea%^ai{7~T`bodh z{Fn3n#v=;{8~s1A(ns8Z-yp9M^m3`u|A!-euvtHN`di8q%6pKiIew!h+4q#W75_L; zUk_#jW^Tl4dk9T;TN4%wWK*jh^hO#4SBmoXJ4|v!_3gij8^Qa6wi~YhWyE|0p6%ol zCjm=*|7;f*==DGG*S~i9*-RJL>NOPBz)Zk3w%-d)cjUyMMOJ)W6Y==xI=TDPm4une zWpl;h{f{$;>csRqcj@?e<8kFN)r@5)jbg4u&F12Ku2V_hb=wLAkhniIf;Hs z&NR3#msv0sB0Y#WU@@1?=M*B^*-Bw4ecSThjpf_Z%lQfi7DtNsZGTPq&&Y?0)L0K+ zgxoXbb0&U31w0vWe3}{^Yd7|ck~V$S)YMhey`vpcsRGW{gRg#YYwN*%%_@}mgj3nzL+QF{G-@;w_#Y4Zb<^8L#A_rI-tlJVRSKTK2RbFpO^$&BHik1X(K zozc!+_fz=r41g^}SKt(BPl9M7la)`1o>Ib?2S!`SKkM#W3dMHg1uID>Q)_xDO%1#$ zneu8=c@n}hHicsBrM|NG;9w8Mqjf!rfjGN7JH4dfvBENMdJNJ9x5+&Y5Oy{I*6b+ zAf6_PM@1^h*^Cn$T~EGQu_3$Gm-BP)Q*+Sr>QJGpLO~bP7Tsof$ zMRJ?X#Z!RmURekR3ZaOWDRvfWO~7Pfs4Bcb!lvkPCWgNe&Xuhjg>SOZs4Uvm^#`t^ zKQcy4ICaQgDMm3&-}ako$iD znTg*6p~)?z!O0i!)jMIG5CjF22Xe~iEZGTIi-yPTAgaj?l&&jJ?vdx;GqEf^(GJB3 zWfeV^TP@qO#IvQ5@5!;{wzgYCF_(A<)|2nW`^|2$oc7oWyVYMezV~z(jmix2bNq;- zws&Qq@*db@^>}BkYD8*#J6N2$KD98IHX*?1Y*b@Lb+v;dK<|zgpUBVUU}+;m$$KHJ z4q7IylJe#f@4cp1MuLUxlazjf zugpD?PBSCN&8D4Bk@K8tr=2zq4!d29S+0kn_N+wIFoNOqElC@)#p4k-r$N=PS&jbo z(}4h_ShiV-tH4fQ<&op1Ez}cQppZ)>@C2sjAkwhCSdQ)EmD>G*a-~!a#jAzdZF1_Z zysuAwN%=eE=^Y3O-_MFlJXjbzkhzIGb{t(}2OD>iF2VgL^u?mwa2FRGcT_qAVGkd> zb8#1cr(M&5(3+wgSYFy22&|2$jY#rISgj>fytS+ASlnG=BkBCu3+1w%Vv|s z`t;JFhxQ^zMK2ojGgxQ^vy8ne+U8|-wn4I}lG(ZHXLPkxC`KUIytGa^yS?3BS|T64 zGaCIv(J`a%EILbi;t8J0_@napsI$9Kd+C>#oZ>s7a4af`6G}qg{lvM1d|Tjeh}TGd zm1I{*6bp~V$QuJ9L`y-h^vyg@gYhXTCMeQORcN5$-N}*R&KTwsqmo<6sJuvDpnN=? z$RF$!ZuY=TC1ZB@EQ(V3n&kv^_j)$CeCGLQmV+6+wEdAx#q%ne-%lMpn8GFum}`4X zm{>vyS)2Ku0+)gE;|`yyUObwHr{|}GorKbvGh)Wnfyv1OQ)Vna*LgN+8vM|)6nX<; zh9Ec0XZQ=QFhOL;D za@0hiy?Jc2rQp(Z&Jhfc1J#gvF5r)&%HsG~t?`jRahX~F?r2`Q5!5I@7|{f1d}|;d z%T-D8EX?NfvjvJARRKgv+g#GwH}NXMJ}??1x*YY2kkb!ed~K(jTygP&agtCry@O^P z_YNBNVw-+BW|}S-)5ay8|5awRv5;Jn)iEs|+{4w|3k}^$*cd*IwZjy!Rjjamquy$v zV`I|K%m~^5cdhL5CKHUSW6oc)6>`yR;CMVnK_LoLm{7R~ve9fQqD68u+3XA;f32K( z0bV4K%i#c0BSw2(#UVHl-DO9_*09`ZOLxpF%YdD4h_+V1n486o}Iup<-=@y&$+d=b1yl!)@|e9 z&!_vkSvXp%MdNO1bM<_^l^`?N2?pp0OWpZXj^UQ;vz0tW3KKZRqv(dy1%5*q*{?Qo zcC~%=ZTlYDNqAD-pnv4Gb9)w_RR(XJt#IwZtd}d+YjaV3ZmKtH>IoQlNfO=iGQpg) z>g6L-4K<6LLl}=LM|#m}s!t++D0Ne2wzAaEK6--Im$nmG_iM`cee7A<=VHS*J+`T- zKfoj|$^k(_1N%fs7NCO1Yi?wsE zDl`HHGsGjLd)Nu(dI%vbCt9hOYl&i{7FPO-nLDXEhT+83@muBMA^anKh5W?S>rPX< z@nBH6kySO3Hq>Ub*4DM#h_Auyg^?6<|gI9VJ_Zo&XBPMDtUH_pjW2(D+uaX6Fk894I7~N#FX-=-l=n zc`L7dXy4XD`+ukPK|o=NPJ)=o@DAnB{K?T?5INy|rs+14z{B$Sn$f(r?vLs1SH9|? z^aYVE+t|XdfHQ8dAJYRd-yFM~7z}O30w+s%5VP1vM92qv2z^9cHyVZ{sv)1p5ngVh z+`?VJDO6QsIR$&-ctN?adiNSizMIXbT_$cb88JegPB>?nF$02$eAZ3o3u||;eiK!& zP%kGCwbMHc=6MS!kZYY9zdbpAyD)vQLyW>Ncoz?GPBXOL{pp!f4BR~I(j^bv|M{iJ zrCDL$+Rl%x-qR#1SDw}>D$Zex5QSM`cfAQ-E)cTq3lDM3?&u9^kEWq_i$Rc zBpiEbHl+U7pml%vaqGuWr)Xn*QeOrW{lvr{PWn3P}jpNH4uAc|f zg{+ZQMZ>~{UdLv_ErRQ{CCwvqCKj1LI{bmKJAvHB>XY59vC|gfe0bS3&AyUY zFGK}W@HZ_#AOLpO^3NFd)Yb-49cV0r*mVN!ay}?U7y#bE%uQgFOctcOR=1QH|o{+8@fydyO0f>}H0A}QzBRO*4iD#$nX&rd#a4YrMKtR0$kTYE>yNzMcTGNzT%iuzKoZFo zbX%>BmkHFq6k_r;S)trMI&%E!iC%4Vx{_?x^`g0y(Q~Dcr!K+4Q*_)tMI}334(F?r zk@~dTGhcQvJDQm)^wWC=*CzLEodQ+Wo(UIf#X`D}UaP0-Td7QHzF-w9q*lbEEj_Kz z0!)}RA5-^64=zL_X$;DVR*mDc2XXfZf*XliaMDtXSprtNAb zlAv?T(R_XCJM`BvpRdHpo?)X0nT)wcNs&*_Nz#H`E-F@fQEr%sLD4Q3+AU%)5p;O{mfDxh{O!*ZSxN!H$`huhO7G+>HHxAApenF?;zQKj6Br8RTCe=#a2k9@ zfb13DE)KkeYnI#<$=|zG^hhy9L`#-w3%B&x{HdZ75CaWzXPl(n zW4)DI%uKmH57RHqK+4N`8En5&SIbgbw5;l=9OSvO^s0+5@0BJ0<&V^86g16vygp6L@I2T`7?VeIP99Y% z!?fCX*vB9H{yf}n-Q3+cys&0&KhoSwy96?xGTR;0r{ZVK*{Sv6p3$GHrCM)kE!aEM zocv_&U@KK^_eQHnui87DuW;}-vQYBkKm9|put_|k3pQXtly48C>i}BvG5qW|;Y5*{A|A;H zQ4A%_iaSZ2JjWE{DqJ!==#8p>pV8s2rAOv{t*VR{M0d`o>!A_Gfzw%@WnvQ3KX)m3$~d`Ml;Obv4{gZl|n#4jR9Ot zT6#L6>gQ{&hCZVN-$ejOuN{jWtq!U@YtpB&y^&l01Xpnu%X^w-MldL8#;t@E zFZVbyhR64?zq_FP(X(ULC#~4C@hHWVf6wdo2McW`r1mHB{u_|=Sf|5`5!?P%c~y== zA@@z$VE12sK0y3oj5SEexC#pi{jOPo%foA5bfI9%)s+ixsdSItafoGf%D~IrCl$SlAEbwq1sx+DN(2l zEBo>)tIqgN>Hp`=o! z#nOwaizVBtq^`G1iBz?8vc!}gMsJEF3bp3e4F>?~*PL!Mkv9`*XW33OTg5Zl{AQHQ z9x@SJud&far!CC;dWXzgkE2Z_Ie<)Nf?s1&`Q^~)wxx8s)Zz-f%a*@US*m~lCZWsFt#&4+rk#eBjhXe* zP1SnRBya{q$4D|J%88C!s#o6Xxl6Z=LLSFyl`dP}lPr-XP51&-m6f5kH2Sn|B@2`3 z6d*7&MN$}rveR+YgP?A@waJV-?sGqQ`VW<-z`1V`?}8hNSXGBdgGY9e0H@k^&zF>wEw?H`nGEk9`*Ve7QNW7wLdieAo|Ez5h}oVCL6svAHVPh0#N z_E5m;nI=CtSEd@LY{~lSE#=d4ox!L7+tYtQebo0c(i4(hBPy|{_F#zs?k(kJ{)OxI z1ZFtCZh!HIuKVwtHRqmd?%JGG_Me;eDQ$x#1*(w3N&=*}8j=mTQ2aSK5b?n^dTmZ^MbSNDeRJ{kPb8;kU z55YkF7D&b?i1qq;Nw^p4^9L<;q$=I9<;%b%OsJ)|B^A|i$;WjtQHl| zSBqe5@g*kS2cNwKGhdQ*7%$4xku?lv$VGH3CS0fvga{7B85QE~MBO3)pgH0Fci?t0{T1>j{xq}je<$aE-9vfH$YAEB{1h;(M15lx#WnuL^xdV z$wQ$FxHR8`s72uBz-wbk>Qmw8Fg{qJl> zsz6=Qj32+`wcP&j|Mo_tPr~;^$2_lGO*V`Nm(3hLl7mrgcphbI@#OLi^l(>v9DkBSVFcD- zQ9z9N1zUY8w8d8Qip`Om{;~Sw9lY_!-IIK-iqlAq2pcu_DV}tQQ-x;;9*uXvBaC+! z!nYtGZ&D@{j|ElJ23^LY=&*e#^I(6WNP>EQBGFtEH#v4QilFcW=1~&YAw)_w8 z4O8#$_4`zH-|K_HbrtGEB95W&lUvf;oLvhCe`>tXPk~?x{>(nEW#7-p83o_4k5Rqv z4MDuim&+)rKJrYjL`_)zppBL|)sBD{MNSmFvF0x^*voXdGfz)+mX8te))JTS*$^r9e2uzT_X>b zc_1E7m1+(%G^b7+@NbBr#?eeif-|^+w^6F5h;a1*)sjQ)sH3q!y|fnGDDw^Lk+M4* zi?AIluY7UYps$71>tBWwmeMqDI0H+vi=%XIW8WGRC*^SF?s!%+7Q>-BxZ%VGPG1Z$ zZE+&J}me4|uG$CTfW@0wsm_ah@Ace1WTn@uX3LBJA=e}<6pge{ zu;W%rY5s0yMv>hh)g7Pzm_N0Szied!u))~!$L!|>nOfSTv>&Q3O2y;$dO(c#Fupvo z1IO2J5!Q0?e)t&wr8^Irw})FfJn1)dmPW@$s~P9j;R6qB5<1-eP+4zxl1XUJO~WX@ z3l^k)vzetDUOS%`kbm#`emhf{F0Cm`$A`nVa#Ary8~5(n_s~=E6d4;GBG78F6n|}F zvBAGpXchS9dW1*dvvBlWkl7qS8}YK1bRXUagyL|vveZUZ7ZtN51`Q8pXWtrUEQ*6x zQh@!Kzu5G|;3%-sstqvY*+VFGM(CUJ@by#CQF(~x8lWDCF5i~)p-hpO7`rN23r+@l=s^QMG&Ge`?GugcQ#IpvYjNNj(O~X~1Wjpzr+{vrEcM$7_HiE~^Zg}Ug+zcvP-1%0liO5-5h?1@-|-P|jEzk> zEe(}mEM8r0ATHvzbYZtew-wKKU7W^T)W~H3ky|MNZh81FtN|Cddud~rmrElA&e!%d zJJq7=WGaD^%FU*2yo+MVZA4Qd2kt6ahdU>dv#i@^y4^Wc0HUsOZKidyRw{}^BD&s=ub9!y?VQ&#HxBu%bAvCZkn;*)cbMU?KIQwOZBaY z*U0>vMzp!`j@Og*9Gs-H=;z+i+DKwk)zpmhM*Vt1!2rqQ-AuFt#V%GY^~fCoU~&7A z8@`_L*WBAaA3SJaP>8&d6~wcHYJ-=bdYk@ZR^e?#$P}*^fmG!?;aq#^+N7ib1e|@h zE@6{u&Z%Yd$E^=v_x|VK^Mmrs-jtf}JvIHDxEpE}N&UcE9V!%Nj_+?};vuLq+xbQz za3pN>`Uf(pVf3Y`=ln$L$epd!4KGGEtWI!iegZBE)#^y{bL^f?cA4J}GM z&36}Hb^KrNupqrP?A;%h%QW<^I}YnZ=W=?Uyaj`q)AI zoG?lpOe7A8b0jMG<4{2a`2pOM-NJ6`q$fn_nMaE}Wu zVc%m!jibP=kw5a7heeu5Hj~^^NPhe+E)7d!_h`j(hiOIs1{0)`y$Deduws!2as8R= zWJE(xECuV>jbH{%FWWB=fV^TYkt7b`|FC>dHn$%ilXv1#5@^!ef%99>-D))A@vR3p z`@O*rKDznfmWSK@!OcOhzXmq~+*d|Ihvf`kI~j+R*Hq*agwLv`sSlF2oUltNv>T8e z@iwGrDr9F`m(P~9^I6lnkrwe+J3#&R;6|h!F`*r%hAtD>Vq`Ty)&^N)NPs}#la)aw zTwAG6*Aw$a0TwD@))eLwH9Wct!#4K`909^r@?*fU;q4UbY*5d$D1jw3Ro!;&5?{SF@@FHcc3I>UQ# zOiqcj5Y1fx;UsR1ny>+Wc7Mn=&n-ZJ9f^Eaic|g7J;{KhyaAo<*6n`}BL3(cQ{sIe z1~w9WTP5s7-Vsh-;UB_bd4(;AVJ0+~{_prd!w;q}Gww!{q11Xw)xyt5dwAoXm}2}_ zirZgiw|($}6YUk%jeF5APT9eD=+>YNBpKVEQO+SNT{OlCv?fuEhEn5$oJ0nC8=b~R z$3nBBEApLuu}e@S*!MJRWbhvbL8Iu!+$a()I_YX*GS&C8=lArc4WkfBL_;Kx9GP!! zG;^8b9XycwV7|NDJvN6=TfhDK<12|qwmMT%aGt!;w?qQdidaV=< zK*Jhy>>Cz(M93H8Katll`FJvUXapIj5?`I@_TV`~BN~}p%6>@Ie`c9hWoj4IbR=`Vhu-P`3NH)e4``?e3(;g%`6aRIwRPpI(S)ui zqRN~etsT!PN%EpYdPOJ4i!n*RP2|co=I4q-+3%qVCMxBYlK6;FB5`SE54EF_~|`KkQCNB*^EiUczdNW-RwpxMhf^j zPHX;c)A8UM$b;_~RTFE~$!yu8G#UA2W~9Fke~>3b~CE2h&g%2r!9 ztvY5TjSt-XiXM;C5{ALc|7hu{UcQveoakk<3+ug;MTCaNZ&{Y)HRX@LX{rqK-A@T1 zE#r)2+{=8ui+%Z#`6<-7{~w}0l-F*5)T_drcrCBrOvJ92nT(gGE-fmLSG`Lc;X6fC zZp&tGl%+TNQ(yGyA24Y5E6?${WqW82hrn^40fqm9iI-!8%e*0dA7A6RpZYl{8r>ek zQo4Dc@Wl{+q^dE82+sH-nw8{fsO?!F@Oot4d-G6b2Ey~Z2ZXwV&Mn7mURt-iYVdy3 zwk*m&=ur{`O!M0E(L>pCDRbcJ^%Ci+_UZ0ji~T!h&e%~;FKmCaytpwamj@e*yTAkuQo5zT3=am)z<78(1@dFePu%WS&7u$SY zCRQxZ_DXrZd+2DnoX;1iT9MC{%U2&fU0LLZ*5%jAvBp{hgnL1$?}?P!QFm^wSZc-6 zvuip9T==n)LgE>}X77A-#-GMAa@W@(K7nWY7ssPmrfZqAeL3RCg=BJ<8D4q@qkAOT zed#O08TUlUURlVbN`a7;H>d=w&jf>u*nq)B&w+H_d}dJMtvH1%UiCB{9RdxKIHhDHV5I321OI^0K%Lgmfj@O}(Ovsr8=)X?+Q&~+j8)%i5`sJcmF z@z_uFG5m2lnv)Ca0&JX=j2-nyR2Hk_`AcHYL2JmfQ@Vd``KE_E`|e*pt!(b=?CU6x zAKU)o^76wy?a(<_-!w(8k~li>uAcw%=Em;ALW!$t23hPzYUT(MZl zQUNLqYixwcux^!_fiz}K2!2EeNx3)7Ti<2gdh-O-kiK_de1F8sl(XbbvOX@I=MJ~V z#Z&!trQX;)^sJk&ikVlf)CUykFwMqXI_u`F_Ve}z3UdXoZ8ggATB(#)IwAe=zC%;9 zvr2ce4Bf;^GhirIZ5 z3DLa%Oge^2C|7IoT%$CH-(YDDWX_(+UL${9U{8I@G+Kt2^~x#l{=jhd6}2Q5y_STR z(Odl2%bV9I&x7Ek)ty{vR&TGR3GD3NSHT$0(?UNq*6?MCNks3Jx)*4~GUL|Q1L!0| zF{=FH_N%CgZYnS1^)t<_snBhq;C|d3@^V|SwYGn)6%3VDmB$_P(w5urU{!-$=bdex z+ES&mRBvpFtJ6OxDz-45V#4K5jmGxCb1`|^BXlxP`P3hOWd8k3;05S= zvlCZK-6ni(rX<0O!`;U!C6%9vrU;mTpnqd|``{&h$%%(mJ>Sakf$Il2@uK2d07)lEpy5dFG(UZNK5G zG4jnoF6*!vPQnHihQfG!$Yw#eecAI*fmdL=0F|NWg@QUPvx1DAUA~Q->B=`g{g{$) ziu&p@I0%{($OmmA&Ela-h>74U*66>cqE+!BF~tR55k5skJp9)b^o<*EA)k`4B`^6x zni3CMJbt&@$}-Cqvn^`A!*OM%3W;bgrsk7W4^JoaYRQO43c50iginPpgo6Y8plaRN z8-o>Se5i0JUr0=rqDikbwK7$rntU)@?$o&j38&mGI|-ZW<8|ouh5_-jJ$(V0dtpMO z=F)56OnhwOeZ+{rr!YH>Ji5Y$!fdN~*gDU6VhXp~8hX=@cmkTCueFiPKjMk2X~7$T zk^K=*oK2t|y!PeVS9|PJ*@-D2XtDMOu%z!SfOr|NVgA~K@xODMh^W9dbj2%n47UO& zpX3xx)3x~wd{xXhlX-BVlOK*L2bHA8bdQqqE>=NbkdL# zrKvgtrB~XqEjwArCX7Z6O0nrku-^}imICU^s;ZAx_4xcSZgzTRB45MicM@=;ClgLQ zY1Q(U)$5q?;e1?QUDDOH6*aK51j+P~*%N0@%+2vKn}Gx9;H3ZZHE0Ue=%oJ&PKxE< zRPi7Kq)J&NrNehfU1*9H)8&;EN)iUI)K0btwyH3i#lw;SL)}ZF-LdffYR1r_@eDze zkosPeLa*Ua)^R-BNtW{|vtF^Htwt&=*1u35<(?u(S?I66TM6WU-q z5rxn!n=ohEMr_pABb)1L=+MESa`q4$rR;INXdeL!0gQJ zT;%MDxyhZ2oIEI~dh$X-(Zue8`0Hg&>@;xJ2W?l|8wgMG({6>ASelmr%%pH)K#mJb zcfc-~QQoL1jO)&w zI(6*?ght*jm6$*5})$ zNf@MyaL@+g2LjD`%`_x~GL`627j!a%S1sZY^#lHTrRKT)UXR)=xq5ZOb~Lg~2aU>{ znpmA)wzS?n1V%Zf*0^z6={KE3P%Bm&k0f%WLOA7c%!s5^s;CoF@z#4X#}aS*1bWWr zkdq@}Wl~)K8vQ61a{ywWtCZ{AO;@H>Fe>XUBo0mClN=C{Q-#fm2SlHaw3V+tie}4H z>STLm7`Cf1(7B<}&{jy+p5JJ!w{l(}R;;derzZ7Cr+W5GtwU`X=O&VYbNCcev3RpW z_fxZ1Q`Rs8uj-U?p`a9Jno~A6sm0we_?cRjQ@C7MG`* zFzQaP3}y{wB2W1ihDxd!ckDz)6;^;w0h2sP) z$rga0f>}5kB0GsP^>0iVjvyEfH#gZFER+^&)7FX#8KLl#L_MiYORL-<=VgQcLRRsu#~RGA4H!9^Sxs=8XQ7|qsu zk~#w@k!obzdD}2yeP=F%XVU_2NrctFhh?EXF<}J5RuUz1*Y*&3AlBJ4Y!A7qJD^Z{ zgv|Xsq}4?m;_kD2#UO74HnzG20)SMQ54o0Gpf5uTujy`E2_}tHW^3Wfk^Hm0>u%_` z_t*u?PUWJO5*i)I7K7^vcx)oagNkq0|C920<(1?IivFv%$7rA{&&EHkozuAxJax-P zyI^`zD;X}i#ZI!AgzGXIE9DE+_)KN1w;oVhn-9H6IXpa>?YQ||g9;qsqi5@rp{cG{ zrkS1-q*-Vi?ABfX*Z*SMyk+~Hlqa&4dwA^z_HOkGPBiJaO~Nf2jxlbVP9Pv{vyZmP z*_ZZs+w65GAy=Vo9NH$Kgq99wOTi8JOL>LznD{)Ju8NW5KYaP!_OYZ= z{YI2n1{T9dlv^JQA%QC8d_J4Zr?cs}JCkkYo7UCwYHqq)ZcdM82U)USO@ly2Bx2>0 z^|j9}s*Oe|OOg0osk{HwBM%(kGwiP0$M4*%7iZf*?!rcXCX>sw1~#|JZ@f9>tYFcV zA+xJ5ArP4UH0#^1%qYwwV?|m9I~(nUp~voJVt!h}fMtd1JBFcr2(NhT}s?(LI$T z>7mA-Z2}lYKt@#cU)rF}9V-XZs%R!+rAhX; zRE?^&HiC5a{(aPM2rgl3=~Wz5lVm+agOm8GFo2e*Fc-I!d;j?@MihsQTVH?@O$#j% zOX3(>XfhBrb&jEht5NU`OJUH(i8J_zAM_P8JY2ZBNV^D!9)u4!^3Q(pxDaVwxevu6 z{eApyAuoPSY!yVD=riqlUI`Pb?gy2-k1fr8^gG|#eq{L2L&INE&YwE9eO@_V`QjJ1 zzazWh=3`LmaL<}#$E{G!_{NFb@EXv^TFgDP3lj?JOAx0LiimHsiFUFuk7nnm|A;*R z#R#rmar6?&O8fh$L__Fc?G|e!H51@}Yo~DhXm>$*yP8eKU{B6YlI&m`pB~;>s&o!R zV3VelxzbtB8aOoPV$tDX?QpPn)eZZaVP5w)2&kFy`kp+MRNPR)Nli^Z8Yhc8x3-?Y zGn$S=qa0T~svb!W3+d^p0vxcADtj|tG-z!9pjN6(R*xKZZKYACI7_{XqMvBgj%5pP z$xk_v+QP_xRhmIJ8PuwKYjKQ%x!z1Vv;Em(!5Iv5i9RSA1`4W0l2fFH5|!r!Gx+U5 zA3abi>rKH3ci7i{7I1{`qzGvvAN23HPCmNv7^yJ&ee)^cd zq&y1A_MH-3Apwb^QI9@~Tqs5tNCOG^;X zU;LM@gXOz}-*dU%<3terc%u}cm1`Z%`$6npz-O!zAv!?dh+joejfhrX;X`hr6Z*qi z6|~>w*>k~~*vt|DUy$@>Q~3_=cPD5pgv*V_o`&0+TMVYusFP}zk|qNT6OT}@C?GK- z>OhMRDqk28&RoXV^!ds94PJWss_Du~H#>bqIZ)rzXjQ^-bt zai_P2wPFbU0A~vtLzIG!Q5dbEl~aTVDhI+flkdZXE^}{yz-pv5$6qnG#C$^+g#&zUd&GGrmwq^7}Y4zuDmTQ+~X1 zVrK20wNmAU^UF{T)j!>z)(%3pv2f!;bKjuUKiMx~wFbgQC{iHKfz`{<2qwWpA+D5E zIxy9zl7XpbflHC%U#_j)^GN^skc?tVX(i!+v_Y4SDFC^dzcYx=`!9kS{7;I!)t&PK<7L#L$>vRB8-rv@vx`W3CY$!+x8AU_l z0|-LMlY>sQsA)FS5;Lw%)yM(`G>S#)@s_j*S>ddXxvtJ?H*h-RC$G-WjzVpFXeHZi z*O)TWjizOeoK|=^RNL;rqMDBvpNbb#>5|fzEzB32D-lNvq$^6<)nktT6Hu<_LT)Ut zNBm!o#HnW($;aJbu^4pYg^12Cx2ojb&Q_CV$AFD4VJ&)-n*2n1A!*fHX{%#7?S`3H zblU1-4-P{mVnbe_{&3&%h(*ibs-y7JceFuY=mJIIXVUb$ z6XrK7B})&_5>lpx$;(HA(`ChG3u^fW&bO1<(;f4==Co~jXT4}TmwHdiN@_FvOubPG zXX+6x6?5JQaahK}D%UkTue>x_(N{xL-b=!%c>KKbhPcvM{+(Mscj&s#=o?FEFN*?% zVPM|<3#HWl<=F6=L`>L@6(hb_v!|P`MMWtkX}&ai+oDjyLwzD+=#q@t#bQq+NBEw- zL7m*PI$*WI$NBq>zx%ttQ|`z;`JvoLpRE1fmw)x^vajUbe+iDPk25o-u=bB*l}%g< zRw8i2izBKx2@cI*Wdg?$amRJ8SB2t%=`D@-1+S`R0?Duyjf>#*859D_15JD}HoSiK za7($Hl+pnF+^!WY9+@27Ry0k5l+q~2W~=cS3#3uxadpV5qZtDCuislLHR^#EDv8ax zl`-#?pBoh0`@s1J_WCc1xBZ`U=hnM5XdX-|AHY@MJw6jVI~@HbUszMV`VhD4EnZr=cs!Lo{an7x0Sy_h83CDg+%~HLs2==iKIGb zor@g_pha@=MYooCi#JePZ47*=xTbt1ua~R6(#Ya(RO;>3^CXI`_Xp>P3+ut)_M4`r z{$uy<$=3bPdH?%gUO586G8I!Yxy2)uxxvCs*?c~G)54&>@@CIURyzr-Ac))+D>~PgVg}42=o0>PhW!74l zH>n7>Uo9Lc?SB9nd*Q&&w!H7s=B=H((7dU2{cU&Mb$`?>S}!Z@FXj;BJ}%Yg;uJf$ z;h*7{iDpG=@(MTp<;8}BfcQz^K%$FtY=^M3Nif&rNt7ylY4N|ecJ0w|TxVV1?9R+S zw32ouOP1xwO19)i$yl;%Nlxq}ekDGxlR!*J3T~6kTgXXcLQ&g{d`!y$x{mPZrX z1`2HnB=kWG2WZnCa0`axQ=TW3l7?3(Jv>4=Ksmf}IFu;-?(9mI-IT*0MDgD5yEAj2 z-}l|`zP@i1AYGZPtUq0uoUG7VWpWmWc=_$O2L)XDQD_a$D!zX9?AZraT2#4u^=f#$ z^)8!|Yp+kPKQ3Q7x3qLFtE@kbk6xRdee>Mhdu~bk;rgqyv#H$qJb2}^SSMV96tTEVUOS;GtDCE1Ab`x^uX=54PwO zZ5rmA$Ils)i$v$&i}TdD!
6Q`^2*fV$Q4tSi)?Hij}xK-abjmrgabGcVtJb1^= zGq^hn)B1&}J>_H1D>E7RoWfqo?ktX_Lrh=OcVwSWztPSsxCPrJiwDsDbt2(9- zn1(?wNN0D~Eq<(j^#Ho`;2!uKIgnGUOX`dDljyI7oO-gM>I*OvcKvP3uV~qaRxn#z zeM|nO=i2}}pU#6wg_D~4HRYE3U>)GnJ-Cqn&}$!o?SPNHK8Qu;YimFmv;?SK z+V;S>B9)#A+!eaAe*7Qrn?3-WRL0(WchNKJ$LY%JPhA))O>W(++b835XUXD2G#v-{^KW~YbuR%Y(qK66)fcy?s&121Q@FP}a)cjqE5 z;=O(UN_aGzJ={z43dFj+$2~ByoH;ZxdMLB)F}`~K;lthIAExbFu z-r4nmt1!d3JDEZPD%$>YX#3B?kHB77%04Ui4ObT-KvUL8=^xVp93)yD?|JqFQ%P1C zUBvzt7)LTtx=gw>E<0{jlNPKc*MQG37K7*T3I;BD*BsxyGt-1e9Za~fJF1nk_v5yl zevpPI3QZ+fd|Md|g6jtg{9obA)-EU8TwGoxibiX$i=&F2Pp;AE!u!1}*ai~$@Tv2ue$>K!|B zB|kF?du(tBG<6DhDYZLr@bHP@V^9Q?gNJo^=^2G3Udc1i-(G}{{0Ynv=B17Q(L*|f zAhy*oS=W*H(mHu{gb(YK7~4+8sWZ_B-?jdwA(gfpdMM1Tjy>g<=G0}!<4S~=B}eN zv+~2uh@ChEFKHM*OE_!3Puc_m)o&@*8x&05+f||T&Z#>pJ087o;ZX!CZo^5Fb2rAU zUw${8-uifIb?5lfk*V^vFUnI#mX=m8KYPC{#sFIE%e@sm!1BgMs@CFn8?YX%U?pa{ z4`%;26I6cvawSgu2P#-P~JV;;Y!^MF)W$tbs#MKjRCb-YG!Z=rb zGBN{4oM-jKGov?rR{g&`e2_)L+7}r zzm)w9(h1VEOtc6??W&-9U`JbfEIK;Mqri4W0R=sV~;=>ol#-bN48BlIYlWRXn{F{e40pF8XeIJMJQX4}2kiFUHaDqsQs{=^gX~^aQ;V?hAjA zeu#dUeuUmlPtsHLqx2qnFTIbRrXQmpr}xuO&`;6_=!5hj`YC#bewu!Uo~7sLXX(TA z5&9^7jDC(jPM@Hkr(eL0>R*JnpI@d=(x>Qo`ZRq8_mY1FzEmz_FZXlwYxL_Fqke;a z6So$w!ZOb1>9^>&>38UN>G$aOVYToD`UCm`{ULpk{)k?rFVRc%$Mh%kr}Ss^=kzlD z1$~+RlD>lN{=cHXroW-TrB~?h=&SVi@D=k9m|Oi5eU1JZHsbz;{+0d>{to_wUd2tJ z|AhAaU-Wg@*?NuE>2+lQR~_X=4jc-?aVDG#P++h`!A3V0{f3lbWke|}6!OwW|Y0kK4n&!Q}!!w!uhIs4>tl;kQ5#?6pHsz>tOt~Fv+jlC*ak=@Va!NU^+@;*DoWY&uv$*(tPPu15U0z%a zJHw`JGa+2dV}@(qk{O1Eh@~hef*Ca?OBsG#SP`W41-kLP>1X4~Hz)Faw(z z;$mV(Oz)$4%k{Y>r7WP>O6(?!bwDs-ttVlX~Zroq>#m;NJjE{okfPF_o1TY zB`oGVZWtDx_Th{b+ap#2q0TMlu@34KBb}rx&?u%OO15oWYeGH6SZ7d%8#NyS;;VzIo#JlA%4A^?RR?>fA$ zJ4`e&3>J_Xx;8eWIP19edI>*nYW^vv$YL!jU2MaQ=N;JF~ z)i2xzuGf%BjdzL&MQot9EGndMS~;zTwrfUt1gHY&AXD?YBT{29%$}wr`=ESXM9nkn zgIi-#L<#|6)ZDy$k|IbZx-J>KcP%0ZBtb*4LXD&8Q|=n7MT~(09Q=UybctHRDb!hP zgtANGe7$biZe)8*sn-kW%YJ8M07?{{CktHagS}+69+pSYjLaqrWQ1p0G5}rcbzspANvp5KHA0o6eP==xUribO)s?3VfuLNCDwm91E>3^Kjm%Zb={ zxovtLi;t`PwGsQ?vW|8VA&;}J?^t;^5V46|{jw|hJV0xM@;tOc zq`SP+;36)%aS||L1UzP157yUM(8Qohn>)K9G zYJ%2~6@*!2G>cm>t;wTS!gOfQCZt2jgIucl{Yq**O!vUDVPa)H5PjBzY%AiY2?hxa zH^^2bmeX}kZPxH+VN}>DAftVCIgl^&+zSaX&1W^ox#Yvd=T|46G zc;>sE9R8)UP4nGLN#JIE?sPPWDHd@(FheOshXdJofx`{a#yHT>Whsm`k(FU42>nbT zjue9gk~M~o?{>zx6YwVLCIYwV_Ul@@E;7dN=f9K;lfoz z)bMa#{-WAUXb?j+=IEgrM~nwRQ^AgprN9eWF>IJt*s;+7VQXO` z8qCqcZrtF3a`9sRVgj17&5)@V6CRm*N)S<31uxn$elZ~CBa}^YU^EB_0un`ZSy1XD zeWveWdW1f~ml{I+k0A8A4pI=@Yq>$a5T$a(ZkVwy!N?byFl%PyW(B%N6L!OMI|v~B zouYtHw;PbSAUHV|+n`fT0ua`MMJ*RPQ4B5}6yU>HxPg^;&7yF9WNIa@7wZB#O$3S( z&8`UiL9%C#XN(%+1Mlu*J`l!?eY94PF@U+`wpFvQRxxsfENY}Txr>0L31r`QP_zAcg zH8EReuBR**Xsc9fz&p^fI2sp?SOMZ=%uGV4dp*Hj+!9q32`DV&ZRiXdU?^)tn8PwD zjHFx*SZ)I?fw`m}VzilS@qDUJx&oyDiDS}RlzBt#bOnz}X`a!B_~>C;oU-MR45a+& zwVvKb)wmn-Ls_U3k(z)V<09BRVs+VDT^)o9iQ!}tVdWAbk{~b}TFW#cdUWU)Qt2xp zbQqXF9mupErnX!pIM{Oi%_n$YA}u^Zm_;iwrPa)|0>mV2O{i)0H2iklV7QHL7s$Gw zY;FTr+YR3q#WqSRH3ZXW>undZr!7Xn!44E#0XZzmj^#Ha3hmHBji7`@05>IkJH&YB zi);rfOc9yZ`3_wxoAejgQcPL^dhrej5}(VgDr-- QJc-es8x7q@(^>BS0Q4)MCjbBd diff --git a/styles/themes/default/assets/fonts/brand-icons.svg b/styles/themes/default/assets/fonts/brand-icons.svg deleted file mode 100644 index 4c23753..0000000 --- a/styles/themes/default/assets/fonts/brand-icons.svg +++ /dev/null @@ -1,1008 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/styles/themes/default/assets/fonts/brand-icons.ttf b/styles/themes/default/assets/fonts/brand-icons.ttf deleted file mode 100644 index f99085132dc78365412a4f395cd886fb1a3b69eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98404 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 PvoiK&B4Ws6*Wv#Fi@o?r diff --git a/styles/themes/default/assets/fonts/icons.svg b/styles/themes/default/assets/fonts/icons.svg deleted file mode 100644 index 0ae8e32..0000000 --- a/styles/themes/default/assets/fonts/icons.svg +++ /dev/null @@ -1,1518 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/styles/themes/default/assets/fonts/icons.ttf b/styles/themes/default/assets/fonts/icons.ttf deleted file mode 100644 index 17bb6747a599c59238e88924d3f50b2911adeeea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105784 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 QpjjFFG7&N4vFq@^0RWZWBLDyZ diff --git a/styles/themes/default/assets/fonts/icons.woff b/styles/themes/default/assets/fonts/icons.woff deleted file mode 100644 index 4cf2a4fee4bdc1938f9e6b35a747c93a86e00fef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 50524 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 CUpr|4 diff --git a/styles/themes/default/assets/fonts/icons.woff2 b/styles/themes/default/assets/fonts/icons.woff2 deleted file mode 100644 index eea9aa228137c5d178a22f785828ff4a867ea92e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40148 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 diff --git a/styles/themes/default/assets/fonts/outline-icons.eot b/styles/themes/default/assets/fonts/outline-icons.eot deleted file mode 100644 index cda0a84cfb15713ff11a77882a5af6cd68f6af42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31156 zcmd_T33Mb!ohO`;XJuAa)|GXtR4PezNa~hUl1ftFtv>8-+ikmTw~a4ssaxt++v=7q zseOR)w841IVA#g%ox{t~upR~&W~P_t@dFPGjTacttl6)JW%zhAyhV@U?E{vbEy?U) z_@Mgx{Uhp1eG z)WoDe{60WTT0$6^MuNIs{$s?yjF6o^wfOK4l*_N6ydNQaXJ+=;#O=2}@SG(1p2z*4 zotk)fj(te_8Sce#ojE;mYASy`_FYMueF5(b&CM<>o_g*}Pe{@{%FuPHJG*%KB6{ZR zh5R^g4IZt3&hQlEd+haFesZsW$N!MLqA$Pu7wzw%Ty(~>UzQ(d-@v7(+SMo+ zS7*=;hjQ^$OR^BV%&*0L3*g@+$@{N9bVPDyCKgXiNl9(G-yCN%Cr?bEeDNehKDx`0 z!X&+x%6`nwNg9%WhaE@Sf$I5xNC^q8Zr~s8t@<23e$}KjR#tx=;PB`}TlOOZwW0c9 z7eyne^{c|z<;!^HGCPax$n#c1t&Cc^^n5LipT{o$S{C6qbY06Qk5%*4&bWts;{9il z?=1vTe&cv4Xc*QLViN7o3Ay7K2ye$zXoTAC<_zYl5nXb41)HX{I+ z)cZt#E0aj2p5Kf!Fc#^mLgV?IbQYKvC~IY-94mK}v*o_>uJZo!9p$<5LitSj(el~y zljRSTpDll^e7^jL*dOFa5=f0S{_>7zkK!bwaYgw-@JVH^3?K^ z%g-$T@$z3Se{1=B%m1+a)8&6!{^g3ba?Q&1D|fBDb7gVmT`M14`OwOXD_>gq^Odix zyu9-5mG7_ox7Xy?x?a2MwLf_6Z+;%QjPX=f*VO18)f&BfRgIoUjs9{~jp9u;x_(YxO7Y!m5xX^NCD}c(ydZVIx1zPpyWznX-Mh@V8beFV6x?M7)4k;zwA>AoWOD)nh(q3u1v`^Xw3b;qwA&rBA z`y{_)OSed^(%oR5S4nw{4;f7KTIo8@P#2|1Fy-q(WfhDh4Wnc$nC$}?nM9fY|NgNF z0NU9q7#3-~iU2&2%Ai6NfDuyJ5COO$m180ROQdp#2*4MqoD~6>BbEC^01ipzT_OOR zr1E|dfLBua9U=h3r1I?|0N14Q9U=hhq%yq^0r)4C7eoLiO64;m04JsLyF~zYO65mI z0G>)^w2J~TRw_R!0&rI z8SSKiu_`TJD*{HXw0yk?7{AgoJ&%BqEG-`v0b^QPM!hLubW6*?0}2@D((+v*V8lzy zcZ-0rFD*}s04g9Y0~QoO52WSyivY?XEk7v&XoR%<5fMNwq~&Ks0Ns$5A$?LHPPqIv z5kO0%<(EYORgsqey$GN$((>0uAi;Y18zO+_NXy?80n|rYMt@NN9g>#OR}?^zq~*U7 zfjIK=w?qJyl9syK+UA(Uy1;_Cas{}6hPsml>;Jx z)=4YqZwjD#(#ka=fc{A<*NXs3D6ODhDS#$QE9f%{ppMeYZ6bh9N-KaJ1yD?B1@)i+ z+9|EjI}k{YT%mU$fSyV#XafaMR%rz|K|vbF`2i6~US63O0d!YdSr7pfSXx;W0kl|J zc|-(IWohMIB7ifz+#&zYziIm9+A05um0?E8iCZ970<8Zz6zKNUz}? z6u>p4*SbUi|Bzk-{3w8vNUs5Y6i7OI4e+BtQrl~Q9|e;8U;6_Qz;UG4PzMU&J<`tu zA`lnipU0TQu4T`#@5_1l3rbcwr2Jg{oMvhFXs_ry^vCp<4c)lb_^?s&9Q6FQ=ZmIg z-fVu_8nj;UhP=;t|It2dzvzqmZub3&v)P$a;ka{llqt;KQ<@9aoOKsV< z-^skte!Tt59eX>z(;4r4Z|5u7V)o%&H23xVv-$59dJ5BpuXpX}dampB?)P@T-t*0# zUv0{6x^L5SoBnR|rQXFpw{NlU$Nh)<|D@;^$BMTXpCMRXzR14DE@Cw91Z4%B*x<-c zR?2T;!=-#@dxstgy3wI_N*t=+X~dNFj{I=2G=dya zn?+;M(O8~3n=%!LG8$*<*h~r4*RasSKR>JXT{d@cIyX07xEXNIGW9dvw zHsG?1p>=6Skshy%)3L}C#>BC536DQZg;Zu_l}YVXM*n2kavUohNUCO#v9PHosgr>Z zB;~WS7%gp}QoBLbF}_$+o6)lT+7=c%MWeQ}!DuUUbz{wSLA1X#5-aG1e8F%Saz&Aw zgOyzpwPxp0_as%aTH!6z1c=p#pCmdv2Rl3OX>sGxP>b#N8Xq;hes&g3U*hn~xT(qo z6yWj}|4ddd7+QeJ!Qo&d`V^Hi*!dpA&zR3pT-!0cUc<3n8aJ0;VXw0q9@BKsKHfL%i`8t%TN$h7LuR&P(XSm-k<-73s`IhDx=y3@3ZZfus#33( z!I2DyewHtxUg(ga!KkP4B6hLyA^@cMO&8a#cn6Scb=|LoQ4XM~gDF=B5Nb6#TpHPq zfinU)xqhYt`+*(o^+tu7TP`XzsVK*EYWf>i2oSQ=qdEbT(DsUc(?pMnYK29Q2{45@ ze&PW545D5bl>pcV{dVmY&EL|fdowUAU*yoNR~~gzFJHd=Re2Bl8n|aCC^g2?Xh(i@ z1m8l$1;NBOLLja`m{G`g0Eli(AYF+N z5jQ|f@XhUF@AH{v%yN`|O*J)dtdM$VZY0+`I$}9RhlTcAdf2O(s+Jq;(!j8IwG>)%xt8KV$Fdx@BitME zdK@>A?>^A4dn{i#?6W*tTl{`S4XKt=>EUPgC<^UsONMj#Zm& znrE(Tk=}oxdo=(GEvW|y1P5bg$QN!&_o0RLMw$>wxv>OoJPSTzk!&w$=xB_{XThkk z2X>gq*2Rk{_uM%_v>4)*;@lj&1VVP?$PxA+5i*qL;e6>L%B#`l8=-qFNRLB|+u_D409T=@~yf zjqxI`-d&HqzaBf#$atup_@xSXmCO7VyUFx3FuuyUIiBx<$`9D)dbVn@#O%f!#WZ3^ z*30>5Hme!zi^T0J2My0Ys@y*Iak6_7p9dDMg6I1r$b6$~_!nr{D)_9uHrCuPthrvB zKMbh=as-zWIBgV+vk9VuQ6<=3l`@{KH|s>BtxW(}KYFn#FEEODYgH~d%kMy3C|1q` z=Z?tg`9@y5{xSlyNWZHdYos+|%oK&QaW_?>M@r(DsyxGbD&Gb63fe4S-3h5`FGfRW z9YjsBhGf-{G5`g=VCWrHb_Q}i%4xRC&IvK6-W&)|r~)L2&qK@^S4Te#3Ur;S#z5FM z&*BhO+1XVUtU`sJs>}frytaS!VMVMNe`%c(L^j*Von1u{45rA-`)sgTY~8Ekr5zC zP@%K3=KB3_*0^idf398*Q{J?lpz&24qcQR}N64EEhPQ(GRXkq;O*{|lRSQ`cMnUNz zZ_wx)$u;3P={5>jS+h3uo^L|HJqkb`({*-T4PrF9iqJhUCef(dAcz~yIz)_1;#G0HssolbP$6Ch7g0XEow$ms-UTZ2d9_*f zD>f9e_eNFaLpv34A4|PURsTq_IPVcS=!d-$mL4HV3JZkblfm}t7$t?TK?&Kprk(_| zW8>M+qYfySir@ZW9KaLLH)BL)j*XxGBUF;=swg|3795ahQ$r_S4V6_I@df~BZf&!= zN9ZKz`&r1f5op_6i1KlD2dZ_=&eD(uh~;vHNf=**eWhkyV22OqOZme!GXNw3sQ;?m zV`!hzj2=Xvh7{;J4m+F7=aZ|OEoc)&MMKL9GQ>VZd0m(jMI9UMC+b{RcGubjMhi`n z0qi?|=CBQ*;<;5bv<#GMl_?>`+6YL~yHx#os@R8%=&>Xz0~}@;hhKw*ViQ?W2`5^i zSl2}_4l)I$f(`11n<)jF}AwQ3hwW4rQ1|B z;tRzR*}i0)B@`vCFgd`IeXVjxR$AWZCgGEI`PY|!Adi91w!+rE4|7hij1x`)w_~sg zU^p8(kO%5*bf{){Dv-Hg7aOet2jC#BpIZ?MWL_jQW9*6u%iQq94ee>&(*3eeGc_gZ zd&kwA`;mD4`)?TP%f<@1c!$y!a#QJ{ZO?2QN~b9DfmBxtzqwT>c7DsfTeJIG0$$yc zO~dQhK4xUSTkf5|cT44*6R|>CXwZ!&+uC#4d@Pxa<+ImPJJXa*$bVDJ_6e1S|m(II{wE)_-!WS%jiWasS=#vb&U zZVXbllI^0z%{+s+AAu3i(5aA47^$cj^m7SkdAF7f3=9`;$?hIb#!8#IHEyib*iO{cu(K9gIi16b7MWdrCi6@)?m`(z*y=v0(E^EgUJP5;t$|+%xF- zJspuu+N0^VFL&$Bi4?b)H~3~Z&1r2+A;TQM`xtl?eraZOU~~_Tl=2&p$y~dv9XBIB zrFy;xW~O8~yb-x%TYlS6k9w4#w|c&dawo&oZ%{?6GIk4OY_e`ktWZ_$tHe{-Mqn@j ziBuqE5v8p19HO09q=Y+%hlnmk*cVEU`*}CT`45O8&M$t4_|LT|cU*mpNAGj2+f{YU zlI5bz9xFL(sHyE%&aOjDZ?~MkCd>U8o{~B3Z@`*#>5X|2CNB!&5m_-wuO8kabQzgsy*A|MzfKK&kF;rE3=JyV#=|Cxv?9^ za(<7km`bZEtI@vwu@eG=#L?!?X~Oizyue74(Ot~Vu%{XVVX#6WS|OM47vZBqCn=4!cRfOL75hgOH0R9Rk=V4#Smz+3?$ z!Fe4JH5QE+QNbNM3V4)=$S%fjfSe*@G{*jWcG5}&QpJ=%Y2Diuf>r3e&_HKoRsNT* z7o@=JTBV!hjKb8Ll78e2ByNHT=7)53Q}zB$kbhZA`bINi1p-#Yysq6Jt^ATVSC3VG z!c|p;Ed&jp&j@r$J_u8nO^{>$P}pM4DQbFAN8V ziNEu9MOH~RZs(-w+GvOEnvb=Ph( ziXHR&1MPk7F}JIwd*2=E;I)NUuHCgITj<&2O?t1{v{~+(+q5@wm1?4oFn<588oANl zyy+Tm(zo@X9_VXtk8L{ImJe+sFcV$5$R4lSb_dWx*zDHQ49rq;>$jlzrF^pa^vYeyGt0QCvxg303gU34h`OB1 z@XuH#BQsr#X2M$AV4F4scH0sThcX#<&k=B}>SXO9m$%`3Ab=(xrU&s{=C?I1lbMJY z@`+p^8o=+<8ET*Ck6Qa$L9x&uSGLON99GaMnh*;@r0u7fLSe52af`%ATG~a{Jwxwf ztD8|ebm=^`z^`Qm@Uxn~+b}FM;dNba!dz4Jz@f?{JCBN2mJY!Vlr^+1swa!7#5)Yv zu#z5cWLw1RNzi9fn#+qno%b4Whg-AJ8=v z8p<>}K%{t8-&7m*QhU41l%QfLTNV5aMA^-8RcE72RjTJB)pWTj@5XIjXl<1}P&t(m z*(1Z+8B#p&HJGA)8HHBQcZ+1XDJS|-$WLc6t_V+CiEg|xEZ`Xcv6qBgnqNX=b@VMK zX++y-#YH%-k^jaI`@`}$M^5hd)AEzMCxnzvImHg0HH&ql-Ely2)c z+<-$zNRN1vbQRpG!w0C2m$mlvkQdk+w+QoI4a?7HU36Wq<1R}}F>r<33lNhEq+de` z+PJR8vvEbay-QIG7lhV@`iVKJ2E2Cy;@8285xz-pT+2e<00$W%%^8X$DULd6lfb-D zcruKX3`BKc-sqrf!siUhPlCRqxdEZdNwlp~ewb|ze`ZQ)me1VXi4>@fy z@2hG|H9flLW=&CJw$Ba)S{`PyVpvWfq;1^lb3VhLVO@^TG|X_ZFBOj(e%b4!RiEN9 zo$x{1RUFgMFLoGa<^yhL%%^x6lcBdOpea}M-ypYz2xM!bmaFJWb?SrWmJ6K`2XqqC z$dLDGiZ8Nm!@p-}SEV}JLpg&PYC<;27}AggDPR#Ct4b+W(z==MV8-kAkX?27*T(cW( zmjf^@o*#pN1kvQ29W@S{da~j^Irb+|!hYbq6;bmgh**}IoOOvi-eWqZ&1J7aTW z(A8}3Gz9a?(pe6FI-njw@{?wr%@qK6>mF>|nWzW6e=c3DzM3jfbwhh{>_0-(XJgfu z!5j*EXBjHGE30@Vv`RsP8v0)^d{k-VynzmA3h6={&*1kv6_Y7azf zXGz-I{ z(LyX@fX_qaER43vh0&oHhz0vm@W41Ey0Le(M(VNg(&og00*h$2bzrQ2=b!hF9kBAw zaE=uYB-H4p8#hPg?aViHLysLf_V`%!{9b*>p=hqZ$NKx>X#cfI*G*pA9~~}L{$4Nb z&PA^~Tim&`$hiH-fZgt^u-lQ(M;JKT0?+(*^3nz(qDtgdHOe58iNA4`Wykl!=zgyZLe0k#V{t~;WJ!=>h%%iYd z4dYp@I8LA9`SY*ca-P$MC3y@sk5;mFbaL@F{dDZ#k7 z^hlQ^7(>a2>===I|CN;qRsJs4-rxT9(0sPk9(zJnCzpz6gU&IZ?+HbV1?OQPj2qGL z-}=Iu!ty@j8T(^D3+A3LM)GlgyA$;U94ss_l@2K)#BTIP zJN#Na5Q=I3j>u!WW(7v0pY=K3_eEn*q`Ut^F!<1?%&=d)HVfet6)@%ubJCuDj|%^&uJqHy+;FECv-EmhC7 z8tslRYe(KA=K013IRM zV#N7`9aeRStD4vKdjmmVzzkw8BoIj_HQV$!%(}~ouybPWQOF)Y0B<^9gWoU> z3drANpT+PI5I~9$4mb=!7V?DwE< zNZ&BCJV2;y$G||xT^4gZrmZE@kwD0b1kHdi81VXC_^ASc)UfRX0$HDMB9Y3+1Uj-2 zubu4=c~gD^?A=?%a7@qGnrEoXX%ATT!2W>;?X1sfH(E2gYMGFfFUWA+jfOm7KMFQO z4$$B4iKHTDYuG37?;>B{P=#MOLh@zJc{VnX203pwjKP~x0EGrL=$!%0l89d{0&^?> zVU&uYZFE*~l)%|QN^)!*jD~C2ci;bpma$X+2l|B1+X~oqfDg<{za{-k!3}B*q0R_b zGXqU1Zf}JH5(8-EUIV~N@D3Qf1mowlkdNm#xn{?m-iSBtFN_uh^E_px0$<>~qXjOG zZ@@Q+t$e}MPl3H2hgnSb@B>-MG?-y>hzs6Im|K@HhDlPYvtl4LL@B@%DZCrrhEPIX5@Ej|+?t4vMPsE-7VAkyLPup5 z_WjxyX38eBt=Oh*@_gT&z^u1sc*4mf1QWwtdtwhHd`>LpGxIH4AQ#)3=ndQ|>t2WZ z%{!_`pNz!klLg;J$DRz4Au@QYo8IaNBkuO7y5aFI25dW+Bsg^kY+s;@VlDMF%2p`>qb3T%G*XL}i+wB9W{x`k_!e(`%NB3ggec^8T9K|qu`c6r!H!F=o8;6zxYyu`>vaXF0fJO(n zv&qO#xsWHRO$=uetDo_bLfyeh}nd!lXg49U5f3YJHPo0V54K23?Q);JLXr@L0>c&^80Qw?RbmN+#GJn zc+AZ~77FzB1(Mg8?3%cHgQ7UDK4P_52Gh4Wk^V%muTZR(H15d;p+g4)1qg>_3--$W zZrmI2n@Iy=Gf%oK(K{Vew-{3m*T?)p-3Qt58qa6&LV3s?iG&?HoF4b4gKe>CBVfzM zF572>js1b}@GIhB-Y-DvG4?oonhQ;X4kd% z>#Jc%{H~Wp?Yv@LOed5UqNwn^$JAR*9fGta_>|D}@$za7&NloD8mnjyG!oaYn1MHm zW6fF49i~6rv}k4zPaJy*u7a>rC26v{5q-6b#y%aYCyKwp%9(eYb{7q(F59fUzrKFv z-Z-Vji)#w6zK83GU*+?eWFOiC+EHy`!_q-B%%luffl-E-|TN`_JyMGsFLJUNv+W8-rupBT)Xb-Rx!;gjFs##{379#dakv* zds}z+skT^a(rt4>w)vuIhv2R|&TXG$fGky>q<&-XI!rmYbwA_5GF`t%jrs$oZJPmq z6xF<9y)IE}tlcK>aFTOCFS*nR334@|uGd|7fhxoBso|}IFSnoM>kC!8b7reeM1BXwq05W*F}41F!V>$bWh#7i~iys!nxWs zozdPjdAG`^qIunM<%M7@))9*hu(8{*Lg3*p9J*F}SFB!Q{5s|Ch`n<7c7<{)aMG^v z&@t%ww31>weC1&mCLaV~PtB`r74nDC3Ze_Op)e{cU&}sJ_w6*eCoDfi+SwA|f0pnj zU~!CDl+`;cPuHTVO1DIYheb6H^7c%lQ3tWyGr&88!QXazr7WvD#2PDRE zPJrbBYT>k^96T)cCIdfetQV&>i9#>>g!HGc z=(tb_TLNTpFbBAML3BvV!ng(D0p8DG4Z^gL7dh&gG3AX%VCdpG>Y1_20utb53QLb8 zqhOwc3W~BH!GhuOTd_@vO@;njAzL$5#++8qx~ZEWx+w}%e8H>pZP`d60}G)y9UzHr zo#YG5GLw6X3iAamrnROHXFWdle8lV1&}1bLxwV+bTVs~r6CLSUH?;&aQl=2ew&kx5 z!u1mGV3r<8d)H5PQM^*zlQb>a=gD>#wqkak^M|@`BKd3N;8g^AxoTy6VHA@dF}-87 zCMd=VaI_hPcNgi`g^@uc26r%c2{gOsW{2aY_;CN+Q^F_lu3^g>Zk?zm{sX^iS|xuy zPk2RmH$Js0SM3?WbHBCFae@m<)Y`uYwmy z0}B-CbhIR#d@t)}EuoDNF3^`IFId1d9P6;<7$$cCJ(uU2b=MY1+hd*EJ3Lwj_TzhC zK+9;Jj_sYroBF+;NWk=aW!v+Z$CkZ*GZ683`)_hF&!(6p5t-03Xi)qjnMWyGNJ0M> zc(gU_&H19Otx;dj8%m?>V*gFWu4EwTI<*RLv z5VN6Wfp_!OT6DN;omkM%%bHzvA{f!$3g3qh?DJd`BA+>l!MZ`SE|3M%@C=PbNk@mk zhHX0v!59mU26IMml>O$n{xldo=LKR^Eq*&s@$1-Qk(&6(c^&iQTIPlvZZ z=ljJtK3slZ;_E;K{=MOPXTrR-Ye8oSGk#2m8Au=JxdbsT+;Gw35E0S)&-2Ak{P1cc z%i5)&ReA4m=)5+pI9q8isZ}2DF&F3#$^cz#6kg7-C^3QGRTB8Upd>~-rmo|v6wFH zD5d$~d3fDGOH$y~4hxQ}+ehr5VY`8UM^CaF;bnNCy`MjH7NeVV<*%}zfzBmppDvBe zCB*sqNS6eM!*sCl84nL)!;c6sd6X8Ha4&uq+diFjj7+5an%-Pn*b~_tzv{uO@C%1~ z26s-5w%%IYGQMTY_}E}?uq&>5GJCtTyFyl1r{}6OPoKGpT~gvl2DjYVV`aPfsvR0f z+#v?z=yA-5w@4Xq;}T!jIZ3-ukz~#1q^o-okoE(64JQ#=`)IHo=EYUY^XO2d6XH=_ z^&nETR^hIZaWWy&{m7d9a#!V`KcQ{1oc0(i1Bkz=1T zY5VH2D(qmBmS86vg@nHw^Z5rL|2`tUM|zTIKoexzSBa!>Dz2IUC=V%LG|~YVsA<6h zK$t_Il_eSi`L6Kw4|J1*TRgyh0|39Z#)MLyo{r&3Dso7yq&*1x004xOq1iSa5oKew zl&(ysGM=FiJDbdgY&z&ouJER#~8b#C!y)4xVt)*b)3JR{E z;7q1kDDqI@V|+h`&uB*N9G@GDV_N`%E%`+M0C;&GYvb;KG(dZIzDIgo`nS>_N`C~| zpaw5$f3>YOEw^E6A;8v53qEMdr-|z;CaCWN9souDtUKfeQ*6eFU`d5CLr*ofOBJE^n`ugNThz z%w*~%1CFbE`+P0o$~)&XOL#K#I!Z+@dI_DLs=b)r#vi6yE+HfJ56SO;AuEvIW7uOe z3w+o3%mSdq4Y=G%Eez7e-~w168V8eKj(xE*9<=z1R;El1i?S z=ff7PsuY8KA}Bsqdal|#i!ENT<8k|f{cvLyQ1kNXZ{Ke?&Lzh&ri_%gX&F&NUZ8#= zS(5Ye>iR0N4x$c>x~-^Ag<;BUUJJ1ve`n){29(3%<=Y80>QOQVtHFvR^k6ZC=x-m}*L8a=6$LFShPUbR_WG2oWx~guOlk7D}A} zWX52&W2R=9cEHesimXJiNT{VH-gPlZr6dF{H{{4saFaJ`FXSAEwl#uR;~zs}f~x?U zLx#K!nzzLcBtp@_(v7OeqZTwHQ&fyihVej0ODquBs697F)0?eAyc@Fr>(rtnck1@j zWByE#Xn|J8u^?t9`oImxP3sYtbRUQDjh79vcfLKcJbvY0{v`v?C{~*{zh2n;aHP5$a3Y^ zvib@=auQw5P7!$a!5;PV!; zIp=geKg}#(Idyu){;%_C z1rxwX1l+_t-`mz~K5xRGHL-tx!c5v`$Hc_j*Kb}Vf7bSRydD0mHe6=W-Ipt{^}h^x z`~yUnxdaYQg}LHgv^ueRP5cY<-NST-t0++w;0RWN(2Q|}XbVNElj~?B*FS5M?bT~q zgE6vO#-c1tlkSFS57Pzt^n>j86O&A1NcZC!?`1FU-ENv#`f%&bH{WVHisjk9*HAqH z&)$ga2{=mN;8i+IOM2eM`U^eiWBOGG1Bw&y$dSFsr5by;d#tzkxDmA1K7Mz>k}=UB zxApY2$!5@zt%4eKG&R4)0|TDt&YmON^?=vtyPnn&T;FGS1N!zOJ$HIw-uGy=>o-&zSoS4dZC=%Er@O-`<`^RL?Qgzp0;G|ekEIjJUdl&AMFyyq({1D{4r ztK^JPxGxXGGhOBa4RsgR&SoBsO@43}YQN_hpP!lcC1hXR`@Y?KKX}xAY`F&>ZUwx8aAb9n)YBZn;BH*tFKxpn63^_>V=;ZzOWx;=`{cxZ zCiDMZ>``8gT_0qT$P>25V^`n%3}$on{rh#y>^^hCjJqHF;9g#{$6Tt5kO961Sz4^y zl5(r}ZUR*^hKIsJw#8bX^*kIB4wQHm#4>qvXXv^VKe;BEq+LCHa9?@PT@b#y}HjtfNG1(SQTJgqt2P z&}jf8pEyu~;0vS8qDr05ecxq@-0M#VRU0dsMgp#EcQe*)%WhyqmYJ;v)Bauv*sh*V z>#On(2Pv;CQ{Le4+PvOy*i#5@vbDH7R0sqLLvCENHw6oxRq4!MztIANB%dpVrBc{v zy9VHBl`_p_pai!XmdIG0Ol6%`CV?e~aw(8B%@mel4UnDbt!F*l-ygQU$pN>WsTrrs z!GipDcOdEYg*Lhosa6XUx|eFJ-^u^;t85AMdIT~OcFWFPX{L(3yq z6yX6%ItjMrfMPsc(rRubTBnO17jq5G{)@EuX}Io=3m;Mgk|Taxvii0WkWIK5!Q-hX z>$U|ww%2Rg!dKXIG{Y)-RXEKBQoV_!navJX#vy~y-a}*4n(Qc=?rqalz!s{FCld9- z!!zjG@pPainQL_dSpMMgGq2%~{-8Y_%sQLnEvDu(WYrV)m3{DYH+Os0L^hC0v<$~$ zrH*93a2ka(s*&>ed`Ua3dv(8S1-zbA+Uvdq7gb9&{DDrR)9)|X@f2))fa66D$3gtZ zz%0R$%aa74nl~+`VVbn%(S{!_WFB&)3i&E`b7L<*PN zh8yj-oxyC@OeT6$0k{{caNIe@eXYGg#rAnZ@Y?Bt!#bQ2O*ydNW7%53Y0V{D0_nKz z2I1@Njl%k_1BSAywRv?-ab#^e5cL~gR(U}H|}%Kh#znX_zn2bD%wk~H=Xi$1D5Lt48wNP=kuftAHmEn+$VamMpGL!kJdBS zmAJLqNf=A$;TJ~R=xw-d;RdpLan~-f8`!R0VoR!G zTbOv^`<^fH9nT%>+72V?o5aeqj;}wBO_c6Y7&0_|s zG35^BcsH#M0;OmL6TlAEYj*ig=}r(%O5}SIP6i!4HFEcpf@EC^`4eq7v?ctZmOTge zGyIZlEPwt2#VXy2*3M?NFy@ZYEW3Dt;1uIio!6D52t@1&tHRF z(L?|6k*il6lU+pqnw$s@~dP*1Ft=+<}!5F>rlk<+|?ybC>MhU-Vq%If{V zbz0S;?%avNgRS*;?Ns^Jdi*-3teKVKJ1vWSC{JzhM1AyBWz%X~(6|j+0_*OoX|!tn zVB$Jom$Am-fXCncQ-Tr6qDyeB&Cox{Xwa60j}El?r3&XS>>{XS)k&`k(~GFbMLrLf z7d6>vFSy}$*d)2ZlB#tPGctVejETr%wgnws3P5Fmb z(u+959D-eq%aVaU7U>FR7U(~Z=%XUOryAGL#=EO=9d^VM)wl(Zna8SeFUtHZBv^+1 zf+SeazFdtnl=z)$T!tsguc~oH8eyJlTt$3WHLgifwpfkpQXl*6YTS};!+wvVe6N(3 zovUY0FJ|^UG_^2$YN|P&8O~fiKQ(pp)QK}Q6Z7lb$-Mck+ot9hPR^dr4EGhOfa+U@ zo60>fb$V)kVsUCRbM%qS!hiHhT*HSF!%zJ8qPofj>Y7Pl>;MT>Y1iZ|#}2f9m+pdusi^maLVv`mZX7H>mFc z%n+PLn8#efBF>X&*-^~KWFRFz2;3S(>LO&F48lC%bc(lJz-tQs^D~3A4E{Tc?%jvy zk0Ey-{?mq@n!`SQ{rDcQ!nc;c54or$P7esZiLb8vIm57v2c&2XOJ5D;GN2^Alec00R+-O27^ce8i0d)U2foK3K!>=>J5Q|vf9!KT?s zb|1T+&9GDKG@E5}@Z6YZ3v7{{VGm07#N_1s)WSmV(b?Ji>leo+<|iW)^YgP0^-jzz z_8vPqe{5!|cXIZj(^sa>OdVg0UXgeHJ60lc&!t`097(X3i`$ZZ4iYHMQWW z-3+2RQ;WR|51hf7w_4;MCOVMQW*0jeDx+1xlEkSXfYx z&CWey(t%gYdu)Dc@+3M1rCXD;wcb%F(KmJa!KsglShxuPF54A9zHfTBkrF(HF07}6fie=+|M)4%|0|WKR0{w z^rFb~;K|9UY8emB&QGe8Nj*L@al(6ic4l&Fp4UqkaSgQcq0{>DGmA%OXOt6Dr@Ye> zrzd-7PQHs;#^ZAnb5rxx=+wlqDZfai_wjygzNTIbG~MUG@--!#nX?;LQ}ZUjm`Cr3 zObf?OE-cK>FNoJI%;5&lvM@by|CBO4IjP}4YUdX{)3Xb6Cl@DX%<0)P^Cy7E3!amc zz>3KeQwAc`EgA=v&W{V8`==fes4z2iYWB1_bMp99?>ssmF^rL;XJ(FiW=<|}98mDL zxyq@jX`5qr6=NMdHT6jE(UTZA=sES&EJ`^&_0R%`jy-#nSWNGU`PnmbPW9rxK3#VrvLJ!|RrHf>9VG%=jdSd3dN-;0WJ9hsgy{Bgvrx2f=s}`*+oH^}X zoIZ2v=mPIbvl>S)@zGn&W-iWyQc%0SsQ!F4Ri(K7(8<#vNxghj`KuTBW8jmgPQGiZ Vetq&ZzjmtkLF*Q0=ckD7|GxpupZfp+ diff --git a/styles/themes/default/assets/fonts/outline-icons.svg b/styles/themes/default/assets/fonts/outline-icons.svg deleted file mode 100644 index 2875252..0000000 --- a/styles/themes/default/assets/fonts/outline-icons.svg +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/styles/themes/default/assets/fonts/outline-icons.ttf b/styles/themes/default/assets/fonts/outline-icons.ttf deleted file mode 100644 index ee13f848ecc459afad72db6feaaef367cabdc63f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30928 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 diff --git a/styles/themes/default/assets/fonts/outline-icons.woff2 b/styles/themes/default/assets/fonts/outline-icons.woff2 deleted file mode 100644 index 35cc7b3b7aca3106b44e3cf7d5784d6d329277d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12240 zcmV;>FE7w{Pew8T0RR91058x03jhEB0C>;<055$20RR9100000000000000000000 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 diff --git a/styles/themes/default/assets/images/flags.png b/styles/themes/default/assets/images/flags.png deleted file mode 100644 index cdd33c3bc609a91ff492fa352d835bc65de6eb9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28123 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 szvps9ukhz5h*B>3w`t1c9~9oX)@<@)c diff --git a/tasks/README.md b/tasks/README.md deleted file mode 100644 index c602e22..0000000 --- a/tasks/README.md +++ /dev/null @@ -1,17 +0,0 @@ -## Tasks - -* Watch - Compile only changed files from source -* Build - Build all files from source -* Version - Output version number -* Install - Run Installer to Set-up Paths - -## How to use - -These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools - -```javascript -var - watch = require('path/to/semantic/tasks/watch') -; -gulp.task('watch ui', watch); -``` diff --git a/tasks/admin/components/create.js b/tasks/admin/components/create.js deleted file mode 100644 index 58e377f..0000000 --- a/tasks/admin/components/create.js +++ /dev/null @@ -1,319 +0,0 @@ -/******************************* - Create Component Repos -*******************************/ - -/* - This will create individual component repositories for each SUI component - - * copy component files from release - * create commonjs files as index.js for NPM release - * create release notes that filter only items related to component - * custom package.json file from template - * create bower.json from template - * create README from template - * create meteor.js file -*/ - -var - gulp = require('gulp'), - - // node dependencies - fs = require('fs'), - path = require('path'), - - // admin dependencies - concatFileNames = require('gulp-concat-filenames'), - flatten = require('gulp-flatten'), - jsonEditor = require('gulp-json-editor'), - plumber = require('gulp-plumber'), - rename = require('gulp-rename'), - replace = require('gulp-replace'), - tap = require('gulp-tap'), - - // config - config = require('../../config/user'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - // shorthand - version = project.version, - output = config.paths.output - -; - - -module.exports = function(callback) { - var - stream, - index, - tasks = [] - ; - - for(index in release.components) { - - var - component = release.components[index] - ; - - // streams... designed to save time and make coding fun... - (function(component) { - - var - outputDirectory = path.join(release.outputRoot, component), - isJavascript = fs.existsSync(output.compressed + component + '.js'), - isCSS = fs.existsSync(output.compressed + component + '.css'), - capitalizedComponent = component.charAt(0).toUpperCase() + component.slice(1), - packageName = release.packageRoot + component, - repoName = release.componentRepoRoot + capitalizedComponent, - gitURL = 'https://github.com/' + release.org + '/' + repoName + '.git', - repoURL = 'https://github.com/' + release.org + '/' + repoName + '/', - concatSettings = { - newline : '', - root : outputDirectory, - prepend : " '", - append : "'," - }, - regExp = { - match : { - // templated values - name : '{component}', - titleName : '{Component}', - version : '{version}', - files : '{files}', - // release notes - spacedVersions : /(###.*\n)\n+(?=###)/gm, - spacedLists : /(^- .*\n)\n+(?=^-)/gm, - trim : /^\s+|\s+$/g, - unrelatedNotes : new RegExp('^((?!(^.*(' + component + ').*$|###.*)).)*$', 'gmi'), - whitespace : /\n\s*\n\s*\n/gm, - // npm - componentExport : /(.*)\$\.fn\.\w+\s*=\s*function\(([^\)]*)\)\s*{/g, - componentReference: '$.fn.' + component, - settingsExport : /\$\.fn\.\w+\.settings\s*=/g, - settingsReference : /\$\.fn\.\w+\.settings/g, - trailingComma : /,(?=[^,]*$)/, - jQuery : /jQuery/g, - }, - replace : { - // readme - name : component, - titleName : capitalizedComponent, - // release notes - spacedVersions : '', - spacedLists : '$1', - trim : '', - unrelatedNotes : '', - whitespace : '\n\n', - // npm - componentExport : 'var _module = module;\n$1module.exports = function($2) {', - componentReference: '_module.exports', - settingsExport : 'module.exports.settings =', - settingsReference : '_module.exports.settings', - jQuery : 'require("jquery")' - } - }, - task = { - all : component + ' creating', - repo : component + ' create repo', - bower : component + ' create bower.json', - readme : component + ' create README', - npm : component + ' create NPM Module', - notes : component + ' create release notes', - composer : component + ' create composer.json', - package : component + ' create package.json', - meteor : component + ' create meteor package.js', - }, - // paths to includable assets - manifest = { - assets : outputDirectory + '/assets/**/' + component + '?(s).*', - component : outputDirectory + '/' + component + '+(.js|.css)' - } - ; - - // copy dist files into output folder adjusting asset paths - function copyDist() { - return gulp.src(release.source + component + '.*') - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(release.paths.source, release.paths.output)) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // create npm module - function createNpmModule() { - return gulp.src(release.source + component + '!(*.min|*.map).js') - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(regExp.match.componentExport, regExp.replace.componentExport)) - .pipe(replace(regExp.match.componentReference, regExp.replace.componentReference)) - .pipe(replace(regExp.match.settingsExport, regExp.replace.settingsExport)) - .pipe(replace(regExp.match.settingsReference, regExp.replace.settingsReference)) - .pipe(replace(regExp.match.jQuery, regExp.replace.jQuery)) - .pipe(rename('index.js')) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // create readme - function createReadme() { - return gulp.src(release.templates.readme) - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(regExp.match.name, regExp.replace.name)) - .pipe(replace(regExp.match.titleName, regExp.replace.titleName)) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // extend bower.json - function extendBower() { - return gulp.src(release.templates.bower) - .pipe(plumber()) - .pipe(flatten()) - .pipe(jsonEditor(function(bower) { - bower.name = packageName; - bower.description = capitalizedComponent + ' - Semantic UI'; - if(isJavascript) { - if(isCSS) { - bower.main = [ - component + '.js', - component + '.css' - ]; - } - else { - bower.main = [ - component + '.js' - ]; - } - bower.dependencies = { - jquery: '>=1.8' - }; - } - else { - bower.main = [ - component + '.css' - ]; - } - return bower; - })) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // extend package.json - function extendPackage() { - return gulp.src(release.templates.package) - .pipe(plumber()) - .pipe(flatten()) - .pipe(jsonEditor(function(npm) { - if(isJavascript) { - npm.dependencies = { - jquery: 'x.x.x' - }; - npm.main = 'index.js'; - } - npm.name = packageName; - if(version) { - npm.version = version; - } - npm.title = 'Semantic UI - ' + capitalizedComponent; - npm.description = 'Single component release of ' + component; - npm.repository = { - type : 'git', - url : gitURL - }; - return npm; - })) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // extend composer.json - function extendComposer(){ - return gulp.src(release.templates.composer) - .pipe(plumber()) - .pipe(flatten()) - .pipe(jsonEditor(function(composer) { - if(isJavascript) { - composer.dependencies = { - jquery: 'x.x.x' - }; - composer.main = component + '.js'; - } - composer.name = 'semantic/' + component; - if(version) { - composer.version = version; - } - composer.description = 'Single component release of ' + component; - return composer; - })) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // create release notes - function createReleaseNotes() { - return gulp.src(release.templates.notes) - .pipe(plumber()) - .pipe(flatten()) - // Remove release notes for lines not mentioning component - .pipe(replace(regExp.match.unrelatedNotes, regExp.replace.unrelatedNotes)) - .pipe(replace(regExp.match.whitespace, regExp.replace.whitespace)) - .pipe(replace(regExp.match.spacedVersions, regExp.replace.spacedVersions)) - .pipe(replace(regExp.match.spacedLists, regExp.replace.spacedLists)) - .pipe(replace(regExp.match.trim, regExp.replace.trim)) - .pipe(gulp.dest(outputDirectory)) - ; - } - - // Creates meteor package.js - function createMeteorPackage() { - var - filenames = '' - ; - return gulp.src(manifest.component) - .pipe(concatFileNames('empty.txt', concatSettings)) - .pipe(tap(function(file) { - filenames += file.contents; - })) - .on('end', function() { - gulp.src(manifest.assets) - .pipe(concatFileNames('empty.txt', concatSettings)) - .pipe(tap(function(file) { - filenames += file.contents; - })) - .on('end', function() { - // remove trailing slash - filenames = filenames.replace(regExp.match.trailingComma, '').trim(); - gulp.src(release.templates.meteor.component) - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(regExp.match.name, regExp.replace.name)) - .pipe(replace(regExp.match.titleName, regExp.replace.titleName)) - .pipe(replace(regExp.match.version, version)) - .pipe(replace(regExp.match.files, filenames)) - .pipe(rename(release.files.meteor)) - .pipe(gulp.dest(outputDirectory)) - ; - }) - ; - }) - ; - } - - tasks.push(gulp.series( - copyDist, - createNpmModule, - extendBower, - createReadme, - extendPackage, - extendComposer, - createReleaseNotes, - createMeteorPackage - )); - })(component); - } - - gulp.series(...tasks)(callback); -}; diff --git a/tasks/admin/components/init.js b/tasks/admin/components/init.js deleted file mode 100644 index c9f627a..0000000 --- a/tasks/admin/components/init.js +++ /dev/null @@ -1,169 +0,0 @@ -/******************************* - Init Repos -*******************************/ - -/* - - This task pulls the latest version of each component from GitHub - - * Creates new repo if doesnt exist (locally & GitHub) - * Adds remote it doesnt exists - * Pulls latest changes from repo - -*/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - del = require('del'), - fs = require('fs'), - path = require('path'), - git = require('gulp-git'), - mkdirp = require('mkdirp'), - - // admin files - github = require('../../config/admin/github.js'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - - // oAuth configuration for GitHub - oAuth = fs.existsSync(__dirname + '/../../config/admin/oauth.js') - ? require('../../config/admin/oauth') - : false, - - // shorthand - version = project.version -; - -module.exports = function(callback) { - - var - index = -1, - total = release.components.length, - timer, - stream, - stepRepo - ; - - if(!oAuth) { - console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); - return; - } - - // Do Git commands synchronously per component, to avoid issues - stepRepo = function() { - - index = index + 1; - - if(index >= total) { - callback(); - return; - } - - var - component = release.components[index], - outputDirectory = path.resolve(release.outputRoot + component), - capitalizedComponent = component.charAt(0).toUpperCase() + component.slice(1), - repoName = release.componentRepoRoot + capitalizedComponent, - - gitOptions = { cwd: outputDirectory }, - pullOptions = { args: '-q', cwd: outputDirectory, quiet: true }, - resetOptions = { args: '-q --hard', cwd: outputDirectory, quiet: true }, - - gitURL = 'git@github.com:' + release.org + '/' + repoName + '.git', - repoURL = 'https://github.com/' + release.org + '/' + repoName + '/', - localRepoSetup = fs.existsSync(path.join(outputDirectory, '.git')) - ; - - console.log('Processing repository: ' + outputDirectory); - - // create folder if doesn't exist - if( !fs.existsSync(outputDirectory) ) { - mkdirp.sync(outputDirectory); - } - - // clean folder - if(release.outputRoot.search('../repos') == 0) { - console.info('Cleaning dir', outputDirectory); - del.sync([outputDirectory + '**/*'], {silent: true, force: true}); - } - - // set-up local repo - function setupRepo() { - if(localRepoSetup) { - addRemote(); - } - else { - initRepo(); - } - } - - function initRepo() { - console.info('Initializing repository for ' + component); - git.init(gitOptions, function(error) { - if(error) { - console.error('Error initializing repo', error); - } - addRemote(); - }); - } - - function createRepo() { - console.info('Creating GitHub repo ' + repoURL); - github.repos.createFromOrg({ - org : release.org, - name : repoName, - homepage : release.homepage - }, function() { - setupRepo(); - }); - } - - function addRemote() { - console.info('Adding remote origin as ' + gitURL); - git.addRemote('origin', gitURL, gitOptions, function(){ - pullFiles(); - }); - } - - function pullFiles() { - console.info('Pulling ' + component + ' files'); - git.pull('origin', 'master', pullOptions, function(error) { - resetFiles(); - }); - } - - function resetFiles() { - console.info('Resetting files to head'); - git.reset('HEAD', resetOptions, function(error) { - nextRepo(); - }); - } - - function nextRepo() { - //console.log('Sleeping for 1 second...'); - // avoid rate throttling - global.clearTimeout(timer); - timer = global.setTimeout(function() { - stepRepo() - }, 0); - } - - - if(localRepoSetup) { - pullFiles(); - } - else { - setupRepo(); - // createRepo() only use to create remote repo (easier to do manually) - } - - }; - - stepRepo(); - - -}; diff --git a/tasks/admin/components/update.js b/tasks/admin/components/update.js deleted file mode 100644 index 276c9e2..0000000 --- a/tasks/admin/components/update.js +++ /dev/null @@ -1,182 +0,0 @@ -/******************************* - Update Repos -*******************************/ - -/* - - This task update all SUI individual component repos with new versions of components - - * Commits changes from create repo - * Pushes changes to GitHub - * Tag new releases if version changed in main repo - -*/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - fs = require('fs'), - path = require('path'), - git = require('gulp-git'), - - // admin files - github = require('../../config/admin/github.js'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - - // oAuth configuration for GitHub - oAuth = fs.existsSync(__dirname + '/../../config/admin/oauth.js') - ? require('../../config/admin/oauth') - : false, - - // shorthand - version = project.version -; - -module.exports = function(callback) { - - var - index = -1, - total = release.components.length, - timer, - stream, - stepRepo - ; - - if(!oAuth) { - console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); - return; - } - - // Do Git commands synchronously per component, to avoid issues - stepRepo = function() { - - index = index + 1; - if(index >= total) { - callback(); - return; - } - - var - component = release.components[index], - outputDirectory = path.resolve(path.join(release.outputRoot, component)), - capitalizedComponent = component.charAt(0).toUpperCase() + component.slice(1), - repoName = release.componentRepoRoot + capitalizedComponent, - - gitURL = 'https://github.com/' + release.org + '/' + repoName + '.git', - repoURL = 'https://github.com/' + release.org + '/' + repoName + '/', - - commitArgs = (oAuth.name !== undefined && oAuth.email !== undefined) - ? '--author "' + oAuth.name + ' <' + oAuth.email + '>"' - : '', - - componentPackage = fs.existsSync(outputDirectory + 'package.json' ) - ? require(outputDirectory + 'package.json') - : false, - - isNewVersion = (version && componentPackage.version != version), - - commitMessage = (isNewVersion) - ? 'Updated component to version ' + version - : 'Updated files from main repo', - - gitOptions = { cwd: outputDirectory }, - commitOptions = { args: commitArgs, cwd: outputDirectory }, - releaseOptions = { tag_name: version, owner: release.org, repo: repoName }, - - fileModeOptions = { args : 'config core.fileMode false', cwd: outputDirectory }, - usernameOptions = { args : 'config user.name "' + oAuth.name + '"', cwd: outputDirectory }, - emailOptions = { args : 'config user.email "' + oAuth.email + '"', cwd: outputDirectory }, - versionOptions = { args : 'rev-parse --verify HEAD', cwd: outputDirectory }, - - localRepoSetup = fs.existsSync(path.join(outputDirectory, '.git')), - canProceed = true - ; - - - console.info('Processing repository:' + outputDirectory); - - function setConfig() { - git.exec(fileModeOptions, function() { - git.exec(usernameOptions, function () { - git.exec(emailOptions, function () { - commitFiles(); - }); - }); - }); - } - - - // standard path - function commitFiles() { - // commit files - console.info('Committing ' + component + ' files', commitArgs); - gulp.src('./', gitOptions) - .pipe(git.add(gitOptions)) - .pipe(git.commit(commitMessage, commitOptions)) - .on('error', function(error) { - // canProceed = false; bug in git commit - }) - .on('finish', function(callback) { - if(canProceed) { - pushFiles(); - } - else { - console.info('Nothing new to commit'); - nextRepo(); - } - }) - ; - } - - // push changes to remote - function pushFiles() { - console.info('Pushing files for ' + component); - git.push('origin', 'master', { args: '', cwd: outputDirectory }, function(error) { - console.info('Push completed successfully'); - getSHA(); - }); - } - - // gets SHA of last commit - function getSHA() { - git.exec(versionOptions, function(error, version) { - version = version.trim(); - createRelease(version); - }); - } - - // create release on GitHub.com - function createRelease(version) { - if(version) { - releaseOptions.target_commitish = version; - } - github.repos.createRelease(releaseOptions, function() { - nextRepo(); - }); - } - - // Steps to next repository - function nextRepo() { - console.log('Sleeping for 1 second...'); - // avoid rate throttling - global.clearTimeout(timer); - timer = global.setTimeout(stepRepo, 100); - } - - - if(localRepoSetup) { - setConfig(); - } - else { - console.error('Repository must be setup before running update components'); - } - - }; - - stepRepo(); - -}; diff --git a/tasks/admin/distributions/create.js b/tasks/admin/distributions/create.js deleted file mode 100644 index 6fe6921..0000000 --- a/tasks/admin/distributions/create.js +++ /dev/null @@ -1,208 +0,0 @@ -/******************************* - Create Distributions -*******************************/ - -/* - This will create individual distribution repositories for each SUI distribution - - * copy distribution files to release - * update package.json file -*/ - -var - gulp = require('gulp'), - - // node dependencies - fs = require('fs'), - path = require('path'), - mergeStream = require('merge-stream'), - - // admin dependencies - flatten = require('gulp-flatten'), - jsonEditor = require('gulp-json-editor'), - plumber = require('gulp-plumber'), - rename = require('gulp-rename'), - replace = require('gulp-replace'), - - // config - config = require('../../config/user'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - // shorthand - version = project.version, - output = config.paths.output - -; - - -module.exports = function(callback) { - var - stream, - index, - tasks = [] - ; - - for(index in release.distributions) { - - var - distribution = release.distributions[index] - ; - - // streams... designed to save time and make coding fun... - (function(distribution) { - - var - distLowerCase = distribution.toLowerCase(), - outputDirectory = path.join(release.outputRoot, distLowerCase), - packageFile = path.join(outputDirectory, release.files.npm), - repoName = release.distRepoRoot + distribution, - regExp = { - match : { - files : '{files}', - version : '{version}' - } - }, - task = { - all : distribution + ' copying files', - repo : distribution + ' create repo', - meteor : distribution + ' create meteor package.js', - package : distribution + ' create package.json' - }, - gatherFiles, - createList - ; - - // get files for meteor - gatherFiles = function(dir) { - var - dir = dir || path.resolve('.'), - list = fs.readdirSync(dir), - omitted = [ - '.git', - 'node_modules', - 'package.js', - 'LICENSE', - 'README.md', - 'package.json', - 'bower.json', - '.gitignore' - ], - files = [] - ; - list.forEach(function(file) { - var - isOmitted = (omitted.indexOf(file) > -1), - filePath = path.join(dir, file), - stat = fs.statSync(filePath) - ; - if(!isOmitted) { - if(stat && stat.isDirectory()) { - files = files.concat(gatherFiles(filePath)); - } - else { - files.push(filePath.replace(outputDirectory + path.sep, '')); - } - } - }); - return files; - }; - - // spaces out list correctly - createList = function(files) { - var filenames = ''; - for(var file in files) { - if(file == (files.length - 1) ) { - filenames += "'" + files[file] + "'"; - } - else { - filenames += "'" + files[file] + "',\n "; - } - } - return filenames; - }; - - tasks.push(function() { - var - files = gatherFiles(outputDirectory), - filenames = createList(files) - ; - gulp.src(release.templates.meteor[distLowerCase]) - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(regExp.match.version, version)) - .pipe(replace(regExp.match.files, filenames)) - .pipe(rename(release.files.meteor)) - .pipe(gulp.dest(outputDirectory)) - ; - }); - - if(distribution == 'CSS') { - tasks.push(function() { - var - themes, - components, - releases - ; - themes = gulp.src('dist/themes/default/**/*', { base: 'dist/' }) - .pipe(gulp.dest(outputDirectory)) - ; - components = gulp.src('dist/components/*', { base: 'dist/' }) - .pipe(gulp.dest(outputDirectory)) - ; - releases = gulp.src('dist/*', { base: 'dist/' }) - .pipe(gulp.dest(outputDirectory)) - ; - return mergeStream(themes, components, releases); - }); - } - else if(distribution == 'LESS') { - tasks.push(function() { - var - definitions, - themeImport, - themeConfig, - siteTheme, - themes - ; - definitions = gulp.src('src/definitions/**/*', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - themeImport = gulp.src('src/semantic.less', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - themeImport = gulp.src('src/theme.less', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - themeConfig = gulp.src('src/theme.config.example', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - siteTheme = gulp.src('src/_site/**/*', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - themes = gulp.src('src/themes/**/*', { base: 'src/' }) - .pipe(gulp.dest(outputDirectory)) - ; - return mergeStream(definitions, themeImport, themeConfig, siteTheme, themes); - }); - } - - // extend package.json - tasks.push(function() { - return gulp.src(packageFile) - .pipe(plumber()) - .pipe(jsonEditor(function(package) { - if(version) { - package.version = version; - } - return package; - })) - .pipe(gulp.dest(outputDirectory)) - ; - }); - - })(distribution); - } - - gulp.series(...tasks)(callback); -}; \ No newline at end of file diff --git a/tasks/admin/distributions/init.js b/tasks/admin/distributions/init.js deleted file mode 100644 index 124e131..0000000 --- a/tasks/admin/distributions/init.js +++ /dev/null @@ -1,168 +0,0 @@ -/******************************* - Init Dist Repos -*******************************/ - -/* - - This task pulls the latest version of distribution from GitHub - - * Creates new repo if doesnt exist (locally & GitHub) - * Adds remote it doesnt exists - * Pulls latest changes from repo - -*/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - del = require('del'), - fs = require('fs'), - path = require('path'), - git = require('gulp-git'), - mkdirp = require('mkdirp'), - - // admin files - github = require('../../config/admin/github.js'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - - // oAuth configuration for GitHub - oAuth = fs.existsSync(__dirname + '/../../config/admin/oauth.js') - ? require('../../config/admin/oauth') - : false, - - // shorthand - version = project.version -; - -module.exports = function(callback) { - - var - index = -1, - total = release.distributions.length, - timer, - stream, - stepRepo - ; - - if(!oAuth) { - console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); - return; - } - - // Do Git commands synchronously per component, to avoid issues - stepRepo = function() { - - index = index + 1; - - if(index >= total) { - callback(); - return; - } - - var - component = release.distributions[index], - lowerCaseComponent = component.toLowerCase(), - outputDirectory = path.resolve(release.outputRoot + lowerCaseComponent), - repoName = release.distRepoRoot + component, - - gitOptions = { cwd: outputDirectory }, - pullOptions = { args: '-q', cwd: outputDirectory, quiet: true }, - resetOptions = { args: '-q --hard', cwd: outputDirectory, quiet: true }, - gitURL = 'git@github.com:' + release.org + '/' + repoName + '.git', - repoURL = 'https://github.com/' + release.org + '/' + repoName + '/', - localRepoSetup = fs.existsSync(path.join(outputDirectory, '.git')) - ; - - console.log('Processing repository: ' + outputDirectory); - - // create folder if doesn't exist - if( !fs.existsSync(outputDirectory) ) { - mkdirp.sync(outputDirectory); - } - - // clean folder - if(release.outputRoot.search('../repos') == 0) { - console.info('Cleaning dir', outputDirectory); - del.sync([outputDirectory + '**/*'], {silent: true, force: true}); - } - - // set-up local repo - function setupRepo() { - if(localRepoSetup) { - addRemote(); - } - else { - initRepo(); - } - } - - function initRepo() { - console.info('Initializing repository for ' + component); - git.init(gitOptions, function(error) { - if(error) { - console.error('Error initializing repo', error); - } - addRemote(); - }); - } - - function createRepo() { - console.info('Creating GitHub repo ' + repoURL); - github.repos.createFromOrg({ - org : release.org, - name : repoName, - homepage : release.homepage - }, function() { - setupRepo(); - }); - } - - function addRemote() { - console.info('Adding remote origin as ' + gitURL); - git.addRemote('origin', gitURL, gitOptions, function(){ - pullFiles(); - }); - } - - function pullFiles() { - console.info('Pulling ' + component + ' files'); - git.pull('origin', 'master', pullOptions, function(error) { - resetFiles(); - }); - } - - function resetFiles() { - console.info('Resetting files to head'); - git.reset('HEAD', resetOptions, function(error) { - nextRepo(); - }); - } - - function nextRepo() { - //console.log('Sleeping for 1 second...'); - // avoid rate throttling - global.clearTimeout(timer); - timer = global.setTimeout(function() { - stepRepo() - }, 0); - } - - - if(localRepoSetup) { - pullFiles(); - } - else { - setupRepo(); - // createRepo() only use to create remote repo (easier to do manually) - } - - }; - - stepRepo(); - - -}; diff --git a/tasks/admin/distributions/update.js b/tasks/admin/distributions/update.js deleted file mode 100644 index bc3614b..0000000 --- a/tasks/admin/distributions/update.js +++ /dev/null @@ -1,177 +0,0 @@ -/******************************* - Update Repos -*******************************/ - -/* - - This task update all SUI individual distribution repos with new versions of distributions - - * Commits changes from create repo - * Pushes changes to GitHub - * Tag new releases if version changed in main repo - -*/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - fs = require('fs'), - path = require('path'), - git = require('gulp-git'), - - // admin files - github = require('../../config/admin/github.js'), - release = require('../../config/admin/release'), - project = require('../../config/project/release'), - - - // oAuth configuration for GitHub - oAuth = fs.existsSync(__dirname + '/../../config/admin/oauth.js') - ? require('../../config/admin/oauth') - : false, - - // shorthand - version = project.version -; - -module.exports = function(callback) { - - var - index = -1, - total = release.distributions.length, - timer, - stream, - stepRepo - ; - - if(!oAuth) { - console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); - return; - } - - // Do Git commands synchronously per distribution, to avoid issues - stepRepo = function() { - - index = index + 1; - if(index >= total) { - callback(); - return; - } - - var - distribution = release.distributions[index], - outputDirectory = path.resolve(path.join(release.outputRoot, distribution.toLowerCase() )), - repoName = release.distRepoRoot + distribution, - - commitArgs = (oAuth.name !== undefined && oAuth.email !== undefined) - ? '--author "' + oAuth.name + ' <' + oAuth.email + '>"' - : '', - - distributionPackage = fs.existsSync(outputDirectory + 'package.json' ) - ? require(outputDirectory + 'package.json') - : false, - - isNewVersion = (version && distributionPackage.version != version), - - commitMessage = (isNewVersion) - ? 'Updated distribution to version ' + version - : 'Updated files from main repo', - - gitOptions = { cwd: outputDirectory }, - commitOptions = { args: commitArgs, cwd: outputDirectory }, - releaseOptions = { tag_name: version, owner: release.org, repo: repoName }, - - fileModeOptions = { args : 'config core.fileMode false', cwd: outputDirectory }, - usernameOptions = { args : 'config user.name "' + oAuth.name + '"', cwd: outputDirectory }, - emailOptions = { args : 'config user.email "' + oAuth.email + '"', cwd: outputDirectory }, - versionOptions = { args : 'rev-parse --verify HEAD', cwd: outputDirectory }, - - localRepoSetup = fs.existsSync(path.join(outputDirectory, '.git')), - canProceed = true - ; - - - console.info('Processing repository:' + outputDirectory); - - function setConfig() { - git.exec(fileModeOptions, function() { - git.exec(usernameOptions, function () { - git.exec(emailOptions, function () { - commitFiles(); - }); - }); - }); - } - - // standard path - function commitFiles() { - // commit files - console.info('Committing ' + distribution + ' files', commitArgs); - gulp.src('./', gitOptions) - .pipe(git.add(gitOptions)) - .pipe(git.commit(commitMessage, commitOptions)) - .on('error', function(error) { - // canProceed = false; bug in git commit - }) - .on('finish', function(callback) { - if(canProceed) { - pushFiles(); - } - else { - console.info('Nothing new to commit'); - nextRepo(); - } - }) - ; - } - - // push changes to remote - function pushFiles() { - console.info('Pushing files for ' + distribution); - git.push('origin', 'master', { args: '', cwd: outputDirectory }, function(error) { - console.info('Push completed successfully'); - getSHA(); - }); - } - - // gets SHA of last commit - function getSHA() { - git.exec(versionOptions, function(error, version) { - version = version.trim(); - createRelease(version); - }); - } - - // create release on GitHub.com - function createRelease(version) { - if(version) { - releaseOptions.target_commitish = version; - } - github.repos.createRelease(releaseOptions, function() { - nextRepo(); - }); - } - - // Steps to next repository - function nextRepo() { - console.log('Sleeping for 1 second...'); - // avoid rate throttling - global.clearTimeout(timer); - timer = global.setTimeout(stepRepo, 100); - } - - - if(localRepoSetup) { - setConfig(); - } - else { - console.error('Repository must be setup before running update distributions'); - } - - }; - - stepRepo(); - -}; diff --git a/tasks/admin/publish.js b/tasks/admin/publish.js deleted file mode 100644 index f969e17..0000000 --- a/tasks/admin/publish.js +++ /dev/null @@ -1,24 +0,0 @@ -/******************************* - * Release All - *******************************/ - -/* - This task update all SUI individual component repos with new versions of components - - * Commits changes from create components to GitHub and Tags - -*/ - -var - gulp = require('gulp') -; - -/* Release All */ -module.exports = function (callback) { - - gulp.series( - 'update distributions', // commit less/css versions to github - 'update components', // commit components to github - )(callback); - -}; \ No newline at end of file diff --git a/tasks/admin/register.js b/tasks/admin/register.js deleted file mode 100644 index d45dd29..0000000 --- a/tasks/admin/register.js +++ /dev/null @@ -1,55 +0,0 @@ -/******************************* - Register PM -*******************************/ - -/* - Task to register component repos with Package Managers - * Registers component with bower - * Registers component with NPM -*/ - -var - // node dependencies - process = require('child_process'), - - // config - release = require('../config/admin/release'), - - // register components and distributions - repos = release.distributions.concat(release.components), - total = repos.length, - index = -1, - - stream, - stepRepo -; - -module.exports = function(callback) { - - console.log('Registering repos with package managers'); - - // Do Git commands synchronously per component, to avoid issues - stepRepo = function() { - index = index + 1; - if(index >= total) { - callback(); - return; - } - var - repo = repos[index].toLowerCase(), - outputDirectory = release.outputRoot + repo + '/', - exec = process.exec, - execSettings = {cwd: outputDirectory}, - updateNPM = 'npm publish;meteor publish;' - ; - - /* Register with NPM */ - exec(updateNPM, execSettings, function(err, stdout, stderr) { - console.log(err, stdout, stderr); - stepRepo(); - }); - - }; - stepRepo(); -}; - diff --git a/tasks/admin/release.js b/tasks/admin/release.js deleted file mode 100644 index 87962af..0000000 --- a/tasks/admin/release.js +++ /dev/null @@ -1,28 +0,0 @@ -/******************************* - * Release - *******************************/ - -/* - This task update all SUI individual component repos with new versions of components - - * Initializes repositories with current versions - * Creates local files at ../distributions/ with each repo for release - -*/ - -var - gulp = require('gulp') -; - -/* Release All */ -module.exports = function (callback) { - - gulp.series( - //'build', // build Semantic - 'init distributions', // sync with current github version - 'create distributions', // update each repo with changes from master repo - 'init components', // sync with current github version - 'create components', // update each repo - )(callback); - -}; \ No newline at end of file diff --git a/tasks/build.js b/tasks/build.js deleted file mode 100644 index 340646a..0000000 --- a/tasks/build.js +++ /dev/null @@ -1,23 +0,0 @@ -/******************************* - * Build Task - *******************************/ - -var - // dependencies - gulp = require('gulp'), - - // config - install = require('./config/project/install') -; - -module.exports = function (callback) { - - console.info('Building Semantic'); - - if (!install.isSetup()) { - console.error('Cannot find semantic.json. Run "gulp install" to set-up Semantic'); - return 1; - } - - gulp.series('build-css'/*, 'build-javascript'*/, 'build-assets')(callback); -}; diff --git a/tasks/build/assets.js b/tasks/build/assets.js deleted file mode 100644 index bfb0cf2..0000000 --- a/tasks/build/assets.js +++ /dev/null @@ -1,63 +0,0 @@ -/******************************* - Build Task - *******************************/ - -var - gulp = require('gulp'), - - // gulp dependencies - chmod = require('gulp-chmod'), - gulpif = require('gulp-if'), - normalize = require('normalize-path'), - print = require('gulp-print').default, - - // config - config = require('../config/user'), - tasks = require('../config/tasks'), - install = require('../config/project/install'), - - log = tasks.log -; - -function build(src, config) { - return gulp.src(src, {base: config.paths.source.themes}) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulp.dest(config.paths.output.themes)) - .pipe(print(log.created)) - ; -} - -function buildAssets(src, config, callback) { - if (!install.isSetup()) { - console.error('Cannot build assets. Run "gulp install" to set-up Semantic'); - callback(); - return; - } - - if (callback === undefined) { - callback = config; - config = src; - src = config.paths.source.themes + '/**/assets/**/*.*'; - } - - // copy assets - var assets = () => build(src, config); - assets.displayName = "Building Assets"; - - gulp.series(assets)(callback); -} - -module.exports = function (callback) { - buildAssets(config, callback); -}; - -module.exports.watch = function (type, config) { - gulp - .watch([normalize(config.paths.source.themes + '/**/assets/**/*.*')]) - .on('all', function (event, path) { - console.log('Change in assets detected'); - return gulp.series((callback) => buildAssets(path, config, callback))(); - }); -}; - -module.exports.buildAssets = buildAssets; \ No newline at end of file diff --git a/tasks/build/css.js b/tasks/build/css.js deleted file mode 100644 index 8f4168f..0000000 --- a/tasks/build/css.js +++ /dev/null @@ -1,267 +0,0 @@ -/******************************* - * Build Task - *******************************/ - -const - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - - // gulp dependencies - autoprefixer = require('gulp-autoprefixer'), - chmod = require('gulp-chmod'), - concatCSS = require('gulp-concat-css'), - dedupe = require('gulp-dedupe'), - flatten = require('gulp-flatten'), - gulpif = require('gulp-if'), - header = require('gulp-header'), - less = require('gulp-less'), - minifyCSS = require('gulp-clean-css'), - normalize = require('normalize-path'), - plumber = require('gulp-plumber'), - print = require('gulp-print').default, - rename = require('gulp-rename'), - replace = require('gulp-replace'), - replaceExt = require('replace-ext'), - rtlcss = require('gulp-rtlcss'), - - // config - config = require('./../config/user'), - docsConfig = require('./../config/docs'), - tasks = require('../config/tasks'), - install = require('../config/project/install'), - - // shorthand - globs = config.globs, - assets = config.paths.assets, - - banner = tasks.banner, - filenames = tasks.filenames, - comments = tasks.regExp.comments, - log = tasks.log, - settings = tasks.settings -; - -/** - * Builds the css - * @param src - * @param type - * @param compress - * @param config - * @param opts - * @return {*} - */ -function build(src, type, compress, config, opts) { - let fileExtension; - if (type === 'rtl' && compress) { - fileExtension = settings.rename.rtlMinCSS; - } else if (type === 'rtl') { - fileExtension = settings.rename.rtlCSS; - } else if (compress) { - fileExtension = settings.rename.minCSS; - } - - return gulp.src(src, opts) - .pipe(plumber(settings.plumber.less)) - .pipe(less(settings.less)) - .pipe(autoprefixer(settings.prefix)) - .pipe(gulpif(type === 'rtl', rtlcss())) - .pipe(replace(comments.variables.in, comments.variables.out)) - .pipe(replace(comments.license.in, comments.license.out)) - .pipe(replace(comments.large.in, comments.large.out)) - .pipe(replace(comments.small.in, comments.small.out)) - .pipe(replace(comments.tiny.in, comments.tiny.out)) - .pipe(flatten()) - .pipe(replace(config.paths.assets.source, - compress ? config.paths.assets.compressed : config.paths.assets.uncompressed)) - .pipe(gulpif(compress, minifyCSS(settings.minify))) - .pipe(gulpif(fileExtension, rename(fileExtension))) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulp.dest(compress ? config.paths.output.compressed : config.paths.output.uncompressed)) - .pipe(print(log.created)) - ; -} - -/** - * Packages the css files in dist - * @param {string} type - type of the css processing (none, rtl, docs) - * @param {boolean} compress - should the output be compressed - */ -function pack(type, compress) { - const output = type === 'docs' ? docsConfig.paths.output : config.paths.output; - const ignoredGlobs = type === 'rtl' ? globs.ignoredRTL + '.rtl.css' : globs.ignored + '.css'; - - let concatenatedCSS; - if (type === 'rtl') { - concatenatedCSS = compress ? filenames.concatenatedMinifiedRTLCSS : filenames.concatenatedRTLCSS; - } else { - concatenatedCSS = compress ? filenames.concatenatedMinifiedCSS : filenames.concatenatedCSS; - } - - return gulp.src(output.uncompressed + '/**/' + globs.components + ignoredGlobs) - .pipe(plumber()) - .pipe(dedupe()) - .pipe(replace(assets.uncompressed, assets.packaged)) - .pipe(concatCSS(concatenatedCSS, settings.concatCSS)) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulpif(compress, minifyCSS(settings.concatMinify))) - .pipe(header(banner, settings.header)) - .pipe(gulp.dest(output.packaged)) - .pipe(print(log.created)) - ; -} - -function buildCSS(src, type, config, opts, callback) { - if (!install.isSetup()) { - console.error('Cannot build CSS files. Run "gulp install" to set-up Semantic'); - callback(); - return; - } - - if (callback === undefined) { - callback = opts; - opts = config; - config = type; - type = src; - src = config.paths.source.definitions + '/**/' + config.globs.components + '.less'; - } - - if (globs.individuals !== undefined && typeof src === 'string') { - const individuals = config.globs.individuals.replace('{',''); - const components = config.globs.components.replace('}',',').concat(individuals); - - src = config.paths.source.definitions + '/**/' + components + '.less'; - } - - const buildUncompressed = () => build(src, type, false, config, opts); - buildUncompressed.displayName = 'Building uncompressed CSS'; - - const buildCompressed = () => build(src, type, true, config, opts); - buildCompressed.displayName = 'Building compressed CSS'; - - const packUncompressed = () => pack(type, false); - packUncompressed.displayName = 'Packing uncompressed CSS'; - - const packCompressed = () => pack(type, true); - packCompressed.displayName = 'Packing compressed CSS'; - - gulp.parallel( - gulp.series( - buildUncompressed, - gulp.parallel(packUncompressed, packCompressed) - ), - gulp.series(buildCompressed) - )(callback); -} - -function rtlAndNormal(src, callback) { - if (callback === undefined) { - callback = src; - src = config.paths.source.definitions + '/**/' + config.globs.components + '.less'; - } - - const rtl = (callback) => buildCSS(src, 'rtl', config, {}, callback); - rtl.displayName = "CSS Right-To-Left"; - const css = (callback) => buildCSS(src, 'default', config, {}, callback); - css.displayName = "CSS"; - - if (config.rtl === true || config.rtl === 'Yes') { - rtl(callback); - } else if (config.rtl === 'both') { - gulp.series(rtl, css)(callback); - } else { - css(callback); - } -} - -function docs(src, callback) { - if (callback === undefined) { - callback = src; - src = config.paths.source.definitions + '/**/' + config.globs.components + '.less'; - } - - const func = (callback) => buildCSS(src, 'docs', config, {}, callback); - func.displayName = "CSS Docs"; - - func(callback); -} - -// Default tasks -module.exports = rtlAndNormal; - -// We keep the changed files in an array to call build with all of them at the same time -let timeout, files = []; - -/** - * Watch changes in CSS files and call the correct build pipe - * @param type - * @param config - */ -module.exports.watch = function (type, config) { - const method = type === 'docs' ? docs : rtlAndNormal; - - // Watch theme.config file - gulp.watch([ - normalize(config.paths.source.config), - normalize(config.paths.source.site + '/**/site.variables'), - normalize(config.paths.source.themes + '/**/site.variables') - ]) - .on('all', function () { - // Clear timeout and reset files - timeout && clearTimeout(timeout); - files = []; - return gulp.series(method)(); - }); - - // Watch any less / overrides / variables files - gulp.watch([ - normalize(config.paths.source.definitions + '/**/*.less'), - normalize(config.paths.source.site + '/**/*.{overrides,variables}'), - normalize(config.paths.source.themes + '/**/*.{overrides,variables}') - ]) - .on('all', function (event, path) { - // We don't handle deleted files yet - if (event === 'unlink' || event === 'unlinkDir') { - return; - } - - // Clear timeout - timeout && clearTimeout(timeout); - - // Determine which LESS file has to be recompiled - let lessPath; - if(path.indexOf('site.variables') !== -1) { - return; - } else if (path.indexOf(config.paths.source.themes) !== -1) { - console.log('Change detected in packaged theme'); - lessPath = replaceExt(path, '.less'); - lessPath = lessPath.replace(tasks.regExp.theme, config.paths.source.definitions); - } else if (path.indexOf(config.paths.source.site) !== -1) { - console.log('Change detected in site theme'); - lessPath = replaceExt(path, '.less'); - lessPath = lessPath.replace(config.paths.source.site, config.paths.source.definitions); - } else { - console.log('Change detected in definition'); - lessPath = path; - } - - // Add file to internal changed files array - if (!files.includes(lessPath)) { - files.push(lessPath); - } - - // Update timeout - timeout = setTimeout(() => { - // Copy files to build in another array - const buildFiles = [...files]; - // Call method - gulp.series((callback) => method(buildFiles, callback))(); - // Reset internal changed files array - files = []; - }, 1000); - }); -}; - -// Expose build css method -module.exports.buildCSS = buildCSS; \ No newline at end of file diff --git a/tasks/build/javascript.js b/tasks/build/javascript.js deleted file mode 100644 index 0b27fac..0000000 --- a/tasks/build/javascript.js +++ /dev/null @@ -1,159 +0,0 @@ -/******************************* - Build Task - *******************************/ - -const - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - - // gulp dependencies - chmod = require('gulp-chmod'), - concat = require('gulp-concat'), - dedupe = require('gulp-dedupe'), - flatten = require('gulp-flatten'), - gulpif = require('gulp-if'), - header = require('gulp-header'), - normalize = require('normalize-path'), - plumber = require('gulp-plumber'), - print = require('gulp-print').default, - rename = require('gulp-rename'), - replace = require('gulp-replace'), - uglify = require('gulp-uglify'), - - // config - config = require('./../config/user'), - docsConfig = require('./../config/docs'), - tasks = require('../config/tasks'), - install = require('../config/project/install'), - - // shorthand - globs = config.globs, - assets = config.paths.assets, - - banner = tasks.banner, - filenames = tasks.filenames, - comments = tasks.regExp.comments, - log = tasks.log, - settings = tasks.settings -; - -/** - * Concat and uglify the Javascript files - * @param {string|array} src - source files - * @param type - * @param config - * @return {*} - */ -function build(src, type, config) { - return gulp.src(src) - .pipe(plumber()) - .pipe(flatten()) - .pipe(replace(comments.license.in, comments.license.out)) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulp.dest(config.paths.output.uncompressed)) - .pipe(print(log.created)) - .pipe(uglify(settings.uglify)) - .pipe(rename(settings.rename.minJS)) - .pipe(header(banner, settings.header)) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulp.dest(config.paths.output.compressed)) - .pipe(print(log.created)) - ; -} - -/** - * Packages the Javascript files in dist - * @param {string} type - type of the js processing (none, rtl, docs) - * @param {boolean} compress - should the output be compressed - */ -function pack(type, compress) { - const output = type === 'docs' ? docsConfig.paths.output : config.paths.output; - const concatenatedJS = compress ? filenames.concatenatedMinifiedJS : filenames.concatenatedJS; - - return gulp.src(output.uncompressed + '/**/' + globs.components + globs.ignored + '.js') - .pipe(plumber()) - .pipe(dedupe()) - .pipe(replace(assets.uncompressed, assets.packaged)) - .pipe(concat(concatenatedJS)) - .pipe(gulpif(compress, uglify(settings.concatUglify))) - .pipe(header(banner, settings.header)) - .pipe(gulpif(config.hasPermissions, chmod(config.parsedPermissions))) - .pipe(gulp.dest(output.packaged)) - .pipe(print(log.created)) - ; -} - -function buildJS(src, type, config, callback) { - if (!install.isSetup()) { - console.error('Cannot build Javascript. Run "gulp install" to set-up Semantic'); - callback(); - return; - } - - if (callback === undefined) { - callback = config; - config = type; - type = src; - src = config.paths.source.definitions + '/**/' + config.globs.components + (config.globs.ignored || '') + '.js'; - } - - if (globs.individuals !== undefined && typeof src === 'string') { - const individuals = config.globs.individuals.replace('{',''); - const components = config.globs.components.replace('}',',').concat(individuals); - - src = config.paths.source.definitions + '/**/' + components + (config.globs.ignored || '') + '.js'; - } - - // copy source javascript - const js = () => build(src, type, config); - js.displayName = "Building un/compressed Javascript"; - - const packUncompressed = () => pack(type, false); - packUncompressed.displayName = 'Packing uncompressed Javascript'; - - const packCompressed = () => pack(type, true); - packCompressed.displayName = 'Packing compressed Javascript'; - - gulp.series(js, gulp.parallel(packUncompressed, packCompressed))(callback); -} - -module.exports = function (callback) { - buildJS(false, config, callback); -}; - -// We keep the changed files in an array to call build with all of them at the same time -let timeout, files = []; - -module.exports.watch = function (type, config) { - gulp - .watch([normalize(config.paths.source.definitions + '/**/*.js')]) - .on('all', function (event, path) { - // We don't handle deleted files yet - if (event === 'unlink' || event === 'unlinkDir') { - return; - } - - // Clear timeout - timeout && clearTimeout(timeout); - - // Add file to internal changed files array - if (!files.includes(path)) { - files.push(path); - } - - // Update timeout - timeout = setTimeout(() => { - console.log('Change in javascript detected'); - // Copy files to build in another array - const buildFiles = [...files]; - // Call method - gulp.series((callback) => buildJS(buildFiles, type, config, callback))(); - // Reset internal changed files array - files = []; - }, 1000); - }); -}; - -module.exports.buildJS = buildJS; \ No newline at end of file diff --git a/tasks/check-install.js b/tasks/check-install.js deleted file mode 100644 index a82297e..0000000 --- a/tasks/check-install.js +++ /dev/null @@ -1,27 +0,0 @@ -/******************************* - * Check Install - *******************************/ - -var - // node dependencies - gulp = require('gulp'), - console = require('better-console'), - isSetup = require('./config/project/install').isSetup, - - install = require('./install'), - watch = require('./watch') -; - -// export task -module.exports = function (callback) { - - setTimeout(function () { - if (!isSetup()) { - console.log('Starting install...'); - install(callback); - } else { - watch(callback); - } - }, 50); // Delay to allow console.clear to remove messages from check event - -}; \ No newline at end of file diff --git a/tasks/clean.js b/tasks/clean.js deleted file mode 100644 index 262cf21..0000000 --- a/tasks/clean.js +++ /dev/null @@ -1,14 +0,0 @@ -/******************************* - Clean Task -*******************************/ - -var - del = require('del'), - config = require('./config/user'), - tasks = require('./config/tasks') -; - -// cleans distribution files -module.exports = function() { - return del([config.paths.clean], tasks.settings.del); -}; \ No newline at end of file diff --git a/tasks/collections/README.md b/tasks/collections/README.md deleted file mode 100644 index 1cae511..0000000 --- a/tasks/collections/README.md +++ /dev/null @@ -1,16 +0,0 @@ -## How to use - -These are collections of tasks that are imported together. - -To import them into gulp: -```javascript -var - gulp = require('gulp'), - // modified to point to semantic folder - install = require('tasks/collections/install') -; -gulp = install(gulp); - -// tasks are now injected and ready to be used -gulp.start('install'); -``` \ No newline at end of file diff --git a/tasks/collections/admin.js b/tasks/collections/admin.js deleted file mode 100644 index 4a40c1f..0000000 --- a/tasks/collections/admin.js +++ /dev/null @@ -1,64 +0,0 @@ -/******************************* - * Admin Task Collection - *******************************/ - -/* - This are tasks to be run by project maintainers - - Creating Component Repos - - Syncing with GitHub via APIs - - Modifying package files -*/ - -/******************************* - * Tasks - *******************************/ - - -module.exports = function (gulp) { - var - // less/css distributions - initComponents = require('../admin/components/init'), - createComponents = require('../admin/components/create'), - updateComponents = require('../admin/components/update'), - - // single component releases - initDistributions = require('../admin/distributions/init'), - createDistributions = require('../admin/distributions/create'), - updateDistributions = require('../admin/distributions/update'), - - release = require('../admin/release'), - publish = require('../admin/publish'), - register = require('../admin/register') - ; - - /* Release */ - gulp.task('init distributions', initDistributions); - gulp.task('init distributions').description = 'Grabs each component from GitHub'; - - gulp.task('create distributions', createDistributions); - gulp.task('create distributions').description = 'Updates files in each repo'; - - gulp.task('init components', initComponents); - gulp.task('init components').description = 'Grabs each component from GitHub'; - - gulp.task('create components', createComponents); - gulp.task('create components').description = 'Updates files in each repo'; - - /* Publish */ - gulp.task('update distributions', updateDistributions); - gulp.task('update distributions').description = 'Commits component updates from create to GitHub'; - - gulp.task('update components', updateComponents); - gulp.task('update components').description = 'Commits component updates from create to GitHub'; - - /* Tasks */ - gulp.task('release', release); - gulp.task('release').description = 'Stages changes in GitHub repos for all distributions'; - - gulp.task('publish', publish); - gulp.task('publish').description = 'Publishes all releases (components, package)'; - - gulp.task('register', register); - gulp.task('register').description = 'Registers all packages with NPM'; - -}; \ No newline at end of file diff --git a/tasks/collections/build.js b/tasks/collections/build.js deleted file mode 100644 index 4750e2f..0000000 --- a/tasks/collections/build.js +++ /dev/null @@ -1,32 +0,0 @@ -/******************************* - * Define Build Sub-Tasks - *******************************/ - -module.exports = function (gulp) { - - // build sub-tasks - const - watch = require('./../watch'), - - build = require('./../build'), - buildJS = require('./../build/javascript'), - buildCSS = require('./../build/css'), - buildAssets = require('./../build/assets') - ; - - gulp.task('watch', watch); - gulp.task('watch').description = 'Watch for site/theme changes'; - - gulp.task('build', build); - gulp.task('build').description = 'Builds all files from source'; - - gulp.task('build-javascript', buildJS); - gulp.task('build-javascript').description = 'Builds all javascript from source'; - - gulp.task('build-css', buildCSS); - gulp.task('build-css').description = 'Builds all css from source'; - - gulp.task('build-assets', buildAssets); - gulp.task('build-assets').description = 'Copies all assets from source'; - -}; diff --git a/tasks/collections/docs.js b/tasks/collections/docs.js deleted file mode 100644 index ffb9452..0000000 --- a/tasks/collections/docs.js +++ /dev/null @@ -1,23 +0,0 @@ -/******************************* - * Define Docs Sub-Tasks - *******************************/ - -/* - Lets you serve files to a local documentation instance - https://github.com/Semantic-Org/Semantic-UI-Docs/ -*/ -module.exports = function (gulp) { - - var - // docs tasks - serveDocs = require('./../docs/serve'), - buildDocs = require('./../docs/build') - ; - - gulp.task('serve-docs', serveDocs); - gulp.task('serve-docs').description = 'Serve file changes to SUI Docs'; - - gulp.task('build-docs', buildDocs); - gulp.task('build-docs').description = 'Build all files and add to SUI Docs'; - -}; diff --git a/tasks/collections/install.js b/tasks/collections/install.js deleted file mode 100644 index 7f172c3..0000000 --- a/tasks/collections/install.js +++ /dev/null @@ -1,23 +0,0 @@ -/******************************* - * Define Install Sub-Tasks - *******************************/ - -/* - Lets you serve files to a local documentation instance - https://github.com/Semantic-Org/Semantic-UI-Docs/ -*/ -module.exports = function (gulp) { - - var - // docs tasks - install = require('./../install'), - checkInstall = require('./../check-install') - ; - - gulp.task('install', install); - gulp.task('install').description = 'Runs set-up'; - - gulp.task('check-install', checkInstall); - gulp.task('check-install').description = 'Displays current version of Semantic'; - -}; diff --git a/tasks/collections/rtl.js b/tasks/collections/rtl.js deleted file mode 100644 index 3eae606..0000000 --- a/tasks/collections/rtl.js +++ /dev/null @@ -1,19 +0,0 @@ -/******************************* - * Define RTL Sub-Tasks - *******************************/ - -module.exports = function (gulp) { - - // rtl - var - buildRTL = require('./../rtl/build'), - watchRTL = require('./../rtl/watch') - ; - - gulp.task('watch-rtl', watchRTL); - gulp.task('watch-rtl').description = 'DEPRECATED - use \'watch\' instead - Watch files as RTL'; - - gulp.task('build-rtl', buildRTL); - gulp.task('build-rtl').description = 'DEPRECATED - use \'build\' instead - Build all files as RTL'; - -}; diff --git a/tasks/collections/various.js b/tasks/collections/various.js deleted file mode 100644 index 39d0a2c..0000000 --- a/tasks/collections/various.js +++ /dev/null @@ -1,22 +0,0 @@ -/******************************* - * Define Various Sub-Tasks - *******************************/ - -/* - Lets you serve files to a local documentation instance - https://github.com/Semantic-Org/Semantic-UI-Docs/ -*/ -module.exports = function (gulp) { - - var - clean = require('./../clean'), - version = require('./../version') - ; - - gulp.task('clean', clean); - gulp.task('clean').description = 'Clean dist folder'; - - gulp.task('version', version); - gulp.task('version').description = 'Clean dist folder'; - -}; diff --git a/tasks/config/admin/github.js b/tasks/config/admin/github.js deleted file mode 100644 index a2c9e20..0000000 --- a/tasks/config/admin/github.js +++ /dev/null @@ -1,37 +0,0 @@ -/******************************* - GitHub Login -*******************************/ -/* - Logs into GitHub using OAuth -*/ - -var - fs = require('fs'), - path = require('path'), - githubAPI = require('@octokit/rest'), - - // stores oauth info for GitHub API - oAuthConfig = path.join(__dirname, 'oauth.js'), - oAuth = fs.existsSync(oAuthConfig) - ? require(oAuthConfig) - : false, - github -; - -if(!oAuth) { - console.error('Must add oauth token for GitHub in tasks/config/admin/oauth.js'); -} - -github = new githubAPI({ - version : '3.0.0', - debug : true, - protocol : 'https', - timeout : 5000 -}); - -github.authenticate({ - type: 'oauth', - token: oAuth.token -}); - -module.exports = github; diff --git a/tasks/config/admin/oauth.example.js b/tasks/config/admin/oauth.example.js deleted file mode 100644 index c4d864a..0000000 --- a/tasks/config/admin/oauth.example.js +++ /dev/null @@ -1,11 +0,0 @@ -/* - Used to import GitHub Auth Token - To Automate GitHub Updates -*/ - -module.exports = { - token : 'AN-OAUTH2-TOKEN', - username : 'github-username', - name : 'Your Name', - email : 'user@email.com' -}; \ No newline at end of file diff --git a/tasks/config/admin/release.js b/tasks/config/admin/release.js deleted file mode 100644 index 0eb61e4..0000000 --- a/tasks/config/admin/release.js +++ /dev/null @@ -1,117 +0,0 @@ -/******************************* - Release Settings -*******************************/ - -// release settings -module.exports = { - - // path to components for repos - source : './dist/components/', - - // modified asset paths for component repos - paths: { - source : '../themes/default/assets/', - output : 'assets/' - }, - - templates: { - bower : './tasks/config/admin/templates/bower.json', - composer : './tasks/config/admin/templates/composer.json', - package : './tasks/config/admin/templates/package.json', - meteor : { - css : './tasks/config/admin/templates/css-package.js', - component : './tasks/config/admin/templates/component-package.js', - less : './tasks/config/admin/templates/less-package.js', - }, - readme : './tasks/config/admin/templates/README.md', - notes : './RELEASE-NOTES.md' - }, - - org : 'Semantic-Org', - repo : 'Semantic-UI', - - // files created for package managers - files: { - composer : 'composer.json', - config : 'semantic.json', - npm : 'package.json', - meteor : 'package.js' - }, - - // root name for distribution repos - distRepoRoot : 'Semantic-UI-', - - // root name for single component repos - componentRepoRoot : 'UI-', - - // root name for package managers - packageRoot : 'semantic-ui-', - - // root path to repos - outputRoot : '../repos/', - - homepage : 'http://www.semantic-ui.com', - - // distributions that get separate repos - distributions: [ - 'LESS', - 'CSS' - ], - - // components that get separate repositories for bower/npm - components : [ - 'accordion', - 'ad', - 'api', - 'breadcrumb', - 'button', - 'card', - 'calendar', - 'checkbox', - 'comment', - 'container', - 'dimmer', - 'divider', - 'dropdown', - 'embed', - 'emoji', - 'feed', - 'flag', - 'form', - 'grid', - 'header', - 'icon', - 'image', - 'input', - 'item', - 'label', - 'list', - 'loader', - 'menu', - 'message', - 'modal', - 'nag', - 'placeholder', - 'popup', - 'progress', - 'rail', - 'slider', - 'rating', - 'reset', - 'reveal', - 'search', - 'segment', - 'shape', - 'sidebar', - 'site', - 'statistic', - 'step', - 'sticky', - 'tab', - 'table', - 'text', - 'toast', - 'transition', - 'visibility' - ] -}; diff --git a/tasks/config/admin/templates/README.md b/tasks/config/admin/templates/README.md deleted file mode 100644 index ec1d4eb..0000000 --- a/tasks/config/admin/templates/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# Semantic {Component} - -This repository contains pre-compiled {component} files using the default themes. This is intended for use in projects that do not need all the bells and whistles of Semantic UI, and want to keep file size to a minimum. - -For the latest changes please see the [Release Notes](https://github.com/Semantic-Org/UI-{Component}/blob/master/RELEASE-NOTES.md) - -**Special Note** -An update in `2.0.8` has fixed an issue which may have prevented some single component modules from working correctly. Please see notes in [this pull request](https://github.com/Semantic-Org/Semantic-UI/pull/2816). - -If you're looking for the full version of Semantic including all components and build tools [check out the main project repository](https://github.com/Semantic-Org/Semantic-UI/tree/1.0) - -#### To install with Bower -``` -bower install semantic-ui-{component} -``` - -#### To install with NPM -``` -npm install semantic-ui-{component} -``` - -#### To install with Meteor -``` -meteor add semantic:ui-{component} -``` - - -## Addendum - -This element's definitions (required class names, html structures) are available in the [UI Docs](http://www.semantic-ui.com) - -Please consider checking out [all the benefits to theming](http://www.learnsemantic.com/guide/expert.html) before using these stand-alone releases. diff --git a/tasks/config/admin/templates/bower.json b/tasks/config/admin/templates/bower.json deleted file mode 100644 index ab4951a..0000000 --- a/tasks/config/admin/templates/bower.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name" : "Component", - "description" : "Component distribution", - "homepage" : "http://www.semantic-ui.com", - "author": { - "name" : "Jack Lukic", - "web" : "http://www.jacklukic.com" - }, - "ignore": [ - "./index.js" - ], - "keywords": [ - "semantic", - "ui", - "css3", - "framework" - ], - "license" : [ - "http://semantic-ui.mit-license.org/" - ], - "ignore": [ - "docs", - "node", - "server", - "spec", - "src", - "test" - ] -} diff --git a/tasks/config/admin/templates/component-package.js b/tasks/config/admin/templates/component-package.js deleted file mode 100644 index 74cd51b..0000000 --- a/tasks/config/admin/templates/component-package.js +++ /dev/null @@ -1,14 +0,0 @@ - -Package.describe({ - name : 'semantic:ui-{component}', - summary : 'Semantic UI - {Component}: Single component release', - version : '{version}', - git : 'git://github.com/Semantic-Org/UI-{Component}.git', -}); - -Package.onUse(function(api) { - api.versionsFrom('1.0'); - api.addFiles([ - {files} - ], 'client'); -}); diff --git a/tasks/config/admin/templates/composer.json b/tasks/config/admin/templates/composer.json deleted file mode 100644 index ddc49b9..0000000 --- a/tasks/config/admin/templates/composer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name" : "fomantic/ui", - "description" : "Fomantic empowers designers and developers by creating a shared vocabulary for UI.", - "homepage" : "https://fomantic-ui.com", - "authors": [ - { - "name" : "Jack Lukic", - "email": "jacklukic@gmail.com", - "homepage" : "http://www.jacklukic.com", - "role" : "Creator" - } - ], - "keywords": [ - "fomantic", - "fomantic-ui", - "semantic", - "ui", - "css", - "framework" - ], - "license" : "MIT" -} \ No newline at end of file diff --git a/tasks/config/admin/templates/css-package.js b/tasks/config/admin/templates/css-package.js deleted file mode 100644 index 0949ce3..0000000 --- a/tasks/config/admin/templates/css-package.js +++ /dev/null @@ -1,34 +0,0 @@ -var - where = 'client' // Adds files only to the client -; - -Package.describe({ - name : 'semantic:ui-css', - summary : 'Semantic UI - CSS Release of Semantic UI', - version : '{version}', - git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git', -}); - -Package.onUse(function(api) { - - api.versionsFrom('1.0'); - - api.use('jquery', 'client'); - - api.addFiles([ - // icons - 'themes/default/assets/fonts/icons.eot', - 'themes/default/assets/fonts/icons.svg', - 'themes/default/assets/fonts/icons.ttf', - 'themes/default/assets/fonts/icons.woff', - 'themes/default/assets/fonts/icons.woff2', - - // flags - 'themes/default/assets/images/flags.png', - - // release - 'semantic.css', - 'semantic.js' - ], 'client'); - -}); diff --git a/tasks/config/admin/templates/less-package.js b/tasks/config/admin/templates/less-package.js deleted file mode 100644 index e2f8a25..0000000 --- a/tasks/config/admin/templates/less-package.js +++ /dev/null @@ -1,21 +0,0 @@ -var - where = 'client' // Adds files only to the client -; - -Package.describe({ - name : 'semantic:ui', - summary : 'Semantic UI - LESS Release of Semantic UI', - version : '{version}', - git : 'git://github.com/Semantic-Org/Semantic-UI-LESS.git', -}); - -Package.onUse(function(api) { - - api.versionsFrom('1.0'); - api.use('less', 'client'); - - api.addFiles([ - {files} - ], 'client'); - -}); diff --git a/tasks/config/admin/templates/package.json b/tasks/config/admin/templates/package.json deleted file mode 100644 index 5d96785..0000000 --- a/tasks/config/admin/templates/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "semantic", - "version": "1.0.0", - "title": "Semantic UI", - "description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.", - "homepage": "http://www.semantic-ui.com", - "author": "Jack Lukic ", - "license": "MIT", - "repository": { - "type": "git", - "url": "git://github.com/Semantic-Org/Semantic-UI.git" - }, - "bugs": { - "url": "https://github.com/Semantic-Org/Semantic-UI/issues" - }, - "devDependencies": {} -} diff --git a/tasks/config/defaults.js b/tasks/config/defaults.js deleted file mode 100644 index 0fcf3e1..0000000 --- a/tasks/config/defaults.js +++ /dev/null @@ -1,123 +0,0 @@ -/******************************* - Default Paths -*******************************/ - -module.exports = { - - // base path added to all other paths - base : '', - - // base path when installed with npm - pmRoot: 'semantic/', - - // octal permission for output files, i.e. 0o644 or '644' (false does not adjust) - permission : '744', - - // whether to generate rtl files - rtl : false, - - // file paths - files: { - config : 'semantic.json', - site : 'src/site', - theme : 'src/theme.config' - }, - - // folder paths - paths: { - source: { - config : 'src/theme.config', - definitions : 'src/definitions/', - site : 'src/site/', - themes : 'src/themes/' - }, - output: { - packaged : 'dist/', - uncompressed : 'dist/components/', - compressed : 'dist/components/', - themes : 'dist/themes/' - }, - clean : 'dist/' - }, - - // components to include in package - components: [ - - // global - 'reset', - 'site', - - // elements - 'button', - 'container', - 'divider', - 'emoji', - 'flag', - 'header', - 'icon', - 'image', - 'input', - 'label', - 'list', - 'loader', - 'placeholder', - 'rail', - 'reveal', - 'segment', - 'step', - 'text', - - // collections - 'breadcrumb', - 'form', - 'grid', - 'menu', - 'message', - 'table', - - // views - 'ad', - 'card', - 'comment', - 'feed', - 'item', - 'statistic', - - // modules - 'accordion', - 'calendar', - 'checkbox', - 'dimmer', - 'dropdown', - 'embed', - 'modal', - 'nag', - 'popup', - 'progress', - 'slider', - 'rating', - 'search', - 'shape', - 'sidebar', - 'sticky', - 'tab', - 'toast', - 'transition', - - // behaviors - 'api', - 'form', - 'state', - 'visibility' - ], - - // whether to load admin tasks - admin: false, - - // globs used for matching file patterns - globs : { - ignored : '!(*.min|*.map|*.rtl)', - ignoredRTL : '!(*.min|*.map)' - } - -}; diff --git a/tasks/config/docs.js b/tasks/config/docs.js deleted file mode 100644 index d04b095..0000000 --- a/tasks/config/docs.js +++ /dev/null @@ -1,32 +0,0 @@ -/******************************* - Docs -*******************************/ - -/* Paths used for "serve-docs" and "build-docs" tasks */ -module.exports = { - base: '', - globs: { - eco: '**/*.html.eco' - }, - paths: { - clean: '../docs/out/dist/', - source: { - config : 'src/theme.config', - definitions : 'src/definitions/', - site : 'src/site/', - themes : 'src/themes/' - }, - output: { - examples : '../docs/out/examples/', - less : '../docs/out/src/', - metadata : '../docs/out/', - packaged : '../docs/out/dist/', - uncompressed : '../docs/out/dist/components/', - compressed : '../docs/out/dist/components/', - themes : '../docs/out/dist/themes/' - }, - template: { - eco: '../docs/server/documents/' - }, - } -}; diff --git a/tasks/config/npm/gulpfile.js b/tasks/config/npm/gulpfile.js deleted file mode 100644 index 36f4e42..0000000 --- a/tasks/config/npm/gulpfile.js +++ /dev/null @@ -1,35 +0,0 @@ -/******************************* - * Set-up - *******************************/ - -var - gulp = require('gulp'), - - // read user config to know what task to load - config = require('./tasks/config/user') -; - - -/******************************* - * Tasks - *******************************/ - -require('./tasks/collections/build')(gulp); -require('./tasks/collections/various')(gulp); -require('./tasks/collections/install')(gulp); - -gulp.task('default', gulp.series('watch')); - -/*-------------- - Docs ----------------*/ - -require('./tasks/collections/docs')(gulp); - -/*-------------- - RTL ----------------*/ - -if (config.rtl) { - require('./tasks/collections/rtl')(gulp); -} diff --git a/tasks/config/project/config.js b/tasks/config/project/config.js deleted file mode 100644 index 62c4b80..0000000 --- a/tasks/config/project/config.js +++ /dev/null @@ -1,154 +0,0 @@ -/******************************* - Set-up -*******************************/ - -var - extend = require('extend'), - fs = require('fs'), - path = require('path'), - - defaults = require('../defaults') -; - - -/******************************* - Exports -*******************************/ - -module.exports = { - - getPath: function(file, directory) { - var - configPath, - walk = function(directory) { - var - nextDirectory = path.resolve( path.join(directory, path.sep, '..') ), - currentPath = path.normalize( path.join(directory, file) ) - ; - if( fs.existsSync(currentPath) ) { - // found file - configPath = path.normalize(directory); - return; - } - else { - // reached file system root, let's stop - if(nextDirectory == directory) { - return; - } - // otherwise recurse - walk(nextDirectory, file); - } - } - ; - - // start walk from outside require-dot-files directory - file = file || defaults.files.config; - directory = directory || path.join(__dirname, path.sep, '..'); - walk(directory); - return configPath || ''; - }, - - // adds additional derived values to a config object - addDerivedValues: function(config) { - - config = config || extend(false, {}, defaults); - - /*-------------- - File Paths - ---------------*/ - - var - configPath = this.getPath(), - sourcePaths = {}, - outputPaths = {}, - folder - ; - - // resolve paths (config location + base + path) - for(folder in config.paths.source) { - if(config.paths.source.hasOwnProperty(folder)) { - sourcePaths[folder] = path.resolve(path.join(configPath, config.base, config.paths.source[folder])); - } - } - for(folder in config.paths.output) { - if(config.paths.output.hasOwnProperty(folder)) { - outputPaths[folder] = path.resolve(path.join(configPath, config.base, config.paths.output[folder])); - } - } - - // set config paths to full paths - config.paths.source = sourcePaths; - config.paths.output = outputPaths; - - // resolve "clean" command path - config.paths.clean = path.resolve( path.join(configPath, config.base, config.paths.clean) ); - - /*-------------- - CSS URLs - ---------------*/ - - // determine asset paths in css by finding relative path between themes and output - // force forward slashes - - config.paths.assets = { - source : '../../themes', // source asset path is always the same - uncompressed : './' + path.relative(config.paths.output.uncompressed, config.paths.output.themes).replace(/\\/g, '/'), - compressed : './' + path.relative(config.paths.output.compressed, config.paths.output.themes).replace(/\\/g, '/'), - packaged : './' + path.relative(config.paths.output.packaged, config.paths.output.themes).replace(/\\/g, '/') - }; - - /*-------------- - Permission - ---------------*/ - - if(config.permission) { - config.hasPermissions = true; - config.parsedPermissions = typeof config.permission === 'string' ? parseInt(config.permission, 8) : config.permission; - } - else { - // pass blank object to avoid causing errors - config.permission = {}; - config.hasPermissions = false; - config.parsedPermissions = {}; - } - - /*-------------- - Globs - ---------------*/ - - if(!config.globs) { - config.globs = {}; - } - - // remove duplicates from component array - if(config.components instanceof Array) { - config.components = config.components.filter(function(component, index) { - return config.components.indexOf(component) == index; - }); - } - - const components = (Array.isArray(config.components) && config.components.length >= 1) - ? config.components - : defaults.components - ; - const individuals = (Array.isArray(config.individuals) && config.individuals.length >= 1) - ? config.individuals - : [] - ; - const componentsExceptIndividuals = components.filter((component) => !individuals.includes(component)); - - // takes component object and creates file glob matching selected components - config.globs.components = '{' + componentsExceptIndividuals.join(',') + '}'; - - // components that should be built, but excluded from main .css/.js files - config.globs.individuals = (individuals.length >= 1) - ? '{' + individuals.join(',') + '}' - : undefined - ; - - return config; - - } - -}; - diff --git a/tasks/config/project/install.js b/tasks/config/project/install.js deleted file mode 100644 index f535993..0000000 --- a/tasks/config/project/install.js +++ /dev/null @@ -1,763 +0,0 @@ -/******************************* - Set-up -*******************************/ - -var - fs = require('fs'), - path = require('path'), - defaults = require('../defaults'), - release = require('./release'), - - requireDotFile = require('require-dot-file') -; - -/******************************* - When to Ask -*******************************/ - -/* Preconditions for install questions */ - -var when = { - - // path - changeRoot: function(questions) { - return (questions.useRoot !== undefined && questions.useRoot !== true); - }, - - // permissions - changePermissions: function(questions) { - return (questions.changePermissions && questions.changePermissions === true); - }, - - // install - hasConfig: function() { - return requireDotFile('semantic.json', process.cwd()); - }, - - allowOverwrite: function(questions) { - return (questions.overwrite === undefined || questions.overwrite == 'yes'); - }, - notAuto: function(questions) { - return (questions.install !== 'auto' && (questions.overwrite === undefined || questions.overwrite == 'yes')); - }, - custom: function(questions) { - return (questions.install === 'custom' && (questions.overwrite === undefined || questions.overwrite == 'yes')); - }, - express: function(questions) { - return (questions.install === 'express' && (questions.overwrite === undefined || questions.overwrite == 'yes')); - }, - - // customize - customize: function(questions) { - return (questions.customize === true); - }, - primaryColor: function(questions) { - return (questions.primaryColor); - }, - secondaryColor: function(questions) { - return (questions.secondaryColor); - } -}; - -/******************************* - Response Filters -*******************************/ - -/* Filters to user input from install questions */ - -var filter = { - removeTrailingSlash: function(path) { - return path.replace(/(\/$|\\$)+/mg, ''); - } -}; - -/******************************* - Configuration -*******************************/ - -module.exports = { - - // check whether install is setup - isSetup: function() { - return when.hasConfig(); - }, - - // detect whether there is a semantic.json configuration and that the auto-install option is set to true - shouldAutoInstall: function() { - var - config = when.hasConfig() - ; - return config['autoInstall']; - }, - - // checks if files are in a PM directory - getPackageManager: function(directory) { - var - // returns last matching result (avoid sub-module detection) - walk = function(directory) { - var - pathArray = directory.split(path.sep), - folder = pathArray[pathArray.length - 1], - nextDirectory = path.join(directory, path.sep, '..') - ; - if( folder == 'bower_components') { - return { - name: 'Bower', - root: nextDirectory - }; - } - else if(folder == 'node_modules') { - return { - name: 'NPM', - root: nextDirectory - }; - } - else if(folder == 'composer') { - return { - name: 'Composer', - root: nextDirectory - }; - } - if(path.resolve(directory) == path.resolve(nextDirectory)) { - return false; - } - // recurse downward - return walk(nextDirectory); - } - ; - // start walk from current directory if none specified - directory = directory || (__dirname + path.sep); - return walk(directory); - }, - - // checks if files is PMed submodule - isSubModule: function(directory) { - var - moduleFolders = 0, - walk = function(directory) { - var - pathArray = directory.split(path.sep), - folder = pathArray[pathArray.length - 2], - nextDirectory = path.join(directory, path.sep, '..') - ; - if( folder == 'bower_components') { - moduleFolders++; - } - else if(folder == 'node_modules') { - moduleFolders++; - } - else if(folder == 'composer') { - moduleFolders++; - } - if(path.resolve(directory) == path.resolve(nextDirectory)) { - return (moduleFolders > 1); - } - // recurse downward - return walk(nextDirectory); - } - ; - // start walk from current directory if none specified - directory = directory || (__dirname + path.sep); - return walk(directory); - }, - - - createJSON: function(answers) { - var - json = { - paths: { - source: {}, - output: {} - } - } - ; - - // add components - if(answers.components) { - json.components = answers.components; - } - - // add rtl choice - if(answers.rtl) { - json.rtl = answers.rtl; - } - - // add permissions - if(answers.permission) { - json.permission = answers.permission; - } - - // add path to semantic - if(answers.semanticRoot) { - json.base = path.normalize(answers.semanticRoot); - } - - // record version number to avoid re-installing on same version - json.version = release.version; - - // add dist folder paths - if(answers.dist) { - answers.dist = path.normalize(answers.dist); - - json.paths.output = { - packaged : path.normalize(answers.dist + '/'), - uncompressed : path.normalize(answers.dist + '/components/'), - compressed : path.normalize(answers.dist + '/components/'), - themes : path.normalize(answers.dist + '/themes/') - }; - } - - // add site path - if(answers.site) { - json.paths.source.site = path.normalize(answers.site + '/'); - } - if(answers.packaged) { - json.paths.output.packaged = path.normalize(answers.packaged + '/'); - } - if(answers.compressed) { - json.paths.output.compressed = path.normalize(answers.compressed + '/'); - } - if(answers.uncompressed) { - json.paths.output.uncompressed = path.normalize(answers.uncompressed + '/'); - } - return json; - }, - - // files cleaned up after install - setupFiles: [ - './src/theme.config.example', - './semantic.json.example', - './src/_site' - ], - - regExp: { - // used to match siteFolder variable in theme.less - siteVariable: /@siteFolder .*\'(.*)/mg - }, - - // source paths (when installing) - source: { - config : './semantic.json.example', - definitions : './src/definitions', - gulpFile : './gulpfile.js', - lessImport : './src/semantic.less', - site : './src/_site', - tasks : './tasks', - themeConfig : './src/theme.config.example', - themeImport : './src/theme.less', - themes : './src/themes', - defaultTheme : './src/themes/default', - userGulpFile : './tasks/config/npm/gulpfile.js' - }, - - // expected final filenames - files: { - config : 'semantic.json', - lessImport : 'src/semantic.less', - site : 'src/site', - themeConfig : 'src/theme.config', - themeImport : 'src/theme.less' - }, - - // folder paths to files relative to root - folders: { - config : './', - definitions : 'src/definitions/', - lessImport : 'src/', - modules : 'node_modules/', - site : 'src/site/', - tasks : 'tasks/', - themeConfig : 'src/', - themeImport : 'src/', - themes : 'src/themes/', - - defaultTheme : 'default/' // only path that is relative to another directory and not root - }, - - // questions asked during install - questions: { - - root: [ - { - type : 'list', - name : 'useRoot', - message : - '{packageMessage} Is this your project folder? {root}', - choices: [ - { - name : 'Yes', - value : true - }, - { - name : 'No, let me specify', - value : false - } - ] - }, - { - type : 'input', - name : 'customRoot', - message : 'Please enter the absolute path to your project root', - default : '/my/project/path', - when : when.changeRoot - }, - { - type : 'input', - name : 'semanticRoot', - message : 'Where should we put Semantic UI inside your project?', - default : 'semantic/' - } - ], - - setup: [ - { - type: 'list', - name: 'overwrite', - message: 'It looks like you have a semantic.json file already.', - when: when.hasConfig, - choices: [ - { - name: 'Yes, extend my current settings.', - value: 'yes' - }, - { - name: 'Skip install', - value: 'no' - } - ] - }, - { - type: 'list', - name: 'install', - message: 'Set-up Semantic UI', - when: when.allowOverwrite, - choices: [ - { - name: 'Automatic (Use default locations and all components)', - value: 'auto' - }, - { - name: 'Express (Set components and output folder)', - value: 'express' - }, - { - name: 'Custom (Customize all src/dist values)', - value: 'custom' - } - ] - }, - { - type: 'checkbox', - name: 'components', - message: 'What components should we include in the package?', - - // duplicated manually from tasks/defaults.js with additional property - choices: [ - { name: "reset", checked: true }, - { name: "site", checked: true }, - { name: "button", checked: true }, - { name: "container", checked: true }, - { name: "divider", checked: true }, - { name: "emoji", checked: true }, - { name: "flag", checked: true }, - { name: "header", checked: true }, - { name: "icon", checked: true }, - { name: "image", checked: true }, - { name: "input", checked: true }, - { name: "label", checked: true }, - { name: "list", checked: true }, - { name: "loader", checked: true }, - { name: "rail", checked: true }, - { name: "reveal", checked: true }, - { name: "segment", checked: true }, - { name: "step", checked: true }, - { name: "breadcrumb", checked: true }, - { name: "form", checked: true }, - { name: "grid", checked: true }, - { name: "menu", checked: true }, - { name: "message", checked: true }, - { name: "table", checked: true }, - { name: "ad", checked: true }, - { name: "card", checked: true }, - { name: "comment", checked: true }, - { name: "feed", checked: true }, - { name: "item", checked: true }, - { name: "statistic", checked: true }, - { name: "accordion", checked: true }, - { name: "calendar", checked: true }, - { name: "checkbox", checked: true }, - { name: "dimmer", checked: true }, - { name: "dropdown", checked: true }, - { name: "embed", checked: true }, - { name: "modal", checked: true }, - { name: "nag", checked: true }, - { name: "placeholder", checked: true }, - { name: "popup", checked: true }, - { name: "progress", checked: true }, - { name: "slider", checked: true }, - { name: "rating", checked: true }, - { name: "search", checked: true }, - { name: "shape", checked: true }, - { name: "sidebar", checked: true }, - { name: "sticky", checked: true }, - { name: "tab", checked: true }, - { name: "text", checked: true }, - { name: "toast", checked: true }, - { name: "transition", checked: true }, - { name: "api", checked: true }, - { name: "form", checked: true }, - { name: "state", checked: true }, - { name: "visibility", checked: true } - ], - when: when.notAuto - }, - { - type: 'list', - name: 'changePermissions', - when: when.notAuto, - message: 'Should we set permissions on outputted files?', - choices: [ - { - name: 'No', - value: false - }, - { - name: 'Yes', - value: true - } - ] - }, - { - type: 'input', - name: 'permission', - message: 'What octal file permission should outputted files receive?', - default: defaults.permission, - when: when.changePermissions - }, - { - type: 'list', - name: 'rtl', - message: 'Do you use a RTL (Right-To-Left) language?', - when: when.notAuto, - choices: [ - { - name: 'No', - value: false - }, - { - name: 'Yes', - value: true - }, - { - name: 'Build Both', - value: 'both' - } - ] - }, - { - type: 'input', - name: 'dist', - message: 'Where should we output Semantic UI?', - default: defaults.paths.output.packaged, - filter: filter.removeTrailingSlash, - when: when.express - }, - { - type: 'input', - name: 'site', - message: 'Where should we put your site folder?', - default: defaults.paths.source.site, - filter: filter.removeTrailingSlash, - when: when.custom - }, - { - type: 'input', - name: 'packaged', - message: 'Where should we output a packaged version?', - default: defaults.paths.output.packaged, - filter: filter.removeTrailingSlash, - when: when.custom - }, - { - type: 'input', - name: 'compressed', - message: 'Where should we output compressed components?', - default: defaults.paths.output.compressed, - filter: filter.removeTrailingSlash, - when: when.custom - }, - { - type: 'input', - name: 'uncompressed', - message: 'Where should we output uncompressed components?', - default: defaults.paths.output.uncompressed, - filter: filter.removeTrailingSlash, - when: when.custom - } - ], - - - cleanup: [ - { - type: 'list', - name: 'cleanup', - message: 'Should we remove set-up files?', - choices: [ - { - name: 'Yes (re-install will require redownloading semantic).', - value: 'yes' - }, - { - name: 'No Thanks', - value: 'no' - } - ] - }, - { - type: 'list', - name: 'build', - message: 'Do you want to build Semantic now?', - choices: [ - { - name: 'Yes', - value: 'yes' - }, - { - name: 'No', - value: 'no' - } - ] - }, - ], - site: [ - { - type: 'list', - name: 'customize', - message: 'You have not yet customized your site, can we help you do that?', - choices: [ - { - name: 'Yes, ask me a few questions', - value: true - }, - { - name: 'No I\'ll do it myself', - value: false - } - ] - }, - { - type: 'list', - name: 'headerFont', - message: 'Select your header font', - choices: [ - { - name: 'Helvetica Neue, Arial, sans-serif', - value: 'Helvetica Neue, Arial, sans-serif;' - }, - { - name: 'Lato (Google Fonts)', - value: 'Lato' - }, - { - name: 'Open Sans (Google Fonts)', - value: 'Open Sans' - }, - { - name: 'Source Sans Pro (Google Fonts)', - value: 'Source Sans Pro' - }, - { - name: 'Droid (Google Fonts)', - value: 'Droid' - }, - { - name: 'I\'ll choose on my own', - value: false - } - ], - when: when.customize - }, - { - type: 'list', - name: 'pageFont', - message: 'Select your page font', - choices: [ - { - name: 'Helvetica Neue, Arial, sans-serif', - value: 'Helvetica Neue, Arial, sans-serif;' - }, - { - name: 'Lato (Import from Google Fonts)', - value: 'Lato' - }, - { - name: 'Open Sans (Import from Google Fonts)', - value: 'Open Sans' - }, - { - name: 'Source Sans Pro (Import from Google Fonts)', - value: 'Source Sans Pro' - }, - { - name: 'Droid (Google Fonts)', - value: 'Droid' - }, - { - name: 'I\'ll choose on my own', - value: false - } - ], - when: when.customize - }, - { - type: 'list', - name: 'fontSize', - message: 'Select your base font size', - default: '14px', - choices: [ - { - name: '12px', - }, - { - name: '13px', - }, - { - name: '14px (Recommended)', - value: '14px' - }, - { - name: '15px', - }, - { - name: '16px', - }, - { - name: 'I\'ll choose on my own', - value: false - } - ], - when: when.customize - }, - { - type: 'list', - name: 'primaryColor', - message: 'Select the closest name for your primary brand color', - default: '14px', - choices: [ - { - name: 'Blue' - }, - { - name: 'Green' - }, - { - name: 'Orange' - }, - { - name: 'Pink' - }, - { - name: 'Purple' - }, - { - name: 'Red' - }, - { - name: 'Teal' - }, - { - name: 'Yellow' - }, - { - name: 'Black' - }, - { - name: 'I\'ll choose on my own', - value: false - } - ], - when: when.customize - }, - { - type: 'input', - name: 'PrimaryHex', - message: 'Enter a hexcode for your primary brand color', - when: when.primaryColor - }, - { - type: 'list', - name: 'secondaryColor', - message: 'Select the closest name for your secondary brand color', - default: '14px', - choices: [ - { - name: 'Blue' - }, - { - name: 'Green' - }, - { - name: 'Orange' - }, - { - name: 'Pink' - }, - { - name: 'Purple' - }, - { - name: 'Red' - }, - { - name: 'Teal' - }, - { - name: 'Yellow' - }, - { - name: 'Black' - }, - { - name: 'I\'ll choose on my own', - value: false - } - ], - when: when.customize - }, - { - type: 'input', - name: 'secondaryHex', - message: 'Enter a hexcode for your secondary brand color', - when: when.secondaryColor - } - ] - - }, - - settings: { - - /* Rename Files */ - rename: { - json : { extname : '.json' } - }, - - /* Copy Install Folders */ - wrench: { - - // overwrite existing files update & install (default theme / definition) - overwrite: { - forceDelete : true, - excludeHiddenUnix : true, - preserveFiles : false - }, - - // only create files that don't exist (site theme update) - merge: { - forceDelete : false, - excludeHiddenUnix : true, - preserveFiles : true - } - - } - } -}; diff --git a/tasks/config/project/release.js b/tasks/config/project/release.js deleted file mode 100644 index 3edc1fb..0000000 --- a/tasks/config/project/release.js +++ /dev/null @@ -1,65 +0,0 @@ -/******************************* - Release Config -*******************************/ - -var - requireDotFile = require('require-dot-file'), - config, - npmPackage, - version -; - - -/******************************* - Derived Values -*******************************/ - -try { - config = requireDotFile('semantic.json', process.cwd()); -} -catch(error) {} - - -try { - npmPackage = require('../../../package.json'); -} -catch(error) { - // generate fake package - npmPackage = { - name: 'Unknown', - version: 'x.x' - }; -} - -// looks for version in config or package.json (whichever is available) -version = (npmPackage && npmPackage.version !== undefined && npmPackage.name == 'fomantic-ui') - ? npmPackage.version - : config.version -; - - -/******************************* - Export -*******************************/ - -module.exports = { - - title : 'Fomantic UI', - repository : 'https://github.com/fomantic/Fomantic-UI', - url : 'http://fomantic-ui.com/', - - banner: '' - + '/*' + '\n' - + ' * # <%= title %> - <%= version %>' + '\n' - + ' * <%= repository %>' + '\n' - + ' * <%= url %>' + '\n' - + ' *' + '\n' - + ' * Copyright <%= year %> Contributors' + '\n' - + ' * Released under the MIT license' + '\n' - + ' * http://opensource.org/licenses/MIT' + '\n' - + ' *' + '\n' - + ' */' + '\n', - - version : version - -}; diff --git a/tasks/config/tasks.js b/tasks/config/tasks.js deleted file mode 100644 index 8796fd8..0000000 --- a/tasks/config/tasks.js +++ /dev/null @@ -1,181 +0,0 @@ -var - browserslist = require('browserslist'), - console = require('better-console'), - config = require('./user'), - release = require('./project/release') -; - -var defaultBrowsers = browserslist(browserslist.defaults) -var userBrowsers = browserslist() -var hasBrowserslistConfig = JSON.stringify(defaultBrowsers) !== JSON.stringify(userBrowsers) - -var overrideBrowserslist = hasBrowserslistConfig ? undefined : [ - 'last 2 versions', - '> 1%', - 'opera 12.1', - 'bb 10', - 'android 4' -] - -module.exports = { - - banner : release.banner, - - log: { - created: function(file) { - return 'Created: ' + file; - }, - modified: function(file) { - return 'Modified: ' + file; - } - }, - - filenames: { - concatenatedCSS : 'theme.css', - concatenatedJS : 'theme.js', - concatenatedMinifiedCSS : 'theme.min.css', - concatenatedMinifiedJS : 'theme.min.js', - concatenatedRTLCSS : 'theme.rtl.css', - concatenatedMinifiedRTLCSS : 'theme.rtl.min.css' - }, - - regExp: { - - comments: { - - // remove all comments from config files (.variable) - variables : { - in : /(\/\*[\s\S]+?\*\/+)[\s\S]+?\/\* End Config \*\//, - out : '$1', - }, - - // add version to first comment - license: { - in : /(^\/\*[\s\S]+)(# Fomantic-UI )([\s\S]+?\*\/)/, - out : '$1$2' + release.version + ' $3' - }, - - // adds uniform spacing around comments - large: { - in : /(\/\*\*\*\*[\s\S]+?\*\/)/mg, - out : '\n\n$1\n' - }, - small: { - in : /(\/\*---[\s\S]+?\*\/)/mg, - out : '\n$1\n' - }, - tiny: { - in : /(\/\* [\s\S]+? \*\/)/mg, - out : '\n$1' - } - }, - - theme: /.*(\/|\\)themes(\/|\\).*?(?=(\/|\\))/mg - - }, - - settings: { - - /* Remove Files in Clean */ - del: { - silent : true - }, - - concatCSS: { - rebaseUrls: false - }, - - /* Comment Banners */ - header: { - year : (new Date()).getFullYear(), - title : release.title, - version : release.version, - repository : release.repository, - url : release.url - }, - - plumber: { - less: { - errorHandler: function(error) { - var - regExp = { - variable : /@(\S.*?)\s/, - theme : /themes[\/\\]+(.*?)[\/\\].*/, - element : /[\/\\]([^\/\\*]*)\.overrides/ - }, - theme, - element - ; - if(error && error.filename && error.filename.match(/theme.less/)) { - if (error.line == 9) { - element = regExp.variable.exec(error.message)[1]; - if (element) { - console.error('Missing theme.config value for ', element); - } - console.error('Most likely new UI was added in an update. You will need to add missing elements from theme.config.example'); - } else if (error.line == 73) { - element = regExp.element.exec(error.message)[1]; - theme = regExp.theme.exec(error.message)[1]; - console.error(theme + ' is not an available theme for ' + element); - } else { - console.error(error); - } - } - else { - throw new Error(error); - } - this.emit('end'); - } - } - }, - - /* What Browsers to Prefix */ - prefix: { - overrideBrowserslist - }, - - /* File Renames */ - rename: { - minJS : { extname : '.min.js' }, - minCSS : { extname : '.min.css' }, - rtlCSS : { extname : '.rtl.css' }, - rtlMinCSS : { extname : '.rtl.min.css' } - }, - - /* Minified CSS Concat */ - minify: { - level: { - 1: { - inline : false - } - } - }, - - /* Minified JS Settings */ - uglify: { - mangle : true, - output: { - comments: 'some' - } - }, - - /* Minified Concat CSS Settings */ - concatMinify: { - level: { - 1: { - inline : false, - specialComments : false - } - } - }, - - /* Minified Concat JS */ - concatUglify: { - mangle : true, - output: { - comments: 'some' - } - } - - } -}; diff --git a/tasks/config/user.js b/tasks/config/user.js deleted file mode 100644 index ca0c93c..0000000 --- a/tasks/config/user.js +++ /dev/null @@ -1,58 +0,0 @@ -/******************************* - Set-up -*******************************/ - -var - // npm dependencies - extend = require('extend'), - fs = require('fs'), - path = require('path'), - requireDotFile = require('require-dot-file'), - - // semantic.json defaults - defaults = require('./defaults'), - config = require('./project/config'), - - // Final config object - gulpConfig = {}, - - // semantic.json settings - userConfig - -; - - -/******************************* - User Config -*******************************/ - -try { - // looks for config file across all parent directories - userConfig = requireDotFile('semantic.json', process.cwd()); -} -catch(error) { - if(error.code === 'MODULE_NOT_FOUND') { - console.error('No semantic.json config found'); - } -} - -// extend user config with defaults -gulpConfig = (!userConfig) - ? extend(true, {}, defaults) - : extend(false, {}, defaults, userConfig) -; - -/******************************* - Add Derived Values -*******************************/ - -// adds calculated values -config.addDerivedValues(gulpConfig); - - -/******************************* - Export -*******************************/ - -module.exports = gulpConfig; - diff --git a/tasks/docs/build.js b/tasks/docs/build.js deleted file mode 100644 index 9172c5e..0000000 --- a/tasks/docs/build.js +++ /dev/null @@ -1,111 +0,0 @@ -/******************************* - Build Docs - *******************************/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - fs = require('fs'), - map = require('map-stream'), - - // gulp dependencies - print = require('gulp-print').default, - - // user config - config = require('../config/docs'), - - // install config - tasks = require('../config/tasks'), - configSetup = require('../config/project/config'), - install = require('../config/project/install'), - - // metadata parsing - metadata = require('./metadata'), - - // build methods - buildJS = require('../build/javascript').buildJS, - buildCSS = require('../build/css').buildCSS, - buildAssets = require('../build/assets').buildAssets, - - // shorthand - log = tasks.log -; - - -module.exports = function (callback) { - - // use a different config - config = configSetup.addDerivedValues(config); - - // shorthand - const globs = config.globs; - const output = config.paths.output; - - /*-------------- - Parse metadata - ---------------*/ - - function buildMetaData() { - // parse all *.html.eco in docs repo, data will end up in - // metadata.result object. Note this assumes that the docs - // repository is present and in proper directory location as - // specified by docs.json. - console.info('Building Metadata'); - return gulp.src(config.paths.template.eco + globs.eco) - .pipe(map(metadata.parser)) - .on('end', function () { - fs.mkdirSync(output.metadata, {recursive: true}); - fs.writeFileSync(output.metadata + '/metadata.json', JSON.stringify(metadata.result, null, 2)); - }); - } - - /*-------------- - Copy Examples - ---------------*/ - - function copyExample() { - // copy src/ to server - console.info('Copying examples'); - return gulp.src('examples/**/*.*') - .pipe(gulp.dest(output.examples)) - .pipe(print(log.created)); - } - - - /*-------------- - Copy Source - ---------------*/ - - function copyLess() { - // copy src/ to server - console.info('Copying LESS source'); - return gulp.src('src/**/*.*') - .pipe(gulp.dest(output.less)) - .pipe(print(log.created)); - } - - - /*-------------- - Build - ---------------*/ - - console.info('Building Semantic for docs'); - - if (!install.isSetup()) { - console.error('Cannot build files. Run "gulp install" to set-up Semantic'); - callback(); - return; - } - - gulp.series( - buildMetaData, - copyExample, - copyLess, - (callback) => buildJS('docs', config, callback), - (callback) => buildCSS('docs', config, {}, callback), - (callback) => buildAssets(config, callback) - )(callback); - -}; diff --git a/tasks/docs/metadata.js b/tasks/docs/metadata.js deleted file mode 100644 index bfc8630..0000000 --- a/tasks/docs/metadata.js +++ /dev/null @@ -1,138 +0,0 @@ - -/******************************* - Summarize Docs -*******************************/ - -var - // node dependencies - console = require('better-console'), - fs = require('fs'), - YAML = require('yamljs') -; - -var data = {}; - -/** - * Test for prefix in string. - * @param {string} str - * @param {string} prefix - * @return {boolean} - */ -function startsWith(str, prefix) { - return str.indexOf(prefix) === 0; -}; - -function inArray(needle, haystack) { - var length = haystack.length; - for(var i = 0; i < length; i++) { - if(haystack[i] == needle) return true; - } - return false; -} - -/** - * Parses a file for metadata and stores result in data object. - * @param {File} file - object provided by map-stream. - * @param {function(?,File)} - callback provided by map-stream to - * reply when done. - */ -function parser(file, callback) { - // file exit conditions - if(file.isNull()) { - return callback(null, file); // pass along - } - - if(file.isStream()) { - return callback(new Error('Streaming not supported')); - } - - try { - - var - /** @type {string} */ - text = String(file.contents.toString('utf8')), - lines = text.split('\n'), - filename = file.path.substring(0, file.path.length - 4), - key = 'server/documents', - position = filename.indexOf(key) - ; - - // exit conditions - if(!lines) { - return; - } - if(position < 0) { - return callback(null, file); - } - - filename = filename.substring(position + key.length + 1, filename.length); - - var - lineCount = lines.length, - active = false, - yaml = [], - categories = [ - 'UI Element', - 'UI Global', - 'UI Collection', - 'UI View', - 'UI Module', - 'UI Behavior' - ], - index, - meta, - line - ; - - for(index = 0; index < lineCount; index++) { - - line = lines[index]; - - // Wait for metadata block to begin - if(!active) { - if(startsWith(line, '---')) { - active = true; - } - continue; - } - // End of metadata block, stop parsing. - if(startsWith(line, '---')) { - break; - } - yaml.push(line); - } - - - // Parse yaml. - meta = YAML.parse(yaml.join('\n')); - if(meta && meta.type && meta.title && inArray(meta.type, categories) ) { - meta.category = meta.type; - meta.filename = filename; - meta.url = '/' + filename; - meta.title = meta.title; - // Primary key will by filepath - data[meta.element] = meta; - } - else { - // skip - // console.log(meta); - } - - - } - - catch(error) { - console.log(error, filename); - } - - callback(null, file); - -} - -/** - * Export function expected by map-stream. - */ -module.exports = { - result : data, - parser : parser -}; diff --git a/tasks/docs/serve.js b/tasks/docs/serve.js deleted file mode 100644 index 51af308..0000000 --- a/tasks/docs/serve.js +++ /dev/null @@ -1,95 +0,0 @@ -/******************************* - Serve Docs - *******************************/ -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - - // gulp dependencies - print = require('gulp-print').default, - - // user config - config = require('../config/docs'), - - // task config - tasks = require('../config/tasks'), - configSetup = require('../config/project/config'), - - // shorthand - log = tasks.log, - - css = require('../build/css'), - js = require('../build/javascript'), - assets = require('../build/assets') -; - - -module.exports = function () { - - // use a different config - config = configSetup.addDerivedValues(config); - - console.clear(); - console.log('Watching source files for changes'); - - /*-------------- - Copy Source - ---------------*/ - - gulp - .watch(['src/**/*.*']) - .on('all', function (event, path) { - // We don't handle deleted files yet - if (event === 'unlink' || event === 'unlinkDir') { - return; - } - return gulp.src(path, { - base: 'src/' - }) - .pipe(gulp.dest(config.paths.output.less)) - .pipe(print(log.created)) - ; - }) - ; - - /*-------------- - Copy Examples - ---------------*/ - - gulp - .watch(['examples/**/*.*']) - .on('all', function (event, path) { - // We don't handle deleted files yet - if (event === 'unlink' || event === 'unlinkDir') { - return; - } - return gulp.src(path, { - base: 'examples/' - }) - .pipe(gulp.dest(config.paths.output.examples)) - .pipe(print(log.created)) - ; - }) - ; - - /*-------------- - Watch CSS - ---------------*/ - - css.watch('docs', config); - - /*-------------- - Watch JS - ---------------*/ - - js.watch('docs', config); - - /*-------------- - Watch Assets - ---------------*/ - - assets.watch('docs', config); - -}; diff --git a/tasks/install.js b/tasks/install.js deleted file mode 100644 index 2ed838d..0000000 --- a/tasks/install.js +++ /dev/null @@ -1,439 +0,0 @@ -/******************************* - * Install Task - *******************************/ - -/* - Install tasks - - For more notes - - * Runs automatically after npm update (hooks) - * (NPM) Install - Will ask for where to put semantic (outside pm folder) - * (NPM) Upgrade - Will look for semantic install, copy over files and update if new version - * Standard installer runs asking for paths to site files etc - -*/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - extend = require('extend'), - fs = require('fs'), - mkdirp = require('mkdirp'), - path = require('path'), - - // gulp dependencies - chmod = require('gulp-chmod'), - del = require('del'), - jsonEditor = require('gulp-json-editor'), - plumber = require('gulp-plumber'), - inquirer = require('inquirer'), - rename = require('gulp-rename'), - replace = require('gulp-replace'), - requireDotFile = require('require-dot-file'), - wrench = require('wrench-sui'), - - // install config - install = require('./config/project/install'), - - // user config - config = require('./config/user'), - - // release config (name/title/etc) - release = require('./config/project/release'), - - // shorthand - questions = install.questions, - files = install.files, - folders = install.folders, - regExp = install.regExp, - settings = install.settings, - source = install.source -; - -// Export install task -module.exports = function (callback) { - - var - currentConfig = requireDotFile('semantic.json', process.cwd()), - manager = install.getPackageManager(), - rootQuestions = questions.root, - installFolder = false, - answers - ; - - console.clear(); - - /* Test NPM install - manager = { - name : 'NPM', - root : path.normalize(__dirname + '/../') - }; - */ - - - /* Don't do end user config if SUI is a sub-module */ - if (install.isSubModule()) { - console.info('SUI is a sub-module, skipping end-user install'); - return; - } - - /*----------------- - Update SUI - -----------------*/ - -// run update scripts if semantic.json exists - if (currentConfig && manager.name === 'NPM') { - - var - updateFolder = path.join(manager.root, currentConfig.base), - updatePaths = { - config : path.join(manager.root, files.config), - tasks : path.join(updateFolder, folders.tasks), - themeImport : path.join(updateFolder, folders.themeImport), - definition : path.join(currentConfig.paths.source.definitions), - site : path.join(currentConfig.paths.source.site), - theme : path.join(currentConfig.paths.source.themes), - defaultTheme: path.join(currentConfig.paths.source.themes, folders.defaultTheme) - } - ; - - // duck-type if there is a project installed - if (fs.existsSync(updatePaths.definition)) { - - // perform update if new version - if (currentConfig.version !== release.version) { - console.log('Updating Semantic UI from ' + currentConfig.version + ' to ' + release.version); - - console.info('Updating ui definitions...'); - wrench.copyDirSyncRecursive(source.definitions, updatePaths.definition, settings.wrench.overwrite); - - console.info('Updating default theme...'); - wrench.copyDirSyncRecursive(source.themes, updatePaths.theme, settings.wrench.merge); - wrench.copyDirSyncRecursive(source.defaultTheme, updatePaths.defaultTheme, settings.wrench.overwrite); - - console.info('Updating tasks...'); - wrench.copyDirSyncRecursive(source.tasks, updatePaths.tasks, settings.wrench.overwrite); - - console.info('Updating gulpfile.js'); - gulp.src(source.userGulpFile) - .pipe(plumber()) - .pipe(gulp.dest(updateFolder)) - ; - - // copy theme import - console.info('Updating theme import file'); - gulp.src(source.themeImport) - .pipe(plumber()) - .pipe(gulp.dest(updatePaths.themeImport)) - ; - - console.info('Adding new site theme files...'); - wrench.copyDirSyncRecursive(source.site, updatePaths.site, settings.wrench.merge); - - console.info('Updating version...'); - - // update version number in semantic.json - gulp.src(updatePaths.config) - .pipe(plumber()) - .pipe(rename(settings.rename.json)) // preserve file extension - .pipe(jsonEditor({ - version: release.version - })) - .pipe(gulp.dest(manager.root)) - ; - - console.info('Update complete! Run "\x1b[92mgulp build\x1b[0m" to rebuild dist/ files.'); - - callback(); - return; - } else { - console.log('Current version of Semantic UI already installed'); - callback(); - return; - } - - } else { - console.error('Cannot locate files to update at path: ', updatePaths.definition); - console.log('Running installer'); - } - - } - - /*-------------- - Determine Root - ---------------*/ - -// PM that supports Build Tools (NPM Only Now) - if (manager.name === 'NPM') { - rootQuestions[0].message = rootQuestions[0].message - .replace('{packageMessage}', 'We detected you are using ' + manager.name + ' Nice!') - .replace('{root}', manager.root) - ; - // set default path to detected PM root - rootQuestions[0].default = manager.root; - rootQuestions[1].default = manager.root; - - // insert PM questions after "Install Type" question - Array.prototype.splice.apply(questions.setup, [2, 0].concat(rootQuestions)); - - // omit cleanup questions for managed install - questions.cleanup = []; - } - - - /*-------------- - Create SUI - ---------------*/ - - gulp.task('run setup', function (callback) { - - // If auto-install is switched on, we skip the configuration section and simply reuse the configuration from semantic.json - if (install.shouldAutoInstall()) { - answers = { - overwrite : 'yes', - install : 'auto', - useRoot : true, - semanticRoot: currentConfig.base - }; - callback(); - } else { - return inquirer.prompt(questions.setup) - .then((setupAnswers) => { - // hoist - answers = setupAnswers; - }); - } - }); - - gulp.task('create install files', function (callback) { - - /*-------------- - Exit Conditions - ---------------*/ - - // if config exists and user specifies not to proceed - if (answers.overwrite !== undefined && answers.overwrite == 'no') { - callback(); - return; - } - console.clear(); - if (install.shouldAutoInstall()) { - console.log('Auto-Installing (Without User Interaction)'); - } else { - console.log('Installing'); - } - console.log('------------------------------'); - - - /*-------------- - Paths - ---------------*/ - - var - installPaths = { - config : files.config, - configFolder : folders.config, - site : answers.site || folders.site, - themeConfig : files.themeConfig, - themeConfigFolder: folders.themeConfig - } - ; - - /*-------------- - NPM Install - ---------------*/ - - // Check if PM install - if (manager && (answers.useRoot || answers.customRoot)) { - - // Set root to custom root path if set - if (answers.customRoot) { - if (answers.customRoot === '') { - console.log('Unable to proceed, invalid project root'); - callback(); - return; - } - manager.root = answers.customRoot; - } - - // special install paths only for PM install - installPaths = extend(false, {}, installPaths, { - definition : folders.definitions, - lessImport : folders.lessImport, - tasks : folders.tasks, - theme : folders.themes, - defaultTheme: path.join(folders.themes, folders.defaultTheme), - themeImport : folders.themeImport - }); - - // add project root to semantic root - installFolder = path.join(manager.root, answers.semanticRoot); - - // add install folder to all output paths - for (var destination in installPaths) { - if (installPaths.hasOwnProperty(destination)) { - // config goes in project root, rest in install folder - installPaths[destination] = (destination == 'config' || destination == 'configFolder') - ? path.normalize(path.join(manager.root, installPaths[destination])) - : path.normalize(path.join(installFolder, installPaths[destination])) - ; - } - } - - // create project folders - try { - mkdirp.sync(installFolder); - mkdirp.sync(installPaths.definition); - mkdirp.sync(installPaths.theme); - mkdirp.sync(installPaths.tasks); - } catch (error) { - console.error('NPM does not have permissions to create folders at your specified path. Adjust your folders permissions and run "npm install" again'); - } - - console.log('Installing to \x1b[92m' + answers.semanticRoot + '\x1b[0m'); - - console.info('Copying UI definitions'); - wrench.copyDirSyncRecursive(source.definitions, installPaths.definition, settings.wrench.overwrite); - - console.info('Copying UI themes'); - wrench.copyDirSyncRecursive(source.themes, installPaths.theme, settings.wrench.merge); - wrench.copyDirSyncRecursive(source.defaultTheme, installPaths.defaultTheme, settings.wrench.overwrite); - - console.info('Copying gulp tasks'); - wrench.copyDirSyncRecursive(source.tasks, installPaths.tasks, settings.wrench.overwrite); - - // copy theme import - console.info('Adding theme files'); - gulp.src(source.themeImport) - .pipe(plumber()) - .pipe(gulp.dest(installPaths.themeImport)) - ; - gulp.src(source.lessImport) - .pipe(plumber()) - .pipe(gulp.dest(installPaths.lessImport)) - ; - - // create gulp file - console.info('Creating gulpfile.js'); - gulp.src(source.userGulpFile) - .pipe(plumber()) - .pipe(gulp.dest(installFolder)) - ; - - } - - - /*-------------- - Site Theme - ---------------*/ - - // Copy _site templates folder to destination - if (fs.existsSync(installPaths.site)) { - console.info('Site folder exists, merging files (no overwrite)', installPaths.site); - } else { - console.info('Creating site theme folder', installPaths.site); - } - wrench.copyDirSyncRecursive(source.site, installPaths.site, settings.wrench.merge); - - /*-------------- - Theme Config - ---------------*/ - - gulp.task('create theme.config', function () { - var - // determine path to site theme folder from theme config - // force CSS path variable to use forward slashes for paths - pathToSite = path.relative(path.resolve(installPaths.themeConfigFolder), path.resolve(installPaths.site)).replace(/\\/g, '/'), - siteVariable = "@siteFolder : '" + pathToSite + "/';" - ; - - // rewrite site variable in theme.less - console.info('Adjusting @siteFolder to: ', pathToSite + '/'); - - if (fs.existsSync(installPaths.themeConfig)) { - console.info('Modifying src/theme.config (LESS config)', installPaths.themeConfig); - return gulp.src(installPaths.themeConfig) - .pipe(plumber()) - .pipe(replace(regExp.siteVariable, siteVariable)) - .pipe(gulp.dest(installPaths.themeConfigFolder)) - ; - } else { - console.info('Creating src/theme.config (LESS config)', installPaths.themeConfig); - return gulp.src(source.themeConfig) - .pipe(plumber()) - .pipe(rename({extname: ''})) - .pipe(replace(regExp.siteVariable, siteVariable)) - .pipe(gulp.dest(installPaths.themeConfigFolder)) - ; - } - }); - - /*-------------- - Semantic.json - ---------------*/ - - gulp.task('create semantic.json', function () { - - var - jsonConfig = install.createJSON(answers) - ; - - // adjust variables in theme.less - if (fs.existsSync(installPaths.config)) { - console.info('Extending config file (semantic.json)', installPaths.config); - return gulp.src(installPaths.config) - .pipe(plumber()) - .pipe(rename(settings.rename.json)) // preserve file extension - .pipe(jsonEditor(jsonConfig)) - .pipe(gulp.dest(installPaths.configFolder)) - ; - } else { - console.info('Creating config file (semantic.json)', installPaths.config); - return gulp.src(source.config) - .pipe(plumber()) - .pipe(rename({extname: ''})) // remove .template from ext - .pipe(jsonEditor(jsonConfig, {end_with_newline: true})) - .pipe(gulp.dest(installPaths.configFolder)) - ; - } - - }); - - gulp.series('create theme.config', 'create semantic.json')(callback); - }); - - gulp.task('clean up install', function (callback) { - - // Completion Message - if (installFolder && !install.shouldAutoInstall()) { - console.log('\n Setup Complete! \n Installing Peer Dependencies. \x1b[0;31mPlease refrain from ctrl + c\x1b[0m... \n After completion navigate to \x1b[92m' + answers.semanticRoot + '\x1b[0m and run "\x1b[92mgulp build\x1b[0m" to build'); - callback(); - } else { - console.log(''); - console.log(''); - - // If auto-install is switched on, we skip the configuration section and simply build the dependencies - if (install.shouldAutoInstall()) { - gulp.series('build')(callback); - } else { - // We don't return the inquirer promise on purpose because we handle the callback ourselves - inquirer.prompt(questions.cleanup) - .then((answers) => { - if (answers.cleanup === 'yes') { - del(install.setupFiles); - } - if (answers.build === 'yes') { - gulp.series('build')(callback); - } else { - callback(); - } - }); - } - } - }); - - gulp.series('run setup', 'create install files', 'clean up install')(callback); -}; diff --git a/tasks/rtl/build.js b/tasks/rtl/build.js deleted file mode 100644 index 5ec5ac3..0000000 --- a/tasks/rtl/build.js +++ /dev/null @@ -1,12 +0,0 @@ -/******************************* - * Build Task - *******************************/ - -var - gulp = require('gulp') -; - -// RTL builds are now handled by the default build process -module.exports = function (callback) { - gulp.series(require('../build'))(callback); -}; diff --git a/tasks/rtl/watch.js b/tasks/rtl/watch.js deleted file mode 100644 index 098c965..0000000 --- a/tasks/rtl/watch.js +++ /dev/null @@ -1,12 +0,0 @@ -/******************************* - * Watch Task - *******************************/ - -var - gulp = require('gulp') -; - -// RTL watch are now handled by the default watch process -module.exports = function (callback) { - gulp.series(require('../watch'))(callback); -}; \ No newline at end of file diff --git a/tasks/version.js b/tasks/version.js deleted file mode 100644 index b5092a5..0000000 --- a/tasks/version.js +++ /dev/null @@ -1,12 +0,0 @@ -/******************************* - Version Task -*******************************/ - -var - release = require('./config/project/release') -; - -module.exports = function(callback) { - console.log(release.title + ' ' + release.version); - callback(); -}; \ No newline at end of file diff --git a/tasks/watch.js b/tasks/watch.js deleted file mode 100644 index aec7af2..0000000 --- a/tasks/watch.js +++ /dev/null @@ -1,51 +0,0 @@ -/******************************* - * Watch Task - *******************************/ - -var - gulp = require('gulp'), - - // node dependencies - console = require('better-console'), - - // user config - config = require('./config/user'), - - // task config - install = require('./config/project/install'), - - css = require('./build/css'), - js = require('./build/javascript'), - assets = require('./build/assets') - -; - -// export task -module.exports = function () { - - if (!install.isSetup()) { - console.error('Cannot watch files. Run "gulp install" to set-up Semantic'); - return; - } - - console.clear(); - console.log('Watching source files for changes'); - - /*-------------- - Watch CSS - ---------------*/ - css.watch('default', config); - - /*-------------- - Watch JS - ---------------*/ - - js.watch('default', config); - - /*-------------- - Watch Assets - ---------------*/ - - assets.watch('default', config); - -}; diff --git a/test.html b/test.html new file mode 100644 index 0000000..f5e235f --- /dev/null +++ b/test.html @@ -0,0 +1,124 @@ + + + + + + + + + + Base UI Theme style test + + + + + + + + From 9934eec88653333cb93f6996a2dc7326fb62a1ed Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Thu, 10 Oct 2024 15:30:34 +0900 Subject: [PATCH 02/11] feat(css-variables): update --- package.json | 3 +- styles/theme.css | 2590 +++++++++++++++++++++++----------------------- test.html | 180 ++++ 3 files changed, 1490 insertions(+), 1283 deletions(-) diff --git a/package.json b/package.json index 9ec9704..1803b9d 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "default-dark-ui", "version": "2.2.0", "theme": "ui", + "dark": true, "description": "Default Dark UI Theme for Inkdrop", "styleSheets": [ "theme.css" @@ -14,7 +15,7 @@ "author": "Takuya Matsuyama", "license": "MIT", "devDependencies": { - "@inkdropapp/base-ui-theme": "^0.1.2", + "@inkdropapp/base-ui-theme": "^0.1.3", "@inkdropapp/css": "^0.4.2" }, "engines": { diff --git a/styles/theme.css b/styles/theme.css index d476f7c..252b28a 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -1,1306 +1,1332 @@ - :root { - /*------------------- - Base Sizes - --------------------*/ - /* This is the single variable that controls them all */ - --em-size: 14px; - /* The size of page text */ - --font-size: 14px; +:root { + /*------------------- + Base Sizes + --------------------*/ + /* This is the single variable that controls them all */ + --em-size: 14px; + /* The size of page text */ + --font-size: 14px; - /*------------------- - Border Radius - --------------------*/ - /* See Power-user section below - for explanation of @px variables - */ - --relative-border-radius: 0.35714286em; - --absolute-border-radius: 0.35714286rem; - --default-border-radius: 0.35714286rem; + /*------------------- + Border Radius + --------------------*/ + /* See Power-user section below + for explanation of @px variables + */ + --relative-border-radius: 0.35714286em; + --absolute-border-radius: 0.35714286rem; + --default-border-radius: 0.35714286rem; - /*------------------- - Brand Colors - --------------------*/ - --primary-color: var(--color-blue-500); - --secondary-color: var(--color-zinc-900); - --light-primary-color: var(--color-blue-400); - --light-secondary-color: var(--color-neutral-700); + /*------------------- + Brand Colors + --------------------*/ + --primary-color: hsl(var(--hsl-blue-400) / 80%); + --secondary-color: var(--color-zinc-900); + --light-primary-color: hsl(var(--hsl-blue-300) / 80%); + --light-secondary-color: var(--color-neutral-700); - /*-------------- - Page Heading - ---------------*/ - --header-font-weight: 600; - --header-line-height: 1.28571429em; - --h1: 2rem; - --h2: 1.71428571rem; - --h3: 1.28571429rem; - --h4: 1.07142857rem; - --h5: 1rem; + /*-------------- + Page Heading + ---------------*/ + --header-font-weight: 600; + --header-line-height: 1.28571429em; + --h1: 2rem; + --h2: 1.71428571rem; + --h3: 1.28571429rem; + --h4: 1.07142857rem; + --h5: 1rem; - /*-------------- - Form Input - ---------------*/ - /* This adjusts the default form input across all elements */ - --input-background: var(--color-neutral-900); - --input-vertical-padding: 0.78571429em; - --input-horizontal-padding: 1em; - --input-padding: 0.78571429em 1em; - /* Input Text Color */ - --input-color: rgba(0, 0, 0, 0.87); - --input-placeholder-color: rgba(191, 191, 191, 0.87); - --input-placeholder-focus-color: rgba(115, 115, 115, 0.87); - --input-error-placeholder-color: #e7bdbc; - --input-error-placeholder-focus-color: #da9796; - /* Line Height Default For Inputs in Browser */ - --input-line-height: 1.21428571em; + /*-------------- + Form Input + ---------------*/ + /* This adjusts the default form input across all elements */ + --input-background: var(--color-neutral-900); + --input-vertical-padding: 0.78571429em; + --input-horizontal-padding: 1em; + --input-padding: 0.78571429em 1em; + /* Input Text Color */ + --input-color: hsl(var(--hsl-neutral-50) / 85%); + --input-placeholder-color: hsl(var(--hsl-neutral-200) / 25%); + --input-placeholder-focus-color: hsl(var(--hsl-neutral-300) / 35%); + --input-error-placeholder-color: var(--negative-text-color); + --input-error-placeholder-focus-color: hsl(var(--hsl-red-200) / 90%); + /* Line Height Default For Inputs in Browser */ + --input-line-height: 1.21428571em; - /*------------------- - Focused Input - --------------------*/ - /* Used on inputs, textarea etc */ - --focused-form-border-color: #85B7D9; - /* Used on dropdowns, other larger blocks */ - --focused-form-muted-border-color: #96C8DA; - --unfocused-outline-color: transparent; - --unfocused-outline-offset: 0.4rem; - --focused-outline-style: solid; - --focused-outline-width: 0.14285714rem; - --focused-outline-color: color-mix(in srgb, #96C8DA, transparent 30%); - --focused-outline-offset: 0rem; + /*------------------- + Focused Input + --------------------*/ + /* Used on inputs, textarea etc */ + --focused-form-border-color: hsl(var(--hsl-sky-300) / 60%); + /* #85B7D9 */ + /* Used on dropdowns, other larger blocks */ + --focused-form-muted-border-color: hsl(var(--hsl-sky-300) / 40%); + /*#96C8DA; */ + --unfocused-outline-color: transparent; + --unfocused-outline-offset: 0.4rem; + --focused-outline-style: solid; + --focused-outline-width: 0.14285714rem; + --focused-outline-color: hsl(var(--hsl-sky-300) / 30%); + --focused-outline-offset: 0rem; - /*------------------- - Sizes - --------------------*/ - /* - Sizes are all expressed in terms of 14px/em (default em) - This ensures these "ratios" remain constant despite changes in EM - */ - --mini-size: 0.78571429; - --tiny-size: 0.85714286; - --small-size: 0.92857143; - --medium-size: 1; - --large-size: 1.14285714; - --big-size: 1.28571429; - --huge-size: 1.42857143; - --massive-size: 1.71428571; + /*------------------- + Sizes + --------------------*/ + /* + Sizes are all expressed in terms of 14px/em (default em) + This ensures these "ratios" remain constant despite changes in EM + */ + --mini-size: 0.78571429; + --tiny-size: 0.85714286; + --small-size: 0.92857143; + --medium-size: 1; + --large-size: 1.14285714; + --big-size: 1.28571429; + --huge-size: 1.42857143; + --massive-size: 1.71428571; - /*------------------- - Page - --------------------*/ - --page-background: var(--color-neutral-900); - --page-overflow-x: hidden; - --line-height: 1.4285em; - --text-color: hsl(var(--hsl-neutral-50) / 87%); + /*------------------- + Page + --------------------*/ + --page-background: var(--color-neutral-950); + --page-overflow-x: hidden; + --line-height: 1.4285em; + --text-color: hsl(var(--hsl-neutral-50) / 87%); - /*------------------- - Paragraph - --------------------*/ - --paragraph-margin: 0em 0em 1em; - --paragraph-line-height: 1.4285em; + /*------------------- + Paragraph + --------------------*/ + --paragraph-margin: 0em 0em 1em; + --paragraph-line-height: 1.4285em; - /*------------------- - Links - --------------------*/ - --link-color: var(--color-blue-500); - --link-underline: none; - --link-hover-color: var(--color-blue-600); - --link-hover-underline: none; + /*------------------- + Links + --------------------*/ + --link-color: var(--color-blue-500); + --link-underline: none; + --link-hover-color: var(--color-blue-400); + --link-hover-underline: none; - /*------------------- - Highlighted Text - --------------------*/ - --highlight-background: var(--color-blue-200); - --highlight-color: var(--text-color); - --input-highlight-background: hsl(var(--hsl-neutral-600) / 40%); - --input-highlight-color: var(--text-color); + /*------------------- + Highlighted Text + --------------------*/ + --highlight-background: var(--color-sky-600); + --highlight-color: var(--color-white); + --input-highlight-background: hsl(var(--hsl-neutral-400) / 40%); + --input-highlight-color: var(--text-color); - /*------------------- - Loader - --------------------*/ - --loader-size: 1.28571429em; - --loader-speed: 0.6s; - --loader-line-width: 0.2em; - --loader-fill-color: rgba(0, 0, 0, 0.1); - --loader-line-color: #767676; - --inverted-loader-fill-color: rgba(255, 255, 255, 0.15); - --inverted-loader-line-color: #FFFFFF; + /*------------------- + Loader + --------------------*/ + --loader-size: 1.28571429em; + --loader-speed: 0.6s; + --loader-line-width: 0.2em; + --loader-fill-color: rgba(0, 0, 0, 0.1); + --loader-line-color: #767676; + --inverted-loader-fill-color: rgba(255, 255, 255, 0.15); + --inverted-loader-line-color: #FFFFFF; - /*------------------- - Grid - --------------------*/ - --column-count: 16; + /*------------------- + Grid + --------------------*/ + --column-count: 16; - /*------------------- - Transitions - --------------------*/ - --default-duration: 0.1s; - --default-easing: ease; + /*------------------- + Transitions + --------------------*/ + --default-duration: 0.1s; + --default-easing: ease; - /*------------------- - Breakpoints - --------------------*/ - --mobile-breakpoint: 320px; - --tablet-breakpoint: 768px; - --computer-breakpoint: 992px; - --large-monitor-breakpoint: 1200px; - --widescreen-monitor-breakpoint: 1920px; + /*------------------- + Breakpoints + --------------------*/ + --mobile-breakpoint: 320px; + --tablet-breakpoint: 768px; + --computer-breakpoint: 992px; + --large-monitor-breakpoint: 1200px; + --widescreen-monitor-breakpoint: 1920px; - /*------------------- - Site Colors - --------------------*/ - /*--- Colors ---*/ - --red: var(--color-red-500); - --orange: var(--color-orange-500); - --yellow: var(--color-yellow-500); - --olive: var(--color-lime-500); - --green: var(--color-green-500); - --teal: var(--color-teal-500); - --blue: var(--color-blue-500); - --violet: var(--color-violet-500); - --purple: var(--color-purple-500); - --pink: var(--color-pink-500); - --brown: var(--color-yellow-800); - --grey: var(--color-neutral-500); - --black: var(--color-neutral-900); - /*--- Light Colors ---*/ - --light-red: var(--color-red-400); - --light-orange: var(--color-orange-400); - --light-yellow: var(--color-yellow-400); - --light-olive: var(--color-lime-400); - --light-green: var(--color-green-400); - --light-teal: var(--color-teal-400); - --light-blue: var(--color-blue-400); - --light-violet: var(--color-violet-400); - --light-purple: var(--color-purple-400); - --light-pink: var(--color-pink-400); - --light-brown: var(--color-yellow-700); - --light-grey: var(--color-neutral-300); - --light-black: var(--color-neutral-700); - /*--- Neutrals ---*/ - --full-black: var(--color-black); - --off-white: var(--color-gray-50); - --dark-white: var(--color-gray-100); - --mid-white: var(--color-gray-200); - --white: var(--color-white); - /*--- Colored Backgrounds ---*/ - --red-background: var(--color-red-100); - --orange-background: var(--color-orange-100); - --yellow-background: var(--color-yellow-100); - --olive-background: var(--color-lime-100); - --green-background: var(--color-green-100); - --teal-background: var(--color-teal-100); - --blue-background: var(--color-blue-100); - --violet-background: var(--color-violet-100); - --purple-background: var(--color-purple-100); - --pink-background: var(--color-pink-100); - --brown-background: var(--color-orange-100); - /*--- Colored Headers ---*/ - --red-header-color: var(--color-red-600); - --orange-header-color: var(--color-orange-600); - --yellow-header-color: var(--color-yellow-800); - --olive-header-color: var(--color-lime-700); - --green-header-color: var(--color-green-700); - --teal-header-color: var(--color-teal-700); - --blue-header-color: var(--color-blue-600); - --violet-header-color: var(--color-violet-600); - --purple-header-color: var(--color-purple-600); - --pink-header-color: var(--color-pink-600); - --brown-header-color: var(--color-yellow-900); - /*--- Colored Text ---*/ - --red-text-color: var(--color-red-500); - --orange-text-color: var(--color-orange-500); - --yellow-text-color: var(--color-yellow-700); - --olive-text-color: var(--color-lime-600); - --green-text-color: var(--color-green-600); - --teal-text-color: var(--color-teal-600); - --blue-text-color: var(--color-blue-500); - --violet-text-color: var(--color-violet-500); - --purple-text-color: var(--color-purple-500); - --pink-text-color: var(--color-pink-500); - --brown-text-color: var(--color-yellow-800); - /*--- Colored Border ---*/ - --red-border-color: var(--red-text-color); - --orange-border-color: var(--orange-text-color); - --yellow-border-color: var(--yellow-text-color); - --olive-border-color: var(--olive-text-color); - --green-border-color: var(--green-text-color); - --teal-border-color: var(--teal-text-color); - --blue-border-color: var(--blue-text-color); - --violet-border-color: var(--violet-text-color); - --purple-border-color: var(--purple-text-color); - --pink-border-color: var(--pink-text-color); - --brown-border-color: var(--brown-text-color); - /*------------------- - Alpha Colors - --------------------*/ - --subtle-transparent-black: rgba(0, 0, 0, 0.03); - --transparent-black: rgba(0, 0, 0, 0.05); - --strong-transparent-black: rgba(0, 0, 0, 0.1); - --very-strong-transparent-black: rgba(0, 0, 0, 0.15); - --subtle-transparent-white: rgba(255, 255, 255, 0.02); - --transparent-white: rgba(255, 255, 255, 0.08); - --strong-transparent-white: rgba(255, 255, 255, 0.15); - /*------------------- - Accents - --------------------*/ - /* Differentiating Neutrals */ - --subtle-gradient: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - /* Differentiating Layers */ - --subtle-shadow: 0px 1px 2px 0 var(--border-color); - --floating-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), - 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - --raised-shadow: 0px 2px 3px 0px var(--border-color); - /******************************* - Power-User - *******************************/ - /*------------------- - Emotive Colors - --------------------*/ - /* Positive */ - --positive-color: var(--color-green-500); - --positive-background-color: var(--color-green-50); - --positive-border-color: var(--color-green-300); - --positive-header-color: var(--color-green-900); - --positive-text-color: var(--color-green-800); - /* Negative */ - --negative-color: var(--color-red-500); - --negative-background-color: var(--color-red-50); - --negative-border-color: var(--color-red-300); - --negative-header-color: var(--color-red-900); - --negative-text-color: var(--color-red-800); - /* Info */ - --info-color: var(--color-cyan-500); - --info-background-color: var(--color-sky-50); - --info-border-color: var(--color-sky-300); - --info-header-color: var(--color-sky-900); - --info-text-color: var(--color-sky-800); - /* Warning */ - --warning-color: var(--color-amber-400); - --warning-background-color: var(--color-stone-100); - --warning-border-color: var(--color-stone-400); - --warning-header-color: var(--color-yellow-800); - --warning-text-color: var(--color-amber-900); - /*------------------- - Em Sizes - --------------------*/ - /* - This rounds @size values to the closest pixel then expresses that value in (r)em. - This ensures all size values round to exact pixels - */ - --mini: 0.78571429rem; - --tiny: 0.85714286rem; - --small: 0.92857143rem; - --medium: 1rem; - --large: 1.14285714rem; - --big: 1.28571429rem; - --huge: 1.42857143rem; - --massive: 1.71428571rem; - /* em */ - --relative-mini: 0.78571429em; - --relative-tiny: 0.85714286em; - --relative-small: 0.92857143em; - --relative-medium: 1em; - --relative-large: 1.14285714em; - --relative-big: 1.28571429em; - --relative-huge: 1.42857143em; - --relative-massive: 1.71428571em; - /* rem */ - --absolute-mini: 0.78571429rem; - --absolute-tiny: 0.85714286rem; - --absolute-small: 0.92857143rem; - --absolute-medium: 1rem; - --absolute-large: 1.14285714rem; - --absolute-big: 1.28571429rem; - --absolute-huge: 1.42857143rem; - --absolute-massive: 1.71428571rem; - /*------------------- - Icons - --------------------*/ - /* Maximum Glyph Width of Icon */ - --icon-width: 1.18em; - /*------------------- - Neutral Text - --------------------*/ - --dark-text-color: hsl(var(--hsl-black) / 85%); - --muted-text-color: hsl(var(--hsl-black) / 60%); - --light-text-color: hsl(var(--hsl-black) / 40%); - --unselected-text-color: hsl(var(--hsl-black) / 40%); - --hovered-text-color: hsl(var(--hsl-black) / 80%); - --pressed-text-color: hsl(var(--hsl-black) / 90%); - --selected-text-color: hsl(var(--hsl-black) / 95%); - --disabled-text-color: hsl(var(--hsl-black) / 20%); - --inverted-text-color: hsl(var(--hsl-white) / 90%); - --inverted-muted-text-color: hsl(var(--hsl-white) / 80%); - --inverted-light-text-color: hsl(var(--hsl-white) / 70%); - --inverted-unselected-text-color: hsl(var(--hsl-white) / 50%); - --inverted-hovered-text-color: hsl(var(--hsl-white) / 100%); - --inverted-pressed-text-color: hsl(var(--hsl-white) / 100%); - --inverted-selected-text-color: hsl(var(--hsl-white) / 100%); - --inverted-disabled-text-color: hsl(var(--hsl-white) / 20%); - /*------------------- - Borders - --------------------*/ - --circular-radius: 500rem; - --border-color: hsl(var(--hsl-neutral-900) / 15%); - --strong-border-color: hsl(var(--hsl-neutral-900) / 22%); - --internal-border-color: hsl(var(--hsl-neutral-900) / 10%); - --selected-border-color: hsl(var(--hsl-neutral-900) / 35%); - --strong-selected-border-color: hsl(var(--hsl-neutral-900) / 50%); - --disabled-border-color: hsl(var(--hsl-neutral-900) / 50%); - --solid-internal-border-color: var(--color-neutral-50); - --solid-border-color: var(--color-zinc-300); - --solid-selected-border-color: var(--color-neutral-400); - --white-border-color: hsl(var(--hsl-white) / 10%); - --selected-white-border-color: hsl(var(--hsl-white) / 80%); - --solid-white-border-color: var(--color-neutral-400); - --selected-solid-white-border-color: var(--color-neutral-300); - /*------------------- - Derived Values - --------------------*/ - /* Loaders Position Offset */ - --loader-offset: -0.64285714em; - --loader-margin: -0.64285714em 0em 0em -0.64285714em; - /* Maximum Single Character Glyph Width, aka Capital "W" */ - --glyph-width: 1.1em; - /* Used to match floats with text */ - --line-height-offset: 0.21425em; - --header-line-height-offset: 0.14285714em; - /* Header Spacing */ - --header-top-margin: calc(2rem - 0.1428571428571429em); - --header-bottom-margin: 1rem; - --header-margin: calc(2rem - 0.1428571428571429em) 0em 1rem; - /* Minimum Mobile Width */ - --page-min-width: 320px; - /* Positive / Negative Dupes */ - --success-background-color: var(--positive-background-color); - --success-color: var(--positive-color); - --success-border-color: var(--positive-border-color); - --success-header-color: var(--positive-header-color); - --success-text-color: var(--positive-text-color); - --error-background-color: var(--negative-background-color); - --error-color: var(--negative-color); - --error-border-color: var(--negative-border-color); - --error-header-color: var(--negative-header-color); - --error-text-color: var(--negative-text-color); - /* Responsive */ - --largest-mobile-screen: 767px; - --largest-tablet-screen: 991px; - --largest-small-monitor: 1199px; - --largest-large-monitor: 1919px; - /*------------------- - Exact Pixel Values - --------------------*/ - /* - These are used to specify exact pixel values in em - for things like borders that remain constantly - sized as emSize adjusts + /*------------------- + Site Colors + --------------------*/ + /*--- Colors ---*/ + --red: var(--color-red-500); + --orange: var(--color-orange-500); + --yellow: var(--color-yellow-500); + --olive: var(--color-lime-500); + --green: var(--color-green-500); + --teal: var(--color-teal-500); + --blue: var(--color-blue-500); + --violet: var(--color-violet-500); + --purple: var(--color-purple-500); + --pink: var(--color-pink-500); + --brown: var(--color-yellow-800); + --grey: var(--color-neutral-500); + --black: var(--color-neutral-900); + /*--- Light Colors ---*/ + --light-red: var(--color-red-400); + --light-orange: var(--color-orange-400); + --light-yellow: var(--color-yellow-400); + --light-olive: var(--color-lime-400); + --light-green: var(--color-green-400); + --light-teal: var(--color-teal-400); + --light-blue: var(--color-blue-400); + --light-violet: var(--color-violet-400); + --light-purple: var(--color-purple-400); + --light-pink: var(--color-pink-400); + --light-brown: var(--color-yellow-700); + --light-grey: var(--color-neutral-300); + --light-black: var(--color-neutral-700); + /*--- Neutrals ---*/ + --full-black: var(--color-black); + --off-white: var(--color-gray-50); + --dark-white: var(--color-gray-100); + --mid-white: var(--color-gray-200); + --white: var(--color-white); + /*--- Colored Backgrounds ---*/ + --red-background: var(--color-red-100); + --orange-background: var(--color-orange-100); + --yellow-background: var(--color-yellow-100); + --olive-background: var(--color-lime-100); + --green-background: var(--color-green-100); + --teal-background: var(--color-teal-100); + --blue-background: var(--color-blue-100); + --violet-background: var(--color-violet-100); + --purple-background: var(--color-purple-100); + --pink-background: var(--color-pink-100); + --brown-background: var(--color-orange-100); + /*--- Colored Headers ---*/ + --red-header-color: var(--color-red-600); + --orange-header-color: var(--color-orange-600); + --yellow-header-color: var(--color-yellow-800); + --olive-header-color: var(--color-lime-700); + --green-header-color: var(--color-green-700); + --teal-header-color: var(--color-teal-700); + --blue-header-color: var(--color-blue-600); + --violet-header-color: var(--color-violet-600); + --purple-header-color: var(--color-purple-600); + --pink-header-color: var(--color-pink-600); + --brown-header-color: var(--color-yellow-900); + /*--- Colored Text ---*/ + --red-text-color: var(--color-red-500); + --orange-text-color: var(--color-orange-500); + --yellow-text-color: var(--color-yellow-700); + --olive-text-color: var(--color-lime-600); + --green-text-color: var(--color-green-600); + --teal-text-color: var(--color-teal-600); + --blue-text-color: var(--color-blue-500); + --violet-text-color: var(--color-violet-500); + --purple-text-color: var(--color-purple-500); + --pink-text-color: var(--color-pink-500); + --brown-text-color: var(--color-yellow-800); + /*--- Colored Border ---*/ + --red-border-color: var(--red-text-color); + --orange-border-color: var(--orange-text-color); + --yellow-border-color: var(--yellow-text-color); + --olive-border-color: var(--olive-text-color); + --green-border-color: var(--green-text-color); + --teal-border-color: var(--teal-text-color); + --blue-border-color: var(--blue-text-color); + --violet-border-color: var(--violet-text-color); + --purple-border-color: var(--purple-text-color); + --pink-border-color: var(--pink-text-color); + --brown-border-color: var(--brown-text-color); + /*------------------- + Alpha Colors + --------------------*/ + --subtle-transparent-black: rgba(0, 0, 0, 0.06); + --transparent-black: rgba(0, 0, 0, 0.1); + --strong-transparent-black: rgba(0, 0, 0, 0.2); + --very-strong-transparent-black: rgba(0, 0, 0, 0.3); + --subtle-transparent-white: rgba(255, 255, 255, 0.02); + --transparent-white: rgba(255, 255, 255, 0.08); + --strong-transparent-white: rgba(255, 255, 255, 0.15); + /*------------------- + Accents + --------------------*/ + /* Differentiating Neutrals */ + --subtle-gradient: linear-gradient(transparent, rgba(0, 0, 0, 0.05)); + /* Differentiating Layers */ + --subtle-shadow: 0px 1px 2px 0 var(--black); + --floating-shadow: 0px 2px 4px 0px hsl(var(--hsl-black) / 20%), + 0px 2px 10px 0px hsl(var(--hsl-black) / 30%); + --raised-shadow: 0px 2px 3px 0px var(--black); + /******************************* + Power-User + *******************************/ + /*------------------- + Emotive Colors + --------------------*/ + /* Positive */ + --positive-color: var(--color-green-500); + --positive-background-color: hsl(var(--hsl-green-200) / 20%); + --positive-border-color: hsl(var(--hsl-green-300) / 70%); + --positive-header-color: hsl(var(--hsl-green-300) / 90%); + --positive-text-color: hsl(var(--hsl-green-100) / 90%); + /* Negative */ + --negative-color: var(--color-red-500); + --negative-background-color: hsl(var(--hsl-red-200) / 20%); + --negative-border-color: hsl(var(--hsl-red-300) / 70%); + --negative-header-color: hsl(var(--hsl-red-300) / 90%); + --negative-text-color: hsl(var(--hsl-red-100) / 90%); + /* Info */ + --info-color: var(--color-cyan-400); + --info-background-color: hsl(var(--hsl-sky-200) / 20%); + --info-border-color: hsl(var(--hsl-sky-300) / 70%); + --info-header-color: hsl(var(--hsl-sky-300) / 90%); + --info-text-color: hsl(var(--hsl-sky-100) / 90%); + /* Warning */ + --warning-color: var(--color-amber-400); + --warning-background-color: hsl(var(--hsl-amber-200) / 20%); + --warning-border-color: hsl(var(--hsl-yellow-600) / 70%); + --warning-header-color: hsl(var(--hsl-amber-300) / 90%); + --warning-text-color: hsl(var(--hsl-amber-100) / 90%); + /*------------------- + Em Sizes + --------------------*/ + /* + This rounds @size values to the closest pixel then expresses that value in (r)em. + This ensures all size values round to exact pixels + */ + --mini: 0.78571429rem; + --tiny: 0.85714286rem; + --small: 0.92857143rem; + --medium: 1rem; + --large: 1.14285714rem; + --big: 1.28571429rem; + --huge: 1.42857143rem; + --massive: 1.71428571rem; + /* em */ + --relative-mini: 0.78571429em; + --relative-tiny: 0.85714286em; + --relative-small: 0.92857143em; + --relative-medium: 1em; + --relative-large: 1.14285714em; + --relative-big: 1.28571429em; + --relative-huge: 1.42857143em; + --relative-massive: 1.71428571em; + /* rem */ + --absolute-mini: 0.78571429rem; + --absolute-tiny: 0.85714286rem; + --absolute-small: 0.92857143rem; + --absolute-medium: 1rem; + --absolute-large: 1.14285714rem; + --absolute-big: 1.28571429rem; + --absolute-huge: 1.42857143rem; + --absolute-massive: 1.71428571rem; + /*------------------- + Icons + --------------------*/ + /* Maximum Glyph Width of Icon */ + --icon-width: 1.18em; + /*------------------- + Neutral Text + --------------------*/ + --dark-text-color: hsl(var(--hsl-neutral-50) / 40%); + --muted-text-color: hsl(var(--hsl-neutral-50) / 60%); + --light-text-color: hsl(var(--hsl-neutral-50) / 85%); + --unselected-text-color: hsl(var(--hsl-neutral-50) / 40%); + --hovered-text-color: hsl(var(--hsl-neutral-50) / 80%); + --pressed-text-color: hsl(var(--hsl-neutral-50) / 90%); + --selected-text-color: hsl(var(--hsl-neutral-50) / 95%); + --disabled-text-color: hsl(var(--hsl-neutral-50) / 30%); + --inverted-text-color: hsl(var(--hsl-neutral-950) / 90%); + --inverted-muted-text-color: hsl(var(--hsl-neutral-950) / 80%); + --inverted-light-text-color: hsl(var(--hsl-neutral-950) / 70%); + --inverted-unselected-text-color: hsl(var(--hsl-neutral-950) / 50%); + --inverted-hovered-text-color: hsl(var(--hsl-neutral-950) / 100%); + --inverted-pressed-text-color: hsl(var(--hsl-neutral-950) / 100%); + --inverted-selected-text-color: hsl(var(--hsl-neutral-950) / 100%); + --inverted-disabled-text-color: hsl(var(--hsl-neutral-950) / 20%); + /*------------------- + Borders + --------------------*/ + --circular-radius: 500rem; + --border-color: hsl(var(--hsl-neutral-100) / 10%); + --strong-border-color: hsl(var(--hsl-neutral-100) / 22%); + --internal-border-color: hsl(var(--hsl-neutral-100) / 10%); + --selected-border-color: hsl(var(--hsl-neutral-100) / 35%); + --strong-selected-border-color: hsl(var(--hsl-neutral-100) / 50%); + --disabled-border-color: hsl(var(--hsl-neutral-100) / 50%); - Since there are many more sizes than names for sizes, - these are named by their original pixel values. + /* TODO: ????????? */ + --solid-internal-border-color: var(--color-neutral-800); + --solid-border-color: var(--color-zinc-700); + --solid-selected-border-color: var(--color-neutral-600); + --white-border-color: hsl(var(--hsl-white) / 10%); + --selected-white-border-color: hsl(var(--hsl-white) / 80%); + --solid-white-border-color: var(--color-neutral-400); + --selected-solid-white-border-color: var(--color-neutral-300); + /*------------------- + Derived Values + --------------------*/ + /* Loaders Position Offset */ + --loader-offset: -0.64285714em; + --loader-margin: -0.64285714em 0em 0em -0.64285714em; + /* Maximum Single Character Glyph Width, aka Capital "W" */ + --glyph-width: 1.1em; + /* Used to match floats with text */ + --line-height-offset: 0.21425em; + --header-line-height-offset: 0.14285714em; + /* Header Spacing */ + --header-top-margin: calc(2rem - 0.1428571428571429em); + --header-bottom-margin: 1rem; + --header-margin: calc(2rem - 0.1428571428571429em) 0em 1rem; + /* Minimum Mobile Width */ + --page-min-width: 320px; + /* Positive / Negative Dupes */ + --success-background-color: var(--positive-background-color); + --success-color: var(--positive-color); + --success-border-color: var(--positive-border-color); + --success-header-color: var(--positive-header-color); + --success-text-color: var(--positive-text-color); + --error-background-color: var(--negative-background-color); + --error-color: var(--negative-color); + --error-border-color: var(--negative-border-color); + --error-header-color: var(--negative-header-color); + --error-text-color: var(--negative-text-color); + /* Responsive */ + --largest-mobile-screen: 767px; + --largest-tablet-screen: 991px; + --largest-small-monitor: 1199px; + --largest-large-monitor: 1919px; + /*------------------- + Exact Pixel Values + --------------------*/ + /* + These are used to specify exact pixel values in em + for things like borders that remain constantly + sized as emSize adjusts - */ - --1px: 0.07142857rem; - --2px: 0.14285714rem; - --3px: 0.21428571rem; - --4px: 0.28571429rem; - --5px: 0.35714286rem; - --6px: 0.42857143rem; - --7px: 0.5rem; - --8px: 0.57142857rem; - --9px: 0.64285714rem; - --10px: 0.71428571rem; - --11px: 0.78571429rem; - --12px: 0.85714286rem; - --13px: 0.92857143rem; - --14px: 1rem; - --15px: 1.07142857rem; - --16px: 1.14285714rem; - --17px: 1.21428571rem; - --18px: 1.28571429rem; - --19px: 1.35714286rem; - --20px: 1.42857143rem; - --21px: 1.5rem; - --22px: 1.57142857rem; - --23px: 1.64285714rem; - --24px: 1.71428571rem; - --25px: 1.78571429rem; - --26px: 1.85714286rem; - --27px: 1.92857143rem; - --28px: 2rem; - --29px: 2.07142857rem; - --30px: 2.14285714rem; - --31px: 2.21428571rem; - --32px: 2.28571429rem; - --33px: 2.35714286rem; - --34px: 2.42857143rem; - --35px: 2.5rem; - --36px: 2.57142857rem; - --37px: 2.64285714rem; - --38px: 2.71428571rem; - --39px: 2.78571429rem; - --40px: 2.85714286rem; - --41px: 2.92857143rem; - --42px: 3rem; - --43px: 3.07142857rem; - --44px: 3.14285714rem; - --45px: 3.21428571rem; - --46px: 3.28571429rem; - --47px: 3.35714286rem; - --48px: 3.42857143rem; - --49px: 3.5rem; - --50px: 3.57142857rem; - --51px: 3.64285714rem; - --52px: 3.71428571rem; - --53px: 3.78571429rem; - --54px: 3.85714286rem; - --55px: 3.92857143rem; - --56px: 4rem; - --57px: 4.07142857rem; - --58px: 4.14285714rem; - --59px: 4.21428571rem; - --60px: 4.28571429rem; - --61px: 4.35714286rem; - --62px: 4.42857143rem; - --63px: 4.5rem; - --64px: 4.57142857rem; - --relative1px: 0.07142857em; - --relative2px: 0.14285714em; - --relative3px: 0.21428571em; - --relative4px: 0.28571429em; - --relative5px: 0.35714286em; - --relative6px: 0.42857143em; - --relative7px: 0.5em; - --relative8px: 0.57142857em; - --relative9px: 0.64285714em; - --relative10px: 0.71428571em; - --relative11px: 0.78571429em; - --relative12px: 0.85714286em; - --relative13px: 0.92857143em; - --relative14px: 1em; - --relative15px: 1.07142857em; - --relative16px: 1.14285714em; - --relative17px: 1.21428571em; - --relative18px: 1.28571429em; - --relative19px: 1.35714286em; - --relative20px: 1.42857143em; - --relative21px: 1.5em; - --relative22px: 1.57142857em; - --relative23px: 1.64285714em; - --relative24px: 1.71428571em; - --relative25px: 1.78571429em; - --relative26px: 1.85714286em; - --relative27px: 1.92857143em; - --relative28px: 2em; - --relative29px: 2.07142857em; - --relative30px: 2.14285714em; - --relative31px: 2.21428571em; - --relative32px: 2.28571429em; - --relative33px: 2.35714286em; - --relative34px: 2.42857143em; - --relative35px: 2.5em; - --relative36px: 2.57142857em; - --relative37px: 2.64285714em; - --relative38px: 2.71428571em; - --relative39px: 2.78571429em; - --relative40px: 2.85714286em; - --relative41px: 2.92857143em; - --relative42px: 3em; - --relative43px: 3.07142857em; - --relative44px: 3.14285714em; - --relative45px: 3.21428571em; - --relative46px: 3.28571429em; - --relative47px: 3.35714286em; - --relative48px: 3.42857143em; - --relative49px: 3.5em; - --relative50px: 3.57142857em; - --relative51px: 3.64285714em; - --relative52px: 3.71428571em; - --relative53px: 3.78571429em; - --relative54px: 3.85714286em; - --relative55px: 3.92857143em; - --relative56px: 4em; - --relative57px: 4.07142857em; - --relative58px: 4.14285714em; - --relative59px: 4.21428571em; - --relative60px: 4.28571429em; - --relative61px: 4.35714286em; - --relative62px: 4.42857143em; - --relative63px: 4.5em; - --relative64px: 4.57142857em; - /* Columns */ - --one-wide: 6.25%; - --two-wide: 12.5%; - --three-wide: 18.75%; - --four-wide: 25%; - --five-wide: 31.25%; - --six-wide: 37.5%; - --seven-wide: 43.75%; - --eight-wide: 50%; - --nine-wide: 56.25%; - --ten-wide: 62.5%; - --eleven-wide: 68.75%; - --twelve-wide: 75%; - --thirteen-wide: 81.25%; - --fourteen-wide: 87.5%; - --fifteen-wide: 93.75%; - --sixteen-wide: 100%; - --one-column: 100%; - --two-column: 50%; - --three-column: 33.33333333%; - --four-column: 25%; - --five-column: 20%; - --six-column: 16.66666667%; - --seven-column: 14.28571429%; - --eight-column: 12.5%; - --nine-column: 11.11111111%; - --ten-column: 10%; - --eleven-column: 9.09090909%; - --twelve-column: 8.33333333%; - --thirteen-column: 7.69230769%; - --fourteen-column: 7.14285714%; - --fifteen-column: 6.66666667%; - --sixteen-column: 6.25%; - /******************************* - States - *******************************/ - /*------------------- - Disabled - --------------------*/ - --disabled-opacity: 0.45; - --disabled-text-color: hsl(var(--hsl-neutral-800) / 30%); - --inverted-disabled-text-color: hsl(var(--hsl-white) / 30%); + Since there are many more sizes than names for sizes, + these are named by their original pixel values. - /*------------------- - Hover - --------------------*/ - /*--- Shadows ---*/ - --floating-shadow-hover: 0px 2px 4px 0px rgba(34, 36, 38, 0.15), - 0px 2px 10px 0px rgba(34, 36, 38, 0.25); - /*--- Colors ---*/ - --primary-color-hover: var(--color-blue-600); - --secondary-color-hover: var(--color-zinc-800); - --red-hover: var(--color-red-600); - --orange-hover: var(--color-orange-600); - --yellow-hover: var(--color-yellow-600); - --olive-hover: var(--color-lime-600); - --green-hover: var(--color-green-600); - --teal-hover: var(--color-teal-600); - --blue-hover: var(--color-blue-600); - --violet-hover: var(--color-violet-600); - --purple-hover: var(--color-purple-600); - --pink-hover: var(--color-pink-600); - --brown-hover: var(--color-yellow-900); - --light-red-hover: var(--color-red-500); - --light-orange-hover: var(--color-orange-500); - --light-yellow-hover: var(--color-yellow-500); - --light-olive-hover: var(--color-lime-500); - --light-green-hover: var(--color-green-500); - --light-teal-hover: var(--color-teal-500); - --light-blue-hover: var(--color-blue-500); - --light-violet-hover: var(--color-violet-500); - --light-purple-hover: var(--color-purple-500); - --light-pink-hover: var(--color-pink-500); - --light-brown-hover: var(--color-yellow-800); - --light-grey-hover: var(--color-neutral-400); - --light-black-hover: var(--color-neutral-800); - /*--- Emotive ---*/ - --positive-color-hover: var(--color-green-600); - --negative-color-hover: var(--color-red-600); - /*--- Dark Tones ---*/ - --full-black-hover: var(--color-neutral-950); - --black-hover: var(--color-neutral-800); - --grey-hover: var(--color-neutral-400); - /*--- Light Tones ---*/ - --white-hover: var(--color-gray-50); - --off-white-hover: var(--color-gray-100); - --dark-white-hover: var(--color-gray-200); + */ + --1px: 0.07142857rem; + --2px: 0.14285714rem; + --3px: 0.21428571rem; + --4px: 0.28571429rem; + --5px: 0.35714286rem; + --6px: 0.42857143rem; + --7px: 0.5rem; + --8px: 0.57142857rem; + --9px: 0.64285714rem; + --10px: 0.71428571rem; + --11px: 0.78571429rem; + --12px: 0.85714286rem; + --13px: 0.92857143rem; + --14px: 1rem; + --15px: 1.07142857rem; + --16px: 1.14285714rem; + --17px: 1.21428571rem; + --18px: 1.28571429rem; + --19px: 1.35714286rem; + --20px: 1.42857143rem; + --21px: 1.5rem; + --22px: 1.57142857rem; + --23px: 1.64285714rem; + --24px: 1.71428571rem; + --25px: 1.78571429rem; + --26px: 1.85714286rem; + --27px: 1.92857143rem; + --28px: 2rem; + --29px: 2.07142857rem; + --30px: 2.14285714rem; + --31px: 2.21428571rem; + --32px: 2.28571429rem; + --33px: 2.35714286rem; + --34px: 2.42857143rem; + --35px: 2.5rem; + --36px: 2.57142857rem; + --37px: 2.64285714rem; + --38px: 2.71428571rem; + --39px: 2.78571429rem; + --40px: 2.85714286rem; + --41px: 2.92857143rem; + --42px: 3rem; + --43px: 3.07142857rem; + --44px: 3.14285714rem; + --45px: 3.21428571rem; + --46px: 3.28571429rem; + --47px: 3.35714286rem; + --48px: 3.42857143rem; + --49px: 3.5rem; + --50px: 3.57142857rem; + --51px: 3.64285714rem; + --52px: 3.71428571rem; + --53px: 3.78571429rem; + --54px: 3.85714286rem; + --55px: 3.92857143rem; + --56px: 4rem; + --57px: 4.07142857rem; + --58px: 4.14285714rem; + --59px: 4.21428571rem; + --60px: 4.28571429rem; + --61px: 4.35714286rem; + --62px: 4.42857143rem; + --63px: 4.5rem; + --64px: 4.57142857rem; + --relative1px: 0.07142857em; + --relative2px: 0.14285714em; + --relative3px: 0.21428571em; + --relative4px: 0.28571429em; + --relative5px: 0.35714286em; + --relative6px: 0.42857143em; + --relative7px: 0.5em; + --relative8px: 0.57142857em; + --relative9px: 0.64285714em; + --relative10px: 0.71428571em; + --relative11px: 0.78571429em; + --relative12px: 0.85714286em; + --relative13px: 0.92857143em; + --relative14px: 1em; + --relative15px: 1.07142857em; + --relative16px: 1.14285714em; + --relative17px: 1.21428571em; + --relative18px: 1.28571429em; + --relative19px: 1.35714286em; + --relative20px: 1.42857143em; + --relative21px: 1.5em; + --relative22px: 1.57142857em; + --relative23px: 1.64285714em; + --relative24px: 1.71428571em; + --relative25px: 1.78571429em; + --relative26px: 1.85714286em; + --relative27px: 1.92857143em; + --relative28px: 2em; + --relative29px: 2.07142857em; + --relative30px: 2.14285714em; + --relative31px: 2.21428571em; + --relative32px: 2.28571429em; + --relative33px: 2.35714286em; + --relative34px: 2.42857143em; + --relative35px: 2.5em; + --relative36px: 2.57142857em; + --relative37px: 2.64285714em; + --relative38px: 2.71428571em; + --relative39px: 2.78571429em; + --relative40px: 2.85714286em; + --relative41px: 2.92857143em; + --relative42px: 3em; + --relative43px: 3.07142857em; + --relative44px: 3.14285714em; + --relative45px: 3.21428571em; + --relative46px: 3.28571429em; + --relative47px: 3.35714286em; + --relative48px: 3.42857143em; + --relative49px: 3.5em; + --relative50px: 3.57142857em; + --relative51px: 3.64285714em; + --relative52px: 3.71428571em; + --relative53px: 3.78571429em; + --relative54px: 3.85714286em; + --relative55px: 3.92857143em; + --relative56px: 4em; + --relative57px: 4.07142857em; + --relative58px: 4.14285714em; + --relative59px: 4.21428571em; + --relative60px: 4.28571429em; + --relative61px: 4.35714286em; + --relative62px: 4.42857143em; + --relative63px: 4.5em; + --relative64px: 4.57142857em; + /* Columns */ + --one-wide: 6.25%; + --two-wide: 12.5%; + --three-wide: 18.75%; + --four-wide: 25%; + --five-wide: 31.25%; + --six-wide: 37.5%; + --seven-wide: 43.75%; + --eight-wide: 50%; + --nine-wide: 56.25%; + --ten-wide: 62.5%; + --eleven-wide: 68.75%; + --twelve-wide: 75%; + --thirteen-wide: 81.25%; + --fourteen-wide: 87.5%; + --fifteen-wide: 93.75%; + --sixteen-wide: 100%; + --one-column: 100%; + --two-column: 50%; + --three-column: 33.33333333%; + --four-column: 25%; + --five-column: 20%; + --six-column: 16.66666667%; + --seven-column: 14.28571429%; + --eight-column: 12.5%; + --nine-column: 11.11111111%; + --ten-column: 10%; + --eleven-column: 9.09090909%; + --twelve-column: 8.33333333%; + --thirteen-column: 7.69230769%; + --fourteen-column: 7.14285714%; + --fifteen-column: 6.66666667%; + --sixteen-column: 6.25%; + /******************************* + States + *******************************/ + /*------------------- + Disabled + --------------------*/ + --disabled-opacity: 0.45; - /*------------------- - Focus - --------------------*/ - /*--- Colors ---*/ - --primary-color-focus: var(--color-blue-600); - --secondary-color-focus: var(--color-zinc-800); - --red-focus: var(--color-red-600); - --orange-focus: var(--color-orange-600); - --yellow-focus: var(--color-yellow-600); - --olive-focus: var(--color-lime-600); - --green-focus: var(--color-green-600); - --teal-focus: var(--color-teal-600); - --blue-focus: var(--color-blue-600); - --violet-focus: var(--color-violet-600); - --purple-focus: var(--color-purple-600); - --pink-focus: var(--color-pink-600); - --brown-focus: var(--color-yellow-900); - --light-red-focus: var(--color-red-500); - --light-orange-focus: var(--color-orange-500); - --light-yellow-focus: var(--color-yellow-500); - --light-olive-focus: var(--color-lime-500); - --light-green-focus: var(--color-green-500); - --light-teal-focus: var(--color-teal-500); - --light-blue-focus: var(--color-blue-500); - --light-violet-focus: var(--color-violet-500); - --light-purple-focus: var(--color-purple-500); - --light-pink-focus: var(--color-pink-500); - --light-brown-focus: var(--color-yellow-800); - --light-grey-focus: var(--color-neutral-400); - --light-black-focus: var(--color-neutral-800); - /*--- Emotive ---*/ - --positive-color-focus: var(--color-green-600); - --negative-color-focus: var(--color-red-600); - /*--- Dark Tones ---*/ - --full-black-focus: var(--color-neutral-900); - --black-focus: var(--color-neutral-700); - --grey-focus: var(--color-neutral-300); - /*--- Light Tones ---*/ - --white-focus: var(--color-gray-100); - --off-white-focus: var(--color-gray-200); - --dark-white-focus: var(--color-gray-300); + /*------------------- + Hover + --------------------*/ + /*--- Shadows ---*/ + --floating-shadow-hover: 0px 2px 4px 0px rgba(34, 36, 38, 0.15), + 0px 2px 10px 0px rgba(34, 36, 38, 0.25); + /*--- Colors ---*/ + --primary-color-hover: var(--color-blue-600); + --secondary-color-hover: var(--color-zinc-800); + --red-hover: var(--color-red-600); + --orange-hover: var(--color-orange-600); + --yellow-hover: var(--color-yellow-600); + --olive-hover: var(--color-lime-600); + --green-hover: var(--color-green-600); + --teal-hover: var(--color-teal-600); + --blue-hover: var(--color-blue-600); + --violet-hover: var(--color-violet-600); + --purple-hover: var(--color-purple-600); + --pink-hover: var(--color-pink-600); + --brown-hover: var(--color-yellow-900); + --light-red-hover: var(--color-red-500); + --light-orange-hover: var(--color-orange-500); + --light-yellow-hover: var(--color-yellow-500); + --light-olive-hover: var(--color-lime-500); + --light-green-hover: var(--color-green-500); + --light-teal-hover: var(--color-teal-500); + --light-blue-hover: var(--color-blue-500); + --light-violet-hover: var(--color-violet-500); + --light-purple-hover: var(--color-purple-500); + --light-pink-hover: var(--color-pink-500); + --light-brown-hover: var(--color-yellow-800); + --light-grey-hover: var(--color-neutral-400); + --light-black-hover: var(--color-neutral-800); + /*--- Emotive ---*/ + --positive-color-hover: var(--color-green-600); + --negative-color-hover: var(--color-red-600); + /*--- Dark Tones ---*/ + --full-black-hover: var(--color-neutral-950); + --black-hover: var(--color-neutral-800); + --grey-hover: var(--color-neutral-400); + /*--- Light Tones ---*/ + --white-hover: var(--color-gray-50); + --off-white-hover: var(--color-gray-100); + --dark-white-hover: var(--color-gray-200); - /*------------------- - Down (:active) - --------------------*/ - /*--- Colors ---*/ - --primary-color-down: var(--color-blue-700); - --secondary-color-down: var(--color-zinc-700); - --red-down: var(--color-red-700); - --orange-down: var(--color-orange-700); - --yellow-down: var(--color-yellow-700); - --olive-down: var(--color-lime-700); - --green-down: var(--color-green-700); - --teal-down: var(--color-teal-700); - --blue-down: var(--color-blue-700); - --violet-down: var(--color-violet-700); - --purple-down: var(--color-purple-700); - --pink-down: var(--color-pink-700); - --brown-down: var(--color-yellow-950); - --light-red-down: var(--color-red-600); - --light-orange-down: var(--color-orange-600); - --light-yellow-down: var(--color-yellow-600); - --light-olive-down: var(--color-lime-600); - --light-green-down: var(--color-green-600); - --light-teal-down: var(--color-teal-600); - --light-blue-down: var(--color-blue-600); - --light-violet-down: var(--color-violet-600); - --light-purple-down: var(--color-purple-600); - --light-pink-down: var(--color-pink-600); - --light-brown-down: var(--color-yellow-900); - --light-grey-down: var(--color-neutral-500); - --light-black-down: var(--color-neutral-900); - /*--- Emotive ---*/ - --positive-color-down: var(--color-green-700); - --negative-color-down: var(--color-red-700); - /*--- Dark Tones ---*/ - --full-black-down: var(--color-neutral-800); - --black-down: var(--color-neutral-600); - --grey-down: var(--color-neutral-200); - /*--- Light Tones ---*/ - --white-down: var(--color-gray-200); - --off-white-down: var(--color-gray-300); - --dark-white-down: var(--color-gray-400); + /*------------------- + Focus + --------------------*/ + /*--- Colors ---*/ + --primary-color-focus: var(--color-blue-600); + --secondary-color-focus: var(--color-zinc-800); + --red-focus: var(--color-red-600); + --orange-focus: var(--color-orange-600); + --yellow-focus: var(--color-yellow-600); + --olive-focus: var(--color-lime-600); + --green-focus: var(--color-green-600); + --teal-focus: var(--color-teal-600); + --blue-focus: var(--color-blue-600); + --violet-focus: var(--color-violet-600); + --purple-focus: var(--color-purple-600); + --pink-focus: var(--color-pink-600); + --brown-focus: var(--color-yellow-900); + --light-red-focus: var(--color-red-500); + --light-orange-focus: var(--color-orange-500); + --light-yellow-focus: var(--color-yellow-500); + --light-olive-focus: var(--color-lime-500); + --light-green-focus: var(--color-green-500); + --light-teal-focus: var(--color-teal-500); + --light-blue-focus: var(--color-blue-500); + --light-violet-focus: var(--color-violet-500); + --light-purple-focus: var(--color-purple-500); + --light-pink-focus: var(--color-pink-500); + --light-brown-focus: var(--color-yellow-800); + --light-grey-focus: var(--color-neutral-400); + --light-black-focus: var(--color-neutral-800); + /*--- Emotive ---*/ + --positive-color-focus: var(--color-green-600); + --negative-color-focus: var(--color-red-600); + /*--- Dark Tones ---*/ + --full-black-focus: var(--color-neutral-900); + --black-focus: var(--color-neutral-700); + --grey-focus: var(--color-neutral-300); + /*--- Light Tones ---*/ + --white-focus: var(--color-gray-100); + --off-white-focus: var(--color-gray-200); + --dark-white-focus: var(--color-gray-300); - /*------------------- - Active - --------------------*/ - /*--- Colors ---*/ - --primary-color-active: var(--color-blue-700); - --secondary-color-active: var(--color-zinc-700); - --red-active: var(--color-red-700); - --orange-active: var(--color-orange-700); - --yellow-active: var(--color-yellow-700); - --olive-active: var(--color-lime-700); - --green-active: var(--color-green-700); - --teal-active: var(--color-teal-700); - --blue-active: var(--color-blue-700); - --violet-active: var(--color-violet-700); - --purple-active: var(--color-purple-700); - --pink-active: var(--color-pink-700); - --brown-active: var(--color-yellow-950); - --light-red-active: var(--color-red-600); - --light-orange-active: var(--color-orange-600); - --light-yellow-active: var(--color-yellow-600); - --light-olive-active: var(--color-lime-600); - --light-green-active: var(--color-green-600); - --light-teal-active: var(--color-teal-600); - --light-blue-active: var(--color-blue-600); - --light-violet-active: var(--color-violet-600); - --light-purple-active: var(--color-purple-600); - --light-pink-active: var(--color-pink-600); - --light-brown-active: var(--color-yellow-900); - --light-grey-active: var(--color-neutral-500); - --light-black-active: var(--color-neutral-900); - /*--- Emotive ---*/ - --positive-color-active: var(--color-green-700); - --negative-color-active: var(--color-red-700); - /*--- Dark Tones ---*/ - --full-black-active: var(--color-neutral-800); - --black-active: var(--color-neutral-600); - --grey-active: var(--color-neutral-200); - /*--- Light Tones ---*/ - --white-active: var(--color-gray-200); - --off-white-active: var(--color-gray-300); - --dark-white-active: var(--color-gray-400); - /*------------------- - Button - --------------------*/ - --button-background: var(--color-gray-200) none; - --button-text-color: hsl(var(--hsl-black) / 60%); - --button-margin: 0em 0.25em 0em 0em; - --button-padding: var(--input-vertical-padding) var(--input-horizontal-padding); - --button-text-shadow: none; - --button-box-shadow: 0px 0px 0px 1px transparent inset; - --button-font-weight: 600; - --button-line-height: 1em; - /* Hovered */ - --button-hover-background-color: var(--color-gray-300); - --button-hover-background-image: none; - --button-hover-box-shadow: var(--button-box-shadow); - --button-hover-color: var(--hovered-text-color); - --button-hover-icon-opacity: 0.85; - /* Focused */ - --button-focus-background-color: var(--button-hover-background-color); - --button-focus-background-image: ''; - --button-focus-boxshadow: ''; - --button-focus-color: var(--hovered-text-color); - --button-icon-focus-opacity: 0.85; - /* Disabled */ - --button-disabled-background-image: none; - --button-disabled-box-shadow: none; - /* Pressed Down */ - --button-down-background-color: var(--color-gray-400); - --button-down-background-image: ''; - --button-down-pressed-shadow: none; - --button-down-box-shadow: var(--button-box-shadow), none; - --button-down-color: var(--pressed-text-color); - /* Active */ - --button-active-background-color: var(--color-gray-400); - --button-active-background-image: none; - --button-active-color: var(--selected-text-color); - --button-active-box-shadow: var(--button-box-shadow); - /* Active + Hovered */ - --button-active-hover-background-color: var(--button-active-background-color); - --button-active-hover-background-image: none; - --button-active-hover-color: var(--button-active-color); - --button-active-hover-box-shadow: var(--button-active-box-shadow); - /* Loading */ - --button-loading-opacity: 1; - --button-loading-pointer-events: auto; - --button-loading-transition: all 0s linear, opacity var(--default-duration) var(--default-easing); - /* Icon Only */ - --button-icon-only-opacity: 0.9; - /* Basic style */ - --basic-button-background: transparent none; - --basic-button-text-color: var(--text-color); - --basic-button-font-weight: normal; - --basic-button-border-radius: var(--default-border-radius); - --basic-button-box-shadow: 0px 0px 0px 1px var(--border-color) inset; - --basic-button-hover-background: var(--color-white); - --basic-button-hover-text-color: var(--hovered-text-color); - --basic-button-hover-box-shadow: 0px 0px 0px 1px var(--selected-border-color) inset, 0px 0px 0px 0px var(--border-color) inset; - --basic-button-focus-background: var(--basic-button-hover-background); - --basic-button-focus-text-color: var(--basic-button-hover-text-color); - --basic-button-focus-box-shadow: var(--basic-button-hover-box-shadow); - --basic-button-down-background: var(--color-gray-50); - --basic-button-down-text-color: var(--pressed-text-color); - --basic-button-down-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, - 0px 1px 4px 0px var(--border-color) inset; - --basic-button-active-background: var(--transparent-black); - --basic-button-active-box-shadow: none; - --basic-button-active-text-color: var(--selected-text-color); - /*--- Primary ----*/ - /* Standard */ - --primary-button-background-color: var(--primary-color); - --primary-button-text-color: var(--inverted-text-color); - --primary-button-text-shadow: var(--inverted-text-shadow, none); - --primary-button-background-image: none; - --primary-button-box-shadow: var(--colored-box-shadow, var(--subtle-shadow)); - --primary-button-hover-background-color: var(--primary-color-hover); - --primary-button-focus-background-color: var(--primary-color-focus); - --primary-button-down-background-color: var(--primary-color-down); - --primary-button-active-background-color: var(--primary-color-active); - /* Basic */ - --basic-primary-button-box-shadow: 0px 0px 0px 1px var(--primary-color) inset; - --basic-primary-button-hover-box-shadow: 0px 0px 0px 1px var(--primary-color-hover) inset; - --basic-primary-button-focus-box-shadow: 0px 0px 0px 1px var(--primary-color-focus) inset; - --basic-primary-button-active-box-shadow: 0px 0px 0px 1px var(--primary-color-active) inset; - --basic-primary-button-down-box-shadow: 0px 0px 0px 1px var(--primary-color-down) inset; - /*--- Secondary ----*/ - /* Standard */ - --secondary-button-background-color: var(--secondary-color); - --secondary-button-text-color: var(--inverted-text-color); - --secondary-button-text-shadow: none; - --secondary-button-background-image: none; - --secondary-button-box-shadow: var(--subtle-shadow); - --secondary-button-hover-background-color: var(--secondary-color-hover); - --secondary-button-focus-background-color: var(--secondary-color-focus); - --secondary-button-down-background-color: var(--secondary-color-down); - --secondary-button-active-background-color: var(--secondary-color-active); - /* Basic */ - --basic-secondary-button-box-shadow: 0px 0px 0px 1px var(--secondary-color) inset; - --basic-secondary-button-hover-box-shadow: 0px 0px 0px 1px var(--secondary-color-hover) inset; - --basic-secondary-button-focus-box-shadow: 0px 0px 0px 1px var(--secondary-color-focus) inset; - --basic-secondary-button-down-box-shadow: 0px 0px 0px 1px var(--secondary-color-down) inset; - --basic-secondary-button-active-box-shadow: 0px 0px 0px 1px var(--secondary-color-active) inset; - /*--- Positive ---*/ - /* Standard */ - --positive-button-background-color: var(--positive-color); - --positive-button-text-color: var(--inverted-text-color); - --positive-button-text-shadow: none; - --positive-button-background-image: none; - --positive-button-box-shadow: var(--subtle-shadow); - --positive-button-hover-background-color: var(--positive-color-hover); - --positive-button-focus-background-color: var(--positive-color-focus); - --positive-button-down-background-color: var(--positive-color-down); - --positive-button-active-background-color: var(--positive-color-active); - /* Basic */ - --basic-positive-button-box-shadow: 0px 0px 0px 1px var(--positive-color) inset; - --basic-positive-button-hover-box-shadow: 0px 0px 0px 1px var(--positive-color-hover) inset; - --basic-positive-button-focus-box-shadow: 0px 0px 0px 1px var(--positive-color-focus) inset; - --basic-positive-button-down-box-shadow: 0px 0px 0px 1px var(--positive-color-down) inset; - --basic-positive-button-active-box-shadow: 0px 0px 0px 1px var(--positive-color-active) inset; - /*--- Negative ---*/ - /* Standard */ - --negative-button-background-color: var(--negative-color); - --negative-button-text-color: var(--inverted-text-color); - --negative-button-text-shadow: none; - --negative-button-background-image: none; - --negative-button-box-shadow: var(--subtle-shadow); - --negative-button-hover-background-color: var(--negative-color-hover); - --negative-button-focus-background-color: var(--negative-color-focus); - --negative-button-down-background-color: var(--negative-color-down); - --negative-button-active-background-color: var(--negative-color-active); - /* Basic */ - --basic-negative-button-box-shadow: 0px 0px 0px 1px var(--negative-color) inset; - --basic-negative-button-hover-box-shadow: 0px 0px 0px 1px var(--negative-color-hover) inset; - --basic-negative-button-focus-box-shadow: 0px 0px 0px 1px var(--negative-color-focus) inset; - --basic-negative-button-down-box-shadow: 0px 0px 0px 1px var(--negative-color-down) inset; - --basic-negative-button-active-box-shadow: 0px 0px 0px 1px var(--negative-color-active) inset; - /*------------------- - Divider - --------------------*/ - --divider-text-color: var(--dark-text-color); - --divider-border-shadow-width: 1px; - --divider-border-shadow-color: var(--border-color); - --divider-border-highlight-width: 1px; - --divider-border-highlight-color: var(--white-border-color); + /*------------------- + Down (:active) + --------------------*/ + /*--- Colors ---*/ + --primary-color-down: var(--color-blue-700); + --secondary-color-down: var(--color-zinc-700); + --red-down: var(--color-red-700); + --orange-down: var(--color-orange-700); + --yellow-down: var(--color-yellow-700); + --olive-down: var(--color-lime-700); + --green-down: var(--color-green-700); + --teal-down: var(--color-teal-700); + --blue-down: var(--color-blue-700); + --violet-down: var(--color-violet-700); + --purple-down: var(--color-purple-700); + --pink-down: var(--color-pink-700); + --brown-down: var(--color-yellow-950); + --light-red-down: var(--color-red-600); + --light-orange-down: var(--color-orange-600); + --light-yellow-down: var(--color-yellow-600); + --light-olive-down: var(--color-lime-600); + --light-green-down: var(--color-green-600); + --light-teal-down: var(--color-teal-600); + --light-blue-down: var(--color-blue-600); + --light-violet-down: var(--color-violet-600); + --light-purple-down: var(--color-purple-600); + --light-pink-down: var(--color-pink-600); + --light-brown-down: var(--color-yellow-900); + --light-grey-down: var(--color-neutral-500); + --light-black-down: var(--color-neutral-900); + /*--- Emotive ---*/ + --positive-color-down: var(--color-green-700); + --negative-color-down: var(--color-red-700); + /*--- Dark Tones ---*/ + --full-black-down: var(--color-neutral-800); + --black-down: var(--color-neutral-600); + --grey-down: var(--color-neutral-200); + /*--- Light Tones ---*/ + --white-down: var(--color-gray-200); + --off-white-down: var(--color-gray-300); + --dark-white-down: var(--color-gray-400); - /*------------------- - Header - --------------------*/ - --header-text-color: var(--text-color); - --header-vertical-padding: 0em; - --header-horizontal-padding: 0em; - --header-text-transform: none; - --sub-header-margin: 0em; - --sub-header-font-size: var(--medium-size); - --sub-header-line-height: 1.2em; - --sub-header-text-color: var(--muted-text-color); - --h1-sub-header-font-size: var(--large-size); - --h2-sub-header-font-size: var(--large-size); - --h3-sub-header-font-size: var(--medium-size); - --h4-sub-header-font-size: var(--medium-size); - --h5-sub-header-font-size: var(--small-size); - --huge-header-font-size: var(--h1); - --large-header-font-size: var(--h2); - --medium-header-font-size: var(--h3); - --small-header-font-size: var(--h4); - --tiny-header-font-size: var(--h5); - --huge-sub-header-font-size: var(--h1-sub-header-font-size); - --large-sub-header-font-size: var(--h2-sub-header-font-size); - --sub-header-font-size: var(--h3-sub-header-font-size); - --small-sub-header-font-size: var(--h4-sub-header-font-size); - --tiny-sub-header-font-size: var(--h5-sub-header-font-size); - /*------------------- - Input - --------------------*/ - --input-font-family: var(--page-font); - --input-border-width: 1px; - --input-border: var(--input-border-width) solid var(--border-color); - --input-border-radius: var(--default-border-radius); - --input-box-shadow: none; - --input-down-border-color: rgba(0, 0, 0, 0.3); - --input-down-background: var(--color-gray-50); - --input-down-color: var(--text-color); - --input-down-box-shadow: none; - --input-focus-border-color: var(--focused-form-border-color); - --input-focus-background: var(--input-background); - --input-focus-color: var(--hovered-text-color); - --input-focus-box-shadow: none; - --input-error-background-color: var(--negative-background-color); - --input-error-border-color: var(--negative-border-color); - --input-error-color: var(--negative-text-color); - --input-error-box-shadow: none; - --input-placeholder-error-color: var(--color-red-300); - --input-placeholder-error-focus-color: var(--color-red-400); - /*------------------- - Label - --------------------*/ - --label-background-image: none; - --label-font-weight: var(--font-weights-medium); - --label-border: 0px solid transparent; - --label-border-radius: var(--absolute-border-radius); - --label-hover-background-color: #E0E0E0; - --label-hover-background-image: none; - --label-hover-text-color: var(--hovered-text-color); - --label-active-hover-background-color: #C8C8C8; - --label-active-hover-background-image: none; - --label-active-hover-text-color: var(--selected-text-color); - --label-basic-background: none var(--white); - --label-basic-border-width: 1px; - --label-basic-border-color: var(--border-color); - --label-basic-border: var(--label-basic-border-width) solid var(--label-basic-border-color); - --label-basic-text-color: var(--text-color); - --label-basic-box-shadow: none; - --label-basic-hover-background: var(--label-basic-background); - --label-basic-hover-color: var(--link-hover-color); - --label-basic-hover-border: var(--label-basic-border); - --label-basic-hover-box-shadow: var(--label-basic-box-shadow); - /*------------------- - List - --------------------*/ - --selection-list-item-border-radius: 0.5em; - --selection-list-hover-background: var(--subtle-transparent-black); - --selection-list-hover-color: var(--hovered-text-color); - --selection-list-down-background: var(--transparent-black); - --selection-list-down-color: var(--pressed-text-color); - --selection-list-active-background: var(--transparent-black); - --selection-list-active-color: var(--selected-text-color); + /*------------------- + Active + --------------------*/ + /*--- Colors ---*/ + --primary-color-active: var(--color-blue-700); + --secondary-color-active: var(--color-zinc-700); + --red-active: var(--color-red-700); + --orange-active: var(--color-orange-700); + --yellow-active: var(--color-yellow-700); + --olive-active: var(--color-lime-700); + --green-active: var(--color-green-700); + --teal-active: var(--color-teal-700); + --blue-active: var(--color-blue-700); + --violet-active: var(--color-violet-700); + --purple-active: var(--color-purple-700); + --pink-active: var(--color-pink-700); + --brown-active: var(--color-yellow-950); + --light-red-active: var(--color-red-600); + --light-orange-active: var(--color-orange-600); + --light-yellow-active: var(--color-yellow-600); + --light-olive-active: var(--color-lime-600); + --light-green-active: var(--color-green-600); + --light-teal-active: var(--color-teal-600); + --light-blue-active: var(--color-blue-600); + --light-violet-active: var(--color-violet-600); + --light-purple-active: var(--color-purple-600); + --light-pink-active: var(--color-pink-600); + --light-brown-active: var(--color-yellow-900); + --light-grey-active: var(--color-neutral-500); + --light-black-active: var(--color-neutral-900); + /*--- Emotive ---*/ + --positive-color-active: var(--color-green-700); + --negative-color-active: var(--color-red-700); + /*--- Dark Tones ---*/ + --full-black-active: var(--color-neutral-800); + --black-active: var(--color-neutral-600); + --grey-active: var(--color-neutral-200); + /*--- Light Tones ---*/ + --white-active: var(--color-gray-200); + --off-white-active: var(--color-gray-300); + --dark-white-active: var(--color-gray-400); + /*------------------- + Button + --------------------*/ + --button-background: hsl(var(--hsl-neutral-800)/ 70%) none; + --button-text-color: hsl(var(--hsl-neutral-50) / 60%); + --button-margin: 0em 0.25em 0em 0em; + --button-border: 1px solid var(--strong-transparent-white); + --button-padding: var(--input-vertical-padding) var(--input-horizontal-padding); + --button-text-shadow: none; + /* --button-box-shadow: 0px 1px 2px 0 hsl(var(--hsl-gray-950) / 45%); */ + --button-box-shadow: + /* inner dark glow */ + 0 0 0.5px 1px hsl(var(--hsl-black) / 0.075) inset, + /* shadow ring */ + 0 0 0 1px hsl(var(--hsl-black) / 0.05), + /* /* multiple soft shadows */ + 0 0.3px 0.4px hsl(0deg 0% 0% / 0.02), + 0 0.9px 1.5px hsl(0deg 0% 0% / 0.045), + 0 3.5px 6px hsl(0deg 0% 0% / 0.09); - /*------------------- - Loader - --------------------*/ - --loader-shape-border-color: var(--loader-line-color) transparent transparent; - --loader-text-color: var(--text-color); + --button-font-weight: 600; + --button-line-height: 1em; + /* Hovered */ + --button-hover-background-color: hsl(var(--hsl-neutral-700) / 70%); + --button-hover-background-image: none; + --button-hover-box-shadow: var(--button-box-shadow); + --button-hover-color: var(--hovered-text-color); + --button-hover-icon-opacity: 0.85; + /* Focused */ + --button-focus-background-color: var(--button-hover-background-color); + --button-focus-background-image: ''; + --button-focus-boxshadow: ''; + --button-focus-color: var(--hovered-text-color); + --button-icon-focus-opacity: 0.85; + /* Disabled */ + --button-disabled-background-image: none; + --button-disabled-box-shadow: none; + /* Pressed Down */ + --button-down-background-color: hsl(var(--hsl-neutral-800) / 80%); + --button-down-background-image: ''; + --button-down-pressed-shadow: none; + --button-down-box-shadow: var(--button-box-shadow), none; + --button-down-color: var(--pressed-text-color); + /* Active */ + --button-active-background-color: hsl(var(--hsl-neutral-700) / 70%); + --button-active-background-image: none; + --button-active-color: var(--selected-text-color); + --button-active-box-shadow: var(--button-box-shadow); + /* Active + Hovered */ + --button-active-hover-background-color: var(--button-active-background-color); + --button-active-hover-background-image: none; + --button-active-hover-color: var(--button-active-color); + --button-active-hover-box-shadow: var(--button-active-box-shadow); + /* Loading */ + --button-loading-opacity: 1; + --button-loading-pointer-events: auto; + --button-loading-transition: all 0s linear, opacity var(--default-duration) var(--default-easing); + /* Icon Only */ + --button-icon-only-opacity: 0.9; + /* Basic style */ + --basic-button-background: transparent none; + --basic-button-text-color: var(--text-color); + --basic-button-font-weight: normal; + --basic-button-border-radius: var(--default-border-radius); + --basic-button-box-shadow: 0px 0px 0px 1px var(--color-neutral-900) inset; + --basic-button-hover-background: hsl(var(--hsl-neutral-800) / 50%); + --basic-button-hover-text-color: var(--hovered-text-color); + --basic-button-hover-box-shadow: 0px 0px 0px 1px var(--selected-border-color) inset, 0px 0px 0px 0px var(--border-color) inset; + --basic-button-focus-background: var(--basic-button-hover-background); + --basic-button-focus-text-color: var(--basic-button-hover-text-color); + --basic-button-focus-box-shadow: var(--basic-button-hover-box-shadow); + --basic-button-down-background: hsl(var(--hsl-neutral-700) / 50%); + --basic-button-down-text-color: var(--pressed-text-color); + --basic-button-down-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, + 0px 1px 4px 0px var(--border-color) inset; + --basic-button-active-background: var(--transparent-black); + --basic-button-active-box-shadow: none; + --basic-button-active-text-color: var(--selected-text-color); + /*--- Primary ----*/ + /* Standard */ + --primary-button-background-color: var(--primary-color); + --primary-button-text-color: var(--inverted-text-color); + --primary-button-text-shadow: var(--inverted-text-shadow, none); + --primary-button-background-image: none; + --primary-button-box-shadow: var(--colored-box-shadow, var(--subtle-shadow)); + --primary-button-hover-background-color: var(--primary-color-hover); + --primary-button-focus-background-color: var(--primary-color-focus); + --primary-button-down-background-color: var(--primary-color-down); + --primary-button-active-background-color: var(--primary-color-active); + /* Basic */ + --basic-primary-button-box-shadow: 0px 0px 0px 1px var(--primary-color) inset; + --basic-primary-button-hover-box-shadow: 0px 0px 0px 1px var(--primary-color-hover) inset; + --basic-primary-button-focus-box-shadow: 0px 0px 0px 1px var(--primary-color-focus) inset; + --basic-primary-button-active-box-shadow: 0px 0px 0px 1px var(--primary-color-active) inset; + --basic-primary-button-down-box-shadow: 0px 0px 0px 1px var(--primary-color-down) inset; + /*--- Secondary ----*/ + /* Standard */ + --secondary-button-background-color: var(--secondary-color); + --secondary-button-text-color: var(--inverted-text-color); + --secondary-button-text-shadow: none; + --secondary-button-background-image: none; + --secondary-button-box-shadow: var(--subtle-shadow); + --secondary-button-hover-background-color: var(--secondary-color-hover); + --secondary-button-focus-background-color: var(--secondary-color-focus); + --secondary-button-down-background-color: var(--secondary-color-down); + --secondary-button-active-background-color: var(--secondary-color-active); + /* Basic */ + --basic-secondary-button-box-shadow: 0px 0px 0px 1px var(--secondary-color) inset; + --basic-secondary-button-hover-box-shadow: 0px 0px 0px 1px var(--secondary-color-hover) inset; + --basic-secondary-button-focus-box-shadow: 0px 0px 0px 1px var(--secondary-color-focus) inset; + --basic-secondary-button-down-box-shadow: 0px 0px 0px 1px var(--secondary-color-down) inset; + --basic-secondary-button-active-box-shadow: 0px 0px 0px 1px var(--secondary-color-active) inset; + /*--- Positive ---*/ + /* Standard */ + --positive-button-background-color: var(--positive-color); + --positive-button-text-color: var(--inverted-text-color); + --positive-button-text-shadow: none; + --positive-button-background-image: none; + --positive-button-box-shadow: var(--subtle-shadow); + --positive-button-hover-background-color: var(--positive-color-hover); + --positive-button-focus-background-color: var(--positive-color-focus); + --positive-button-down-background-color: var(--positive-color-down); + --positive-button-active-background-color: var(--positive-color-active); + /* Basic */ + --basic-positive-button-box-shadow: 0px 0px 0px 1px var(--positive-color) inset; + --basic-positive-button-hover-box-shadow: 0px 0px 0px 1px var(--positive-color-hover) inset; + --basic-positive-button-focus-box-shadow: 0px 0px 0px 1px var(--positive-color-focus) inset; + --basic-positive-button-down-box-shadow: 0px 0px 0px 1px var(--positive-color-down) inset; + --basic-positive-button-active-box-shadow: 0px 0px 0px 1px var(--positive-color-active) inset; + /*--- Negative ---*/ + /* Standard */ + --negative-button-background-color: var(--negative-color); + --negative-button-text-color: var(--inverted-text-color); + --negative-button-text-shadow: none; + --negative-button-background-image: none; + --negative-button-box-shadow: var(--subtle-shadow); + --negative-button-hover-background-color: var(--negative-color-hover); + --negative-button-focus-background-color: var(--negative-color-focus); + --negative-button-down-background-color: var(--negative-color-down); + --negative-button-active-background-color: var(--negative-color-active); + /* Basic */ + --basic-negative-button-box-shadow: 0px 0px 0px 1px var(--negative-color) inset; + --basic-negative-button-hover-box-shadow: 0px 0px 0px 1px var(--negative-color-hover) inset; + --basic-negative-button-focus-box-shadow: 0px 0px 0px 1px var(--negative-color-focus) inset; + --basic-negative-button-down-box-shadow: 0px 0px 0px 1px var(--negative-color-down) inset; + --basic-negative-button-active-box-shadow: 0px 0px 0px 1px var(--negative-color-active) inset; + /*------------------- + Divider + --------------------*/ + --divider-text-color: var(--dark-text-color); + --divider-border-shadow-width: 1px; + --divider-border-shadow-color: var(--border-color); + --divider-border-highlight-width: 1px; + --divider-border-highlight-color: var(--white-border-color); - /*------------------- - Semgnet - --------------------*/ - --segment-background: var(--white); - --segment-border: 1px solid var(--border-color); - --segment-box-shadow: var(--subtle-shadow); - --segment-border-radius: var(--default-border-radius); - --grouped-segment-box-shadow: none; - --grouped-segment-border: none; - --grouped-segment-divider: 1px solid var(--border-color); - /* --grouped-segment-group-border: 1px solid var(--border-color); */ - --grouped-segment-group-border: none; - --grouped-segment-group-segment-box-shadow: 0 0 0 1px hsl(var(--hsl-neutral-900) / 0.1), - 0 1px 1px hsl(var(--hsl-neutral-900) / .1), - 0 1.5px 3px -2px hsl(var(--hsl-neutral-900) / .3), - 0 4px 6px hsl(var(--hsl-neutral-900) / .04), - 0 8px 12px -1px hsl(var(--hsl-neutral-900) / .03); - --grouped-segment-group-border-radius: var(--default-border-radius); - /*------------------- - Form - --------------------*/ - --form-input-font: var(--page-font); - --form-input-font-size: 1em; - --form-label-color: var(--text-color); - --form-label-font-size: var(--relative-small); - --form-label-font-weight: var(--font-weights-bold); - --input-border-radius: var(--absolute-border-radius); - --input-box-shadow: 0em 0em 0em 0em transparent inset; - --form-textarea-line-height: 1.2857; - --form-select-background: var(--white); - --form-select-border: var(--input-border); - --form-select-border-radius: var(--input-border-radius); - --form-select-box-shadow: var(--input-box-shadow); - --form-select-color: var(--input-color); - --form-prompt-background: var(--white); - --form-prompt-border-color: var(--negative-border-color); - --form-prompt-border: 1px solid var(--form-prompt-border-color); - --form-prompt-text-color: var(--negative-text-color); - --form-input-focus-color: var(--selected-text-color); - --form-input-focus-border-color: var(--focused-form-border-color); - --form-input-focus-border-radius: var(--input-border-radius); - --form-input-focus-background: var(--input-background); - --form-input-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; - --form-textarea-focus-color: var(--selected-text-color); - --form-textarea-focus-border-color: var(--focused-form-border-color); - --form-textarea-focus-border-radius: var(--input-border-radius); - --form-textarea-focus-background: var(--input-background); - --form-textarea-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; - --form-error-color: var(--negative-text-color); - --form-error-border-color: var(--negative-border-color); - --form-error-border-radius: var(--input-border-radius); - --form-error-background: var(--negative-background-color); - --form-error-box-shadow: none; - --form-error-focus-color: var(--negative-text-color); - --form-error-focus-border-color: var(--negative-border-color); - --form-error-focus-background: var(--negative-background-color); - --form-error-focus-box-shadow: none; - --form-loader-dimmer-color: rgba(255, 255, 255, 0.8); - --form-loader-dimmer-z-index: 100; - --form-inline-label-color: var(--text-color); - --form-inline-label-font-size: var(--relative-small); - --form-inline-label-font-weight: var(--font-weights-bold); - --form-inline-input-size: var(--relative-medium); - /*------------------- - Menu - --------------------*/ - --menu-background: var(--white); - --menu-font-weight: normal; - --menu-font-family: var(--page-font); - --menu-border: 1px solid var(--border-color); - --menu-shadow: var(--subtle-shadow); - --menu-border-radius: var(--default-border-radius); - --menu-item-background: none; - --menu-item-text-color: var(--text-color); - --menu-item-font-weight: normal; - --menu-divider-background: var(--internal-border-color); - --menu-hover-item-background: var(--subtle-transparent-black); - --menu-hover-item-text-color: var(--selected-text-color); - --menu-pressed-item-background: var(--subtle-transparent-black); - --menu-pressed-item-text-color: var(--selected-text-color); - --menu-active-item-background: var(--transparent-black); - --menu-active-item-text-color: var(--selected-text-color); - --menu-active-item-font-weight: normal; - --menu-active-item-box-shadow: none; - --menu-active-hover-item-background: var(--transparent-black); - --menu-active-hover-item-color: var(--selected-text-color); - --vertical-menu-background: var(--white); - --vertical-menu-box-shadow: var(--subtle-shadow); - --vertical-menu-item-background: none; - --vertical-divider-background: var(--internal-border-color); - --tabular-menu-background: none transparent; - --tabular-menu-border-width: 1px; - --tabular-menu-border-color: var(--solid-border-color); - --tabular-menu-text-color: var(--menu-item-text-color); - --tabular-menu-hovered-text-color: var(--hovered-text-color); - --tabular-menu-active-background: none var(--white); - --tabular-menu-active-color: var(--selected-text-color); - --tabular-menu-active-box-shadow: none; - --tabular-menu-border-radius: var(--default-border-radius); - --secondary-menu-background: none; - --secondary-menu-item-background: none; - --secondary-menu-item-border-radius: var(--default-border-radius); - --secondary-menu-header-border: none; - --secondary-menu-header-background: none transparent; - --secondary-menu-hover-item-background: var(--transparent-black); - --secondary-menu-hover-item-color: var(--selected-text-color); - --secondary-menu-active-item-background: var(--transparent-black); - --secondary-menu-active-item-color: var(--selected-text-color); - --secondary-menu-active-hover-item-background: var(--transparent-black); - --secondary-menu-active-hover-item-color: var(--selected-text-color); - --secondary-vertical-menu-item-border-radius: var(--default-border-radius); - /*------------------- - Message - --------------------*/ - --message-background: hsl(var(--hsl-zinc-50) / 20%); - --message-shadow-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0); - --message-box-shadow: 0px 0px 0px 1px var(--strong-border-color) inset, - var(--message-shadow-shadow); - --message-header-font-weight: var(--font-weights-bold); - --message-header-font-size: var(--relative-large); - --message-text-opacity: 0.85; - --message-list-opacity: 0.85; - --positive-box-shadow: 0px 0px 0px 1px var(--positive-border-color) inset, - var(--message-shadow-shadow); - --negative-box-shadow: 0px 0px 0px 1px var(--negative-border-color) inset, - var(--message-shadow-shadow); - --info-box-shadow: 0px 0px 0px 1px var(--info-border-color) inset, - var(--message-shadow-shadow); - --warning-box-shadow: 0px 0px 0px 1px var(--warning-border-color) inset, - var(--message-shadow-shadow); - --error-box-shadow: 0px 0px 0px 1px var(--error-border-color) inset, - var(--message-shadow-shadow); - --success-box-shadow: 0px 0px 0px 1px var(--success-border-color) inset, - var(--message-shadow-shadow); - /*------------------- - Table - --------------------*/ - --table-background: var(--white); - --table-border-width: 1px; - --table-border: var(--table-border-width) solid var(--border-color); - --table-box-shadow: noone; - --table-header-background: var(--off-white); - --table-header-color: var(--text-color); - --table-header-font-style: none; - --table-header-font-weight: var(--font-weights-bold); - --table-header-border: 1px solid var(--internal-border-color); - --table-header-divider: none; - /*------------------- - Checkbox - --------------------*/ - --checkbox-color: var(--text-color); - --checkbox-background: var(--white); - --checkbox-border-radius: var(--3px); - --checkbox-border: 1px solid var(--solid-border-color); - --checkbpx-label-color: var(--text-color); - --checkbox-hover-background: var(--checkbox-background); - --checkbox-hover-border-color: var(--selected-border-color); - --checkbox-label-hover-color: var(--hovered-text-color); - --checkbox-pressed-background: var(--off-white); - --checkbox-pressed-border-color: var(--selected-border-color); - --checkbox-pressed-color: var(--selected-text-color); - --checkbox-pressed-label-color: var(--selected-text-color); - --checkbox-focus-background: var(--white); - --checkbox-focus-border-color: var(--focused-form-muted-border-color); - --checkbox-focus-check-color: var(--selected-text-color); - --checkbox-focus-label-color: var(--selected-text-color); - --checkbox-active-background: var(--white); - --checkbox-active-border-color: var(--selected-border-color); - --checkbox-active-check-opacity: 1; - --checkbox-active-check-color: var(--selected-text-color); - --checkbox-intermediate-background: var(--checkbox-active-background); - --checkbox-intermediate-border-color: var(--checkbox-active-border-color); - --checkbox-intermediate-check-opacity: 1; - --checkbox-intermediate-check-color: var(--checkbox-active-check-color); - --checkbox-active-focus-background: var(--white); - --checkbox-active-focus-border-color: var(--checkbox-focus-border-color); - --checkbox-active-focus-check-color: var(--selected-text-color); - --checkbox-disabled-opacity: 0.5; - --checkbox-disabled-label-color: #000000; - --radio-bullet-color: var(--text-color); - --radio-focus-background: var(--checkbox-focus-background); - --radio-focus-bullet-color: var(--checkbox-focus-check-color); - --radio-active-background: var(--checkbox-active-background); - --radio-active-bullet-color: var(--checkbox-active-check-color); - --radio-active-focus-background: var(--checkbox-active-focus-background); - --radio-active-focus-bullet-color: var(--checkbox-active-focus-check-color); - --toggle-off-label-color: var(--checkbox-color); - --toggle-lane-background: var(--transparent-black); - --toggle-lane-box-shadow: none; - --toggle-handle-radius: var(--circular-radius); - --toggle-handle-background: var(--white) var(--subtle-gradient); - --toggle-handle-box-shadow: var(--subtle-shadow), - 0px 0px 0px 1px var(--border-color) inset; - --toggle-focus-color: var(--very-strong-transparent-black); - --toggle-hover-color: var(--toggle-focus-color); - --toggle-on-label-color: var(--selected-text-color); - --toggle-on-lane-color: var(--primary-color); - --toggle-on-handle-box-shadow: var(--toggle-handle-box-shadow); - --toggle-on-focus-label-color: var(--toggle-on-label-color); - --toggle-on-focus-lane-color: var(--primary-color-focus); - /*------------------- - Dropdown - --------------------*/ - --dropdown-menu-background: var(--white); - --dropdown-menu-box-shadow: var(--raised-shadow); - --dropdown-menu-border-width: 1px; - --dropdown-menu-border-color: var(--border-color); - --dropdown-menu-border: var(--dropdown-menu-border-width) solid var(--dropdown-menu-border-color); - --dropdown-menu-border-radius: var(--default-border-radius); - --dropdown-menu-item-border: none; - --dropdown-menu-item-divider: none; - --dropdown-menu-item-color: var(--text-color); - --dropdown-menu-item-font-weight: var(--font-weights-normal); - --dropdown-menu-header-color: var(--dark-text-color); - --dropdown-menu-divider-border: 1px solid var(--internal-border-color); - --dropdown-menu-item-description-color: var(--light-text-color); - --dropdown-menu-message-color: var(--unselected-text-color); - --inline-dropdown-text-font-weight: var(--font-weights-bold); - --dropdown-active-item-background: transparent; - --dropdown-active-item-font-weight: var(--font-weights-bold); - --dropdown-active-item-color: var(--selected-text-color); - --dropdown-hovered-item-background: var(--transparent-black); - --dropdown-hovered-item-color: var(--selected-text-color); - --dropdown-default-text-color: var(--input-placeholder-color); - --dropdown-default-text-focus-color: var(--input-placeholder-focus-color); - --dropdown-selected-background: var(--subtle-transparent-black); - --dropdown-selected-color: var(--selected-text-color); - --dropdown-error-item-hover-background: #FFF2F2; - --dropdown-error-item-active-background: #FDCFCF; - /*------------------- - Modal - --------------------*/ - --modal-border: none; - --modal-border-radius: var(--default-border-radius); - --modal-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.067), - 0 6.7px 5.3px rgba(0, 0, 0, 0.097), - 0 12.5px 10px rgba(0, 0, 0, 0.12), - 0 22.3px 17.9px rgba(0, 0, 0, 0.143), - 0 41.8px 33.4px rgba(0, 0, 0, 0.173), - 0 100px 80px rgba(0, 0, 0, 0.24); - --modal-box-close-opacity: 0.8; - --modal-box-close-size: 1.25em; - --modal-box-close-color: var(--white); - --modal-box-header-background: var(--white); - --modal-box-header-color: var(--dark-text-color); - --modal-box-header-border: 1px solid var(--solid-color); - --modal-box-header-font-size: 1rem; - --modal-box-header-font-weight: var(--font-weights-bold); - --modal-box-content-font-size: 1em; - --modal-box-content-background: var(--white); - --modal-box-actions-background: var(--off-white); - --modal-box-actions-border: 1px solid var(--border-color); - /*------------------- - Side Bar - --------------------*/ - --sidebar-color-scheme: dark; - --sidebar-background: var(--color-neutral-900); - --sidebar-menu-item-inactive-background: hsl(var(--hsl-slate-600) / 70%); - --sidebar-menu-item-active-background: hsl(var(--hsl-blue-300) / 50%); - --sidebar-menu-section-color: var(--inverted-unselected-text-color); - --sidebar-menu-section-separator-color: rgba(255, 255, 255, 0.1); - --sidebar-menu-item-color: var(--inverted-light-text-color); - --sidebar-menu-action-color: var(--inverted-disabled-text-color); - --sidebar-menu-action-hover-color: var(--inverted-light-text-color); - --sidebar-sync-status-view-background: var(--color-gray-950); - --sidebar-sync-status-view-text-color: var(--inverted-muted-text-color); - --sidebar-sync-status-view-detail-color: var(--inverted-unselected-text-color); - --sidebar-scrollbar-width: 6px; - --sidebar-scrollbar-track-background: rgba(255, 255, 255, 0.02); - --sidebar-scrollbar-thumb-background: rgba(255, 255, 255, 0.2); - /*------------------- - Scroll Bar - --------------------*/ - --scrollbar-width: 6px; - --scrollbar-track-background: rgba(0, 0, 0, 0.05); - --scrollbar-thumb-background: rgba(0, 0, 0, 0.2); - /*------------------- - Note List Bar - --------------------*/ - --note-list-bar-background: var(--color-neutral-800); - --note-list-bar-pinned-section-header-background: var(--color-neutral-200); - --note-list-bar-pinned-section-header-border-bottom: none; - --note-list-bar-pinned-section-footer-border-bottom: 4px solid #ccc; - --note-list-view-item-color: var(--muted-text-color); - --note-list-view-item-separator-border: 1px solid var(--color-neutral-900); - --note-list-view-item-date-color: var(--primary-color); - --note-list-view-item-tag-color: var(--blue-focus); - --note-list-view-item-selected-background: hsl(var(--hsl-sky-800) / 20%); - --note-list-view-item-active-background: var(--primary-color); - --note-search-bar-background: var(--note-list-bar-background); - --note-search-bar-border-bottom: rgba(255, 255, 255, 0.8); - --note-search-bar-input-border: 1px solid transparent; - --note-search-bar-input-background: var(--input-background); - --mark-border-width: 1px; - --mark-border-color: hsl(var(--hsl-yellow-400) / 40%); - --mark-background-color: hsl(var(--hsl-yellow-400) / 20%); - --mark-color: light-dark(var(--color-gray-950), var(--color-gray-50)); - --mark-font-weight: var(--font-weights-bold); - /*------------------- - Editor - --------------------*/ - --editor-background: var(--color-neutral-900); - /*------------------- - Header Note Menu - --------------------*/ - --header-note-menu-background: transparent; - --header-note-menu-color: var(--light-text-color); - --header-note-menu-action-item-active-background: var(--info-background-color); - --header-note-menu-action-item-active-border: 1px solid var(--info-border-color); - --header-note-menu-action-item-separator-border: 1px solid var(--white-down); - --header-note-menu-encrypt-button-color: var(--yellow-text-color); - --header-note-menu-encrypt-button-background: var(--yellow-background); - /*------------------- - Preferences - --------------------*/ - --preferences-sidebar-background: #f5f5f4; - --preferences-sidebar-item-active-background: rgba(79, 142, 255, 0.2); - --preferences-view-background: #ffffff; - /*------------------- - Task Icons - --------------------*/ - --task-icon-active: hsl(var(--hsl-slate-400)); - --task-icon-onhold: hsl(var(--hsl-amber-500)); - --task-icon-completed: hsl(var(--hsl-emerald-500)); - --task-icon-dropped: hsl(var(--hsl-rose-400)); - /*------------------- - Task Progress View - --------------------*/ - --task-progress-view-border-color: hsl(var(--hsl-gray-950) / 30%); - --task-progress-view-background-color: hsl(var(--hsl-gray-950) / 30%); - --task-progress-view-foreground-color: hsl(var(--hsl-white) / 60%); - --task-progress-view-completed-color: hsl(var(--hsl-green-500)); - } + /*------------------- + Header + --------------------*/ + --header-text-color: var(--text-color); + --header-vertical-padding: 0em; + --header-horizontal-padding: 0em; + --header-text-transform: none; + --sub-header-margin: 0em; + --sub-header-font-size: var(--medium-size); + --sub-header-line-height: 1.2em; + --sub-header-text-color: var(--muted-text-color); + --h1-sub-header-font-size: var(--large-size); + --h2-sub-header-font-size: var(--large-size); + --h3-sub-header-font-size: var(--medium-size); + --h4-sub-header-font-size: var(--medium-size); + --h5-sub-header-font-size: var(--small-size); + --huge-header-font-size: var(--h1); + --large-header-font-size: var(--h2); + --medium-header-font-size: var(--h3); + --small-header-font-size: var(--h4); + --tiny-header-font-size: var(--h5); + --huge-sub-header-font-size: var(--h1-sub-header-font-size); + --large-sub-header-font-size: var(--h2-sub-header-font-size); + --sub-header-font-size: var(--h3-sub-header-font-size); + --small-sub-header-font-size: var(--h4-sub-header-font-size); + --tiny-sub-header-font-size: var(--h5-sub-header-font-size); + /*------------------- + Input + --------------------*/ + --input-font-family: var(--page-font); + --input-border-width: 1px; + --input-border: var(--input-border-width) solid var(--border-color); + --input-border-radius: var(--default-border-radius); + --input-box-shadow: none; + --input-down-border-color: rgba(0, 0, 0, 0.3); + --input-down-background: var(--color-gray-50); + --input-down-color: var(--text-color); + --input-down-box-shadow: none; + --input-focus-border-color: var(--focused-form-border-color); + --input-focus-background: var(--input-background); + --input-focus-color: var(--hovered-text-color); + --input-focus-box-shadow: none; + --input-error-background-color: var(--negative-background-color); + --input-error-border-color: var(--negative-border-color); + --input-error-color: var(--negative-text-color); + --input-error-box-shadow: none; + --input-placeholder-error-color: var(--color-red-300); + --input-placeholder-error-focus-color: var(--color-red-400); + /*------------------- + Label + --------------------*/ + --label-background-image: none; + --label-font-weight: var(--font-weights-medium); + --label-border: 0px solid transparent; + --label-border-radius: var(--absolute-border-radius); + --label-hover-background-color: #E0E0E0; + --label-hover-background-image: none; + --label-hover-text-color: var(--hovered-text-color); + --label-active-hover-background-color: #C8C8C8; + --label-active-hover-background-image: none; + --label-active-hover-text-color: var(--selected-text-color); + --label-basic-background: none var(--white); + --label-basic-border-width: 1px; + --label-basic-border-color: var(--border-color); + --label-basic-border: var(--label-basic-border-width) solid var(--label-basic-border-color); + --label-basic-text-color: var(--text-color); + --label-basic-box-shadow: none; + --label-basic-hover-background: var(--label-basic-background); + --label-basic-hover-color: var(--link-hover-color); + --label-basic-hover-border: var(--label-basic-border); + --label-basic-hover-box-shadow: var(--label-basic-box-shadow); + /*------------------- + List + --------------------*/ + --selection-list-item-border-radius: 0.5em; + --selection-list-hover-background: var(--subtle-transparent-black); + --selection-list-hover-color: var(--hovered-text-color); + --selection-list-down-background: var(--transparent-black); + --selection-list-down-color: var(--pressed-text-color); + --selection-list-active-background: var(--transparent-black); + --selection-list-active-color: var(--selected-text-color); + + /*------------------- + Loader + --------------------*/ + --loader-shape-border-color: var(--loader-line-color) transparent transparent; + --loader-text-color: var(--text-color); + + /*------------------- + Segment + --------------------*/ + --segment-background: hsl(var(--hsl-neutral-800)/ 50%); + --segment-border: 1px solid var(--border-color); + --segment-box-shadow: var(--subtle-shadow); + --segment-border-radius: var(--default-border-radius); + --secondary-segment-background: hsl(var(--hsl-neutral-700) / 50%); + --secondary-segment-color: var(--muted-text-color); + --grouped-segment-box-shadow: none; + --grouped-segment-border: none; + --grouped-segment-divider: 1px solid var(--border-color); + /* --grouped-segment-group-border: 1px solid var(--border-color); */ + --grouped-segment-group-border: none; + --grouped-segment-group-segment-box-shadow: 0 0 0 1px hsl(var(--hsl-neutral-100) / 10%), + 0 1px 1px hsl(var(--hsl-neutral-900) / .1), + 0 1.5px 3px -2px hsl(var(--hsl-neutral-900) / .3), + 0 4px 6px hsl(var(--hsl-neutral-900) / .04), + 0 8px 12px -1px hsl(var(--hsl-neutral-900) / .03); + --grouped-segment-group-border-radius: var(--default-border-radius); + --grouped-segment-hover-background: hsl(var(--hsl-neutral-800) / 80%); + /*------------------- + Form + --------------------*/ + --form-input-font: var(--page-font); + --form-input-font-size: 1em; + --form-label-color: var(--text-color); + --form-label-font-size: var(--relative-small); + --form-label-font-weight: var(--font-weights-bold); + --input-border-radius: var(--absolute-border-radius); + --input-box-shadow: 0em 0em 0em 0em transparent inset; + --form-textarea-line-height: 1.2857; + --form-select-background: var(--white); + --form-select-border: var(--input-border); + --form-select-border-radius: var(--input-border-radius); + --form-select-box-shadow: var(--input-box-shadow); + --form-select-color: var(--input-color); + --form-prompt-background: var(--white); + --form-prompt-border-color: var(--negative-border-color); + --form-prompt-border: 1px solid var(--form-prompt-border-color); + --form-prompt-text-color: var(--negative-text-color); + --form-input-focus-color: var(--selected-text-color); + --form-input-focus-border-color: var(--focused-form-border-color); + --form-input-focus-border-radius: var(--input-border-radius); + --form-input-focus-background: var(--input-background); + --form-input-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; + --form-textarea-focus-color: var(--selected-text-color); + --form-textarea-focus-border-color: var(--focused-form-border-color); + --form-textarea-focus-border-radius: var(--input-border-radius); + --form-textarea-focus-background: var(--input-background); + --form-textarea-focus-box-shadow: 0px 0em 0em 0em var(--selected-border-color) inset; + --form-error-color: var(--negative-text-color); + --form-error-border-color: var(--negative-border-color); + --form-error-border-radius: var(--input-border-radius); + --form-error-background: var(--negative-background-color); + --form-error-box-shadow: none; + --form-error-focus-color: var(--negative-text-color); + --form-error-focus-border-color: var(--negative-border-color); + --form-error-focus-background: var(--negative-background-color); + --form-error-focus-box-shadow: none; + --form-loader-dimmer-color: rgba(255, 255, 255, 0.8); + --form-loader-dimmer-z-index: 100; + --form-inline-label-color: var(--text-color); + --form-inline-label-font-size: var(--relative-small); + --form-inline-label-font-weight: var(--font-weights-bold); + --form-inline-input-size: var(--relative-medium); + /*------------------- + Menu + --------------------*/ + --menu-background: var(--white); + --menu-font-weight: normal; + --menu-font-family: var(--page-font); + --menu-border: 1px solid var(--border-color); + --menu-shadow: var(--subtle-shadow); + --menu-border-radius: var(--default-border-radius); + --menu-item-background: none; + --menu-item-text-color: var(--text-color); + --menu-item-font-weight: normal; + --menu-divider-background: var(--internal-border-color); + --menu-hover-item-background: var(--subtle-transparent-black); + --menu-hover-item-text-color: var(--selected-text-color); + --menu-pressed-item-background: var(--subtle-transparent-black); + --menu-pressed-item-text-color: var(--selected-text-color); + --menu-active-item-background: var(--transparent-black); + --menu-active-item-text-color: var(--selected-text-color); + --menu-active-item-font-weight: normal; + --menu-active-item-box-shadow: none; + --menu-active-hover-item-background: var(--transparent-black); + --menu-active-hover-item-color: var(--selected-text-color); + --vertical-menu-background: hsl(var(--hsl-neutral-900) / 70%); + --vertical-menu-box-shadow: var(--subtle-shadow); + --vertical-menu-item-background: none; + --vertical-divider-background: var(--internal-border-color); + --tabular-menu-background: none transparent; + --tabular-menu-border-width: 1px; + --tabular-menu-border-color: var(--solid-border-color); + --tabular-menu-text-color: var(--menu-item-text-color); + --tabular-menu-hovered-text-color: var(--hovered-text-color); + --tabular-menu-active-background: none var(--white); + --tabular-menu-active-color: var(--selected-text-color); + --tabular-menu-active-box-shadow: none; + --tabular-menu-border-radius: var(--default-border-radius); + --secondary-menu-background: none; + --secondary-menu-item-background: none; + --secondary-menu-item-border-radius: var(--default-border-radius); + --secondary-menu-header-border: none; + --secondary-menu-header-background: none transparent; + --secondary-menu-hover-item-background: var(--transparent-black); + --secondary-menu-hover-item-color: var(--selected-text-color); + --secondary-menu-active-item-background: var(--transparent-black); + --secondary-menu-active-item-color: var(--selected-text-color); + --secondary-menu-active-hover-item-background: var(--transparent-black); + --secondary-menu-active-hover-item-color: var(--selected-text-color); + --secondary-vertical-menu-item-border-radius: var(--default-border-radius); + --secondary-vertical-pointing-menu-border-right-color: var(--border-color); + --secondary-pointing-menu-hover-text-color: var(--highlight-color); + --secondary-pointing-menu-active-item-color: var(--selected-text-color); + --secondary-pointing-menu-active-hover-item-color: var(--selected-text-color); + /*------------------- + Message + --------------------*/ + --message-background: hsl(var(--hsl-zinc-50) / 20%); + --message-shadow-shadow: 0px 0px 0px 0px hsl(var(--hsl-white) / 20%); + --message-box-shadow: 0px 0px 0px 1px var(--strong-border-color) inset, + var(--message-shadow-shadow); + --message-header-font-weight: var(--font-weights-bold); + --message-header-font-size: var(--relative-large); + --message-text-opacity: 0.85; + --message-list-opacity: 0.85; + --positive-box-shadow: 0px 0px 0px 1px var(--positive-border-color) inset, + var(--message-shadow-shadow); + --negative-box-shadow: 0px 0px 0px 1px var(--negative-border-color) inset, + var(--message-shadow-shadow); + --info-box-shadow: 0px 0px 0px 1px var(--info-border-color) inset, + var(--message-shadow-shadow); + --warning-box-shadow: 0px 0px 0px 1px var(--warning-border-color) inset, + var(--message-shadow-shadow); + --error-box-shadow: 0px 0px 0px 1px var(--error-border-color) inset, + var(--message-shadow-shadow); + --success-box-shadow: 0px 0px 0px 1px var(--success-border-color) inset, + var(--message-shadow-shadow); + /*------------------- + Table + --------------------*/ + --table-background: var(--white); + --table-border-width: 1px; + --table-border: var(--table-border-width) solid var(--border-color); + --table-box-shadow: noone; + --table-header-background: var(--off-white); + --table-header-color: var(--text-color); + --table-header-font-style: none; + --table-header-font-weight: var(--font-weights-bold); + --table-header-border: 1px solid var(--internal-border-color); + --table-header-divider: none; + /*------------------- + Checkbox + --------------------*/ + --checkbox-color: var(--text-color); + --checkbox-background: var(--color-neutral-800); + --checkbox-border-radius: var(--3px); + --checkbox-border: 1px solid var(--solid-border-color); + --checkbpx-label-color: var(--text-color); + --checkbox-hover-background: var(--checkbox-background); + --checkbox-hover-border-color: var(--selected-border-color); + --checkbox-label-hover-color: var(--hovered-text-color); + --checkbox-pressed-background: var(--color-neutral-900); + --checkbox-pressed-border-color: var(--selected-border-color); + --checkbox-pressed-color: var(--selected-text-color); + --checkbox-pressed-label-color: var(--selected-text-color); + --checkbox-focus-background: var(--color-neutral-700); + --checkbox-focus-border-color: var(--focused-form-muted-border-color); + --checkbox-focus-check-color: var(--selected-text-color); + --checkbox-focus-label-color: var(--selected-text-color); + --checkbox-active-background: var(--color-neutral-800); + --checkbox-active-border-color: var(--selected-border-color); + --checkbox-active-check-opacity: 1; + --checkbox-active-check-color: var(--selected-text-color); + --checkbox-intermediate-background: var(--checkbox-active-background); + --checkbox-intermediate-border-color: var(--checkbox-active-border-color); + --checkbox-intermediate-check-opacity: 1; + --checkbox-intermediate-check-color: var(--checkbox-active-check-color); + --checkbox-active-focus-background: var(--color-neutral-800); + --checkbox-active-focus-border-color: var(--checkbox-focus-border-color); + --checkbox-active-focus-check-color: var(--selected-text-color); + --checkbox-disabled-opacity: 0.5; + --checkbox-disabled-label-color: #000000; + --radio-bullet-color: var(--text-color); + --radio-focus-background: var(--checkbox-focus-background); + --radio-focus-bullet-color: var(--checkbox-focus-check-color); + --radio-active-background: var(--checkbox-active-background); + --radio-active-bullet-color: var(--checkbox-active-check-color); + --radio-active-focus-background: var(--checkbox-active-focus-background); + --radio-active-focus-bullet-color: var(--checkbox-active-focus-check-color); + --toggle-off-label-color: var(--checkbox-color); + --toggle-lane-background: var(--transparent-black); + --toggle-lane-box-shadow: none; + --toggle-handle-radius: var(--circular-radius); + --toggle-handle-background: var(--white) var(--subtle-gradient); + --toggle-handle-box-shadow: var(--subtle-shadow), + 0px 0px 0px 1px var(--border-color) inset; + --toggle-focus-color: var(--very-strong-transparent-black); + --toggle-hover-color: var(--toggle-focus-color); + --toggle-on-label-color: var(--selected-text-color); + --toggle-on-lane-color: var(--primary-color); + --toggle-on-handle-box-shadow: var(--toggle-handle-box-shadow); + --toggle-on-focus-label-color: var(--toggle-on-label-color); + --toggle-on-focus-lane-color: var(--primary-color-focus); + /*------------------- + Dropdown + --------------------*/ + --dropdown-menu-background: var(--color-neutral-900); + --dropdown-menu-box-shadow: var(--raised-shadow); + --dropdown-menu-border-width: 1px; + --dropdown-menu-border-color: var(--border-color); + --dropdown-menu-border: var(--dropdown-menu-border-width) solid var(--dropdown-menu-border-color); + --dropdown-menu-border-radius: var(--default-border-radius); + --dropdown-menu-item-border: none; + --dropdown-menu-item-divider: none; + --dropdown-menu-item-color: var(--text-color); + --dropdown-menu-item-font-weight: var(--font-weights-normal); + --dropdown-menu-header-color: var(--dark-text-color); + --dropdown-menu-divider-border: 1px solid var(--internal-border-color); + --dropdown-menu-item-description-color: var(--light-text-color); + --dropdown-menu-message-color: var(--unselected-text-color); + --inline-dropdown-text-font-weight: var(--font-weights-bold); + --inline-dropdown-menu-background: hsl(var(--hsl-neutral-900) / 70%); + --dropdown-active-item-background: transparent; + --dropdown-active-item-font-weight: var(--font-weights-bold); + --dropdown-active-item-color: var(--selected-text-color); + --dropdown-hovered-item-background: var(--subtle-transparent-white); + --dropdown-hovered-item-color: var(--selected-text-color); + --dropdown-default-text-color: var(--input-placeholder-color); + --dropdown-default-text-focus-color: var(--input-placeholder-focus-color); + --dropdown-selected-background: var(--subtle-transparent-black); + --dropdown-selected-color: var(--selected-text-color); + --dropdown-error-item-hover-background: #FFF2F2; + --dropdown-error-item-active-background: #FDCFCF; + /*------------------- + Modal + --------------------*/ + --modal-border: none; + --modal-border-radius: var(--default-border-radius); + --modal-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.067), + 0 6.7px 5.3px rgba(0, 0, 0, 0.097), + 0 12.5px 10px rgba(0, 0, 0, 0.12), + 0 22.3px 17.9px rgba(0, 0, 0, 0.143), + 0 41.8px 33.4px rgba(0, 0, 0, 0.173), + 0 100px 80px rgba(0, 0, 0, 0.24); + --modal-box-close-opacity: 0.8; + --modal-box-close-size: 1.25em; + --modal-box-close-color: var(--white); + --modal-box-header-background: var(--color-neutral-900); + --modal-box-header-color: var(--light-text-color); + --modal-box-header-border: 1px solid var(--border-color); + --modal-box-header-font-size: 1rem; + --modal-box-header-font-weight: var(--font-weights-bold); + --modal-box-content-font-size: 1em; + --modal-box-content-background: var(--color-neutral-900); + --modal-box-actions-background: var(--color-neutral-800); + --modal-box-actions-border: 1px solid var(--border-color); + /*------------------- + Side Bar + --------------------*/ + --sidebar-color-scheme: dark; + --sidebar-background: var(--color-neutral-900); + --sidebar-border-right: 1px solid hsl(var(--hsl-neutral-800)); + --sidebar-menu-item-inactive-background: hsl(var(--hsl-blue-300) / 20%); + --sidebar-menu-item-active-background: hsl(var(--hsl-blue-300) / 30%); + --sidebar-menu-section-color: var(--unselected-text-color); + --sidebar-menu-section-separator-color: rgba(255, 255, 255, 0.1); + --sidebar-menu-item-color: var(--muted-text-color); + --sidebar-menu-active-item-color: var(--text-color); + --sidebar-menu-action-color: var(--disabled-text-color); + --sidebar-menu-action-hover-color: var(--light-text-color); + --sidebar-sync-status-view-background: hsl(var(--hsl-neutral-800) / 50%); + --sidebar-sync-status-view-border-top: 1px solid var(--border-color); + --sidebar-sync-status-view-text-color: var(--muted-text-color); + --sidebar-sync-status-view-detail-color: var(--unselected-text-color); + --sidebar-scrollbar-width: 6px; + --sidebar-scrollbar-track-background: rgba(255, 255, 255, 0.02); + --sidebar-scrollbar-thumb-background: rgba(255, 255, 255, 0.2); + /*------------------- + Scroll Bar + --------------------*/ + --scrollbar-width: 6px; + --scrollbar-track-background: rgba(0, 0, 0, 0.05); + --scrollbar-thumb-background: rgba(0, 0, 0, 0.2); + /*------------------- + Note List Bar + --------------------*/ + --note-list-bar-background: hsl(var(--hsl-neutral-900) / 50%); + --note-list-bar-border-right: 1px solid hsl(var(--hsl-neutral-800) / 75%); + --note-list-bar-pinned-section-header-background: var(--color-neutral-200); + --note-list-bar-pinned-section-header-border-bottom: none; + --note-list-bar-pinned-section-footer-border-bottom: 4px solid #ccc; + --note-list-view-item-color: var(--muted-text-color); + --note-list-view-item-separator-border: 1px solid var(--color-neutral-900); + --note-list-view-item-date-color: var(--primary-color); + --note-list-view-item-tag-color: var(--blue-focus); + --note-list-view-item-selected-background: hsl(var(--hsl-blue-300) / 20%); + --note-list-view-item-active-background: hsl(var(--hsl-blue-300) / 40%); + --note-search-bar-background: transparent; + --note-search-bar-border-bottom: 1px solid var(--border-color); + --note-search-bar-input-border: 1px solid transparent; + --note-search-bar-input-background: var(--input-background); + --mark-border-width: 1px; + --mark-border-color: hsl(var(--hsl-yellow-400) / 40%); + --mark-background-color: hsl(var(--hsl-yellow-400) / 20%); + --mark-color: light-dark(var(--color-gray-950), var(--color-gray-50)); + --mark-font-weight: var(--font-weights-bold); + /*------------------- + Editor + --------------------*/ + --editor-background: var(--color-neutral-950); + --editor-header-title-input-background: transparent; + --note-tags-bar-input-background: transparent; + /*------------------- + Header Note Menu + --------------------*/ + --header-note-menu-background: transparent; + --header-note-menu-color: var(--light-text-color); + --header-note-menu-action-item-active-background: var(--info-background-color); + --header-note-menu-action-item-active-border: 1px solid var(--info-border-color); + --header-note-menu-action-item-separator-border: 1px solid var(--white-down); + --header-note-menu-encrypt-button-color: var(--yellow-text-color); + --header-note-menu-encrypt-button-background: var(--yellow-background); + /*------------------- + Preferences + --------------------*/ + --preferences-sidebar-background: var(--color-neutral-800); + --preferences-sidebar-item-active-background: rgba(79, 142, 255, 0.2); + --preferences-view-background: hsl(var(--hsl-neutral-800) / 50%); + /*------------------- + Task Icons + --------------------*/ + --task-icon-active: hsl(var(--hsl-slate-400)); + --task-icon-onhold: hsl(var(--hsl-amber-500)); + --task-icon-completed: hsl(var(--hsl-emerald-500)); + --task-icon-dropped: hsl(var(--hsl-rose-400)); +} + +body.acrylic-mode { + --page-background: transparent; + --editor-background: transparent; + --inline-dropdown-menu-background: hsl(var(--hsl-neutral-900)); +} diff --git a/test.html b/test.html index f5e235f..a46dfdb 100644 --- a/test.html +++ b/test.html @@ -69,6 +69,178 @@

Messages

+
+
+ Changes in Service +
+

We just updated our privacy policy here to better service our customers. We recommend reviewing the changes. +

+
+ +

Input

+
+
+
+

+ + + + + + +
UI Theme
+

+

This styles the buttons, side bar, note list and other common components

+
+
+ +
+
+
+
+
It will not switch the custom themes.
+
+
+
+
+
+
How much extra space to always keep above and below the cursor when approaching the + top or bottom of the visible view in a scrollable document.
+
+
+
+
+
+

+ + + + + + + + + + + + + +
Syntax Theme
+

+

This styles the text inside the editor

+
+
+ +
+
+
+
+
+

+ + + + + + +
Preview Theme
+

+

This styles the Markdown output

+
+
+ +
+
+
+
+
+

+ + + + + + + + + +
Custom Styles
+

+

Add custom CSS styles via the user stylesheet. » Learn more

+
+
+
+
+

Segments

@@ -118,6 +290,14 @@

Segments

+

Loader

+
+

+
+
+
+
+ From 5806ff5e534e3e46f579796a73c1684bb1f4f31b Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Tue, 15 Oct 2024 13:04:06 +0900 Subject: [PATCH 03/11] feat(appearance): add a field for dark appearance --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1803b9d..9ca243f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "default-dark-ui", "version": "2.2.0", "theme": "ui", - "dark": true, + "themeAppearance": "dark", "description": "Default Dark UI Theme for Inkdrop", "styleSheets": [ "theme.css" From 46a9bce73c3498fd3b5e4bacccd44ef58fd4de23 Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Tue, 15 Oct 2024 13:13:18 +0900 Subject: [PATCH 04/11] feat(variables): update --- styles/theme.css | 43 ++++++++++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 13 deletions(-) diff --git a/styles/theme.css b/styles/theme.css index 252b28a..31bfc11 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -250,7 +250,10 @@ --subtle-shadow: 0px 1px 2px 0 var(--black); --floating-shadow: 0px 2px 4px 0px hsl(var(--hsl-black) / 20%), 0px 2px 10px 0px hsl(var(--hsl-black) / 30%); - --raised-shadow: 0px 2px 3px 0px var(--black); + --raised-shadow: + 0 1.5px 3px -2px hsl(var(--hsl-black) / .4), + 0 4px 6px hsl(var(--hsl-black) / .2), + 0 8px 12px -1px hsl(var(--hsl-black) / .1); /******************************* Power-User *******************************/ @@ -957,7 +960,7 @@ --label-active-hover-background-color: #C8C8C8; --label-active-hover-background-image: none; --label-active-hover-text-color: var(--selected-text-color); - --label-basic-background: none var(--white); + --label-basic-background: none hsl(var(--hsl-neutral-50) / 5%); --label-basic-border-width: 1px; --label-basic-border-color: var(--border-color); --label-basic-border: var(--label-basic-border-width) solid var(--label-basic-border-color); @@ -975,7 +978,7 @@ --selection-list-hover-color: var(--hovered-text-color); --selection-list-down-background: var(--transparent-black); --selection-list-down-color: var(--pressed-text-color); - --selection-list-active-background: var(--transparent-black); + --selection-list-active-background: var(--transparent-white); --selection-list-active-color: var(--selected-text-color); /*------------------- @@ -1016,12 +1019,12 @@ --input-border-radius: var(--absolute-border-radius); --input-box-shadow: 0em 0em 0em 0em transparent inset; --form-textarea-line-height: 1.2857; - --form-select-background: var(--white); + --form-select-background: var(--color-neutral-900); --form-select-border: var(--input-border); --form-select-border-radius: var(--input-border-radius); --form-select-box-shadow: var(--input-box-shadow); --form-select-color: var(--input-color); - --form-prompt-background: var(--white); + --form-prompt-background: var(--color-neutral-800); --form-prompt-border-color: var(--negative-border-color); --form-prompt-border: 1px solid var(--form-prompt-border-color); --form-prompt-text-color: var(--negative-text-color); @@ -1053,7 +1056,7 @@ /*------------------- Menu --------------------*/ - --menu-background: var(--white); + --menu-background: var(--color-neutral-900); --menu-font-weight: normal; --menu-font-family: var(--page-font); --menu-border: 1px solid var(--border-color); @@ -1082,7 +1085,7 @@ --tabular-menu-border-color: var(--solid-border-color); --tabular-menu-text-color: var(--menu-item-text-color); --tabular-menu-hovered-text-color: var(--hovered-text-color); - --tabular-menu-active-background: none var(--white); + --tabular-menu-active-background: none hsl(var(--hsl-neutral-800)); --tabular-menu-active-color: var(--selected-text-color); --tabular-menu-active-box-shadow: none; --tabular-menu-border-radius: var(--default-border-radius); @@ -1128,16 +1131,18 @@ /*------------------- Table --------------------*/ - --table-background: var(--white); + --table-background: hsl(var(--hsl-neutral-800) / 20%); --table-border-width: 1px; --table-border: var(--table-border-width) solid var(--border-color); --table-box-shadow: noone; - --table-header-background: var(--off-white); + --table-header-background: hsl(var(--hsl-neutral-700) / 30%); --table-header-color: var(--text-color); --table-header-font-style: none; --table-header-font-weight: var(--font-weights-bold); --table-header-border: 1px solid var(--internal-border-color); --table-header-divider: none; + --table-row-border: 1px solid var(--internal-border-color); + /*------------------- Checkbox --------------------*/ @@ -1181,7 +1186,7 @@ --toggle-lane-background: var(--transparent-black); --toggle-lane-box-shadow: none; --toggle-handle-radius: var(--circular-radius); - --toggle-handle-background: var(--white) var(--subtle-gradient); + --toggle-handle-background: var(--color-neutral-100) var(--subtle-gradient); --toggle-handle-box-shadow: var(--subtle-shadow), 0px 0px 0px 1px var(--border-color) inset; --toggle-focus-color: var(--very-strong-transparent-black); @@ -1234,7 +1239,7 @@ 0 100px 80px rgba(0, 0, 0, 0.24); --modal-box-close-opacity: 0.8; --modal-box-close-size: 1.25em; - --modal-box-close-color: var(--white); + --modal-box-close-color: var(--text-color); --modal-box-header-background: var(--color-neutral-900); --modal-box-header-color: var(--light-text-color); --modal-box-header-border: 1px solid var(--border-color); @@ -1299,7 +1304,11 @@ --------------------*/ --editor-background: var(--color-neutral-950); --editor-header-title-input-background: transparent; + --editor-floating-actions-background: hsl(var(--hsl-neutral-800) / 60%); + --editor-drawer-background: hsl(var(--hsl-neutral-900) / 70%); + --editor-drawer-border-left: 1px solid var(--border-color); --note-tags-bar-input-background: transparent; + /*------------------- Header Note Menu --------------------*/ @@ -1310,6 +1319,12 @@ --header-note-menu-action-item-separator-border: 1px solid var(--white-down); --header-note-menu-encrypt-button-color: var(--yellow-text-color); --header-note-menu-encrypt-button-background: var(--yellow-background); + + /*------------------- + Notifications + --------------------*/ + --notification-item-background: hsl(var(--hsl-neutral-900) / 80%); + /*------------------- Preferences --------------------*/ @@ -1325,8 +1340,10 @@ --task-icon-dropped: hsl(var(--hsl-rose-400)); } -body.acrylic-mode { +body.acrylic-window { --page-background: transparent; - --editor-background: transparent; + --editor-background: hsl(var(--hsl-black) / 20%); + --editor-drawer-background: hsl(var(--hsl-neutral-800)); + --sidebar-background: hsl(var(--hsl-neutral-950) / 60%); --inline-dropdown-menu-background: hsl(var(--hsl-neutral-900)); } From 6a70a0e76f477153d0c52ada6992aec3d063ece1 Mon Sep 17 00:00:00 2001 From: Takuya Matsuyama Date: Tue, 15 Oct 2024 13:29:04 +0900 Subject: [PATCH 05/11] chore(theme): remove old files --- semantic.json | 23 - src/definitions/collections/breadcrumb.less | 122 - src/definitions/collections/form.less | 1069 ----- src/definitions/collections/grid.less | 1920 --------- src/definitions/collections/menu.less | 1981 --------- src/definitions/collections/message.less | 481 --- src/definitions/collections/table.less | 1119 ------ src/definitions/elements/button.less | 3566 ----------------- src/definitions/elements/container.less | 143 - src/definitions/elements/divider.less | 255 -- src/definitions/elements/flag.less | 52 - src/definitions/elements/header.less | 708 ---- src/definitions/elements/icon.less | 501 --- src/definitions/elements/image.less | 328 -- src/definitions/elements/input.less | 508 --- src/definitions/elements/label.less | 1332 ------ src/definitions/elements/list.less | 953 ----- src/definitions/elements/loader.less | 331 -- src/definitions/elements/placeholder.less | 232 -- src/definitions/elements/rail.less | 154 - src/definitions/elements/reveal.less | 275 -- src/definitions/elements/segment.less | 829 ---- src/definitions/elements/step.less | 562 --- src/definitions/globals/site.less | 208 - src/definitions/modules/accordion.less | 219 - src/definitions/modules/checkbox.less | 598 --- src/definitions/modules/dimmer.less | 231 -- src/definitions/modules/dropdown.less | 1421 ------- src/definitions/modules/embed.less | 163 - src/definitions/modules/modal.less | 595 --- src/definitions/modules/nag.less | 158 - src/definitions/modules/popup.less | 712 ---- src/definitions/modules/progress.less | 503 --- src/definitions/modules/rating.less | 191 - src/definitions/modules/search.less | 448 --- src/definitions/modules/shape.less | 150 - src/definitions/modules/sidebar.less | 538 --- src/definitions/modules/sticky.less | 74 - src/definitions/modules/tab.less | 94 - src/definitions/modules/transition.less | 78 - src/definitions/views/ad.less | 268 -- src/definitions/views/card.less | 1059 ----- src/definitions/views/comment.less | 269 -- src/definitions/views/feed.less | 278 -- src/definitions/views/item.less | 474 --- src/definitions/views/statistic.less | 554 --- src/semantic.less | 66 - src/site/collections/breadcrumb.overrides | 3 - src/site/collections/breadcrumb.variables | 3 - src/site/collections/form.overrides | 3 - src/site/collections/form.variables | 3 - src/site/collections/grid.overrides | 3 - src/site/collections/grid.variables | 3 - src/site/collections/menu.overrides | 3 - src/site/collections/menu.variables | 3 - src/site/collections/message.overrides | 3 - src/site/collections/message.variables | 3 - src/site/collections/table.overrides | 3 - src/site/collections/table.variables | 3 - src/site/elements/button.overrides | 3 - src/site/elements/button.variables | 3 - src/site/elements/container.overrides | 3 - src/site/elements/container.variables | 3 - src/site/elements/divider.overrides | 3 - src/site/elements/divider.variables | 3 - src/site/elements/flag.overrides | 3 - src/site/elements/flag.variables | 3 - src/site/elements/header.overrides | 3 - src/site/elements/header.variables | 3 - src/site/elements/icon.overrides | 3 - src/site/elements/icon.variables | 3 - src/site/elements/image.overrides | 3 - src/site/elements/image.variables | 3 - src/site/elements/input.overrides | 3 - src/site/elements/input.variables | 3 - src/site/elements/label.overrides | 3 - src/site/elements/label.variables | 3 - src/site/elements/list.overrides | 3 - src/site/elements/list.variables | 3 - src/site/elements/loader.overrides | 3 - src/site/elements/loader.variables | 3 - src/site/elements/rail.overrides | 3 - src/site/elements/rail.variables | 3 - src/site/elements/reveal.overrides | 3 - src/site/elements/reveal.variables | 3 - src/site/elements/segment.overrides | 3 - src/site/elements/segment.variables | 3 - src/site/elements/step.overrides | 3 - src/site/elements/step.variables | 3 - src/site/globals/site.overrides | 1036 ----- src/site/globals/site.variables | 95 - src/site/modules/accordion.overrides | 3 - src/site/modules/accordion.variables | 3 - src/site/modules/chatroom.overrides | 3 - src/site/modules/chatroom.variables | 3 - src/site/modules/checkbox.overrides | 3 - src/site/modules/checkbox.variables | 3 - src/site/modules/dimmer.overrides | 3 - src/site/modules/dimmer.variables | 3 - src/site/modules/dropdown.overrides | 3 - src/site/modules/dropdown.variables | 3 - src/site/modules/embed.overrides | 3 - src/site/modules/embed.variables | 0 src/site/modules/modal.overrides | 3 - src/site/modules/modal.variables | 3 - src/site/modules/nag.overrides | 3 - src/site/modules/nag.variables | 3 - src/site/modules/popup.overrides | 3 - src/site/modules/popup.variables | 3 - src/site/modules/progress.overrides | 3 - src/site/modules/progress.variables | 3 - src/site/modules/rating.overrides | 3 - src/site/modules/rating.variables | 3 - src/site/modules/search.overrides | 3 - src/site/modules/search.variables | 3 - src/site/modules/shape.overrides | 3 - src/site/modules/shape.variables | 3 - src/site/modules/sidebar.overrides | 3 - src/site/modules/sidebar.variables | 3 - src/site/modules/sticky.overrides | 3 - src/site/modules/sticky.variables | 3 - src/site/modules/tab.overrides | 3 - src/site/modules/tab.variables | 3 - src/site/modules/transition.overrides | 3 - src/site/modules/transition.variables | 3 - src/site/views/ad.overrides | 3 - src/site/views/ad.variables | 3 - src/site/views/card.overrides | 3 - src/site/views/card.variables | 3 - src/site/views/comment.overrides | 3 - src/site/views/comment.variables | 3 - src/site/views/feed.overrides | 3 - src/site/views/feed.variables | 3 - src/site/views/item.overrides | 3 - src/site/views/item.variables | 3 - src/site/views/statistic.overrides | 3 - src/site/views/statistic.variables | 3 - src/theme.config | 93 - src/theme.less | 61 - .../default/assets/fonts/brand-icons.eot | Bin 98640 -> 0 bytes .../default/assets/fonts/brand-icons.svg | 1008 ----- .../default/assets/fonts/brand-icons.ttf | Bin 98404 -> 0 bytes .../default/assets/fonts/brand-icons.woff | Bin 63728 -> 0 bytes .../default/assets/fonts/brand-icons.woff2 | Bin 54488 -> 0 bytes src/themes/default/assets/fonts/icons.eot | Bin 106004 -> 0 bytes src/themes/default/assets/fonts/icons.svg | 1518 ------- src/themes/default/assets/fonts/icons.ttf | Bin 105784 -> 0 bytes src/themes/default/assets/fonts/icons.woff | Bin 50524 -> 0 bytes src/themes/default/assets/fonts/icons.woff2 | Bin 40148 -> 0 bytes .../default/assets/fonts/outline-icons.eot | Bin 31156 -> 0 bytes .../default/assets/fonts/outline-icons.svg | 366 -- .../default/assets/fonts/outline-icons.ttf | Bin 30928 -> 0 bytes .../default/assets/fonts/outline-icons.woff | Bin 14712 -> 0 bytes .../default/assets/fonts/outline-icons.woff2 | Bin 12240 -> 0 bytes src/themes/default/assets/images/flags.png | Bin 28123 -> 0 bytes .../default/collections/breadcrumb.overrides | 3 - .../default/collections/breadcrumb.variables | 33 - src/themes/default/collections/form.overrides | 3 - src/themes/default/collections/form.variables | 197 - src/themes/default/collections/grid.overrides | 4 - src/themes/default/collections/grid.variables | 103 - src/themes/default/collections/menu.overrides | 7 - src/themes/default/collections/menu.variables | 458 --- .../default/collections/message.overrides | 3 - .../default/collections/message.variables | 158 - .../default/collections/table.overrides | 0 .../default/collections/table.variables | 247 -- src/themes/default/elements/button.overrides | 21 - src/themes/default/elements/button.variables | 359 -- .../default/elements/container.overrides | 3 - .../default/elements/container.variables | 58 - src/themes/default/elements/divider.overrides | 18 - src/themes/default/elements/divider.variables | 53 - src/themes/default/elements/flag.overrides | 991 ----- src/themes/default/elements/flag.variables | 13 - src/themes/default/elements/header.overrides | 4 - src/themes/default/elements/header.variables | 151 - src/themes/default/elements/icon.overrides | 1716 -------- src/themes/default/elements/icon.variables | 95 - src/themes/default/elements/image.overrides | 3 - src/themes/default/elements/image.variables | 44 - src/themes/default/elements/input.overrides | 3 - src/themes/default/elements/input.variables | 103 - src/themes/default/elements/label.overrides | 3 - src/themes/default/elements/label.variables | 257 -- src/themes/default/elements/list.overrides | 3 - src/themes/default/elements/list.variables | 224 -- src/themes/default/elements/loader.overrides | 3 - src/themes/default/elements/loader.variables | 73 - .../default/elements/placeholder.overrides | 3 - .../default/elements/placeholder.variables | 55 - src/themes/default/elements/rail.overrides | 3 - src/themes/default/elements/rail.variables | 34 - src/themes/default/elements/reveal.overrides | 3 - src/themes/default/elements/reveal.variables | 18 - src/themes/default/elements/segment.overrides | 3 - src/themes/default/elements/segment.variables | 154 - src/themes/default/elements/step.overrides | 16 - src/themes/default/elements/step.variables | 130 - src/themes/default/globals/site.overrides | 7 - src/themes/default/globals/site.variables | 992 ----- .../default/modules/accordion.overrides | 28 - .../default/modules/accordion.variables | 100 - src/themes/default/modules/chatroom.overrides | 3 - src/themes/default/modules/chatroom.variables | 3 - src/themes/default/modules/checkbox.overrides | 36 - src/themes/default/modules/checkbox.variables | 193 - src/themes/default/modules/dimmer.overrides | 3 - src/themes/default/modules/dimmer.variables | 58 - src/themes/default/modules/dropdown.overrides | 66 - src/themes/default/modules/dropdown.variables | 386 -- src/themes/default/modules/embed.overrides | 3 - src/themes/default/modules/embed.variables | 53 - src/themes/default/modules/modal.overrides | 3 - src/themes/default/modules/modal.variables | 192 - src/themes/default/modules/nag.overrides | 3 - src/themes/default/modules/nag.variables | 74 - src/themes/default/modules/popup.overrides | 3 - src/themes/default/modules/popup.variables | 138 - src/themes/default/modules/progress.overrides | 3 - src/themes/default/modules/progress.variables | 113 - src/themes/default/modules/rating.overrides | 68 - src/themes/default/modules/rating.variables | 103 - src/themes/default/modules/search.overrides | 3 - src/themes/default/modules/search.variables | 161 - src/themes/default/modules/shape.overrides | 3 - src/themes/default/modules/shape.variables | 40 - src/themes/default/modules/sidebar.overrides | 3 - src/themes/default/modules/sidebar.variables | 45 - src/themes/default/modules/sticky.overrides | 3 - src/themes/default/modules/sticky.variables | 7 - src/themes/default/modules/tab.overrides | 3 - src/themes/default/modules/tab.variables | 11 - .../default/modules/transition.overrides | 962 ----- .../default/modules/transition.variables | 10 - src/themes/default/views/ad.overrides | 3 - src/themes/default/views/ad.variables | 13 - src/themes/default/views/card.overrides | 3 - src/themes/default/views/card.variables | 220 - src/themes/default/views/comment.overrides | 3 - src/themes/default/views/comment.variables | 98 - src/themes/default/views/feed.overrides | 3 - src/themes/default/views/feed.variables | 141 - src/themes/default/views/item.overrides | 3 - src/themes/default/views/item.variables | 157 - src/themes/default/views/statistic.overrides | 3 - src/themes/default/views/statistic.variables | 99 - 247 files changed, 41692 deletions(-) delete mode 100644 semantic.json delete mode 100644 src/definitions/collections/breadcrumb.less delete mode 100644 src/definitions/collections/form.less delete mode 100644 src/definitions/collections/grid.less delete mode 100644 src/definitions/collections/menu.less delete mode 100644 src/definitions/collections/message.less delete mode 100644 src/definitions/collections/table.less delete mode 100644 src/definitions/elements/button.less delete mode 100644 src/definitions/elements/container.less delete mode 100644 src/definitions/elements/divider.less delete mode 100644 src/definitions/elements/flag.less delete mode 100644 src/definitions/elements/header.less delete mode 100644 src/definitions/elements/icon.less delete mode 100644 src/definitions/elements/image.less delete mode 100644 src/definitions/elements/input.less delete mode 100644 src/definitions/elements/label.less delete mode 100644 src/definitions/elements/list.less delete mode 100644 src/definitions/elements/loader.less delete mode 100644 src/definitions/elements/placeholder.less delete mode 100644 src/definitions/elements/rail.less delete mode 100644 src/definitions/elements/reveal.less delete mode 100644 src/definitions/elements/segment.less delete mode 100644 src/definitions/elements/step.less delete mode 100644 src/definitions/globals/site.less delete mode 100644 src/definitions/modules/accordion.less delete mode 100644 src/definitions/modules/checkbox.less delete mode 100644 src/definitions/modules/dimmer.less delete mode 100644 src/definitions/modules/dropdown.less delete mode 100644 src/definitions/modules/embed.less delete mode 100644 src/definitions/modules/modal.less delete mode 100644 src/definitions/modules/nag.less delete mode 100644 src/definitions/modules/popup.less delete mode 100644 src/definitions/modules/progress.less delete mode 100644 src/definitions/modules/rating.less delete mode 100644 src/definitions/modules/search.less delete mode 100644 src/definitions/modules/shape.less delete mode 100644 src/definitions/modules/sidebar.less delete mode 100644 src/definitions/modules/sticky.less delete mode 100644 src/definitions/modules/tab.less delete mode 100644 src/definitions/modules/transition.less delete mode 100644 src/definitions/views/ad.less delete mode 100644 src/definitions/views/card.less delete mode 100644 src/definitions/views/comment.less delete mode 100644 src/definitions/views/feed.less delete mode 100644 src/definitions/views/item.less delete mode 100644 src/definitions/views/statistic.less delete mode 100644 src/semantic.less delete mode 100644 src/site/collections/breadcrumb.overrides delete mode 100644 src/site/collections/breadcrumb.variables delete mode 100644 src/site/collections/form.overrides delete mode 100644 src/site/collections/form.variables delete mode 100644 src/site/collections/grid.overrides delete mode 100644 src/site/collections/grid.variables delete mode 100644 src/site/collections/menu.overrides delete mode 100644 src/site/collections/menu.variables delete mode 100644 src/site/collections/message.overrides delete mode 100644 src/site/collections/message.variables delete mode 100644 src/site/collections/table.overrides delete mode 100644 src/site/collections/table.variables delete mode 100644 src/site/elements/button.overrides delete mode 100644 src/site/elements/button.variables delete mode 100644 src/site/elements/container.overrides delete mode 100644 src/site/elements/container.variables delete mode 100644 src/site/elements/divider.overrides delete mode 100644 src/site/elements/divider.variables delete mode 100644 src/site/elements/flag.overrides delete mode 100644 src/site/elements/flag.variables delete mode 100644 src/site/elements/header.overrides delete mode 100644 src/site/elements/header.variables delete mode 100644 src/site/elements/icon.overrides delete mode 100644 src/site/elements/icon.variables delete mode 100644 src/site/elements/image.overrides delete mode 100644 src/site/elements/image.variables delete mode 100644 src/site/elements/input.overrides delete mode 100644 src/site/elements/input.variables delete mode 100644 src/site/elements/label.overrides delete mode 100644 src/site/elements/label.variables delete mode 100644 src/site/elements/list.overrides delete mode 100644 src/site/elements/list.variables delete mode 100644 src/site/elements/loader.overrides delete mode 100644 src/site/elements/loader.variables delete mode 100644 src/site/elements/rail.overrides delete mode 100644 src/site/elements/rail.variables delete mode 100644 src/site/elements/reveal.overrides delete mode 100644 src/site/elements/reveal.variables delete mode 100644 src/site/elements/segment.overrides delete mode 100644 src/site/elements/segment.variables delete mode 100644 src/site/elements/step.overrides delete mode 100644 src/site/elements/step.variables delete mode 100644 src/site/globals/site.overrides delete mode 100644 src/site/globals/site.variables delete mode 100644 src/site/modules/accordion.overrides delete mode 100644 src/site/modules/accordion.variables delete mode 100644 src/site/modules/chatroom.overrides delete mode 100644 src/site/modules/chatroom.variables delete mode 100644 src/site/modules/checkbox.overrides delete mode 100644 src/site/modules/checkbox.variables delete mode 100644 src/site/modules/dimmer.overrides delete mode 100644 src/site/modules/dimmer.variables delete mode 100644 src/site/modules/dropdown.overrides delete mode 100644 src/site/modules/dropdown.variables delete mode 100644 src/site/modules/embed.overrides delete mode 100644 src/site/modules/embed.variables delete mode 100644 src/site/modules/modal.overrides delete mode 100644 src/site/modules/modal.variables delete mode 100644 src/site/modules/nag.overrides delete mode 100644 src/site/modules/nag.variables delete mode 100644 src/site/modules/popup.overrides delete mode 100644 src/site/modules/popup.variables delete mode 100644 src/site/modules/progress.overrides delete mode 100644 src/site/modules/progress.variables delete mode 100644 src/site/modules/rating.overrides delete mode 100644 src/site/modules/rating.variables delete mode 100644 src/site/modules/search.overrides delete mode 100644 src/site/modules/search.variables delete mode 100644 src/site/modules/shape.overrides delete mode 100644 src/site/modules/shape.variables delete mode 100644 src/site/modules/sidebar.overrides delete mode 100644 src/site/modules/sidebar.variables delete mode 100644 src/site/modules/sticky.overrides delete mode 100644 src/site/modules/sticky.variables delete mode 100644 src/site/modules/tab.overrides delete mode 100644 src/site/modules/tab.variables delete mode 100644 src/site/modules/transition.overrides delete mode 100644 src/site/modules/transition.variables delete mode 100644 src/site/views/ad.overrides delete mode 100644 src/site/views/ad.variables delete mode 100644 src/site/views/card.overrides delete mode 100644 src/site/views/card.variables delete mode 100644 src/site/views/comment.overrides delete mode 100644 src/site/views/comment.variables delete mode 100644 src/site/views/feed.overrides delete mode 100644 src/site/views/feed.variables delete mode 100644 src/site/views/item.overrides delete mode 100644 src/site/views/item.variables delete mode 100644 src/site/views/statistic.overrides delete mode 100644 src/site/views/statistic.variables delete mode 100644 src/theme.config delete mode 100644 src/theme.less delete mode 100644 src/themes/default/assets/fonts/brand-icons.eot delete mode 100644 src/themes/default/assets/fonts/brand-icons.svg delete mode 100644 src/themes/default/assets/fonts/brand-icons.ttf delete mode 100644 src/themes/default/assets/fonts/brand-icons.woff delete mode 100644 src/themes/default/assets/fonts/brand-icons.woff2 delete mode 100644 src/themes/default/assets/fonts/icons.eot delete mode 100644 src/themes/default/assets/fonts/icons.svg delete mode 100644 src/themes/default/assets/fonts/icons.ttf delete mode 100644 src/themes/default/assets/fonts/icons.woff delete mode 100644 src/themes/default/assets/fonts/icons.woff2 delete mode 100644 src/themes/default/assets/fonts/outline-icons.eot delete mode 100644 src/themes/default/assets/fonts/outline-icons.svg delete mode 100644 src/themes/default/assets/fonts/outline-icons.ttf delete mode 100644 src/themes/default/assets/fonts/outline-icons.woff delete mode 100644 src/themes/default/assets/fonts/outline-icons.woff2 delete mode 100644 src/themes/default/assets/images/flags.png delete mode 100644 src/themes/default/collections/breadcrumb.overrides delete mode 100644 src/themes/default/collections/breadcrumb.variables delete mode 100644 src/themes/default/collections/form.overrides delete mode 100644 src/themes/default/collections/form.variables delete mode 100644 src/themes/default/collections/grid.overrides delete mode 100644 src/themes/default/collections/grid.variables delete mode 100644 src/themes/default/collections/menu.overrides delete mode 100644 src/themes/default/collections/menu.variables delete mode 100644 src/themes/default/collections/message.overrides delete mode 100644 src/themes/default/collections/message.variables delete mode 100644 src/themes/default/collections/table.overrides delete mode 100644 src/themes/default/collections/table.variables delete mode 100644 src/themes/default/elements/button.overrides delete mode 100644 src/themes/default/elements/button.variables delete mode 100644 src/themes/default/elements/container.overrides delete mode 100644 src/themes/default/elements/container.variables delete mode 100644 src/themes/default/elements/divider.overrides delete mode 100644 src/themes/default/elements/divider.variables delete mode 100644 src/themes/default/elements/flag.overrides delete mode 100644 src/themes/default/elements/flag.variables delete mode 100644 src/themes/default/elements/header.overrides delete mode 100644 src/themes/default/elements/header.variables delete mode 100644 src/themes/default/elements/icon.overrides delete mode 100644 src/themes/default/elements/icon.variables delete mode 100644 src/themes/default/elements/image.overrides delete mode 100644 src/themes/default/elements/image.variables delete mode 100644 src/themes/default/elements/input.overrides delete mode 100644 src/themes/default/elements/input.variables delete mode 100644 src/themes/default/elements/label.overrides delete mode 100644 src/themes/default/elements/label.variables delete mode 100644 src/themes/default/elements/list.overrides delete mode 100644 src/themes/default/elements/list.variables delete mode 100644 src/themes/default/elements/loader.overrides delete mode 100644 src/themes/default/elements/loader.variables delete mode 100644 src/themes/default/elements/placeholder.overrides delete mode 100644 src/themes/default/elements/placeholder.variables delete mode 100644 src/themes/default/elements/rail.overrides delete mode 100644 src/themes/default/elements/rail.variables delete mode 100644 src/themes/default/elements/reveal.overrides delete mode 100644 src/themes/default/elements/reveal.variables delete mode 100644 src/themes/default/elements/segment.overrides delete mode 100644 src/themes/default/elements/segment.variables delete mode 100644 src/themes/default/elements/step.overrides delete mode 100644 src/themes/default/elements/step.variables delete mode 100644 src/themes/default/globals/site.overrides delete mode 100644 src/themes/default/globals/site.variables delete mode 100644 src/themes/default/modules/accordion.overrides delete mode 100644 src/themes/default/modules/accordion.variables delete mode 100644 src/themes/default/modules/chatroom.overrides delete mode 100644 src/themes/default/modules/chatroom.variables delete mode 100644 src/themes/default/modules/checkbox.overrides delete mode 100644 src/themes/default/modules/checkbox.variables delete mode 100644 src/themes/default/modules/dimmer.overrides delete mode 100644 src/themes/default/modules/dimmer.variables delete mode 100644 src/themes/default/modules/dropdown.overrides delete mode 100644 src/themes/default/modules/dropdown.variables delete mode 100644 src/themes/default/modules/embed.overrides delete mode 100644 src/themes/default/modules/embed.variables delete mode 100644 src/themes/default/modules/modal.overrides delete mode 100644 src/themes/default/modules/modal.variables delete mode 100644 src/themes/default/modules/nag.overrides delete mode 100644 src/themes/default/modules/nag.variables delete mode 100644 src/themes/default/modules/popup.overrides delete mode 100644 src/themes/default/modules/popup.variables delete mode 100644 src/themes/default/modules/progress.overrides delete mode 100644 src/themes/default/modules/progress.variables delete mode 100644 src/themes/default/modules/rating.overrides delete mode 100644 src/themes/default/modules/rating.variables delete mode 100644 src/themes/default/modules/search.overrides delete mode 100644 src/themes/default/modules/search.variables delete mode 100644 src/themes/default/modules/shape.overrides delete mode 100644 src/themes/default/modules/shape.variables delete mode 100644 src/themes/default/modules/sidebar.overrides delete mode 100644 src/themes/default/modules/sidebar.variables delete mode 100644 src/themes/default/modules/sticky.overrides delete mode 100644 src/themes/default/modules/sticky.variables delete mode 100644 src/themes/default/modules/tab.overrides delete mode 100644 src/themes/default/modules/tab.variables delete mode 100644 src/themes/default/modules/transition.overrides delete mode 100644 src/themes/default/modules/transition.variables delete mode 100644 src/themes/default/views/ad.overrides delete mode 100644 src/themes/default/views/ad.variables delete mode 100644 src/themes/default/views/card.overrides delete mode 100644 src/themes/default/views/card.variables delete mode 100644 src/themes/default/views/comment.overrides delete mode 100644 src/themes/default/views/comment.variables delete mode 100644 src/themes/default/views/feed.overrides delete mode 100644 src/themes/default/views/feed.variables delete mode 100644 src/themes/default/views/item.overrides delete mode 100644 src/themes/default/views/item.variables delete mode 100644 src/themes/default/views/statistic.overrides delete mode 100644 src/themes/default/views/statistic.variables diff --git a/semantic.json b/semantic.json deleted file mode 100644 index c22c8b8..0000000 --- a/semantic.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "base": "./", - "paths": { - "source": { - "config": "src/theme.config", - "definitions": "src/definitions/", - "site": "src/site/", - "themes": "src/themes/" - }, - "output": { - "packaged": "styles/", - "uncompressed": "styles/components/", - "compressed": "styles/components/", - "themes": "styles/themes/" - }, - "clean": "styles/" - }, - "permission": false, - "autoInstall": false, - "rtl": false, - "components": ["site", "button", "container", "divider", "flag", "header", "icon", "image", "input", "label", "list", "loader", "placeholder", "rail", "reveal", "segment", "step", "breadcrumb", "form", "grid", "menu", "message", "table", "ad", "card", "comment", "feed", "item", "statistic", "accordion", "checkbox", "dimmer", "dropdown", "embed", "modal", "nag", "popup", "progress", "rating", "search", "shape", "sidebar", "sticky", "tab", "transition", "api", "form", "state", "visibility", "text"], - "version": "2.8.8" -} diff --git a/src/definitions/collections/breadcrumb.less b/src/definitions/collections/breadcrumb.less deleted file mode 100644 index 67a4e31..0000000 --- a/src/definitions/collections/breadcrumb.less +++ /dev/null @@ -1,122 +0,0 @@ -/*! - * # Semantic UI - Breadcrumb - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'breadcrumb'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Breadcrumb -*******************************/ - -.ui.breadcrumb { - line-height: 1; - display: @display; - margin: @verticalMargin 0em; - vertical-align: @verticalAlign; -} -.ui.breadcrumb:first-child { - margin-top: 0em; -} -.ui.breadcrumb:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Divider */ -.ui.breadcrumb .divider { - display: inline-block; - opacity: @dividerOpacity; - margin: 0em @dividerSpacing 0em; - - font-size: @dividerSize; - color: @dividerColor; - vertical-align: @dividerVerticalAlign; -} - -/* Link */ -.ui.breadcrumb a { - color: @linkColor; -} -.ui.breadcrumb a:hover { - color: @linkHoverColor; -} - - -/* Icon Divider */ -.ui.breadcrumb .icon.divider { - font-size: @iconDividerSize; - vertical-align: @iconDividerVerticalAlign; -} - -/* Section */ -.ui.breadcrumb a.section { - cursor: pointer; -} -.ui.breadcrumb .section { - display: inline-block; - margin: @sectionMargin; - padding: @sectionPadding; -} - -/* Loose Coupling */ -.ui.breadcrumb.segment { - display: inline-block; - padding: @segmentPadding; -} - -/******************************* - States -*******************************/ - -.ui.breadcrumb .active.section { - font-weight: @activeFontWeight; -} - - -/******************************* - Variations -*******************************/ - -.ui.mini.breadcrumb { - font-size: @mini; -} -.ui.tiny.breadcrumb { - font-size: @tiny; -} -.ui.small.breadcrumb { - font-size: @small; -} -.ui.breadcrumb { - font-size: @medium; -} -.ui.large.breadcrumb { - font-size: @large; -} -.ui.big.breadcrumb { - font-size: @big; -} -.ui.huge.breadcrumb { - font-size: @huge; -} -.ui.massive.breadcrumb { - font-size: @massive; -} - -.loadUIOverrides(); diff --git a/src/definitions/collections/form.less b/src/definitions/collections/form.less deleted file mode 100644 index f7c3c76..0000000 --- a/src/definitions/collections/form.less +++ /dev/null @@ -1,1069 +0,0 @@ -/*! - * # Semantic UI - Form - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'form'; - -@import (multiple) '../../theme.config'; - -/******************************* - Elements -*******************************/ - -/*-------------------- - Form ----------------------*/ - -.ui.form { - position: relative; - max-width: 100%; -} - -/*-------------------- - Content ----------------------*/ - -.ui.form > p { - margin: @paragraphMargin; -} - -/*-------------------- - Field ----------------------*/ - -.ui.form .field { - clear: both; - margin: @fieldMargin; -} - -.ui.form .field:last-child, -.ui.form .fields:last-child .field { - margin-bottom: 0em; -} - -.ui.form .fields .field { - clear: both; - margin: 0em; -} - - -/*-------------------- - Labels ----------------------*/ - -.ui.form .field > label { - display: block; - margin: @labelMargin; - color: @labelColor; - font-size: @labelFontSize; - font-weight: @labelFontWeight; - text-transform: @labelTextTransform; -} - -/*-------------------- - Standard Inputs ----------------------*/ - - -.ui.form textarea, -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - width: @inputWidth; - vertical-align: top; -} - -/* Set max height on unusual input */ -.ui.form ::-webkit-datetime-edit, -.ui.form ::-webkit-inner-spin-button { - height: @inputLineHeight; -} - -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - font-family: @inputFont; - margin: 0em; - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - - line-height: @inputLineHeight; - padding: @inputPadding; - font-size: @inputFontSize; - - background: @inputBackground; - border: @inputBorder; - color: @inputColor; - border-radius: @inputBorderRadius; - box-shadow: @inputBoxShadow; - transition: @inputTransition; - - &:focus { - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); - } -} - -/* Text Area */ -.ui.form textarea { - margin: 0em; - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - - padding: @textAreaPadding; - font-size: @textAreaFontSize; - background: @textAreaBackground; - border: @textAreaBorder; - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - color: @inputColor; - border-radius: @inputBorderRadius; - box-shadow: @inputBoxShadow; - transition: @textAreaTransition; - font-size: @textAreaFontSize; - line-height: @textAreaLineHeight; - resize: @textAreaResize; - - &:focus { - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); - } -} -.ui.form textarea:not([rows]) { - height: @textAreaHeight; - min-height: @textAreaMinHeight; - max-height: @textAreaMaxHeight; -} - -.ui.form textarea, -.ui.form input[type="checkbox"] { - vertical-align: @checkboxVerticalAlign; -} - -/*-------------------------- - Input w/ attached Button ----------------------------*/ - -.ui.form input.attached { - width: auto; -} - - -/*-------------------- - Basic Select ----------------------*/ - -.ui.form select { - display: block; - height: auto; - width: 100%; - background: @selectBackground; - border: @selectBorder; - border-radius: @selectBorderRadius; - box-shadow: @selectBoxShadow; - padding: @selectPadding; - color: @selectColor; - transition: @selectTransition; -} - -/*-------------------- - Dropdown ----------------------*/ - -/* Block */ -.ui.form .field > .selection.dropdown { - width: 100%; -} -.ui.form .field > .selection.dropdown > .dropdown.icon { - float: right; -} - -/* Inline */ -.ui.form .inline.fields .field > .selection.dropdown, -.ui.form .inline.field > .selection.dropdown { - width: auto; -} -.ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon, -.ui.form .inline.field > .selection.dropdown > .dropdown.icon { - float: none; -} - -/*-------------------- - UI Input ----------------------*/ - -/* Block */ -.ui.form .field .ui.input, -.ui.form .fields .field .ui.input, -.ui.form .wide.field .ui.input { - width: 100%; -} - -/* Inline */ -.ui.form .inline.fields .field:not(.wide) .ui.input, -.ui.form .inline.field:not(.wide) .ui.input { - width: auto; - vertical-align: middle; -} - -/* Auto Input */ -.ui.form .fields .field .ui.input input, -.ui.form .field .ui.input input { - width: auto; -} - -/* Full Width Input */ -.ui.form .ten.fields .ui.input input, -.ui.form .nine.fields .ui.input input, -.ui.form .eight.fields .ui.input input, -.ui.form .seven.fields .ui.input input, -.ui.form .six.fields .ui.input input, -.ui.form .five.fields .ui.input input, -.ui.form .four.fields .ui.input input, -.ui.form .three.fields .ui.input input, -.ui.form .two.fields .ui.input input, -.ui.form .wide.field .ui.input input { - flex: 1 0 auto; - width: 0px; -} - - -/*-------------------- - Types of Messages ----------------------*/ - -.ui.form .success.message, -.ui.form .warning.message, -.ui.form .error.message { - display: none; -} - -/* Assumptions */ -.ui.form .message:first-child { - margin-top: 0px; -} - -/*-------------------- - Validation Prompt ----------------------*/ - -.ui.form .field .prompt.label { - white-space: normal; - background: @promptBackground !important; - border: @promptBorder !important; - color: @promptTextColor !important; -} -.ui.form .inline.fields .field .prompt, -.ui.form .inline.field .prompt { - vertical-align: top; - margin: @inlinePromptMargin; -} -.ui.form .inline.fields .field .prompt:before, -.ui.form .inline.field .prompt:before { - border-width: 0px 0px @inlinePromptBorderWidth @inlinePromptBorderWidth; - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - - -/******************************* - States -*******************************/ - -/*-------------------- - Autofilled ----------------------*/ - -.ui.form .field.field input:-webkit-autofill { - box-shadow: 0px 0px 0px 100px @inputAutoFillBackground inset !important; - border-color: @inputAutoFillBorder !important; -} - -/* Focus */ -.ui.form .field.field input:-webkit-autofill:focus { - box-shadow: 0px 0px 0px 100px @inputAutoFillFocusBackground inset !important; - border-color: @inputAutoFillFocusBorder !important; -} - -/* Error */ -.ui.form .error.error input:-webkit-autofill { - box-shadow: 0px 0px 0px 100px @inputAutoFillErrorBackground inset !important; - border-color: @inputAutoFillErrorBorder !important; -} - - - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ -.ui.form ::-webkit-input-placeholder { - color: @inputPlaceholderColor; -} -.ui.form :-ms-input-placeholder { - color: @inputPlaceholderColor !important; -} -.ui.form ::-moz-placeholder { - color: @inputPlaceholderColor; -} - -.ui.form :focus::-webkit-input-placeholder { - color: @inputPlaceholderFocusColor; -} -.ui.form :focus:-ms-input-placeholder { - color: @inputPlaceholderFocusColor !important; -} -.ui.form :focus::-moz-placeholder { - color: @inputPlaceholderFocusColor; -} - -/* Error Placeholder */ -.ui.form .error ::-webkit-input-placeholder { - color: @inputErrorPlaceholderColor; -} -.ui.form .error :-ms-input-placeholder { - color: @inputErrorPlaceholderColor !important; -} -.ui.form .error ::-moz-placeholder { - color: @inputErrorPlaceholderColor; -} - -.ui.form .error :focus::-webkit-input-placeholder { - color: @inputErrorPlaceholderFocusColor; -} -.ui.form .error :focus:-ms-input-placeholder { - color: @inputErrorPlaceholderFocusColor !important; -} -.ui.form .error :focus::-moz-placeholder { - color: @inputErrorPlaceholderFocusColor; -} - - -/*-------------------- - Focus ----------------------*/ - -.ui.form input:not([type]):focus, -.ui.form input[type="date"]:focus, -.ui.form input[type="datetime-local"]:focus, -.ui.form input[type="email"]:focus, -.ui.form input[type="number"]:focus, -.ui.form input[type="password"]:focus, -.ui.form input[type="search"]:focus, -.ui.form input[type="tel"]:focus, -.ui.form input[type="time"]:focus, -.ui.form input[type="text"]:focus, -.ui.form input[type="file"]:focus, -.ui.form input[type="url"]:focus { - color: @inputFocusColor; - border-color: @inputFocusBorderColor; - border-radius: @inputFocusBorderRadius; - background: @inputFocusBackground; - box-shadow: @inputFocusBoxShadow; -} -.ui.form textarea:focus { - color: @textAreaFocusColor; - border-color: @textAreaFocusBorderColor; - border-radius: @textAreaFocusBorderRadius; - background: @textAreaFocusBackground; - box-shadow: @textAreaFocusBoxShadow; - -webkit-appearance: none; -} - - -/*-------------------- - Success ----------------------*/ - -/* On Form */ -.ui.form.success .success.message:not(:empty) { - display: block; -} -.ui.form.success .compact.success.message:not(:empty) { - display: inline-block; -} -.ui.form.success .icon.success.message:not(:empty) { - display: flex; -} - -/*-------------------- - Warning ----------------------*/ - -/* On Form */ -.ui.form.warning .warning.message:not(:empty) { - display: block; -} -.ui.form.warning .compact.warning.message:not(:empty) { - display: inline-block; -} -.ui.form.warning .icon.warning.message:not(:empty) { - display: flex; -} - -/*-------------------- - Error ----------------------*/ - -/* On Form */ -.ui.form.error .error.message:not(:empty) { - display: block; -} -.ui.form.error .compact.error.message:not(:empty) { - display: inline-block; -} -.ui.form.error .icon.error.message:not(:empty) { - display: flex; -} - -/* On Field(s) */ -.ui.form .fields.error .field label, -.ui.form .field.error label, -.ui.form .fields.error .field .input, -.ui.form .field.error .input { - color: @formErrorColor; -} - -.ui.form .fields.error .field .corner.label, -.ui.form .field.error .corner.label { - border-color: @formErrorColor; - color: @white; -} - -.ui.form .fields.error .field textarea, -.ui.form .fields.error .field select, -.ui.form .fields.error .field input:not([type]), -.ui.form .fields.error .field input[type="date"], -.ui.form .fields.error .field input[type="datetime-local"], -.ui.form .fields.error .field input[type="email"], -.ui.form .fields.error .field input[type="number"], -.ui.form .fields.error .field input[type="password"], -.ui.form .fields.error .field input[type="search"], -.ui.form .fields.error .field input[type="tel"], -.ui.form .fields.error .field input[type="time"], -.ui.form .fields.error .field input[type="text"], -.ui.form .fields.error .field input[type="file"], -.ui.form .fields.error .field input[type="url"], -.ui.form .field.error textarea, -.ui.form .field.error select, -.ui.form .field.error input:not([type]), -.ui.form .field.error input[type="date"], -.ui.form .field.error input[type="datetime-local"], -.ui.form .field.error input[type="email"], -.ui.form .field.error input[type="number"], -.ui.form .field.error input[type="password"], -.ui.form .field.error input[type="search"], -.ui.form .field.error input[type="tel"], -.ui.form .field.error input[type="time"], -.ui.form .field.error input[type="text"], -.ui.form .field.error input[type="file"], -.ui.form .field.error input[type="url"] { - background: @formErrorBackground; - border-color: @formErrorBorder; - color: @formErrorColor; - border-radius: @inputErrorBorderRadius; - box-shadow: @inputErrorBoxShadow; -} -.ui.form .field.error textarea:focus, -.ui.form .field.error select:focus, -.ui.form .field.error input:not([type]):focus, -.ui.form .field.error input[type="date"]:focus, -.ui.form .field.error input[type="datetime-local"]:focus, -.ui.form .field.error input[type="email"]:focus, -.ui.form .field.error input[type="number"]:focus, -.ui.form .field.error input[type="password"]:focus, -.ui.form .field.error input[type="search"]:focus, -.ui.form .field.error input[type="tel"]:focus, -.ui.form .field.error input[type="time"]:focus, -.ui.form .field.error input[type="text"]:focus, -.ui.form .field.error input[type="file"]:focus, -.ui.form .field.error input[type="url"]:focus { - background: @inputErrorFocusBackground; - border-color: @inputErrorFocusBorder; - color: @inputErrorFocusColor; - - -webkit-appearance: none; - box-shadow: @inputErrorFocusBoxShadow; -} - -/* Preserve Native Select Stylings */ -.ui.form .field.error select { - -webkit-appearance: menulist-button; -} - -/*------------------ - Dropdown Error ---------------------*/ - -.ui.form .fields.error .field .ui.dropdown, -.ui.form .fields.error .field .ui.dropdown .item, -.ui.form .field.error .ui.dropdown, -.ui.form .field.error .ui.dropdown .text, -.ui.form .field.error .ui.dropdown .item { - background: @formErrorBackground; - color: @formErrorColor; -} -.ui.form .fields.error .field .ui.dropdown, -.ui.form .field.error .ui.dropdown { - border-color: @formErrorBorder !important; -} -.ui.form .fields.error .field .ui.dropdown:hover, -.ui.form .field.error .ui.dropdown:hover { - border-color: @formErrorBorder !important; -} -.ui.form .fields.error .field .ui.dropdown:hover .menu, -.ui.form .field.error .ui.dropdown:hover .menu { - border-color: @formErrorBorder; -} -.ui.form .fields.error .field .ui.multiple.selection.dropdown > .label, -.ui.form .field.error .ui.multiple.selection.dropdown > .label { - background-color: @dropdownErrorLabelBackground; - color: @dropdownErrorLabelColor; -} - -/* Hover */ -.ui.form .fields.error .field .ui.dropdown .menu .item:hover, -.ui.form .field.error .ui.dropdown .menu .item:hover { - background-color: @dropdownErrorHoverBackground; -} - -/* Selected */ -.ui.form .fields.error .field .ui.dropdown .menu .selected.item, -.ui.form .field.error .ui.dropdown .menu .selected.item { - background-color: @dropdownErrorSelectedBackground; -} - - -/* Active */ -.ui.form .fields.error .field .ui.dropdown .menu .active.item, -.ui.form .field.error .ui.dropdown .menu .active.item { - background-color: @dropdownErrorActiveBackground !important; -} - -/*-------------------- - Checkbox Error ----------------------*/ - -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box { - color: @formErrorColor; -} -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before { - background: @formErrorBackground; - border-color: @formErrorBorder; -} -.ui.form .fields.error .field .checkbox label:after, -.ui.form .field.error .checkbox label:after, -.ui.form .fields.error .field .checkbox .box:after, -.ui.form .field.error .checkbox .box:after { - color: @formErrorColor; -} - -/*-------------------- - Disabled ----------------------*/ - -.ui.form .disabled.fields .field, -.ui.form .disabled.field, -.ui.form .field :disabled { - pointer-events: none; - opacity: @disabledOpacity; -} -.ui.form .field.disabled > label, -.ui.form .fields.disabled > label { - opacity: @disabledLabelOpacity; -} -.ui.form .field.disabled :disabled { - opacity: 1; -} - - -/*-------------- - Loading ----------------*/ - -.ui.loading.form { - position: relative; - cursor: default; - pointer-events: none; -} -.ui.loading.form:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: @loaderDimmerColor; - width: 100%; - height: 100%; - z-index: @loaderDimmerZIndex; -} -.ui.loading.form:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: form-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor @loaderFillColor @loaderFillColor @loaderFillColor; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: @loaderLineZIndex; -} - -@keyframes form-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - - -/******************************* - Element Types -*******************************/ - -/*-------------------- - Required Field ----------------------*/ - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after, -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - margin: @requiredMargin; - content: @requiredContent; - color: @requiredColor; -} - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after { - display: inline-block; - vertical-align: top; -} - -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - position: absolute; - top: 0%; - left: 100%; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------------- - Inverted Colors ----------------------*/ - -.ui.inverted.form label, -.ui.form .inverted.segment label, -.ui.form .inverted.segment .ui.checkbox label, -.ui.form .inverted.segment .ui.checkbox .box, -.ui.inverted.form .ui.checkbox label, -.ui.inverted.form .ui.checkbox .box, -.ui.inverted.form .inline.fields > label, -.ui.inverted.form .inline.fields .field > label, -.ui.inverted.form .inline.fields .field > p, -.ui.inverted.form .inline.field > label, -.ui.inverted.form .inline.field > p { - color: @invertedLabelColor; -} - -/* Inverted Field */ -.ui.inverted.form input:not([type]), -.ui.inverted.form input[type="date"], -.ui.inverted.form input[type="datetime-local"], -.ui.inverted.form input[type="email"], -.ui.inverted.form input[type="number"], -.ui.inverted.form input[type="password"], -.ui.inverted.form input[type="search"], -.ui.inverted.form input[type="tel"], -.ui.inverted.form input[type="time"], -.ui.inverted.form input[type="text"], -.ui.inverted.form input[type="file"], -.ui.inverted.form input[type="url"] { - background: @invertedInputBackground; - border-color: @invertedInputBorderColor; - color: @invertedInputColor; - box-shadow: @invertedInputBoxShadow; -} - - -/*-------------------- - Field Groups ----------------------*/ - -/* Grouped Vertically */ -.ui.form .grouped.fields { - display: block; - margin: @groupedMargin; -} -.ui.form .grouped.fields:last-child { - margin-bottom: 0em; -} - -.ui.form .grouped.fields > label { - margin: @groupedLabelMargin; - color: @groupedLabelColor; - font-size: @groupedLabelFontSize; - font-weight: @groupedLabelFontWeight; - text-transform: @groupedLabelTextTransform; -} - -.ui.form .grouped.fields .field, -.ui.form .grouped.inline.fields .field { - display: block; - margin: @groupedFieldMargin; - padding: 0em; -} - -/*-------------------- - Fields ----------------------*/ - -/* Split fields */ -.ui.form .fields { - display: flex; - flex-direction: row; - margin: @fieldsMargin; -} -.ui.form .fields > .field { - flex: 0 1 auto; - padding-left: (@gutterWidth / 2); - padding-right: (@gutterWidth / 2); -} -.ui.form .fields > .field:first-child { - border-left: none; - box-shadow: none; -} - -/* Other Combinations */ -.ui.form .two.fields > .fields, -.ui.form .two.fields > .field { - width: @twoColumn; -} -.ui.form .three.fields > .fields, -.ui.form .three.fields > .field { - width: @threeColumn; -} -.ui.form .four.fields > .fields, -.ui.form .four.fields > .field { - width: @fourColumn; -} -.ui.form .five.fields > .fields, -.ui.form .five.fields > .field { - width: @fiveColumn; -} -.ui.form .six.fields > .fields, -.ui.form .six.fields > .field { - width: @sixColumn; -} -.ui.form .seven.fields > .fields, -.ui.form .seven.fields > .field { - width: @sevenColumn; -} -.ui.form .eight.fields > .fields, -.ui.form .eight.fields > .field { - width: @eightColumn; -} -.ui.form .nine.fields > .fields, -.ui.form .nine.fields > .field { - width: @nineColumn; -} -.ui.form .ten.fields > .fields, -.ui.form .ten.fields > .field { - width: @tenColumn; -} - -/* Swap to full width on mobile */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.form .fields { - flex-wrap: wrap; - } - - .ui[class*="equal width"].form:not(.unstackable) .fields > .field, - .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field { - width: @oneColumn !important; - margin: 0em 0em @rowDistance; - } -} - - -/* Sizing Combinations */ -.ui.form .fields .wide.field { - width: @oneWide; - padding-left: (@gutterWidth / 2); - padding-right: (@gutterWidth / 2); -} - -.ui.form .one.wide.field { - width: @oneWide !important; -} -.ui.form .two.wide.field { - width: @twoWide !important; -} -.ui.form .three.wide.field { - width: @threeWide !important; -} -.ui.form .four.wide.field { - width: @fourWide !important; -} -.ui.form .five.wide.field { - width: @fiveWide !important; -} -.ui.form .six.wide.field { - width: @sixWide !important; -} -.ui.form .seven.wide.field { - width: @sevenWide !important; -} -.ui.form .eight.wide.field { - width: @eightWide !important; -} -.ui.form .nine.wide.field { - width: @nineWide !important; -} -.ui.form .ten.wide.field { - width: @tenWide !important; -} -.ui.form .eleven.wide.field { - width: @elevenWide !important; -} -.ui.form .twelve.wide.field { - width: @twelveWide !important; -} -.ui.form .thirteen.wide.field { - width: @thirteenWide !important; -} -.ui.form .fourteen.wide.field { - width: @fourteenWide !important; -} -.ui.form .fifteen.wide.field { - width: @fifteenWide !important; -} -.ui.form .sixteen.wide.field { - width: @sixteenWide !important; -} - -/* Swap to full width on mobile */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field { - width: @oneColumn !important; - } - .ui.form .fields { - margin-bottom: 0em; - } -} - -/*-------------------- - Equal Width ----------------------*/ - -.ui[class*="equal width"].form .fields > .field, -.ui.form [class*="equal width"].fields > .field { - width: 100%; - flex: 1 1 auto; -} - -/*-------------------- - Inline Fields ----------------------*/ - -.ui.form .inline.fields { - margin: @fieldMargin; - align-items: center; -} -.ui.form .inline.fields .field { - margin: 0em; - padding: @inlineFieldsMargin; -} - -/* Inline Label */ -.ui.form .inline.fields > label, -.ui.form .inline.fields .field > label, -.ui.form .inline.fields .field > p, -.ui.form .inline.field > label, -.ui.form .inline.field > p { - display: inline-block; - width: auto; - margin-top: 0em; - margin-bottom: 0em; - vertical-align: baseline; - font-size: @inlineLabelFontSize; - font-weight: @inlineLabelFontWeight; - color: @inlineLabelColor; - text-transform: @inlineLabelTextTransform; -} - -/* Grouped Inline Label */ -.ui.form .inline.fields > label { - margin: @groupedInlineLabelMargin; -} - -/* Inline Input */ -.ui.form .inline.fields .field > input, -.ui.form .inline.fields .field > select, -.ui.form .inline.field > input, -.ui.form .inline.field > select { - display: inline-block; - width: auto; - - margin-top: 0em; - margin-bottom: 0em; - - vertical-align: middle; - font-size: @inlineInputSize; -} - -/* Label */ -.ui.form .inline.fields .field > :first-child, -.ui.form .inline.field > :first-child { - margin: 0em @inlineLabelDistance 0em 0em; -} -.ui.form .inline.fields .field > :only-child, -.ui.form .inline.field > :only-child { - margin: 0em; -} - -/* Wide */ -.ui.form .inline.fields .wide.field { - display: flex; - align-items: center; -} -.ui.form .inline.fields .wide.field > input, -.ui.form .inline.fields .wide.field > select { - width: 100%; -} - - -/*-------------------- - Sizes ----------------------*/ - -.ui.mini.form { - font-size: @mini; -} -.ui.tiny.form { - font-size: @tiny; -} -.ui.small.form { - font-size: @small; -} -.ui.form { - font-size: @medium; -} -.ui.large.form { - font-size: @large; -} -.ui.big.form { - font-size: @big; -} -.ui.huge.form { - font-size: @huge; -} -.ui.massive.form { - font-size: @massive; -} - -.loadUIOverrides(); diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less deleted file mode 100644 index 05c0a2b..0000000 --- a/src/definitions/collections/grid.less +++ /dev/null @@ -1,1920 +0,0 @@ -/*! - * # Semantic UI - Grid - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'grid'; - -@import (multiple) '../../theme.config'; - -/******************************* - Standard -*******************************/ - -.ui.grid { - display: flex; - flex-direction: row; - flex-wrap: wrap; - align-items: stretch; - padding: 0em; -} - -/*---------------------- - Remove Gutters ------------------------*/ - -.ui.grid { - margin-top: -(@rowSpacing / 2); - margin-bottom: -(@rowSpacing / 2); - margin-left: -(@gutterWidth / 2); - margin-right: -(@gutterWidth / 2); -} -.ui.relaxed.grid { - margin-left: -(@relaxedGutterWidth / 2); - margin-right: -(@relaxedGutterWidth / 2); -} -.ui[class*="very relaxed"].grid { - margin-left: -(@veryRelaxedGutterWidth / 2); - margin-right: -(@veryRelaxedGutterWidth / 2); -} - - -/* Preserve Rows Spacing on Consecutive Grids */ -.ui.grid + .grid { - margin-top: @consecutiveGridDistance; -} - -/*------------------- - Columns ---------------------*/ - -/* Standard 16 column */ -.ui.grid > .column:not(.row), -.ui.grid > .row > .column { - position: relative; - display: inline-block; - - width: @oneWide; - padding-left: (@gutterWidth / 2); - padding-right: (@gutterWidth / 2); - vertical-align: top; -} - -.ui.grid > * { - padding-left: (@gutterWidth / 2); - padding-right: (@gutterWidth / 2); -} - -/*------------------- - Rows ---------------------*/ - -.ui.grid > .row { - position: relative; - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: inherit; - align-items: stretch; - width: 100% !important; - padding: 0rem; - padding-top: (@rowSpacing / 2); - padding-bottom: (@rowSpacing / 2); -} - -/*------------------- - Columns ---------------------*/ - -/* Vertical padding when no rows */ -.ui.grid > .column:not(.row) { - padding-top: (@rowSpacing / 2); - padding-bottom: (@rowSpacing / 2); -} -.ui.grid > .row > .column { - margin-top: 0em; - margin-bottom: 0em; -} - -/*------------------- - Content ---------------------*/ - -.ui.grid > .row > img, -.ui.grid > .row > .column > img { - max-width: @columnMaxImageWidth; -} - -/*------------------- - Loose Coupling ---------------------*/ - -/* Collapse Margin on Consecutive Grid */ -.ui.grid > .ui.grid:first-child { - margin-top: 0em; -} -.ui.grid > .ui.grid:last-child { - margin-bottom: 0em; -} - -/* Segment inside Aligned Grid */ -.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached), -.ui.aligned.grid .column > .segment:not(.compact):not(.attached) { - width: 100%; -} - -/* Align Dividers with Gutter */ -.ui.grid .row + .ui.divider { - flex-grow: 1; - margin: (@rowSpacing / 2) (@gutterWidth / 2); -} -.ui.grid .column + .ui.vertical.divider { - height: calc(50% - (@rowSpacing / 2)); -} - -/* Remove Border on Last Horizontal Segment */ -.ui.grid > .row > .column:last-child > .horizontal.segment, -.ui.grid > .column:last-child > .horizontal.segment { - box-shadow: none; -} - -/******************************* - Variations -*******************************/ - - -/*----------------------- - Page Grid --------------------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.page.grid { - width: @mobileWidth; - padding-left: @mobileGutter; - padding-right: @mobileGutter; - margin-left: 0em; - margin-right: 0em; - } -} -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui.page.grid { - width: @tabletWidth; - margin-left: @tabletMargin; - margin-right: @tabletMargin; - padding-left: @tabletGutter; - padding-right: @tabletGutter; - } -} -@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) { - .ui.page.grid { - width: @computerWidth; - margin-left: @computerMargin; - margin-right: @computerMargin; - padding-left: @computerGutter; - padding-right: @computerGutter; - } -} -@media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor) { - .ui.page.grid { - width: @largeMonitorWidth; - margin-left: @largeMonitorMargin; - margin-right: @largeMonitorMargin; - padding-left: @largeMonitorGutter; - padding-right: @largeMonitorGutter; - } -} -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui.page.grid { - width: @widescreenMonitorWidth; - margin-left: @widescreenMargin; - margin-right: @widescreenMargin; - padding-left: @widescreenMonitorGutter; - padding-right: @widescreenMonitorGutter; - } -} - - -/*------------------- - Column Count ---------------------*/ - -/* Assume full width with one column */ -.ui.grid > .column:only-child, -.ui.grid > .row > .column:only-child { - width: @oneColumn; -} - -/* Grid Based */ -.ui[class*="one column"].grid > .row > .column, -.ui[class*="one column"].grid > .column:not(.row) { - width: @oneColumn; -} -.ui[class*="two column"].grid > .row > .column, -.ui[class*="two column"].grid > .column:not(.row) { - width: @twoColumn; -} -.ui[class*="three column"].grid > .row > .column, -.ui[class*="three column"].grid > .column:not(.row) { - width: @threeColumn; -} -.ui[class*="four column"].grid > .row > .column, -.ui[class*="four column"].grid > .column:not(.row) { - width: @fourColumn; -} -.ui[class*="five column"].grid > .row > .column, -.ui[class*="five column"].grid > .column:not(.row) { - width: @fiveColumn; -} -.ui[class*="six column"].grid > .row > .column, -.ui[class*="six column"].grid > .column:not(.row) { - width: @sixColumn; -} -.ui[class*="seven column"].grid > .row > .column, -.ui[class*="seven column"].grid > .column:not(.row) { - width: @sevenColumn; -} -.ui[class*="eight column"].grid > .row > .column, -.ui[class*="eight column"].grid > .column:not(.row) { - width: @eightColumn; -} -.ui[class*="nine column"].grid > .row > .column, -.ui[class*="nine column"].grid > .column:not(.row) { - width: @nineColumn; -} -.ui[class*="ten column"].grid > .row > .column, -.ui[class*="ten column"].grid > .column:not(.row) { - width: @tenColumn; -} -.ui[class*="eleven column"].grid > .row > .column, -.ui[class*="eleven column"].grid > .column:not(.row) { - width: @elevenColumn; -} -.ui[class*="twelve column"].grid > .row > .column, -.ui[class*="twelve column"].grid > .column:not(.row) { - width: @twelveColumn; -} -.ui[class*="thirteen column"].grid > .row > .column, -.ui[class*="thirteen column"].grid > .column:not(.row) { - width: @thirteenColumn; -} -.ui[class*="fourteen column"].grid > .row > .column, -.ui[class*="fourteen column"].grid > .column:not(.row) { - width: @fourteenColumn; -} -.ui[class*="fifteen column"].grid > .row > .column, -.ui[class*="fifteen column"].grid > .column:not(.row) { - width: @fifteenColumn; -} -.ui[class*="sixteen column"].grid > .row > .column, -.ui[class*="sixteen column"].grid > .column:not(.row) { - width: @sixteenColumn; -} - -/* Row Based Overrides */ -.ui.grid > [class*="one column"].row > .column { - width: @oneColumn !important; -} -.ui.grid > [class*="two column"].row > .column { - width: @twoColumn !important; -} -.ui.grid > [class*="three column"].row > .column { - width: @threeColumn !important; -} -.ui.grid > [class*="four column"].row > .column { - width: @fourColumn !important; -} -.ui.grid > [class*="five column"].row > .column { - width: @fiveColumn !important; -} -.ui.grid > [class*="six column"].row > .column { - width: @sixColumn !important; -} -.ui.grid > [class*="seven column"].row > .column { - width: @sevenColumn !important; -} -.ui.grid > [class*="eight column"].row > .column { - width: @eightColumn !important; -} -.ui.grid > [class*="nine column"].row > .column { - width: @nineColumn !important; -} -.ui.grid > [class*="ten column"].row > .column { - width: @tenColumn !important; -} -.ui.grid > [class*="eleven column"].row > .column { - width: @elevenColumn !important; -} -.ui.grid > [class*="twelve column"].row > .column { - width: @twelveColumn !important; -} -.ui.grid > [class*="thirteen column"].row > .column { - width: @thirteenColumn !important; -} -.ui.grid > [class*="fourteen column"].row > .column { - width: @fourteenColumn !important; -} -.ui.grid > [class*="fifteen column"].row > .column { - width: @fifteenColumn !important; -} -.ui.grid > [class*="sixteen column"].row > .column { - width: @sixteenColumn !important; -} - -/* Celled Page */ -.ui.celled.page.grid { - box-shadow: none; -} - -/*------------------- - Column Width ---------------------*/ - -/* Sizing Combinations */ -.ui.grid > .row > [class*="one wide"].column, -.ui.grid > .column.row > [class*="one wide"].column, -.ui.grid > [class*="one wide"].column, -.ui.column.grid > [class*="one wide"].column { - width: @oneWide !important; -} -.ui.grid > .row > [class*="two wide"].column, -.ui.grid > .column.row > [class*="two wide"].column, -.ui.grid > [class*="two wide"].column, -.ui.column.grid > [class*="two wide"].column { - width: @twoWide !important; -} -.ui.grid > .row > [class*="three wide"].column, -.ui.grid > .column.row > [class*="three wide"].column, -.ui.grid > [class*="three wide"].column, -.ui.column.grid > [class*="three wide"].column { - width: @threeWide !important; -} -.ui.grid > .row > [class*="four wide"].column, -.ui.grid > .column.row > [class*="four wide"].column, -.ui.grid > [class*="four wide"].column, -.ui.column.grid > [class*="four wide"].column { - width: @fourWide !important; -} -.ui.grid > .row > [class*="five wide"].column, -.ui.grid > .column.row > [class*="five wide"].column, -.ui.grid > [class*="five wide"].column, -.ui.column.grid > [class*="five wide"].column { - width: @fiveWide !important; -} -.ui.grid > .row > [class*="six wide"].column, -.ui.grid > .column.row > [class*="six wide"].column, -.ui.grid > [class*="six wide"].column, -.ui.column.grid > [class*="six wide"].column { - width: @sixWide !important; -} -.ui.grid > .row > [class*="seven wide"].column, -.ui.grid > .column.row > [class*="seven wide"].column, -.ui.grid > [class*="seven wide"].column, -.ui.column.grid > [class*="seven wide"].column { - width: @sevenWide !important; -} -.ui.grid > .row > [class*="eight wide"].column, -.ui.grid > .column.row > [class*="eight wide"].column, -.ui.grid > [class*="eight wide"].column, -.ui.column.grid > [class*="eight wide"].column { - width: @eightWide !important; -} -.ui.grid > .row > [class*="nine wide"].column, -.ui.grid > .column.row > [class*="nine wide"].column, -.ui.grid > [class*="nine wide"].column, -.ui.column.grid > [class*="nine wide"].column { - width: @nineWide !important; -} -.ui.grid > .row > [class*="ten wide"].column, -.ui.grid > .column.row > [class*="ten wide"].column, -.ui.grid > [class*="ten wide"].column, -.ui.column.grid > [class*="ten wide"].column { - width: @tenWide !important; -} -.ui.grid > .row > [class*="eleven wide"].column, -.ui.grid > .column.row > [class*="eleven wide"].column, -.ui.grid > [class*="eleven wide"].column, -.ui.column.grid > [class*="eleven wide"].column { - width: @elevenWide !important; -} -.ui.grid > .row > [class*="twelve wide"].column, -.ui.grid > .column.row > [class*="twelve wide"].column, -.ui.grid > [class*="twelve wide"].column, -.ui.column.grid > [class*="twelve wide"].column { - width: @twelveWide !important; -} -.ui.grid > .row > [class*="thirteen wide"].column, -.ui.grid > .column.row > [class*="thirteen wide"].column, -.ui.grid > [class*="thirteen wide"].column, -.ui.column.grid > [class*="thirteen wide"].column { - width: @thirteenWide !important; -} -.ui.grid > .row > [class*="fourteen wide"].column, -.ui.grid > .column.row > [class*="fourteen wide"].column, -.ui.grid > [class*="fourteen wide"].column, -.ui.column.grid > [class*="fourteen wide"].column { - width: @fourteenWide !important; -} -.ui.grid > .row > [class*="fifteen wide"].column, -.ui.grid > .column.row > [class*="fifteen wide"].column, -.ui.grid > [class*="fifteen wide"].column, -.ui.column.grid > [class*="fifteen wide"].column { - width: @fifteenWide !important; -} -.ui.grid > .row > [class*="sixteen wide"].column, -.ui.grid > .column.row > [class*="sixteen wide"].column, -.ui.grid > [class*="sixteen wide"].column, -.ui.column.grid > [class*="sixteen wide"].column { - width: @sixteenWide !important; -} - -/*---------------------- - Width per Device ------------------------*/ - -/* Mobile Sizing Combinations */ -@media only screen and (min-width: @mobileBreakpoint) and (max-width: @largestMobileScreen) { - .ui.grid > .row > [class*="one wide mobile"].column, - .ui.grid > .column.row > [class*="one wide mobile"].column, - .ui.grid > [class*="one wide mobile"].column, - .ui.column.grid > [class*="one wide mobile"].column { - width: @oneWide !important; - } - .ui.grid > .row > [class*="two wide mobile"].column, - .ui.grid > .column.row > [class*="two wide mobile"].column, - .ui.grid > [class*="two wide mobile"].column, - .ui.column.grid > [class*="two wide mobile"].column { - width: @twoWide !important; - } - .ui.grid > .row > [class*="three wide mobile"].column, - .ui.grid > .column.row > [class*="three wide mobile"].column, - .ui.grid > [class*="three wide mobile"].column, - .ui.column.grid > [class*="three wide mobile"].column { - width: @threeWide !important; - } - .ui.grid > .row > [class*="four wide mobile"].column, - .ui.grid > .column.row > [class*="four wide mobile"].column, - .ui.grid > [class*="four wide mobile"].column, - .ui.column.grid > [class*="four wide mobile"].column { - width: @fourWide !important; - } - .ui.grid > .row > [class*="five wide mobile"].column, - .ui.grid > .column.row > [class*="five wide mobile"].column, - .ui.grid > [class*="five wide mobile"].column, - .ui.column.grid > [class*="five wide mobile"].column { - width: @fiveWide !important; - } - .ui.grid > .row > [class*="six wide mobile"].column, - .ui.grid > .column.row > [class*="six wide mobile"].column, - .ui.grid > [class*="six wide mobile"].column, - .ui.column.grid > [class*="six wide mobile"].column { - width: @sixWide !important; - } - .ui.grid > .row > [class*="seven wide mobile"].column, - .ui.grid > .column.row > [class*="seven wide mobile"].column, - .ui.grid > [class*="seven wide mobile"].column, - .ui.column.grid > [class*="seven wide mobile"].column { - width: @sevenWide !important; - } - .ui.grid > .row > [class*="eight wide mobile"].column, - .ui.grid > .column.row > [class*="eight wide mobile"].column, - .ui.grid > [class*="eight wide mobile"].column, - .ui.column.grid > [class*="eight wide mobile"].column { - width: @eightWide !important; - } - .ui.grid > .row > [class*="nine wide mobile"].column, - .ui.grid > .column.row > [class*="nine wide mobile"].column, - .ui.grid > [class*="nine wide mobile"].column, - .ui.column.grid > [class*="nine wide mobile"].column { - width: @nineWide !important; - } - .ui.grid > .row > [class*="ten wide mobile"].column, - .ui.grid > .column.row > [class*="ten wide mobile"].column, - .ui.grid > [class*="ten wide mobile"].column, - .ui.column.grid > [class*="ten wide mobile"].column { - width: @tenWide !important; - } - .ui.grid > .row > [class*="eleven wide mobile"].column, - .ui.grid > .column.row > [class*="eleven wide mobile"].column, - .ui.grid > [class*="eleven wide mobile"].column, - .ui.column.grid > [class*="eleven wide mobile"].column { - width: @elevenWide !important; - } - .ui.grid > .row > [class*="twelve wide mobile"].column, - .ui.grid > .column.row > [class*="twelve wide mobile"].column, - .ui.grid > [class*="twelve wide mobile"].column, - .ui.column.grid > [class*="twelve wide mobile"].column { - width: @twelveWide !important; - } - .ui.grid > .row > [class*="thirteen wide mobile"].column, - .ui.grid > .column.row > [class*="thirteen wide mobile"].column, - .ui.grid > [class*="thirteen wide mobile"].column, - .ui.column.grid > [class*="thirteen wide mobile"].column { - width: @thirteenWide !important; - } - .ui.grid > .row > [class*="fourteen wide mobile"].column, - .ui.grid > .column.row > [class*="fourteen wide mobile"].column, - .ui.grid > [class*="fourteen wide mobile"].column, - .ui.column.grid > [class*="fourteen wide mobile"].column { - width: @fourteenWide !important; - } - .ui.grid > .row > [class*="fifteen wide mobile"].column, - .ui.grid > .column.row > [class*="fifteen wide mobile"].column, - .ui.grid > [class*="fifteen wide mobile"].column, - .ui.column.grid > [class*="fifteen wide mobile"].column { - width: @fifteenWide !important; - } - .ui.grid > .row > [class*="sixteen wide mobile"].column, - .ui.grid > .column.row > [class*="sixteen wide mobile"].column, - .ui.grid > [class*="sixteen wide mobile"].column, - .ui.column.grid > [class*="sixteen wide mobile"].column { - width: @sixteenWide !important; - } -} - -/* Tablet Sizing Combinations */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui.grid > .row > [class*="one wide tablet"].column, - .ui.grid > .column.row > [class*="one wide tablet"].column, - .ui.grid > [class*="one wide tablet"].column, - .ui.column.grid > [class*="one wide tablet"].column { - width: @oneWide !important; - } - .ui.grid > .row > [class*="two wide tablet"].column, - .ui.grid > .column.row > [class*="two wide tablet"].column, - .ui.grid > [class*="two wide tablet"].column, - .ui.column.grid > [class*="two wide tablet"].column { - width: @twoWide !important; - } - .ui.grid > .row > [class*="three wide tablet"].column, - .ui.grid > .column.row > [class*="three wide tablet"].column, - .ui.grid > [class*="three wide tablet"].column, - .ui.column.grid > [class*="three wide tablet"].column { - width: @threeWide !important; - } - .ui.grid > .row > [class*="four wide tablet"].column, - .ui.grid > .column.row > [class*="four wide tablet"].column, - .ui.grid > [class*="four wide tablet"].column, - .ui.column.grid > [class*="four wide tablet"].column { - width: @fourWide !important; - } - .ui.grid > .row > [class*="five wide tablet"].column, - .ui.grid > .column.row > [class*="five wide tablet"].column, - .ui.grid > [class*="five wide tablet"].column, - .ui.column.grid > [class*="five wide tablet"].column { - width: @fiveWide !important; - } - .ui.grid > .row > [class*="six wide tablet"].column, - .ui.grid > .column.row > [class*="six wide tablet"].column, - .ui.grid > [class*="six wide tablet"].column, - .ui.column.grid > [class*="six wide tablet"].column { - width: @sixWide !important; - } - .ui.grid > .row > [class*="seven wide tablet"].column, - .ui.grid > .column.row > [class*="seven wide tablet"].column, - .ui.grid > [class*="seven wide tablet"].column, - .ui.column.grid > [class*="seven wide tablet"].column { - width: @sevenWide !important; - } - .ui.grid > .row > [class*="eight wide tablet"].column, - .ui.grid > .column.row > [class*="eight wide tablet"].column, - .ui.grid > [class*="eight wide tablet"].column, - .ui.column.grid > [class*="eight wide tablet"].column { - width: @eightWide !important; - } - .ui.grid > .row > [class*="nine wide tablet"].column, - .ui.grid > .column.row > [class*="nine wide tablet"].column, - .ui.grid > [class*="nine wide tablet"].column, - .ui.column.grid > [class*="nine wide tablet"].column { - width: @nineWide !important; - } - .ui.grid > .row > [class*="ten wide tablet"].column, - .ui.grid > .column.row > [class*="ten wide tablet"].column, - .ui.grid > [class*="ten wide tablet"].column, - .ui.column.grid > [class*="ten wide tablet"].column { - width: @tenWide !important; - } - .ui.grid > .row > [class*="eleven wide tablet"].column, - .ui.grid > .column.row > [class*="eleven wide tablet"].column, - .ui.grid > [class*="eleven wide tablet"].column, - .ui.column.grid > [class*="eleven wide tablet"].column { - width: @elevenWide !important; - } - .ui.grid > .row > [class*="twelve wide tablet"].column, - .ui.grid > .column.row > [class*="twelve wide tablet"].column, - .ui.grid > [class*="twelve wide tablet"].column, - .ui.column.grid > [class*="twelve wide tablet"].column { - width: @twelveWide !important; - } - .ui.grid > .row > [class*="thirteen wide tablet"].column, - .ui.grid > .column.row > [class*="thirteen wide tablet"].column, - .ui.grid > [class*="thirteen wide tablet"].column, - .ui.column.grid > [class*="thirteen wide tablet"].column { - width: @thirteenWide !important; - } - .ui.grid > .row > [class*="fourteen wide tablet"].column, - .ui.grid > .column.row > [class*="fourteen wide tablet"].column, - .ui.grid > [class*="fourteen wide tablet"].column, - .ui.column.grid > [class*="fourteen wide tablet"].column { - width: @fourteenWide !important; - } - .ui.grid > .row > [class*="fifteen wide tablet"].column, - .ui.grid > .column.row > [class*="fifteen wide tablet"].column, - .ui.grid > [class*="fifteen wide tablet"].column, - .ui.column.grid > [class*="fifteen wide tablet"].column { - width: @fifteenWide !important; - } - .ui.grid > .row > [class*="sixteen wide tablet"].column, - .ui.grid > .column.row > [class*="sixteen wide tablet"].column, - .ui.grid > [class*="sixteen wide tablet"].column, - .ui.column.grid > [class*="sixteen wide tablet"].column { - width: @sixteenWide !important; - } -} - -/* Computer/Desktop Sizing Combinations */ -@media only screen and (min-width: @computerBreakpoint) { - .ui.grid > .row > [class*="one wide computer"].column, - .ui.grid > .column.row > [class*="one wide computer"].column, - .ui.grid > [class*="one wide computer"].column, - .ui.column.grid > [class*="one wide computer"].column { - width: @oneWide !important; - } - .ui.grid > .row > [class*="two wide computer"].column, - .ui.grid > .column.row > [class*="two wide computer"].column, - .ui.grid > [class*="two wide computer"].column, - .ui.column.grid > [class*="two wide computer"].column { - width: @twoWide !important; - } - .ui.grid > .row > [class*="three wide computer"].column, - .ui.grid > .column.row > [class*="three wide computer"].column, - .ui.grid > [class*="three wide computer"].column, - .ui.column.grid > [class*="three wide computer"].column { - width: @threeWide !important; - } - .ui.grid > .row > [class*="four wide computer"].column, - .ui.grid > .column.row > [class*="four wide computer"].column, - .ui.grid > [class*="four wide computer"].column, - .ui.column.grid > [class*="four wide computer"].column { - width: @fourWide !important; - } - .ui.grid > .row > [class*="five wide computer"].column, - .ui.grid > .column.row > [class*="five wide computer"].column, - .ui.grid > [class*="five wide computer"].column, - .ui.column.grid > [class*="five wide computer"].column { - width: @fiveWide !important; - } - .ui.grid > .row > [class*="six wide computer"].column, - .ui.grid > .column.row > [class*="six wide computer"].column, - .ui.grid > [class*="six wide computer"].column, - .ui.column.grid > [class*="six wide computer"].column { - width: @sixWide !important; - } - .ui.grid > .row > [class*="seven wide computer"].column, - .ui.grid > .column.row > [class*="seven wide computer"].column, - .ui.grid > [class*="seven wide computer"].column, - .ui.column.grid > [class*="seven wide computer"].column { - width: @sevenWide !important; - } - .ui.grid > .row > [class*="eight wide computer"].column, - .ui.grid > .column.row > [class*="eight wide computer"].column, - .ui.grid > [class*="eight wide computer"].column, - .ui.column.grid > [class*="eight wide computer"].column { - width: @eightWide !important; - } - .ui.grid > .row > [class*="nine wide computer"].column, - .ui.grid > .column.row > [class*="nine wide computer"].column, - .ui.grid > [class*="nine wide computer"].column, - .ui.column.grid > [class*="nine wide computer"].column { - width: @nineWide !important; - } - .ui.grid > .row > [class*="ten wide computer"].column, - .ui.grid > .column.row > [class*="ten wide computer"].column, - .ui.grid > [class*="ten wide computer"].column, - .ui.column.grid > [class*="ten wide computer"].column { - width: @tenWide !important; - } - .ui.grid > .row > [class*="eleven wide computer"].column, - .ui.grid > .column.row > [class*="eleven wide computer"].column, - .ui.grid > [class*="eleven wide computer"].column, - .ui.column.grid > [class*="eleven wide computer"].column { - width: @elevenWide !important; - } - .ui.grid > .row > [class*="twelve wide computer"].column, - .ui.grid > .column.row > [class*="twelve wide computer"].column, - .ui.grid > [class*="twelve wide computer"].column, - .ui.column.grid > [class*="twelve wide computer"].column { - width: @twelveWide !important; - } - .ui.grid > .row > [class*="thirteen wide computer"].column, - .ui.grid > .column.row > [class*="thirteen wide computer"].column, - .ui.grid > [class*="thirteen wide computer"].column, - .ui.column.grid > [class*="thirteen wide computer"].column { - width: @thirteenWide !important; - } - .ui.grid > .row > [class*="fourteen wide computer"].column, - .ui.grid > .column.row > [class*="fourteen wide computer"].column, - .ui.grid > [class*="fourteen wide computer"].column, - .ui.column.grid > [class*="fourteen wide computer"].column { - width: @fourteenWide !important; - } - .ui.grid > .row > [class*="fifteen wide computer"].column, - .ui.grid > .column.row > [class*="fifteen wide computer"].column, - .ui.grid > [class*="fifteen wide computer"].column, - .ui.column.grid > [class*="fifteen wide computer"].column { - width: @fifteenWide !important; - } - .ui.grid > .row > [class*="sixteen wide computer"].column, - .ui.grid > .column.row > [class*="sixteen wide computer"].column, - .ui.grid > [class*="sixteen wide computer"].column, - .ui.column.grid > [class*="sixteen wide computer"].column { - width: @sixteenWide !important; - } -} - -/* Large Monitor Sizing Combinations */ -@media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor){ - .ui.grid > .row > [class*="one wide large screen"].column, - .ui.grid > .column.row > [class*="one wide large screen"].column, - .ui.grid > [class*="one wide large screen"].column, - .ui.column.grid > [class*="one wide large screen"].column { - width: @oneWide !important; - } - .ui.grid > .row > [class*="two wide large screen"].column, - .ui.grid > .column.row > [class*="two wide large screen"].column, - .ui.grid > [class*="two wide large screen"].column, - .ui.column.grid > [class*="two wide large screen"].column { - width: @twoWide !important; - } - .ui.grid > .row > [class*="three wide large screen"].column, - .ui.grid > .column.row > [class*="three wide large screen"].column, - .ui.grid > [class*="three wide large screen"].column, - .ui.column.grid > [class*="three wide large screen"].column { - width: @threeWide !important; - } - .ui.grid > .row > [class*="four wide large screen"].column, - .ui.grid > .column.row > [class*="four wide large screen"].column, - .ui.grid > [class*="four wide large screen"].column, - .ui.column.grid > [class*="four wide large screen"].column { - width: @fourWide !important; - } - .ui.grid > .row > [class*="five wide large screen"].column, - .ui.grid > .column.row > [class*="five wide large screen"].column, - .ui.grid > [class*="five wide large screen"].column, - .ui.column.grid > [class*="five wide large screen"].column { - width: @fiveWide !important; - } - .ui.grid > .row > [class*="six wide large screen"].column, - .ui.grid > .column.row > [class*="six wide large screen"].column, - .ui.grid > [class*="six wide large screen"].column, - .ui.column.grid > [class*="six wide large screen"].column { - width: @sixWide !important; - } - .ui.grid > .row > [class*="seven wide large screen"].column, - .ui.grid > .column.row > [class*="seven wide large screen"].column, - .ui.grid > [class*="seven wide large screen"].column, - .ui.column.grid > [class*="seven wide large screen"].column { - width: @sevenWide !important; - } - .ui.grid > .row > [class*="eight wide large screen"].column, - .ui.grid > .column.row > [class*="eight wide large screen"].column, - .ui.grid > [class*="eight wide large screen"].column, - .ui.column.grid > [class*="eight wide large screen"].column { - width: @eightWide !important; - } - .ui.grid > .row > [class*="nine wide large screen"].column, - .ui.grid > .column.row > [class*="nine wide large screen"].column, - .ui.grid > [class*="nine wide large screen"].column, - .ui.column.grid > [class*="nine wide large screen"].column { - width: @nineWide !important; - } - .ui.grid > .row > [class*="ten wide large screen"].column, - .ui.grid > .column.row > [class*="ten wide large screen"].column, - .ui.grid > [class*="ten wide large screen"].column, - .ui.column.grid > [class*="ten wide large screen"].column { - width: @tenWide !important; - } - .ui.grid > .row > [class*="eleven wide large screen"].column, - .ui.grid > .column.row > [class*="eleven wide large screen"].column, - .ui.grid > [class*="eleven wide large screen"].column, - .ui.column.grid > [class*="eleven wide large screen"].column { - width: @elevenWide !important; - } - .ui.grid > .row > [class*="twelve wide large screen"].column, - .ui.grid > .column.row > [class*="twelve wide large screen"].column, - .ui.grid > [class*="twelve wide large screen"].column, - .ui.column.grid > [class*="twelve wide large screen"].column { - width: @twelveWide !important; - } - .ui.grid > .row > [class*="thirteen wide large screen"].column, - .ui.grid > .column.row > [class*="thirteen wide large screen"].column, - .ui.grid > [class*="thirteen wide large screen"].column, - .ui.column.grid > [class*="thirteen wide large screen"].column { - width: @thirteenWide !important; - } - .ui.grid > .row > [class*="fourteen wide large screen"].column, - .ui.grid > .column.row > [class*="fourteen wide large screen"].column, - .ui.grid > [class*="fourteen wide large screen"].column, - .ui.column.grid > [class*="fourteen wide large screen"].column { - width: @fourteenWide !important; - } - .ui.grid > .row > [class*="fifteen wide large screen"].column, - .ui.grid > .column.row > [class*="fifteen wide large screen"].column, - .ui.grid > [class*="fifteen wide large screen"].column, - .ui.column.grid > [class*="fifteen wide large screen"].column { - width: @fifteenWide !important; - } - .ui.grid > .row > [class*="sixteen wide large screen"].column, - .ui.grid > .column.row > [class*="sixteen wide large screen"].column, - .ui.grid > [class*="sixteen wide large screen"].column, - .ui.column.grid > [class*="sixteen wide large screen"].column { - width: @sixteenWide !important; - } -} - -/* Widescreen Sizing Combinations */ -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui.grid > .row > [class*="one wide widescreen"].column, - .ui.grid > .column.row > [class*="one wide widescreen"].column, - .ui.grid > [class*="one wide widescreen"].column, - .ui.column.grid > [class*="one wide widescreen"].column { - width: @oneWide !important; - } - .ui.grid > .row > [class*="two wide widescreen"].column, - .ui.grid > .column.row > [class*="two wide widescreen"].column, - .ui.grid > [class*="two wide widescreen"].column, - .ui.column.grid > [class*="two wide widescreen"].column { - width: @twoWide !important; - } - .ui.grid > .row > [class*="three wide widescreen"].column, - .ui.grid > .column.row > [class*="three wide widescreen"].column, - .ui.grid > [class*="three wide widescreen"].column, - .ui.column.grid > [class*="three wide widescreen"].column { - width: @threeWide !important; - } - .ui.grid > .row > [class*="four wide widescreen"].column, - .ui.grid > .column.row > [class*="four wide widescreen"].column, - .ui.grid > [class*="four wide widescreen"].column, - .ui.column.grid > [class*="four wide widescreen"].column { - width: @fourWide !important; - } - .ui.grid > .row > [class*="five wide widescreen"].column, - .ui.grid > .column.row > [class*="five wide widescreen"].column, - .ui.grid > [class*="five wide widescreen"].column, - .ui.column.grid > [class*="five wide widescreen"].column { - width: @fiveWide !important; - } - .ui.grid > .row > [class*="six wide widescreen"].column, - .ui.grid > .column.row > [class*="six wide widescreen"].column, - .ui.grid > [class*="six wide widescreen"].column, - .ui.column.grid > [class*="six wide widescreen"].column { - width: @sixWide !important; - } - .ui.grid > .row > [class*="seven wide widescreen"].column, - .ui.grid > .column.row > [class*="seven wide widescreen"].column, - .ui.grid > [class*="seven wide widescreen"].column, - .ui.column.grid > [class*="seven wide widescreen"].column { - width: @sevenWide !important; - } - .ui.grid > .row > [class*="eight wide widescreen"].column, - .ui.grid > .column.row > [class*="eight wide widescreen"].column, - .ui.grid > [class*="eight wide widescreen"].column, - .ui.column.grid > [class*="eight wide widescreen"].column { - width: @eightWide !important; - } - .ui.grid > .row > [class*="nine wide widescreen"].column, - .ui.grid > .column.row > [class*="nine wide widescreen"].column, - .ui.grid > [class*="nine wide widescreen"].column, - .ui.column.grid > [class*="nine wide widescreen"].column { - width: @nineWide !important; - } - .ui.grid > .row > [class*="ten wide widescreen"].column, - .ui.grid > .column.row > [class*="ten wide widescreen"].column, - .ui.grid > [class*="ten wide widescreen"].column, - .ui.column.grid > [class*="ten wide widescreen"].column { - width: @tenWide !important; - } - .ui.grid > .row > [class*="eleven wide widescreen"].column, - .ui.grid > .column.row > [class*="eleven wide widescreen"].column, - .ui.grid > [class*="eleven wide widescreen"].column, - .ui.column.grid > [class*="eleven wide widescreen"].column { - width: @elevenWide !important; - } - .ui.grid > .row > [class*="twelve wide widescreen"].column, - .ui.grid > .column.row > [class*="twelve wide widescreen"].column, - .ui.grid > [class*="twelve wide widescreen"].column, - .ui.column.grid > [class*="twelve wide widescreen"].column { - width: @twelveWide !important; - } - .ui.grid > .row > [class*="thirteen wide widescreen"].column, - .ui.grid > .column.row > [class*="thirteen wide widescreen"].column, - .ui.grid > [class*="thirteen wide widescreen"].column, - .ui.column.grid > [class*="thirteen wide widescreen"].column { - width: @thirteenWide !important; - } - .ui.grid > .row > [class*="fourteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fourteen wide widescreen"].column, - .ui.grid > [class*="fourteen wide widescreen"].column, - .ui.column.grid > [class*="fourteen wide widescreen"].column { - width: @fourteenWide !important; - } - .ui.grid > .row > [class*="fifteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fifteen wide widescreen"].column, - .ui.grid > [class*="fifteen wide widescreen"].column, - .ui.column.grid > [class*="fifteen wide widescreen"].column { - width: @fifteenWide !important; - } - .ui.grid > .row > [class*="sixteen wide widescreen"].column, - .ui.grid > .column.row > [class*="sixteen wide widescreen"].column, - .ui.grid > [class*="sixteen wide widescreen"].column, - .ui.column.grid > [class*="sixteen wide widescreen"].column { - width: @sixteenWide !important; - } -} - -/*---------------------- - Centered ------------------------*/ - -.ui.centered.grid, -.ui.centered.grid > .row, -.ui.grid > .centered.row { - text-align: center; - justify-content: center; -} -.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row), -.ui.centered.grid > .row > .column:not(.aligned):not(.justified), -.ui.grid .centered.row > .column:not(.aligned):not(.justified) { - text-align: left; -} - -.ui.grid > .centered.column, -.ui.grid > .row > .centered.column { - display: block; - margin-left: auto; - margin-right: auto; -} - -/*---------------------- - Relaxed ------------------------*/ - -.ui.relaxed.grid > .column:not(.row), -.ui.relaxed.grid > .row > .column, -.ui.grid > .relaxed.row > .column { - padding-left: (@relaxedGutterWidth / 2); - padding-right: (@relaxedGutterWidth / 2); -} - -.ui[class*="very relaxed"].grid > .column:not(.row), -.ui[class*="very relaxed"].grid > .row > .column, -.ui.grid > [class*="very relaxed"].row > .column { - padding-left: (@veryRelaxedGutterWidth / 2); - padding-right: (@veryRelaxedGutterWidth / 2); -} - -/* Coupling with UI Divider */ -.ui.relaxed.grid .row + .ui.divider, -.ui.grid .relaxed.row + .ui.divider { - margin-left: (@relaxedGutterWidth / 2); - margin-right: (@relaxedGutterWidth / 2); -} -.ui[class*="very relaxed"].grid .row + .ui.divider, -.ui.grid [class*="very relaxed"].row + .ui.divider { - margin-left: (@veryRelaxedGutterWidth / 2); - margin-right: (@veryRelaxedGutterWidth / 2); -} - - -/*---------------------- - Padded ------------------------*/ - -.ui.padded.grid:not(.vertically):not(.horizontally) { - margin: 0em !important; -} -[class*="horizontally padded"].ui.grid { - margin-left: 0em !important; - margin-right: 0em !important; -} -[class*="vertically padded"].ui.grid { - margin-top: 0em !important; - margin-bottom: 0em !important; -} - -/*---------------------- - "Floated" ------------------------*/ - -.ui.grid [class*="left floated"].column { - margin-right: auto; -} -.ui.grid [class*="right floated"].column { - margin-left: auto; -} - - -/*---------------------- - Divided ------------------------*/ - -.ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column { - box-shadow: @dividedBorder; -} - -/* Swap from padding to margin on columns to have dividers align */ -.ui[class*="vertically divided"].grid > .column:not(.row), -.ui[class*="vertically divided"].grid > .row > .column { - margin-top: (@rowSpacing / 2); - margin-bottom: (@rowSpacing / 2); - padding-top: 0rem; - padding-bottom: 0rem; -} -.ui[class*="vertically divided"].grid > .row { - margin-top: 0em; - margin-bottom: 0em; -} - - - -/* No divider on first column on row */ -.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child, -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: none; -} - -/* No space on top of first row */ -.ui[class*="vertically divided"].grid > .row:first-child > .column { - margin-top: 0em; -} - - -/* Divided Row */ -.ui.grid > .divided.row > .column { - box-shadow: @dividedBorder; -} -.ui.grid > .divided.row > .column:first-child { - box-shadow: none; -} - -/* Vertically Divided */ -.ui[class*="vertically divided"].grid > .row { - position: relative; -} -.ui[class*="vertically divided"].grid > .row:before { - position: absolute; - content: ""; - top: 0em; - left: 0px; - - width: calc(100% - @gutterWidth); - height: 1px; - - margin: 0% (@gutterWidth / 2); - box-shadow: @verticallyDividedBorder; -} - -/* Padded Horizontally Divided */ -[class*="horizontally padded"].ui.divided.grid, -.ui.padded.divided.grid:not(.vertically):not(.horizontally) { - width: 100%; -} - -/* First Row Vertically Divided */ -.ui[class*="vertically divided"].grid > .row:first-child:before { - box-shadow: none; -} - -/* Inverted Divided */ -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column { - box-shadow: @dividedInvertedBorder; -} -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child, -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: none; -} -.ui.inverted[class*="vertically divided"].grid > .row:before { - box-shadow: @verticallyDividedInvertedBorder; -} - -/* Relaxed */ -.ui.relaxed[class*="vertically divided"].grid > .row:before { - margin-left: (@relaxedGutterWidth / 2); - margin-right: (@relaxedGutterWidth / 2); - width: calc(100% - @relaxedGutterWidth); -} -.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before { - margin-left: (@veryRelaxedGutterWidth / 2); - margin-right: (@veryRelaxedGutterWidth / 2); - width: calc(100% - @veryRelaxedGutterWidth); -} - -/*---------------------- - Celled ------------------------*/ - -.ui.celled.grid { - width: 100%; - margin: @celledMargin; - box-shadow: @celledGridDivider; -} - -.ui.celled.grid > .row { - width: 100% !important; - margin: 0em; - padding: 0em; - box-shadow: @celledRowDivider; -} -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - box-shadow: @celledColumnDivider; -} - -.ui.celled.grid > .column:first-child, -.ui.celled.grid > .row > .column:first-child { - box-shadow: none; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - padding: @celledPadding; -} -.ui.relaxed.celled.grid > .column:not(.row), -.ui.relaxed.celled.grid > .row > .column { - padding: @celledRelaxedPadding; -} -.ui[class*="very relaxed"].celled.grid > .column:not(.row), -.ui[class*="very relaxed"].celled.grid > .row > .column { - padding: @celledVeryRelaxedPadding; -} - -/* Internally Celled */ -.ui[class*="internally celled"].grid { - box-shadow: none; - margin: 0em; -} -.ui[class*="internally celled"].grid > .row:first-child { - box-shadow: none; -} -.ui[class*="internally celled"].grid > .row > .column:first-child { - box-shadow: none; -} - -/*---------------------- - Vertically Aligned ------------------------*/ - -/* Top Aligned */ -.ui[class*="top aligned"].grid > .column:not(.row), -.ui[class*="top aligned"].grid > .row > .column, -.ui.grid > [class*="top aligned"].row > .column, -.ui.grid > [class*="top aligned"].column:not(.row), -.ui.grid > .row > [class*="top aligned"].column { - flex-direction: column; - vertical-align: top; - align-self: flex-start !important; -} - -/* Middle Aligned */ -.ui[class*="middle aligned"].grid > .column:not(.row), -.ui[class*="middle aligned"].grid > .row > .column, -.ui.grid > [class*="middle aligned"].row > .column, -.ui.grid > [class*="middle aligned"].column:not(.row), -.ui.grid > .row > [class*="middle aligned"].column { - flex-direction: column; - vertical-align: middle; - align-self: center !important; -} - -/* Bottom Aligned */ -.ui[class*="bottom aligned"].grid > .column:not(.row), -.ui[class*="bottom aligned"].grid > .row > .column, -.ui.grid > [class*="bottom aligned"].row > .column, -.ui.grid > [class*="bottom aligned"].column:not(.row), -.ui.grid > .row > [class*="bottom aligned"].column { - flex-direction: column; - vertical-align: bottom; - align-self: flex-end !important; -} - -/* Stretched */ -.ui.stretched.grid > .row > .column, -.ui.stretched.grid > .column, -.ui.grid > .stretched.row > .column, -.ui.grid > .stretched.column:not(.row), -.ui.grid > .row > .stretched.column { - display: inline-flex !important; - align-self: stretch; - flex-direction: column; -} - -.ui.stretched.grid > .row > .column > *, -.ui.stretched.grid > .column > *, -.ui.grid > .stretched.row > .column > *, -.ui.grid > .stretched.column:not(.row) > *, -.ui.grid > .row > .stretched.column > * { - flex-grow: 1; -} - -/*---------------------- - Horizontally Centered ------------------------*/ - -/* Left Aligned */ -.ui[class*="left aligned"].grid > .column, -.ui[class*="left aligned"].grid > .row > .column, -.ui.grid > [class*="left aligned"].row > .column, -.ui.grid > [class*="left aligned"].column.column, -.ui.grid > .row > [class*="left aligned"].column.column { - text-align: left; - align-self: inherit; -} - -/* Center Aligned */ -.ui[class*="center aligned"].grid > .column, -.ui[class*="center aligned"].grid > .row > .column, -.ui.grid > [class*="center aligned"].row > .column, -.ui.grid > [class*="center aligned"].column.column, -.ui.grid > .row > [class*="center aligned"].column.column { - text-align: center; - align-self: inherit; -} -.ui[class*="center aligned"].grid { - justify-content: center; -} - -/* Right Aligned */ -.ui[class*="right aligned"].grid > .column, -.ui[class*="right aligned"].grid > .row > .column, -.ui.grid > [class*="right aligned"].row > .column, -.ui.grid > [class*="right aligned"].column.column, -.ui.grid > .row > [class*="right aligned"].column.column { - text-align: right; - align-self: inherit; -} - -/* Justified */ -.ui.justified.grid > .column, -.ui.justified.grid > .row > .column, -.ui.grid > .justified.row > .column, -.ui.grid > .justified.column.column, -.ui.grid > .row > .justified.column.column { - text-align: justify; - hyphens: auto; -} - -/*---------------------- - Colored ------------------------*/ - -.ui.grid > .row > .red.column, -.ui.grid > .row > .orange.column, -.ui.grid > .row > .yellow.column, -.ui.grid > .row > .olive.column, -.ui.grid > .row > .green.column, -.ui.grid > .row > .teal.column, -.ui.grid > .row > .blue.column, -.ui.grid > .row > .violet.column, -.ui.grid > .row > .purple.column, -.ui.grid > .row > .pink.column, -.ui.grid > .row > .brown.column, -.ui.grid > .row > .grey.column, -.ui.grid > .row > .black.column { - margin-top: -(@rowSpacing / 2); - margin-bottom: -(@rowSpacing / 2); - padding-top: (@rowSpacing / 2); - padding-bottom: (@rowSpacing / 2); -} - -/* Red */ -.ui.grid > .red.row, -.ui.grid > .red.column, -.ui.grid > .row > .red.column { - background-color: @red !important; - color: @white; -} -/* Orange */ -.ui.grid > .orange.row, -.ui.grid > .orange.column, -.ui.grid > .row > .orange.column { - background-color: @orange !important; - color: @white; -} -/* Yellow */ -.ui.grid > .yellow.row, -.ui.grid > .yellow.column, -.ui.grid > .row > .yellow.column { - background-color: @yellow !important; - color: @white; -} -/* Olive */ -.ui.grid > .olive.row, -.ui.grid > .olive.column, -.ui.grid > .row > .olive.column { - background-color: @olive !important; - color: @white; -} -/* Green */ -.ui.grid > .green.row, -.ui.grid > .green.column, -.ui.grid > .row > .green.column { - background-color: @green !important; - color: @white; -} -/* Teal */ -.ui.grid > .teal.row, -.ui.grid > .teal.column, -.ui.grid > .row > .teal.column { - background-color: @teal !important; - color: @white; -} -/* Blue */ -.ui.grid > .blue.row, -.ui.grid > .blue.column, -.ui.grid > .row > .blue.column { - background-color: @blue !important; - color: @white; -} -/* Violet */ -.ui.grid > .violet.row, -.ui.grid > .violet.column, -.ui.grid > .row > .violet.column { - background-color: @violet !important; - color: @white; -} -/* Purple */ -.ui.grid > .purple.row, -.ui.grid > .purple.column, -.ui.grid > .row > .purple.column { - background-color: @purple !important; - color: @white; -} -/* Pink */ -.ui.grid > .pink.row, -.ui.grid > .pink.column, -.ui.grid > .row > .pink.column { - background-color: @pink !important; - color: @white; -} -/* Brown */ -.ui.grid > .brown.row, -.ui.grid > .brown.column, -.ui.grid > .row > .brown.column { - background-color: @brown !important; - color: @white; -} -/* Grey */ -.ui.grid > .grey.row, -.ui.grid > .grey.column, -.ui.grid > .row > .grey.column { - background-color: @grey !important; - color: @white; -} -/* Black */ -.ui.grid > .black.row, -.ui.grid > .black.column, -.ui.grid > .row > .black.column { - background-color: @black !important; - color: @white; -} - - -/*---------------------- - Equal Width ------------------------*/ - -.ui[class*="equal width"].grid > .column:not(.row), -.ui[class*="equal width"].grid > .row > .column, -.ui.grid > [class*="equal width"].row > .column { - display: inline-block; - flex-grow: 1; -} -.ui[class*="equal width"].grid > .wide.column, -.ui[class*="equal width"].grid > .row > .wide.column, -.ui.grid > [class*="equal width"].row > .wide.column { - flex-grow: 0; -} - - -/*---------------------- - Reverse ------------------------*/ - - -/* Mobile */ -@media only screen and (max-width: @largestMobileScreen) { - .ui[class*="mobile reversed"].grid, - .ui[class*="mobile reversed"].grid > .row, - .ui.grid > [class*="mobile reversed"].row { - flex-direction: row-reverse; - } - .ui[class*="mobile vertically reversed"].grid, - .ui.stackable[class*="mobile reversed"] { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: @dividedBorder; - } - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before { - box-shadow: @verticallyDividedBorder; - } - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - /* Celled Reversed */ - .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child { - box-shadow: @celledColumnDivider; - } - .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - -/* Tablet */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui[class*="tablet reversed"].grid, - .ui[class*="tablet reversed"].grid > .row, - .ui.grid > [class*="tablet reversed"].row { - flex-direction: row-reverse; - } - .ui[class*="tablet vertically reversed"].grid { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: @dividedBorder; - } - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before { - box-shadow: @verticallyDividedBorder; - } - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - /* Celled Reversed */ - .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child { - box-shadow: @celledColumnDivider; - } - .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - -/* Computer */ -@media only screen and (min-width: @computerBreakpoint) { - .ui[class*="computer reversed"].grid, - .ui[class*="computer reversed"].grid > .row, - .ui.grid > [class*="computer reversed"].row { - flex-direction: row-reverse; - } - .ui[class*="computer vertically reversed"].grid { - flex-direction: column-reverse; - } - - /* Divided Reversed */ - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - box-shadow: @dividedBorder; - } - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - box-shadow: none; - } - /* Vertically Divided Reversed */ - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before { - box-shadow: @verticallyDividedBorder; - } - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before { - box-shadow: none; - } - /* Celled Reversed */ - .ui[class*="computer reversed"].celled.grid > .row > .column:first-child { - box-shadow: @celledColumnDivider; - } - .ui[class*="computer reversed"].celled.grid > .row > .column:last-child { - box-shadow: none; - } -} - - -/*------------------- - Doubling ---------------------*/ - -/* Tablet Only */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui.doubling.grid { - width: auto; - } - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - display: inline-block !important; - padding-top: (@rowSpacing / 2) !important; - padding-bottom: (@rowSpacing / 2) !important; - box-shadow: none !important; - margin: 0em; - } - .ui[class*="two column"].doubling.grid > .row > .column, - .ui[class*="two column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling.row.row > .column { - width: @oneColumn !important; - } - .ui[class*="three column"].doubling.grid > .row > .column, - .ui[class*="three column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling.row.row > .column { - width: @twoColumn !important; - } - .ui[class*="four column"].doubling.grid > .row > .column, - .ui[class*="four column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling.row.row > .column { - width: @twoColumn !important; - } - .ui[class*="five column"].doubling.grid > .row > .column, - .ui[class*="five column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling.row.row > .column { - width: @threeColumn !important; - } - .ui[class*="six column"].doubling.grid > .row > .column, - .ui[class*="six column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling.row.row > .column { - width: @threeColumn !important; - } - .ui[class*="seven column"].doubling.grid > .row > .column, - .ui[class*="seven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling.row.row > .column { - width: @threeColumn !important; - } - .ui[class*="eight column"].doubling.grid > .row > .column, - .ui[class*="eight column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling.row.row > .column { - width: @fourColumn !important; - } - .ui[class*="nine column"].doubling.grid > .row > .column, - .ui[class*="nine column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling.row.row > .column { - width: @fourColumn !important; - } - .ui[class*="ten column"].doubling.grid > .row > .column, - .ui[class*="ten column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling.row.row > .column { - width: @fiveColumn !important; - } - .ui[class*="eleven column"].doubling.grid > .row > .column, - .ui[class*="eleven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling.row.row > .column { - width: @fiveColumn !important; - } - .ui[class*="twelve column"].doubling.grid > .row > .column, - .ui[class*="twelve column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling.row.row > .column { - width: @sixColumn !important; - } - .ui[class*="thirteen column"].doubling.grid > .row > .column, - .ui[class*="thirteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling.row.row > .column { - width: @sixColumn !important; - } - .ui[class*="fourteen column"].doubling.grid > .row > .column, - .ui[class*="fourteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling.row.row > .column { - width: @sevenColumn !important; - } - .ui[class*="fifteen column"].doubling.grid > .row > .column, - .ui[class*="fifteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling.row.row > .column { - width: @sevenColumn !important; - } - .ui[class*="sixteen column"].doubling.grid > .row > .column, - .ui[class*="sixteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling.row.row > .column { - width: @eightColumn !important; - } -} - -/* Mobile Only */ -@media only screen and (max-width: @largestMobileScreen) { - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - padding-top: (@rowSpacing / 2) !important; - padding-bottom: (@rowSpacing / 2) !important; - margin: 0em !important; - box-shadow: none !important; - } - .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column { - width: @oneColumn !important; - } - .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column { - width: @twoColumn !important; - } - .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column { - width: @threeColumn !important; - } - .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column { - width: @threeColumn !important; - } - .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column { - width: @threeColumn !important; - } - .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column { - width: @threeColumn !important; - } - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column { - width: @threeColumn !important; - } - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column { - width: @fourColumn !important; - } - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column { - width: @fourColumn !important; - } - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column { - width: @fourColumn !important; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.stackable.grid { - width: auto; - margin-left: 0em !important; - margin-right: 0em !important; - } - .ui.stackable.grid > .row > .wide.column, - .ui.stackable.grid > .wide.column, - .ui.stackable.grid > .column.grid > .column, - .ui.stackable.grid > .column.row > .column, - .ui.stackable.grid > .row > .column, - .ui.stackable.grid > .column:not(.row), - .ui.grid > .stackable.stackable.row > .column { - width: 100% !important; - margin: 0em 0em !important; - box-shadow: none !important; - padding: (@stackableRowSpacing / 2) (@stackableGutter / 2) !important; - } - .ui.stackable.grid:not(.vertically) > .row { - margin: 0em; - padding: 0em; - } - - /* Coupling */ - .ui.container > .ui.stackable.grid > .column, - .ui.container > .ui.stackable.grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } - - /* Don't pad inside segment or nested grid */ - .ui.grid .ui.stackable.grid, - .ui.segment:not(.vertical) .ui.stackable.page.grid { - margin-left: -(@stackableGutter / 2) !important; - margin-right: -(@stackableGutter / 2) !important; - } - - /* Divided Stackable */ - .ui.stackable.divided.grid > .row:first-child > .column:first-child, - .ui.stackable.celled.grid > .row:first-child > .column:first-child, - .ui.stackable.divided.grid > .column:not(.row):first-child, - .ui.stackable.celled.grid > .column:not(.row):first-child { - border-top: none !important; - } - .ui.inverted.stackable.celled.grid > .column:not(.row), - .ui.inverted.stackable.divided.grid > .column:not(.row), - .ui.inverted.stackable.celled.grid > .row > .column, - .ui.inverted.stackable.divided.grid > .row > .column { - border-top: @stackableInvertedMobileBorder; - } - - .ui.stackable.celled.grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.celled.grid > .row > .column, - .ui.stackable.divided:not(.vertically).grid > .row > .column { - border-top: @stackableMobileBorder; - box-shadow: none !important; - padding-top: @stackableRowSpacing !important; - padding-bottom: @stackableRowSpacing !important; - } - - .ui.stackable.celled.grid > .row { - box-shadow: none !important; - } - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } - -} - -/*---------------------- - Only (Device) ------------------------*/ - - -/* These include arbitrary class repetitions for forced specificity */ - -/* Mobile Only Hide */ -@media only screen and (max-width: @largestMobileScreen) { - .ui[class*="tablet only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) { - display: none !important; - } - .ui[class*="computer only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) { - display: none !important; - } - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} -/* Tablet Only Hide */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui[class*="mobile only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) { - display: none !important; - } - .ui[class*="computer only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) { - display: none !important; - } - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Computer Only Hide */ -@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Large Screen Only Hide */ -@media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Widescreen Only Hide */ -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } -} - - -.loadUIOverrides(); diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less deleted file mode 100644 index 5e48306..0000000 --- a/src/definitions/collections/menu.less +++ /dev/null @@ -1,1981 +0,0 @@ -/* - * # Semantic - Menu - * http://github.com/semantic-org/semantic-ui/ - * - * - * Copyright 2015 Contributor - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'menu'; - -@import (multiple) '../../theme.config'; - -/******************************* - Standard -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.menu { - display: flex; - margin: @margin; - font-family: @fontFamily; - background: @background; - font-weight: @fontWeight; - border: @border; - box-shadow: @boxShadow; - border-radius: @borderRadius; - min-height: @minHeight; -} - -.ui.menu:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.menu:first-child { - margin-top: 0rem; -} -.ui.menu:last-child { - margin-bottom: 0rem; -} - - -/*-------------- - Sub-Menu ----------------*/ - -.ui.menu .menu { - margin: 0em; -} - -.ui.menu:not(.vertical) > .menu { - display: flex; -} - -/*-------------- - Item ----------------*/ - -.ui.menu:not(.vertical) .item { - display: flex; - align-items: center; -} - -.ui.menu .item { - position: relative; - vertical-align: middle; - line-height: 1; - text-decoration: none; - -webkit-tap-highlight-color: transparent; - flex: 0 0 auto; - user-select: none; - - background: @itemBackground; - padding: @itemVerticalPadding @itemHorizontalPadding; - text-transform: @itemTextTransform; - color: @itemTextColor; - font-weight: @itemFontWeight; - transition: @itemTransition; -} - -.ui.menu > .item:first-child { - border-radius: @borderRadius 0px 0px @borderRadius; -} - -/* Border */ -.ui.menu .item:before { - position: absolute; - content: ''; - top: 0%; - right: 0px; - height: 100%; - - width: @dividerSize; - background: @dividerBackground; -} - -/*-------------- - Text Content ----------------*/ - -.ui.menu .text.item > *, -.ui.menu .item > a:not(.ui), -.ui.menu .item > p:only-child { - user-select: text; - line-height: @textLineHeight; -} -.ui.menu .item > p:first-child { - margin-top: 0; -} -.ui.menu .item > p:last-child { - margin-bottom: 0; -} - -/*-------------- - Icons ----------------*/ - -.ui.menu .item > i.icon { - opacity: @iconOpacity; - float: @iconFloat; - margin: @iconMargin; -} - -/*-------------- - Button ----------------*/ - -.ui.menu:not(.vertical) .item > .button { - position: relative; - top: @buttonOffset; - margin: @buttonMargin; - padding-bottom: @buttonVerticalPadding; - padding-top: @buttonVerticalPadding; - font-size: @buttonSize; -} - -/*---------------- - Grid / Container ------------------*/ - -.ui.menu > .grid, -.ui.menu > .container { - display: flex; - align-items: inherit; - flex-direction: inherit; -} - -/*-------------- - Inputs ----------------*/ - -.ui.menu .item > .input { - width: 100%; -} -.ui.menu:not(.vertical) .item > .input { - position: relative; - top: @inputOffset; - margin: @inputVerticalMargin 0em; -} -.ui.menu .item > .input input { - font-size: @inputSize; - padding-top: @inputVerticalPadding; - padding-bottom: @inputVerticalPadding; -} - - -/*-------------- - Header ----------------*/ - -.ui.menu .header.item, -.ui.vertical.menu .header.item { - margin: 0em; - background: @headerBackground; - text-transform: @headerTextTransform; - font-weight: @headerWeight; -} - -.ui.vertical.menu .item > .header:not(.ui) { - margin: @verticalHeaderMargin; - font-size: @verticalHeaderFontSize; - font-weight: @verticalHeaderFontWeight; -} - -/*-------------- - Dropdowns ----------------*/ - - -/* Dropdown Icon */ -.ui.menu .item > i.dropdown.icon { - padding: 0em; - float: @dropdownIconFloat; - margin: 0em 0em 0em @dropdownIconDistance; -} - -/* Menu */ -.ui.menu .dropdown.item .menu { - min-width: calc(100% - 1px); - border-radius: 0em 0em @dropdownMenuBorderRadius @dropdownMenuBorderRadius; - background: @dropdownBackground; - margin: @dropdownMenuDistance 0px 0px; - box-shadow: @dropdownMenuBoxShadow; - flex-direction: column !important; -} - - -/* Menu Items */ -.ui.menu .ui.dropdown .menu > .item { - margin: 0; - text-align: left; - font-size: @dropdownItemFontSize !important; - padding: @dropdownItemPadding !important; - background: @dropdownItemBackground !important; - color: @dropdownItemColor !important; - text-transform: @dropdownItemTextTransform !important; - font-weight: @dropdownItemFontWeight !important; - box-shadow: @dropdownItemBoxShadow !important; - transition: @dropdownItemTransition !important; -} -.ui.menu .ui.dropdown .menu > .item:hover { - background: @dropdownHoveredItemBackground !important; - color: @dropdownHoveredItemColor !important; -} -.ui.menu .ui.dropdown .menu > .selected.item { - background: @dropdownSelectedItemBackground !important; - color: @dropdownSelectedItemColor !important; -} -.ui.menu .ui.dropdown .menu > .active.item { - background: @dropdownActiveItemBackground !important; - font-weight: @dropdownActiveItemFontWeight !important; - color: @dropdownActiveItemColor !important; -} - -.ui.menu .ui.dropdown.item .menu .item:not(.filtered) { - display: block; -} -.ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) { - display: inline-block; - font-size: @dropdownItemIconFontSize !important; - float: @dropdownItemIconFloat; - margin: @dropdownItemIconMargin !important; -} - - -/* Secondary */ -.ui.secondary.menu .dropdown.item > .menu, -.ui.text.menu .dropdown.item > .menu { - border-radius: @dropdownMenuBorderRadius; - margin-top: @secondaryDropdownMenuDistance; -} - -/* Pointing */ -.ui.menu .pointing.dropdown.item .menu { - margin-top: @pointingDropdownMenuDistance; -} - -/* Inverted */ -.ui.inverted.menu .search.dropdown.item > .search, -.ui.inverted.menu .search.dropdown.item > .text { - color: @invertedSelectionDropdownColor; -} - -/* Vertical */ -.ui.vertical.menu .dropdown.item > .icon { - float: right; - content: "\f0da"; - margin-left: 1em; -} -.ui.vertical.menu .dropdown.item .menu { - left: 100%; - min-width: 0; - margin: 0em 0em 0em @dropdownMenuDistance; - box-shadow: @dropdownVerticalMenuBoxShadow; - border-radius: 0em @dropdownMenuBorderRadius @dropdownMenuBorderRadius @dropdownMenuBorderRadius; -} -.ui.vertical.menu .dropdown.item.upward .menu { - bottom: 0; -} -.ui.vertical.menu .dropdown.item:not(.upward) .menu { - top: 0; -} -.ui.vertical.menu .active.dropdown.item { - border-top-right-radius: 0em; - border-bottom-right-radius: 0em; -} -.ui.vertical.menu .dropdown.active.item { - box-shadow: none; -} - -/* Evenly Divided */ -.ui.item.menu .dropdown .menu .item { - width: 100%; -} - -/*-------------- - Labels ----------------*/ - -.ui.menu .item > .label { - background: @labelBackground; - color: @labelTextColor; - margin-left: @labelTextMargin; - padding: @labelVerticalPadding @labelHorizontalPadding; -} -.ui.vertical.menu .item > .label { - background: @labelBackground; - color: @labelTextColor; - margin-top: @labelOffset; - margin-bottom: @labelOffset; - padding: @labelVerticalPadding @labelHorizontalPadding; -} -.ui.menu .item > .floating.label { - padding: @labelVerticalPadding @labelHorizontalPadding; -} - -/*-------------- - Images ----------------*/ - -.ui.menu .item > img:not(.ui) { - display: inline-block; - vertical-align: middle; - margin: @imageMargin; - width: @imageWidth; -} -.ui.vertical.menu .item > img:not(.ui):only-child { - display: block; - max-width: 100%; - width: @verticalImageWidth; -} - -/******************************* - Coupling -*******************************/ - -/*-------------- - List ----------------*/ - -/* Menu divider shouldnt apply */ -.ui.menu .list .item:before { - background: none !important; -} - -/*-------------- - Sidebar ----------------*/ - -/* Show vertical dividers below last */ - -.ui.vertical.sidebar.menu > .item:first-child:before { - display: block !important; -} -.ui.vertical.sidebar.menu > .item::before { - top: auto; - bottom: 0px; -} - -/*-------------- - Container ----------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.menu > .ui.container { - width: 100% !important; - margin-left: 0em !important; - margin-right: 0em !important; - } -} -@media only screen and (min-width: @tabletBreakpoint) { - .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child { - border-left: @dividerSize solid @dividerBackground; - } -} - - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - - -.ui.link.menu .item:hover, -.ui.menu .dropdown.item:hover, -.ui.menu .link.item:hover, -.ui.menu a.item:hover { - cursor: pointer; - background: @hoverItemBackground; - color: @hoverItemTextColor; -} - - -/*-------------- - Pressed ----------------*/ - -.ui.link.menu .item:active, -.ui.menu .link.item:active, -.ui.menu a.item:active { - background: @pressedItemBackground; - color: @pressedItemTextColor; -} - - -/*-------------- - Active ----------------*/ - -.ui.menu .active.item { - background: @activeItemBackground; - color: @activeItemTextColor; - font-weight: @activeItemFontWeight; - box-shadow: @activeItemBoxShadow; -} -.ui.menu .active.item > i.icon { - opacity: @activeIconOpacity; -} - -/*-------------- - Active Hover ----------------*/ - -.ui.menu .active.item:hover, -.ui.vertical.menu .active.item:hover { - background-color: @activeHoverItemBackground; - color: @activeHoverItemColor; -} - - -/*-------------- - Disabled ----------------*/ - -.ui.menu .item.disabled, -.ui.menu .item.disabled:hover { - cursor: default !important; - background-color: transparent !important; - color: @disabledTextColor !important; -} - - -/******************************* - Types -*******************************/ - -/*------------------ -Floated Menu / Item --------------------*/ - -/* Left Floated */ -.ui.menu:not(.vertical) .left.item, -.ui.menu:not(.vertical) :not(.dropdown) > .left.menu { - display: flex; - margin-right: auto !important; -} -/* Right Floated */ -.ui.menu:not(.vertical) .right.item, -.ui.menu:not(.vertical) .right.menu { - display: flex; - margin-left: auto !important; -} - -/* Swapped Borders */ -.ui.menu .right.item::before, -.ui.menu .right.menu > .item::before { - right: auto; - left: 0; -} - - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.menu { - display: block; - flex-direction: column; - background: @verticalBackground; - box-shadow: @verticalBoxShadow; -} - -/*--- Item ---*/ -.ui.vertical.menu .item { - display: block; - background: @verticalItemBackground; - border-top: none; - border-right: none; -} -.ui.vertical.menu > .item:first-child { - border-radius: @borderRadius @borderRadius 0px 0px; -} -.ui.vertical.menu > .item:last-child { - border-radius: 0px 0px @borderRadius @borderRadius; -} - -/*--- Label ---*/ -.ui.vertical.menu .item > .label { - float: right; - text-align: center; -} - -/*--- Icon ---*/ -.ui.vertical.menu .item > i.icon { - width: @iconWidth; - float: @verticalIconFloat; - margin: @verticalIconMargin; -} -.ui.vertical.menu .item > .label + i.icon { - float: @labelAndIconFloat; - margin: @labelAndIconMargin; -} - - -/*--- Border ---*/ -.ui.vertical.menu .item:before { - position: absolute; - content: ''; - top: 0%; - left: 0px; - width: 100%; - height: @dividerSize; - background: @verticalDividerBackground; -} - -.ui.vertical.menu .item:first-child:before { - display: none !important; -} - - -/*--- Sub Menu ---*/ -.ui.vertical.menu .item > .menu { - margin: @subMenuMargin; -} -.ui.vertical.menu .menu .item { - background: none; - padding: @subMenuVerticalPadding @subMenuHorizontalPadding; - font-size: @subMenuFontSize; - color: @subMenuTextColor; -} -.ui.vertical.menu .item .menu a.item:hover, -.ui.vertical.menu .item .menu .link.item:hover { - color: @darkTextColor; -} -.ui.vertical.menu .menu .item:before { - display: none; -} - -/* Vertical Active */ -.ui.vertical.menu .active.item { - background: @activeItemBackground; - border-radius: 0em; - box-shadow: @verticalActiveBoxShadow; -} -.ui.vertical.menu > .active.item:first-child { - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui.vertical.menu > .active.item:last-child { - border-radius: 0em 0em @borderRadius @borderRadius; -} -.ui.vertical.menu > .active.item:only-child { - border-radius: @borderRadius; -} -.ui.vertical.menu .active.item .menu .active.item { - border-left: none; -} -.ui.vertical.menu .item .menu .active.item { - background-color: @subMenuActiveBackground; - font-weight: @subMenuActiveFontWeight; - color: @subMenuActiveTextColor; -} - - -/*-------------- - Tabular ----------------*/ - -.ui.tabular.menu { - border-radius: 0em; - box-shadow: none !important; - border: none; - background: @tabularBackground; - border-bottom: @tabularBorderWidth solid @tabularBorderColor; -} -.ui.tabular.fluid.menu { - width: @tabularFluidWidth !important; -} -.ui.tabular.menu .item { - background: transparent; - border-bottom: none; - - border-left: @tabularBorderWidth solid transparent; - border-right: @tabularBorderWidth solid transparent; - border-top: @tabularOppositeBorderWidth solid transparent; - padding: @tabularVerticalPadding @tabularHorizontalPadding; - color: @tabularTextColor; -} -.ui.tabular.menu .item:before { - display: none; -} - -/* Hover */ -.ui.tabular.menu .item:hover { - background-color: transparent; - color: @tabularHoveredTextColor; -} - -/* Active */ -.ui.tabular.menu .active.item { - background: @tabularActiveBackground; - color: @tabularActiveColor; - border-top-width: @tabularBorderWidth; - border-color: @tabularBorderColor; - font-weight: @tabularActiveWeight; - margin-bottom: -@tabularBorderWidth; - box-shadow: @tabularActiveBoxShadow; - border-radius: @tabularBorderRadius @tabularBorderRadius 0px 0px !important; -} - -/* Coupling with segment for attachment */ -.ui.tabular.menu + .attached:not(.top).segment, -.ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment { - border-top: none; - margin-left: 0px; - margin-top: 0px; - margin-right: 0px; - width: 100%; -} -.top.attached.segment + .ui.bottom.tabular.menu { - position: relative; - width: @tabularFluidWidth; - left: -@tabularFluidOffset; -} - -/* Bottom Vertical Tabular */ -.ui.bottom.tabular.menu { - background: @tabularBackground; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-top: @tabularBorderWidth solid @tabularBorderColor; -} -.ui.bottom.tabular.menu .item { - background: none; - border-left: @tabularBorderWidth solid transparent; - border-right: @tabularBorderWidth solid transparent; - border-bottom: @tabularBorderWidth solid transparent; - border-top: none; -} -.ui.bottom.tabular.menu .active.item { - background: @tabularActiveBackground; - color: @tabularActiveColor; - border-color: @tabularBorderColor; - margin: -@tabularBorderWidth 0px 0px 0px; - border-radius: 0px 0px @tabularBorderRadius @tabularBorderRadius !important; -} - -/* Vertical Tabular (Left) */ -.ui.vertical.tabular.menu { - background: @tabularVerticalBackground; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-right: @tabularBorderWidth solid @tabularBorderColor; -} -.ui.vertical.tabular.menu .item { - background: none; - border-left: @tabularBorderWidth solid transparent; - border-bottom: @tabularBorderWidth solid transparent; - border-top: @tabularBorderWidth solid transparent; - border-right: none; -} -.ui.vertical.tabular.menu .active.item { - background: @tabularActiveBackground; - color: @tabularActiveColor; - border-color: @tabularBorderColor; - margin: 0px -@tabularBorderWidth 0px 0px; - border-radius: @tabularBorderRadius 0px 0px @tabularBorderRadius !important; -} - -/* Vertical Right Tabular */ -.ui.vertical.right.tabular.menu { - background: @tabularVerticalBackground; - border-radius: 0em; - box-shadow: none !important; - border-bottom: none; - border-right: none; - border-left: @tabularBorderWidth solid @tabularBorderColor; -} -.ui.vertical.right.tabular.menu .item { - background: none; - border-right: @tabularBorderWidth solid transparent; - border-bottom: @tabularBorderWidth solid transparent; - border-top: @tabularBorderWidth solid transparent; - border-left: none; -} -.ui.vertical.right.tabular.menu .active.item { - background: @tabularActiveBackground; - color: @tabularActiveColor; - border-color: @tabularBorderColor; - margin: 0px 0px 0px -@tabularBorderWidth; - border-radius: 0px @tabularBorderRadius @tabularBorderRadius 0px !important; -} - -/* Dropdown */ -.ui.tabular.menu .active.dropdown.item { - margin-bottom: 0px; - border-left: @tabularBorderWidth solid transparent; - border-right: @tabularBorderWidth solid transparent; - border-top: @tabularOppositeBorderWidth solid transparent; - border-bottom: none; -} - - - -/*-------------- - Pagination ----------------*/ - -.ui.pagination.menu { - margin: 0em; - display: inline-flex; - vertical-align: middle; -} -.ui.pagination.menu .item:last-child { - border-radius: 0em @borderRadius @borderRadius 0em; -} -.ui.compact.menu .item:last-child { - border-radius: 0em @borderRadius @borderRadius 0em; -} -.ui.pagination.menu .item:last-child:before { - display: none; -} - -.ui.pagination.menu .item { - min-width: @paginationMinWidth; - text-align: center; -} -.ui.pagination.menu .icon.item i.icon { - vertical-align: top; -} - -/* Active */ -.ui.pagination.menu .active.item { - border-top: none; - padding-top: @itemVerticalPadding; - background-color: @paginationActiveBackground; - color: @paginationActiveTextColor; - box-shadow: none; -} - -/*-------------- - Secondary ----------------*/ - -.ui.secondary.menu { - background: @secondaryBackground; - margin-left: -@secondaryItemSpacing; - margin-right: -@secondaryItemSpacing; - border-radius: 0em; - border: none; - box-shadow: none; -} - -/* Item */ -.ui.secondary.menu .item { - align-self: center; - box-shadow: none; - border: none; - padding: @secondaryItemPadding; - margin: @secondaryItemMargin; - background: @secondaryItemBackground; - transition: @secondaryItemTransition; - border-radius: @secondaryItemBorderRadius; -} - -/* No Divider */ -.ui.secondary.menu .item:before { - display: none !important; -} - -/* Header */ -.ui.secondary.menu .header.item { - border-radius: 0em; - border-right: @secondaryHeaderBorder; - background: @secondaryHeaderBackground; -} - -/* Image */ -.ui.secondary.menu .item > img:not(.ui) { - margin: 0em; -} - -/* Hover */ -.ui.secondary.menu .dropdown.item:hover, -.ui.secondary.menu .link.item:hover, -.ui.secondary.menu a.item:hover { - background: @secondaryHoverItemBackground; - color: @secondaryHoverItemColor; -} - -/* Active */ -.ui.secondary.menu .active.item { - box-shadow: none; - background: @secondaryActiveItemBackground; - color: @secondaryActiveItemColor; - border-radius: @secondaryItemBorderRadius; -} - -/* Active Hover */ -.ui.secondary.menu .active.item:hover { - box-shadow: none; - background: @secondaryActiveHoverItemBackground; - color: @secondaryActiveHoverItemColor; -} - - -/* Inverted */ -.ui.secondary.inverted.menu .link.item, -.ui.secondary.inverted.menu a.item { - color: @secondaryInvertedColor !important; -} -.ui.secondary.inverted.menu .dropdown.item:hover, -.ui.secondary.inverted.menu .link.item:hover, -.ui.secondary.inverted.menu a.item:hover { - background: @secondaryInvertedHoverBackground; - color: @secondaryInvertedHoverColor !important; -} -.ui.secondary.inverted.menu .active.item { - background: @secondaryInvertedActiveBackground; - color: @secondaryInvertedActiveColor !important; -} - -/* Fix item margins */ -.ui.secondary.item.menu { - margin-left: 0em; - margin-right: 0em; -} -.ui.secondary.item.menu .item:last-child { - margin-right: 0em; -} -.ui.secondary.attached.menu { - box-shadow: none; -} - -/* Sub Menu */ -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu { - margin: @secondaryMenuSubMenuMargin; -} -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item { - margin: @secondaryMenuSubMenuItemMargin; - padding: @secondaryMenuSubMenuItemPadding; -} - - -/*--------------------- - Secondary Vertical ------------------------*/ - -.ui.secondary.vertical.menu > .item { - border: none; - margin: @secondaryVerticalItemMargin; - border-radius: @secondaryVerticalItemBorderRadius !important; -} -.ui.secondary.vertical.menu > .header.item { - border-radius: 0em; -} - -/* Sub Menu */ -.ui.vertical.secondary.menu .item > .menu .item { - background-color: transparent; -} - -/* Inverted */ -.ui.secondary.inverted.menu { - background-color: transparent; -} - -/*--------------------- - Secondary Pointing ------------------------*/ - -.ui.secondary.pointing.menu { - margin-left: 0em; - margin-right: 0em; - border-bottom: @secondaryPointingBorderWidth solid @secondaryPointingBorderColor; -} - -.ui.secondary.pointing.menu .item { - border-bottom-color: transparent; - border-bottom-style: solid; - border-radius: 0em; - align-self: flex-end; - - margin: 0em 0em -@secondaryPointingBorderWidth; - padding: @secondaryPointingItemVerticalPadding @secondaryPointingItemHorizontalPadding; - border-bottom-width: @secondaryPointingBorderWidth; - transition: @secondaryItemTransition; -} - -/* Item Types */ -.ui.secondary.pointing.menu .header.item { - color: @secondaryPointingHeaderColor !important; -} -.ui.secondary.pointing.menu .text.item { - box-shadow: none !important; -} -.ui.secondary.pointing.menu .item:after { - display: none; -} - -/* Hover */ -.ui.secondary.pointing.menu .dropdown.item:hover, -.ui.secondary.pointing.menu .link.item:hover, -.ui.secondary.pointing.menu a.item:hover { - background-color: transparent; - color: @secondaryPointingHoverTextColor; -} - -/* Pressed */ -.ui.secondary.pointing.menu .dropdown.item:active, -.ui.secondary.pointing.menu .link.item:active, -.ui.secondary.pointing.menu a.item:active { - background-color: transparent; - border-color: @secondaryPointingBorderColor; -} - -/* Active */ -.ui.secondary.pointing.menu .active.item { - background-color: transparent; - box-shadow: none; - border-color: @secondaryPointingActiveBorderColor; - font-weight: @secondaryPointingActiveFontWeight; - color: @secondaryPointingActiveTextColor; -} - -/* Active Hover */ -.ui.secondary.pointing.menu .active.item:hover { - border-color: @secondaryPointingActiveHoverBorderColor; - color: @secondaryPointingActiveHoverTextColor; -} - -/* Active Dropdown */ -.ui.secondary.pointing.menu .active.dropdown.item { - border-color: @secondaryPointingActiveDropdownBorderColor; -} - -/* Vertical Pointing */ -.ui.secondary.vertical.pointing.menu { - border-bottom-width: 0px; - border-right-width: @secondaryPointingBorderWidth; - border-right-style: solid; - border-right-color: @secondaryPointingBorderColor; -} -.ui.secondary.vertical.pointing.menu .item { - border-bottom: none; - border-right-style: solid; - border-right-color: transparent; - border-radius: 0em !important; - margin: @secondaryVerticalPointingItemMargin; - border-right-width: @secondaryPointingBorderWidth; -} - -/* Vertical Active */ -.ui.secondary.vertical.pointing.menu .active.item { - border-color: @secondaryPointingActiveBorderColor; -} - -/* Inverted */ -.ui.secondary.inverted.pointing.menu { - border-color: @secondaryPointingInvertedBorderColor; -} - -.ui.secondary.inverted.pointing.menu { - border-width: @secondaryPointingBorderWidth; - border-color: @secondaryPointingBorderColor; -} -.ui.secondary.inverted.pointing.menu .item { - color: @secondaryPointingInvertedItemTextColor; -} -.ui.secondary.inverted.pointing.menu .header.item { - color: @secondaryPointingInvertedItemHeaderColor !important; -} - -/* Hover */ -.ui.secondary.inverted.pointing.menu .link.item:hover, -.ui.secondary.inverted.pointing.menu a.item:hover { - color: @secondaryPointingInvertedItemHoverTextColor; -} - - -/* Active */ -.ui.secondary.inverted.pointing.menu .active.item { - border-color: @secondaryPointingInvertedActiveBorderColor; - color: @secondaryPointingInvertedActiveColor; -} - -/*-------------- - Text Menu ----------------*/ - -.ui.text.menu { - background: none transparent; - border-radius: 0px; - box-shadow: none; - border: none; - - margin: @textMenuMargin; -} -.ui.text.menu .item { - border-radius: 0px; - box-shadow: none; - align-self: center; - margin: @textMenuItemMargin; - padding: @textMenuItemPadding; - font-weight: @textMenuItemFontWeight; - color: @textMenuItemColor; - transition: @textMenuItemTransition; -} - -/* Border */ -.ui.text.menu .item:before, -.ui.text.menu .menu .item:before { - display: none !important; -} - -/* Header */ -.ui.text.menu .header.item { - background-color: transparent; - opacity: 1; - color: @textMenuHeaderColor; - font-size: @textMenuHeaderSize; - text-transform: @textMenuHeaderTextTransform; - font-weight: @textMenuHeaderFontWeight; -} - -/* Image */ -.ui.text.menu .item > img:not(.ui) { - margin: 0em; -} - -/*--- fluid text ---*/ -.ui.text.item.menu .item { - margin: 0em; -} - -/*--- vertical text ---*/ -.ui.vertical.text.menu { - margin: @textVerticalMenuMargin; -} -.ui.vertical.text.menu:first-child { - margin-top: 0rem; -} -.ui.vertical.text.menu:last-child { - margin-bottom: 0rem; -} -.ui.vertical.text.menu .item { - margin: @textVerticalMenuItemMargin; - padding-left: 0em; - padding-right: 0em; -} -.ui.vertical.text.menu .item > i.icon { - float: @textVerticalMenuIconFloat; - margin: @iconMargin; -} -.ui.vertical.text.menu .header.item { - margin: @textVerticalMenuHeaderMargin; -} - -/* Vertical Sub Menu */ -.ui.vertical.text.menu .item:not(.dropdown) > .menu { - margin: @textMenuSubMenuMargin; -} -.ui.vertical.text.menu .item:not(.dropdown) > .menu > .item { - margin: @textMenuSubMenuItemMargin; - padding: @textMenuSubMenuItemPadding; -} - -/*--- hover ---*/ -.ui.text.menu .item:hover { - opacity: 1; - background-color: transparent; -} - -/*--- active ---*/ -.ui.text.menu .active.item { - background-color: transparent; - border: none; - box-shadow: none; - font-weight: @textMenuActiveItemFontWeight; - color: @textMenuActiveItemColor; -} - -/*--- active hover ---*/ -.ui.text.menu .active.item:hover { - background-color: transparent; -} - -/* Disable Bariations */ -.ui.text.pointing.menu .active.item:after { - box-shadow: none; -} -.ui.text.attached.menu { - box-shadow: none; -} - -/* Inverted */ -.ui.inverted.text.menu, -.ui.inverted.text.menu .item, -.ui.inverted.text.menu .item:hover, -.ui.inverted.text.menu .active.item { - background-color: transparent !important; -} - -/* Fluid */ -.ui.fluid.text.menu { - margin-left: 0em; - margin-right: 0em; -} - -/*-------------- - Icon Only ----------------*/ - -/* Vertical Menu */ -.ui.vertical.icon.menu { - display: inline-block; - width: auto; -} - -/* Item */ -.ui.icon.menu .item { - height: auto; - text-align: @iconMenuTextAlign; - color: @iconMenuItemColor; -} - -/* Icon */ -.ui.icon.menu .item > .icon:not(.dropdown) { - margin: 0; - opacity: 1; -} - -/* Icon Gylph */ -.ui.icon.menu .icon:before { - opacity: 1; -} - -/* (x) Item Icon */ -.ui.menu .icon.item > .icon { - width: auto; - margin: 0em auto; -} - -/* Vertical Icon */ -.ui.vertical.icon.menu .item > .icon:not(.dropdown) { - display: block; - opacity: 1; - margin: 0em auto; - float: none; -} - -/* Inverted */ -.ui.inverted.icon.menu .item { - color: @iconMenuInvertedItemColor; -} - -/*-------------- - Labeled Icon ----------------*/ - -/* Menu */ -.ui.labeled.icon.menu { - text-align: center; -} - -/* Item */ -.ui.labeled.icon.menu .item { - min-width: @labeledIconMinWidth; - flex-direction: column; -} - -/* Icon */ -.ui.labeled.icon.menu .item > .icon:not(.dropdown) { - height: 1em; - display: block; - font-size: @labeledIconSize !important; - margin: 0em auto @labeledIconTextMargin !important; -} - -/* Fluid */ -.ui.fluid.labeled.icon.menu > .item { - min-width: 0em; -} - - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.stackable.menu { - flex-direction: column; - } - .ui.stackable.menu .item { - width: 100% !important; - } - .ui.stackable.menu .item:before { - position: absolute; - content: ''; - top: auto; - bottom: 0px; - left: 0px; - width: 100%; - height: @dividerSize; - background: @verticalDividerBackground; - } - - .ui.stackable.menu .left.menu, - .ui.stackable.menu .left.item { - margin-right: 0 !important; - } - .ui.stackable.menu .right.menu, - .ui.stackable.menu .right.item { - margin-left: 0 !important; - } - - .ui.stackable.menu .right.menu, - .ui.stackable.menu .left.menu { - flex-direction: column; - } -} - -/*-------------- - Colors ----------------*/ - -/*--- Standard Colors ---*/ -.ui.menu .red.active.item, -.ui.red.menu .active.item { - border-color: @red !important; - color: @red !important; -} -.ui.menu .orange.active.item, -.ui.orange.menu .active.item { - border-color: @orange !important; - color: @orange !important; -} -.ui.menu .yellow.active.item, -.ui.yellow.menu .active.item { - border-color: @yellow !important; - color: @yellow !important; -} -.ui.menu .olive.active.item, -.ui.olive.menu .active.item { - border-color: @olive !important; - color: @olive !important; -} -.ui.menu .green.active.item, -.ui.green.menu .active.item { - border-color: @green !important; - color: @green !important; -} -.ui.menu .teal.active.item, -.ui.teal.menu .active.item { - border-color: @teal !important; - color: @teal !important; -} -.ui.menu .blue.active.item, -.ui.blue.menu .active.item { - border-color: @blue !important; - color: @blue !important; -} -.ui.menu .violet.active.item, -.ui.violet.menu .active.item { - border-color: @violet !important; - color: @violet !important; -} -.ui.menu .purple.active.item, -.ui.purple.menu .active.item { - border-color: @purple !important; - color: @purple !important; -} -.ui.menu .pink.active.item, -.ui.pink.menu .active.item { - border-color: @pink !important; - color: @pink !important; -} -.ui.menu .brown.active.item, -.ui.brown.menu .active.item { - border-color: @brown !important; - color: @brown !important; -} -.ui.menu .grey.active.item, -.ui.grey.menu .active.item { - border-color: @grey !important; - color: @grey !important; -} - - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.menu { - border: @invertedBorder; - background: @invertedBackground; - box-shadow: @invertedBoxShadow; -} - -/* Menu Item */ -.ui.inverted.menu .item, -.ui.inverted.menu .item > a:not(.ui) { - background: @invertedItemBackground; - color: @invertedItemTextColor; -} -.ui.inverted.menu .item.menu { - background: @invertedSubMenuBackground; -} - -/*--- Border ---*/ -.ui.inverted.menu .item:before { - background: @invertedDividerBackground; -} -.ui.vertical.inverted.menu .item:before { - background: @invertedVerticalDividerBackground; -} - -/* Sub Menu */ -.ui.vertical.inverted.menu .menu .item, -.ui.vertical.inverted.menu .menu .item a:not(.ui) { - color: @invertedSubMenuColor; -} - -/* Header */ -.ui.inverted.menu .header.item { - margin: 0em; - background: @invertedHeaderBackground; - box-shadow: none; -} - -/* Disabled */ -.ui.inverted.menu .item.disabled, -.ui.inverted.menu .item.disabled:hover { - color: @invertedDisabledTextColor; -} - -/*--- Hover ---*/ -.ui.link.inverted.menu .item:hover, -.ui.inverted.menu .dropdown.item:hover, -.ui.inverted.menu .link.item:hover, -.ui.inverted.menu a.item:hover { - background: @invertedHoverBackground; - color: @invertedHoverColor; -} -.ui.vertical.inverted.menu .item .menu a.item:hover, -.ui.vertical.inverted.menu .item .menu .link.item:hover { - background: @invertedSubMenuBackground; - color: @invertedSubMenuHoverColor; -} - -/*--- Pressed ---*/ -.ui.inverted.menu a.item:active, -.ui.inverted.menu .link.item:active{ - background: @invertedMenuPressedBackground; - color: @invertedMenuPressedColor; -} - -/*--- Active ---*/ -.ui.inverted.menu .active.item { - background: @invertedActiveBackground; - color: @invertedActiveColor !important; -} -.ui.inverted.vertical.menu .item .menu .active.item { - background: @invertedSubMenuActiveBackground; - color: @invertedSubMenuActiveColor; -} -.ui.inverted.pointing.menu .active.item:after { - background: @invertedArrowActiveColor !important; - margin: 0em !important; - box-shadow: none !important; - border: none !important; -} - -/*--- Active Hover ---*/ -.ui.inverted.menu .active.item:hover { - background: @invertedActiveHoverBackground; - color: @invertedActiveHoverColor !important; -} -.ui.inverted.pointing.menu .active.item:hover:after { - background: @invertedArrowActiveHoverColor !important; -} - - -/*-------------- - Floated ----------------*/ - -.ui.floated.menu { - float: left; - margin: 0rem @floatedDistance 0rem 0rem; -} -.ui.floated.menu .item:last-child:before { - display: none; -} - -.ui.right.floated.menu { - float: right; - margin: 0rem 0rem 0rem @floatedDistance; -} - - -/*-------------- - Inverted ----------------*/ - -/* Red */ -.ui.inverted.menu .red.active.item, -.ui.inverted.red.menu { - background-color: @red; -} -.ui.inverted.red.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.red.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Orange */ -.ui.inverted.menu .orange.active.item, -.ui.inverted.orange.menu { - background-color: @orange; -} -.ui.inverted.orange.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.orange.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Yellow */ -.ui.inverted.menu .yellow.active.item, -.ui.inverted.yellow.menu { - background-color: @yellow; -} -.ui.inverted.yellow.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.yellow.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Olive */ -.ui.inverted.menu .olive.active.item, -.ui.inverted.olive.menu { - background-color: @olive; -} -.ui.inverted.olive.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.olive.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Green */ -.ui.inverted.menu .green.active.item, -.ui.inverted.green.menu { - background-color: @green; -} -.ui.inverted.green.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.green.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Teal */ -.ui.inverted.menu .teal.active.item, -.ui.inverted.teal.menu { - background-color: @teal; -} -.ui.inverted.teal.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.teal.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Blue */ -.ui.inverted.menu .blue.active.item, -.ui.inverted.blue.menu { - background-color: @blue; -} -.ui.inverted.blue.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.blue.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Violet */ -.ui.inverted.menu .violet.active.item, -.ui.inverted.violet.menu { - background-color: @violet; -} -.ui.inverted.violet.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.violet.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Purple */ -.ui.inverted.menu .purple.active.item, -.ui.inverted.purple.menu { - background-color: @purple; -} -.ui.inverted.purple.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.purple.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Pink */ -.ui.inverted.menu .pink.active.item, -.ui.inverted.pink.menu { - background-color: @pink; -} -.ui.inverted.pink.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.pink.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Brown */ -.ui.inverted.menu .brown.active.item, -.ui.inverted.brown.menu { - background-color: @brown; -} -.ui.inverted.brown.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.brown.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - -/* Grey */ -.ui.inverted.menu .grey.active.item, -.ui.inverted.grey.menu { - background-color: @grey; -} -.ui.inverted.grey.menu .item:before { - background-color: @invertedColoredDividerBackground; -} -.ui.inverted.grey.menu .active.item { - background-color: @invertedColoredActiveBackground !important; -} - - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.menu .item, -.ui.fitted.menu .item .menu .item, -.ui.menu .fitted.item { - padding: 0em; -} -.ui.horizontally.fitted.menu .item, -.ui.horizontally.fitted.menu .item .menu .item, -.ui.menu .horizontally.fitted.item { - padding-top: @itemVerticalPadding; - padding-bottom: @itemVerticalPadding; -} -.ui.vertically.fitted.menu .item, -.ui.vertically.fitted.menu .item .menu .item, -.ui.menu .vertically.fitted.item { - padding-left: @itemHorizontalPadding; - padding-right: @itemHorizontalPadding; -} - -/*-------------- - Borderless ----------------*/ - -.ui.borderless.menu .item:before, -.ui.borderless.menu .item .menu .item:before, -.ui.menu .borderless.item:before { - background: none !important; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.menu { - display: inline-flex; - margin: 0em; - vertical-align: middle; -} -.ui.compact.vertical.menu { - display: inline-block; -} -.ui.compact.menu .item:last-child { - border-radius: 0em @borderRadius @borderRadius 0em; -} -.ui.compact.menu .item:last-child:before { - display: none; -} -.ui.compact.vertical.menu { - width: auto !important; -} -.ui.compact.vertical.menu .item:last-child::before { - display: block; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.menu.fluid, -.ui.vertical.menu.fluid { - width: 100% !important; -} - - -/*------------------- - Evenly Sized ---------------------*/ - -.ui.item.menu, -.ui.item.menu .item { - width: 100%; - padding-left: 0em !important; - padding-right: 0em !important; - margin-left: 0em !important; - margin-right: 0em !important; - text-align: center; - justify-content: center; -} -.ui.attached.item.menu { - margin: 0em @attachedHorizontalOffset !important; -} - -.ui.item.menu .item:last-child:before { - display: none; -} - -.ui.menu.two.item .item { - width: 50%; -} -.ui.menu.three.item .item { - width: 33.333%; -} -.ui.menu.four.item .item { - width: 25%; -} -.ui.menu.five.item .item { - width: 20%; -} -.ui.menu.six.item .item { - width: 16.666%; -} -.ui.menu.seven.item .item { - width: 14.285%; -} -.ui.menu.eight.item .item { - width: 12.500%; -} -.ui.menu.nine.item .item { - width: 11.11%; -} -.ui.menu.ten.item .item { - width: 10.0%; -} -.ui.menu.eleven.item .item { - width: 9.09%; -} -.ui.menu.twelve.item .item { - width: 8.333%; -} - -/*-------------- - Fixed ----------------*/ - -.ui.menu.fixed { - position: fixed; - z-index: 101; - margin: 0em; - width: 100%; -} -.ui.menu.fixed, -.ui.menu.fixed .item:first-child, -.ui.menu.fixed .item:last-child { - border-radius: 0px !important; -} - -.ui.fixed.menu, -.ui[class*="top fixed"].menu { - top: 0px; - left: 0px; - right: auto; - bottom: auto; -} -.ui[class*="top fixed"].menu { - border-top: none; - border-left: none; - border-right: none; -} -.ui[class*="right fixed"].menu { - border-top: none; - border-bottom: none; - border-right: none; - top: 0px; - right: 0px; - left: auto; - bottom: auto; - width: auto; - height: 100%; -} -.ui[class*="bottom fixed"].menu { - border-bottom: none; - border-left: none; - border-right: none; - bottom: 0px; - left: 0px; - top: auto; - right: auto; -} -.ui[class*="left fixed"].menu { - border-top: none; - border-bottom: none; - border-left: none; - top: 0px; - left: 0px; - right: auto; - bottom: auto; - width: auto; - height: 100%; -} - -/* Coupling with Grid */ -.ui.fixed.menu + .ui.grid { - padding-top: @fixedPrecedingGridMargin; -} - - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.menu .item:after { - visibility: hidden; - position: absolute; - content: ''; - top: 100%; - left: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - background: none; - - margin: (@arrowBorderWidth / 2) 0em 0em; - width: @arrowSize; - height: @arrowSize; - - border: none; - border-bottom: @arrowBorder; - border-right: @arrowBorder; - - z-index: @arrowZIndex; - transition: @arrowTransition; -} -.ui.vertical.pointing.menu .item:after { - position: absolute; - top: 50%; - right: 0%; - bottom: auto; - left: auto; - - transform: translateX(50%) translateY(-50%) rotate(45deg); - margin: 0em -(@arrowBorderWidth / 2) 0em 0em; - - border: none; - border-top: @arrowBorder; - border-right: @arrowBorder; -} - -/* Active */ -.ui.pointing.menu .active.item:after { - visibility: visible; -} -.ui.pointing.menu .active.dropdown.item:after { - visibility: hidden; -} - -/* Don't double up pointers */ -.ui.pointing.menu .dropdown.active.item:after, -.ui.pointing.menu .active.item .menu .active.item:after { - display: none; -} - -/* Colors */ -.ui.pointing.menu .active.item:hover:after { - background-color: @arrowHoverColor; -} -.ui.pointing.menu .active.item:after { - background-color: @arrowActiveColor; -} -.ui.pointing.menu .active.item:hover:after { - background-color: @arrowActiveHoverColor; -} - -.ui.vertical.pointing.menu .active.item:hover:after { - background-color: @arrowVerticalHoverColor; -} -.ui.vertical.pointing.menu .active.item:after { - background-color: @arrowVerticalActiveColor; -} -.ui.vertical.pointing.menu .menu .active.item:after { - background-color: @arrowVerticalSubMenuColor; -} - - - -/*-------------- - Attached ----------------*/ - -/* Middle */ -.ui.attached.menu { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em @attachedHorizontalOffset; - width: @attachedWidth; - max-width: @attachedWidth; - box-shadow: @attachedBoxShadow; -} -.ui.attached + .ui.attached.menu:not(.top) { - border-top: none; -} - -/* Top */ -.ui[class*="top attached"].menu { - bottom: 0px; - margin-bottom: 0em; - top: @attachedTopOffset; - margin-top: @verticalMargin; - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui.menu[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ -.ui[class*="bottom attached"].menu { - bottom: 0px; - margin-top: 0em; - top: @attachedBottomOffset; - margin-bottom: @verticalMargin; - box-shadow: @attachedBottomBoxShadow; - border-radius: 0em 0em @borderRadius @borderRadius; -} -.ui[class*="bottom attached"].menu:last-child { - margin-bottom: 0em; -} - -/* Attached Menu Item */ -.ui.top.attached.menu > .item:first-child { - border-radius: @borderRadius 0em 0em 0em; -} -.ui.bottom.attached.menu > .item:first-child { - border-radius: 0em 0em 0em @borderRadius; -} - -/* Tabular Attached */ -.ui.attached.menu:not(.tabular) { - border: @attachedBorder; -} -.ui.attached.inverted.menu { - border: none; -} -.ui.attached.tabular.menu { - margin-left: 0; - margin-right: 0; - width: 100%; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ -.ui.mini.menu { - font-size: @mini; -} -.ui.mini.vertical.menu { - width: @miniWidth; -} - -/* Tiny */ -.ui.tiny.menu { - font-size: @tiny; -} -.ui.tiny.vertical.menu { - width: @tinyWidth; -} - -/* Small */ -.ui.small.menu { - font-size: @small; -} -.ui.small.vertical.menu { - width: @smallWidth; -} - -/* Medium */ -.ui.menu { - font-size: @medium; -} -.ui.vertical.menu { - width: @mediumWidth; -} - -/* Large */ -.ui.large.menu { - font-size: @large; -} -.ui.large.vertical.menu { - width: @largeWidth; -} - -/* Huge */ -.ui.huge.menu { - font-size: @huge; -} -.ui.huge.vertical.menu { - width: @hugeWidth; -} - -/* Big */ -.ui.big.menu { - font-size: @big; -} -.ui.big.vertical.menu { - width: @bigWidth; -} - -/* Massive */ -.ui.massive.menu { - font-size: @massive; -} -.ui.massive.vertical.menu { - width: @massiveWidth; -} - -.loadUIOverrides(); diff --git a/src/definitions/collections/message.less b/src/definitions/collections/message.less deleted file mode 100644 index 8712679..0000000 --- a/src/definitions/collections/message.less +++ /dev/null @@ -1,481 +0,0 @@ -/*! - * # Semantic UI - Message - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'message'; - -@import (multiple) '../../theme.config'; - -/******************************* - Message -*******************************/ - -.ui.message { - position: relative; - min-height: 1em; - margin: @verticalMargin 0em; - background: @background; - padding: @padding; - line-height: @lineHeight; - color: @textColor; - transition: @transition; - border-radius: @borderRadius; - box-shadow: @boxShadow; -} - -.ui.message:first-child { - margin-top: 0em; -} -.ui.message:last-child { - margin-bottom: 0em; -} - - -/*-------------- - Content ----------------*/ - -/* Header */ -.ui.message .header { - display: @headerDisplay; - font-family: @headerFont; - font-weight: @headerFontWeight; - margin: @headerMargin; -} - -/* Default font size */ -.ui.message .header:not(.ui) { - font-size: @headerFontSize; -} - -/* Paragraph */ -.ui.message p { - opacity: @messageTextOpacity; - margin: @messageParagraphMargin 0em; -} -.ui.message p:first-child { - margin-top: 0em; -} -.ui.message p:last-child { - margin-bottom: 0em; -} -.ui.message .header + p { - margin-top: @headerParagraphDistance; -} - -/* List */ -.ui.message .list:not(.ui) { - text-align: left; - padding: 0em; - opacity: @listOpacity; - list-style-position: @listStylePosition; - margin: @listMargin 0em 0em; -} -.ui.message .list:not(.ui):first-child { - margin-top: 0em; -} -.ui.message .list:not(.ui):last-child { - margin-bottom: 0em; -} -.ui.message .list:not(.ui) li { - position: relative; - list-style-type: none; - margin: 0em 0em @listItemMargin @listItemIndent; - padding: 0em; -} -.ui.message .list:not(.ui) li:before { - position: absolute; - content: '•'; - left: -1em; - height: 100%; - vertical-align: baseline; -} -.ui.message .list:not(.ui) li:last-child { - margin-bottom: 0em; -} - - -/* Icon */ -.ui.message > .icon { - margin-right: @iconDistance; -} - -/* Close Icon */ -.ui.message > .close.icon { - cursor: pointer; - position: absolute; - margin: 0em; - top: @closeTopDistance; - right: @closeRightDistance; - opacity: @closeOpacity; - transition: @closeTransition; -} -.ui.message > .close.icon:hover { - opacity: 1; -} - -/* First / Last Element */ -.ui.message > :first-child { - margin-top: 0em; -} -.ui.message > :last-child { - margin-bottom: 0em; -} - -/******************************* - Coupling -*******************************/ - -.ui.dropdown .menu > .message { - margin: 0px -@borderWidth; -} - -/******************************* - States -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.visible.visible.visible.message { - display: block; -} - -.ui.icon.visible.visible.visible.visible.message { - display: flex; -} - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.hidden.hidden.hidden.message { - display: none; -} - - -/******************************* - Variations -*******************************/ - -/*-------------- - Compact ----------------*/ - -.ui.compact.message { - display: inline-block; -} -.ui.compact.icon.message { - display: inline-flex; -} - - -/*-------------- - Attached ----------------*/ - -.ui.attached.message { - margin-bottom: @attachedYOffset; - border-radius: @borderRadius @borderRadius 0em 0em; - box-shadow: @attachedBoxShadow; - margin-left: @attachedXOffset; - margin-right: @attachedXOffset; -} -.ui.attached + .ui.attached.message:not(.top):not(.bottom) { - margin-top: @attachedYOffset; - border-radius: 0em; -} -.ui.bottom.attached.message { - margin-top: @attachedYOffset; - border-radius: 0em 0em @borderRadius @borderRadius; - box-shadow: @attachedBottomBoxShadow; -} -.ui.bottom.attached.message:not(:last-child) { - margin-bottom: @verticalMargin; -} -.ui.attached.icon.message { - width: auto; -} - - -/*-------------- - Icon ----------------*/ - -.ui.icon.message { - display: flex; - width: 100%; - align-items: center; -} -.ui.icon.message > .icon:not(.close) { - display: block; - flex: 0 0 auto; - width: auto; - line-height: 1; - vertical-align: @iconVerticalAlign; - font-size: @iconSize; - opacity: @iconOpacity; -} -.ui.icon.message > .content { - display: block; - flex: 1 1 auto; - vertical-align: @iconVerticalAlign; -} - - -.ui.icon.message .icon:not(.close) + .content { - padding-left: @iconContentDistance; -} -.ui.icon.message .circular.icon { - width: 1em; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.message { - box-shadow: @floatingBoxShadow; -} - - -/*-------------- - Colors ----------------*/ - -.ui.black.message { - background-color: @black; - color: @invertedTextColor; -} - -/*-------------- - Types ----------------*/ - -/* Positive */ -.ui.positive.message { - background-color: @positiveBackgroundColor; - color: @positiveTextColor; -} -.ui.positive.message, -.ui.attached.positive.message { - box-shadow: @positiveBoxShadow; -} -.ui.positive.message .header { - color: @positiveHeaderColor; -} - -/* Negative */ -.ui.negative.message { - background-color: @negativeBackgroundColor; - color: @negativeTextColor; -} -.ui.negative.message, -.ui.attached.negative.message { - box-shadow: @negativeBoxShadow; -} -.ui.negative.message .header { - color: @negativeHeaderColor; -} - -/* Info */ -.ui.info.message { - background-color: @infoBackgroundColor; - color: @infoTextColor; -} -.ui.info.message, -.ui.attached.info.message { - box-shadow: @infoBoxShadow; -} -.ui.info.message .header { - color: @infoHeaderColor; -} - -/* Warning */ -.ui.warning.message { - background-color: @warningBackgroundColor; - color: @warningTextColor; -} -.ui.warning.message, -.ui.attached.warning.message { - box-shadow: @warningBoxShadow; -} -.ui.warning.message .header { - color: @warningHeaderColor; -} - -/* Error */ -.ui.error.message { - background-color: @errorBackgroundColor; - color: @errorTextColor; -} -.ui.error.message, -.ui.attached.error.message { - box-shadow: @errorBoxShadow; -} -.ui.error.message .header { - color: @errorHeaderColor; -} - -/* Success */ -.ui.success.message { - background-color: @successBackgroundColor; - color: @successTextColor; -} -.ui.success.message, -.ui.attached.success.message { - box-shadow: @successBoxShadow; -} -.ui.success.message .header { - color: @successHeaderColor; -} - - -/* Colors */ -.ui.inverted.message, -.ui.black.message { - background-color: @black; - color: @invertedTextColor; -} - -.ui.red.message { - background-color: @redBackground; - color: @redTextColor; - box-shadow: @redBoxShadow; -} -.ui.red.message .header { - color: @redHeaderColor; -} - -.ui.orange.message { - background-color: @orangeBackground; - color: @orangeTextColor; - box-shadow: @orangeBoxShadow; -} -.ui.orange.message .header { - color: @orangeHeaderColor; -} - -.ui.yellow.message { - background-color: @yellowBackground; - color: @yellowTextColor; - box-shadow: @yellowBoxShadow; -} -.ui.yellow.message .header { - color: @yellowHeaderColor; -} - -.ui.olive.message { - background-color: @oliveBackground; - color: @oliveTextColor; - box-shadow: @oliveBoxShadow; -} -.ui.olive.message .header { - color: @oliveHeaderColor; -} - -.ui.green.message { - background-color: @greenBackground; - color: @greenTextColor; - box-shadow: @greenBoxShadow; -} -.ui.green.message .header { - color: @greenHeaderColor; -} - -.ui.teal.message { - background-color: @tealBackground; - color: @tealTextColor; - box-shadow: @tealBoxShadow; -} -.ui.teal.message .header { - color: @tealHeaderColor; -} - -.ui.blue.message { - background-color: @blueBackground; - color: @blueTextColor; - box-shadow: @blueBoxShadow; -} -.ui.blue.message .header { - color: @blueHeaderColor; -} - -.ui.violet.message { - background-color: @violetBackground; - color: @violetTextColor; - box-shadow: @violetBoxShadow; -} -.ui.violet.message .header { - color: @violetHeaderColor; -} - -.ui.purple.message { - background-color: @purpleBackground; - color: @purpleTextColor; - box-shadow: @purpleBoxShadow; -} -.ui.purple.message .header { - color: @purpleHeaderColor; -} - -.ui.pink.message { - background-color: @pinkBackground; - color: @pinkTextColor; - box-shadow: @pinkBoxShadow; -} -.ui.pink.message .header { - color: @pinkHeaderColor; -} - -.ui.brown.message { - background-color: @brownBackground; - color: @brownTextColor; - box-shadow: @brownBoxShadow; -} -.ui.brown.message .header { - color: @brownHeaderColor; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.message { - font-size: @relativeMini; -} -.ui.tiny.message { - font-size: @relativeTiny; -} -.ui.small.message { - font-size: @relativeSmall; -} -.ui.message { - font-size: @relativeMedium; -} -.ui.large.message { - font-size: @relativeLarge; -} -.ui.big.message { - font-size: @relativeBig; -} -.ui.huge.message { - font-size: @relativeHuge; -} -.ui.massive.message { - font-size: @relativeMassive; -} - -.loadUIOverrides(); diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less deleted file mode 100644 index 240e830..0000000 --- a/src/definitions/collections/table.less +++ /dev/null @@ -1,1119 +0,0 @@ -/*! - * # Semantic UI - Table - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'collection'; -@element : 'table'; - -@import (multiple) '../../theme.config'; - -/******************************* - Table -*******************************/ - -/* Prototype */ -.ui.table { - width: 100%; - background: @background; - margin: @margin; - border: @border; - box-shadow: @boxShadow; - border-radius: @borderRadius; - text-align: @textAlign; - color: @color; - border-collapse: @borderCollapse; - border-spacing: @borderSpacing; -} - -.ui.table:first-child { - margin-top: 0em; -} -.ui.table:last-child { - margin-bottom: 0em; -} - -/******************************* - Parts -*******************************/ - -/* Table Content */ -.ui.table th, -.ui.table td { - transition: @transition; -} - -/* Headers */ -.ui.table thead { - box-shadow: @headerBoxShadow; -} -.ui.table thead th { - cursor: auto; - background: @headerBackground; - text-align: @headerAlign; - color: @headerColor; - padding: @headerVerticalPadding @headerHorizontalPadding; - vertical-align: @headerVerticalAlign; - font-style: @headerFontStyle; - font-weight: @headerFontWeight; - text-transform: @headerTextTransform; - border-bottom: @headerBorder; - border-left: @headerDivider; -} - -.ui.table thead tr > th:first-child { - border-left: none; -} - -.ui.table thead tr:first-child > th:first-child { - border-radius: @borderRadius 0em 0em 0em; -} -.ui.table thead tr:first-child > th:last-child { - border-radius: 0em @borderRadius 0em 0em; -} -.ui.table thead tr:first-child > th:only-child { - border-radius: @borderRadius @borderRadius 0em 0em; -} - -/* Footer */ -.ui.table tfoot { - box-shadow: @footerBoxShadow; -} -.ui.table tfoot th { - cursor: auto; - border-top: @footerBorder; - background: @footerBackground; - text-align: @footerAlign; - color: @footerColor; - padding: @footerVerticalPadding @footerHorizontalPadding; - vertical-align: @footerVerticalAlign; - font-style: @footerFontStyle; - font-weight: @footerFontWeight; - text-transform: @footerTextTransform; -} -.ui.table tfoot tr > th:first-child { - border-left: none; -} -.ui.table tfoot tr:first-child > th:first-child { - border-radius: 0em 0em 0em @borderRadius; -} -.ui.table tfoot tr:first-child > th:last-child { - border-radius: 0em 0em @borderRadius 0em; -} -.ui.table tfoot tr:first-child > th:only-child { - border-radius: 0em 0em @borderRadius @borderRadius; -} - -/* Table Row */ -.ui.table tr td { - border-top: @rowBorder; -} -.ui.table tr:first-child td { - border-top: none; -} - -/* Repeated tbody */ -.ui.table tbody + tbody tr:first-child td { - border-top: @rowBorder; -} - -/* Table Cells */ -.ui.table td { - padding: @cellVerticalPadding @cellHorizontalPadding; - text-align: @cellTextAlign; -} - -/* Icons */ -.ui.table > .icon { - vertical-align: @iconVerticalAlign; -} -.ui.table > .icon:only-child { - margin: 0em; -} - -/* Table Segment */ -.ui.table.segment { - padding: 0em; -} -.ui.table.segment:after { - display: none; -} -.ui.table.segment.stacked:after { - display: block; -} - - -/* Responsive */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.table:not(.unstackable) { - width: 100%; - } - .ui.table:not(.unstackable) tbody, - .ui.table:not(.unstackable) tr, - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - display: block !important; - width: auto !important; - display: block !important; - } - - .ui.table:not(.unstackable) { - padding: 0em; - } - .ui.table:not(.unstackable) thead { - display: @responsiveHeaderDisplay; - } - .ui.table:not(.unstackable) tfoot { - display: @responsiveFooterDisplay; - } - .ui.table:not(.unstackable) tr { - padding-top: @responsiveRowVerticalPadding; - padding-bottom: @responsiveRowVerticalPadding; - box-shadow: @responsiveRowBoxShadow; - } - - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - background: none; - border: none !important; - padding: @responsiveCellVerticalPadding @responsiveCellHorizontalPadding !important; - box-shadow: @responsiveCellBoxShadow; - } - .ui.table:not(.unstackable) th:first-child, - .ui.table:not(.unstackable) td:first-child { - font-weight: @responsiveCellHeaderFontWeight; - } - - /* Definition Table */ - .ui.definition.table:not(.unstackable) thead th:first-child { - box-shadow: none !important; - } -} - - -/******************************* - Coupling -*******************************/ - -/* UI Image */ -.ui.table th .image, -.ui.table th .image img, -.ui.table td .image, -.ui.table td .image img { - max-width: none; -} - - -/******************************* - Types -*******************************/ - -/*-------------- - Complex ----------------*/ - -.ui.structured.table { - border-collapse: collapse; -} -.ui.structured.table thead th { - border-left: @headerDivider; - border-right: @headerDivider; -} -.ui.structured.sortable.table thead th { - border-left: @sortableBorder; - border-right: @sortableBorder; -} -.ui.structured.basic.table th { - border-left: @basicTableHeaderDivider; - border-right: @basicTableHeaderDivider; -} -.ui.structured.celled.table tr th, -.ui.structured.celled.table tr td { - border-left: @cellBorder; - border-right: @cellBorder; -} - -/*-------------- - Definition ----------------*/ - -.ui.definition.table thead:not(.full-width) th:first-child { - pointer-events: none; - background: @definitionHeaderBackground; - font-weight: @definitionHeaderFontWeight; - color: @definitionHeaderColor; - box-shadow: -@borderWidth -@borderWidth 0px @borderWidth @definitionPageBackground; -} - -.ui.definition.table tfoot:not(.full-width) th:first-child { - pointer-events: none; - background: @definitionFooterBackground; - font-weight: @definitionFooterColor; - color: @definitionFooterFontWeight; - box-shadow: @borderWidth @borderWidth 0px @borderWidth @definitionPageBackground; -} - -/* Remove Border */ -.ui.celled.definition.table thead:not(.full-width) th:first-child { - box-shadow: 0px -@borderWidth 0px @borderWidth @definitionPageBackground; -} -.ui.celled.definition.table tfoot:not(.full-width) th:first-child { - box-shadow: 0px @borderWidth 0px @borderWidth @definitionPageBackground; -} - -/* Highlight Defining Column */ -.ui.definition.table tr td:first-child:not(.ignored), -.ui.definition.table tr td.definition { - background: @definitionColumnBackground; - font-weight: @definitionColumnFontWeight; - color: @definitionColumnColor; - text-transform: @definitionColumnTextTransform; - box-shadow: @definitionColumnBoxShadow; - text-align: @definitionColumnTextAlign; - font-size: @definitionColumnFontSize; - padding-left: @definitionColumnHorizontalPadding; - padding-right: @definitionColumnHorizontalPadding; -} - - -/* Fix 2nd Column */ -.ui.definition.table thead:not(.full-width) th:nth-child(2) { - border-left: @borderWidth solid @borderColor; -} -.ui.definition.table tfoot:not(.full-width) th:nth-child(2) { - border-left: @borderWidth solid @borderColor; -} -.ui.definition.table td:nth-child(2) { - border-left: @borderWidth solid @borderColor; -} - - -/******************************* - States -*******************************/ - -/*-------------- - Positive ----------------*/ - -.ui.table tr.positive, -.ui.table td.positive { - box-shadow: @positiveBoxShadow; -} -.ui.table tr.positive, -.ui.table td.positive { - background: @positiveBackgroundColor !important; - color: @positiveColor !important; -} - -/*-------------- - Negative ----------------*/ - -.ui.table tr.negative, -.ui.table td.negative { - box-shadow: @negativeBoxShadow; -} -.ui.table tr.negative, -.ui.table td.negative { - background: @negativeBackgroundColor !important; - color: @negativeColor !important; -} - -/*-------------- - Error ----------------*/ - -.ui.table tr.error, -.ui.table td.error { - box-shadow: @errorBoxShadow; -} -.ui.table tr.error, -.ui.table td.error { - background: @errorBackgroundColor !important; - color: @errorColor !important; -} -/*-------------- - Warning ----------------*/ - -.ui.table tr.warning, -.ui.table td.warning { - box-shadow: @warningBoxShadow; -} -.ui.table tr.warning, -.ui.table td.warning { - background: @warningBackgroundColor !important; - color: @warningColor !important; -} - -/*-------------- - Active ----------------*/ - -.ui.table tr.active, -.ui.table td.active { - box-shadow: @activeBoxShadow; -} -.ui.table tr.active, -.ui.table td.active { - background: @activeBackgroundColor !important; - color: @activeColor !important; -} - - - -/*-------------- - Disabled ----------------*/ - -.ui.table tr.disabled td, -.ui.table tr td.disabled, -.ui.table tr.disabled:hover, -.ui.table tr:hover td.disabled { - pointer-events: none; - color: @disabledTextColor; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width : @largestTabletScreen) { - - .ui[class*="tablet stackable"].table, - .ui[class*="tablet stackable"].table tbody, - .ui[class*="tablet stackable"].table tr, - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - display: block !important; - width: 100% !important; - display: block !important; - } - - .ui[class*="tablet stackable"].table { - padding: 0em; - } - .ui[class*="tablet stackable"].table thead { - display: @responsiveHeaderDisplay; - } - .ui[class*="tablet stackable"].table tfoot { - display: @responsiveFooterDisplay; - } - .ui[class*="tablet stackable"].table tr { - padding-top: @responsiveRowVerticalPadding; - padding-bottom: @responsiveRowVerticalPadding; - box-shadow: @responsiveRowBoxShadow; - } - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - background: none; - border: none !important; - padding: @responsiveCellVerticalPadding @responsiveCellHorizontalPadding; - box-shadow: @responsiveCellBoxShadow; - } - - /* Definition Table */ - .ui.definition[class*="tablet stackable"].table thead th:first-child { - box-shadow: none !important; - } -} - -/*-------------- - Text Alignment ----------------*/ - -.ui.table[class*="left aligned"], -.ui.table [class*="left aligned"] { - text-align: left; -} -.ui.table[class*="center aligned"], -.ui.table [class*="center aligned"] { - text-align: center; -} -.ui.table[class*="right aligned"], -.ui.table [class*="right aligned"] { - text-align: right; -} - -/*------------------ - Vertical Alignment -------------------*/ - -.ui.table[class*="top aligned"], -.ui.table [class*="top aligned"] { - vertical-align: top; -} -.ui.table[class*="middle aligned"], -.ui.table [class*="middle aligned"] { - vertical-align: middle; -} -.ui.table[class*="bottom aligned"], -.ui.table [class*="bottom aligned"] { - vertical-align: bottom; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.table th.collapsing, -.ui.table td.collapsing { - width: 1px; - white-space: nowrap; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.table { - table-layout: fixed; -} - -.ui.fixed.table th, -.ui.fixed.table td { - overflow: hidden; - text-overflow: ellipsis; -} - - -/*-------------- - Selectable ----------------*/ - -.ui.selectable.table tbody tr:hover, -.ui.table tbody tr td.selectable:hover { - background: @selectableBackground !important; - color: @selectableTextColor !important; -} -.ui.selectable.inverted.table tbody tr:hover, -.ui.inverted.table tbody tr td.selectable:hover { - background: @selectableInvertedBackground !important; - color: @selectableInvertedTextColor !important; -} - -/* Selectable Cell Link */ -.ui.table tbody tr td.selectable { - padding: 0em; -} -.ui.table tbody tr td.selectable > a:not(.ui) { - display: block; - color: inherit; - padding: @cellVerticalPadding @cellHorizontalPadding; -} - -/* Other States */ -.ui.selectable.table tr.error:hover, -.ui.table tr td.selectable.error:hover, -.ui.selectable.table tr:hover td.error { - background: @errorBackgroundHover !important; - color: @errorColorHover !important; -} -.ui.selectable.table tr.warning:hover, -.ui.table tr td.selectable.warning:hover, -.ui.selectable.table tr:hover td.warning { - background: @warningBackgroundHover !important; - color: @warningColorHover !important; -} -.ui.selectable.table tr.active:hover, -.ui.table tr td.selectable.active:hover, -.ui.selectable.table tr:hover td.active { - background: @activeBackgroundColor !important; - color: @activeColor !important; -} -.ui.selectable.table tr.positive:hover, -.ui.table tr td.selectable.positive:hover, -.ui.selectable.table tr:hover td.positive { - background: @positiveBackgroundHover !important; - color: @positiveColorHover !important; -} -.ui.selectable.table tr.negative:hover, -.ui.table tr td.selectable.negative:hover, -.ui.selectable.table tr:hover td.negative { - background: @negativeBackgroundHover !important; - color: @negativeColorHover !important; -} - - - -/*------------------- - Attached ---------------------*/ - -/* Middle */ -.ui.attached.table { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em @attachedHorizontalOffset; - width: @attachedWidth; - max-width: @attachedWidth; - box-shadow: @attachedBoxShadow; - border: @attachedBorder; -} -.ui.attached + .ui.attached.table:not(.top) { - border-top: none; -} - -/* Top */ -.ui[class*="top attached"].table { - bottom: 0px; - margin-bottom: 0em; - top: @attachedTopOffset; - margin-top: @verticalMargin; - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui.table[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ -.ui[class*="bottom attached"].table { - bottom: 0px; - margin-top: 0em; - top: @attachedBottomOffset; - margin-bottom: @verticalMargin; - box-shadow: @attachedBottomBoxShadow; - border-radius: 0em 0em @borderRadius @borderRadius; -} -.ui[class*="bottom attached"].table:last-child { - margin-bottom: 0em; -} - -/*-------------- - Striped ----------------*/ - -/* Table Striping */ -.ui.striped.table > tr:nth-child(2n), -.ui.striped.table tbody tr:nth-child(2n) { - background-color: @stripedBackground; -} - -/* Stripes */ -.ui.inverted.striped.table > tr:nth-child(2n), -.ui.inverted.striped.table tbody tr:nth-child(2n) { - background-color: @invertedStripedBackground; -} - -/* Allow striped active hover */ -.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover { - background: @activeBackgroundHover !important; - color: @activeColorHover !important; -} - -/*-------------- - Single Line ----------------*/ - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ -.ui.red.table { - border-top: @coloredBorderSize solid @red; -} -.ui.inverted.red.table { - background-color: @red !important; - color: @white !important; -} - -/* Orange */ -.ui.orange.table { - border-top: @coloredBorderSize solid @orange; -} -.ui.inverted.orange.table { - background-color: @orange !important; - color: @white !important; -} - -/* Yellow */ -.ui.yellow.table { - border-top: @coloredBorderSize solid @yellow; -} -.ui.inverted.yellow.table { - background-color: @yellow !important; - color: @white !important; -} - -/* Olive */ -.ui.olive.table { - border-top: @coloredBorderSize solid @olive; -} -.ui.inverted.olive.table { - background-color: @olive !important; - color: @white !important; -} - -/* Green */ -.ui.green.table { - border-top: @coloredBorderSize solid @green; -} -.ui.inverted.green.table { - background-color: @green !important; - color: @white !important; -} - -/* Teal */ -.ui.teal.table { - border-top: @coloredBorderSize solid @teal; -} -.ui.inverted.teal.table { - background-color: @teal !important; - color: @white !important; -} - -/* Blue */ -.ui.blue.table { - border-top: @coloredBorderSize solid @blue; -} -.ui.inverted.blue.table { - background-color: @blue !important; - color: @white !important; -} - -/* Violet */ -.ui.violet.table { - border-top: @coloredBorderSize solid @violet; -} -.ui.inverted.violet.table { - background-color: @violet !important; - color: @white !important; -} - -/* Purple */ -.ui.purple.table { - border-top: @coloredBorderSize solid @purple; -} -.ui.inverted.purple.table { - background-color: @purple !important; - color: @white !important; -} - -/* Pink */ -.ui.pink.table { - border-top: @coloredBorderSize solid @pink; -} -.ui.inverted.pink.table { - background-color: @pink !important; - color: @white !important; -} - -/* Brown */ -.ui.brown.table { - border-top: @coloredBorderSize solid @brown; -} -.ui.inverted.brown.table { - background-color: @brown !important; - color: @white !important; -} - -/* Grey */ -.ui.grey.table { - border-top: @coloredBorderSize solid @grey; -} -.ui.inverted.grey.table { - background-color: @grey !important; - color: @white !important; -} - -/* Black */ -.ui.black.table { - border-top: @coloredBorderSize solid @black; -} -.ui.inverted.black.table { - background-color: @black !important; - color: @white !important; -} - - -/*-------------- - Column Count ----------------*/ - -/* Grid Based */ -.ui.one.column.table td { - width: @oneColumn; -} -.ui.two.column.table td { - width: @twoColumn; -} -.ui.three.column.table td { - width: @threeColumn; -} -.ui.four.column.table td { - width: @fourColumn; -} -.ui.five.column.table td { - width: @fiveColumn; -} -.ui.six.column.table td { - width: @sixColumn; -} -.ui.seven.column.table td { - width: @sevenColumn; -} -.ui.eight.column.table td { - width: @eightColumn; -} -.ui.nine.column.table td { - width: @nineColumn; -} -.ui.ten.column.table td { - width: @tenColumn; -} -.ui.eleven.column.table td { - width: @elevenColumn; -} -.ui.twelve.column.table td { - width: @twelveColumn; -} -.ui.thirteen.column.table td { - width: @thirteenColumn; -} -.ui.fourteen.column.table td { - width: @fourteenColumn; -} -.ui.fifteen.column.table td { - width: @fifteenColumn; -} -.ui.sixteen.column.table td { - width: @sixteenColumn; -} - -/* Column Width */ -.ui.table th.one.wide, -.ui.table td.one.wide { - width: @oneWide; -} -.ui.table th.two.wide, -.ui.table td.two.wide { - width: @twoWide; -} -.ui.table th.three.wide, -.ui.table td.three.wide { - width: @threeWide; -} -.ui.table th.four.wide, -.ui.table td.four.wide { - width: @fourWide; -} -.ui.table th.five.wide, -.ui.table td.five.wide { - width: @fiveWide; -} -.ui.table th.six.wide, -.ui.table td.six.wide { - width: @sixWide; -} -.ui.table th.seven.wide, -.ui.table td.seven.wide { - width: @sevenWide; -} -.ui.table th.eight.wide, -.ui.table td.eight.wide { - width: @eightWide; -} -.ui.table th.nine.wide, -.ui.table td.nine.wide { - width: @nineWide; -} -.ui.table th.ten.wide, -.ui.table td.ten.wide { - width: @tenWide; -} -.ui.table th.eleven.wide, -.ui.table td.eleven.wide { - width: @elevenWide; -} -.ui.table th.twelve.wide, -.ui.table td.twelve.wide { - width: @twelveWide; -} -.ui.table th.thirteen.wide, -.ui.table td.thirteen.wide { - width: @thirteenWide; -} -.ui.table th.fourteen.wide, -.ui.table td.fourteen.wide { - width: @fourteenWide; -} -.ui.table th.fifteen.wide, -.ui.table td.fifteen.wide { - width: @fifteenWide; -} -.ui.table th.sixteen.wide, -.ui.table td.sixteen.wide { - width: @sixteenWide; -} - -/*-------------- - Sortable ----------------*/ - -.ui.sortable.table thead th { - cursor: pointer; - white-space: nowrap; - border-left: @sortableBorder; - color: @sortableColor; -} -.ui.sortable.table thead th:first-child { - border-left: none; -} -.ui.sortable.table thead th.sorted, -.ui.sortable.table thead th.sorted:hover { - user-select: none; -} - -.ui.sortable.table thead th:after { - display: none; - font-style: normal; - font-weight: @normal; - text-decoration: inherit; - content: ''; - height: 1em; - width: @sortableIconWidth; - opacity: @sortableIconOpacity; - margin: 0em 0em 0em @sortableIconDistance; - font-family: @sortableIconFont; -} -.ui.sortable.table thead th.ascending:after { - content: @sortableIconAscending; -} -.ui.sortable.table thead th.descending:after { - content: @sortableIconDescending; -} - -/* Hover */ -.ui.sortable.table th.disabled:hover { - cursor: auto; - color: @sortableDisabledColor; -} -.ui.sortable.table thead th:hover { - background: @sortableHoverBackground; - color: @sortableHoverColor; -} - -/* Sorted */ -.ui.sortable.table thead th.sorted { - background: @sortableActiveBackground; - color: @sortableActiveColor; -} -.ui.sortable.table thead th.sorted:after { - display: inline-block; -} - -/* Sorted Hover */ -.ui.sortable.table thead th.sorted:hover { - background: @sortableActiveHoverBackground; - color: @sortableActiveHoverColor; -} - -/* Inverted */ -.ui.inverted.sortable.table thead th.sorted { - background: @sortableInvertedActiveBackground; - color: @sortableInvertedActiveColor; -} -.ui.inverted.sortable.table thead th:hover { - background: @sortableInvertedHoverBackground; - color: @sortableInvertedHoverColor; -} -.ui.inverted.sortable.table thead th { - border-left-color: @sortableInvertedBorderColor; - border-right-color: @sortableInvertedBorderColor; -} - - -/*-------------- - Inverted ----------------*/ - -/* Text Color */ -.ui.inverted.table { - background: @invertedBackground; - color: @invertedCellColor; - border: @invertedBorder; -} -.ui.inverted.table th { - background-color: @invertedHeaderBackground; - border-color: @invertedHeaderBorderColor !important; - color: @invertedHeaderColor !important; -} -.ui.inverted.table tr td { - border-color: @invertedCellBorderColor !important; -} - -.ui.inverted.table tr.disabled td, -.ui.inverted.table tr td.disabled, -.ui.inverted.table tr.disabled:hover td, -.ui.inverted.table tr:hover td.disabled { - pointer-events: none; - color: @invertedDisabledTextColor; -} - -/* Definition */ -.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, -.ui.inverted.definition.table thead:not(.full-width) th:first-child { - background: @definitionPageBackground; -} -.ui.inverted.definition.table tr td:first-child { - background: @invertedDefinitionColumnBackground; - color: @invertedDefinitionColumnColor; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.collapsing.table { - width: auto; -} - -/*-------------- - Basic ----------------*/ - -.ui.basic.table { - background: @basicTableBackground; - border: @basicTableBorder; - box-shadow: @basicBoxShadow; -} -.ui.basic.table thead, -.ui.basic.table tfoot { - box-shadow: none; -} -.ui.basic.table th { - background: @basicTableHeaderBackground; - border-left: @basicTableHeaderDivider; -} -.ui.basic.table tbody tr { - border-bottom: @basicTableCellBorder; -} -.ui.basic.table td { - background: @basicTableCellBackground; -} -.ui.basic.striped.table tbody tr:nth-child(2n) { - background-color: @basicTableStripedBackground !important; -} - -/* Very Basic */ -.ui[class*="very basic"].table { - border: none; -} -.ui[class*="very basic"].table:not(.sortable):not(.striped) th, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td { - padding: @basicTableCellPadding; -} -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child { - padding-left: 0em; -} -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child { - padding-right: 0em; -} -.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th { - padding-top: 0em; -} - -/*-------------- - Celled ----------------*/ - -.ui.celled.table tr th, -.ui.celled.table tr td { - border-left: @cellBorder; -} -.ui.celled.table tr th:first-child, -.ui.celled.table tr td:first-child { - border-left: none; -} - -/*-------------- - Padded ----------------*/ - -.ui.padded.table th { - padding-left: @paddedHorizontalPadding; - padding-right: @paddedHorizontalPadding; -} -.ui.padded.table th, -.ui.padded.table td { - padding: @paddedVerticalPadding @paddedHorizontalPadding; -} - -/* Very */ -.ui[class*="very padded"].table th { - padding-left: @veryPaddedHorizontalPadding; - padding-right: @veryPaddedHorizontalPadding; -} -.ui[class*="very padded"].table td { - padding: @veryPaddedVerticalPadding @veryPaddedHorizontalPadding; -} - -/*-------------- - Compact ----------------*/ - -.ui.compact.table th { - padding-left: @compactHorizontalPadding; - padding-right: @compactHorizontalPadding; -} -.ui.compact.table td { - padding: @compactVerticalPadding @compactHorizontalPadding; -} - -/* Very */ -.ui[class*="very compact"].table th { - padding-left: @veryCompactHorizontalPadding; - padding-right: @veryCompactHorizontalPadding; -} -.ui[class*="very compact"].table td { - padding: @veryCompactVerticalPadding @veryCompactHorizontalPadding; -} - -/*-------------- - Sizes ----------------*/ - -/* Small */ -.ui.small.table { - font-size: @small; -} - -/* Standard */ -.ui.table { - font-size: @medium; -} - -/* Large */ -.ui.large.table { - font-size: @large; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less deleted file mode 100644 index 87f2e90..0000000 --- a/src/definitions/elements/button.less +++ /dev/null @@ -1,3566 +0,0 @@ -/*! - * # Semantic UI - Button - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'button'; - -@import (multiple) '../../theme.config'; - -/******************************* - Button -*******************************/ - -.ui.button { - cursor: pointer; - display: inline-block; - - min-height: 1em; - - outline-offset: var(--unfocused-outline-offset); - outline-width: var(--focused-outline-width); - outline-color: var(--unfocused-outline-color); - outline-style: var(--focused-outline-style); - border: 1px solid var(--very-strong-transparent-black); - vertical-align: @verticalAlign; - background: @background; - color: @textColor; - - font-family: @fontFamily; - - margin: 0em @horizontalMargin @verticalMargin 0em; - padding: @verticalPadding @horizontalPadding (@verticalPadding + @shadowOffset); - - text-transform: @textTransform; - text-shadow: @textShadow; - font-weight: @fontWeight; - line-height: @lineHeight; - font-style: normal; - text-align: center; - text-decoration: none; - - border-radius: @borderRadius; - box-shadow: @boxShadow; - - user-select: none; - transition: @transition; - will-change: @willChange; - - -webkit-tap-highlight-color: @tapColor; -} - - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.button:hover { - background-color: @hoverBackgroundColor; - background-image: @hoverBackgroundImage; - box-shadow: @hoverBoxShadow; - color: @hoverColor; -} - -.ui.button:hover .icon { - opacity: @iconHoverOpacity; -} - -/*-------------- - Focus ----------------*/ - -.ui.button:focus { - background-color: @focusBackgroundColor; - color: @focusColor; - background-image: @focusBackgroundImage !important; - box-shadow: @focusBoxShadow !important; - outline-offset: var(--focused-outline-offset); - outline-color: var(--focused-outline-color); -} - -.ui.button:focus .icon { - opacity: @iconFocusOpacity; -} - -/*-------------- - Down ----------------*/ - -.ui.button:active, -.ui.active.button:active { - background-color: @downBackgroundColor; - background-image: @downBackgroundImage; - color: @downColor; - box-shadow: @downBoxShadow; -} - -/*-------------- - Active ----------------*/ - -.ui.active.button { - background-color: @activeBackgroundColor; - background-image: @activeBackgroundImage; - box-shadow: @activeBoxShadow; - color: @activeColor; -} -.ui.active.button:hover { - background-color: @activeHoverBackgroundColor; - background-image: @activeHoverBackgroundImage; - color: @activeHoverColor; -} -.ui.active.button:active { - background-color: @activeBackgroundColor; - background-image: @activeBackgroundImage; -} - - -/*-------------- - Loading ----------------*/ - -/* Specificity hack */ -.ui.loading.loading.loading.loading.loading.loading.button { - position: relative; - cursor: default; - text-shadow: none !important; - color: transparent !important; - opacity: @loadingOpacity; - pointer-events: @loadingPointerEvents; - transition: @loadingTransition; -} -.ui.loading.button:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @invertedLoaderFillColor; -} -.ui.loading.button:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: button-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @invertedLoaderLineColor transparent transparent; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; -} -.ui.labeled.icon.loading.button .icon { - background-color: transparent; - box-shadow: none; -} - -@keyframes button-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.ui.basic.loading.button:not(.inverted):before { - border-color: @loaderFillColor; -} -.ui.basic.loading.button:not(.inverted):after { - border-top-color: @loaderLineColor; -} - -/*------------------- - Disabled ---------------------*/ - -.ui.buttons .disabled.button, -.ui.disabled.button, -.ui.button:disabled, -.ui.disabled.button:hover, -.ui.disabled.active.button { - cursor: default; - opacity: @disabledOpacity !important; - background-image: none !important; - box-shadow: none !important; - pointer-events: none !important; -} - -/* Basic Group With Disabled */ -.ui.basic.buttons .ui.disabled.button { - border-color: @disabledBorderColor; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Animated ---------------------*/ - -.ui.animated.button { - position: relative; - overflow: hidden; - padding-right: 0em !important; - vertical-align: @animatedVerticalAlign; - z-index: @animatedZIndex; -} - -.ui.animated.button .content { - will-change: transform, opacity; -} -.ui.animated.button .visible.content { - position: relative; - margin-right: @horizontalPadding; -} -.ui.animated.button .hidden.content { - position: absolute; - width: 100%; -} - -/* Horizontal */ -.ui.animated.button .visible.content, -.ui.animated.button .hidden.content { - transition: right @animationDuration @animationEasing 0s; -} -.ui.animated.button .visible.content { - left: auto; - right: 0%; -} -.ui.animated.button .hidden.content { - top: 50%; - left: auto; - right: -100%; - margin-top: -(@lineHeight / 2); -} -.ui.animated.button:focus .visible.content, -.ui.animated.button:hover .visible.content { - left: auto; - right: 200%; -} -.ui.animated.button:focus .hidden.content, -.ui.animated.button:hover .hidden.content { - left: auto; - right: 0%; -} - -/* Vertical */ -.ui.vertical.animated.button .visible.content, -.ui.vertical.animated.button .hidden.content { - transition: top @animationDuration @animationEasing, transform @animationDuration @animationEasing; -} -.ui.vertical.animated.button .visible.content { - transform: translateY(0%); - right: auto; -} -.ui.vertical.animated.button .hidden.content { - top: -50%; - left: 0%; - right: auto; -} -.ui.vertical.animated.button:focus .visible.content, -.ui.vertical.animated.button:hover .visible.content { - transform: translateY(200%); - right: auto; -} -.ui.vertical.animated.button:focus .hidden.content, -.ui.vertical.animated.button:hover .hidden.content { - top: 50%; - right: auto; -} - -/* Fade */ -.ui.fade.animated.button .visible.content, -.ui.fade.animated.button .hidden.content { - transition: opacity @animationDuration @animationEasing, transform @animationDuration @animationEasing; -} -.ui.fade.animated.button .visible.content { - left: auto; - right: auto; - opacity: 1; - transform: scale(1); -} -.ui.fade.animated.button .hidden.content { - opacity: 0; - left: 0%; - right: auto; - transform: scale(@fadeScaleHigh); -} -.ui.fade.animated.button:focus .visible.content, -.ui.fade.animated.button:hover .visible.content { - left: auto; - right: auto; - opacity: 0; - transform: scale(@fadeScaleLow); -} -.ui.fade.animated.button:focus .hidden.content, -.ui.fade.animated.button:hover .hidden.content { - left: 0%; - right: auto; - opacity: 1; - transform: scale(1); -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.button { - box-shadow: 0px 0px 0px @invertedBorderSize @white inset !important; - background: transparent none; - color: @white; - text-shadow: none !important; -} - -/* Group */ -.ui.inverted.buttons .button { - margin: @invertedGroupButtonOffset; -} -.ui.inverted.buttons .button:first-child { - margin-left: 0em; -} -.ui.inverted.vertical.buttons .button { - margin: @invertedVerticalGroupButtonOffset; -} -.ui.inverted.vertical.buttons .button:first-child { - margin-top: 0em; -} - -/* States */ - -/* Hover */ -.ui.inverted.button:hover { - background: @white; - box-shadow: 0px 0px 0px @invertedBorderSize @white inset !important; - color: @hoverColor; -} - -/* Active / Focus */ -.ui.inverted.button:focus, -.ui.inverted.button.active { - background: @white; - box-shadow: 0px 0px 0px @invertedBorderSize @white inset !important; - color: @focusColor; -} - -/* Active Focus */ -.ui.inverted.button.active:focus { - background: @midWhite; - box-shadow: 0px 0px 0px @invertedBorderSize @midWhite inset !important; - color: @focusColor; -} - - -/*------------------- - Labeled Button ---------------------*/ - -.ui.labeled.button:not(.icon) { - display: inline-flex; - flex-direction: row; - background: none !important; - padding: 0px !important; - border: none !important; - box-shadow: none !important; -} - -.ui.labeled.button > .button { - margin: 0px; -} -.ui.labeled.button > .label { - display: flex; - align-items: @labeledLabelAlign; - margin: 0px 0px 0px @labeledLabelBorderOffset !important; - font-size: @labeledLabelFontSize; - padding: @labeledLabelPadding; - font-size: @labeledLabelFontSize; - border-color: @labeledLabelBorderColor; -} - -/* Tag */ -.ui.labeled.button > .tag.label:before { - width: @labeledTagLabelSize; - height: @labeledTagLabelSize; -} - -/* Right */ -.ui.labeled.button:not([class*="left labeled"]) > .button { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} -.ui.labeled.button:not([class*="left labeled"]) > .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -/* Left Side */ -.ui[class*="left labeled"].button > .button { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} -.ui[class*="left labeled"].button > .label { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -/*------------------- - Social ---------------------*/ - -/* Facebook */ -.ui.facebook.button { - background-color: @facebookColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.facebook.button:hover { - background-color: @facebookHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.facebook.button:active { - background-color: @facebookDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* Twitter */ -.ui.twitter.button { - background-color: @twitterColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.twitter.button:hover { - background-color: @twitterHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.twitter.button:active { - background-color: @twitterDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* Google Plus */ -.ui.google.plus.button { - background-color: @googlePlusColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.google.plus.button:hover { - background-color: @googlePlusHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.google.plus.button:active { - background-color: @googlePlusDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* Linked In */ -.ui.linkedin.button { - background-color: @linkedInColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.linkedin.button:hover { - background-color: @linkedInHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.linkedin.button:active { - background-color: @linkedInDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* YouTube */ -.ui.youtube.button { - background-color: @youtubeColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.youtube.button:hover { - background-color: @youtubeHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.youtube.button:active { - background-color: @youtubeDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* Instagram */ -.ui.instagram.button { - background-color: @instagramColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.instagram.button:hover { - background-color: @instagramHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.instagram.button:active { - background-color: @instagramDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* Pinterest */ -.ui.pinterest.button { - background-color: @pinterestColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.pinterest.button:hover { - background-color: @pinterestHoverColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} -.ui.pinterest.button:active { - background-color: @pinterestDownColor; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; -} - -/* VK */ -.ui.vk.button { - background-color: #4D7198; - color: @white; - background-image: @coloredBackgroundImage; - box-shadow: @coloredBoxShadow; -} -.ui.vk.button:hover { - background-color: @vkHoverColor; - color: @white; -} -.ui.vk.button:active { - background-color: @vkDownColor; - color: @white; -} - -/*-------------- - Icon ----------------*/ - -.ui.button > .icon:not(.button) { - height: @iconHeight; - opacity: @iconOpacity; - margin: @iconMargin; - transition: @iconTransition; - vertical-align: @iconVerticalAlign; - color: @iconColor; -} - -.ui.button:not(.icon) > .icon:not(.button):not(.dropdown) { - margin: @iconMargin; -} -.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) { - margin: @rightIconMargin; -} - -/******************************* - Variations -*******************************/ - - -/*------------------- - Floated ---------------------*/ - -.ui[class*="left floated"].buttons, -.ui[class*="left floated"].button { - float: left; - margin-left: 0em; - margin-right: @floatedMargin; -} -.ui[class*="right floated"].buttons, -.ui[class*="right floated"].button { - float: right; - margin-right: 0em; - margin-left: @floatedMargin; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.buttons .button, -.ui.compact.button { - padding: @compactVerticalPadding @compactHorizontalPadding ( @compactVerticalPadding + @shadowOffset ); -} -.ui.compact.icon.buttons .button, -.ui.compact.icon.button { - padding: @compactVerticalPadding @compactVerticalPadding ( @compactVerticalPadding + @shadowOffset ); -} -.ui.compact.labeled.icon.buttons .button, -.ui.compact.labeled.icon.button { - padding: @compactVerticalPadding (@compactHorizontalPadding + @labeledIconWidth) ( @compactVerticalPadding + @shadowOffset ); -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.buttons .button, -.ui.mini.buttons .or, -.ui.mini.button { - font-size: @mini; -} -.ui.tiny.buttons .button, -.ui.tiny.buttons .or, -.ui.tiny.button { - font-size: @tiny; -} -.ui.small.buttons .button, -.ui.small.buttons .or, -.ui.small.button { - font-size: @small; -} -.ui.buttons .button, -.ui.buttons .or, -.ui.button { - font-size: @medium; -} -.ui.large.buttons .button, -.ui.large.buttons .or, -.ui.large.button { - font-size: @large; -} -.ui.big.buttons .button, -.ui.big.buttons .or, -.ui.big.button { - font-size: @big; -} -.ui.huge.buttons .button, -.ui.huge.buttons .or, -.ui.huge.button { - font-size: @huge; -} -.ui.massive.buttons .button, -.ui.massive.buttons .or, -.ui.massive.button { - font-size: @massive; -} - -/*-------------- - Icon Only ----------------*/ - -.ui.icon.buttons .button, -.ui.icon.button { - padding: @verticalPadding @verticalPadding ( @verticalPadding + @shadowOffset ); -} -.ui.icon.buttons .button > .icon, -.ui.icon.button > .icon { - opacity: @iconButtonOpacity; - margin: 0em !important; - vertical-align: top; -} - - -/*------------------- - Basic ---------------------*/ - -.ui.basic.buttons .button, -.ui.basic.button { - background: @basicBackground !important; - color: @basicTextColor !important; - font-weight: @basicFontWeight; - border-radius: @basicBorderRadius; - text-transform: @basicTextTransform; - text-shadow: none !important; - box-shadow: @basicBoxShadow; -} -.ui.basic.buttons { - box-shadow: @basicGroupBoxShadow; - border: @basicGroupBorder; - border-radius: @borderRadius; -} -.ui.basic.buttons .button { - border-radius: 0em; -} - -.ui.basic.buttons .button:hover, -.ui.basic.button:hover { - background: @basicHoverBackground !important; - color: @basicHoverTextColor !important; - box-shadow: @basicHoverBoxShadow; -} -.ui.basic.buttons .button:focus, -.ui.basic.button:focus { - background: @basicFocusBackground !important; - color: @basicFocusTextColor !important; - box-shadow: @basicFocusBoxShadow; -} -.ui.basic.buttons .button:active, -.ui.basic.button:active { - background: @basicDownBackground !important; - color: @basicDownTextColor !important; - box-shadow: @basicDownBoxShadow; -} -.ui.basic.buttons .active.button, -.ui.basic.active.button { - background: @basicActiveBackground !important; - box-shadow: @basicActiveBoxShadow !important; - color: @basicActiveTextColor !important; -} -.ui.basic.buttons .active.button:hover, -.ui.basic.active.button:hover { - background-color: @transparentBlack; -} - -/* Vertical */ -.ui.basic.buttons .button:hover { - box-shadow: @basicHoverBoxShadow inset; -} -.ui.basic.buttons .button:active { - box-shadow: @basicDownBoxShadow inset; -} -.ui.basic.buttons .active.button { - box-shadow: @basicActiveBoxShadow !important; -} - -/* Standard Basic Inverted */ -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - background-color: transparent !important; - color: @offWhite !important; - box-shadow: @basicInvertedBoxShadow !important; -} -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: @white !important; - box-shadow: @basicInvertedHoverBoxShadow !important; -} -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: @white !important; - box-shadow: @basicInvertedFocusBoxShadow !important; -} -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - background-color: @transparentWhite !important; - color: @white !important; - box-shadow: @basicInvertedDownBoxShadow !important; -} -.ui.basic.inverted.buttons .active.button, -.ui.basic.inverted.active.button { - background-color: @transparentWhite; - color: @invertedTextColor; - text-shadow: @invertedTextShadow; - box-shadow: @basicInvertedActiveBoxShadow; -} -.ui.basic.inverted.buttons .active.button:hover, -.ui.basic.inverted.active.button:hover { - background-color: @strongTransparentWhite; - box-shadow: @basicInvertedHoverBoxShadow !important; -} - - -/* Basic Group */ -.ui.basic.buttons .button { - border-left: @basicGroupBorder; - box-shadow: none; -} -.ui.basic.vertical.buttons .button { - border-left: none; -} -.ui.basic.vertical.buttons .button { - border-left-width: 0px; - border-top: @basicGroupBorder; -} -.ui.basic.vertical.buttons .button:first-child { - border-top-width: 0px; -} - - - -/*-------------- - Labeled Icon ----------------*/ - -.ui.labeled.icon.buttons .button, -.ui.labeled.icon.button { - position: relative; - padding-left: @labeledIconPadding !important; - padding-right: @horizontalPadding !important; -} - -/* Left Labeled */ -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - position: absolute; - height: 100%; - line-height: 1; - border-radius: 0px; - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; - text-align: center; - - margin: @labeledIconMargin; - width: @labeledIconWidth; - background-color: @labeledIconBackgroundColor; - color: @labeledIconColor; - box-shadow: @labeledIconLeftShadow; -} - -/* Left Labeled */ -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - top: 0em; - left: 0em; -} - -/* Right Labeled */ -.ui[class*="right labeled"].icon.button { - padding-right: @labeledIconPadding !important; - padding-left: @horizontalPadding !important; -} -.ui[class*="right labeled"].icon.button > .icon { - left: auto; - right: 0em; - border-radius: 0px; - border-top-right-radius: inherit; - border-bottom-right-radius: inherit; - box-shadow: @labeledIconRightShadow; -} - - -.ui.labeled.icon.buttons > .button > .icon:before, -.ui.labeled.icon.button > .icon:before, -.ui.labeled.icon.buttons > .button > .icon:after, -.ui.labeled.icon.button > .icon:after { - display: block; - position: absolute; - width: 100%; - top: 50%; - text-align: center; - transform: translateY(-50%); -} - -.ui.labeled.icon.buttons .button > .icon { - border-radius: 0em; -} -.ui.labeled.icon.buttons .button:first-child > .icon { - border-top-left-radius: @borderRadius; - border-bottom-left-radius: @borderRadius; -} -.ui.labeled.icon.buttons .button:last-child > .icon { - border-top-right-radius: @borderRadius; - border-bottom-right-radius: @borderRadius; -} -.ui.vertical.labeled.icon.buttons .button:first-child > .icon { - border-radius: 0em; - border-top-left-radius: @borderRadius; -} -.ui.vertical.labeled.icon.buttons .button:last-child > .icon { - border-radius: 0em; - border-bottom-left-radius: @borderRadius; -} - -/* Fluid Labeled */ -.ui.fluid[class*="left labeled"].icon.button, -.ui.fluid[class*="right labeled"].icon.button { - padding-left: @horizontalPadding !important; - padding-right: @horizontalPadding !important; -} - - - - -/*-------------- - Toggle ----------------*/ - -/* Toggle (Modifies active state to give affordances) */ -.ui.toggle.buttons .active.button, -.ui.buttons .button.toggle.active, -.ui.button.toggle.active { - background-color: @positiveColor !important; - box-shadow: none !important; - text-shadow: @invertedTextShadow; - color: @invertedTextColor !important; -} -.ui.button.toggle.active:hover { - background-color: @positiveColorHover !important; - text-shadow: @invertedTextShadow; - color: @invertedTextColor !important; -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.button { - border-radius: 10em; -} -.ui.circular.button > .icon { - width: 1em; - vertical-align: baseline; -} - - -/*------------------- - Or Buttons ---------------------*/ - -.ui.buttons .or { - position: relative; - width: @orGap; - height: @orHeight; - z-index: @orZIndex; -} -.ui.buttons .or:before { - position: absolute; - text-align: center; - border-radius: @circularRadius; - - content: @orText; - top: 50%; - left: 50%; - background-color: @orBackgroundColor; - text-shadow: @orTextShadow; - - margin-top: @orVerticalOffset; - margin-left: @orHorizontalOffset; - - width: @orCircleSize; - height: @orCircleSize; - - line-height: @orLineHeight; - color: @orTextColor; - - font-style: @orTextStyle; - font-weight: @orTextWeight; - - box-shadow: @orBoxShadow; -} -.ui.buttons .or[data-text]:before { - content: attr(data-text); -} - -/* Fluid Or */ -.ui.fluid.buttons .or { - width: 0em !important; -} -.ui.fluid.buttons .or:after { - display: none; -} - - -/*------------------- - Attached ---------------------*/ - - -/* Singular */ -.ui.attached.button { - position: relative; - display: block; - margin: 0em; - border-radius: 0em; - box-shadow: @attachedBoxShadow !important; -} - -/* Top / Bottom */ -.ui.attached.top.button { - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui.attached.bottom.button { - border-radius: 0em 0em @borderRadius @borderRadius; -} - -/* Left / Right */ -.ui.left.attached.button { - display: inline-block; - border-left: none; - text-align: right; - - padding-right: @attachedHorizontalPadding; - border-radius: @borderRadius 0em 0em @borderRadius; -} -.ui.right.attached.button { - display: inline-block; - text-align: left; - padding-left: @attachedHorizontalPadding; - border-radius: 0em @borderRadius @borderRadius 0em; -} - -/* Plural */ -.ui.attached.buttons { - position: relative; - display: flex; - border-radius: 0em; - width: auto !important; - z-index: @attachedZIndex; - margin-left: @attachedOffset; - margin-right: @attachedOffset; -} -.ui.attached.buttons .button { - margin: 0em; -} -.ui.attached.buttons .button:first-child { - border-radius: 0em; -} -.ui.attached.buttons .button:last-child { - border-radius: 0em; -} - -/* Top / Bottom */ -.ui[class*="top attached"].buttons { - margin-bottom: @attachedOffset; - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui[class*="top attached"].buttons .button:first-child { - border-radius: @borderRadius 0em 0em 0em; -} -.ui[class*="top attached"].buttons .button:last-child { - border-radius: 0em @borderRadius 0em 0em; -} - -.ui[class*="bottom attached"].buttons { - margin-top: @attachedOffset; - border-radius: 0em 0em @borderRadius @borderRadius; -} -.ui[class*="bottom attached"].buttons .button:first-child { - border-radius: 0em 0em 0em @borderRadius; -} -.ui[class*="bottom attached"].buttons .button:last-child { - border-radius: 0em 0em @borderRadius 0em; -} - -/* Left / Right */ -.ui[class*="left attached"].buttons { - display: inline-flex; - margin-right: 0em; - margin-left: @attachedOffset; - border-radius: 0em @borderRadius @borderRadius 0em; -} -.ui[class*="left attached"].buttons .button:first-child { - margin-left: @attachedOffset; - border-radius: 0em @borderRadius 0em 0em; -} -.ui[class*="left attached"].buttons .button:last-child { - margin-left: @attachedOffset; - border-radius: 0em 0em @borderRadius 0em; -} - -.ui[class*="right attached"].buttons { - display: inline-flex; - margin-left: 0em; - margin-right: @attachedOffset; - border-radius: @borderRadius 0em 0em @borderRadius; -} -.ui[class*="right attached"].buttons .button:first-child { - margin-left: @attachedOffset; - border-radius: @borderRadius 0em 0em 0em; -} -.ui[class*="right attached"].buttons .button:last-child { - margin-left: @attachedOffset; - border-radius: 0em 0em 0em @borderRadius; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.buttons, -.ui.fluid.button { - width: 100%; -} -.ui.fluid.button { - display: block; -} - -.ui.two.buttons { - width: 100%; -} -.ui.two.buttons > .button { - width: 50%; -} - -.ui.three.buttons { - width: 100%; -} -.ui.three.buttons > .button { - width: 33.333%; -} - -.ui.four.buttons { - width: 100%; -} -.ui.four.buttons > .button { - width: 25%; -} - -.ui.five.buttons { - width: 100%; -} -.ui.five.buttons > .button { - width: 20%; -} - -.ui.six.buttons { - width: 100%; -} -.ui.six.buttons > .button { - width: 16.666%; -} - -.ui.seven.buttons { - width: 100%; -} -.ui.seven.buttons > .button { - width: 14.285%; -} - -.ui.eight.buttons { - width: 100%; -} -.ui.eight.buttons > .button { - width: 12.500%; -} - -.ui.nine.buttons { - width: 100%; -} -.ui.nine.buttons > .button { - width: 11.11%; -} - -.ui.ten.buttons { - width: 100%; -} -.ui.ten.buttons > .button { - width: 10%; -} - -.ui.eleven.buttons { - width: 100%; -} -.ui.eleven.buttons > .button { - width: 9.09%; -} - -.ui.twelve.buttons { - width: 100%; -} -.ui.twelve.buttons > .button { - width: 8.3333%; -} - -/* Fluid Vertical Buttons */ -.ui.fluid.vertical.buttons, -.ui.fluid.vertical.buttons > .button { - display: flex; - width: auto; -} - -.ui.two.vertical.buttons > .button { - height: 50%; -} -.ui.three.vertical.buttons > .button { - height: 33.333%; -} -.ui.four.vertical.buttons > .button { - height: 25%; -} -.ui.five.vertical.buttons > .button { - height: 20%; -} -.ui.six.vertical.buttons > .button { - height: 16.666%; -} -.ui.seven.vertical.buttons > .button { - height: 14.285%; -} -.ui.eight.vertical.buttons > .button { - height: 12.500%; -} -.ui.nine.vertical.buttons > .button { - height: 11.11%; -} -.ui.ten.vertical.buttons > .button { - height: 10%; -} -.ui.eleven.vertical.buttons > .button { - height: 9.09%; -} -.ui.twelve.vertical.buttons > .button { - height: 8.3333%; -} - - -/*------------------- - Colors ---------------------*/ - -/*--- Black ---*/ -.ui.black.buttons .button, -.ui.black.button { - background-color: @black; - color: @blackTextColor; - text-shadow: @blackTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.black.button { - box-shadow: @coloredBoxShadow; -} -.ui.black.buttons .button:hover, -.ui.black.button:hover { - background-color: @blackHover; - color: @blackTextColor; - text-shadow: @blackTextShadow; -} -.ui.black.buttons .button:focus, -.ui.black.button:focus { - background-color: @blackFocus; - color: @blackTextColor; - text-shadow: @blackTextShadow; -} -.ui.black.buttons .button:active, -.ui.black.button:active { - background-color: @blackDown; - color: @blackTextColor; - text-shadow: @blackTextShadow; -} -.ui.black.buttons .active.button, -.ui.black.buttons .active.button:active, -.ui.black.active.button, -.ui.black.button .active.button:active { - background-color: @blackActive; - color: @blackTextColor; - text-shadow: @blackTextShadow; -} - -/* Basic */ -.ui.basic.black.buttons .button, -.ui.basic.black.button { - box-shadow: 0px 0px 0px @basicBorderSize @black inset !important; - color: @black !important; -} -.ui.basic.black.buttons .button:hover, -.ui.basic.black.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blackHover inset !important; - color: @blackHover !important; -} -.ui.basic.black.buttons .button:focus, -.ui.basic.black.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blackFocus inset !important; - color: @blackHover !important; -} -.ui.basic.black.buttons .active.button, -.ui.basic.black.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blackActive inset !important; - color: @blackDown !important; -} -.ui.basic.black.buttons .button:active, -.ui.basic.black.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @blackDown inset !important; - color: @blackDown !important; -} -.ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.black.buttons .button, -.ui.inverted.black.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @solidBorderColor inset !important; - color: @invertedTextColor; -} -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover, -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus, -.ui.inverted.black.buttons .button.active, -.ui.inverted.black.button.active, -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - box-shadow: none !important; - color: @lightBlackTextColor; -} -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover { - background-color: @lightBlackHover; -} -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus { - background-color: @lightBlackFocus; -} -.ui.inverted.black.buttons .active.button, -.ui.inverted.black.active.button { - background-color: @lightBlackActive; -} -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - background-color: @lightBlackDown; -} - -/* Inverted Basic */ -.ui.inverted.black.basic.buttons .button, -.ui.inverted.black.buttons .basic.button, -.ui.inverted.black.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.black.basic.buttons .button:hover, -.ui.inverted.black.buttons .basic.button:hover, -.ui.inverted.black.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlackHover inset !important; - color: @white !important; -} -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlackFocus inset !important; - color: @lightBlack !important; -} -.ui.inverted.black.basic.buttons .active.button, -.ui.inverted.black.buttons .basic.active.button, -.ui.inverted.black.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlackActive inset !important; - color: @white !important; -} -.ui.inverted.black.basic.buttons .button:active, -.ui.inverted.black.buttons .basic.button:active, -.ui.inverted.black.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlackDown inset !important; - color: @white !important; -} - -/*--- Grey ---*/ -.ui.grey.buttons .button, -.ui.grey.button { - background-color: @grey; - color: @greyTextColor; - text-shadow: @greyTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.grey.button { - box-shadow: @coloredBoxShadow; -} -.ui.grey.buttons .button:hover, -.ui.grey.button:hover { - background-color: @greyHover; - color: @greyTextColor; - text-shadow: @greyTextShadow; -} -.ui.grey.buttons .button:focus, -.ui.grey.button:focus { - background-color: @greyFocus; - color: @greyTextColor; - text-shadow: @greyTextShadow; -} -.ui.grey.buttons .button:active, -.ui.grey.button:active { - background-color: @greyDown; - color: @greyTextColor; - text-shadow: @greyTextShadow; -} -.ui.grey.buttons .active.button, -.ui.grey.buttons .active.button:active, -.ui.grey.active.button, -.ui.grey.button .active.button:active { - background-color: @greyActive; - color: @greyTextColor; - text-shadow: @greyTextShadow; -} - -/* Basic */ -.ui.basic.grey.buttons .button, -.ui.basic.grey.button { - box-shadow: 0px 0px 0px @basicBorderSize @grey inset !important; - color: @grey !important; -} -.ui.basic.grey.buttons .button:hover, -.ui.basic.grey.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greyHover inset !important; - color: @greyHover !important; -} -.ui.basic.grey.buttons .button:focus, -.ui.basic.grey.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greyFocus inset !important; - color: @greyHover !important; -} -.ui.basic.grey.buttons .active.button, -.ui.basic.grey.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greyActive inset !important; - color: @greyDown !important; -} -.ui.basic.grey.buttons .button:active, -.ui.basic.grey.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @greyDown inset !important; - color: @greyDown !important; -} -.ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.grey.buttons .button, -.ui.inverted.grey.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @solidBorderColor inset !important; - color: @invertedTextColor; -} -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover, -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus, -.ui.inverted.grey.buttons .button.active, -.ui.inverted.grey.button.active, -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - box-shadow: none !important; - color: @lightGreyTextColor; -} -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover { - background-color: @lightGreyHover; -} -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus { - background-color: @lightGreyFocus; -} -.ui.inverted.grey.buttons .active.button, -.ui.inverted.grey.active.button { - background-color: @lightGreyActive; -} -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - background-color: @lightGreyDown; -} - -/* Inverted Basic */ -.ui.inverted.grey.basic.buttons .button, -.ui.inverted.grey.buttons .basic.button, -.ui.inverted.grey.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.grey.basic.buttons .button:hover, -.ui.inverted.grey.buttons .basic.button:hover, -.ui.inverted.grey.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreyHover inset !important; - color: @white !important; -} -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreyFocus inset !important; - color: @lightGrey !important; -} -.ui.inverted.grey.basic.buttons .active.button, -.ui.inverted.grey.buttons .basic.active.button, -.ui.inverted.grey.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreyActive inset !important; - color: @white !important; -} -.ui.inverted.grey.basic.buttons .button:active, -.ui.inverted.grey.buttons .basic.button:active, -.ui.inverted.grey.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreyDown inset !important; - color: @white !important; -} - - -/*--- Brown ---*/ -.ui.brown.buttons .button, -.ui.brown.button { - background-color: @brown; - color: @brownTextColor; - text-shadow: @brownTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.brown.button { - box-shadow: @coloredBoxShadow; -} -.ui.brown.buttons .button:hover, -.ui.brown.button:hover { - background-color: @brownHover; - color: @brownTextColor; - text-shadow: @brownTextShadow; -} -.ui.brown.buttons .button:focus, -.ui.brown.button:focus { - background-color: @brownFocus; - color: @brownTextColor; - text-shadow: @brownTextShadow; -} -.ui.brown.buttons .button:active, -.ui.brown.button:active { - background-color: @brownDown; - color: @brownTextColor; - text-shadow: @brownTextShadow; -} -.ui.brown.buttons .active.button, -.ui.brown.buttons .active.button:active, -.ui.brown.active.button, -.ui.brown.button .active.button:active { - background-color: @brownActive; - color: @brownTextColor; - text-shadow: @brownTextShadow; -} - -/* Basic */ -.ui.basic.brown.buttons .button, -.ui.basic.brown.button { - box-shadow: 0px 0px 0px @basicBorderSize @brown inset !important; - color: @brown !important; -} -.ui.basic.brown.buttons .button:hover, -.ui.basic.brown.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @brownHover inset !important; - color: @brownHover !important; -} -.ui.basic.brown.buttons .button:focus, -.ui.basic.brown.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @brownFocus inset !important; - color: @brownHover !important; -} -.ui.basic.brown.buttons .active.button, -.ui.basic.brown.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @brownActive inset !important; - color: @brownDown !important; -} -.ui.basic.brown.buttons .button:active, -.ui.basic.brown.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @brownDown inset !important; - color: @brownDown !important; -} -.ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.brown.buttons .button, -.ui.inverted.brown.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightBrown inset !important; - color: @lightBrown; -} -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover, -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus, -.ui.inverted.brown.buttons .button.active, -.ui.inverted.brown.button.active, -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - box-shadow: none !important; - color: @lightBrownTextColor; -} -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover { - background-color: @lightBrownHover; -} -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus { - background-color: @lightBrownFocus; -} -.ui.inverted.brown.buttons .active.button, -.ui.inverted.brown.active.button { - background-color: @lightBrownActive; -} -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - background-color: @lightBrownDown; -} - -/* Inverted Basic */ -.ui.inverted.brown.basic.buttons .button, -.ui.inverted.brown.buttons .basic.button, -.ui.inverted.brown.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.brown.basic.buttons .button:hover, -.ui.inverted.brown.buttons .basic.button:hover, -.ui.inverted.brown.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBrownHover inset !important; - color: @lightBrown !important; -} -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBrownFocus inset !important; - color: @lightBrown !important; -} -.ui.inverted.brown.basic.buttons .active.button, -.ui.inverted.brown.buttons .basic.active.button, -.ui.inverted.brown.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBrownActive inset !important; - color: @lightBrown !important; -} -.ui.inverted.brown.basic.buttons .button:active, -.ui.inverted.brown.buttons .basic.button:active, -.ui.inverted.brown.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBrownDown inset !important; - color: @lightBrown !important; -} - -/*--- Blue ---*/ -.ui.blue.buttons .button, -.ui.blue.button { - background-color: @blue; - color: @blueTextColor; - text-shadow: @blueTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.blue.button { - box-shadow: @coloredBoxShadow; -} -.ui.blue.buttons .button:hover, -.ui.blue.button:hover { - background-color: @blueHover; - color: @blueTextColor; - text-shadow: @blueTextShadow; -} -.ui.blue.buttons .button:focus, -.ui.blue.button:focus { - background-color: @blueFocus; - color: @blueTextColor; - text-shadow: @blueTextShadow; -} -.ui.blue.buttons .button:active, -.ui.blue.button:active { - background-color: @blueDown; - color: @blueTextColor; - text-shadow: @blueTextShadow; -} -.ui.blue.buttons .active.button, -.ui.blue.buttons .active.button:active, -.ui.blue.active.button, -.ui.blue.button .active.button:active { - background-color: @blueActive; - color: @blueTextColor; - text-shadow: @blueTextShadow; -} - -/* Basic */ -.ui.basic.blue.buttons .button, -.ui.basic.blue.button { - box-shadow: 0px 0px 0px @basicBorderSize @blue inset !important; - color: @blue !important; -} -.ui.basic.blue.buttons .button:hover, -.ui.basic.blue.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blueHover inset !important; - color: @blueHover !important; -} -.ui.basic.blue.buttons .button:focus, -.ui.basic.blue.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blueFocus inset !important; - color: @blueHover !important; -} -.ui.basic.blue.buttons .active.button, -.ui.basic.blue.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @blueActive inset !important; - color: @blueDown !important; -} -.ui.basic.blue.buttons .button:active, -.ui.basic.blue.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @blueDown inset !important; - color: @blueDown !important; -} -.ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.blue.buttons .button, -.ui.inverted.blue.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlue inset !important; - color: @lightBlue; -} -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover, -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus, -.ui.inverted.blue.buttons .button.active, -.ui.inverted.blue.button.active, -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - box-shadow: none !important; - color: @lightBlueTextColor; -} -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover { - background-color: @lightBlueHover; -} -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus { - background-color: @lightBlueFocus; -} -.ui.inverted.blue.buttons .active.button, -.ui.inverted.blue.active.button { - background-color: @lightBlueActive; -} -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - background-color: @lightBlueDown; -} - -/* Inverted Basic */ -.ui.inverted.blue.basic.buttons .button, -.ui.inverted.blue.buttons .basic.button, -.ui.inverted.blue.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.blue.basic.buttons .button:hover, -.ui.inverted.blue.buttons .basic.button:hover, -.ui.inverted.blue.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlueHover inset !important; - color: @lightBlue !important; -} -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlueFocus inset !important; - color: @lightBlue !important; -} -.ui.inverted.blue.basic.buttons .active.button, -.ui.inverted.blue.buttons .basic.active.button, -.ui.inverted.blue.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlueActive inset !important; - color: @lightBlue !important; -} -.ui.inverted.blue.basic.buttons .button:active, -.ui.inverted.blue.buttons .basic.button:active, -.ui.inverted.blue.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightBlueDown inset !important; - color: @lightBlue !important; -} - -/*--- Green ---*/ -.ui.green.buttons .button, -.ui.green.button { - background-color: @green; - color: @greenTextColor; - text-shadow: @greenTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.green.button { - box-shadow: @coloredBoxShadow; -} -.ui.green.buttons .button:hover, -.ui.green.button:hover { - background-color: @greenHover; - color: @greenTextColor; - text-shadow: @greenTextShadow; -} -.ui.green.buttons .button:focus, -.ui.green.button:focus { - background-color: @greenFocus; - color: @greenTextColor; - text-shadow: @greenTextShadow; -} -.ui.green.buttons .button:active, -.ui.green.button:active { - background-color: @greenDown; - color: @greenTextColor; - text-shadow: @greenTextShadow; -} -.ui.green.buttons .active.button, -.ui.green.buttons .active.button:active, -.ui.green.active.button, -.ui.green.button .active.button:active { - background-color: @greenActive; - color: @greenTextColor; - text-shadow: @greenTextShadow; -} - - -/* Basic */ -.ui.basic.green.buttons .button, -.ui.basic.green.button { - box-shadow: 0px 0px 0px @basicBorderSize @green inset !important; - color: @green !important; -} -.ui.basic.green.buttons .button:hover, -.ui.basic.green.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greenHover inset !important; - color: @greenHover !important; -} -.ui.basic.green.buttons .button:focus, -.ui.basic.green.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greenFocus inset !important; - color: @greenHover !important; -} -.ui.basic.green.buttons .active.button, -.ui.basic.green.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @greenActive inset !important; - color: @greenDown !important; -} -.ui.basic.green.buttons .button:active, -.ui.basic.green.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @greenDown inset !important; - color: @greenDown !important; -} -.ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.green.buttons .button, -.ui.inverted.green.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreen inset !important; - color: @lightGreen; -} -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover, -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus, -.ui.inverted.green.buttons .button.active, -.ui.inverted.green.button.active, -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - box-shadow: none !important; - color: @greenTextColor; -} -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover { - background-color: @lightGreenHover; -} -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus { - background-color: @lightGreenFocus; -} -.ui.inverted.green.buttons .active.button, -.ui.inverted.green.active.button { - background-color: @lightGreenActive; -} -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - background-color: @lightGreenDown; -} - -/* Inverted Basic */ -.ui.inverted.green.basic.buttons .button, -.ui.inverted.green.buttons .basic.button, -.ui.inverted.green.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.green.basic.buttons .button:hover, -.ui.inverted.green.buttons .basic.button:hover, -.ui.inverted.green.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreenHover inset !important; - color: @lightGreen !important; -} -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreenFocus inset !important; - color: @lightGreen !important; -} -.ui.inverted.green.basic.buttons .active.button, -.ui.inverted.green.buttons .basic.active.button, -.ui.inverted.green.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreenActive inset !important; - color: @lightGreen !important; -} -.ui.inverted.green.basic.buttons .button:active, -.ui.inverted.green.buttons .basic.button:active, -.ui.inverted.green.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightGreenDown inset !important; - color: @lightGreen !important; -} - -/*--- Orange ---*/ -.ui.orange.buttons .button, -.ui.orange.button { - background-color: @orange; - color: @orangeTextColor; - text-shadow: @orangeTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.orange.button { - box-shadow: @coloredBoxShadow; -} -.ui.orange.buttons .button:hover, -.ui.orange.button:hover { - background-color: @orangeHover; - color: @orangeTextColor; - text-shadow: @orangeTextShadow; -} -.ui.orange.buttons .button:focus, -.ui.orange.button:focus { - background-color: @orangeFocus; - color: @orangeTextColor; - text-shadow: @orangeTextShadow; -} -.ui.orange.buttons .button:active, -.ui.orange.button:active { - background-color: @orangeDown; - color: @orangeTextColor; - text-shadow: @orangeTextShadow; -} -.ui.orange.buttons .active.button, -.ui.orange.buttons .active.button:active, -.ui.orange.active.button, -.ui.orange.button .active.button:active { - background-color: @orangeActive; - color: @orangeTextColor; - text-shadow: @orangeTextShadow; -} - -/* Basic */ -.ui.basic.orange.buttons .button, -.ui.basic.orange.button { - box-shadow: 0px 0px 0px @basicBorderSize @orange inset !important; - color: @orange !important; -} -.ui.basic.orange.buttons .button:hover, -.ui.basic.orange.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @orangeHover inset !important; - color: @orangeHover !important; -} -.ui.basic.orange.buttons .button:focus, -.ui.basic.orange.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @orangeFocus inset !important; - color: @orangeHover !important; -} -.ui.basic.orange.buttons .active.button, -.ui.basic.orange.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @orangeActive inset !important; - color: @orangeDown !important; -} -.ui.basic.orange.buttons .button:active, -.ui.basic.orange.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @orangeDown inset !important; - color: @orangeDown !important; -} -.ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.orange.buttons .button, -.ui.inverted.orange.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightOrange inset !important; - color: @lightOrange; -} -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover, -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus, -.ui.inverted.orange.buttons .button.active, -.ui.inverted.orange.button.active, -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - box-shadow: none !important; - color: @lightOrangeTextColor; -} -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover { - background-color: @lightOrangeHover; -} -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus { - background-color: @lightOrangeFocus; -} -.ui.inverted.orange.buttons .active.button, -.ui.inverted.orange.active.button { - background-color: @lightOrangeActive; -} -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - background-color: @lightOrangeDown; -} - -/* Inverted Basic */ -.ui.inverted.orange.basic.buttons .button, -.ui.inverted.orange.buttons .basic.button, -.ui.inverted.orange.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.orange.basic.buttons .button:hover, -.ui.inverted.orange.buttons .basic.button:hover, -.ui.inverted.orange.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOrangeHover inset !important; - color: @lightOrange !important; -} -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOrangeFocus inset !important; - color: @lightOrange !important; -} -.ui.inverted.orange.basic.buttons .active.button, -.ui.inverted.orange.buttons .basic.active.button, -.ui.inverted.orange.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOrangeActive inset !important; - color: @lightOrange !important; -} -.ui.inverted.orange.basic.buttons .button:active, -.ui.inverted.orange.buttons .basic.button:active, -.ui.inverted.orange.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOrangeDown inset !important; - color: @lightOrange !important; -} - -/*--- Pink ---*/ -.ui.pink.buttons .button, -.ui.pink.button { - background-color: @pink; - color: @pinkTextColor; - text-shadow: @pinkTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.pink.button { - box-shadow: @coloredBoxShadow; -} -.ui.pink.buttons .button:hover, -.ui.pink.button:hover { - background-color: @pinkHover; - color: @pinkTextColor; - text-shadow: @pinkTextShadow; -} -.ui.pink.buttons .button:focus, -.ui.pink.button:focus { - background-color: @pinkFocus; - color: @pinkTextColor; - text-shadow: @pinkTextShadow; -} -.ui.pink.buttons .button:active, -.ui.pink.button:active { - background-color: @pinkDown; - color: @pinkTextColor; - text-shadow: @pinkTextShadow; -} -.ui.pink.buttons .active.button, -.ui.pink.buttons .active.button:active, -.ui.pink.active.button, -.ui.pink.button .active.button:active { - background-color: @pinkActive; - color: @pinkTextColor; - text-shadow: @pinkTextShadow; -} - -/* Basic */ -.ui.basic.pink.buttons .button, -.ui.basic.pink.button { - box-shadow: 0px 0px 0px @basicBorderSize @pink inset !important; - color: @pink !important; -} -.ui.basic.pink.buttons .button:hover, -.ui.basic.pink.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @pinkHover inset !important; - color: @pinkHover !important; -} -.ui.basic.pink.buttons .button:focus, -.ui.basic.pink.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @pinkFocus inset !important; - color: @pinkHover !important; -} -.ui.basic.pink.buttons .active.button, -.ui.basic.pink.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @pinkActive inset !important; - color: @pinkDown !important; -} -.ui.basic.pink.buttons .button:active, -.ui.basic.pink.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @pinkDown inset !important; - color: @pinkDown !important; -} -.ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.pink.buttons .button, -.ui.inverted.pink.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightPink inset !important; - color: @lightPink; -} -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover, -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus, -.ui.inverted.pink.buttons .button.active, -.ui.inverted.pink.button.active, -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - box-shadow: none !important; - color: @lightPinkTextColor; -} -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover { - background-color: @lightPinkHover; -} -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus { - background-color: @lightPinkFocus; -} -.ui.inverted.pink.buttons .active.button, -.ui.inverted.pink.active.button { - background-color: @lightPinkActive; -} -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - background-color: @lightPinkDown; -} - -/* Inverted Basic */ -.ui.inverted.pink.basic.buttons .button, -.ui.inverted.pink.buttons .basic.button, -.ui.inverted.pink.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.pink.basic.buttons .button:hover, -.ui.inverted.pink.buttons .basic.button:hover, -.ui.inverted.pink.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPinkHover inset !important; - color: @lightPink !important; -} -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPinkFocus inset !important; - color: @lightPink !important; -} -.ui.inverted.pink.basic.buttons .active.button, -.ui.inverted.pink.buttons .basic.active.button, -.ui.inverted.pink.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPinkActive inset !important; - color: @lightPink !important; -} -.ui.inverted.pink.basic.buttons .button:active, -.ui.inverted.pink.buttons .basic.button:active, -.ui.inverted.pink.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPinkDown inset !important; - color: @lightPink !important; -} - - -/*--- Violet ---*/ -.ui.violet.buttons .button, -.ui.violet.button { - background-color: @violet; - color: @violetTextColor; - text-shadow: @violetTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.violet.button { - box-shadow: @coloredBoxShadow; -} -.ui.violet.buttons .button:hover, -.ui.violet.button:hover { - background-color: @violetHover; - color: @violetTextColor; - text-shadow: @violetTextShadow; -} -.ui.violet.buttons .button:focus, -.ui.violet.button:focus { - background-color: @violetFocus; - color: @violetTextColor; - text-shadow: @violetTextShadow; -} -.ui.violet.buttons .button:active, -.ui.violet.button:active { - background-color: @violetDown; - color: @violetTextColor; - text-shadow: @violetTextShadow; -} -.ui.violet.buttons .active.button, -.ui.violet.buttons .active.button:active, -.ui.violet.active.button, -.ui.violet.button .active.button:active { - background-color: @violetActive; - color: @violetTextColor; - text-shadow: @violetTextShadow; -} - -/* Basic */ -.ui.basic.violet.buttons .button, -.ui.basic.violet.button { - box-shadow: 0px 0px 0px @basicBorderSize @violet inset !important; - color: @violet !important; -} -.ui.basic.violet.buttons .button:hover, -.ui.basic.violet.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @violetHover inset !important; - color: @violetHover !important; -} -.ui.basic.violet.buttons .button:focus, -.ui.basic.violet.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @violetFocus inset !important; - color: @violetHover !important; -} -.ui.basic.violet.buttons .active.button, -.ui.basic.violet.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @violetActive inset !important; - color: @violetDown !important; -} -.ui.basic.violet.buttons .button:active, -.ui.basic.violet.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @violetDown inset !important; - color: @violetDown !important; -} -.ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.violet.buttons .button, -.ui.inverted.violet.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightViolet inset !important; - color: @lightViolet; -} -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover, -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus, -.ui.inverted.violet.buttons .button.active, -.ui.inverted.violet.button.active, -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - box-shadow: none !important; - color: @lightVioletTextColor; -} -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover { - background-color: @lightVioletHover; -} -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus { - background-color: @lightVioletFocus; -} -.ui.inverted.violet.buttons .active.button, -.ui.inverted.violet.active.button { - background-color: @lightVioletActive; -} -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - background-color: @lightVioletDown; -} - -/* Inverted Basic */ -.ui.inverted.violet.basic.buttons .button, -.ui.inverted.violet.buttons .basic.button, -.ui.inverted.violet.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.violet.basic.buttons .button:hover, -.ui.inverted.violet.buttons .basic.button:hover, -.ui.inverted.violet.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightVioletHover inset !important; - color: @lightViolet !important; -} -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightVioletFocus inset !important; - color: @lightViolet !important; -} -.ui.inverted.violet.basic.buttons .active.button, -.ui.inverted.violet.buttons .basic.active.button, -.ui.inverted.violet.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightVioletActive inset !important; - color: @lightViolet !important; -} -.ui.inverted.violet.basic.buttons .button:active, -.ui.inverted.violet.buttons .basic.button:active, -.ui.inverted.violet.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightVioletDown inset !important; - color: @lightViolet !important; -} - -/*--- Purple ---*/ -.ui.purple.buttons .button, -.ui.purple.button { - background-color: @purple; - color: @purpleTextColor; - text-shadow: @purpleTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.purple.button { - box-shadow: @coloredBoxShadow; -} -.ui.purple.buttons .button:hover, -.ui.purple.button:hover { - background-color: @purpleHover; - color: @purpleTextColor; - text-shadow: @purpleTextShadow; -} -.ui.purple.buttons .button:focus, -.ui.purple.button:focus { - background-color: @purpleFocus; - color: @purpleTextColor; - text-shadow: @purpleTextShadow; -} -.ui.purple.buttons .button:active, -.ui.purple.button:active { - background-color: @purpleDown; - color: @purpleTextColor; - text-shadow: @purpleTextShadow; -} -.ui.purple.buttons .active.button, -.ui.purple.buttons .active.button:active, -.ui.purple.active.button, -.ui.purple.button .active.button:active { - background-color: @purpleActive; - color: @purpleTextColor; - text-shadow: @purpleTextShadow; -} - -/* Basic */ -.ui.basic.purple.buttons .button, -.ui.basic.purple.button { - box-shadow: 0px 0px 0px @basicBorderSize @purple inset !important; - color: @purple !important; -} -.ui.basic.purple.buttons .button:hover, -.ui.basic.purple.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @purpleHover inset !important; - color: @purpleHover !important; -} -.ui.basic.purple.buttons .button:focus, -.ui.basic.purple.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @purpleFocus inset !important; - color: @purpleHover !important; -} -.ui.basic.purple.buttons .active.button, -.ui.basic.purple.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @purpleActive inset !important; - color: @purpleDown !important; -} -.ui.basic.purple.buttons .button:active, -.ui.basic.purple.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @purpleDown inset !important; - color: @purpleDown !important; -} -.ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.purple.buttons .button, -.ui.inverted.purple.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightPurple inset !important; - color: @lightPurple; -} -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover, -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus, -.ui.inverted.purple.buttons .button.active, -.ui.inverted.purple.button.active, -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - box-shadow: none !important; - color: @lightPurpleTextColor; -} -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover { - background-color: @lightPurpleHover; -} -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus { - background-color: @lightPurpleFocus; -} -.ui.inverted.purple.buttons .active.button, -.ui.inverted.purple.active.button { - background-color: @lightPurpleActive; -} -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - background-color: @lightPurpleDown; -} - -/* Inverted Basic */ -.ui.inverted.purple.basic.buttons .button, -.ui.inverted.purple.buttons .basic.button, -.ui.inverted.purple.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.purple.basic.buttons .button:hover, -.ui.inverted.purple.buttons .basic.button:hover, -.ui.inverted.purple.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPurpleHover inset !important; - color: @lightPurple !important; -} -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPurpleFocus inset !important; - color: @lightPurple !important; -} -.ui.inverted.purple.basic.buttons .active.button, -.ui.inverted.purple.buttons .basic.active.button, -.ui.inverted.purple.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPurpleActive inset !important; - color: @lightPurple !important; -} -.ui.inverted.purple.basic.buttons .button:active, -.ui.inverted.purple.buttons .basic.button:active, -.ui.inverted.purple.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPurpleDown inset !important; - color: @lightPurple !important; -} - -/*--- Red ---*/ -.ui.red.buttons .button, -.ui.red.button { - background-color: @red; - color: @redTextColor; - text-shadow: @redTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.red.button { - box-shadow: @coloredBoxShadow; -} -.ui.red.buttons .button:hover, -.ui.red.button:hover { - background-color: @redHover; - color: @redTextColor; - text-shadow: @redTextShadow; -} -.ui.red.buttons .button:focus, -.ui.red.button:focus { - background-color: @redFocus; - color: @redTextColor; - text-shadow: @redTextShadow; -} -.ui.red.buttons .button:active, -.ui.red.button:active { - background-color: @redDown; - color: @redTextColor; - text-shadow: @redTextShadow; -} -.ui.red.buttons .active.button, -.ui.red.buttons .active.button:active, -.ui.red.active.button, -.ui.red.button .active.button:active { - background-color: @redActive; - color: @redTextColor; - text-shadow: @redTextShadow; -} - -/* Basic */ -.ui.basic.red.buttons .button, -.ui.basic.red.button { - box-shadow: 0px 0px 0px @basicBorderSize @red inset !important; - color: @red !important; -} -.ui.basic.red.buttons .button:hover, -.ui.basic.red.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @redHover inset !important; - color: @redHover !important; -} -.ui.basic.red.buttons .button:focus, -.ui.basic.red.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @redFocus inset !important; - color: @redHover !important; -} -.ui.basic.red.buttons .active.button, -.ui.basic.red.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @redActive inset !important; - color: @redDown !important; -} -.ui.basic.red.buttons .button:active, -.ui.basic.red.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @redDown inset !important; - color: @redDown !important; -} -.ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.red.buttons .button, -.ui.inverted.red.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightRed inset !important; - color: @lightRed; -} -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover, -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus, -.ui.inverted.red.buttons .button.active, -.ui.inverted.red.button.active, -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - box-shadow: none !important; - color: @lightRedTextColor; -} -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover { - background-color: @lightRedHover; -} -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus { - background-color: @lightRedFocus; -} -.ui.inverted.red.buttons .active.button, -.ui.inverted.red.active.button { - background-color: @lightRedActive; -} -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - background-color: @lightRedDown; -} - -/* Inverted Basic */ -.ui.inverted.red.basic.buttons .button, -.ui.inverted.red.buttons .basic.button, -.ui.inverted.red.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.red.basic.buttons .button:hover, -.ui.inverted.red.buttons .basic.button:hover, -.ui.inverted.red.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightRedHover inset !important; - color: @lightRed !important; -} -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightRedFocus inset !important; - color: @lightRed !important; -} -.ui.inverted.red.basic.buttons .active.button, -.ui.inverted.red.buttons .basic.active.button, -.ui.inverted.red.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightRedActive inset !important; - color: @lightRed !important; -} -.ui.inverted.red.basic.buttons .button:active, -.ui.inverted.red.buttons .basic.button:active, -.ui.inverted.red.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightRedDown inset !important; - color: @lightRed !important; -} - - -/*--- Teal ---*/ -.ui.teal.buttons .button, -.ui.teal.button { - background-color: @teal; - color: @tealTextColor; - text-shadow: @tealTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.teal.button { - box-shadow: @coloredBoxShadow; -} -.ui.teal.buttons .button:hover, -.ui.teal.button:hover { - background-color: @tealHover; - color: @tealTextColor; - text-shadow: @tealTextShadow; -} -.ui.teal.buttons .button:focus, -.ui.teal.button:focus { - background-color: @tealFocus; - color: @tealTextColor; - text-shadow: @tealTextShadow; -} -.ui.teal.buttons .button:active, -.ui.teal.button:active { - background-color: @tealDown; - color: @tealTextColor; - text-shadow: @tealTextShadow; -} -.ui.teal.buttons .active.button, -.ui.teal.buttons .active.button:active, -.ui.teal.active.button, -.ui.teal.button .active.button:active { - background-color: @tealActive; - color: @tealTextColor; - text-shadow: @tealTextShadow; -} - -/* Basic */ -.ui.basic.teal.buttons .button, -.ui.basic.teal.button { - box-shadow: 0px 0px 0px @basicBorderSize @teal inset !important; - color: @teal !important; -} -.ui.basic.teal.buttons .button:hover, -.ui.basic.teal.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @tealHover inset !important; - color: @tealHover !important; -} -.ui.basic.teal.buttons .button:focus, -.ui.basic.teal.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @tealFocus inset !important; - color: @tealHover !important; -} -.ui.basic.teal.buttons .active.button, -.ui.basic.teal.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @tealActive inset !important; - color: @tealDown !important; -} -.ui.basic.teal.buttons .button:active, -.ui.basic.teal.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @tealDown inset !important; - color: @tealDown !important; -} -.ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.teal.buttons .button, -.ui.inverted.teal.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightTeal inset !important; - color: @lightTeal; -} -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover, -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus, -.ui.inverted.teal.buttons .button.active, -.ui.inverted.teal.button.active, -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - box-shadow: none !important; - color: @lightTealTextColor; -} -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover { - background-color: @lightTealHover; -} -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus { - background-color: @lightTealFocus; -} -.ui.inverted.teal.buttons .active.button, -.ui.inverted.teal.active.button { - background-color: @lightTealActive; -} -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - background-color: @lightTealDown; -} - -/* Inverted Basic */ -.ui.inverted.teal.basic.buttons .button, -.ui.inverted.teal.buttons .basic.button, -.ui.inverted.teal.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.teal.basic.buttons .button:hover, -.ui.inverted.teal.buttons .basic.button:hover, -.ui.inverted.teal.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightTealHover inset !important; - color: @lightTeal !important; -} -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightTealFocus inset !important; - color: @lightTeal !important; -} -.ui.inverted.teal.basic.buttons .active.button, -.ui.inverted.teal.buttons .basic.active.button, -.ui.inverted.teal.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightTealActive inset !important; - color: @lightTeal !important; -} -.ui.inverted.teal.basic.buttons .button:active, -.ui.inverted.teal.buttons .basic.button:active, -.ui.inverted.teal.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightTealDown inset !important; - color: @lightTeal !important; -} - - -/*--- Olive ---*/ -.ui.olive.buttons .button, -.ui.olive.button { - background-color: @olive; - color: @oliveTextColor; - text-shadow: @oliveTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.olive.button { - box-shadow: @coloredBoxShadow; -} -.ui.olive.buttons .button:hover, -.ui.olive.button:hover { - background-color: @oliveHover; - color: @oliveTextColor; - text-shadow: @oliveTextShadow; -} -.ui.olive.buttons .button:focus, -.ui.olive.button:focus { - background-color: @oliveFocus; - color: @oliveTextColor; - text-shadow: @oliveTextShadow; -} -.ui.olive.buttons .button:active, -.ui.olive.button:active { - background-color: @oliveDown; - color: @oliveTextColor; - text-shadow: @oliveTextShadow; -} -.ui.olive.buttons .active.button, -.ui.olive.buttons .active.button:active, -.ui.olive.active.button, -.ui.olive.button .active.button:active { - background-color: @oliveActive; - color: @oliveTextColor; - text-shadow: @oliveTextShadow; -} - -/* Basic */ -.ui.basic.olive.buttons .button, -.ui.basic.olive.button { - box-shadow: 0px 0px 0px @basicBorderSize @olive inset !important; - color: @olive !important; -} -.ui.basic.olive.buttons .button:hover, -.ui.basic.olive.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @oliveHover inset !important; - color: @oliveHover !important; -} -.ui.basic.olive.buttons .button:focus, -.ui.basic.olive.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @oliveFocus inset !important; - color: @oliveHover !important; -} -.ui.basic.olive.buttons .active.button, -.ui.basic.olive.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @oliveActive inset !important; - color: @oliveDown !important; -} -.ui.basic.olive.buttons .button:active, -.ui.basic.olive.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @oliveDown inset !important; - color: @oliveDown !important; -} -.ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.olive.buttons .button, -.ui.inverted.olive.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightOlive inset !important; - color: @lightOlive; -} -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover, -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus, -.ui.inverted.olive.buttons .button.active, -.ui.inverted.olive.button.active, -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - box-shadow: none !important; - color: @lightOliveTextColor; -} -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover { - background-color: @lightOliveHover; -} -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus { - background-color: @lightOliveFocus; -} -.ui.inverted.olive.buttons .active.button, -.ui.inverted.olive.active.button { - background-color: @lightOliveActive; -} -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - background-color: @lightOliveDown; -} - -/* Inverted Basic */ -.ui.inverted.olive.basic.buttons .button, -.ui.inverted.olive.buttons .basic.button, -.ui.inverted.olive.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.olive.basic.buttons .button:hover, -.ui.inverted.olive.buttons .basic.button:hover, -.ui.inverted.olive.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOliveHover inset !important; - color: @lightOlive !important; -} -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOliveFocus inset !important; - color: @lightOlive !important; -} -.ui.inverted.olive.basic.buttons .active.button, -.ui.inverted.olive.buttons .basic.active.button, -.ui.inverted.olive.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOliveActive inset !important; - color: @lightOlive !important; -} -.ui.inverted.olive.basic.buttons .button:active, -.ui.inverted.olive.buttons .basic.button:active, -.ui.inverted.olive.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightOliveDown inset !important; - color: @lightOlive !important; -} - -/*--- Yellow ---*/ -.ui.yellow.buttons .button, -.ui.yellow.button { - background-color: @yellow; - color: @yellowTextColor; - text-shadow: @yellowTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.yellow.button { - box-shadow: @coloredBoxShadow; -} -.ui.yellow.buttons .button:hover, -.ui.yellow.button:hover { - background-color: @yellowHover; - color: @yellowTextColor; - text-shadow: @yellowTextShadow; -} -.ui.yellow.buttons .button:focus, -.ui.yellow.button:focus { - background-color: @yellowFocus; - color: @yellowTextColor; - text-shadow: @yellowTextShadow; -} -.ui.yellow.buttons .button:active, -.ui.yellow.button:active { - background-color: @yellowDown; - color: @yellowTextColor; - text-shadow: @yellowTextShadow; -} -.ui.yellow.buttons .active.button, -.ui.yellow.buttons .active.button:active, -.ui.yellow.active.button, -.ui.yellow.button .active.button:active { - background-color: @yellowActive; - color: @yellowTextColor; - text-shadow: @yellowTextShadow; -} - -/* Basic */ -.ui.basic.yellow.buttons .button, -.ui.basic.yellow.button { - box-shadow: 0px 0px 0px @basicBorderSize @yellow inset !important; - color: @yellow !important; -} -.ui.basic.yellow.buttons .button:hover, -.ui.basic.yellow.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @yellowHover inset !important; - color: @yellowHover !important; -} -.ui.basic.yellow.buttons .button:focus, -.ui.basic.yellow.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @yellowFocus inset !important; - color: @yellowHover !important; -} -.ui.basic.yellow.buttons .active.button, -.ui.basic.yellow.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @yellowActive inset !important; - color: @yellowDown !important; -} -.ui.basic.yellow.buttons .button:active, -.ui.basic.yellow.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @yellowDown inset !important; - color: @yellowDown !important; -} -.ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.yellow.buttons .button, -.ui.inverted.yellow.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightYellow inset !important; - color: @lightYellow; -} -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover, -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus, -.ui.inverted.yellow.buttons .button.active, -.ui.inverted.yellow.button.active, -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - box-shadow: none !important; - color: @lightYellowTextColor; -} -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover { - background-color: @lightYellowHover; -} -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus { - background-color: @lightYellowFocus; -} -.ui.inverted.yellow.buttons .active.button, -.ui.inverted.yellow.active.button { - background-color: @lightYellowActive; -} -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - background-color: @lightYellowDown; -} - -/* Inverted Basic */ -.ui.inverted.yellow.basic.buttons .button, -.ui.inverted.yellow.buttons .basic.button, -.ui.inverted.yellow.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.yellow.basic.buttons .button:hover, -.ui.inverted.yellow.buttons .basic.button:hover, -.ui.inverted.yellow.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightYellowHover inset !important; - color: @lightYellow !important; -} -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightYellowFocus inset !important; - color: @lightYellow !important; -} -.ui.inverted.yellow.basic.buttons .active.button, -.ui.inverted.yellow.buttons .basic.active.button, -.ui.inverted.yellow.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightYellowActive inset !important; - color: @lightYellow !important; -} -.ui.inverted.yellow.basic.buttons .button:active, -.ui.inverted.yellow.buttons .basic.button:active, -.ui.inverted.yellow.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightYellowDown inset !important; - color: @lightYellow !important; -} - - -/*------------------- - Primary ---------------------*/ - -/*--- Standard ---*/ -.ui.primary.buttons .button, -.ui.primary.button { - background-color: @primaryColor; - color: @primaryTextColor; - text-shadow: @primaryTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.primary.button { - box-shadow: @coloredBoxShadow; -} -.ui.primary.buttons .button:hover, -.ui.primary.button:hover { - background-color: @primaryColorHover; - color: @primaryTextColor; - text-shadow: @primaryTextShadow; -} -.ui.primary.buttons .button:focus, -.ui.primary.button:focus { - background-color: @primaryColorFocus; - color: @primaryTextColor; - text-shadow: @primaryTextShadow; -} -.ui.primary.buttons .button:active, -.ui.primary.button:active { - background-color: @primaryColorDown; - color: @primaryTextColor; - text-shadow: @primaryTextShadow; -} -.ui.primary.buttons .active.button, -.ui.primary.buttons .active.button:active, -.ui.primary.active.button, -.ui.primary.button .active.button:active { - background-color: @primaryColorActive; - color: @primaryTextColor; - text-shadow: @primaryTextShadow; -} - -/* Basic */ -.ui.basic.primary.buttons .button, -.ui.basic.primary.button { - box-shadow: 0px 0px 0px @basicBorderSize @primaryColor inset !important; - color: @primaryColor !important; -} -.ui.basic.primary.buttons .button:hover, -.ui.basic.primary.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @primaryColorHover inset !important; - color: @primaryColorHover !important; -} -.ui.basic.primary.buttons .button:focus, -.ui.basic.primary.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @primaryColorFocus inset !important; - color: @primaryColorHover !important; -} -.ui.basic.primary.buttons .active.button, -.ui.basic.primary.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @primaryColorActive inset !important; - color: @primaryColorDown !important; -} -.ui.basic.primary.buttons .button:active, -.ui.basic.primary.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @primaryColorDown inset !important; - color: @primaryColorDown !important; -} -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.primary.buttons .button, -.ui.inverted.primary.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightPrimaryColor inset !important; - color: @lightPrimaryColor; -} -.ui.inverted.primary.buttons .button:hover, -.ui.inverted.primary.button:hover, -.ui.inverted.primary.buttons .button:focus, -.ui.inverted.primary.button:focus, -.ui.inverted.primary.buttons .button.active, -.ui.inverted.primary.button.active, -.ui.inverted.primary.buttons .button:active, -.ui.inverted.primary.button:active { - box-shadow: none !important; - color: @lightPrimaryTextColor; -} -.ui.inverted.primary.buttons .button:hover, -.ui.inverted.primary.button:hover { - background-color: @lightPrimaryColorHover; -} -.ui.inverted.primary.buttons .button:focus, -.ui.inverted.primary.button:focus { - background-color: @lightPrimaryColorFocus; -} -.ui.inverted.primary.buttons .active.button, -.ui.inverted.primary.active.button { - background-color: @lightPrimaryColorActive; -} -.ui.inverted.primary.buttons .button:active, -.ui.inverted.primary.button:active { - background-color: @lightPrimaryColorDown; -} - -/* Inverted Basic */ -.ui.inverted.primary.basic.buttons .button, -.ui.inverted.primary.buttons .basic.button, -.ui.inverted.primary.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.primary.basic.buttons .button:hover, -.ui.inverted.primary.buttons .basic.button:hover, -.ui.inverted.primary.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPrimaryColorHover inset !important; - color: @lightPrimaryColor !important; -} -.ui.inverted.primary.basic.buttons .button:focus, -.ui.inverted.primary.basic.buttons .button:focus, -.ui.inverted.primary.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPrimaryColorFocus inset !important; - color: @lightPrimaryColor !important; -} -.ui.inverted.primary.basic.buttons .active.button, -.ui.inverted.primary.buttons .basic.active.button, -.ui.inverted.primary.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPrimaryColorActive inset !important; - color: @lightPrimaryColor !important; -} -.ui.inverted.primary.basic.buttons .button:active, -.ui.inverted.primary.buttons .basic.button:active, -.ui.inverted.primary.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightPrimaryColorDown inset !important; - color: @lightPrimaryColor !important; -} - -/*------------------- - Secondary ---------------------*/ - -/* Standard */ -.ui.secondary.buttons .button, -.ui.secondary.button { - background-color: @secondaryColor; - color: @secondaryTextColor; - text-shadow: @secondaryTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.secondary.button { - box-shadow: @coloredBoxShadow; -} -.ui.secondary.buttons .button:hover, -.ui.secondary.button:hover { - background-color: @secondaryColorHover; - color: @secondaryTextColor; - text-shadow: @secondaryTextShadow; -} -.ui.secondary.buttons .button:focus, -.ui.secondary.button:focus { - background-color: @secondaryColorFocus; - color: @secondaryTextColor; - text-shadow: @secondaryTextShadow; -} -.ui.secondary.buttons .button:active, -.ui.secondary.button:active { - background-color: @secondaryColorDown; - color: @secondaryTextColor; - text-shadow: @secondaryTextShadow; -} -.ui.secondary.buttons .active.button, -.ui.secondary.buttons .active.button:active, -.ui.secondary.active.button, -.ui.secondary.button .active.button:active { - background-color: @secondaryColorActive; - color: @secondaryTextColor; - text-shadow: @secondaryTextShadow; -} - -/* Basic */ -.ui.basic.secondary.buttons .button, -.ui.basic.secondary.button { - box-shadow: 0px 0px 0px @basicBorderSize @secondaryColor inset !important; - color: @secondaryColor !important; -} -.ui.basic.secondary.buttons .button:hover, -.ui.basic.secondary.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @secondaryColorHover inset !important; - color: @secondaryColorHover !important; -} -.ui.basic.secondary.buttons .button:focus, -.ui.basic.secondary.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @secondaryColorFocus inset !important; - color: @secondaryColorHover !important; -} -.ui.basic.secondary.buttons .active.button, -.ui.basic.secondary.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @secondaryColorActive inset !important; - color: @secondaryColorDown !important; -} -.ui.basic.secondary.buttons .button:active, -.ui.basic.secondary.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @secondaryColorDown inset !important; - color: @secondaryColorDown !important; -} -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/* Inverted */ -.ui.inverted.secondary.buttons .button, -.ui.inverted.secondary.button { - background-color: transparent; - box-shadow: 0px 0px 0px @invertedBorderSize @lightSecondaryColor inset !important; - color: @lightSecondaryColor; -} -.ui.inverted.secondary.buttons .button:hover, -.ui.inverted.secondary.button:hover, -.ui.inverted.secondary.buttons .button:focus, -.ui.inverted.secondary.button:focus, -.ui.inverted.secondary.buttons .button.active, -.ui.inverted.secondary.button.active, -.ui.inverted.secondary.buttons .button:active, -.ui.inverted.secondary.button:active { - box-shadow: none !important; - color: @lightSecondaryTextColor; -} -.ui.inverted.secondary.buttons .button:hover, -.ui.inverted.secondary.button:hover { - background-color: @lightSecondaryColorHover; -} -.ui.inverted.secondary.buttons .button:focus, -.ui.inverted.secondary.button:focus { - background-color: @lightSecondaryColorFocus; -} -.ui.inverted.secondary.buttons .active.button, -.ui.inverted.secondary.active.button { - background-color: @lightSecondaryColorActive; -} -.ui.inverted.secondary.buttons .button:active, -.ui.inverted.secondary.button:active { - background-color: @lightSecondaryColorDown; -} - -/* Inverted Basic */ -.ui.inverted.secondary.basic.buttons .button, -.ui.inverted.secondary.buttons .basic.button, -.ui.inverted.secondary.basic.button { - background-color: transparent; - box-shadow: @basicInvertedBoxShadow !important; - color: @white !important; -} -.ui.inverted.secondary.basic.buttons .button:hover, -.ui.inverted.secondary.buttons .basic.button:hover, -.ui.inverted.secondary.basic.button:hover { - box-shadow: 0px 0px 0px @invertedBorderSize @lightSecondaryColorHover inset !important; - color: @lightSecondaryColor !important; -} -.ui.inverted.secondary.basic.buttons .button:focus, -.ui.inverted.secondary.basic.buttons .button:focus, -.ui.inverted.secondary.basic.button:focus { - box-shadow: 0px 0px 0px @invertedBorderSize @lightSecondaryColorFocus inset !important; - color: @lightSecondaryColor !important; -} -.ui.inverted.secondary.basic.buttons .active.button, -.ui.inverted.secondary.buttons .basic.active.button, -.ui.inverted.secondary.basic.active.button { - box-shadow: 0px 0px 0px @invertedBorderSize @lightSecondaryColorActive inset !important; - color: @lightSecondaryColor !important; -} -.ui.inverted.secondary.basic.buttons .button:active, -.ui.inverted.secondary.buttons .basic.button:active, -.ui.inverted.secondary.basic.button:active { - box-shadow: 0px 0px 0px @invertedBorderSize @lightSecondaryColorDown inset !important; - color: @lightSecondaryColor !important; -} - -/*--------------- - Positive -----------------*/ - -/* Standard */ -.ui.positive.buttons .button, -.ui.positive.button { - background-color: @positiveColor; - color: @positiveTextColor; - text-shadow: @positiveTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.positive.button { - box-shadow: @coloredBoxShadow; -} -.ui.positive.buttons .button:hover, -.ui.positive.button:hover { - background-color: @positiveColorHover; - color: @positiveTextColor; - text-shadow: @positiveTextShadow; -} -.ui.positive.buttons .button:focus, -.ui.positive.button:focus { - background-color: @positiveColorFocus; - color: @positiveTextColor; - text-shadow: @positiveTextShadow; -} -.ui.positive.buttons .button:active, -.ui.positive.button:active { - background-color: @positiveColorDown; - color: @positiveTextColor; - text-shadow: @positiveTextShadow; -} -.ui.positive.buttons .active.button, -.ui.positive.buttons .active.button:active, -.ui.positive.active.button, -.ui.positive.button .active.button:active { - background-color: @positiveColorActive; - color: @positiveTextColor; - text-shadow: @positiveTextShadow; -} - -/* Basic */ -.ui.basic.positive.buttons .button, -.ui.basic.positive.button { - box-shadow: 0px 0px 0px @basicBorderSize @positiveColor inset !important; - color: @positiveColor !important; -} -.ui.basic.positive.buttons .button:hover, -.ui.basic.positive.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @positiveColorHover inset !important; - color: @positiveColorHover !important; -} -.ui.basic.positive.buttons .button:focus, -.ui.basic.positive.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @positiveColorFocus inset !important; - color: @positiveColorHover !important; -} -.ui.basic.positive.buttons .active.button, -.ui.basic.positive.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @positiveColorActive inset !important; - color: @positiveColorDown !important; -} -.ui.basic.positive.buttons .button:active, -.ui.basic.positive.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @positiveColorDown inset !important; - color: @positiveColorDown !important; -} -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/*--------------- - Negative -----------------*/ - -/* Standard */ -.ui.negative.buttons .button, -.ui.negative.button { - background-color: @negativeColor; - color: @negativeTextColor; - text-shadow: @negativeTextShadow; - background-image: @coloredBackgroundImage; -} -.ui.negative.button { - box-shadow: @coloredBoxShadow; -} -.ui.negative.buttons .button:hover, -.ui.negative.button:hover { - background-color: @negativeColorHover; - color: @negativeTextColor; - text-shadow: @negativeTextShadow; -} -.ui.negative.buttons .button:focus, -.ui.negative.button:focus { - background-color: @negativeColorFocus; - color: @negativeTextColor; - text-shadow: @negativeTextShadow; -} -.ui.negative.buttons .button:active, -.ui.negative.button:active { - background-color: @negativeColorDown; - color: @negativeTextColor; - text-shadow: @negativeTextShadow; -} -.ui.negative.buttons .active.button, -.ui.negative.buttons .active.button:active, -.ui.negative.active.button, -.ui.negative.button .active.button:active { - background-color: @negativeColorActive; - color: @negativeTextColor; - text-shadow: @negativeTextShadow; -} - -/* Basic */ -.ui.basic.negative.buttons .button, -.ui.basic.negative.button { - box-shadow: 0px 0px 0px @basicBorderSize @negativeColor inset !important; - color: @negativeColor !important; -} -.ui.basic.negative.buttons .button:hover, -.ui.basic.negative.button:hover { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @negativeColorHover inset !important; - color: @negativeColorHover !important; -} -.ui.basic.negative.buttons .button:focus, -.ui.basic.negative.button:focus { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @negativeColorFocus inset !important; - color: @negativeColorHover !important; -} -.ui.basic.negative.buttons .active.button, -.ui.basic.negative.active.button { - background: transparent !important; - box-shadow: 0px 0px 0px @basicColoredBorderSize @negativeColorActive inset !important; - color: @negativeColorDown !important; -} -.ui.basic.negative.buttons .button:active, -.ui.basic.negative.button:active { - box-shadow: 0px 0px 0px @basicColoredBorderSize @negativeColorDown inset !important; - color: @negativeColorDown !important; -} -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -@basicColoredBorderSize; -} - -/******************************* - Groups -*******************************/ - -.ui.buttons { - display: inline-flex; - flex-direction: row; - font-size: 0em; - vertical-align: baseline; - margin: @verticalMargin @horizontalMargin 0em 0em; -} -.ui.buttons:not(.basic):not(.inverted) { - box-shadow: @groupBoxShadow; -} - -/* Clearfix */ -.ui.buttons:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/* Standard Group */ -.ui.buttons .button { - flex: 1 0 auto; - margin: 0em; - border-radius: 0em; - margin: @groupButtonOffset; -} -.ui.buttons > .ui.button:not(.basic):not(.inverted), -.ui.buttons:not(.basic):not(.inverted) > .button { - box-shadow: @groupButtonBoxShadow; -} - -.ui.buttons .button:first-child { - border-left: none; - margin-left: 0em; - border-top-left-radius: @borderRadius; - border-bottom-left-radius: @borderRadius; -} -.ui.buttons .button:last-child { - border-top-right-radius: @borderRadius; - border-bottom-right-radius: @borderRadius; -} - -/* Vertical Style */ -.ui.vertical.buttons { - display: inline-flex; - flex-direction: column; -} -.ui.vertical.buttons .button { - display: block; - float: none; - width: 100%; - margin: @verticalGroupOffset; - box-shadow: @verticalBoxShadow; - border-radius: 0em; -} -.ui.vertical.buttons .button:first-child { - border-top-left-radius: @borderRadius; - border-top-right-radius: @borderRadius; -} -.ui.vertical.buttons .button:last-child { - margin-bottom: 0px; - border-bottom-left-radius: @borderRadius; - border-bottom-right-radius: @borderRadius; -} -.ui.vertical.buttons .button:only-child { - border-radius: @borderRadius; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/container.less b/src/definitions/elements/container.less deleted file mode 100644 index 14b32f2..0000000 --- a/src/definitions/elements/container.less +++ /dev/null @@ -1,143 +0,0 @@ -/*! - * # Semantic UI - Container - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'container'; - -@import (multiple) '../../theme.config'; - -/******************************* - Container -*******************************/ - -/* All Sizes */ -.ui.container { - display: block; - max-width: @maxWidth !important; -} - -/* Mobile */ -@media only screen and (max-width: @largestMobileScreen) { - .ui.container { - width: @mobileWidth !important; - margin-left: @mobileGutter !important; - margin-right: @mobileGutter !important; - } - .ui.grid.container { - width: @mobileGridWidth !important; - } - .ui.relaxed.grid.container { - width: @mobileRelaxedGridWidth !important; - } - .ui.very.relaxed.grid.container { - width: @mobileVeryRelaxedGridWidth !important; - } -} - -/* Tablet */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui.container { - width: @tabletWidth; - margin-left: @tabletGutter !important; - margin-right: @tabletGutter !important; - } - .ui.grid.container { - width: @tabletGridWidth !important; - } - .ui.relaxed.grid.container { - width: @tabletRelaxedGridWidth !important; - } - .ui.very.relaxed.grid.container { - width: @tabletVeryRelaxedGridWidth !important; - } -} - -/* Small Monitor */ -@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) { - .ui.container { - width: @computerWidth; - margin-left: @computerGutter !important; - margin-right: @computerGutter !important; - } - .ui.grid.container { - width: @computerGridWidth !important; - } - .ui.relaxed.grid.container { - width: @computerRelaxedGridWidth !important; - } - .ui.very.relaxed.grid.container { - width: @computerVeryRelaxedGridWidth !important; - } -} - -/* Large Monitor */ -@media only screen and (min-width: @largeMonitorBreakpoint) { - .ui.container { - width: @largeMonitorWidth; - margin-left: @largeMonitorGutter !important; - margin-right: @largeMonitorGutter !important; - } - .ui.grid.container { - width: @largeMonitorGridWidth !important; - } - .ui.relaxed.grid.container { - width: @largeMonitorRelaxedGridWidth !important; - } - .ui.very.relaxed.grid.container { - width: @largeMonitorVeryRelaxedGridWidth !important; - } -} - -/******************************* - Types -*******************************/ - - -/* Text Container */ -.ui.text.container { - font-family: @textFontFamily; - max-width: @textWidth !important; - line-height: @textLineHeight; -} - -.ui.text.container { - font-size: @textSize; -} - -/* Fluid */ -.ui.fluid.container { - width: 100%; -} - - -/******************************* - Variations -*******************************/ - -.ui[class*="left aligned"].container { - text-align: left; -} -.ui[class*="center aligned"].container { - text-align: center; -} -.ui[class*="right aligned"].container { - text-align: right; -} -.ui.justified.container { - text-align: justify; - hyphens: auto; -} - - -.loadUIOverrides(); diff --git a/src/definitions/elements/divider.less b/src/definitions/elements/divider.less deleted file mode 100644 index 28c0c68..0000000 --- a/src/definitions/elements/divider.less +++ /dev/null @@ -1,255 +0,0 @@ -/*! - * # Semantic UI - Divider - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'divider'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Divider -*******************************/ - -.ui.divider { - margin: @margin; - - line-height: 1; - height: 0em; - - font-weight: @fontWeight; - text-transform: @textTransform; - letter-spacing: @letterSpacing; - color: @color; - - user-select: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/*-------------- - Basic ----------------*/ - -.ui.divider:not(.vertical):not(.horizontal) { - border-top: @shadowWidth solid @shadowColor; - border-bottom: @highlightWidth solid @highlightColor; -} - -/*-------------- - Coupling ----------------*/ - -/* Allow divider between each column row */ -.ui.grid > .column + .divider, -.ui.grid > .row > .column + .divider { - left: auto; -} - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.divider { - display: table; - white-space: nowrap; - - height: auto; - margin: @horizontalMargin; - line-height: 1; - text-align: center; -} - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; -} - -.ui.horizontal.divider:before { - background-position: right @horizontalDividerMargin top 50%; -} -.ui.horizontal.divider:after { - background-position: left @horizontalDividerMargin top 50%; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.divider { - position: absolute; - z-index: 2; - top: 50%; - left: 50%; - - margin: 0rem; - padding: 0em; - width: auto; - height: 50%; - - line-height: 0em; - text-align: center; - transform: translateX(-50%); -} - -.ui.vertical.divider:before, -.ui.vertical.divider:after { - position: absolute; - left: 50%; - content: ''; - z-index: 3; - - border-left: @shadowWidth solid @shadowColor; - border-right: @highlightWidth solid @highlightColor; - - width: 0%; - height: @verticalDividerHeight; -} - -.ui.vertical.divider:before { - top: -100%; -} -.ui.vertical.divider:after { - top: auto; - bottom: 0px; -} - -/* Inside grid */ -@media only screen and (max-width : @largestMobileScreen) { - - .ui.stackable.grid .ui.vertical.divider, - .ui.grid .stackable.row .ui.vertical.divider { - display: table; - white-space: nowrap; - height: auto; - margin: @horizontalMargin; - overflow: hidden; - line-height: 1; - text-align: center; - position: static; - top: 0; - left: 0; - transform: none; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - position: static; - left: 0; - border-left: none; - border-right: none; - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before { - background-position: right @horizontalDividerMargin top 50%; - } - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-position: left @horizontalDividerMargin top 50%; - } -} - -/*-------------- - Icon ----------------*/ - -.ui.divider > .icon { - margin: @dividerIconMargin; - font-size: @dividerIconSize; - height: 1em; - vertical-align: middle; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.divider { - border-color: transparent !important; -} -.ui.hidden.divider:before, -.ui.hidden.divider:after { - display: none; -} - -/*-------------- - Inverted ----------------*/ - -.ui.divider.inverted, -.ui.vertical.inverted.divider, -.ui.horizontal.inverted.divider { - color: @invertedTextColor; -} -.ui.divider.inverted, -.ui.divider.inverted:after, -.ui.divider.inverted:before { - border-top-color: @invertedShadowColor !important; - border-left-color: @invertedShadowColor !important; - border-bottom-color: @invertedHighlightColor !important; - border-right-color: @invertedHighlightColor !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.divider { - margin: 0em; -} - -/*-------------- - Clearing ----------------*/ - -.ui.clearing.divider { - clear: both; -} - -/*-------------- - Section ----------------*/ - -.ui.section.divider { - margin-top: @sectionMargin; - margin-bottom: @sectionMargin; -} - -/*-------------- - Sizes ----------------*/ - -.ui.divider { - font-size: @medium; -} - - -.loadUIOverrides(); diff --git a/src/definitions/elements/flag.less b/src/definitions/elements/flag.less deleted file mode 100644 index 1f4145e..0000000 --- a/src/definitions/elements/flag.less +++ /dev/null @@ -1,52 +0,0 @@ -/*! - * # Semantic UI - Flag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'flag'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Flag -*******************************/ - -i.flag:not(.icon) { - display: inline-block; - - width: @width; - height: @height; - - line-height: @height; - vertical-align: @verticalAlign; - margin: 0em @margin 0em 0em; - - text-decoration: inherit; - - speak: none; - font-smoothing: antialiased; - backface-visibility: hidden; -} - -/* Sprite */ -i.flag:not(.icon):before { - display: inline-block; - content: ''; - background: url(@spritePath) no-repeat -108px -1976px; - width: @width; - height: @height; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/header.less b/src/definitions/elements/header.less deleted file mode 100644 index 294d77a..0000000 --- a/src/definitions/elements/header.less +++ /dev/null @@ -1,708 +0,0 @@ -/*! - * # Semantic UI - Header - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'header'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Header -*******************************/ - -/* Standard */ -.ui.header { - border: none; - margin: @margin; - padding: @verticalPadding @horizontalPadding; - font-family: @fontFamily; - font-weight: @fontWeight; - line-height: @lineHeight; - text-transform: @textTransform; - color: @textColor; -} - -.ui.header:first-child { - margin-top: @firstMargin; -} -.ui.header:last-child { - margin-bottom: @lastMargin; -} - -/*-------------- - Sub Header ----------------*/ - -.ui.header .sub.header { - display: block; - font-weight: @normal; - padding: 0em; - margin: @subHeaderMargin; - font-size: @subHeaderFontSize; - line-height: @subHeaderLineHeight; - color: @subHeaderColor; -} - -/*-------------- - Icon ----------------*/ - -.ui.header > .icon { - display: table-cell; - opacity: @iconOpacity; - font-size: @iconSize; - padding-top: @iconOffset; - vertical-align: @iconAlignment; -} - -/* With Text Node */ -.ui.header .icon:only-child { - display: inline-block; - padding: 0em; - margin-right: @iconMargin; -} - -/*------------------- - Image ---------------------*/ - -.ui.header > .image:not(.icon), -.ui.header > img { - display: inline-block; - margin-top: @imageOffset; - width: @imageWidth; - height: @imageHeight; - vertical-align: @imageAlignment; -} -.ui.header > .image:not(.icon):only-child, -.ui.header > img:only-child { - margin-right: @imageMargin; -} - -/*-------------- - Content ----------------*/ - -.ui.header .content { - display: inline-block; - vertical-align: @contentAlignment; -} - -/* After Image */ -.ui.header > img + .content, -.ui.header > .image + .content { - padding-left: @imageMargin; - vertical-align: @contentImageAlignment; -} - -/* After Icon */ -.ui.header > .icon + .content { - padding-left: @iconMargin; - display: table-cell; - vertical-align: @contentIconAlignment; -} - - -/*-------------- - Loose Coupling ----------------*/ - -.ui.header .ui.label { - font-size: @labelSize; - margin-left: @labelDistance; - vertical-align: @labelVerticalAlign; -} - -/* Positioning */ -.ui.header + p { - margin-top: @nextParagraphDistance; -} - - - -/******************************* - Types -*******************************/ - - -/*-------------- - Page ----------------*/ - -h1.ui.header { - font-size: @h1; -} -h2.ui.header { - font-size: @h2; -} -h3.ui.header { - font-size: @h3; -} -h4.ui.header { - font-size: @h4; -} -h5.ui.header { - font-size: @h5; -} - - -/* Sub Header */ -h1.ui.header .sub.header { - font-size: @h1SubHeaderFontSize; -} -h2.ui.header .sub.header { - font-size: @h2SubHeaderFontSize; -} -h3.ui.header .sub.header { - font-size: @h3SubHeaderFontSize; -} -h4.ui.header .sub.header { - font-size: @h4SubHeaderFontSize; -} -h5.ui.header .sub.header { - font-size: @h5SubHeaderFontSize; -} - - -/*-------------- - Content Heading ----------------*/ - -.ui.huge.header { - min-height: 1em; - font-size: @hugeFontSize; -} -.ui.large.header { - font-size: @largeFontSize; -} -.ui.medium.header { - font-size: @mediumFontSize; -} -.ui.small.header { - font-size: @smallFontSize; -} -.ui.tiny.header { - font-size: @tinyFontSize; -} - -/* Sub Header */ -.ui.huge.header .sub.header { - font-size: @hugeSubHeaderFontSize; -} -.ui.large.header .sub.header { - font-size: @hugeSubHeaderFontSize; -} -.ui.header .sub.header { - font-size: @subHeaderFontSize; -} -.ui.small.header .sub.header { - font-size: @smallSubHeaderFontSize; -} -.ui.tiny.header .sub.header { - font-size: @tinySubHeaderFontSize; -} - -/*-------------- - Sub Heading ----------------*/ - -.ui.sub.header { - padding: 0em; - margin-bottom: @subHeadingDistance; - font-weight: @subHeadingFontWeight; - font-size: @subHeadingFontSize; - text-transform: @subHeadingTextTransform; - color: @subHeadingColor; -} - -.ui.small.sub.header { - font-size: @smallSubHeadingSize; -} -.ui.sub.header { - font-size: @subHeadingFontSize; -} -.ui.large.sub.header { - font-size: @largeSubHeadingSize; -} -.ui.huge.sub.header { - font-size: @hugeSubHeadingSize; -} - - - -/*------------------- - Icon ---------------------*/ - -.ui.icon.header { - display: inline-block; - text-align: center; - margin: @iconHeaderTopMargin 0em @iconHeaderBottomMargin; -} -.ui.icon.header:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.icon.header:first-child { - margin-top: @iconHeaderFirstMargin; -} -.ui.icon.header .icon { - float: none; - display: block; - width: auto; - height: auto; - line-height: 1; - padding: 0em; - font-size: @iconHeaderSize; - margin: 0em auto @iconHeaderMargin; - opacity: @iconHeaderOpacity; -} -.ui.icon.header .content { - display: block; - padding: 0em; -} -.ui.icon.header .circular.icon { - font-size: @circularHeaderIconSize; -} -.ui.icon.header .square.icon { - font-size: @squareHeaderIconSize; -} -.ui.block.icon.header .icon { - margin-bottom: 0em; -} -.ui.icon.header.aligned { - margin-left: auto; - margin-right: auto; - display: block; -} - -/******************************* - States -*******************************/ - -.ui.disabled.header { - opacity: @disabledOpacity; -} - - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.header { - color: @invertedColor; -} -.ui.inverted.header .sub.header { - color: @invertedSubHeaderColor; -} -.ui.inverted.attached.header { - background: @invertedAttachedBackground; - box-shadow: none; - border-color: transparent; -} -.ui.inverted.block.header { - background: @invertedBlockBackground; - box-shadow: none; -} -.ui.inverted.block.header { - border-bottom: none; -} - - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ -.ui.red.header { - color: @red !important; -} -a.ui.red.header:hover { - color: @redHover !important; -} -.ui.red.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @red; -} - -/* Inverted */ -.ui.inverted.red.header { - color: @lightRed !important; -} -a.ui.inverted.red.header:hover { - color: @lightRedHover !important; -} - -/*--- Orange ---*/ -.ui.orange.header { - color: @orange !important; -} -a.ui.orange.header:hover { - color: @orangeHover !important; -} -.ui.orange.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @orange; -} -/* Inverted */ -.ui.inverted.orange.header { - color: @lightOrange !important; -} -a.ui.inverted.orange.header:hover { - color: @lightOrangeHover !important; -} - -/*--- Olive ---*/ -.ui.olive.header { - color: @olive !important; -} -a.ui.olive.header:hover { - color: @oliveHover !important; -} -.ui.olive.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @olive; -} -/* Inverted */ -.ui.inverted.olive.header { - color: @lightOlive !important; -} -a.ui.inverted.olive.header:hover { - color: @lightOliveHover !important; -} - -/*--- Yellow ---*/ -.ui.yellow.header { - color: @yellow !important; -} -a.ui.yellow.header:hover { - color: @yellowHover !important; -} -.ui.yellow.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @yellow; -} -/* Inverted */ -.ui.inverted.yellow.header { - color: @lightYellow !important; -} -a.ui.inverted.yellow.header:hover { - color: @lightYellowHover !important; -} - -/*--- Green ---*/ -.ui.green.header { - color: @green !important; -} -a.ui.green.header:hover { - color: @greenHover !important; -} -.ui.green.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @green; -} -/* Inverted */ -.ui.inverted.green.header { - color: @lightGreen !important; -} -a.ui.inverted.green.header:hover { - color: @lightGreenHover !important; -} - -/*--- Teal ---*/ -.ui.teal.header { - color: @teal !important; -} -a.ui.teal.header:hover { - color: @tealHover !important; -} -.ui.teal.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @teal; -} -/* Inverted */ -.ui.inverted.teal.header { - color: @lightTeal !important; -} -a.ui.inverted.teal.header:hover { - color: @lightTealHover !important; -} - -/*--- Blue ---*/ -.ui.blue.header { - color: @blue !important; -} -a.ui.blue.header:hover { - color: @blueHover !important; -} -.ui.blue.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @blue; -} -/* Inverted */ -.ui.inverted.blue.header { - color: @lightBlue !important; -} -a.ui.inverted.blue.header:hover { - color: @lightBlueHover !important; -} - -/*--- Violet ---*/ -.ui.violet.header { - color: @violet !important; -} -a.ui.violet.header:hover { - color: @violetHover !important; -} -.ui.violet.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @violet; -} -/* Inverted */ -.ui.inverted.violet.header { - color: @lightViolet !important; -} -a.ui.inverted.violet.header:hover { - color: @lightVioletHover !important; -} - -/*--- Purple ---*/ -.ui.purple.header { - color: @purple !important; -} -a.ui.purple.header:hover { - color: @purpleHover !important; -} -.ui.purple.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @purple; -} -/* Inverted */ -.ui.inverted.purple.header { - color: @lightPurple !important; -} -a.ui.inverted.purple.header:hover { - color: @lightPurpleHover !important; -} - -/*--- Pink ---*/ -.ui.pink.header { - color: @pink !important; -} -a.ui.pink.header:hover { - color: @pinkHover !important; -} -.ui.pink.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @pink; -} -/* Inverted */ -.ui.inverted.pink.header { - color: @lightPink !important; -} -a.ui.inverted.pink.header:hover { - color: @lightPinkHover !important; -} - -/*--- Brown ---*/ -.ui.brown.header { - color: @brown !important; -} -a.ui.brown.header:hover { - color: @brownHover !important; -} -.ui.brown.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @brown; -} -/* Inverted */ -.ui.inverted.brown.header { - color: @lightBrown !important; -} -a.ui.inverted.brown.header:hover { - color: @lightBrownHover !important; -} - -/*--- Grey ---*/ -.ui.grey.header { - color: @grey !important; -} -a.ui.grey.header:hover { - color: @greyHover !important; -} -.ui.grey.dividing.header { - border-bottom: @dividedColoredBorderWidth solid @grey; -} -/* Inverted */ -.ui.inverted.grey.header { - color: @lightGrey !important; -} -a.ui.inverted.grey.header:hover { - color: @lightGreyHover !important; -} - - -/*------------------- - Aligned ---------------------*/ - -.ui.left.aligned.header { - text-align: left; -} -.ui.right.aligned.header { - text-align: right; -} -.ui.centered.header, -.ui.center.aligned.header { - text-align: center; -} -.ui.justified.header { - text-align: justify; -} -.ui.justified.header:after { - display: inline-block; - content: ''; - width: 100%; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.header, -.ui[class*="left floated"].header { - float: left; - margin-top: 0em; - margin-right: @floatedMargin; -} -.ui[class*="right floated"].header { - float: right; - margin-top: 0em; - margin-left: @floatedMargin; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.header { - padding: 0em; -} - - -/*------------------- - Dividing ---------------------*/ - -.ui.dividing.header { - padding-bottom: @dividedBorderPadding; - border-bottom: @dividedBorder; -} -.ui.dividing.header .sub.header { - padding-bottom: @dividedSubHeaderPadding; -} -.ui.dividing.header .icon { - margin-bottom: @dividedIconPadding; -} - -.ui.inverted.dividing.header { - border-bottom-color: @invertedDividedBorderColor; -} - - -/*------------------- - Block ---------------------*/ - -.ui.block.header { - background: @blockBackground; - padding: @blockVerticalPadding @blockHorizontalPadding; - box-shadow: @blockBoxShadow; - border: @blockBorder; - border-radius: @blockBorderRadius; -} - -.ui.tiny.block.header { - font-size: @tinyBlock; -} -.ui.small.block.header { - font-size: @smallBlock; -} -.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: @mediumBlock; -} -.ui.large.block.header { - font-size: @largeBlock; -} -.ui.huge.block.header { - font-size: @hugeBlock; -} - -/*------------------- - Attached ---------------------*/ - -.ui.attached.header { - background: @attachedBackground; - padding: @attachedVerticalPadding @attachedHorizontalPadding; - margin-left: @attachedOffset; - margin-right: @attachedOffset; - box-shadow: @attachedBoxShadow; - border: @attachedBorder; -} -.ui.attached.block.header { - background: @blockBackground; -} - -.ui.attached:not(.top):not(.bottom).header { - margin-top: 0em; - margin-bottom: 0em; - border-top: none; - border-radius: 0em; -} -.ui.top.attached.header { - margin-bottom: 0em; - border-radius: @attachedBorderRadius @attachedBorderRadius 0em 0em; -} -.ui.bottom.attached.header { - margin-top: 0em; - border-top: none; - border-radius: 0em 0em @attachedBorderRadius @attachedBorderRadius; -} - -/* Attached Sizes */ -.ui.tiny.attached.header { - font-size: @tinyAttachedSize; -} -.ui.small.attached.header { - font-size: @smallAttachedSize; -} -.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: @mediumAttachedSize; -} -.ui.large.attached.header { - font-size: @largeAttachedSize; -} -.ui.huge.attached.header { - font-size: @hugeAttachedSize; -} - -/*------------------- - Sizing ---------------------*/ - -.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: @mediumFontSize; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/icon.less b/src/definitions/elements/icon.less deleted file mode 100644 index 88b870d..0000000 --- a/src/definitions/elements/icon.less +++ /dev/null @@ -1,501 +0,0 @@ -/*! - * # Semantic UI - Icon - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'icon'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Icon -*******************************/ - -@font-face { - font-family: 'Icons'; - src: @fallbackSRC; - src: @src; - font-style: normal; - font-weight: @normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; -} - -i.icon { - display: inline-block; - opacity: @opacity; - - margin: 0em @distanceFromText 0em 0em; - - width: @width; - height: @height; - - font-family: 'Icons'; - font-style: normal; - font-weight: @normal; - text-decoration: inherit; - text-align: center; - - speak: none; - font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - backface-visibility: hidden; -} - -i.icon:before { - background: none !important; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Loading ----------------*/ - -i.icon.loading { - height: 1em; - line-height: 1; - animation: icon-loading @loadingDuration linear infinite; -} -@keyframes icon-loading { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -/******************************* - States -*******************************/ - -i.icon.hover { - opacity: 1 !important; -} - -i.icon.active { - opacity: 1 !important; -} - -i.emphasized.icon { - opacity: 1 !important; -} - -i.disabled.icon { - opacity: @disabledOpacity !important; -} - - -/******************************* - Variations -*******************************/ - - -/*------------------- - Fitted ---------------------*/ - -i.fitted.icon { - width: auto; - margin: 0em !important; -} - -/*------------------- - Link ---------------------*/ - -i.link.icon, i.link.icons { - cursor: pointer; - opacity: @linkOpacity; - transition: opacity @defaultDuration @defaultEasing; -} -i.link.icon:hover, i.link.icons:hover { - opacity: 1 !important; -} - -/*------------------- - Circular ---------------------*/ - -i.circular.icon { - border-radius: 500em !important; - line-height: 1 !important; - - padding: @circularPadding !important; - box-shadow: @circularShadow; - - width: @circularSize !important; - height: @circularSize !important; -} -i.circular.inverted.icon { - border: none; - box-shadow: none; -} - -/*------------------- - Flipped ---------------------*/ - -i.flipped.icon, -i.horizontally.flipped.icon { - transform: scale(-1, 1); -} -i.vertically.flipped.icon { - transform: scale(1, -1); -} - -/*------------------- - Rotated ---------------------*/ - -i.rotated.icon, -i.right.rotated.icon, -i.clockwise.rotated.icon { - transform: rotate(90deg); -} - -i.left.rotated.icon, -i.counterclockwise.rotated.icon { - transform: rotate(-90deg); -} - -/*------------------- - Bordered ---------------------*/ - -i.bordered.icon { - line-height: 1; - vertical-align: baseline; - - width: @borderedSize; - height: @borderedSize; - padding: @borderedVerticalPadding @borderedHorizontalPadding !important; - box-shadow: @borderedShadow; -} -i.bordered.inverted.icon { - border: none; - box-shadow: none; -} - -/*------------------- - Inverted ---------------------*/ - -/* Inverted Shapes */ -i.inverted.bordered.icon, -i.inverted.circular.icon { - background-color: @black !important; - color: @white !important; -} - -i.inverted.icon { - color: @white; -} - - -/*------------------- - Colors ---------------------*/ - -/* Red */ -i.red.icon { - color: @red !important; -} -i.inverted.red.icon { - color: @lightRed !important; -} -i.inverted.bordered.red.icon, -i.inverted.circular.red.icon { - background-color: @red !important; - color: @white !important; -} - -/* Orange */ -i.orange.icon { - color: @orange !important; -} -i.inverted.orange.icon { - color: @lightOrange !important; -} -i.inverted.bordered.orange.icon, -i.inverted.circular.orange.icon { - background-color: @orange !important; - color: @white !important; -} - -/* Yellow */ -i.yellow.icon { - color: @yellow !important; -} -i.inverted.yellow.icon { - color: @lightYellow !important; -} -i.inverted.bordered.yellow.icon, -i.inverted.circular.yellow.icon { - background-color: @yellow !important; - color: @white !important; -} - -/* Olive */ -i.olive.icon { - color: @olive !important; -} -i.inverted.olive.icon { - color: @lightOlive !important; -} -i.inverted.bordered.olive.icon, -i.inverted.circular.olive.icon { - background-color: @olive !important; - color: @white !important; -} - -/* Green */ -i.green.icon { - color: @green !important; -} -i.inverted.green.icon { - color: @lightGreen !important; -} -i.inverted.bordered.green.icon, -i.inverted.circular.green.icon { - background-color: @green !important; - color: @white !important; -} - -/* Teal */ -i.teal.icon { - color: @teal !important; -} -i.inverted.teal.icon { - color: @lightTeal !important; -} -i.inverted.bordered.teal.icon, -i.inverted.circular.teal.icon { - background-color: @teal !important; - color: @white !important; -} - -/* Blue */ -i.blue.icon { - color: @blue !important; -} -i.inverted.blue.icon { - color: @lightBlue !important; -} -i.inverted.bordered.blue.icon, -i.inverted.circular.blue.icon { - background-color: @blue !important; - color: @white !important; -} - -/* Violet */ -i.violet.icon { - color: @violet !important; -} -i.inverted.violet.icon { - color: @lightViolet !important; -} -i.inverted.bordered.violet.icon, -i.inverted.circular.violet.icon { - background-color: @violet !important; - color: @white !important; -} - -/* Purple */ -i.purple.icon { - color: @purple !important; -} -i.inverted.purple.icon { - color: @lightPurple !important; -} -i.inverted.bordered.purple.icon, -i.inverted.circular.purple.icon { - background-color: @purple !important; - color: @white !important; -} - -/* Pink */ -i.pink.icon { - color: @pink !important; -} -i.inverted.pink.icon { - color: @lightPink !important; -} -i.inverted.bordered.pink.icon, -i.inverted.circular.pink.icon { - background-color: @pink !important; - color: @white !important; -} - -/* Brown */ -i.brown.icon { - color: @brown !important; -} -i.inverted.brown.icon { - color: @lightBrown !important; -} -i.inverted.bordered.brown.icon, -i.inverted.circular.brown.icon { - background-color: @brown !important; - color: @white !important; -} - -/* Grey */ -i.grey.icon { - color: @grey !important; -} -i.inverted.grey.icon { - color: @lightGrey !important; -} -i.inverted.bordered.grey.icon, -i.inverted.circular.grey.icon { - background-color: @grey !important; - color: @white !important; -} - -/* Black */ -i.black.icon { - color: @black !important; -} -i.inverted.black.icon { - color: @lightBlack !important; -} -i.inverted.bordered.black.icon, -i.inverted.circular.black.icon { - background-color: @black !important; - color: @white !important; -} - -/*------------------- - Sizes ---------------------*/ - -i.mini.icon, -i.mini.icons { - line-height: 1; - font-size: @mini; -} -i.tiny.icon, -i.tiny.icons { - line-height: 1; - font-size: @tiny; -} -i.small.icon, -i.small.icons { - line-height: 1; - font-size: @small; -} -i.icon, -i.icons { - font-size: @medium; -} -i.large.icon, -i.large.icons { - line-height: 1; - vertical-align: middle; - font-size: @large; -} -i.big.icon, -i.big.icons { - line-height: 1; - vertical-align: middle; - font-size: @big; -} -i.huge.icon, -i.huge.icons { - line-height: 1; - vertical-align: middle; - font-size: @huge; -} -i.massive.icon, -i.massive.icons { - line-height: 1; - vertical-align: middle; - font-size: @massive; -} - -/******************************* - Groups -*******************************/ - -i.icons { - display: inline-block; - position: relative; - line-height: 1; -} - -i.icons .icon { - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - margin: 0em; - margin: 0; -} - -i.icons .icon:first-child { - position: static; - width: auto; - height: auto; - vertical-align: top; - transform: none; - margin-right: @distanceFromText; -} - -/* Corner Icon */ -i.icons .corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; - transform: none; - font-size: @cornerIconSize; - text-shadow: @cornerIconShadow; -} -i.icons .top.right.corner.icon { - top: 0; - left: auto; - right: 0; - bottom: auto; -} -i.icons .top.left.corner.icon { - top: 0; - left: 0; - right: auto; - bottom: auto; -} -i.icons .bottom.left.corner.icon { - top: auto; - left: 0; - right: auto; - bottom: 0; -} -i.icons .bottom.right.corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; -} - -i.icons .inverted.corner.icon { - text-shadow: @cornerIconInvertedShadow; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/image.less b/src/definitions/elements/image.less deleted file mode 100644 index 03db0f2..0000000 --- a/src/definitions/elements/image.less +++ /dev/null @@ -1,328 +0,0 @@ -/*! - * # Semantic UI - Image - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'image'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Image -*******************************/ - -.ui.image { - position: relative; - display: inline-block; - vertical-align: middle; - max-width: 100%; - background-color: @placeholderColor; -} - -img.ui.image { - display: block; -} - -.ui.image svg, -.ui.image img { - display: block; - max-width: 100%; - height: auto; -} - - -/******************************* - States -*******************************/ - -.ui.hidden.images, -.ui.hidden.image { - display: none; -} -.ui.hidden.transition.images, -.ui.hidden.transition.image { - display: block; - visibility: hidden; -} -.ui.images > .hidden.transition { - display: inline-block; - visibility: hidden; -} - - -.ui.disabled.images, -.ui.disabled.image { - cursor: default; - opacity: @disabledOpacity; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Inline ----------------*/ - -.ui.inline.image, -.ui.inline.image svg, -.ui.inline.image img { - display: inline-block; -} - -/*------------------ - Vertical Aligned --------------------*/ - -.ui.top.aligned.images .image, -.ui.top.aligned.image, -.ui.top.aligned.image svg, -.ui.top.aligned.image img { - display: inline-block; - vertical-align: top; -} -.ui.middle.aligned.images .image, -.ui.middle.aligned.image, -.ui.middle.aligned.image svg, -.ui.middle.aligned.image img { - display: inline-block; - vertical-align: middle; -} -.ui.bottom.aligned.images .image, -.ui.bottom.aligned.image, -.ui.bottom.aligned.image svg, -.ui.bottom.aligned.image img { - display: inline-block; - vertical-align: bottom; -} - -/*-------------- - Rounded ----------------*/ - -.ui.rounded.images .image, -.ui.rounded.image, -.ui.rounded.images .image > *, -.ui.rounded.image > * { - border-radius: @roundedBorderRadius; -} - -/*-------------- - Bordered ----------------*/ - -.ui.bordered.images .image, -.ui.bordered.images img, -.ui.bordered.images svg, -.ui.bordered.image img, -.ui.bordered.image svg, -img.ui.bordered.image { - border: @imageBorder; -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.images, -.ui.circular.image { - overflow: hidden; -} - -.ui.circular.images .image, -.ui.circular.image, -.ui.circular.images .image > *, -.ui.circular.image > * { - -webkit-border-radius: @circularRadius; - -moz-border-radius: @circularRadius; - border-radius: @circularRadius; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.images, -.ui.fluid.image, -.ui.fluid.images img, -.ui.fluid.images svg, -.ui.fluid.image svg, -.ui.fluid.image img { - display: block; - width: 100%; - height: auto; -} - - -/*-------------- - Avatar ----------------*/ - -.ui.avatar.images .image, -.ui.avatar.images img, -.ui.avatar.images svg, -.ui.avatar.image img, -.ui.avatar.image svg, -.ui.avatar.image { - margin-right: @avatarMargin; - - display: inline-block; - width: @avatarSize; - height: @avatarSize; - - -webkit-border-radius: @circularRadius; - -moz-border-radius: @circularRadius; - border-radius: @circularRadius; -} - -/*------------------- - Spaced ---------------------*/ - -.ui.spaced.image { - display: inline-block !important; - margin-left: @spacedDistance; - margin-right: @spacedDistance; -} - -.ui[class*="left spaced"].image { - margin-left: @spacedDistance; - margin-right: 0em; -} - -.ui[class*="right spaced"].image { - margin-left: 0em; - margin-right: @spacedDistance; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.image, -.ui.floated.images { - float: left; - margin-right: @floatedHorizontalMargin; - margin-bottom: @floatedVerticalMargin; -} -.ui.right.floated.images, -.ui.right.floated.image { - float: right; - margin-right: 0em; - margin-bottom: @floatedVerticalMargin; - margin-left: @floatedHorizontalMargin; -} - -.ui.floated.images:last-child, -.ui.floated.image:last-child { - margin-bottom: 0em; -} - - -.ui.centered.images, -.ui.centered.image { - margin-left: auto; - margin-right: auto; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.images .image, -.ui.mini.images img, -.ui.mini.images svg, -.ui.mini.image { - width: @miniWidth; - height: auto; - font-size: @mini; -} -.ui.tiny.images .image, -.ui.tiny.images img, -.ui.tiny.images svg, -.ui.tiny.image { - width: @tinyWidth; - height: auto; - font-size: @tiny; -} -.ui.small.images .image, -.ui.small.images img, -.ui.small.images svg, -.ui.small.image { - width: @smallWidth; - height: auto; - font-size: @small; -} -.ui.medium.images .image, -.ui.medium.images img, -.ui.medium.images svg, -.ui.medium.image { - width: @mediumWidth; - height: auto; - font-size: @medium; -} -.ui.large.images .image, -.ui.large.images img, -.ui.large.images svg, -.ui.large.image { - width: @largeWidth; - height: auto; - font-size: @large; -} -.ui.big.images .image, -.ui.big.images img, -.ui.big.images svg, -.ui.big.image { - width: @bigWidth; - height: auto; - font-size: @big; -} -.ui.huge.images .image, -.ui.huge.images img, -.ui.huge.images svg, -.ui.huge.image { - width: @hugeWidth; - height: auto; - font-size: @huge; -} -.ui.massive.images .image, -.ui.massive.images img, -.ui.massive.images svg, -.ui.massive.image { - width: @massiveWidth; - height: auto; - font-size: @massive; -} - - -/******************************* - Groups -*******************************/ - -.ui.images { - font-size: 0em; - margin: 0em -@imageHorizontalMargin 0rem; -} - -.ui.images .image, -.ui.images > img, -.ui.images > svg { - display: inline-block; - margin: 0em @imageHorizontalMargin @imageVerticalMargin; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less deleted file mode 100644 index 22d439f..0000000 --- a/src/definitions/elements/input.less +++ /dev/null @@ -1,508 +0,0 @@ -/*! - * # Semantic UI - Input - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'input'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Standard -*******************************/ - - -/*-------------------- - Inputs ----------------------*/ - -.ui.input { - position: relative; - font-weight: @normal; - font-style: normal; - display: inline-flex; - color: @inputColor; -} -.ui.input > input { - margin: 0em; - max-width: 100%; - flex: 1 0 auto; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - text-align: @textAlign; - line-height: @lineHeight; - - font-family: @inputFont; - padding: @padding; - - background: @background; - border: @border; - color: @inputColor; - border-radius: @borderRadius; - transition: @transition; - - box-shadow: @boxShadow; -} - - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ - -.ui.input > input::-webkit-input-placeholder { - color: @placeholderColor; -} -.ui.input > input::-moz-placeholder { - color: @placeholderColor; -} -.ui.input > input:-ms-input-placeholder { - color: @placeholderColor; -} - - -/******************************* - States -*******************************/ - -/*-------------------- - Disabled ----------------------*/ - -.ui.disabled.input, -.ui.input:not(.disabled) input[disabled] { - opacity: @disabledOpacity; -} - -.ui.disabled.input > input, -.ui.input:not(.disabled) input[disabled] { - pointer-events: none; -} - -/*-------------------- - Active ----------------------*/ - -.ui.input > input:active, -.ui.input.down input { - border-color: @downBorderColor; - background: @downBackground; - color: @downColor; - box-shadow: @downBoxShadow; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.loading.input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @loaderFillColor; -} -.ui.loading.loading.input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: button-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor transparent transparent; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; -} - - -/*-------------------- - Focus ----------------------*/ - -.ui.input.focus > input, -.ui.input > input:focus { - border-color: @focusBorderColor; - background: @focusBackground; - color: @focusColor; - box-shadow: @focusBoxShadow; -} -.ui.input.focus > input::-webkit-input-placeholder, -.ui.input > input:focus::-webkit-input-placeholder { - color: @placeholderFocusColor; -} -.ui.input.focus > input::-moz-placeholder, -.ui.input > input:focus::-moz-placeholder { - color: @placeholderFocusColor; -} -.ui.input.focus > input:-ms-input-placeholder, -.ui.input > input:focus:-ms-input-placeholder { - color: @placeholderFocusColor; -} - - - -/*-------------------- - Error ----------------------*/ - -.ui.input.error > input { - background-color: @errorBackground; - border-color: @errorBorder; - color: @errorColor; - box-shadow: @errorBoxShadow; -} - -/* Error Placeholder */ -.ui.input.error > input::-webkit-input-placeholder { - color: @placeholderErrorColor; -} -.ui.input.error > input::-moz-placeholder { - color: @placeholderErrorColor; -} -.ui.input.error > input:-ms-input-placeholder { - color: @placeholderErrorColor !important; -} - -/* Focused Error Placeholder */ -.ui.input.error > input:focus::-webkit-input-placeholder { - color: @placeholderErrorFocusColor; -} -.ui.input.error > input:focus::-moz-placeholder { - color: @placeholderErrorFocusColor; -} -.ui.input.error > input:focus:-ms-input-placeholder { - color: @placeholderErrorFocusColor !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Transparent ----------------------*/ - - -.ui.transparent.input > input { - border-color: transparent !important; - background-color: transparent !important; - padding: 0em !important; - box-shadow: none !important; - border-radius: 0px !important; -} - -/* Transparent Icon */ -.ui.transparent.icon.input > i.icon { - width: @transparentIconWidth; -} -.ui.transparent.icon.input > input { - padding-left: 0em !important; - padding-right: @transparentIconMargin !important; -} -.ui.transparent[class*="left icon"].input > input { - padding-left: @transparentIconMargin !important; - padding-right: 0em !important; -} - -/* Transparent Inverted */ -.ui.transparent.inverted.input { - color: @transparentInvertedColor; -} -.ui.transparent.inverted.input > input { - color: inherit; -} - -.ui.transparent.inverted.input > input::-webkit-input-placeholder { - color: @transparentInvertedPlaceholderColor; -} -.ui.transparent.inverted.input > input::-moz-placeholder { - color: @transparentInvertedPlaceholderColor; -} -.ui.transparent.inverted.input > input:-ms-input-placeholder { - color: @transparentInvertedPlaceholderColor; -} - - -/*-------------------- - Icon ----------------------*/ - -.ui.icon.input > i.icon { - cursor: default; - position: absolute; - line-height: 1; - text-align: center; - top: 0px; - right: 0px; - margin: 0em; - height: 100%; - - width: @iconWidth; - opacity: @iconOpacity; - border-radius: 0em @borderRadius @borderRadius 0em; - transition: @iconTransition; -} -.ui.icon.input > i.icon:not(.link) { - pointer-events: none; -} -.ui.icon.input > input { - padding-right: @iconMargin !important; -} - -.ui.icon.input > i.icon:before, -.ui.icon.input > i.icon:after { - left: 0; - position: absolute; - text-align: center; - top: 50%; - width: 100%; - margin-top: @iconOffset; -} -.ui.icon.input > i.link.icon { - cursor: pointer; -} -.ui.icon.input > i.circular.icon { - top: @circularIconVerticalOffset; - right: @circularIconHorizontalOffset; -} - -/* Left Icon Input */ -.ui[class*="left icon"].input > i.icon { - right: auto; - left: @borderWidth; - border-radius: @borderRadius 0em 0em @borderRadius; -} -.ui[class*="left icon"].input > i.circular.icon { - right: auto; - left: @circularIconHorizontalOffset; -} -.ui[class*="left icon"].input > input { - padding-left: @iconMargin !important; - padding-right: @horizontalPadding !important; -} - -/* Focus */ -.ui.icon.input > input:focus ~ i.icon { - opacity: 1; -} - -/*-------------------- - Labeled ----------------------*/ - -/* Adjacent Label */ -.ui.labeled.input > .label { - flex: 0 0 auto; - margin: 0; - font-size: @relativeMedium; -} -.ui.labeled.input > .label:not(.corner) { - padding-top: @verticalPadding; - padding-bottom: @verticalPadding; -} - -/* Regular Label on Left */ -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; - border-left-color: transparent; -} -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus { - border-left-color: @focusBorderColor; -} - -/* Regular Label on Right */ -.ui[class*="right labeled"].input > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} -.ui[class*="right labeled"].input > input + .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="right labeled"].input > input:focus { - border-right-color: @focusBorderColor !important; -} - -/* Corner Label */ -.ui.labeled.input .corner.label { - top: @labelCornerTop; - right: @labelCornerRight; - font-size: @labelCornerSize; - border-radius: 0em @borderRadius 0em 0em; -} - -/* Spacing with corner label */ -.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input { - padding-right: @labeledMargin !important; -} -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input { - padding-right: @labeledIconInputMargin !important; -} -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon { - margin-right: @labeledIconMargin; -} - -/* Left Labeled */ -.ui[class*="left corner labeled"].labeled.input > input { - padding-left: @labeledMargin !important; -} -.ui[class*="left corner labeled"].icon.input > input { - padding-left: @labeledIconInputMargin !important; -} -.ui[class*="left corner labeled"].icon.input > .icon { - margin-left: @labeledIconMargin; -} - -/* Corner Label Position */ -.ui.input > .ui.corner.label { - top: @borderWidth; - right: @borderWidth; -} -.ui.input > .ui.left.corner.label { - right: auto; - left: @borderWidth; -} - - -/*-------------------- - Action ----------------------*/ - -.ui.action.input > .button, -.ui.action.input > .buttons { - display: flex; - align-items: center; - flex: 0 0 auto; -} -.ui.action.input > .button, -.ui.action.input > .buttons > .button { - padding-top: @verticalPadding; - padding-bottom: @verticalPadding; - margin: 0; -} - -/* Button on Right */ -.ui.action.input:not([class*="left action"]) > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} -.ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child), -.ui.action.input:not([class*="left action"]) > .button:not(:first-child), -.ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button { - border-radius: 0px; -} -.ui.action.input:not([class*="left action"]) > .dropdown:last-child, -.ui.action.input:not([class*="left action"]) > .button:last-child, -.ui.action.input:not([class*="left action"]) > .buttons:last-child > .button { - border-radius: 0px @borderRadius @borderRadius 0px; -} - -/* Input Focus */ -.ui.action.input:not([class*="left action"]) > input:focus { - border-right-color: @focusBorderColor !important; -} - -/* Button on Left */ -.ui[class*="left action"].input > input { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; - border-left-color: transparent !important; -} -.ui[class*="left action"].input > .dropdown, -.ui[class*="left action"].input > .button, -.ui[class*="left action"].input > .buttons > .button { - border-radius: 0px; -} -.ui[class*="left action"].input > .dropdown:first-child, -.ui[class*="left action"].input > .button:first-child, -.ui[class*="left action"].input > .buttons:first-child > .button { - border-radius: @borderRadius 0px 0px @borderRadius; -} -/* Input Focus */ -.ui[class*="left action"].input > input:focus { - border-left-color: @focusBorderColor !important; -} - -/*-------------------- - Inverted ----------------------*/ - -/* Standard */ -.ui.inverted.input > input { - border: none; -} - -/*-------------------- - Fluid ----------------------*/ - -.ui.fluid.input { - display: flex; -} -.ui.fluid.input > input { - width: 0px !important; -} - -/*-------------------- - Size ----------------------*/ - -.ui.mini.input { - font-size: @relativeMini; -} -.ui.small.input { - font-size: @relativeSmall; -} -.ui.input { - font-size: @relativeMedium; -} -.ui.large.input { - font-size: @relativeLarge; -} -.ui.big.input { - font-size: @relativeBig; -} -.ui.huge.input { - font-size: @relativeHuge; -} -.ui.massive.input { - font-size: @relativeMassive; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/label.less b/src/definitions/elements/label.less deleted file mode 100644 index 4fc57f0..0000000 --- a/src/definitions/elements/label.less +++ /dev/null @@ -1,1332 +0,0 @@ -/*! - * # Semantic UI - Label - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'label'; - -@import (multiple) '../../theme.config'; - -/******************************* - Label -*******************************/ - -.ui.label { - display: inline-block; - line-height: 1; - vertical-align: @verticalAlign; - - margin: @verticalMargin @horizontalMargin; - - --label-border-color: hsl(var(--hsl-slate-400) / 20%); - background-color: var(--label-background-color, @backgroundColor); - background-image: @backgroundImage; - padding: @verticalPadding @horizontalPadding; - color: var(--label-text-color, @color); - --label-active-background-color: hsl(var(--hsl-slate-400) / 20%); - --label-active-border-color: hsl(var(--hsl-slate-400) / 30%); - --label-active-text-color: hsl(var(--hsl-slate-300)); - --label-circular-background-color: hsl(var(--hsl-slate-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-slate-400)); - - text-transform: @textTransform; - font-weight: @fontWeight; - - border: @border; - border-radius: @borderRadius; - transition: @transition; -} - -.ui.label:first-child { - margin-left: 0em; -} -.ui.label:last-child { - margin-right: 0em; -} - -/* Link */ -a.ui.label { - cursor: pointer; -} - -/* Inside Link */ -.ui.label > a { - cursor: pointer; - color: inherit; - opacity: @linkOpacity; - transition: @linkTransition; -} -.ui.label > a:hover { - opacity: 1; -} - -/* Image */ -.ui.label > img { - width: auto !important; - vertical-align: middle; - height: @imageHeight !important; -} - -/* Icon */ -.ui.label > .icon { - width: auto; - margin: 0em @iconDistance 0em 0em; -} - -/* Detail */ -.ui.label > .detail { - display: inline-block; - vertical-align: top; - font-weight: @detailFontWeight; - margin-left: @detailMargin; - opacity: @detailOpacity; -} -.ui.label > .detail .icon { - margin: 0em @detailIconDistance 0em 0em; -} - - -/* Removable label */ -.ui.label > .close.icon, -.ui.label > .delete.icon { - cursor: pointer; - margin-right: 0em; - margin-left: @deleteMargin; - font-size: @deleteSize; - opacity: @deleteOpacity; - transition: @deleteTransition; -} -.ui.label > .delete.icon:hover { - opacity: 1; -} - -/*------------------- - Group ---------------------*/ - -.ui.labels > .label { - margin: 0em @groupHorizontalMargin @groupVerticalMargin 0em; -} - - -/*------------------- - Coupling ---------------------*/ - -.ui.header > .ui.label { - margin-top: @lineHeightOffset; -} - - -/* Remove border radius on attached segment */ -.ui.attached.segment > .ui.top.left.attached.label, -.ui.bottom.attached.segment > .ui.top.left.attached.label { - border-top-left-radius: 0; -} -.ui.attached.segment > .ui.top.right.attached.label, -.ui.bottom.attached.segment > .ui.top.right.attached.label { - border-top-right-radius: 0; -} -.ui.top.attached.segment > .ui.bottom.left.attached.label { - border-bottom-left-radius: 0; -} -.ui.top.attached.segment > .ui.bottom.right.attached.label { - border-bottom-right-radius: 0; -} - -/* Padding on next content after a label */ -.ui.top.attached.label:first-child + :not(.attached), -.ui.top.attached.label + [class*="right floated"] + * { - margin-top: @attachedSegmentPadding !important; -} -.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { - margin-top: 0em; - margin-bottom: @attachedSegmentPadding !important; -} - - -/******************************* - Types -*******************************/ - -.ui.image.label { - width: auto !important; - margin-top: 0em; - margin-bottom: 0em; - max-width: 9999px; - vertical-align: baseline; - text-transform: none; - - background: @imageLabelBackground; - padding: @imageLabelPadding; - border-radius: @imageLabelBorderRadius; - box-shadow: @imageLabelBoxShadow; -} - -.ui.image.label img { - display: inline-block; - vertical-align: top; - - height: @imageLabelImageHeight; - margin: @imageLabelImageMargin; - border-radius: @imageLabelImageBorderRadius; -} - -.ui.image.label .detail { - background: @imageLabelDetailBackground; - margin: @imageLabelDetailMargin; - padding: @imageLabelDetailPadding; - border-radius: 0em @imageLabelBorderRadius @imageLabelBorderRadius 0em; -} - -/*------------------- - Tag ---------------------*/ - -.ui.tag.labels .label, -.ui.tag.label { - margin-left: 1em; - position: relative; - padding-left: @tagHorizontalPadding; - padding-right: @tagHorizontalPadding; - - border-radius: 0em @borderRadius @borderRadius 0em; - transition: @tagTransition; -} -.ui.tag.labels .label:before, -.ui.tag.label:before { - position: absolute; - transform: translateY(-50%) translateX(50%) rotate(-45deg); - - top: @tagTriangleTopOffset; - right: @tagTriangleRightOffset; - content: ''; - - background-color: inherit; - background-image: @tagTriangleBackgroundImage; - - width: @tagTriangleSize; - height: @tagTriangleSize; - transition: @tagTransition; -} - - -.ui.tag.labels .label:after, -.ui.tag.label:after { - position: absolute; - content: ''; - top: 50%; - left: -(@tagCircleSize / 2); - - margin-top: -(@tagCircleSize / 2); - background-color: @tagCircleColor !important; - width: @tagCircleSize; - height: @tagCircleSize; - - box-shadow: @tagCircleBoxShadow; - border-radius: @circularRadius; -} - - -/*------------------- - Corner Label ---------------------*/ - -.ui.corner.label { - position: absolute; - top: 0em; - right: 0em; - margin: 0em; - padding: 0em; - text-align: center; - - border-color: @backgroundColor; - - width: @cornerTriangleSize; - height: @cornerTriangleSize; - z-index: @cornerTriangleZIndex; - transition: @cornerTriangleTransition; -} - -/* Icon Label */ -.ui.corner.label{ - background-color: transparent !important; -} -.ui.corner.label:after { - position: absolute; - content: ""; - right: 0em; - top: 0em; - z-index: -1; - - width: 0em; - height: 0em; - background-color: transparent !important; - - border-top: 0em solid transparent; - border-right: @cornerTriangleSize solid transparent; - border-bottom: @cornerTriangleSize solid transparent; - border-left: 0em solid transparent; - - border-right-color: inherit; - transition: @cornerTriangleTransition; -} - -.ui.corner.label .icon { - cursor: default; - position: relative; - top: @cornerIconTopOffset; - left: @cornerIconLeftOffset; - font-size: @cornerIconSize; - margin: 0em; -} - -/* Left Corner */ -.ui.left.corner.label, -.ui.left.corner.label:after { - right: auto; - left: 0em; -} -.ui.left.corner.label:after { - border-top: @cornerTriangleSize solid transparent; - border-right: @cornerTriangleSize solid transparent; - border-bottom: 0em solid transparent; - border-left: 0em solid transparent; - - border-top-color: inherit; -} -.ui.left.corner.label .icon { - left: -@cornerIconLeftOffset; -} - -/* Segment */ -.ui.segment > .ui.corner.label { - top: -1px; - right: -1px; -} -.ui.segment > .ui.left.corner.label { - right: auto; - left: -1px; -} - -/*------------------- - Ribbon ---------------------*/ - -.ui.ribbon.label { - position: relative; - margin: 0em; - min-width: max-content; - border-radius: 0em @borderRadius @borderRadius 0em; - border-color: @ribbonShadowColor; -} - -.ui.ribbon.label:after { - position: absolute; - content: ''; - - top: 100%; - left: 0%; - background-color: transparent !important; - - border-style: solid; - border-width: 0em @ribbonTriangleSize @ribbonTriangleSize 0em; - border-color: transparent; - border-right-color: inherit; - - width: 0em; - height: 0em; -} -/* Positioning */ -.ui.ribbon.label { - left: @ribbonOffset; - margin-right: -@ribbonTriangleSize; - padding-left: @ribbonDistance; - padding-right: @ribbonTriangleSize; -} -.ui[class*="right ribbon"].label { - left: @rightRibbonOffset; - padding-left: @ribbonTriangleSize; - padding-right: @ribbonDistance; -} - -/* Right Ribbon */ -.ui[class*="right ribbon"].label { - text-align: left; - transform: translateX(-100%); - border-radius: @borderRadius 0em 0em @borderRadius; -} -.ui[class*="right ribbon"].label:after { - left: auto; - right: 0%; - - border-style: solid; - border-width: @ribbonTriangleSize @ribbonTriangleSize 0em 0em; - border-color: transparent; - border-top-color: inherit; -} - -/* Inside Table */ -.ui.image > .ribbon.label, -.ui.card .image > .ribbon.label { - position: absolute; - top: @ribbonImageTopDistance; -} -.ui.card .image > .ui.ribbon.label, -.ui.image > .ui.ribbon.label { - left: @ribbonImageOffset; -} -.ui.card .image > .ui[class*="right ribbon"].label, -.ui.image > .ui[class*="right ribbon"].label { - left: @rightRibbonImageOffset; - padding-left: @horizontalPadding; -} - -/* Inside Table */ -.ui.table td > .ui.ribbon.label { - left: @ribbonTableOffset; -} -.ui.table td > .ui[class*="right ribbon"].label { - left: @rightRibbonTableOffset; - padding-left: @horizontalPadding; -} - - -/*------------------- - Attached ---------------------*/ - -.ui[class*="top attached"].label, -.ui.attached.label { - width: 100%; - position: absolute; - margin: 0em; - top: 0em; - left: 0em; - - padding: @attachedVerticalPadding @attachedHorizontalPadding; - - border-radius: @attachedCornerBorderRadius @attachedCornerBorderRadius 0em 0em; -} -.ui[class*="bottom attached"].label { - top: auto; - bottom: 0em; - border-radius: 0em 0em @attachedCornerBorderRadius @attachedCornerBorderRadius; -} - -.ui[class*="top left attached"].label { - width: auto; - margin-top: 0em !important; - border-radius: @attachedCornerBorderRadius 0em @attachedBorderRadius 0em; -} - -.ui[class*="top right attached"].label { - width: auto; - left: auto; - right: 0em; - border-radius: 0em @attachedCornerBorderRadius 0em @attachedBorderRadius; -} -.ui[class*="bottom left attached"].label { - width: auto; - top: auto; - bottom: 0em; - border-radius: 0em @attachedBorderRadius 0em @attachedCornerBorderRadius; -} -.ui[class*="bottom right attached"].label { - top: auto; - bottom: 0em; - left: auto; - right: 0em; - width: auto; - border-radius: @attachedBorderRadius 0em @attachedCornerBorderRadius 0em; -} - - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.label.disabled { - opacity: 0.5; -} - -/*------------------- - Hover ---------------------*/ - -a.ui.labels .label:hover, -a.ui.label:hover { - background-color: @labelHoverBackgroundColor; - border-color: @labelHoverBackgroundColor; - - background-image: @labelHoverBackgroundImage; - color: @labelHoverTextColor; -} -.ui.labels a.label:hover:before, -a.ui.label:hover:before { - color: @labelHoverTextColor; -} - -/*------------------- - Active ---------------------*/ - -.ui.active.label { - background-color: var(--label-active-background-color, @labelActiveBackgroundColor); - border-color: var(--label-active-border-color, @labelActiveBackgroundColor); - - background-image: @labelActiveBackgroundImage; - color: var(--label-active-text-color, @labelActiveTextColor); -} -.ui.active.label:before { - background-color: @labelActiveBackgroundColor; - background-image: @labelActiveBackgroundImage; - color: @labelActiveTextColor; -} - -/*------------------- - Active Hover ---------------------*/ - -a.ui.labels .active.label:hover, -a.ui.active.label:hover { - background-color: @labelActiveHoverBackgroundColor; - border-color: @labelActiveHoverBackgroundColor; - - background-image: @labelActiveHoverBackgroundImage; - color: @labelActiveHoverTextColor; -} -.ui.labels a.active.label:ActiveHover:before, -a.ui.active.label:ActiveHover:before { - background-color: @labelActiveHoverBackgroundColor; - background-image: @labelActiveHoverBackgroundImage; - color: @labelActiveHoverTextColor; -} - - -/*------------------- - Visible ---------------------*/ - -.ui.labels.visible .label, -.ui.label.visible:not(.dropdown) { - display: inline-block !important; -} - -/*------------------- - Hidden ---------------------*/ - -.ui.labels.hidden .label, -.ui.label.hidden { - display: none !important; -} - - -/******************************* - Variations -*******************************/ - - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ -.ui.red.labels .label, -.ui.red.label { - --label-background-color: hsl(var(--hsl-red-400) / 10%); - --label-border-color: hsl(var(--hsl-red-400) / 20%); - --label-text-color: hsl(var(--hsl-red-400)); - --label-active-background-color: hsl(var(--hsl-red-400) / 20%); - --label-active-border-color: hsl(var(--hsl-red-400) / 30%); - --label-active-text-color: hsl(var(--hsl-red-500)); - --label-circular-background-color: hsl(var(--hsl-red-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-red-400)); -} -/* Link */ -.ui.red.labels .label:hover, -a.ui.red.label:hover{ - background-color: @redHover !important; - border-color: @redHover !important; - color: @redHoverTextColor !important; -} -/* Corner */ -.ui.red.corner.label, -.ui.red.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.red.ribbon.label { - border-color: @redRibbonShadow !important; -} -/* Basic */ -.ui.basic.red.label { - background: @basicBackground !important; - color: @red !important; - border-color: @red !important; -} -.ui.basic.red.labels a.label:hover, -a.ui.basic.red.label:hover { - background-color: @white !important; - color: @redHover !important; - border-color: @redHover !important; -} - -/*--- Orange ---*/ -.ui.orange.labels .label, -.ui.orange.label { - --label-background-color: hsl(var(--hsl-orange-400) / 10%); - --label-border-color: hsl(var(--hsl-orange-400) / 20%); - --label-text-color: hsl(var(--hsl-orange-400)); - --label-active-background-color: hsl(var(--hsl-orange-400) / 20%); - --label-active-border-color: hsl(var(--hsl-orange-400) / 30%); - --label-active-text-color: hsl(var(--hsl-orange-500)); - --label-circular-background-color: hsl(var(--hsl-orange-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-orange-400)); -} -/* Link */ -.ui.orange.labels .label:hover, -a.ui.orange.label:hover{ - background-color: @orangeHover !important; - border-color: @orangeHover !important; - color: @orangeHoverTextColor !important; -} -/* Corner */ -.ui.orange.corner.label, -.ui.orange.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.orange.ribbon.label { - border-color: @orangeRibbonShadow !important; -} -/* Basic */ -.ui.basic.orange.label { - background: @basicBackground !important; - color: @orange !important; - border-color: @orange !important; -} -.ui.basic.orange.labels a.label:hover, -a.ui.basic.orange.label:hover { - background-color: @white !important; - color: @orangeHover !important; - border-color: @orangeHover !important; -} - -/*--- Yellow ---*/ -.ui.yellow.labels .label, -.ui.yellow.label { - --label-background-color: hsl(var(--hsl-yellow-400) / 10%); - --label-border-color: hsl(var(--hsl-yellow-400) / 20%); - --label-text-color: hsl(var(--hsl-yellow-400)); - --label-active-background-color: hsl(var(--hsl-yellow-400) / 20%); - --label-active-border-color: hsl(var(--hsl-yellow-400) / 30%); - --label-active-text-color: hsl(var(--hsl-yellow-500)); - --label-circular-background-color: hsl(var(--hsl-yellow-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-yellow-400)); -} -/* Link */ -.ui.yellow.labels .label:hover, -a.ui.yellow.label:hover{ - background-color: @yellowHover !important; - border-color: @yellowHover !important; - color: @yellowHoverTextColor !important; -} -/* Corner */ -.ui.yellow.corner.label, -.ui.yellow.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.yellow.ribbon.label { - border-color: @yellowRibbonShadow !important; -} -/* Basic */ -.ui.basic.yellow.label { - background: @basicBackground !important; - color: @yellow !important; - border-color: @yellow !important; -} -.ui.basic.yellow.labels a.label:hover, -a.ui.basic.yellow.label:hover { - background-color: @white !important; - color: @yellowHover !important; - border-color: @yellowHover !important; -} - -/*--- Olive ---*/ -.ui.olive.labels .label, -.ui.olive.label { - --label-background-color: hsl(var(--hsl-lime-400) / 10%); - --label-border-color: hsl(var(--hsl-lime-400) / 20%); - --label-text-color: hsl(var(--hsl-lime-400)); - --label-active-background-color: hsl(var(--hsl-lime-400) / 20%); - --label-active-border-color: hsl(var(--hsl-lime-400) / 30%); - --label-active-text-color: hsl(var(--hsl-lime-500)); - --label-circular-background-color: hsl(var(--hsl-lime-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-lime-400)); -} -/* Link */ -.ui.olive.labels .label:hover, -a.ui.olive.label:hover{ - background-color: @oliveHover !important; - border-color: @oliveHover !important; - color: @oliveHoverTextColor !important; -} -/* Corner */ -.ui.olive.corner.label, -.ui.olive.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.olive.ribbon.label { - border-color: @greenRibbonShadow !important; -} -/* Basic */ -.ui.basic.olive.label { - background: @basicBackground !important; - color: @olive !important; - border-color: @olive !important; -} -.ui.basic.olive.labels a.label:hover, -a.ui.basic.olive.label:hover { - background-color: @white !important; - color: @oliveHover !important; - border-color: @oliveHover !important; -} - -/*--- Green ---*/ -.ui.green.labels .label, -.ui.green.label { - --label-background-color: hsl(var(--hsl-green-400) / 10%); - --label-border-color: hsl(var(--hsl-green-400) / 20%); - --label-text-color: hsl(var(--hsl-green-400)); - --label-active-background-color: hsl(var(--hsl-green-400) / 20%); - --label-active-border-color: hsl(var(--hsl-green-400) / 30%); - --label-active-text-color: hsl(var(--hsl-green-500)); - --label-circular-background-color: hsl(var(--hsl-green-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-green-400)); -} -/* Link */ -.ui.green.labels .label:hover, -a.ui.green.label:hover{ - background-color: @greenHover !important; - border-color: @greenHover !important; - color: @greenHoverTextColor !important; -} -/* Corner */ -.ui.green.corner.label, -.ui.green.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.green.ribbon.label { - border-color: @greenRibbonShadow !important; -} -/* Basic */ -.ui.basic.green.label { - background: @basicBackground !important; - color: @green !important; - border-color: @green !important; -} -.ui.basic.green.labels a.label:hover, -a.ui.basic.green.label:hover { - background-color: @white !important; - color: @greenHover !important; - border-color: @greenHover !important; -} - -/*--- Teal ---*/ -.ui.teal.labels .label, -.ui.teal.label { - --label-background-color: hsl(var(--hsl-teal-400) / 10%); - --label-border-color: hsl(var(--hsl-teal-400) / 20%); - --label-text-color: hsl(var(--hsl-teal-400)); - --label-active-background-color: hsl(var(--hsl-teal-400) / 20%); - --label-active-border-color: hsl(var(--hsl-teal-400) / 30%); - --label-active-text-color: hsl(var(--hsl-teal-500)); - --label-circular-background-color: hsl(var(--hsl-teal-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-teal-400)); -} -/* Link */ -.ui.teal.labels .label:hover, -a.ui.teal.label:hover{ - background-color: @tealHover !important; - border-color: @tealHover !important; - color: @tealHoverTextColor !important; -} -/* Corner */ -.ui.teal.corner.label, -.ui.teal.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.teal.ribbon.label { - border-color: @tealRibbonShadow !important; -} -/* Basic */ -.ui.basic.teal.label { - background: @basicBackground !important; - color: @teal !important; - border-color: @teal !important; -} -.ui.basic.teal.labels a.label:hover, -a.ui.basic.teal.label:hover { - background-color: @white !important; - color: @tealHover !important; - border-color: @tealHover !important; -} - -/*--- Blue ---*/ -.ui.blue.labels .label, -.ui.blue.label { - --label-background-color: hsl(var(--hsl-blue-400) / 10%); - --label-border-color: hsl(var(--hsl-blue-400) / 20%); - --label-text-color: hsl(var(--hsl-blue-400)); - --label-active-background-color: hsl(var(--hsl-blue-400) / 20%); - --label-active-border-color: hsl(var(--hsl-blue-400) / 30%); - --label-active-text-color: hsl(var(--hsl-blue-500)); - --label-circular-background-color: hsl(var(--hsl-blue-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-blue-400)); -} -/* Link */ -.ui.blue.labels .label:hover, -a.ui.blue.label:hover{ - background-color: @blueHover !important; - border-color: @blueHover !important; - color: @blueHoverTextColor !important; -} -/* Corner */ -.ui.blue.corner.label, -.ui.blue.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.blue.ribbon.label { - border-color: @blueRibbonShadow !important; -} -/* Basic */ -.ui.basic.blue.label { - background: @basicBackground !important; - color: @blue !important; - border-color: @blue !important; -} -.ui.basic.blue.labels a.label:hover, -a.ui.basic.blue.label:hover { - background-color: @white !important; - color: @blueHover !important; - border-color: @blueHover !important; -} - -/*--- Violet ---*/ -.ui.violet.labels .label, -.ui.violet.label { - --label-background-color: hsl(var(--hsl-violet-400) / 10%); - --label-border-color: hsl(var(--hsl-violet-400) / 20%); - --label-text-color: hsl(var(--hsl-violet-400)); - --label-active-background-color: hsl(var(--hsl-violet-400) / 20%); - --label-active-border-color: hsl(var(--hsl-violet-400) / 30%); - --label-active-text-color: hsl(var(--hsl-violet-500)); - --label-circular-background-color: hsl(var(--hsl-violet-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-violet-400)); -} -/* Link */ -.ui.violet.labels .label:hover, -a.ui.violet.label:hover{ - background-color: @violetHover !important; - border-color: @violetHover !important; - color: @violetHoverTextColor !important; -} -/* Corner */ -.ui.violet.corner.label, -.ui.violet.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.violet.ribbon.label { - border-color: @violetRibbonShadow !important; -} -/* Basic */ -.ui.basic.violet.label { - background: @basicBackground !important; - color: @violet !important; - border-color: @violet !important; -} -.ui.basic.violet.labels a.label:hover, -a.ui.basic.violet.label:hover { - background-color: @white !important; - color: @violetHover !important; - border-color: @violetHover !important; -} - -/*--- Purple ---*/ -.ui.purple.labels .label, -.ui.purple.label { - --label-background-color: hsl(var(--hsl-purple-400) / 10%); - --label-border-color: hsl(var(--hsl-purple-400) / 20%); - --label-text-color: hsl(var(--hsl-purple-400)); - --label-active-background-color: hsl(var(--hsl-purple-400) / 20%); - --label-active-border-color: hsl(var(--hsl-purple-400) / 30%); - --label-active-text-color: hsl(var(--hsl-purple-500)); - --label-circular-background-color: hsl(var(--hsl-purple-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-purple-400)); -} -/* Link */ -.ui.purple.labels .label:hover, -a.ui.purple.label:hover{ - background-color: @purpleHover !important; - border-color: @purpleHover !important; - color: @purpleHoverTextColor !important; -} -/* Corner */ -.ui.purple.corner.label, -.ui.purple.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.purple.ribbon.label { - border-color: @purpleRibbonShadow !important; -} -/* Basic */ -.ui.basic.purple.label { - background: @basicBackground !important; - color: @purple !important; - border-color: @purple !important; -} -.ui.basic.purple.labels a.label:hover, -a.ui.basic.purple.label:hover { - background-color: @white !important; - color: @purpleHover !important; - border-color: @purpleHover !important; -} - -/*--- Pink ---*/ -.ui.pink.labels .label, -.ui.pink.label { - --label-background-color: hsl(var(--hsl-pink-400) / 10%); - --label-border-color: hsl(var(--hsl-pink-400) / 20%); - --label-text-color: hsl(var(--hsl-pink-400)); - --label-active-background-color: hsl(var(--hsl-pink-400) / 20%); - --label-active-border-color: hsl(var(--hsl-pink-400) / 30%); - --label-active-text-color: hsl(var(--hsl-pink-500)); - --label-circular-background-color: hsl(var(--hsl-pink-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-pink-400)); -} -/* Link */ -.ui.pink.labels .label:hover, -a.ui.pink.label:hover{ - background-color: @pinkHover !important; - border-color: @pinkHover !important; - color: @pinkHoverTextColor !important; -} -/* Corner */ -.ui.pink.corner.label, -.ui.pink.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.pink.ribbon.label { - border-color: @pinkRibbonShadow !important; -} -/* Basic */ -.ui.basic.pink.label { - background: @basicBackground !important; - color: @pink !important; - border-color: @pink !important; -} -.ui.basic.pink.labels a.label:hover, -a.ui.basic.pink.label:hover { - background-color: @white !important; - color: @pinkHover !important; - border-color: @pinkHover !important; -} - -/*--- Brown ---*/ -.ui.brown.labels .label, -.ui.brown.label { - --label-background-color: hsl(var(--hsl-amber-800) / 30%); - --label-border-color: hsl(var(--hsl-amber-700) / 30%); - --label-text-color: hsl(var(--hsl-amber-600)); - --label-active-background-color: hsl(var(--hsl-amber-800) / 40%); - --label-active-border-color: hsl(var(--hsl-amber-700) / 50%); - --label-active-text-color: hsl(var(--hsl-amber-500)); - --label-circular-background-color: hsl(var(--hsl-amber-700) / 30%); - --label-circular-border-color: hsl(var(--hsl-amber-700)); -} -/* Link */ -.ui.brown.labels .label:hover, -a.ui.brown.label:hover{ - background-color: @brownHover !important; - border-color: @brownHover !important; - color: @brownHoverTextColor !important; -} -/* Corner */ -.ui.brown.corner.label, -.ui.brown.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.brown.ribbon.label { - border-color: @brownRibbonShadow !important; -} -/* Basic */ -.ui.basic.brown.label { - background: @basicBackground !important; - color: @brown !important; - border-color: @brown !important; -} -.ui.basic.brown.labels a.label:hover, -a.ui.basic.brown.label:hover { - background-color: @white !important; - color: @brownHover !important; - border-color: @brownHover !important; -} - -/*--- Grey ---*/ -.ui.grey.labels .label, -.ui.grey.label { - --label-background-color: hsl(var(--hsl-gray-500) / 20%); - --label-border-color: hsl(var(--hsl-gray-400) / 20%); - --label-text-color: hsl(var(--hsl-gray-400)); - --label-active-background-color: hsl(var(--hsl-gray-400) / 20%); - --label-active-border-color: hsl(var(--hsl-gray-400) / 30%); - --label-active-text-color: hsl(var(--hsl-gray-300)); - --label-circular-background-color: hsl(var(--hsl-gray-400) / 30%); - --label-circular-border-color: hsl(var(--hsl-gray-400)); -} -/* Link */ -.ui.grey.labels .label:hover, -a.ui.grey.label:hover{ - background-color: @greyHover !important; - border-color: @greyHover !important; - color: @greyHoverTextColor !important; -} -/* Corner */ -.ui.grey.corner.label, -.ui.grey.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.grey.ribbon.label { - border-color: @brownRibbonShadow !important; -} -/* Basic */ -.ui.basic.grey.label { - background: @basicBackground !important; - color: @grey !important; - border-color: @grey !important; -} -.ui.basic.grey.labels a.label:hover, -a.ui.basic.grey.label:hover { - background-color: @white !important; - color: @greyHover !important; - border-color: @greyHover !important; -} - -/*--- Black ---*/ -.ui.black.labels .label, -.ui.black.label { - --label-background-color: hsl(var(--hsl-gray-950) / 40%); - --label-border-color: hsl(var(--hsl-gray-300) / 30%); - --label-text-color: hsl(var(--hsl-gray-400)); - --label-active-background-color: hsl(var(--hsl-gray-950) / 50%); - --label-active-border-color: hsl(var(--hsl-gray-300) / 40%); - --label-active-text-color: hsl(var(--hsl-gray-300)); - --label-circular-background-color: hsl(var(--hsl-gray-950) / 40%); - --label-circular-border-color: hsl(var(--hsl-gray-400) / 40%); -} -/* Link */ -.ui.black.labels .label:hover, -a.ui.black.label:hover{ - background-color: @fullWhiteHover !important; - border-color: @fullWhiteHover !important; - color: @blackHoverTextColor !important; -} -/* Corner */ -.ui.black.corner.label, -.ui.black.corner.label:hover { - background-color: transparent !important; -} -/* Ribbon */ -.ui.black.ribbon.label { - border-color: @brownRibbonShadow !important; -} -/* Basic */ -.ui.basic.black.label { - background: @basicBackground !important; - color: @black !important; - border-color: @black !important; -} -.ui.basic.black.labels a.label:hover, -a.ui.basic.black.label:hover { - background-color: @white !important; - color: @blackHover !important; - border-color: @blackHover !important; -} - - -/*------------------- - Basic ---------------------*/ - -.ui.basic.label { - background: @basicBackground; - border: @basicBorder; - color: @basicColor; - box-shadow: @basicBoxShadow; -} - -/* Link */ -a.ui.basic.label:hover { - text-decoration: none; - background: @basicHoverBackground; - color: @basicHoverColor; - box-shadow: @basicHoverBorder; - box-shadow: @basicHoverBoxShadow; -} - -/* Pointing */ -.ui.basic.pointing.label:before { - border-color: inherit; -} - - -/*------------------- - Fluid ---------------------*/ - -.ui.label.fluid, -.ui.fluid.labels > .label { - width: 100%; - box-sizing: border-box; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.labels .label, -.ui.inverted.label { - color: @invertedTextColor !important; -} - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.labels .label, -.ui.horizontal.label { - margin: 0em @horizontalLabelMargin 0em 0em; - - padding: @horizontalLabelVerticalPadding @horizontalPadding; - min-width: @horizontalLabelMinWidth; - text-align: center; -} - - -/*------------------- - Circular ---------------------*/ - -.ui.circular.labels .label, -.ui.circular.label { - min-width: @circularMinSize; - min-height: @circularMinSize; - - padding: @circularPadding !important; - - line-height: 1em; - text-align: center; - border-radius: @circularRadius; -} -.ui.empty.circular.labels .label, -.ui.empty.circular.label { - min-width: 0em; - min-height: 0em; - overflow: hidden; - width: @emptyCircleSize; - height: @emptyCircleSize; - vertical-align: baseline; - background-color: var(--label-circular-background-color, var(--label-text-color)) !important; - border-color: var(--label-circular-border-color, var(--label-border-color)) !important; - border-width: @borderWidth; -} - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.label { - position: relative; -} - -.ui.attached.pointing.label { - position: absolute; -} - -.ui.pointing.label:before { - background-color: inherit; - background-image: inherit; - border-width: none; - border-style: solid; - border-color: @pointingBorderColor; -} -/* Arrow */ -.ui.pointing.label:before { - position: absolute; - content: ''; - transform: rotate(45deg); - background-image: none; - - z-index: @pointingTriangleZIndex; - width: @pointingTriangleSize; - height: @pointingTriangleSize; - transition: @pointingTriangleTransition; -} - -/*--- Above ---*/ -.ui.pointing.label, -.ui[class*="pointing above"].label { - margin-top: @pointingVerticalDistance; -} -.ui.pointing.label:before, -.ui[class*="pointing above"].label:before { - border-width: @borderWidth 0px 0px @borderWidth; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 0%; - left: 50%; -} -/*--- Below ---*/ -.ui[class*="bottom pointing"].label, -.ui[class*="pointing below"].label { - margin-top: 0em; - margin-bottom: @pointingVerticalDistance; -} -.ui[class*="bottom pointing"].label:before, -.ui[class*="pointing below"].label:before { - border-width: 0px @borderWidth @borderWidth 0px; - top: auto; - right: auto; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 100%; - left: 50%; -} -/*--- Left ---*/ -.ui[class*="left pointing"].label { - margin-top: 0em; - margin-left: @pointingHorizontalDistance; -} -.ui[class*="left pointing"].label:before { - border-width: 0px 0px @borderWidth @borderWidth; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} -/*--- Right ---*/ -.ui[class*="right pointing"].label { - margin-top: 0em; - margin-right: @pointingHorizontalDistance; -} -.ui[class*="right pointing"].label:before { - border-width: @borderWidth @borderWidth 0px 0px; - transform: translateX(50%) translateY(-50%) rotate(45deg); - top: 50%; - right: 0%; - bottom: auto; - left: auto; -} - -/* Basic Pointing */ - -/*--- Above ---*/ -.ui.basic.pointing.label:before, -.ui.basic[class*="pointing above"].label:before { - margin-top: @basicPointingTriangleOffset; -} -/*--- Below ---*/ -.ui.basic[class*="bottom pointing"].label:before, -.ui.basic[class*="pointing below"].label:before { - bottom: auto; - top: 100%; - margin-top: -@basicPointingTriangleOffset; -} -/*--- Left ---*/ -.ui.basic[class*="left pointing"].label:before { - top: 50%; - left: @basicPointingTriangleOffset; -} -/*--- Right ---*/ -.ui.basic[class*="right pointing"].label:before { - top: 50%; - right: @basicPointingTriangleOffset; -} - - -/*------------------ - Floating Label --------------------*/ - -.ui.floating.label { - position: absolute; - z-index: @floatingZIndex; - top: @floatingTopOffset; - left: 100%; - margin: 0em 0em 0em @floatingLeftOffset !important; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.labels .label, -.ui.mini.label { - font-size: @mini; -} -.ui.tiny.labels .label, -.ui.tiny.label { - font-size: @tiny; -} -.ui.small.labels .label, -.ui.small.label { - font-size: @small; -} -.ui.labels .label, -.ui.label { - font-size: @medium; -} -.ui.large.labels .label, -.ui.large.label { - font-size: @large; -} -.ui.big.labels .label, -.ui.big.label { - font-size: @big; -} -.ui.huge.labels .label, -.ui.huge.label { - font-size: @huge; -} -.ui.massive.labels .label, -.ui.massive.label { - font-size: @massive; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/list.less b/src/definitions/elements/list.less deleted file mode 100644 index eb747d3..0000000 --- a/src/definitions/elements/list.less +++ /dev/null @@ -1,953 +0,0 @@ -/*! - * # Semantic UI - List - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'list'; - -@import (multiple) '../../theme.config'; - -/******************************* - List -*******************************/ - -ul.ui.list, -ol.ui.list, -.ui.list { - list-style-type: @listStyleType; - margin: @margin; - padding: @verticalPadding @horizontalPadding; -} - -ul.ui.list:first-child, -ol.ui.list:first-child, -.ui.list:first-child { - margin-top: 0em; - padding-top: 0em; -} - -ul.ui.list:last-child, -ol.ui.list:last-child, -.ui.list:last-child { - margin-bottom: 0em; - padding-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* List Item */ -ul.ui.list li, -ol.ui.list li, -.ui.list > .item, -.ui.list .list > .item { - display: list-item; - table-layout: fixed; - list-style-type: @listStyleType; - list-style-position: @listStylePosition; - - padding: @itemPadding; - line-height: @itemLineHeight; -} - -ul.ui.list > li:first-child:after, -ol.ui.list > li:first-child:after, -.ui.list > .list > .item, -.ui.list > .item:after { - content: ''; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -ul.ui.list li:first-child, -ol.ui.list li:first-child, -.ui.list .list > .item:first-child, -.ui.list > .item:first-child { - padding-top: 0em; -} -ul.ui.list li:last-child, -ol.ui.list li:last-child, -.ui.list .list > .item:last-child, -.ui.list > .item:last-child { - padding-bottom: 0em; -} - -/* Child List */ -ul.ui.list ul, -ol.ui.list ol, -.ui.list .list { - clear: both; - margin: 0em; - padding: @childListPadding; -} - -/* Child Item */ -ul.ui.list ul li, -ol.ui.list ol li, -.ui.list .list > .item { - padding: @childItemPadding; - line-height: @childItemLineHeight; -} - - -/* Icon */ -.ui.list .list > .item > i.icon, -.ui.list > .item > i.icon { - display: table-cell; - margin: 0em; - padding-top: @iconOffset; - padding-right: @iconDistance; - vertical-align: @iconContentVerticalAlign; - transition: @iconTransition; -} -.ui.list .list > .item > i.icon:only-child, -.ui.list > .item > i.icon:only-child { - display: inline-block; - vertical-align: @iconVerticalAlign; -} - - -/* Image */ -.ui.list .list > .item > .image, -.ui.list > .item > .image { - display: table-cell; - background-color: transparent; - margin: 0em; - vertical-align: @imageAlign; -} -.ui.list .list > .item > .image:not(:only-child):not(img), -.ui.list > .item > .image:not(:only-child):not(img) { - padding-right: @imageDistance; -} -.ui.list .list > .item > .image img, -.ui.list > .item > .image img { - vertical-align: @imageAlign; -} - -.ui.list .list > .item > img.image, -.ui.list .list > .item > .image:only-child, -.ui.list > .item > img.image, -.ui.list > .item > .image:only-child { - display: inline-block; -} - -/* Content */ -.ui.list .list > .item > .content, -.ui.list > .item > .content { - line-height: @contentLineHeight; -} -.ui.list .list > .item > .image + .content, -.ui.list .list > .item > .icon + .content, -.ui.list > .item > .image + .content, -.ui.list > .item > .icon + .content { - display: table-cell; - width: 100%; - padding: 0em 0em 0em @contentDistance; - vertical-align: @contentVerticalAlign; -} -.ui.list .list > .item > img.image + .content, -.ui.list > .item > img.image + .content { - display: inline-block; - width: auto; -} -.ui.list .list > .item > .content > .list, -.ui.list > .item > .content > .list { - margin-left: 0em; - padding-left: 0em; -} - -/* Header */ -.ui.list .list > .item .header, -.ui.list > .item .header { - display: block; - margin: 0em; - font-family: @itemHeaderFontFamily; - font-weight: @itemHeaderFontWeight; - color: @itemHeaderColor; -} - -/* Description */ -.ui.list .list > .item .description, -.ui.list > .item .description { - display: block; - color: @itemDescriptionColor; -} - -/* Child Link */ -.ui.list > .item a, -.ui.list .list > .item a { - cursor: pointer; -} - -/* Linking Item */ -.ui.list .list > a.item, -.ui.list > a.item { - cursor: pointer; - color: @itemLinkColor; -} -.ui.list .list > a.item:hover, -.ui.list > a.item:hover { - color: @itemLinkHoverColor; -} - -/* Linked Item Icons */ -.ui.list .list > a.item i.icon, -.ui.list > a.item i.icon { - color: @itemLinkIconColor; -} - -/* Header Link */ -.ui.list .list > .item a.header, -.ui.list > .item a.header { - cursor: pointer; - color: @itemHeaderLinkColor !important; -} -.ui.list .list > .item a.header:hover, -.ui.list > .item a.header:hover { - color: @itemHeaderLinkHoverColor !important; -} - -/* Floated Content */ -.ui[class*="left floated"].list { - float: left; -} -.ui[class*="right floated"].list { - float: right; -} - -.ui.list .list > .item [class*="left floated"], -.ui.list > .item [class*="left floated"] { - float: left; - margin: @leftFloatMargin; -} -.ui.list .list > .item [class*="right floated"], -.ui.list > .item [class*="right floated"] { - float: right; - margin: @rightFloatMargin; -} - -/******************************* - Coupling -*******************************/ - -.ui.menu .ui.list > .item, -.ui.menu .ui.list .list > .item { - display: list-item; - table-layout: fixed; - background-color: transparent; - - list-style-type: @listStyleType; - list-style-position: @listStylePosition; - - padding: @itemVerticalPadding @itemHorizontalPadding; - line-height: @itemLineHeight; -} -.ui.menu .ui.list .list > .item:before, -.ui.menu .ui.list > .item:before { - border: none; - background: none; -} -.ui.menu .ui.list .list > .item:first-child, -.ui.menu .ui.list > .item:first-child { - padding-top: 0em; -} -.ui.menu .ui.list .list > .item:last-child, -.ui.menu .ui.list > .item:last-child { - padding-bottom: 0em; -} - - -/******************************* - Types -*******************************/ - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.list { - display: inline-block; - font-size: 0em; -} -.ui.horizontal.list > .item { - display: inline-block; - margin-left: @horizontalSpacing; - font-size: 1rem; -} -.ui.horizontal.list:not(.celled) > .item:first-child { - margin-left: 0em !important; - padding-left: 0em !important; -} -.ui.horizontal.list .list { - padding-left: 0em; - padding-bottom: 0em; -} - -.ui.horizontal.list > .item > .image, -.ui.horizontal.list .list > .item > .image, -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list .list > .item > .icon, -.ui.horizontal.list > .item > .content, -.ui.horizontal.list .list > .item > .content { - vertical-align: @horizontalVerticalAlign; -} - -/* Padding on all elements */ -.ui.horizontal.list > .item:first-child, -.ui.horizontal.list > .item:last-child { - padding-top: @itemVerticalPadding; - padding-bottom: @itemVerticalPadding; -} - -/* Horizontal List */ -.ui.horizontal.list > .item > i.icon { - margin: 0em; - padding: 0em @horizontalIconDistance 0em 0em; -} -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list > .item > .icon + .content { - float: none; - display: inline-block; -} - - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.list .list > .disabled.item, -.ui.list > .disabled.item { - pointer-events: none; - color: @disabledColor !important; -} -.ui.inverted.list .list > .disabled.item, -.ui.inverted.list > .disabled.item { - color: @invertedDisabledColor !important; -} - -/*------------------- - Hover ---------------------*/ - -.ui.list .list > a.item:hover .icon, -.ui.list > a.item:hover .icon { - color: @itemLinkIconHoverColor; -} - - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.list .list > a.item > .icon, -.ui.inverted.list > a.item > .icon { - color: @invertedIconLinkColor; -} -.ui.inverted.list .list > .item .header, -.ui.inverted.list > .item .header { - color: @invertedHeaderColor; -} -.ui.inverted.list .list > .item .description, -.ui.inverted.list > .item .description { - color: @invertedDescriptionColor; -} - -/* Item Link */ -.ui.inverted.list .list > a.item, -.ui.inverted.list > a.item { - cursor: pointer; - color: @invertedItemLinkColor; -} -.ui.inverted.list .list > a.item:hover, -.ui.inverted.list > a.item:hover { - color: @invertedItemLinkHoverColor; -} - - -/* Linking Content */ -.ui.inverted.list .item a:not(.ui) { - color: @invertedItemLinkColor !important; -} -.ui.inverted.list .item a:not(.ui):hover { - color: @invertedItemLinkHoverColor !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui.list[class*="top aligned"] .image, -.ui.list[class*="top aligned"] .content, -.ui.list [class*="top aligned"] { - vertical-align: top !important; -} -.ui.list[class*="middle aligned"] .image, -.ui.list[class*="middle aligned"] .content, -.ui.list [class*="middle aligned"] { - vertical-align: middle !important; -} -.ui.list[class*="bottom aligned"] .image, -.ui.list[class*="bottom aligned"] .content, -.ui.list [class*="bottom aligned"] { - vertical-align: bottom !important; -} - -/*------------------- - Link ---------------------*/ - -.ui.link.list .item, -.ui.link.list a.item, -.ui.link.list .item a:not(.ui) { - color: @linkListItemColor; - transition: @linkListTransition; -} -.ui.link.list.list a.item:hover, -.ui.link.list.list .item a:not(.ui):hover { - color: @linkListItemHoverColor; -} -.ui.link.list.list a.item:active, -.ui.link.list.list .item a:not(.ui):active { - color: @linkListItemDownColor; -} -.ui.link.list.list .active.item, -.ui.link.list.list .active.item a:not(.ui) { - color: @linkListItemActiveColor; -} - -/* Inverted */ -.ui.inverted.link.list .item, -.ui.inverted.link.list a.item, -.ui.inverted.link.list .item a:not(.ui) { - color: @invertedLinkListItemColor; -} -.ui.inverted.link.list.list a.item:hover, -.ui.inverted.link.list.list .item a:not(.ui):hover { - color: @invertedLinkListItemHoverColor; -} -.ui.inverted.link.list.list a.item:active, -.ui.inverted.link.list.list .item a:not(.ui):active { - color: @invertedLinkListItemDownColor; -} -.ui.inverted.link.list.list a.active.item, -.ui.inverted.link.list.list .active.item a:not(.ui) { - color: @invertedLinkListItemActiveColor; -} - -/*------------------- - Selection ---------------------*/ - -.ui.selection.list .list > .item, -.ui.selection.list > .item { - cursor: pointer; - background: @selectionListBackground; - padding: @selectionListItemVerticalPadding @selectionListItemHorizontalPadding; - margin: @selectionListItemMargin; - color: @selectionListColor; - border-radius: @selectionListItemBorderRadius; - transition: @selectionListTransition; -} -.ui.selection.list .list > .item:last-child, -.ui.selection.list > .item:last-child { - margin-bottom: 0em; -} -.ui.selection.list.list > .item:hover, -.ui.selection.list > .item:hover { - background: @selectionListHoverBackground; - color: @selectionListHoverColor; -} -.ui.selection.list .list > .item:active, -.ui.selection.list > .item:active { - background: @selectionListDownBackground; - color: @selectionListDownColor; -} -.ui.selection.list .list > .item.active, -.ui.selection.list > .item.active { - background: @selectionListActiveBackground; - color: @selectionListActiveColor; -} - -/* Inverted */ -.ui.inverted.selection.list > .item, -.ui.inverted.selection.list > .item { - background: @invertedSelectionListBackground; - color: @invertedSelectionListColor; -} -.ui.inverted.selection.list > .item:hover, -.ui.inverted.selection.list > .item:hover { - background: @invertedSelectionListHoverBackground; - color: @invertedSelectionListHoverColor; -} -.ui.inverted.selection.list > .item:active, -.ui.inverted.selection.list > .item:active { - background: @invertedSelectionListDownBackground; - color: @invertedSelectionListDownColor; -} -.ui.inverted.selection.list > .item.active, -.ui.inverted.selection.list > .item.active { - background: @invertedSelectionListActiveBackground; - color: @invertedSelectionListActiveColor; -} - -/* Celled / Divided Selection List */ -.ui.celled.selection.list .list > .item, -.ui.divided.selection.list .list > .item, -.ui.celled.selection.list > .item, -.ui.divided.selection.list > .item { - border-radius: 0em; -} - -/*------------------- - Animated ---------------------*/ - -.ui.animated.list > .item { - transition: @animatedListTransition; -} -.ui.animated.list:not(.horizontal) > .item:hover { - padding-left: @animatedListIndent; -} - -/*------------------- - Fitted ---------------------*/ -.ui.fitted.list:not(.selection) .list > .item, -.ui.fitted.list:not(.selection) > .item { - padding-left: 0em; - padding-right: 0em; -} -.ui.fitted.selection.list .list > .item, -.ui.fitted.selection.list > .item { - margin-left: -@selectionListItemHorizontalPadding; - margin-right: -@selectionListItemHorizontalPadding; -} - -/*------------------- - Bulleted ---------------------*/ - -ul.ui.list, -.ui.bulleted.list { - margin-left: @bulletDistance; -} -ul.ui.list li, -.ui.bulleted.list .list > .item, -.ui.bulleted.list > .item { - position: relative; -} -ul.ui.list li:before, -.ui.bulleted.list .list > .item:before, -.ui.bulleted.list > .item:before { - user-select: none; - pointer-events: none; - position: absolute; - top: auto; - left: auto; - font-weight: @normal; - margin-left: @bulletOffset; - content: @bulletCharacter; - opacity: @bulletOpacity; - color: @bulletColor; - vertical-align: @bulletVerticalAlign; -} - -ul.ui.list li:before, -.ui.bulleted.list .list > a.item:before, -.ui.bulleted.list > a.item:before { - color: @bulletLinkColor; -} - -ul.ui.list ul, -.ui.bulleted.list .list { - padding-left: @bulletChildDistance; -} - -/* Horizontal Bulleted */ -ul.ui.horizontal.bulleted.list, -.ui.horizontal.bulleted.list { - margin-left: 0em; -} -ul.ui.horizontal.bulleted.list li, -.ui.horizontal.bulleted.list > .item { - margin-left: @horizontalBulletSpacing; -} -ul.ui.horizontal.bulleted.list li:first-child, -.ui.horizontal.bulleted.list > .item:first-child { - margin-left: 0em; -} -ul.ui.horizontal.bulleted.list li::before, -.ui.horizontal.bulleted.list > .item::before { - color: @horizontalBulletColor; -} -ul.ui.horizontal.bulleted.list li:first-child::before, -.ui.horizontal.bulleted.list > .item:first-child::before { - display: none; -} - -/*------------------- - Ordered ---------------------*/ - -ol.ui.list, -.ui.ordered.list, -.ui.ordered.list .list, -ol.ui.list ol { - counter-reset: ordered; - margin-left: @orderedCountDistance; - list-style-type: none; -} -ol.ui.list li, -.ui.ordered.list .list > .item, -.ui.ordered.list > .item { - list-style-type: none; - position: relative; -} -ol.ui.list li:before, -.ui.ordered.list .list > .item:before, -.ui.ordered.list > .item:before { - position: absolute; - top: auto; - left: auto; - user-select: none; - pointer-events: none; - margin-left: -(@orderedCountDistance); - counter-increment: @orderedCountName; - content: @orderedCountContent; - text-align: @orderedCountTextAlign; - color: @orderedCountColor; - vertical-align: @orderedCountVerticalAlign; - opacity: @orderedCountOpacity; -} - -ol.ui.inverted.list li:before, -.ui.ordered.inverted.list .list > .item:before, -.ui.ordered.inverted.list > .item:before { - color: @orderedInvertedCountColor; -} - -/* Value */ -.ui.ordered.list > .list > .item[data-value], -.ui.ordered.list > .item[data-value] { - content: attr(data-value); -} -ol.ui.list li[value]:before { - content: attr(value); -} - -/* Child Lists */ -ol.ui.list ol, -.ui.ordered.list .list { - margin-left: @orderedChildCountDistance; -} -ol.ui.list ol li:before, -.ui.ordered.list .list > .item:before { - margin-left: @orderedChildCountOffset; -} - -/* Horizontal Ordered */ -ol.ui.horizontal.list, -.ui.ordered.horizontal.list { - margin-left: 0em; -} -ol.ui.horizontal.list li:before, -.ui.ordered.horizontal.list .list > .item:before, -.ui.ordered.horizontal.list > .item:before { - position: static; - margin: 0em @horizontalOrderedCountDistance 0em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.list > .item { - border-top: @dividedBorder; -} -.ui.divided.list .list > .item { - border-top: @dividedChildListBorder; -} -.ui.divided.list .item .list > .item { - border-top: @dividedChildItemBorder; -} -.ui.divided.list .list > .item:first-child, -.ui.divided.list > .item:first-child { - border-top: none; -} - -/* Sub Menu */ -.ui.divided.list:not(.horizontal) .list > .item:first-child { - border-top-width: @dividedBorderWidth; -} - -/* Divided bulleted */ -.ui.divided.bulleted.list:not(.horizontal), -.ui.divided.bulleted.list .list { - margin-left: 0em; - padding-left: 0em; -} -.ui.divided.bulleted.list > .item:not(.horizontal) { - padding-left: @bulletDistance; -} - -/* Divided Ordered */ -.ui.divided.ordered.list { - margin-left: 0em; -} -.ui.divided.ordered.list .list > .item, -.ui.divided.ordered.list > .item { - padding-left: @orderedCountDistance; -} -.ui.divided.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: @itemVerticalPadding; -} -.ui.divided.ordered.list .item .list > .item { - padding-left: @orderedChildCountDistance; -} - -/* Divided Selection */ -.ui.divided.selection.list .list > .item, -.ui.divided.selection.list > .item { - margin: 0em; - border-radius: 0em; -} - -/* Divided horizontal */ -.ui.divided.horizontal.list { - margin-left: 0em; -} -.ui.divided.horizontal.list > .item:not(:first-child) { - padding-left: @horizontalDividedSpacing; -} -.ui.divided.horizontal.list > .item:not(:last-child) { - padding-right: @horizontalDividedSpacing; -} -.ui.divided.horizontal.list > .item { - border-top: none; - border-left: @dividedBorder; - margin: 0em; - line-height: @horizontalDividedLineHeight; -} -.ui.horizontal.divided.list > .item:first-child { - border-left: none; -} -/* Inverted */ -.ui.divided.inverted.list > .item, -.ui.divided.inverted.list > .list, -.ui.divided.inverted.horizontal.list > .item { - border-color: @dividedInvertedBorderColor; -} - - -/*------------------- - Celled ---------------------*/ - -.ui.celled.list > .item, -.ui.celled.list > .list { - border-top: @celledBorder; - padding-left: @celledHorizontalPadding; - padding-right: @celledHorizontalPadding; -} -.ui.celled.list > .item:last-child { - border-bottom: @celledBorder; -} - -/* Padding on all elements */ -.ui.celled.list > .item:first-child, -.ui.celled.list > .item:last-child { - padding-top: @itemVerticalPadding; - padding-bottom: @itemVerticalPadding; -} - -/* Sub Menu */ -.ui.celled.list .item .list > .item { - border-width: 0px; -} -.ui.celled.list .list > .item:first-child { - border-top-width: 0px; -} - -/* Celled Bulleted */ -.ui.celled.bulleted.list { - margin-left: 0em; -} -.ui.celled.bulleted.list .list > .item, -.ui.celled.bulleted.list > .item { - padding-left: (@bulletDistance); -} -.ui.celled.bulleted.list .item .list { - margin-left: -(@bulletDistance); - margin-right: -(@bulletDistance); - padding-bottom: @itemVerticalPadding; -} - -/* Celled Ordered */ -.ui.celled.ordered.list { - margin-left: 0em; -} -.ui.celled.ordered.list .list > .item, -.ui.celled.ordered.list > .item { - padding-left: @orderedCountDistance; -} -.ui.celled.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: @itemVerticalPadding; -} -.ui.celled.ordered.list .list > .item { - padding-left: @orderedChildCountDistance; -} - -/* Celled Horizontal */ -.ui.horizontal.celled.list { - margin-left: 0em; -} -.ui.horizontal.celled.list .list > .item, -.ui.horizontal.celled.list > .item { - border-top: none; - border-left: @celledBorder; - margin: 0em; - padding-left: @horizontalCelledSpacing; - padding-right: @horizontalCelledSpacing; - - line-height: @horizontalCelledLineHeight; -} -.ui.horizontal.celled.list .list > .item:last-child, -.ui.horizontal.celled.list > .item:last-child { - border-bottom: none; - border-right: @celledBorder; -} - -/* Inverted */ -.ui.celled.inverted.list > .item, -.ui.celled.inverted.list > .list { - border-color: @celledInvertedBorder; -} -.ui.celled.inverted.horizontal.list .list > .item, -.ui.celled.inverted.horizontal.list > .item { - border-color: @celledInvertedBorder; -} - -/*------------------- - Relaxed ---------------------*/ - -.ui.relaxed.list:not(.horizontal) > .item:not(:first-child) { - padding-top: @relaxedItemVerticalPadding; -} -.ui.relaxed.list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: @relaxedItemVerticalPadding; -} -.ui.horizontal.relaxed.list .list > .item:not(:first-child), -.ui.horizontal.relaxed.list > .item:not(:first-child) { - padding-left: @relaxedHorizontalPadding; -} -.ui.horizontal.relaxed.list .list > .item:not(:last-child), -.ui.horizontal.relaxed.list > .item:not(:last-child) { - padding-right: @relaxedHorizontalPadding; -} - -/* Very Relaxed */ -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) { - padding-top: @veryRelaxedItemVerticalPadding; -} -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: @veryRelaxedItemVerticalPadding; -} -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:first-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:first-child) { - padding-left: @veryRelaxedHorizontalPadding; -} -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:last-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:last-child) { - padding-right: @veryRelaxedHorizontalPadding; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.list { - font-size: @relativeMini; -} -.ui.tiny.list { - font-size: @relativeTiny; -} -.ui.small.list { - font-size: @relativeSmall; -} -.ui.list { - font-size: @relativeMedium; -} -.ui.large.list { - font-size: @relativeLarge; -} -.ui.big.list { - font-size: @relativeBig; -} -.ui.huge.list { - font-size: @relativeHuge; -} -.ui.massive.list { - font-size: @relativeMassive; -} - -.ui.mini.horizontal.list .list > .item, -.ui.mini.horizontal.list > .item { - font-size: @mini; -} -.ui.tiny.horizontal.list .list > .item, -.ui.tiny.horizontal.list > .item { - font-size: @tiny; -} -.ui.small.horizontal.list .list > .item, -.ui.small.horizontal.list > .item { - font-size: @small; -} -.ui.horizontal.list .list > .item, -.ui.horizontal.list > .item { - font-size: @medium; -} -.ui.large.horizontal.list .list > .item, -.ui.large.horizontal.list > .item { - font-size: @large; -} -.ui.big.horizontal.list .list > .item, -.ui.big.horizontal.list > .item { - font-size: @big; -} -.ui.huge.horizontal.list .list > .item, -.ui.huge.horizontal.list > .item { - font-size: @huge; -} -.ui.massive.horizontal.list .list > .item, -.ui.massive.horizontal.list > .item { - font-size: @massive; -} - -.loadUIOverrides(); - diff --git a/src/definitions/elements/loader.less b/src/definitions/elements/loader.less deleted file mode 100644 index 9bf271d..0000000 --- a/src/definitions/elements/loader.less +++ /dev/null @@ -1,331 +0,0 @@ -/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'loader'; - -@import (multiple) '../../theme.config'; - -/******************************* - Loader -*******************************/ - - -/* Standard Size */ -.ui.loader { - display: none; - position: absolute; - top: @loaderTopOffset; - left: @loaderLeftOffset; - margin: 0px; - text-align: center; - z-index: 1000; - transform: translateX(-50%) translateY(-50%); -} - -/* Static Shape */ -.ui.loader:before { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @loaderFillColor; -} - -/* Active Shape */ -.ui.loader:after { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - - animation: loader @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @shapeBorderColor; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; -} - -/* Active Animation */ -@keyframes loader { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -/* Sizes */ -.ui.mini.loader:before, -.ui.mini.loader:after { - width: @mini; - height: @mini; - margin: @miniOffset; -} -.ui.tiny.loader:before, -.ui.tiny.loader:after { - width: @tiny; - height: @tiny; - margin: @tinyOffset; -} -.ui.small.loader:before, -.ui.small.loader:after { - width: @small; - height: @small; - margin: @smallOffset; -} -.ui.loader:before, -.ui.loader:after { - width: @medium; - height: @medium; - margin: @mediumOffset; -} -.ui.large.loader:before, -.ui.large.loader:after { - width: @large; - height: @large; - margin: @largeOffset; -} -.ui.big.loader:before, -.ui.big.loader:after { - width: @big; - height: @big; - margin: @bigOffset; -} -.ui.huge.loader:before, -.ui.huge.loader:after { - width: @huge; - height: @huge; - margin: @hugeOffset; -} -.ui.massive.loader:before, -.ui.massive.loader:after { - width: @massive; - height: @massive; - margin: @massiveOffset; -} - -/*------------------- - Coupling ---------------------*/ - -/* Show inside active dimmer */ -.ui.dimmer .loader { - display: block; -} - -/* Black Dimmer */ -.ui.dimmer .ui.loader { - color: @invertedLoaderTextColor; -} -.ui.dimmer .ui.loader:before { - border-color: @invertedLoaderFillColor; -} -.ui.dimmer .ui.loader:after { - border-color: @invertedShapeBorderColor; -} - -/* White Dimmer (Inverted) */ -.ui.inverted.dimmer .ui.loader { - color: @loaderTextColor; -} -.ui.inverted.dimmer .ui.loader:before { - border-color: @loaderFillColor; -} -.ui.inverted.dimmer .ui.loader:after { - border-color: @shapeBorderColor; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Text ---------------------*/ - -.ui.text.loader { - width: auto !important; - height: auto !important; - text-align: center; - font-style: normal; -} - - -/******************************* - States -*******************************/ - -.ui.indeterminate.loader:after { - animation-direction: @indeterminateDirection; - animation-duration: @indeterminateSpeed; -} - -.ui.loader.active, -.ui.loader.visible { - display: block; -} -.ui.loader.disabled, -.ui.loader.hidden { - display: none; -} - -/******************************* - Variations -*******************************/ - - -/*------------------- - Sizes ---------------------*/ - - -/* Loader */ -.ui.inverted.dimmer .ui.mini.loader, -.ui.mini.loader { - width: @mini; - height: @mini; - font-size: @miniFontSize; -} -.ui.inverted.dimmer .ui.tiny.loader, -.ui.tiny.loader { - width: @tiny; - height: @tiny; - font-size: @tinyFontSize; -} -.ui.inverted.dimmer .ui.small.loader, -.ui.small.loader { - width: @small; - height: @small; - font-size: @smallFontSize; -} -.ui.inverted.dimmer .ui.loader, -.ui.loader { - width: @medium; - height: @medium; - font-size: @mediumFontSize; -} -.ui.inverted.dimmer .ui.large.loader, -.ui.large.loader { - width: @large; - height: @large; - font-size: @largeFontSize; -} -.ui.inverted.dimmer .ui.big.loader, -.ui.big.loader { - width: @big; - height: @big; - font-size: @bigFontSize; -} -.ui.inverted.dimmer .ui.huge.loader, -.ui.huge.loader { - width: @huge; - height: @huge; - font-size: @hugeFontSize; -} -.ui.inverted.dimmer .ui.massive.loader, -.ui.massive.loader { - width: @massive; - height: @massive; - font-size: @massiveFontSize; -} - -/* Text Loader */ -.ui.mini.text.loader { - min-width: @mini; - padding-top: (@mini + @textDistance); -} -.ui.tiny.text.loader { - min-width: @tiny; - padding-top: (@tiny + @textDistance); -} -.ui.small.text.loader { - min-width: @small; - padding-top: (@small + @textDistance); -} -.ui.text.loader { - min-width: @medium; - padding-top: (@medium + @textDistance); -} -.ui.large.text.loader { - min-width: @large; - padding-top: (@large + @textDistance); -} -.ui.big.text.loader { - min-width: @big; - padding-top: (@big + @textDistance); -} -.ui.huge.text.loader { - min-width: @huge; - padding-top: (@huge + @textDistance); -} -.ui.massive.text.loader { - min-width: @massive; - padding-top: (@massive + @textDistance); -} - - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.loader { - color: @invertedLoaderTextColor -} -.ui.inverted.loader:before { - border-color: @invertedLoaderFillColor; -} -.ui.inverted.loader:after { - border-top-color: @invertedLoaderLineColor; -} - -/*------------------- - Inline ---------------------*/ - -.ui.inline.loader { - position: relative; - vertical-align: @inlineVerticalAlign; - margin: @inlineMargin; - left: 0em; - top: 0em; - transform: none; -} - -.ui.inline.loader.active, -.ui.inline.loader.visible { - display: inline-block; -} - -/* Centered Inline */ -.ui.centered.inline.loader.active, -.ui.centered.inline.loader.visible { - display: block; - margin-left: auto; - margin-right: auto; -} - - -.loadUIOverrides(); diff --git a/src/definitions/elements/placeholder.less b/src/definitions/elements/placeholder.less deleted file mode 100644 index e18c4ab..0000000 --- a/src/definitions/elements/placeholder.less +++ /dev/null @@ -1,232 +0,0 @@ -/*! - * # Semantic UI - Loader - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'placeholder'; - -@import (multiple) '../../theme.config'; - -/*------------------- - Content ---------------------*/ - -.ui.placeholder { - position: static; - overflow: hidden; - animation: placeholderShimmer @placeholderLoadingAnimationDuration linear; - animation-iteration-count: infinite; - background-color: @white; - background-image: @placeholderLoadingGradient; - background-size: @placeholderLoadingGradientWidth 100%; - max-width: @placeholderMaxWidth; -} - -@keyframes placeholderShimmer{ - 0% { - background-position: -@placeholderLoadingGradientWidth 0 - } - 100% { - background-position: @placeholderLoadingGradientWidth 0 - } -} - -.ui.placeholder + .ui.placeholder { - margin-top: @consecutivePlaceholderSpacing; -} -.ui.placeholder + .ui.placeholder { - animation-delay: @placeholderAnimationInterval; -} -.ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: (@placeholderAnimationInterval * 2); -} -.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: (@placeholderAnimationInterval * 3); -} -.ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder + .ui.placeholder { - animation-delay: (@placeholderAnimationInterval * 4); -} - -.ui.placeholder, -.ui.placeholder > :before, -.ui.placeholder .image.header:after, -.ui.placeholder .line, -.ui.placeholder .line:after { - background-color: @white; -} - -/* Image */ -.ui.placeholder .image:not(.header):not(.ui) { - height: @placeholderImageHeight; -} -.ui.placeholder .square.image:not(.header) { - height: 0px; - overflow: hidden; - /* 1/1 aspect ratio */ - padding-top: 100%; -} -.ui.placeholder .rectangular.image:not(.header) { - height: 0px; - overflow: hidden; - /* 4/3 aspect ratio */ - padding-top: 75%; -} - - -/* Lines */ -.ui.placeholder .line { - position: relative; - height: @placeholderLineMargin; -} -.ui.placeholder .line:before, -.ui.placeholder .line:after { - top: 100%; - position: absolute; - content: ''; - background-color: inherit; -} -.ui.placeholder .line:before { - left: 0px; -} -.ui.placeholder .line:after { - right: 0px; -} - -/* Any Lines */ -.ui.placeholder .line { - margin-bottom: @placeholderLineHeight; -} -.ui.placeholder .line:before, -.ui.placeholder .line:after { - height: @placeholderLineHeight; -} -.ui.placeholder .line:not(:first-child) { - margin-top: @placeholderLineHeight; -} - -/* Header Image + 2 Lines */ -.ui.placeholder .header { - position: relative; - overflow: hidden; -} - -/* Line Outdent */ -.ui.placeholder .line:nth-child(1):after { - width: @placeholderLineOneOutdent; -} -.ui.placeholder .line:nth-child(2):after { - width: @placeholderLineTwoOutdent; -} -.ui.placeholder .line:nth-child(3):after { - width: @placeholderLineThreeOutdent; -} -.ui.placeholder .line:nth-child(4):after { - width: @placeholderLineFourOutdent; -} -.ui.placeholder .line:nth-child(5):after { - width: @placeholderLineFiveOutdent; -} - -/* Header Line 1 & 2*/ -.ui.placeholder .header .line { - margin-bottom: @placeholderHeaderLineHeight; -} -.ui.placeholder .header .line:before, -.ui.placeholder .header .line:after { - height: @placeholderHeaderLineHeight; -} -.ui.placeholder .header .line:not(:first-child) { - margin-top: @placeholderHeaderLineHeight; -} -.ui.placeholder .header .line:after { - width: @placeholderHeaderLineOneOutdent; -} -.ui.placeholder .header .line:nth-child(2):after { - width: @placeholderHeaderLineTwoOutdent; -} - -/* Image Header */ -.ui.placeholder .image.header .line { - margin-left: @placeholderImageWidth; -} -.ui.placeholder .image.header .line:before { - width: @placeholderImageTextIndent; -} -.ui.placeholder .image.header:after { - display: block; - height: @placeholderLineMargin; - content: ''; - margin-left: @placeholderImageWidth; -} - -/* Spacing */ -.ui.placeholder .image .line:first-child, -.ui.placeholder .paragraph .line:first-child, -.ui.placeholder .header .line:first-child { - height: 0.01px; -} -.ui.placeholder .image:not(:first-child):before, -.ui.placeholder .paragraph:not(:first-child):before, -.ui.placeholder .header:not(:first-child):before { - height: @placeholderSpacing; - content: ''; - display: block; -} - -/* Inverted Content Loader */ -.ui.inverted.placeholder { - background-image: @placeholderInvertedLoadingGradient; -} -.ui.inverted.placeholder, -.ui.inverted.placeholder > :before, -.ui.inverted.placeholder .image.header:after, -.ui.inverted.placeholder .line, -.ui.inverted.placeholder .line:after { - background-color: @black; -} - -/******************************* - Variations -*******************************/ - - -/*------------------- - Sizes ---------------------*/ - -.ui.placeholder .full.line.line.line:after { - width: @placeholderFullLineOutdent; -} -.ui.placeholder .very.long.line.line.line:after { - width: @placeholderVeryLongLineOutdent; -} -.ui.placeholder .long.line.line.line:after { - width: @placeholderLongLineOutdent; -} -.ui.placeholder .medium.line.line.line:after { - width: @placeholderMediumLineOutdent; -} -.ui.placeholder .short.line.line.line:after { - width: @placeholderShortLineOutdent; -} -.ui.placeholder .very.short.line.line.line:after { - width: @placeholderVeryShortLineOutdent; -} - - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.placeholder { - max-width: none; -} diff --git a/src/definitions/elements/rail.less b/src/definitions/elements/rail.less deleted file mode 100644 index 7eacee7..0000000 --- a/src/definitions/elements/rail.less +++ /dev/null @@ -1,154 +0,0 @@ -/*! - * # Semantic UI - Rail - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'rail'; - -@import (multiple) '../../theme.config'; - -/******************************* - Rails -*******************************/ - -.ui.rail { - position: absolute; - top: 0%; - width: @width; - height: @height; -} - -.ui.left.rail { - left: auto; - right: 100%; - padding: 0em @splitDistance 0em 0em; - margin: 0em @splitDistance 0em 0em; -} - -.ui.right.rail { - left: 100%; - right: auto; - padding: 0em 0em 0em @splitDistance; - margin: 0em 0em 0em @splitDistance; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Internal ----------------*/ - -.ui.left.internal.rail { - left: 0%; - right: auto; - padding: 0em 0em 0em @splitDistance; - margin: 0em 0em 0em @splitDistance; -} - -.ui.right.internal.rail { - left: auto; - right: 0%; - padding: 0em @splitDistance 0em 0em; - margin: 0em @splitDistance 0em 0em; -} - - -/*-------------- - Dividing ----------------*/ - -.ui.dividing.rail { - width: @dividingWidth; -} -.ui.left.dividing.rail { - padding: 0em @splitDividingDistance 0em 0em; - margin: 0em @splitDividingDistance 0em 0em; - border-right: @dividingBorder; -} -.ui.right.dividing.rail { - border-left: @dividingBorder; - padding: 0em 0em 0em @splitDividingDistance; - margin: 0em 0em 0em @splitDividingDistance; -} - -/*-------------- - Distance ----------------*/ - -.ui.close.rail { - width: @closeWidth; -} -.ui.close.left.rail { - padding: 0em @splitCloseDistance 0em 0em; - margin: 0em @splitCloseDistance 0em 0em; -} -.ui.close.right.rail { - padding: 0em 0em 0em @splitCloseDistance; - margin: 0em 0em 0em @splitCloseDistance; -} - -.ui.very.close.rail { - width: @veryCloseWidth; -} -.ui.very.close.left.rail { - padding: 0em @splitVeryCloseDistance 0em 0em; - margin: 0em @splitVeryCloseDistance 0em 0em; -} -.ui.very.close.right.rail { - padding: 0em 0em 0em @splitVeryCloseDistance; - margin: 0em 0em 0em @splitVeryCloseDistance; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.left.rail, -.ui.attached.right.rail { - padding: 0em; - margin: 0em; -} - -/*-------------- - Sizing ----------------*/ - -.ui.mini.rail { - font-size: @mini; -} -.ui.tiny.rail { - font-size: @tiny; -} -.ui.small.rail { - font-size: @small; -} -.ui.rail { - font-size: @medium; -} -.ui.large.rail { - font-size: @large; -} -.ui.big.rail { - font-size: @big; -} -.ui.huge.rail { - font-size: @huge; -} -.ui.massive.rail { - font-size: @massive; -} - - -.loadUIOverrides(); diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less deleted file mode 100644 index 41b3764..0000000 --- a/src/definitions/elements/reveal.less +++ /dev/null @@ -1,275 +0,0 @@ -/*! - * # Semantic UI - Reveal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'reveal'; - -@import (multiple) '../../theme.config'; - -/******************************* - Reveal -*******************************/ - -.ui.reveal { - display: inherit; - position: relative !important; - font-size: 0em !important; -} - -.ui.reveal > .visible.content { - position: absolute !important; - top: 0em !important; - left: 0em !important; - z-index: @topZIndex !important; - transition: @transition; -} -.ui.reveal > .hidden.content { - position: relative !important; - z-index: @bottomZIndex !important; -} - -/* Make sure hovered element is on top of other reveal */ -.ui.active.reveal .visible.content, -.ui.reveal:hover .visible.content { - z-index: @activeZIndex !important; -} - - -/******************************* - Types -*******************************/ - - -/*-------------- - Slide ----------------*/ - -.ui.slide.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.slide.reveal > .content { - display: block; - width: 100%; - white-space: normal; - float: left; - - margin: 0em; - transition: @slideTransition; -} - -.ui.slide.reveal > .visible.content { - position: relative !important; -} -.ui.slide.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; - transform: translateX(100%) !important; -} -.ui.slide.active.reveal > .visible.content, -.ui.slide.reveal:hover > .visible.content { - transform: translateX(-100%) !important; -} -.ui.slide.active.reveal > .hidden.content, -.ui.slide.reveal:hover > .hidden.content { - transform: translateX(0%) !important; -} - -.ui.slide.right.reveal > .visible.content { - transform: translateX(0%) !important; -} -.ui.slide.right.reveal > .hidden.content { - transform: translateX(-100%) !important; -} -.ui.slide.right.active.reveal > .visible.content, -.ui.slide.right.reveal:hover > .visible.content { - transform: translateX(100%) !important; -} -.ui.slide.right.active.reveal > .hidden.content, -.ui.slide.right.reveal:hover > .hidden.content { - transform: translateX(0%) !important; -} - -.ui.slide.up.reveal > .hidden.content { - transform: translateY(100%) !important; -} -.ui.slide.up.active.reveal > .visible.content, -.ui.slide.up.reveal:hover > .visible.content { - transform: translateY(-100%) !important; -} -.ui.slide.up.active.reveal > .hidden.content, -.ui.slide.up.reveal:hover > .hidden.content { - transform: translateY(0%) !important; -} - -.ui.slide.down.reveal > .hidden.content { - transform: translateY(-100%) !important; -} -.ui.slide.down.active.reveal > .visible.content, -.ui.slide.down.reveal:hover > .visible.content { - transform: translateY(100%) !important; -} -.ui.slide.down.active.reveal > .hidden.content, -.ui.slide.down.reveal:hover > .hidden.content { - transform: translateY(0%) !important; -} - - -/*-------------- - Fade ----------------*/ - -.ui.fade.reveal > .visible.content { - opacity: 1; -} -.ui.fade.active.reveal > .visible.content, -.ui.fade.reveal:hover > .visible.content { - opacity: 0; -} - - -/*-------------- - Move ----------------*/ - -.ui.move.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.move.reveal > .content { - display: block; - float: left; - white-space: normal; - - margin: 0em; - transition: @moveTransition; -} - -.ui.move.reveal > .visible.content { - position: relative !important; -} -.ui.move.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; -} -.ui.move.active.reveal > .visible.content, -.ui.move.reveal:hover > .visible.content { - transform: translateX(-100%) !important; -} -.ui.move.right.active.reveal > .visible.content, -.ui.move.right.reveal:hover > .visible.content { - transform: translateX(100%) !important; -} -.ui.move.up.active.reveal > .visible.content, -.ui.move.up.reveal:hover > .visible.content { - transform: translateY(-100%) !important; -} -.ui.move.down.active.reveal > .visible.content, -.ui.move.down.reveal:hover > .visible.content { - transform: translateY(100%) !important; -} - - - -/*-------------- - Rotate ----------------*/ - -.ui.rotate.reveal > .visible.content { - transition-duration: @transitionDuration; - transform: rotate(0deg); -} - -.ui.rotate.reveal > .visible.content, -.ui.rotate.right.reveal > .visible.content { - transform-origin: bottom right; -} -.ui.rotate.active.reveal > .visible.content, -.ui.rotate.reveal:hover > .visible.content, -.ui.rotate.right.active.reveal > .visible.content, -.ui.rotate.right.reveal:hover > .visible.content { - transform: rotate(@rotateDegrees); -} - -.ui.rotate.left.reveal > .visible.content { - transform-origin: bottom left; -} -.ui.rotate.left.active.reveal > .visible.content, -.ui.rotate.left.reveal:hover > .visible.content { - transform: rotate(-@rotateDegrees); -} - -/******************************* - States -*******************************/ - -.ui.disabled.reveal:hover > .visible.visible.content { - position: static !important; - display: block !important; - opacity: 1 !important; - top: 0 !important; - left: 0 !important; - right: auto !important; - bottom: auto !important; - transform: none !important; -} -.ui.disabled.reveal:hover > .hidden.hidden.content { - display: none !important; -} - - -/******************************* - Coupling -*******************************/ - -.ui.reveal > .ui.ribbon.label { - z-index: @overlayZIndex; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.reveal { - overflow: visible; -} - -/*-------------- - Instant ----------------*/ - -.ui.instant.reveal > .content { - transition-delay: 0s !important; -} - - -/*-------------- - Sizing ----------------*/ - -.ui.reveal > .content { - font-size: @medium !important; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less deleted file mode 100644 index 34d5a42..0000000 --- a/src/definitions/elements/segment.less +++ /dev/null @@ -1,829 +0,0 @@ -/*! - * # Semantic UI - Segment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'element'; -@element : 'segment'; - -@import (multiple) '../../theme.config'; - -/******************************* - Segment -*******************************/ - -.ui.segment { - position: relative; - background: @background; - box-shadow: @boxShadow; - margin: @margin; - padding: @padding; - border-radius: @borderRadius; - border: @border; -} - -.ui.segment:first-child { - margin-top: 0em; -} -.ui.segment:last-child { - margin-bottom: 0em; -} - - -/* Vertical */ -.ui.vertical.segment { - margin: 0em; - padding-left: 0em; - padding-right: 0em; - - background: none transparent; - border-radius: 0px; - box-shadow: none; - border: none; - border-bottom: @borderWidth solid @borderColor; -} -.ui.vertical.segment:last-child { - border-bottom: none; -} - - -/*------------------- - Loose Coupling ---------------------*/ - -/* Header */ -.ui.inverted.segment > .ui.header { - color: @white; -} - -/* Label */ -.ui[class*="bottom attached"].segment > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} -.ui[class*="top attached"].segment > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} -.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} -.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -/* Grid */ -.ui.page.grid.segment, -.ui.grid > .row > .ui.segment.column, -.ui.grid > .ui.segment.column { - padding-top: @pageGridMargin; - padding-bottom: @pageGridMargin; -} -.ui.grid.segment { - margin: @margin; - border-radius: @borderRadius; -} - -/* Table */ -.ui.basic.table.segment { - background: @background; - border: @border; - box-shadow: @boxShadow; -} -.ui[class*="very basic"].table.segment { - padding: @padding; -} - - -/******************************* - Types -*******************************/ - - -/*------------------- - Placeholder ---------------------*/ - -.ui.placeholder.segment { - display: flex; - flex-direction: column; - justify-content: center; - align-items: stretch; - max-width: initial; - animation: none; - overflow: visible; - padding: @placeholderPadding; - min-height: @placeholderMinHeight; - background: @placeholderBackground; - border-color: @placeholderBorderColor; - box-shadow: @placeholderBoxShadow; -} - -.ui.placeholder.segment .button, -.ui.placeholder.segment textarea { - display: block; -} -.ui.placeholder.segment .field, -.ui.placeholder.segment textarea, -.ui.placeholder.segment > .ui.input, -.ui.placeholder.segment .button { - max-width: @placeholderContentMaxWidth; - margin-left: auto; - margin-right: auto; -} -.ui.placeholder.segment .column .button, -.ui.placeholder.segment .column .field, -.ui.placeholder.segment .column textarea, -.ui.placeholder.segment .column > .ui.input { - max-width: @placeholderContentMaxWidth; - margin-left: auto; - margin-right: auto; -} - -.ui.placeholder.segment > .inline { - align-self: center; -} -.ui.placeholder.segment > .inline > .button { - display: inline-block; - width: auto; - margin: @placeholderContentInlineButtonMargin; -} -.ui.placeholder.segment > .inline > .button:last-child { - margin-right: 0px; -} - - -/*------------------- - Piled ---------------------*/ - -.ui.piled.segments, -.ui.piled.segment { - margin: @piledMargin 0em; - box-shadow: @piledBoxShadow; - z-index: @piledZIndex; -} -.ui.piled.segment:first-child { - margin-top: 0em; -} -.ui.piled.segment:last-child { - margin-bottom: 0em; -} -.ui.piled.segments:after, -.ui.piled.segments:before, -.ui.piled.segment:after, -.ui.piled.segment:before { - background-color: @white; - visibility: visible; - content: ''; - display: block; - height: 100%; - left: 0px; - position: absolute; - width: 100%; - border: @piledBorder; - box-shadow: @piledBoxShadow; -} -.ui.piled.segments:before, -.ui.piled.segment:before { - transform: rotate(-@piledDegrees); - top: 0; - z-index: -2; -} -.ui.piled.segments:after, -.ui.piled.segment:after { - transform: rotate(@piledDegrees); - top: 0; - z-index: -1; -} - -/* Piled Attached */ -.ui[class*="top attached"].piled.segment { - margin-top: @piledMargin; - margin-bottom: 0em; -} -.ui.piled.segment[class*="top attached"]:first-child { - margin-top: 0em; -} -.ui.piled.segment[class*="bottom attached"] { - margin-top: 0em; - margin-bottom: @piledMargin; -} -.ui.piled.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Stacked ---------------------*/ - -.ui.stacked.segment { - padding-bottom: @stackedPadding; -} -.ui.stacked.segments:before, -.ui.stacked.segments:after, -.ui.stacked.segment:before, -.ui.stacked.segment:after { - content: ''; - position: absolute; - bottom: -(@stackedHeight / 2); - left: 0%; - - border-top: 1px solid @borderColor; - background: @stackedPageBackground; - - width: 100%; - height: @stackedHeight; - visibility: visible; -} -.ui.stacked.segments:before, -.ui.stacked.segment:before { - display: none; -} - -/* Add additional page */ -.ui.tall.stacked.segments:before, -.ui.tall.stacked.segment:before { - display: block; - bottom: 0px; -} - -/* Inverted */ -.ui.stacked.inverted.segments:before, -.ui.stacked.inverted.segments:after, -.ui.stacked.inverted.segment:before, -.ui.stacked.inverted.segment:after { - background-color: @subtleTransparentBlack; - border-top: 1px solid @selectedBorderColor; -} - -/*------------------- - Padded ---------------------*/ - -.ui.padded.segment { - padding: @paddedSegmentPadding; -} - -.ui[class*="very padded"].segment { - padding: @veryPaddedSegmentPadding; -} - -/* Padded vertical */ -.ui.padded.segment.vertical.segment, -.ui[class*="very padded"].vertical.segment { - padding-left: 0px; - padding-right: 0px; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.segment { - display: table; -} - -/* Compact Group */ -.ui.compact.segments { - display: inline-flex; -} -.ui.compact.segments .segment, -.ui.segments .compact.segment { - display: block; - flex: 0 1 auto; -} - -/*------------------- - Circular ---------------------*/ - -.ui.circular.segment { - display: table-cell; - padding: @circularPadding; - text-align: center; - vertical-align: middle; - border-radius: 500em; -} - -/*------------------- - Raised ---------------------*/ - -.ui.raised.segments, -.ui.raised.segment { - box-shadow: @raisedBoxShadow; -} - - -/******************************* - Groups -*******************************/ - -/* Group */ -.ui.segments { - flex-direction: column; - position: relative; - margin: @groupedMargin; - border: @groupedBorder; - box-shadow: @groupedBoxShadow; - border-radius: @groupedBorderRadius; -} -.ui.segments:first-child { - margin-top: 0em; -} -.ui.segments:last-child { - margin-bottom: 0em; -} - - -/* Nested Segment */ -.ui.segments > .segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: @groupedSegmentMargin; - width: @groupedSegmentWidth; - box-shadow: @groupedSegmentBoxShadow; - border: @groupedSegmentBorder; - border-top: @groupedSegmentDivider; -} - -.ui.segments:not(.horizontal) > .segment:first-child { - top: @attachedTopOffset; - bottom: 0px; - border-top: none; - margin-top: 0em; - bottom: 0px; - margin-bottom: 0em; - top: @attachedTopOffset; - border-radius: @borderRadius @borderRadius 0em 0em; -} - -/* Bottom */ -.ui.segments:not(.horizontal) > .segment:last-child { - top: @attachedBottomOffset; - bottom: 0px; - margin-top: 0em; - margin-bottom: 0em; - box-shadow: @attachedBottomBoxShadow; - border-radius: 0em 0em @borderRadius @borderRadius; -} - -/* Only */ -.ui.segments:not(.horizontal) > .segment:only-child { - border-radius: @borderRadius; -} - - -/* Nested Group */ -.ui.segments > .ui.segments { - border-top: @groupedSegmentDivider; - margin: @nestedGroupMargin; -} -.ui.segments > .segments:first-child { - border-top: none; -} -.ui.segments > .segment + .segments:not(.horizontal) { - margin-top: 0em; -} - -/* Horizontal Group */ -.ui.horizontal.segments { - display: flex; - flex-direction: row; - background-color: transparent; - border-radius: 0px; - padding: 0em; - background-color: @background; - box-shadow: @boxShadow; - margin: @margin; - border-radius: @borderRadius; - border: @border; -} - -/* Nested Horizontal Group */ -.ui.segments > .horizontal.segments { - margin: 0em; - background-color: transparent; - border-radius: 0px; - border: none; - box-shadow: none; - border-top: @groupedSegmentDivider; -} - -/* Horizontal Segment */ -.ui.horizontal.segments > .segment { - flex: 1 1 auto; - -ms-flex: 1 1 0px; /* Solves #2550 MS Flex */ - margin: 0em; - min-width: 0px; - background-color: transparent; - border-radius: 0px; - border: none; - box-shadow: none; - border-left: @borderWidth solid @borderColor; -} - -/* Border Fixes */ -.ui.segments > .horizontal.segments:first-child { - border-top: none; -} -.ui.horizontal.segments > .segment:first-child { - border-left: none; -} - - -/******************************* - States -*******************************/ - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.segment { - opacity: @disabledOpacity; - color: @disabledTextColor; -} - -/*-------------- - Loading ----------------*/ - -.ui.loading.segment { - position: relative; - cursor: default; - pointer-events: none; - text-shadow: none !important; - color: transparent !important; - transition: all 0s linear; -} -.ui.loading.segment:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: @loaderDimmerColor; - width: 100%; - height: 100%; - border-radius: @borderRadius; - z-index: @loaderDimmerZIndex; -} -.ui.loading.segment:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: segment-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor @loaderFillColor @loaderFillColor @loaderFillColor; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: @loaderLineZIndex; -} - -@keyframes segment-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - - -/******************************* - Variations -*******************************/ - - -/*------------------- - Basic ---------------------*/ - -.ui.basic.segment { - background: @basicBackground; - box-shadow: @basicBoxShadow; - border: @basicBorder; - border-radius: @basicBorderRadius; -} - -/*------------------- - Clearing ---------------------*/ - -.ui.clearing.segment:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ -.ui.red.segment:not(.inverted) { - border-top: @coloredBorderSize solid @red !important; -} -.ui.inverted.red.segment { - background-color: @red !important; - color: @white !important; -} - -/* Orange */ -.ui.orange.segment:not(.inverted) { - border-top: @coloredBorderSize solid @orange !important; -} -.ui.inverted.orange.segment { - background-color: @orange !important; - color: @white !important; -} - -/* Yellow */ -.ui.yellow.segment:not(.inverted) { - border-top: @coloredBorderSize solid @yellow !important; -} -.ui.inverted.yellow.segment { - background-color: @yellow !important; - color: @white !important; -} - -/* Olive */ -.ui.olive.segment:not(.inverted) { - border-top: @coloredBorderSize solid @olive !important; -} -.ui.inverted.olive.segment { - background-color: @olive !important; - color: @white !important; -} - -/* Green */ -.ui.green.segment:not(.inverted) { - border-top: @coloredBorderSize solid @green !important; -} -.ui.inverted.green.segment { - background-color: @green !important; - color: @white !important; -} - -/* Teal */ -.ui.teal.segment:not(.inverted) { - border-top: @coloredBorderSize solid @teal !important; -} -.ui.inverted.teal.segment { - background-color: @teal !important; - color: @white !important; -} - -/* Blue */ -.ui.blue.segment:not(.inverted) { - border-top: @coloredBorderSize solid @blue !important; -} -.ui.inverted.blue.segment { - background-color: @blue !important; - color: @white !important; -} - -/* Violet */ -.ui.violet.segment:not(.inverted) { - border-top: @coloredBorderSize solid @violet !important; -} -.ui.inverted.violet.segment { - background-color: @violet !important; - color: @white !important; -} - -/* Purple */ -.ui.purple.segment:not(.inverted) { - border-top: @coloredBorderSize solid @purple !important; -} -.ui.inverted.purple.segment { - background-color: @purple !important; - color: @white !important; -} - -/* Pink */ -.ui.pink.segment:not(.inverted) { - border-top: @coloredBorderSize solid @pink !important; -} -.ui.inverted.pink.segment { - background-color: @pink !important; - color: @white !important; -} - -/* Brown */ -.ui.brown.segment:not(.inverted) { - border-top: @coloredBorderSize solid @brown !important; -} -.ui.inverted.brown.segment { - background-color: @brown !important; - color: @white !important; -} - -/* Grey */ -.ui.grey.segment:not(.inverted) { - border-top: @coloredBorderSize solid @grey !important; -} -.ui.inverted.grey.segment { - background-color: @grey !important; - color: @white !important; -} - -/* Black */ -.ui.black.segment:not(.inverted) { - border-top: @coloredBorderSize solid @black !important; -} -.ui.inverted.black.segment { - background-color: @black !important; - color: @white !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui[class*="left aligned"].segment { - text-align: left; -} -.ui[class*="right aligned"].segment { - text-align: right; -} -.ui[class*="center aligned"].segment { - text-align: center; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.segment, -.ui[class*="left floated"].segment { - float: left; - margin-right: @floatedDistance; -} -.ui[class*="right floated"].segment { - float: right; - margin-left: @floatedDistance; -} - - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.segment { - border: none; - box-shadow: none; -} -.ui.inverted.segment, -.ui.primary.inverted.segment { - background: @invertedBackground; - color: @invertedTextColor; -} - -/* Nested */ -.ui.inverted.segment .segment { - color: @textColor; -} -.ui.inverted.segment .inverted.segment { - color: @invertedTextColor; -} - -/* Attached */ -.ui.inverted.attached.segment { - border-color: @solidWhiteBorderColor; -} - -/*------------------- - Emphasis ---------------------*/ - -/* Secondary */ -.ui.secondary.segment { - background: @secondaryBackground; - color: @secondaryColor; -} -.ui.secondary.inverted.segment { - background: @secondaryInvertedBackground; - color: @secondaryInvertedColor; -} - -/* Tertiary */ -.ui.tertiary.segment { - background: @tertiaryBackground; - color: @tertiaryColor; -} -.ui.tertiary.inverted.segment { - background: @tertiaryInvertedBackground; - color: @tertiaryInvertedColor; -} - - -/*------------------- - Attached ---------------------*/ - -/* Middle */ -.ui.attached.segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em @attachedHorizontalOffset; - width: @attachedWidth; - max-width: @attachedWidth; - box-shadow: @attachedBoxShadow; - border: @attachedBorder; -} -.ui.attached:not(.message) + .ui.attached.segment:not(.top) { - border-top: none; -} - -/* Top */ -.ui[class*="top attached"].segment { - bottom: 0px; - margin-bottom: 0em; - top: @attachedTopOffset; - margin-top: @verticalMargin; - border-radius: @borderRadius @borderRadius 0em 0em; -} -.ui.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ -.ui.segment[class*="bottom attached"] { - bottom: 0px; - margin-top: 0em; - top: @attachedBottomOffset; - margin-bottom: @verticalMargin; - box-shadow: @attachedBottomBoxShadow; - border-radius: 0em 0em @borderRadius @borderRadius; -} -.ui.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Size ---------------------*/ - -.ui.mini.segments .segment, -.ui.mini.segment { - font-size: @mini; -} -.ui.tiny.segments .segment, -.ui.tiny.segment { - font-size: @tiny; -} -.ui.small.segments .segment, -.ui.small.segment { - font-size: @small; -} -.ui.segments .segment, -.ui.segment { - font-size: @medium; -} -.ui.large.segments .segment, -.ui.large.segment { - font-size: @large; -} -.ui.big.segments .segment, -.ui.big.segment { - font-size: @big; -} -.ui.huge.segments .segment, -.ui.huge.segment { - font-size: @huge; -} -.ui.massive.segments .segment, -.ui.massive.segment { - font-size: @massive; -} - -.loadUIOverrides(); diff --git a/src/definitions/elements/step.less b/src/definitions/elements/step.less deleted file mode 100644 index 5c4aff2..0000000 --- a/src/definitions/elements/step.less +++ /dev/null @@ -1,562 +0,0 @@ -/*! - * # Semantic UI - Step - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Step -*******************************/ - -/*-------------- - Load Theme ----------------*/ - -@type : 'element'; -@element : 'step'; - -@import (multiple) '../../theme.config'; - -/******************************* - Plural -*******************************/ - -.ui.steps { - display: inline-flex; - flex-direction: row; - align-items: stretch; - margin: @stepMargin; - background: @stepsBackground; - box-shadow: @stepsBoxShadow; - line-height: @lineHeight; - border-radius: @stepsBorderRadius; - border: @stepsBorder; -} - -/* First Steps */ -.ui.steps:first-child { - margin-top: 0em; -} - -/* Last Steps */ -.ui.steps:last-child { - margin-bottom: 0em; -} - - -/******************************* - Singular -*******************************/ - -.ui.steps .step { - position: relative; - display: flex; - flex: 1 0 auto; - flex-wrap: wrap; - flex-direction: row; - vertical-align: middle; - align-items: center; - justify-content: @justifyContent; - - margin: @verticalMargin @horizontalMargin; - padding: @verticalPadding @horizontalPadding; - background: @background; - color: @textColor; - box-shadow: @boxShadow; - border-radius: @borderRadius; - border: @border; - border-right: @divider; - transition: @transition; -} - -/* Arrow */ -.ui.steps .step:after { - display: none; - position: absolute; - z-index: 2; - content: ''; - top: @arrowTopOffset; - right: @arrowRightOffset; - border: medium none; - background-color: @arrowBackgroundColor; - width: @arrowSize; - height: @arrowSize; - - border-style: solid; - border-color: @borderColor; - border-width: @arrowBorderWidth; - - transition: @transition; - transform: translateY(-50%) translateX(50%) rotate(-45deg); -} - -/* First Step */ -.ui.steps .step:first-child { - padding-left: @horizontalPadding; - border-radius: @stepsBorderRadius 0em 0em @stepsBorderRadius; -} - -/* Last Step */ -.ui.steps .step:last-child { - border-radius: 0em @stepsBorderRadius @stepsBorderRadius 0em; -} -.ui.steps .step:last-child { - border-right: none; - margin-right: 0em; -} - -/* Only Step */ -.ui.steps .step:only-child { - border-radius: @stepsBorderRadius; -} - - -/******************************* - Content -*******************************/ - -/* Title */ -.ui.steps .step .title { - font-family: @titleFontFamily; - font-size: @titleFontSize; - font-weight: @titleFontWeight; -} -.ui.steps .step > .title { - width: 100%; -} - -/* Description */ -.ui.steps .step .description { - font-weight: @descriptionFontWeight; - font-size: @descriptionFontSize; - color: @descriptionColor; -} -.ui.steps .step > .description { - width: 100%; -} -.ui.steps .step .title ~ .description { - margin-top: @descriptionDistance; -} - -/* Icon */ -.ui.steps .step > .icon { - line-height: 1; - font-size: @iconSize; - margin: 0em @iconDistance 0em 0em; -} -.ui.steps .step > .icon, -.ui.steps .step > .icon ~ .content { - display: block; - flex: 0 1 auto; - align-self: @iconAlign; -} -.ui.steps .step > .icon ~ .content { - flex-grow: 1 0 auto; -} - -/* Horizontal Icon */ -.ui.steps:not(.vertical) .step > .icon { - width: auto; -} - -/* Link */ -.ui.steps .link.step, -.ui.steps a.step { - cursor: pointer; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Ordered ----------------*/ - -.ui.ordered.steps { - counter-reset: ordered; -} -.ui.ordered.steps .step:before { - display: block; - position: static; - text-align: center; - content: counters(ordered, "."); - align-self: @iconAlign; - margin-right: @iconDistance; - font-size: @iconSize; - counter-increment: ordered; - font-family: @orderedFontFamily; - font-weight: @orderedFontWeight; -} - -.ui.ordered.steps .step > * { - display: block; - align-self: @iconAlign; -} - - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.steps { - display: inline-flex; - flex-direction: column; - overflow: visible; -} -.ui.vertical.steps .step { - justify-content: flex-start; - border-radius: @borderRadius; - padding: @verticalPadding @horizontalPadding; - border-right: none; - border-bottom: @verticalDivider; -} -.ui.vertical.steps .step:first-child { - padding: @verticalPadding @horizontalPadding; - border-radius: @stepsBorderRadius @stepsBorderRadius 0em 0em; -} -.ui.vertical.steps .step:last-child { - border-bottom: none; - border-radius: 0em 0em @stepsBorderRadius @stepsBorderRadius; -} -.ui.vertical.steps .step:only-child { - border-radius: @stepsBorderRadius; -} - - -/* Arrow */ -.ui.vertical.steps .step:after { - display: none; -} -.ui.vertical.steps .step:after { - top: @verticalArrowTopOffset; - right: @verticalArrowRightOffset; - border-width: @verticalArrowBorderWidth; -} - -.ui.vertical.steps .step:after { - display: @verticalArrowDisplay; -} -.ui.vertical.steps .active.step:after { - display: @verticalActiveArrowDisplay; -} -.ui.vertical.steps .step:last-child:after { - display: @verticalLastArrowDisplay; -} -.ui.vertical.steps .active.step:last-child:after { - display: @verticalActiveLastArrowDisplay; -} - - -/*--------------- - Responsive -----------------*/ - -/* Mobile (Default) */ -@media only screen and (max-width: (@largestMobileScreen)) { - - .ui.steps:not(.unstackable) { - display: inline-flex; - overflow: visible; - flex-direction: column; - } - .ui.steps:not(.unstackable) .step { - width: 100% !important; - flex-direction: column; - border-radius: @borderRadius; - padding: @verticalPadding @horizontalPadding; - } - .ui.steps:not(.unstackable) .step:first-child { - padding: @verticalPadding @horizontalPadding; - border-radius: @stepsBorderRadius @stepsBorderRadius 0em 0em; - } - .ui.steps:not(.unstackable) .step:last-child { - border-radius: 0em 0em @stepsBorderRadius @stepsBorderRadius; - } - - /* Arrow */ - .ui.steps:not(.unstackable) .step:after { - display: none !important; - } - - /* Content */ - .ui.steps:not(.unstackable) .step .content { - text-align: center; - } - - /* Icon */ - .ui.steps:not(.unstackable) .step > .icon, - .ui.ordered.steps:not(.unstackable) .step:before { - margin: 0em 0em @mobileIconDistance 0em; - } - -} - -/******************************* - States -*******************************/ - -/* Link Hover */ -.ui.steps .link.step:hover::after, -.ui.steps .link.step:hover, -.ui.steps a.step:hover::after, -.ui.steps a.step:hover { - background: @hoverBackground; - color: @hoverColor; -} - -/* Link Down */ -.ui.steps .link.step:active::after, -.ui.steps .link.step:active, -.ui.steps a.step:active::after, -.ui.steps a.step:active { - background: @downBackground; - color: @downColor; -} - -/* Active */ -.ui.steps .step.active { - cursor: auto; - background: @activeBackground; -} -.ui.steps .step.active:after { - background: @activeBackground; -} -.ui.steps .step.active .title { - color: @activeColor; -} -.ui.ordered.steps .step.active:before, -.ui.steps .active.step .icon { - color: @activeIconColor; -} - -/* Active Arrow */ -.ui.steps .step:after { - display: @arrowDisplay; -} -.ui.steps .active.step:after { - display: @activeArrowDisplay; -} -.ui.steps .step:last-child:after { - display: @lastArrowDisplay; -} -.ui.steps .active.step:last-child:after { - display: @activeLastArrowDisplay; -} - -/* Active Hover */ -.ui.steps .link.active.step:hover::after, -.ui.steps .link.active.step:hover, -.ui.steps a.active.step:hover::after, -.ui.steps a.active.step:hover { - cursor: pointer; - background: @activeHoverBackground; - color: @activeHoverColor; -} - -/* Completed */ -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - color: @completedColor; -} - -/* Disabled */ -.ui.steps .disabled.step { - cursor: auto; - background: @disabledBackground; - pointer-events: none; -} -.ui.steps .disabled.step, -.ui.steps .disabled.step .title, -.ui.steps .disabled.step .description { - color: @disabledColor; -} -.ui.steps .disabled.step:after { - background: @disabledBackground; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Stackable ----------------*/ - -/* Tablet Or Below */ -@media only screen and (max-width: @largestTabletScreen) { - -.ui[class*="tablet stackable"].steps { - display: inline-flex; - overflow: visible; - flex-direction: column; -} - -/* Steps */ -.ui[class*="tablet stackable"].steps .step { - flex-direction: column; - border-radius: @borderRadius; - padding: @verticalPadding @horizontalPadding; -} -.ui[class*="tablet stackable"].steps .step:first-child { - padding: @verticalPadding @horizontalPadding; - border-radius: @stepsBorderRadius @stepsBorderRadius 0em 0em; -} -.ui[class*="tablet stackable"].steps .step:last-child { - border-radius: 0em 0em @stepsBorderRadius @stepsBorderRadius; -} - -/* Arrow */ -.ui[class*="tablet stackable"].steps .step:after { - display: none !important; -} - -/* Content */ -.ui[class*="tablet stackable"].steps .step .content { - text-align: center; -} - -/* Icon */ -.ui[class*="tablet stackable"].steps .step > .icon, -.ui[class*="tablet stackable"].ordered.steps .step:before { - margin: 0em 0em @mobileIconDistance 0em; -} - -} - -/*-------------- - Fluid ----------------*/ - -/* Fluid */ -.ui.fluid.steps { - display: flex; - width: 100%; -} - -/*-------------- - Attached ----------------*/ - -/* Top */ -.ui.attached.steps { - width: @attachedWidth !important; - margin: 0em @attachedHorizontalOffset @attachedVerticalOffset; - max-width: @attachedWidth; - border-radius: @stepsBorderRadius @stepsBorderRadius 0em 0em; -} -.ui.attached.steps .step:first-child { - border-radius: @stepsBorderRadius 0em 0em 0em; -} -.ui.attached.steps .step:last-child { - border-radius: 0em @stepsBorderRadius 0em 0em; -} - -/* Bottom */ -.ui.bottom.attached.steps { - margin: @attachedVerticalOffset @attachedHorizontalOffset 0em; - border-radius: 0em 0em @stepsBorderRadius @stepsBorderRadius; -} -.ui.bottom.attached.steps .step:first-child { - border-radius: 0em 0em 0em @stepsBorderRadius; -} -.ui.bottom.attached.steps .step:last-child { - border-radius: 0em 0em @stepsBorderRadius 0em; -} - -/*------------------- - Evenly Divided ---------------------*/ - -.ui.one.steps, -.ui.two.steps, -.ui.three.steps, -.ui.four.steps, -.ui.five.steps, -.ui.six.steps, -.ui.seven.steps, -.ui.eight.steps { - width: 100%; -} -.ui.one.steps > .step, -.ui.two.steps > .step, -.ui.three.steps > .step, -.ui.four.steps > .step, -.ui.five.steps > .step, -.ui.six.steps > .step, -.ui.seven.steps > .step, -.ui.eight.steps > .step { - flex-wrap: nowrap; -} -.ui.one.steps > .step { - width: 100%; -} -.ui.two.steps > .step { - width: 50%; -} -.ui.three.steps > .step { - width: 33.333%; -} -.ui.four.steps > .step { - width: 25%; -} -.ui.five.steps > .step { - width: 20%; -} -.ui.six.steps > .step { - width: 16.666%; -} -.ui.seven.steps > .step { - width: 14.285%; -} -.ui.eight.steps > .step { - width: 12.500%; -} - -/*------------------- - Sizes ---------------------*/ - - -.ui.mini.steps .step, -.ui.mini.step { - font-size: @mini; -} -.ui.tiny.steps .step, -.ui.tiny.step { - font-size: @tiny; -} -.ui.small.steps .step, -.ui.small.step { - font-size: @small; -} -.ui.steps .step, -.ui.step { - font-size: @medium; -} -.ui.large.steps .step, -.ui.large.step { - font-size: @large; -} -.ui.big.steps .step, -.ui.big.step { - font-size: @big; -} -.ui.huge.steps .step, -.ui.huge.step { - font-size: @huge; -} -.ui.massive.steps .step, -.ui.massive.step { - font-size: @massive; -} - - -.loadUIOverrides(); diff --git a/src/definitions/globals/site.less b/src/definitions/globals/site.less deleted file mode 100644 index ffe558b..0000000 --- a/src/definitions/globals/site.less +++ /dev/null @@ -1,208 +0,0 @@ -/*! - * # Semantic UI - Site - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'global'; -@element : 'site'; - -@import (multiple) '../../theme.config'; - -/******************************* - Page -*******************************/ - -.loadFonts(); - -html, -body { - height: 100%; -} - -html { - font-size: @emSize; -} - -body { - margin: 0px; - padding: 0px; - overflow-x: @pageOverflowX; - min-width: @pageMinWidth; - background: @pageBackground; - font-family: @pageFont; - font-size: @fontSize; - line-height: @lineHeight; - color: @textColor; - font-smoothing: @fontSmoothing; -} - -/******************************* - Headers -*******************************/ - -h1, -h2, -h3, -h4, -h5 { - font-family: @headerFont; - line-height: @headerLineHeight; - margin: @headerMargin; - font-weight: @headerFontWeight; - padding: 0em; -} - -h1 { - min-height: 1rem; - font-size: @h1; -} -h2 { - font-size: @h2; -} -h3 { - font-size: @h3; -} -h4 { - font-size: @h4; -} -h5 { - font-size: @h5; -} - -h1:first-child, -h2:first-child, -h3:first-child, -h4:first-child, -h5:first-child { - margin-top: 0em; -} - -h1:last-child, -h2:last-child, -h3:last-child, -h4:last-child, -h5:last-child { - margin-bottom: 0em; -} - - -/******************************* - Text -*******************************/ - -p { - margin: @paragraphMargin; - line-height: @paragraphLineHeight; -} -p:first-child { - margin-top: 0em; -} -p:last-child { - margin-bottom: 0em; -} - -/*------------------- - Links ---------------------*/ - -a { - color: @linkColor; - text-decoration: @linkUnderline; -} -a:hover { - color: @linkHoverColor; - text-decoration: @linkHoverUnderline; -} - - -/******************************* - Scrollbars -*******************************/ - -.addScrollbars() when (@useCustomScrollbars) { - - /* Force Simple Scrollbars */ - body ::-webkit-scrollbar { - -webkit-appearance: none; - width: @customScrollbarWidth; - height: @customScrollbarHeight; - } - body ::-webkit-scrollbar-track { - background: @trackBackground; - border-radius: @trackBorderRadius; - } - body ::-webkit-scrollbar-thumb { - cursor: pointer; - border-radius: @thumbBorderRadius; - background: @thumbBackground; - transition: @thumbTransition; - } - body ::-webkit-scrollbar-thumb:window-inactive { - background: @thumbInactiveBackground; - } - body ::-webkit-scrollbar-thumb:hover { - background: @thumbHoverBackground; - } - - /* Inverted UI */ - body .ui.inverted::-webkit-scrollbar-track { - background: @trackInvertedBackground; - } - body .ui.inverted::-webkit-scrollbar-thumb { - background: @thumbInvertedBackground; - } - body .ui.inverted::-webkit-scrollbar-thumb:window-inactive { - background: @thumbInvertedInactiveBackground; - } - body .ui.inverted::-webkit-scrollbar-thumb:hover { - background: @thumbInvertedHoverBackground; - } -} - -/******************************* - Highlighting -*******************************/ - -/* Site */ -::-webkit-selection { - background-color: @highlightBackground; - color: @highlightColor; -} -::-moz-selection { - background-color: @highlightBackground; - color: @highlightColor; -} -::selection { - background-color: @highlightBackground; - color: @highlightColor; -} - -/* Form */ -textarea::-webkit-selection, -input::-webkit-selection { - background-color: @inputHighlightBackground; - color: @inputHighlightColor; -} -textarea::-moz-selection, -input::-moz-selection { - background-color: @inputHighlightBackground; - color: @inputHighlightColor; -} -textarea::selection, -input::selection { - background-color: @inputHighlightBackground; - color: @inputHighlightColor; -} - -.addScrollbars(); -.loadUIOverrides(); diff --git a/src/definitions/modules/accordion.less b/src/definitions/modules/accordion.less deleted file mode 100644 index 835f490..0000000 --- a/src/definitions/modules/accordion.less +++ /dev/null @@ -1,219 +0,0 @@ -/*! - * # Semantic UI - Accordion - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'accordion'; - -@import (multiple) '../../theme.config'; - -/******************************* - Accordion -*******************************/ - -.ui.accordion, -.ui.accordion .accordion { - max-width: 100%; -} -.ui.accordion .accordion { - margin: @childAccordionMargin; - padding: @childAccordionPadding; -} - -/* Title */ -.ui.accordion .title, -.ui.accordion .accordion .title { - cursor: pointer; -} - -/* Default Styling */ -.ui.accordion .title:not(.ui) { - padding: @titlePadding; - font-family: @titleFont; - font-size: @titleFontSize; - color: @titleColor; -} - -/* Content */ -.ui.accordion .title ~ .content, -.ui.accordion .accordion .title ~ .content { - display: none; -} - -/* Default Styling */ -.ui.accordion:not(.styled) .title ~ .content:not(.ui), -.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) { - margin: @contentMargin; - padding: @contentPadding; -} -.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child { - padding-bottom: 0em; -} - -/* Arrow */ -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - display: @iconDisplay; - float: @iconFloat; - opacity: @iconOpacity; - width: @iconWidth; - height: @iconHeight; - margin: @iconMargin; - padding: @iconPadding; - font-size: @iconFontSize; - transition: @iconTransition; - vertical-align: @iconVerticalAlign; - transform: @iconTransform; -} - -/*-------------- - Coupling ----------------*/ - -/* Menu */ -.ui.accordion.menu .item .title { - display: block; - padding: @menuTitlePadding; -} -.ui.accordion.menu .item .title > .dropdown.icon { - float: @menuIconFloat; - margin: @menuIconMargin; - transform: @menuIconTransform; -} - -/* Header */ -.ui.accordion .ui.header .dropdown.icon { - font-size: @iconFontSize; - margin: @iconMargin; -} - -/******************************* - States -*******************************/ - -.ui.accordion .active.title .dropdown.icon, -.ui.accordion .accordion .active.title .dropdown.icon { - transform: @activeIconTransform; -} - -.ui.accordion.menu .item .active.title > .dropdown.icon { - transform: @activeIconTransform; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Styled ----------------*/ - -.ui.styled.accordion { - width: @styledWidth; -} - -.ui.styled.accordion, -.ui.styled.accordion .accordion { - border-radius: @styledBorderRadius; - background: @styledBackground; - box-shadow: @styledBoxShadow; -} -.ui.styled.accordion .title, -.ui.styled.accordion .accordion .title { - margin: @styledTitleMargin; - padding: @styledTitlePadding; - color: @styledTitleColor; - font-weight: @styledTitleFontWeight; - border-top: @styledTitleBorder; - transition: @styledTitleTransition; -} -.ui.styled.accordion > .title:first-child, -.ui.styled.accordion .accordion .title:first-child { - border-top: none; -} - - -/* Content */ -.ui.styled.accordion .content, -.ui.styled.accordion .accordion .content { - margin: @styledContentMargin; - padding: @styledContentPadding; -} -.ui.styled.accordion .accordion .content { - padding: @styledChildContentMargin; - padding: @styledChildContentPadding; -} - - -/* Hover */ -.ui.styled.accordion .title:hover, -.ui.styled.accordion .active.title, -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: @styledTitleHoverBackground; - color: @styledTitleHoverColor; -} -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: @styledHoverChildTitleBackground; - color: @styledHoverChildTitleColor; -} - - -/* Active */ -.ui.styled.accordion .active.title { - background: @styledActiveTitleBackground; - color: @styledActiveTitleColor; -} -.ui.styled.accordion .accordion .active.title { - background: @styledActiveChildTitleBackground; - color: @styledActiveChildTitleColor; -} - - -/******************************* - States -*******************************/ - -/*-------------- - Active ----------------*/ - -.ui.accordion .active.content, -.ui.accordion .accordion .active.content { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.accordion, -.ui.fluid.accordion .accordion { - width: 100%; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.accordion .title:not(.ui) { - color: @invertedTitleColor; -} - -.loadUIOverrides(); - diff --git a/src/definitions/modules/checkbox.less b/src/definitions/modules/checkbox.less deleted file mode 100644 index 98f7746..0000000 --- a/src/definitions/modules/checkbox.less +++ /dev/null @@ -1,598 +0,0 @@ -/*! - * # Semantic UI - Checkbox - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'checkbox'; - -@import (multiple) '../../theme.config'; - -/******************************* - Checkbox -*******************************/ - - -/*-------------- - Content ----------------*/ - -.ui.checkbox { - position: relative; - display: inline-block; - backface-visibility: hidden; - outline: none; - vertical-align: baseline; - font-style: normal; - - min-height: @checkboxSize; - font-size: @medium; - line-height: @checkboxLineHeight; - min-width: @checkboxSize; -} - -/* HTML Checkbox */ -.ui.checkbox input[type="checkbox"], -.ui.checkbox input[type="radio"] { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - opacity: 0 !important; - outline: none; - z-index: 3; - width: @checkboxSize; - height: @checkboxSize; -} - - -/*-------------- - Box ----------------*/ - - -.ui.checkbox .box, -.ui.checkbox label { - cursor: auto; - position: relative; - display: block; - padding-left: @labelDistance; - outline: none; - font-size: @labelFontSize; -} - -.ui.checkbox .box:before, -.ui.checkbox label:before { - position: absolute; - top: 0px; - left: 0px; - - width: @checkboxSize; - height: @checkboxSize; - content: ''; - - background: @checkboxBackground; - border-radius: @checkboxBorderRadius; - - transition: @checkboxTransition; - border: @checkboxBorder; -} - -/*-------------- - Checkmark ----------------*/ - -.ui.checkbox .box:after, -.ui.checkbox label:after { - position: absolute; - font-size: @checkboxCheckFontSize; - top: @checkboxCheckTop; - left: @checkboxCheckLeft; - width: @checkboxCheckSize; - height: @checkboxCheckSize; - text-align: center; - - opacity: 0; - color: @checkboxColor; - transition: @checkboxTransition; -} - -/*-------------- - Label ----------------*/ - -/* Inside */ -.ui.checkbox label, -.ui.checkbox + label { - color: @labelColor; - transition: @labelTransition; -} - -/* Outside */ -.ui.checkbox + label { - vertical-align: middle; -} - - -/******************************* - States -*******************************/ - - -/*-------------- - Hover ----------------*/ - -.ui.checkbox .box:hover::before, -.ui.checkbox label:hover::before { - background: @checkboxHoverBackground; - border-color: @checkboxHoverBorderColor; -} -.ui.checkbox label:hover, -.ui.checkbox + label:hover { - color: @labelHoverColor; -} - -/*-------------- - Down ----------------*/ - -.ui.checkbox .box:active::before, -.ui.checkbox label:active::before { - background: @checkboxPressedBackground; - border-color: @checkboxPressedBorderColor; -} -.ui.checkbox .box:active::after, -.ui.checkbox label:active::after { - color: @checkboxPressedColor; -} -.ui.checkbox input:active ~ label { - color: @labelPressedColor; -} - -/*-------------- - Focus ----------------*/ - -.ui.checkbox input:focus ~ .box:before, -.ui.checkbox input:focus ~ label:before { - background: @checkboxFocusBackground; - border-color: @checkboxFocusBorderColor; -} -.ui.checkbox input:focus ~ .box:after, -.ui.checkbox input:focus ~ label:after { - color: @checkboxFocusCheckColor; -} -.ui.checkbox input:focus ~ label { - color: @labelFocusColor; -} - -/*-------------- - Active ----------------*/ - -.ui.checkbox input:checked ~ .box:before, -.ui.checkbox input:checked ~ label:before { - background: @checkboxActiveBackground; - border-color: @checkboxActiveBorderColor; -} -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - opacity: @checkboxActiveCheckOpacity; - color: @checkboxActiveCheckColor; -} - -/*-------------- - Indeterminate ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:before { - background: @checkboxIndeterminateBackground; - border-color: @checkboxIndeterminateBorderColor; -} -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:after { - opacity: @checkboxIndeterminateCheckOpacity; - color: @checkboxIndeterminateCheckColor; -} - -/*-------------- - Active Focus ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before, -.ui.checkbox input:checked:focus ~ .box:before, -.ui.checkbox input:checked:focus ~ label:before { - background: @checkboxActiveFocusBackground; - border-color: @checkboxActiveFocusBorderColor; -} -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after, -.ui.checkbox input:checked:focus ~ .box:after, -.ui.checkbox input:checked:focus ~ label:after { - color: @checkboxActiveFocusCheckColor; -} - - -/*-------------- - Read-Only ----------------*/ - -.ui.read-only.checkbox, -.ui.read-only.checkbox label { - cursor: default; -} - - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.checkbox .box:after, -.ui.disabled.checkbox label, -.ui.checkbox input[disabled] ~ .box:after, -.ui.checkbox input[disabled] ~ label { - cursor: default !important; - opacity: @disabledCheckboxOpacity; - color: @disabledCheckboxLabelColor; -} - -/*-------------- - Hidden ----------------*/ - -/* Initialized checkbox moves input below element - to prevent manually triggering */ -.ui.checkbox input.hidden { - z-index: -1; -} - -/* Selectable Label */ -.ui.checkbox input.hidden + label { - cursor: pointer; - user-select: none; -} - - -/******************************* - Types -*******************************/ - - -/*-------------- - Radio ----------------*/ - -.ui.radio.checkbox { - min-height: @radioSize; -} - -.ui.radio.checkbox .box, -.ui.radio.checkbox label { - padding-left: @radioLabelDistance; -} - -/* Box */ -.ui.radio.checkbox .box:before, -.ui.radio.checkbox label:before { - content: ''; - transform: none; - - width: @radioSize; - height: @radioSize; - border-radius: @circularRadius; - top: @radioTop; - left: @radioLeft; -} - -/* Bullet */ -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - border: none; - content: '' !important; - width: @radioSize; - height: @radioSize; - line-height: @radioSize; -} - -/* Radio Checkbox */ -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - top: @bulletTop; - left: @bulletLeft; - width: @radioSize; - height: @radioSize; - border-radius: @bulletRadius; - transform: scale(@bulletScale); - background-color: @bulletColor; -} - -/* Focus */ -.ui.radio.checkbox input:focus ~ .box:before, -.ui.radio.checkbox input:focus ~ label:before { - background-color: @radioFocusBackground; -} -.ui.radio.checkbox input:focus ~ .box:after, -.ui.radio.checkbox input:focus ~ label:after { - background-color: @radioFocusBulletColor; -} - -/* Indeterminate */ -.ui.radio.checkbox input:indeterminate ~ .box:after, -.ui.radio.checkbox input:indeterminate ~ label:after { - opacity: 0; -} - -/* Active */ -.ui.radio.checkbox input:checked ~ .box:before, -.ui.radio.checkbox input:checked ~ label:before { - background-color: @radioActiveBackground; -} -.ui.radio.checkbox input:checked ~ .box:after, -.ui.radio.checkbox input:checked ~ label:after { - background-color: @radioActiveBulletColor; -} - -/* Active Focus */ -.ui.radio.checkbox input:focus:checked ~ .box:before, -.ui.radio.checkbox input:focus:checked ~ label:before { - background-color: @radioActiveFocusBackground; -} -.ui.radio.checkbox input:focus:checked ~ .box:after, -.ui.radio.checkbox input:focus:checked ~ label:after { - background-color: @radioActiveFocusBulletColor; -} - -/*-------------- - Slider ----------------*/ - -.ui.slider.checkbox { - min-height: @sliderHeight; -} - -/* Input */ -.ui.slider.checkbox input { - width: @sliderWidth; - height: @sliderHeight; -} - -/* Label */ -.ui.slider.checkbox .box, -.ui.slider.checkbox label { - padding-left: @sliderLabelDistance; - line-height: @sliderLabelLineHeight; - color: @sliderOffLabelColor; -} - -/* Line */ -.ui.slider.checkbox .box:before, -.ui.slider.checkbox label:before { - display: block; - position: absolute; - content: ''; - transform: none; - border: none !important; - left: 0em; - z-index: 1; - - top: @sliderLineVerticalOffset; - - background-color: @sliderLineColor; - width: @sliderLineWidth; - height: @sliderLineHeight; - - transform: none; - border-radius: @sliderLineRadius; - transition: @sliderLineTransition; - -} - -/* Handle */ -.ui.slider.checkbox .box:after, -.ui.slider.checkbox label:after { - background: @handleBackground; - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - - border: none; - box-shadow: @handleBoxShadow; - width: @sliderHandleSize; - height: @sliderHandleSize; - top: @sliderHandleOffset; - left: 0em; - transform: none; - - border-radius: @circularRadius; - transition: @sliderHandleTransition; -} - -/* Focus */ -.ui.slider.checkbox input:focus ~ .box:before, -.ui.slider.checkbox input:focus ~ label:before { - background-color: @toggleFocusColor; - border: none; -} - -/* Hover */ -.ui.slider.checkbox .box:hover, -.ui.slider.checkbox label:hover { - color: @sliderHoverLabelColor; -} -.ui.slider.checkbox .box:hover::before, -.ui.slider.checkbox label:hover::before { - background: @sliderHoverLaneBackground; -} - -/* Active */ -.ui.slider.checkbox input:checked ~ .box, -.ui.slider.checkbox input:checked ~ label { - color: @sliderOnLabelColor !important; -} -.ui.slider.checkbox input:checked ~ .box:before, -.ui.slider.checkbox input:checked ~ label:before { - background-color: @sliderOnLineColor !important; -} -.ui.slider.checkbox input:checked ~ .box:after, -.ui.slider.checkbox input:checked ~ label:after { - left: @sliderTravelDistance; -} - -/* Active Focus */ -.ui.slider.checkbox input:focus:checked ~ .box, -.ui.slider.checkbox input:focus:checked ~ label { - color: @sliderOnFocusLabelColor !important; -} -.ui.slider.checkbox input:focus:checked ~ .box:before, -.ui.slider.checkbox input:focus:checked ~ label:before { - background-color: @sliderOnFocusLineColor !important; -} - - -/*-------------- - Toggle ----------------*/ - -.ui.toggle.checkbox { - min-height: @toggleHeight; -} - -/* Input */ -.ui.toggle.checkbox input { - width: @toggleWidth; - height: @toggleHeight; -} - -/* Label */ -.ui.toggle.checkbox .box, -.ui.toggle.checkbox label { - min-height: @toggleHandleSize; - padding-left: @toggleLabelDistance; - color: @toggleOffLabelColor; -} -.ui.toggle.checkbox label { - padding-top: @toggleLabelOffset; -} - -/* Switch */ -.ui.toggle.checkbox .box:before, -.ui.toggle.checkbox label:before { - display: block; - position: absolute; - content: ''; - z-index: 1; - transform: none; - border: none; - - top: @toggleLaneVerticalOffset; - - background: @toggleLaneBackground; - box-shadow: @toggleLaneBoxShadow; - width: @toggleLaneWidth; - height: @toggleLaneHeight; - border-radius: @toggleHandleRadius; -} - -/* Handle */ -.ui.toggle.checkbox .box:after, -.ui.toggle.checkbox label:after { - background: @handleBackground; - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - - border: none; - box-shadow: @handleBoxShadow; - width: @toggleHandleSize; - height: @toggleHandleSize; - top: @toggleHandleOffset; - left: 0em; - - border-radius: @circularRadius; - transition: @toggleHandleTransition; -} - -.ui.toggle.checkbox input ~ .box:after, -.ui.toggle.checkbox input ~ label:after { - left: @toggleOffOffset; - box-shadow: @toggleOffHandleBoxShadow; -} - -/* Focus */ -.ui.toggle.checkbox input:focus ~ .box:before, -.ui.toggle.checkbox input:focus ~ label:before { - background-color: @toggleFocusColor; - border: none; -} - -/* Hover */ -.ui.toggle.checkbox .box:hover::before, -.ui.toggle.checkbox label:hover::before { - background-color: @toggleHoverColor; - border: none; -} - -/* Active */ -.ui.toggle.checkbox input:checked ~ .box, -.ui.toggle.checkbox input:checked ~ label { - color: @toggleOnLabelColor !important; -} -.ui.toggle.checkbox input:checked ~ .box:before, -.ui.toggle.checkbox input:checked ~ label:before { - background-color: @toggleOnLaneColor !important; -} -.ui.toggle.checkbox input:checked ~ .box:after, -.ui.toggle.checkbox input:checked ~ label:after { - left: @toggleOnOffset; - box-shadow: @toggleOnHandleBoxShadow; -} - - -/* Active Focus */ -.ui.toggle.checkbox input:focus:checked ~ .box, -.ui.toggle.checkbox input:focus:checked ~ label { - color: @toggleOnFocusLabelColor !important; -} -.ui.toggle.checkbox input:focus:checked ~ .box:before, -.ui.toggle.checkbox input:focus:checked ~ label:before { - background-color: @toggleOnFocusLaneColor !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.checkbox .box, -.ui.fitted.checkbox label { - padding-left: 0em !important; -} - -.ui.fitted.toggle.checkbox, -.ui.fitted.toggle.checkbox { - width: @toggleWidth; -} - -.ui.fitted.slider.checkbox, -.ui.fitted.slider.checkbox { - width: @sliderWidth; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/dimmer.less b/src/definitions/modules/dimmer.less deleted file mode 100644 index fb0ce54..0000000 --- a/src/definitions/modules/dimmer.less +++ /dev/null @@ -1,231 +0,0 @@ -/*! - * # Semantic UI - Dimmer - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'dimmer'; - -@import (multiple) '../../theme.config'; - -/******************************* - Dimmer -*******************************/ - -.dimmable:not(body) { - position: @dimmablePosition; -} - -.ui.dimmer { - display: none; - position: @dimmerPosition; - top: 0em !important; - left: 0em !important; - - width: 100%; - height: 100%; - - text-align: @textAlign; - vertical-align: @verticalAlign; - padding: @padding; - - background-color: @backgroundColor; - opacity: @hiddenOpacity; - line-height: @lineHeight; - - animation-fill-mode: both; - animation-duration: @duration; - transition: @transition; - - flex-direction: column; - align-items: center; - justify-content: center; - - user-select: none; - will-change: opacity; - z-index: @zIndex; -} - -/* Dimmer Content */ -.ui.dimmer > .content { - user-select: text; - color: @textColor; -} - - -/* Loose Coupling */ -.ui.segment > .ui.dimmer { - border-radius: inherit !important; -} - -/* Scrollbars */ -.addScrollbars() when (@useCustomScrollbars) { - .ui.dimmer:not(.inverted)::-webkit-scrollbar-track { - background: @trackInvertedBackground; - } - .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb { - background: @thumbInvertedBackground; - } - .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive { - background: @thumbInvertedInactiveBackground; - } - .ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover { - background: @thumbInvertedHoverBackground; - } -} -.addScrollbars(); - -/******************************* - States -*******************************/ - -/* Animating */ -.animating.dimmable:not(body), -.dimmed.dimmable:not(body) { - overflow: @overflow; -} - -/* Animating / Active / Visible */ -.dimmed.dimmable > .ui.animating.dimmer, -.dimmed.dimmable > .ui.visible.dimmer, -.ui.active.dimmer { - display: flex; - opacity: @visibleOpacity; -} - -/* Disabled */ -.ui.disabled.dimmer { - width: 0 !important; - height: 0 !important; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Legacy ----------------*/ - -/* Animating / Active / Visible */ -.dimmed.dimmable > .ui.animating.legacy.dimmer, -.dimmed.dimmable > .ui.visible.legacy.dimmer, -.ui.active.legacy.dimmer { - display: block; -} - -/*-------------- - Alignment ----------------*/ - -.ui[class*="top aligned"].dimmer { - justify-content: flex-start; -} -.ui[class*="bottom aligned"].dimmer { - justify-content: flex-end; -} - -/*-------------- - Page ----------------*/ - -.ui.page.dimmer { - position: @pageDimmerPosition; - transform-style: @transformStyle; - perspective: @perspective; - transform-origin: center center; -} - -body.animating.in.dimmable, -body.dimmed.dimmable { - overflow: hidden; -} - -body.dimmable > .dimmer { - position: fixed; -} - -/*-------------- - Blurring ----------------*/ - -.blurring.dimmable > :not(.dimmer) { - filter: @blurredStartFilter; - transition: @blurredTransition; -} -.blurring.dimmed.dimmable > :not(.dimmer) { - filter: @blurredEndFilter; -} - -/* Dimmer Color */ -.blurring.dimmable > .dimmer { - background-color: @blurredBackgroundColor; -} -.blurring.dimmable > .inverted.dimmer { - background-color: @blurredInvertedBackgroundColor; -} - -/*-------------- - Aligned ----------------*/ - -.ui.dimmer > .top.aligned.content > * { - vertical-align: top; -} -.ui.dimmer > .bottom.aligned.content > * { - vertical-align: bottom; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.dimmer { - background-color: @invertedBackgroundColor; -} -.ui.inverted.dimmer > .content > * { - color: @invertedTextColor; -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ -.ui.simple.dimmer { - display: block; - overflow: hidden; - opacity: 1; - width: 0%; - height: 0%; - z-index: -100; - background-color: @simpleStartBackgroundColor; -} -.dimmed.dimmable > .ui.simple.dimmer { - overflow: visible; - opacity: 1; - width: 100%; - height: 100%; - background-color: @simpleEndBackgroundColor; - z-index: @simpleZIndex; -} - -.ui.simple.inverted.dimmer { - background-color: @simpleInvertedStartBackgroundColor; -} -.dimmed.dimmable > .ui.simple.inverted.dimmer { - background-color: @simpleInvertedEndBackgroundColor; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less deleted file mode 100644 index ce30590..0000000 --- a/src/definitions/modules/dropdown.less +++ /dev/null @@ -1,1421 +0,0 @@ -/*! - * # Semantic UI - Dropdown - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'dropdown'; - -@import (multiple) '../../theme.config'; - -/******************************* - Dropdown -*******************************/ - -.ui.dropdown { - cursor: pointer; - position: relative; - display: inline-block; - text-align: left; - transition: @transition; - outline: none; - - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/******************************* - Content -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.dropdown .menu { - cursor: auto; - position: absolute; - display: none; - outline: none; - top: 100%; - min-width: max-content; - transition: @menuTransition; - - margin: @menuMargin; - padding: @menuPadding; - background: @menuBackground; - - font-size: @relativeMedium; - text-shadow: none; - text-align: @menuTextAlign; - - box-shadow: @menuBoxShadow; - border: @menuBorder; - border-radius: @menuBorderRadius; - transition: @menuTransition; - z-index: @menuZIndex; - will-change: transform, opacity; -} - -.ui.dropdown .menu > * { - white-space: nowrap; -} - - -/*-------------- - Hidden Input ----------------*/ - -.ui.dropdown > input:not(.search):first-child, -.ui.dropdown > select { - display: none !important; -} - -/*-------------- - Dropdown Icon ----------------*/ - -.ui.dropdown > .dropdown.icon { - position: relative; - width: auto; - font-size: @dropdownIconSize; - margin: @dropdownIconMargin; -} -.ui.dropdown .menu > .item .dropdown.icon { - width: auto; - float: @itemDropdownIconFloat; - margin: @itemDropdownIconMargin; -} -.ui.dropdown .menu > .item .dropdown.icon + .text { - margin-right: @itemDropdownIconDistance; -} - - -/*-------------- - Text ----------------*/ - -.ui.dropdown > .text { - display: inline-block; - transition: @textTransition; -} - -/*-------------- - Menu Item ----------------*/ - -.ui.dropdown .menu > .item { - position: relative; - cursor: pointer; - display: block; - border: @itemBorder; - height: @itemHeight; - text-align: @itemTextAlign; - - border-top: @itemDivider; - line-height: @itemLineHeight; - font-size: @itemFontSize; - color: @itemColor; - - padding: @itemPadding !important; - font-size: @itemFontSize; - text-transform: @itemTextTransform; - font-weight: @itemFontWeight; - box-shadow: @itemBoxShadow; - -webkit-touch-callout: none; -} -.ui.dropdown .menu > .item:first-child { - border-top-width: 0px; -} - -/*-------------- - Floated Content ----------------*/ - -.ui.dropdown > .text > [class*="right floated"], -.ui.dropdown .menu .item > [class*="right floated"] { - float: right !important; - margin-right: 0em !important; - margin-left: @floatedDistance !important; -} -.ui.dropdown > .text > [class*="left floated"], -.ui.dropdown .menu .item > [class*="left floated"] { - float: left !important; - margin-left: 0em !important; - margin-right: @floatedDistance !important; -} - -.ui.dropdown .menu .item > .icon.floated, -.ui.dropdown .menu .item > .flag.floated, -.ui.dropdown .menu .item > .image.floated, -.ui.dropdown .menu .item > img.floated { - margin-top: @itemLineHeightOffset; -} - - -/*-------------- - Menu Divider ----------------*/ - -.ui.dropdown .menu > .header { - margin: @menuHeaderMargin; - padding: @menuHeaderPadding; - color: @menuHeaderColor; - font-size: @menuHeaderFontSize; - font-weight: @menuHeaderFontWeight; - text-transform: @menuHeaderTextTransform; -} - -.ui.dropdown .menu > .divider { - border-top: @menuDividerBorder; - height: 0em; - margin: @menuDividerMargin; -} - -.ui.dropdown.dropdown .menu > .input { - width: auto; - display: flex; - margin: @menuInputMargin; - min-width: @menuInputMinWidth; -} -.ui.dropdown .menu > .header + .input { - margin-top: 0em; -} -.ui.dropdown .menu > .input:not(.transparent) input { - padding: @menuInputPadding; -} -.ui.dropdown .menu > .input:not(.transparent) .button, -.ui.dropdown .menu > .input:not(.transparent) .icon, -.ui.dropdown .menu > .input:not(.transparent) .label { - padding-top: @menuInputVerticalPadding; - padding-bottom: @menuInputVerticalPadding; -} - -/*----------------- - Item Description --------------------*/ - -.ui.dropdown > .text > .description, -.ui.dropdown .menu > .item > .description { - float: @itemDescriptionFloat; - margin: @itemDescriptionMargin; - color: @itemDescriptionColor; -} - -/*----------------- - Message --------------------*/ - -.ui.dropdown .menu > .message { - padding: @messagePadding; - font-weight: @messageFontWeight; -} -.ui.dropdown .menu > .message:not(.ui) { - color: @messageColor; -} - -/*-------------- - Sub Menu ----------------*/ - -.ui.dropdown .menu .menu { - top: @subMenuTop !important; - left: @subMenuLeft; - right: @subMenuRight; - margin: @subMenuMargin !important; - border-radius: @subMenuBorderRadius !important; - z-index: @subMenuZIndex !important; -} - -/* Hide Arrow */ -.ui.dropdown .menu .menu:after { - display: none; -} - -/*-------------- - Sub Elements ----------------*/ - -/* Icons / Flags / Labels / Image */ -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image { - margin-top: @textLineHeightOffset; -} -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-top: @itemLineHeightOffset; -} - -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-left: 0em; - float: @itemElementFloat; - margin-right: @itemElementDistance; -} - -/*-------------- - Image ----------------*/ - -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - display: inline-block; - vertical-align: top; - width: auto; - margin-top: @menuImageVerticalMargin; - margin-bottom: @menuImageVerticalMargin; - max-height: @menuImageMaxHeight; -} - - -/******************************* - Coupling -*******************************/ - - -/*-------------- - Menu ----------------*/ - -/* Remove Menu Item Divider */ -.ui.dropdown .ui.menu > .item:before, -.ui.menu .ui.dropdown .menu > .item:before { - display: none; -} - -/* Prevent Menu Item Border */ -.ui.menu .ui.dropdown .menu .active.item { - border-left: none; -} - -/* Automatically float dropdown menu right on last menu item */ -.ui.menu .right.menu .dropdown:last-child .menu, -.ui.menu .right.dropdown.item .menu, -.ui.buttons > .ui.dropdown:last-child .menu { - left: auto; - right: 0em; -} - -/*-------------- - Label ----------------*/ - -/* Dropdown Menu */ -.ui.label.dropdown .menu { - min-width: 100%; -} - -/*-------------- - Button ----------------*/ - -/* No Margin On Icon Button */ -.ui.dropdown.icon.button > .dropdown.icon { - margin: 0em; -} -.ui.button.dropdown .menu { - min-width: 100%; -} - - - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -/* Displays like a select box */ -.ui.selection.dropdown { - cursor: pointer; - word-wrap: break-word; - line-height: 1em; - white-space: normal; - transform: rotateZ(0deg); - - min-width: @selectionMinWidth; - min-height: @selectionMinHeight; - - background: @selectionBackground; - display: @selectionDisplay; - padding: @selectionPadding; - color: @selectionTextColor; - box-shadow: @selectionBoxShadow; - border: @selectionBorder; - border-radius: @selectionBorderRadius; - transition: @selectionTransition; -} -.ui.selection.dropdown.visible, -.ui.selection.dropdown.active { - z-index: @selectionZIndex; -} - -select.ui.dropdown { - height: @selectHeight; - padding: @selectPadding; - border: @selectBorder; - visibility: @selectVisibility; -} -.ui.selection.dropdown > .search.icon, -.ui.selection.dropdown > .delete.icon, -.ui.selection.dropdown > .dropdown.icon { - cursor: pointer; - position: absolute; - width: auto; - height: auto; - line-height: @searchSelectionLineHeight; - top: @selectionVerticalPadding; - right: @selectionHorizontalPadding; - z-index: @selectionIconZIndex; - margin: @selectionIconMargin; - padding: @selectionIconPadding; - opacity: @selectionIconOpacity; - transition: @selectionIconTransition; -} - -/* Compact */ -.ui.compact.selection.dropdown { - min-width: 0px; -} - -/* Selection Menu */ -.ui.selection.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - border-top-width: 0px !important; - width: auto; - outline: none; - margin: 0px -@menuBorderWidth; - min-width: @menuMinWidth; - width: @menuMinWidth; - - border-radius: @selectionMenuBorderRadius; - box-shadow: @selectionMenuBoxShadow; - transition: @selectionMenuTransition; -} -.ui.selection.dropdown .menu:after, -.ui.selection.dropdown .menu:before { - display: none; -} - -/*-------------- - Message ----------------*/ - -.ui.selection.dropdown .menu > .message { - padding: @selectionMessagePadding; -} - -@media only screen and (max-width : @largestMobileScreen) { - .ui.selection.dropdown .menu { - max-height: @selectionMobileMaxMenuHeight; - } -} -@media only screen and (min-width: @tabletBreakpoint) { - .ui.selection.dropdown .menu { - max-height: @selectionTabletMaxMenuHeight; - } -} -@media only screen and (min-width: @computerBreakpoint) { - .ui.selection.dropdown .menu { - max-height: @selectionComputerMaxMenuHeight; - } -} -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui.selection.dropdown .menu { - max-height: @selectionWidescreenMaxMenuHeight; - } -} - -/* Menu Item */ -.ui.selection.dropdown .menu > .item { - border-top: @selectionItemDivider; - padding: @selectionItemPadding !important; - white-space: normal; - word-wrap: normal; -} - -/* User Item */ -.ui.selection.dropdown .menu > .hidden.addition.item { - display: none; -} - -/* Hover */ -.ui.selection.dropdown:hover { - border-color: @selectionHoverBorderColor; - box-shadow: @selectionHoverBoxShadow; -} - -/* Active */ -.ui.selection.active.dropdown { - border-color: @selectionVisibleBorderColor; - box-shadow: @selectionVisibleBoxShadow; -} -.ui.selection.active.dropdown .menu { - border-color: @selectionVisibleBorderColor; - box-shadow: @selectionVisibleMenuBoxShadow; -} - -/* Focus */ -.ui.selection.dropdown:focus { - border-color: @selectionFocusBorderColor; - box-shadow: @selectionFocusBoxShadow; -} -.ui.selection.dropdown:focus .menu { - border-color: @selectionFocusBorderColor; - box-shadow: @selectionFocusMenuBoxShadow; -} - -/* Visible */ -.ui.selection.visible.dropdown > .text:not(.default) { - font-weight: @selectionVisibleTextFontWeight; - color: @selectionVisibleTextColor; -} - -/* Visible Hover */ -.ui.selection.active.dropdown:hover { - border-color: @selectionActiveHoverBorderColor; - box-shadow: @selectionActiveHoverBoxShadow; -} -.ui.selection.active.dropdown:hover .menu { - border-color: @selectionActiveHoverBorderColor; - box-shadow: @selectionActiveHoverMenuBoxShadow; -} - -/* Dropdown Icon */ -.ui.active.selection.dropdown > .dropdown.icon, -.ui.visible.selection.dropdown > .dropdown.icon { - opacity: @selectionVisibleIconOpacity; - z-index: 3; -} - -/* Connecting Border */ -.ui.active.selection.dropdown { - border-bottom-left-radius: @selectionVisibleConnectingBorder !important; - border-bottom-right-radius: @selectionVisibleConnectingBorder !important; -} - -/* Empty Connecting Border */ -.ui.active.empty.selection.dropdown { - border-radius: @selectionBorderRadius !important; - box-shadow: @selectionBoxShadow !important; -} -.ui.active.empty.selection.dropdown .menu { - border: none !important; - box-shadow: none !important; -} - -/*-------------- - Searchable ----------------*/ - -/* Search Selection */ -.ui.search.dropdown { - min-width: @searchMinWidth; -} - -/* Search Dropdown */ -.ui.search.dropdown > input.search { - background: none transparent !important; - border: none !important; - box-shadow: none !important; - cursor: text; - top: 0em; - left: @textCursorSpacing; - width: 100%; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - padding: inherit; -} - -/* Text Layering */ -.ui.search.dropdown > input.search { - position: absolute; - z-index: 2; -} -.ui.search.dropdown > .text { - cursor: text; - position: relative; - left: @textCursorSpacing; - z-index: 3; -} - -/* Search Selection */ -.ui.search.selection.dropdown > input.search { - line-height: @searchSelectionLineHeight; - padding: @searchSelectionInputPadding; -} - -/* Used to size multi select input to character width */ -.ui.search.selection.dropdown > span.sizer { - line-height: @searchSelectionLineHeight; - padding: @searchSelectionInputPadding; - display: none; - white-space: pre; -} - -/* Active/Visible Search */ -.ui.search.dropdown.active > input.search, -.ui.search.dropdown.visible > input.search { - cursor: auto; -} -.ui.search.dropdown.active > .text, -.ui.search.dropdown.visible > .text { - pointer-events: none; -} - -/* Filtered Text */ -.ui.active.search.dropdown input.search:focus + .text .icon, -.ui.active.search.dropdown input.search:focus + .text .flag { - opacity: @selectionTextUnderlayIconOpacity; -} -.ui.active.search.dropdown input.search:focus + .text { - color: @selectionTextUnderlayColor !important; -} - -/* Search Menu */ -.ui.search.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; -} -@media only screen and (max-width : @largestMobileScreen) { - .ui.search.dropdown .menu { - max-height: @searchMobileMaxMenuHeight; - } -} -@media only screen and (min-width: @tabletBreakpoint) { - .ui.search.dropdown .menu { - max-height: @searchTabletMaxMenuHeight; - } -} -@media only screen and (min-width: @computerBreakpoint) { - .ui.search.dropdown .menu { - max-height: @searchComputerMaxMenuHeight; - } -} -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui.search.dropdown .menu { - max-height: @searchWidescreenMaxMenuHeight; - } -} - -/*-------------- - Multiple ----------------*/ - -/* Multiple Selection */ -.ui.multiple.dropdown { - padding: @multipleSelectionPadding; -} -.ui.multiple.dropdown .menu { - cursor: auto; -} - -/* Multiple Search Selection */ -.ui.multiple.search.dropdown, -.ui.multiple.search.dropdown > input.search { - cursor: text; -} - -/* Selection Label */ -.ui.multiple.dropdown > .label { - user-select: none; - display: inline-block; - vertical-align: top; - white-space: normal; - font-size: @labelSize; - padding: @labelPadding; - margin: @labelMargin; - box-shadow: @labelBoxShadow; -} - -/* Dropdown Icon */ -.ui.multiple.dropdown .dropdown.icon { - margin: @multipleSelectionDropdownIconMargin; - padding: @multipleSelectionDropdownIconPadding; -} - -/* Text */ -.ui.multiple.dropdown > .text { - position: static; - padding: 0; - max-width: 100%; - margin: @multipleSelectionChildMargin; - line-height: @multipleSelectionChildLineHeight; -} -.ui.multiple.dropdown > .label ~ input.search { - margin-left: @multipleSelectionSearchAfterLabelDistance !important; -} -.ui.multiple.dropdown > .label ~ .text { - display: none; -} - -/*----------------- - Multiple Search ------------------*/ - -/* Prompt Text */ -.ui.multiple.search.dropdown > .text { - display: inline-block; - position: absolute; - top: 0; - left: 0; - padding: inherit; - margin: @multipleSelectionChildMargin; - line-height: @multipleSelectionChildLineHeight; -} - -.ui.multiple.search.dropdown > .label ~ .text { - display: none; -} - -/* Search */ -.ui.multiple.search.dropdown > input.search { - position: static; - padding: 0; - max-width: 100%; - margin: @multipleSelectionChildMargin; - width: @multipleSelectionSearchStartWidth; - line-height: @multipleSelectionChildLineHeight; -} - - -/*-------------- - Inline ----------------*/ - -.ui.inline.dropdown { - cursor: pointer; - display: inline-block; - color: @inlineTextColor; -} -.ui.inline.dropdown .dropdown.icon { - margin: @inlineIconMargin; - vertical-align: baseline; -} -.ui.inline.dropdown > .text { - font-weight: @inlineTextFontWeight; -} -.ui.inline.dropdown .menu { - cursor: auto; - margin-top: @inlineMenuDistance; - border-radius: @inlineMenuBorderRadius; -} - - -/******************************* - States -*******************************/ - - -/*-------------------- - Active -----------------------*/ - -/* Menu Item Active */ -.ui.dropdown .menu .active.item { - background: @activeItemBackground; - font-weight: @activeItemFontWeight; - color: @activeItemColor; - box-shadow: @activeItemBoxShadow; - z-index: @activeItemZIndex; -} - - -/*-------------------- - Hover -----------------------*/ - -/* Menu Item Hover */ -.ui.dropdown .menu > .item:hover { - background: @hoveredItemBackground; - color: @hoveredItemColor; - z-index: @hoveredZIndex; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.dropdown > i.icon { - height: @relative14px !important; -} -.ui.loading.selection.dropdown > i.icon { - padding: @relative21px @relative18px !important; -} -.ui.loading.dropdown > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @loaderFillColor; -} -.ui.loading.dropdown > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - box-shadow: 0px 0px 0px 1px transparent; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: dropdown-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor transparent transparent; - border-style: solid; - border-width: @loaderLineWidth; -} - -/* Coupling */ -.ui.loading.dropdown.button > i.icon:before, -.ui.loading.dropdown.button > i.icon:after { - display: none; -} - -@keyframes dropdown-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - - -/*-------------------- - Default Text -----------------------*/ - -.ui.dropdown:not(.button) > .default.text, -.ui.default.dropdown:not(.button) > .text { - color: @defaultTextColor; -} -.ui.dropdown:not(.button) > input:focus ~ .default.text, -.ui.default.dropdown:not(.button) > input:focus ~ .text { - color: @defaultTextFocusColor; -} -/*-------------------- - Loading -----------------------*/ - -.ui.loading.dropdown > .text { - transition: none; -} - -/* Used To Check Position */ -.ui.dropdown .loading.menu { - display: block; - visibility: hidden; - z-index: @loadingZIndex; -} -.ui.dropdown > .loading.menu { - left: 0px !important; - right: auto !important; -} -.ui.dropdown > .menu .loading.menu { - left: 100% !important; - right: auto !important; -} - -/*-------------------- - Keyboard Select -----------------------*/ - -/* Selected Item */ -.ui.dropdown.selected, -.ui.dropdown .menu .selected.item { - background: @selectedBackground; - color: @selectedColor; -} - - -/*-------------------- - Search Filtered -----------------------*/ - -/* Filtered Item */ -.ui.dropdown > .filtered.text { - visibility: hidden; -} -.ui.dropdown .filtered.item { - display: none !important; -} - - -/*-------------------- - Error -----------------------*/ - -.ui.dropdown.error, -.ui.dropdown.error > .text, -.ui.dropdown.error > .default.text { - color: @errorTextColor; -} - -.ui.selection.dropdown.error { - background: @errorBackgroundColor; - border-color: @errorBorderColor; -} -.ui.selection.dropdown.error:hover { - border-color: @errorBorderColor; -} - -.ui.dropdown.error > .menu, -.ui.dropdown.error > .menu .menu { - border-color: @errorBorderColor; -} -.ui.dropdown.error > .menu > .item { - color: @errorItemTextColor; -} -.ui.multiple.selection.error.dropdown > .label { - border-color: @errorBorderColor; -} - -/* Item Hover */ -.ui.dropdown.error > .menu > .item:hover { - background-color: @errorItemHoverBackground; -} - -/* Item Active */ -.ui.dropdown.error > .menu .active.item { - background-color: @errorItemActiveBackground; -} - - -/*-------------------- - Clear -----------------------*/ - -.ui.dropdown > .clear.dropdown.icon { - opacity: @clearableIconOpacity; - transition: opacity @defaultDuration @defaultEasing; -} -.ui.dropdown > .clear.dropdown.icon:hover { - opacity: @clearableIconActiveOpacity; -} - - -/*-------------------- - Disabled -----------------------*/ - -/* Disabled */ -.ui.disabled.dropdown, -.ui.dropdown .menu > .disabled.item { - cursor: default; - pointer-events: none; - opacity: @disabledOpacity; -} - - -/******************************* - Variations -*******************************/ - -/*-------------- - Direction ----------------*/ - -/* Flyout Direction */ -.ui.dropdown .menu { - left: 0px; -} - - -/* Default Side (Right) */ -.ui.dropdown .right.menu > .menu, -.ui.dropdown .menu .right.menu { - left: 100% !important; - right: auto !important; - border-radius: @subMenuBorderRadius !important; -} - -/* Leftward Opening Menu */ -.ui.dropdown > .left.menu { - left: auto !important; - right: 0px !important; -} - -.ui.dropdown > .left.menu .menu, -.ui.dropdown .menu .left.menu { - left: auto; - right: 100%; - margin: @leftSubMenuMargin !important; - border-radius: @leftSubMenuBorderRadius !important; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: @leftMenuDropdownIconFloat; - margin: @leftMenuDropdownIconMargin; -} -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: @leftMenuDropdownIconFloat; - margin: @leftMenuDropdownIconMargin; -} -.ui.dropdown .item .left.dropdown.icon + .text, -.ui.dropdown .left.menu .item .dropdown.icon + .text { - margin-left: @itemDropdownIconDistance; - margin-right: 0em; -} - - -/*-------------- - Upward ----------------*/ - -/* Upward Main Menu */ -.ui.upward.dropdown > .menu { - top: auto; - bottom: 100%; - box-shadow: @upwardMenuBoxShadow; - border-radius: @upwardMenuBorderRadius; -} - -/* Upward Sub Menu */ -.ui.dropdown .upward.menu { - top: auto !important; - bottom: 0 !important; -} - -/* Active Upward */ -.ui.simple.upward.active.dropdown, -.ui.simple.upward.dropdown:hover { - border-radius: @borderRadius @borderRadius 0em 0em !important; -} -.ui.upward.dropdown.button:not(.pointing):not(.floating).active { - border-radius: @borderRadius @borderRadius 0em 0em; -} - -/* Selection */ -.ui.upward.selection.dropdown .menu { - border-top-width: @menuBorderWidth !important; - border-bottom-width: 0px !important; - box-shadow: @upwardSelectionMenuBoxShadow; -} -.ui.upward.selection.dropdown:hover { - box-shadow: @upwardSelectionHoverBoxShadow; -} - -/* Active Upward */ -.ui.active.upward.selection.dropdown { - border-radius: @upwardSelectionVisibleBorderRadius !important; -} - -/* Visible Upward */ -.ui.upward.selection.dropdown.visible { - box-shadow: @upwardSelectionVisibleBoxShadow; - border-radius: @upwardSelectionVisibleBorderRadius !important; -} - -/* Visible Hover Upward */ -.ui.upward.active.selection.dropdown:hover { - box-shadow: @upwardSelectionActiveHoverBoxShadow; -} -.ui.upward.active.selection.dropdown:hover .menu { - box-shadow: @upwardSelectionActiveHoverMenuBoxShadow; -} - -/*-------------- - Simple ----------------*/ - -/* Selection Menu */ -.ui.scrolling.dropdown .menu, -.ui.dropdown .scrolling.menu { - overflow-x: hidden; - overflow-y: auto; -} - -.ui.scrolling.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - min-width: 100% !important; - width: auto !important; -} - -.ui.dropdown .scrolling.menu { - position: static; - overflow-y: auto; - border: none; - box-shadow: none !important; - border-radius: 0 !important; - margin: 0 !important; - min-width: 100% !important; - width: auto !important; - border-top: @menuBorder; -} -.ui.scrolling.dropdown .menu .item.item.item, -.ui.dropdown .scrolling.menu > .item.item.item { - border-top: @scrollingMenuItemBorder; -} -.ui.scrolling.dropdown .menu .item:first-child, -.ui.dropdown .scrolling.menu .item:first-child { - border-top: none; -} -.ui.dropdown > .animating.menu .scrolling.menu, -.ui.dropdown > .visible.menu .scrolling.menu { - display: block; -} - -/* Scrollbar in IE */ -@media all and (-ms-high-contrast:none) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - min-width: calc(100% - @scrollbarWidth); - } -} -@media only screen and (max-width : @largestMobileScreen) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: @scrollingMobileMaxMenuHeight; - } -} -@media only screen and (min-width: @tabletBreakpoint) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: @scrollingTabletMaxMenuHeight; - } -} -@media only screen and (min-width: @computerBreakpoint) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: @scrollingComputerMaxMenuHeight; - } -} -@media only screen and (min-width: @widescreenMonitorBreakpoint) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: @scrollingWidescreenMaxMenuHeight; - } -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dropdown .menu:before, -.ui.simple.dropdown .menu:after { - display: none; -} -.ui.simple.dropdown .menu { - position: absolute; - display: block; - overflow: hidden; - top: -9999px !important; - opacity: 0; - width: 0; - height: 0; - transition: @simpleTransition; -} - -.ui.simple.active.dropdown, -.ui.simple.dropdown:hover { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -.ui.simple.active.dropdown > .menu, -.ui.simple.dropdown:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 100% !important; - opacity: 1; -} -.ui.simple.dropdown > .menu > .item:active > .menu, -.ui.simple.dropdown:hover > .menu > .item:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 0% !important; - left: 100% !important; - opacity: 1; -} -.ui.simple.disabled.dropdown:hover .menu { - display: none; - height: 0px; - width: 0px; - overflow: hidden; -} - -/* Visible */ -.ui.simple.visible.dropdown > .menu { - display: block; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.dropdown { - display: block; - width: 100%; - min-width: 0em; -} -.ui.fluid.dropdown > .dropdown.icon { - float: right; -} - - -/*-------------- - Floating ----------------*/ - -.ui.floating.dropdown .menu { - left: 0; - right: auto; - box-shadow: @floatingMenuBoxShadow !important; - border-radius: @floatingMenuBorderRadius !important; -} -.ui.floating.dropdown > .menu { - margin-top: @floatingMenuDistance !important; - border-radius: @floatingMenuBorderRadius !important; -} - -/*-------------- - Pointing ----------------*/ - -.ui.pointing.dropdown > .menu { - top: 100%; - margin-top: @pointingMenuDistance; - border-radius: @pointingMenuBorderRadius; -} - -.ui.pointing.dropdown > .menu:after { - display: block; - position: absolute; - pointer-events: none; - content: ''; - visibility: visible; - transform: rotate(45deg); - - width: @pointingArrowSize; - height: @pointingArrowSize; - box-shadow: @pointingArrowBoxShadow; - background: @pointingArrowBackground; - z-index: @pointingArrowZIndex; -} - -.ui.pointing.dropdown > .menu:after { - top: @pointingArrowOffset; - left: 50%; - margin: 0em 0em 0em @pointingArrowOffset; -} - -/* Top Left Pointing */ -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.top.left.pointing.dropdown > .menu:after { - top: @pointingArrowOffset; - left: @pointingArrowDistanceFromEdge; - right: auto; - margin: 0em; - transform: rotate(45deg); -} -/* Top Right Pointing */ -.ui.top.right.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - right: 0%; - left: auto; - margin: @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.top.pointing.dropdown > .left.menu:after, -.ui.top.right.pointing.dropdown > .menu:after { - top: @pointingArrowOffset; - left: auto !important; - right: @pointingArrowDistanceFromEdge !important; - margin: 0em; - transform: rotate(45deg); -} - -/* Left Pointing */ -.ui.left.pointing.dropdown > .menu { - top: 0%; - left: 100%; - right: auto; - margin: 0em 0em 0em @pointingArrowDistanceFromEdge; -} -.ui.left.pointing.dropdown > .menu:after { - top: 1em; - left: @pointingArrowOffset; - margin: 0em 0em 0em 0em; - transform: rotate(-45deg); -} -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu { - left: auto !important; - right: 100% !important; - margin: 0em @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after { - top: 1em; - left: auto; - right: @pointingArrowOffset; - margin: 0em 0em 0em 0em; - transform: rotate(135deg); -} - - -/* Right Pointing */ -.ui.right.pointing.dropdown > .menu { - top: 0%; - left: auto; - right: 100%; - margin: 0em @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.right.pointing.dropdown > .menu:after { - top: 1em; - left: auto; - right: @pointingArrowOffset; - margin: 0em 0em 0em 0em; - transform: rotate(135deg); -} - -/* Bottom Pointing */ -.ui.bottom.pointing.dropdown > .menu { - top: auto; - bottom: 100%; - left: 0%; - right: auto; - margin: 0em 0em @pointingArrowDistanceFromEdge ; -} -.ui.bottom.pointing.dropdown > .menu:after { - top: auto; - bottom: @pointingArrowOffset; - right: auto; - margin: 0em; - transform: rotate(-135deg); -} -/* Reverse Sub-Menu Direction */ -.ui.bottom.pointing.dropdown > .menu .menu { - top: auto !important; - bottom: 0px !important; -} - -/* Bottom Left */ -.ui.bottom.left.pointing.dropdown > .menu { - left: 0%; - right: auto; -} -.ui.bottom.left.pointing.dropdown > .menu:after { - left: @pointingArrowDistanceFromEdge; - right: auto; -} - -/* Bottom Right */ -.ui.bottom.right.pointing.dropdown > .menu { - right: 0%; - left: auto; -} -.ui.bottom.right.pointing.dropdown > .menu:after { - left: auto; - right: @pointingArrowDistanceFromEdge; -} - -/* Upward pointing */ -.ui.pointing.upward.dropdown .menu, -.ui.top.pointing.upward.dropdown .menu { - top: auto !important; - bottom: 100% !important; - margin: 0em 0em @pointingMenuDistance; - border-radius: @pointingUpwardMenuBorderRadius; -} -.ui.pointing.upward.dropdown .menu:after, -.ui.top.pointing.upward.dropdown .menu:after { - top: 100% !important; - bottom: auto !important; - box-shadow: @pointingUpwardArrowBoxShadow; - margin: @pointingArrowOffset 0em 0em; -} - -/* Right Pointing Upward */ -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em @pointingArrowDistanceFromEdge 0em 0em; -} -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em @pointingArrowDistanceFromEdge 0em; - box-shadow: @pointingArrowBoxShadow; -} - - -/* Left Pointing Upward */ -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 0em @pointingArrowDistanceFromEdge; -} -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em @pointingArrowDistanceFromEdge 0em; - box-shadow: @pointingArrowBoxShadow; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/embed.less b/src/definitions/modules/embed.less deleted file mode 100644 index b44d4e6..0000000 --- a/src/definitions/modules/embed.less +++ /dev/null @@ -1,163 +0,0 @@ -/*! - * # Semantic UI - Video - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'embed'; - -@import (multiple) '../../theme.config'; - -/******************************* - Types -*******************************/ - -.ui.embed { - position: relative; - position: relative; - max-width: 100%; - height: 0px; - overflow: hidden; - background: @background; - padding-bottom: @widescreenRatio; -} - -/*----------------- - Embedded Content -------------------*/ - -.ui.embed iframe, -.ui.embed embed, -.ui.embed object { - position: absolute; - border: none; - width: 100%; - height: 100%; - top: 0px; - left: 0px; - margin: 0em; - padding: 0em; -} - -/*----------------- - Embed -------------------*/ - -.ui.embed > .embed { - display: none; -} - -/*-------------- - Placeholder ----------------*/ - -.ui.embed > .placeholder { - position: absolute; - cursor: pointer; - top: 0px; - left: 0px; - display: block; - width: 100%; - height: 100%; - background-color: @placeholderBackground; -} - -/*-------------- - Icon ----------------*/ - -.ui.embed > .icon { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - z-index: 2; -} -.ui.embed > .icon:after { - position: absolute; - top: 0%; - left: 0%; - width: 100%; - height: 100%; - z-index: 3; - content: ''; - background: @placeholderBackground; - opacity: @placeholderBackgroundOpacity; - transition: @placeholderBackgroundTransition; -} -.ui.embed > .icon:before { - position: absolute; - top: 50%; - left: 50%; - z-index: 4; - transform: translateX(-50%) translateY(-50%); - - color: @iconColor; - font-size: @iconSize; - text-shadow: @iconShadow; - transition: @iconTransition; - z-index: @iconZIndex; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.embed .icon:hover:after { - background: @hoverPlaceholderBackground; - opacity: @hoverPlaceholderBackgroundOpacity; -} -.ui.embed .icon:hover:before { - color: @hoverIconColor; -} - -/*-------------- - Active ----------------*/ - -.ui.active.embed > .icon, -.ui.active.embed > .placeholder { - display: none; -} -.ui.active.embed > .embed { - display: block; -} - -.loadUIOverrides(); - - -/******************************* - Variations -*******************************/ - -.ui.square.embed { - padding-bottom: @squareRatio; -} -.ui[class*="4:3"].embed { - padding-bottom: @standardRatio; -} -.ui[class*="16:9"].embed { - padding-bottom: @widescreenRatio; -} -.ui[class*="21:9"].embed { - padding-bottom: @ultraWidescreenRatio; -} - - - diff --git a/src/definitions/modules/modal.less b/src/definitions/modules/modal.less deleted file mode 100644 index 1349275..0000000 --- a/src/definitions/modules/modal.less +++ /dev/null @@ -1,595 +0,0 @@ -/*! - * # Semantic UI - Modal - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'modal'; - -@import (multiple) '../../theme.config'; - -/******************************* - Modal -*******************************/ - -.ui.modal { - position: absolute; - display: none; - z-index: @zIndex; - text-align: left; - - border: @border; - box-shadow: @boxShadow; - transform-origin: @transformOrigin; - - flex: 0 0 auto; - - border-radius: @borderRadius; - user-select: text; - will-change: top, left, margin, transform, opacity; -} - -.ui.modal > :first-child:not(.icon), -.ui.modal > .icon:first-child + * { - border-top-left-radius: @borderRadius; - border-top-right-radius: @borderRadius; -} - -.ui.modal > :last-child { - border-bottom-left-radius: @borderRadius; - border-bottom-right-radius: @borderRadius; -} - -/******************************* - Content -*******************************/ - -/*-------------- - Close ----------------*/ - -.ui.modal > .close { - cursor: pointer; - position: absolute; - top: @closeTop; - right: @closeRight; - z-index: 1; - - opacity: @closeOpacity; - font-size: @closeSize; - color: @closeColor; - - width: @closeHitbox; - height: @closeHitbox; - padding: @closePadding; -} -.ui.modal > .close:hover { - opacity: 1; -} - -/*-------------- - Header ----------------*/ - -.ui.modal > .header { - display: block; - font-family: @headerFontFamily; - background: @headerBackground; - margin: @headerMargin; - padding: @headerPadding; - box-shadow: @headerBoxShadow; - - color: @headerColor; - border-bottom: @headerBorder; -} -.ui.modal > .header:not(.ui) { - font-size: @headerFontSize; - line-height: @headerLineHeight; - font-weight: @headerFontWeight; -} - -/*-------------- - Content ----------------*/ - -.ui.modal > .content { - display: block; - width: 100%; - font-size: @contentFontSize; - line-height: @contentLineHeight; - padding: @contentPadding; - background: @contentBackground; -} -.ui.modal > .image.content { - display: flex; - flex-direction: row; -} - -/* Image */ -.ui.modal > .content > .image { - display: block; - flex: 0 1 auto; - width: @imageWidth; - align-self: @imageVerticalAlign; -} -.ui.modal > [class*="top aligned"] { - align-self: top; -} -.ui.modal > [class*="middle aligned"] { - align-self: middle; -} -.ui.modal > [class*="stretched"] { - align-self: stretch; -} - -/* Description */ -.ui.modal > .content > .description { - display: block; - flex: 1 0 auto; - min-width: 0px; - align-self: @descriptionVerticalAlign; -} - -.ui.modal > .content > .icon + .description, -.ui.modal > .content > .image + .description { - flex: 0 1 auto; - min-width: @descriptionMinWidth; - width: @descriptionWidth; - padding-left: @descriptionDistance; -} - -/*rtl:ignore*/ -.ui.modal > .content > .image > i.icon { - margin: 0em; - opacity: 1; - width: auto; - line-height: 1; - font-size: @imageIconSize; -} - -/*-------------- - Actions ----------------*/ - -.ui.modal > .actions { - background: @actionBackground; - padding: @actionPadding; - border-top: @actionBorder; - text-align: @actionAlign; -} -.ui.modal .actions > .button { - margin-left: @buttonDistance; - min-width: 10em; - - &:first-child { - margin-left: 0.25em; - } -} - -/*------------------- - Responsive ---------------------*/ - -/* Modal Width */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.modal { - width: @mobileWidth; - margin: @mobileMargin; - } -} -@media only screen and (min-width : @tabletBreakpoint) { - .ui.modal { - width: @tabletWidth; - margin: @tabletMargin; - } -} -@media only screen and (min-width : @computerBreakpoint) { - .ui.modal { - width: @computerWidth; - margin: @computerMargin; - } -} -@media only screen and (min-width : @largeMonitorBreakpoint) { - .ui.modal { - width: @largeMonitorWidth; - margin: @largeMonitorMargin; - } -} -@media only screen and (min-width : @widescreenMonitorBreakpoint) { - .ui.modal { - width: @widescreenMonitorWidth; - margin: @widescreenMonitorMargin; - } -} - -/* Tablet and Mobile */ -@media only screen and (max-width : @largestTabletScreen) { - .ui.modal > .header { - padding-right: @closeHitbox; - } - .ui.modal > .close { - top: @innerCloseTop; - right: @innerCloseRight; - color: @innerCloseColor; - } -} - -/* Mobile */ -@media only screen and (max-width : @largestMobileScreen) { - - .ui.modal > .header { - padding: @mobileHeaderPadding !important; - padding-right: @closeHitbox !important; - } - .ui.modal > .content { - display: block; - padding: @mobileContentPadding !important; - } - .ui.modal > .close { - top: @mobileCloseTop !important; - right: @mobileCloseRight !important; - } - - /*rtl:ignore*/ - .ui.modal .image.content { - flex-direction: column; - } - .ui.modal .content > .image { - display: block; - max-width: 100%; - margin: 0em auto !important; - text-align: center; - padding: @mobileImagePadding !important; - } - .ui.modal > .content > .image > i.icon { - font-size: @mobileImageIconSize; - text-align: center; - } - - /*rtl:ignore*/ - .ui.modal .content > .description { - display: block; - width: 100% !important; - margin: 0em !important; - padding: @mobileDescriptionPadding !important; - box-shadow: none; - } - - /* Let Buttons Stack */ - .ui.modal > .actions { - padding: @mobileActionPadding !important; - } - .ui.modal .actions > .buttons, - .ui.modal .actions > .button { - margin-bottom: @mobileButtonDistance; - } -} - -/*-------------- - Coupling ----------------*/ - -.ui.inverted.dimmer > .ui.modal { - box-shadow: @invertedBoxShadow; -} - -/******************************* - Types -*******************************/ - -.ui.basic.modal { - background-color: transparent; - border: none; - border-radius: 0em; - box-shadow: none !important; - color: @basicModalColor; -} -.ui.basic.modal > .header, -.ui.basic.modal > .content, -.ui.basic.modal > .actions { - background-color: transparent; -} -.ui.basic.modal > .header { - color: @basicModalHeaderColor; -} -.ui.basic.modal > .close { - top: @basicModalCloseTop; - right: @basicModalCloseRight; -} - -.ui.inverted.dimmer > .basic.modal { - color: @basicInvertedModalColor; -} -.ui.inverted.dimmer > .ui.basic.modal > .header { - color: @basicInvertedModalHeaderColor; -} - -/* Resort to margin positioning if legacy */ -.ui.legacy.modal, -.ui.legacy.page.dimmer > .ui.modal { - top: 50%; - left: 50%; -} - -.ui.legacy.page.dimmer > .ui.scrolling.modal, -.ui.page.dimmer > .ui.scrolling.legacy.modal, -.ui.top.aligned.legacy.page.dimmer > .ui.modal, -.ui.top.aligned.dimmer > .ui.legacy.modal { - top: auto; -} - -/* Tablet and Mobile */ -@media only screen and (max-width : @largestTabletScreen) { - .ui.basic.modal > .close { - color: @basicInnerCloseColor; - } -} - - -/******************************* - States -*******************************/ - -.ui.loading.modal { - display: block; - visibility: hidden; - z-index: @loadingZIndex; -} - -.ui.active.modal { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Top Aligned ----------------*/ - -/* Top Aligned Modal */ -.modals.dimmer[class*="top aligned"] .modal { - margin: @topAlignedMargin auto; -} -@media only screen and (max-width : @largestMobileScreen) { - .modals.dimmer[class*="top aligned"] .modal { - margin: @mobileTopAlignedMargin auto; - } -} -/* Legacy Top Aligned */ -.legacy.modals.dimmer[class*="top aligned"] { - padding-top: @topAlignedMargin; -} -@media only screen and (max-width : @largestMobileScreen) { - .legacy.modals.dimmer[class*="top aligned"] { - padding-top: @mobileTopAlignedMargin; - } -} - -/*-------------- - Scrolling ----------------*/ - -/* Scrolling Dimmer */ -.scrolling.dimmable.dimmed { - overflow: hidden; -} -.scrolling.dimmable > .dimmer { - justify-content: flex-start; -} -.scrolling.dimmable.dimmed > .dimmer { - overflow: auto; - -webkit-overflow-scrolling: touch; -} -.scrolling.dimmable > .dimmer { - position: fixed; -} -.modals.dimmer .ui.scrolling.modal { - margin: @scrollingMargin auto; -} - -/* Undetached Scrolling */ -.scrolling.undetached.dimmable.dimmed { - overflow: auto; - -webkit-overflow-scrolling: touch; -} -.scrolling.undetached.dimmable.dimmed > .dimmer { - overflow: hidden; -} -.scrolling.undetached.dimmable .ui.scrolling.modal { - position: absolute; - left: 50%; - margin-top: @scrollingMargin !important; -} - -/* Scrolling Content */ -.ui.modal .scrolling.content { - max-height: @scrollingContentMaxHeight; - overflow: auto; -} - -/*-------------- - Full Screen ----------------*/ - -.ui.fullscreen.modal { - width: @fullScreenWidth !important; - margin: @fullScreenMargin; -} -.ui.fullscreen.modal > .header { - padding-right: @closeHitbox; -} -.ui.fullscreen.modal > .close { - top: @innerCloseTop; - right: @innerCloseRight; - color: @innerCloseColor; -} - - -/*-------------- - Size ----------------*/ - -.ui.modal { - font-size: @medium; -} - -/* Mini */ -.ui.mini.modal > .header:not(.ui) { - font-size: @miniHeaderSize; -} - -/* Mini Modal Width */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.mini.modal { - width: @miniMobileWidth; - margin: @miniMobileMargin; - } -} -@media only screen and (min-width : @tabletBreakpoint) { - .ui.mini.modal { - width: @miniTabletWidth; - margin: @miniTabletMargin; - } -} -@media only screen and (min-width : @computerBreakpoint) { - .ui.mini.modal { - width: @miniComputerWidth; - margin: @miniComputerMargin; - } -} -@media only screen and (min-width : @largeMonitorBreakpoint) { - .ui.mini.modal { - width: @miniLargeMonitorWidth; - margin: @miniLargeMonitorMargin; - } -} -@media only screen and (min-width : @widescreenMonitorBreakpoint) { - .ui.mini.modal { - width: @miniWidescreenMonitorWidth; - margin: @miniWidescreenMonitorMargin; - } -} - -/* mini */ -.ui.small.modal > .header:not(.ui) { - font-size: @miniHeaderSize; -} - -/* Tiny Modal Width */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.tiny.modal { - width: @tinyMobileWidth; - margin: @tinyMobileMargin; - } -} -@media only screen and (min-width : @tabletBreakpoint) { - .ui.tiny.modal { - width: @tinyTabletWidth; - margin: @tinyTabletMargin; - } -} -@media only screen and (min-width : @computerBreakpoint) { - .ui.tiny.modal { - width: @tinyComputerWidth; - margin: @tinyComputerMargin; - } -} -@media only screen and (min-width : @largeMonitorBreakpoint) { - .ui.tiny.modal { - width: @tinyLargeMonitorWidth; - margin: @tinyLargeMonitorMargin; - } -} -@media only screen and (min-width : @widescreenMonitorBreakpoint) { - .ui.tiny.modal { - width: @tinyWidescreenMonitorWidth; - margin: @tinyWidescreenMonitorMargin; - } -} - -/* Small */ -.ui.small.modal > .header:not(.ui) { - font-size: @smallHeaderSize; -} - -/* Small Modal Width */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.small.modal { - width: @smallMobileWidth; - margin: @smallMobileMargin; - } -} -@media only screen and (min-width : @tabletBreakpoint) { - .ui.small.modal { - width: @smallTabletWidth; - margin: @smallTabletMargin; - } -} -@media only screen and (min-width : @computerBreakpoint) { - .ui.small.modal { - width: @smallComputerWidth; - margin: @smallComputerMargin; - } -} -@media only screen and (min-width : @largeMonitorBreakpoint) { - .ui.small.modal { - width: @smallLargeMonitorWidth; - margin: @smallLargeMonitorMargin; - } -} -@media only screen and (min-width : @widescreenMonitorBreakpoint) { - .ui.small.modal { - width: @smallWidescreenMonitorWidth; - margin: @smallWidescreenMonitorMargin; - } -} - -/* Large Modal Width */ -.ui.large.modal > .header { - font-size: @largeHeaderSize; -} -@media only screen and (max-width : @largestMobileScreen) { - .ui.large.modal { - width: @largeMobileWidth; - margin: @largeMobileMargin; - } -} -@media only screen and (min-width : @tabletBreakpoint) { - .ui.large.modal { - width: @largeTabletWidth; - margin: @largeTabletMargin; - } -} -@media only screen and (min-width : @computerBreakpoint) { - .ui.large.modal { - width: @largeComputerWidth; - margin: @largeComputerMargin; - } -} -@media only screen and (min-width : @largeMonitorBreakpoint) { - .ui.large.modal { - width: @largeLargeMonitorWidth; - margin: @largeLargeMonitorMargin; - } -} -@media only screen and (min-width : @widescreenMonitorBreakpoint) { - .ui.large.modal { - width: @largeWidescreenMonitorWidth; - margin: @largeWidescreenMonitorMargin; - } -} - - -.loadUIOverrides(); diff --git a/src/definitions/modules/nag.less b/src/definitions/modules/nag.less deleted file mode 100644 index b29e306..0000000 --- a/src/definitions/modules/nag.less +++ /dev/null @@ -1,158 +0,0 @@ -/*! - * # Semantic UI - Nag - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'nag'; - -@import (multiple) '../../theme.config'; - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: @opacity; - position: @position; - - top: @top; - left: 0px; - z-index: @zIndex; - - min-height: @minHeight; - width: @width; - - margin: @margin; - padding: @padding; - - background: @background; - box-shadow: @boxShadow; - - font-size: @fontSize; - text-align: @textAlign; - color: @color; - - border-radius: @topBorderRadius; - transition: @transition; -} - -a.ui.nag { - cursor: pointer; -} - -.ui.nag > .title { - display: inline-block; - margin: @titleMargin; - color: @titleColor; -} - - -.ui.nag > .close.icon { - cursor: pointer; - opacity: @closeOpacity; - - position: absolute; - top: @closeTop; - right: @closeRight; - - font-size: @closeSize; - - margin: @closeMargin; - color: @closeColor; - transition: @closeTransition; -} - - - -/******************************* - States -*******************************/ - -/* Hover */ -.ui.nag:hover { - background: @nagHoverBackground; - opacity: @nagHoverOpacity; -} - -.ui.nag .close:hover { - opacity: @closeHoverOpacity; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Static ----------------*/ - -.ui.overlay.nag { - position: absolute; - display: block; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.nag { - position: fixed; -} - -/*-------------- - Bottom ----------------*/ - -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: @bottomBorderRadius; - top: auto; - bottom: @bottom; -} - -/*-------------- - White ----------------*/ - -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: @invertedBackground; - color: @darkTextColor; -} -.ui.inverted.nags .nag .close, -.ui.inverted.nags .nag .title, -.ui.inverted.nag .close, -.ui.inverted.nag .title { - color: @lightTextColor; -} - - -/******************************* - Groups -*******************************/ - -.ui.nags .nag { - border-radius: @groupedBorderRadius !important; -} -.ui.nags .nag:last-child { - border-radius: @topBorderRadius; -} -.ui.bottom.nags .nag:last-child { - border-radius: @bottomBorderRadius; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/popup.less b/src/definitions/modules/popup.less deleted file mode 100644 index 9a5b2a5..0000000 --- a/src/definitions/modules/popup.less +++ /dev/null @@ -1,712 +0,0 @@ -/*! - * # Semantic UI - Popup - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'popup'; - -@import (multiple) '../../theme.config'; - - -/******************************* - Popup -*******************************/ - -.ui.popup { - display: none; - position: absolute; - top: 0px; - right: 0px; - - /* Fixes content being squished when inline (moz only) */ - min-width: min-content; - z-index: @zIndex; - - border: @border; - line-height: @lineHeight; - max-width: @maxWidth; - background: @background; - - padding: @verticalPadding @horizontalPadding; - font-weight: @fontWeight; - font-style: @fontStyle; - color: @color; - - border-radius: @borderRadius; - box-shadow: @boxShadow; -} -.ui.popup > .header { - padding: 0em; - - font-family: @headerFont; - font-size: @headerFontSize; - line-height: @headerLineHeight; - font-weight: @headerFontWeight; -} -.ui.popup > .header + .content { - padding-top: @headerDistance; -} - -.ui.popup:before { - position: absolute; - content: ''; - width: @arrowSize; - height: @arrowSize; - - background: @arrowBackground; - transform: rotate(45deg); - - z-index: @arrowZIndex; - box-shadow: @arrowBoxShadow; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Tooltip ----------------*/ - -/* Content */ -[data-tooltip] { - position: relative; -} - -/* Arrow */ -[data-tooltip]:before { - pointer-events: none; - position: absolute; - content: ''; - font-size: @medium; - width: @arrowSize; - height: @arrowSize; - - background: @tooltipArrowBackground; - transform: rotate(45deg); - - z-index: @arrowZIndex; - box-shadow: @tooltipArrowBoxShadow; -} - -/* Popup */ -[data-tooltip]:after { - pointer-events: none; - content: attr(data-tooltip); - position: absolute; - text-transform: none; - text-align: left; - white-space: nowrap; - - font-size: @tooltipFontSize; - - border: @tooltipBorder; - line-height: @tooltipLineHeight; - max-width: @tooltipMaxWidth; - background: @tooltipBackground; - - padding: @tooltipPadding; - font-weight: @tooltipFontWeight; - font-style: @tooltipFontStyle; - color: @tooltipColor; - - border-radius: @tooltipBorderRadius; - box-shadow: @tooltipBoxShadow; - z-index: @tooltipZIndex; -} - -/* Default Position (Top Center) */ -[data-tooltip]:not([data-position]):before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: @tooltipArrowBottomBackground; - margin-left: @tooltipArrowHorizontalOffset; - margin-bottom: -@tooltipArrowVerticalOffset; -} -[data-tooltip]:not([data-position]):after { - left: 50%; - transform: translateX(-50%); - bottom: 100%; - margin-bottom: @tooltipDistanceAway; -} - -/* Animation */ -[data-tooltip]:before, -[data-tooltip]:after { - pointer-events: none; - visibility: hidden; -} -[data-tooltip]:before { - opacity: 0; - transform: rotate(45deg) scale(0) !important; - transform-origin: center top; - transition: - all @tooltipDuration @tooltipEasing - ; -} -[data-tooltip]:after { - opacity: 1; - transform-origin: center bottom; - transition: - all @tooltipDuration @tooltipEasing - ; -} -[data-tooltip]:hover:before, -[data-tooltip]:hover:after { - visibility: visible; - pointer-events: auto; -} -[data-tooltip]:hover:before { - transform: rotate(45deg) scale(1) !important; - opacity: 1; -} - -/* Animation Position */ -[data-tooltip]:after, -[data-tooltip][data-position="top center"]:after, -[data-tooltip][data-position="bottom center"]:after { - transform: translateX(-50%) scale(0) !important; -} -[data-tooltip]:hover:after, -[data-tooltip][data-position="bottom center"]:hover:after { - transform: translateX(-50%) scale(1) !important; -} -[data-tooltip][data-position="left center"]:after, -[data-tooltip][data-position="right center"]:after { - transform: translateY(-50%) scale(0) !important; -} -[data-tooltip][data-position="left center"]:hover:after, -[data-tooltip][data-position="right center"]:hover:after { - transform: translateY(-50%) scale(1) !important; -} -[data-tooltip][data-position="top left"]:after, -[data-tooltip][data-position="top right"]:after, -[data-tooltip][data-position="bottom left"]:after, -[data-tooltip][data-position="bottom right"]:after { - transform: scale(0) !important; -} -[data-tooltip][data-position="top left"]:hover:after, -[data-tooltip][data-position="top right"]:hover:after, -[data-tooltip][data-position="bottom left"]:hover:after, -[data-tooltip][data-position="bottom right"]:hover:after { - transform: scale(1) !important; -} - - -/*-------------- - Inverted ----------------*/ - -/* Arrow */ -[data-tooltip][data-inverted]:before { - box-shadow: none !important; -} - -/* Arrow Position */ -[data-tooltip][data-inverted]:before { - background: @invertedArrowBottomBackground; -} - -/* Popup */ -[data-tooltip][data-inverted]:after { - background: @tooltipInvertedBackground; - color: @tooltipInvertedColor; - border: @tooltipInvertedBorder; - box-shadow: @tooltipInvertedBoxShadow; -} -[data-tooltip][data-inverted]:after .header { - background-color: @tooltipInvertedHeaderBackground; - color: @tooltipInvertedHeaderColor; -} - -/*-------------- - Position ----------------*/ - -/* Top Center */ -[data-position="top center"][data-tooltip]:after { - top: auto; - right: auto; - left: 50%; - bottom: 100%; - transform: translateX(-50%); - margin-bottom: @tooltipDistanceAway; -} -[data-position="top center"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: @tooltipArrowTopBackground; - margin-left: @tooltipArrowHorizontalOffset; - margin-bottom: -@tooltipArrowVerticalOffset; -} - -/* Top Left */ -[data-position="top left"][data-tooltip]:after { - top: auto; - right: auto; - left: 0; - bottom: 100%; - margin-bottom: @tooltipDistanceAway; -} -[data-position="top left"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: @arrowDistanceFromEdge; - margin-left: @tooltipArrowHorizontalOffset; - margin-bottom: -@tooltipArrowVerticalOffset; -} - -/* Top Right */ -[data-position="top right"][data-tooltip]:after { - top: auto; - left: auto; - right: 0; - bottom: 100%; - margin-bottom: @tooltipDistanceAway; -} -[data-position="top right"][data-tooltip]:before { - top: auto; - left: auto; - bottom: 100%; - right: @arrowDistanceFromEdge; - margin-left: @tooltipArrowHorizontalOffset; - margin-bottom: -@tooltipArrowVerticalOffset; -} - - -/* Bottom Center */ -[data-position="bottom center"][data-tooltip]:after { - bottom: auto; - right: auto; - left: 50%; - top: 100%; - transform: translateX(-50%); - margin-top: @tooltipDistanceAway; -} -[data-position="bottom center"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: 50%; - margin-left: @tooltipArrowHorizontalOffset; - margin-top: -@tooltipArrowVerticalOffset; -} - -/* Bottom Left */ -[data-position="bottom left"][data-tooltip]:after { - left: 0; - top: 100%; - margin-top: @tooltipDistanceAway; -} -[data-position="bottom left"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: @arrowDistanceFromEdge; - margin-left: @tooltipArrowHorizontalOffset; - margin-top: -@tooltipArrowVerticalOffset; -} - -/* Bottom Right */ -[data-position="bottom right"][data-tooltip]:after { - right: 0; - top: 100%; - margin-top: @tooltipDistanceAway; -} -[data-position="bottom right"][data-tooltip]:before { - bottom: auto; - left: auto; - top: 100%; - right: @arrowDistanceFromEdge; - margin-left: @tooltipArrowVerticalOffset; - margin-top: -@tooltipArrowHorizontalOffset; -} - -/* Left Center */ -[data-position="left center"][data-tooltip]:after { - right: 100%; - top: 50%; - margin-right: @tooltipDistanceAway; - transform: translateY(-50%); -} -[data-position="left center"][data-tooltip]:before { - right: 100%; - top: 50%; - margin-top: @tooltipArrowVerticalOffset; - margin-right: @tooltipArrowHorizontalOffset; -} - -/* Right Center */ -[data-position="right center"][data-tooltip]:after { - left: 100%; - top: 50%; - margin-left: @tooltipDistanceAway; - transform: translateY(-50%); -} -[data-position="right center"][data-tooltip]:before { - left: 100%; - top: 50%; - margin-top: @tooltipArrowHorizontalOffset; - margin-left: -@tooltipArrowVerticalOffset; -} - -/* Arrow */ -[data-position~="bottom"][data-tooltip]:before { - background: @arrowTopBackground; - box-shadow: @bottomArrowBoxShadow; -} -[data-position="left center"][data-tooltip]:before { - background: @arrowCenterBackground; - box-shadow: @leftArrowBoxShadow; -} -[data-position="right center"][data-tooltip]:before { - background: @arrowCenterBackground; - box-shadow: @rightArrowBoxShadow; -} -[data-position~="top"][data-tooltip]:before { - background: @arrowBottomBackground; -} - -/* Inverted Arrow Color */ -[data-inverted][data-position~="bottom"][data-tooltip]:before { - background: @invertedArrowTopBackground; - box-shadow: @bottomArrowBoxShadow; -} -[data-inverted][data-position="left center"][data-tooltip]:before { - background: @invertedArrowCenterBackground; - box-shadow: @leftArrowBoxShadow; -} -[data-inverted][data-position="right center"][data-tooltip]:before { - background: @invertedArrowCenterBackground; - box-shadow: @rightArrowBoxShadow; -} -[data-inverted][data-position~="top"][data-tooltip]:before { - background: @invertedArrowBottomBackground; -} - -[data-position~="bottom"][data-tooltip]:before { - transform-origin: center bottom; -} -[data-position~="bottom"][data-tooltip]:after { - transform-origin: center top; -} -[data-position="left center"][data-tooltip]:before { - transform-origin: top center; -} -[data-position="left center"][data-tooltip]:after { - transform-origin: right center; -} -[data-position="right center"][data-tooltip]:before { - transform-origin: right center; -} -[data-position="right center"][data-tooltip]:after { - transform-origin: left center; -} - -/*-------------- - Spacing ----------------*/ - -.ui.popup { - margin: 0em; -} - -/* Extending from Top */ -.ui.top.popup { - margin: 0em 0em @popupDistanceAway; -} -.ui.top.left.popup { - transform-origin: left bottom; -} -.ui.top.center.popup { - transform-origin: center bottom; -} -.ui.top.right.popup { - transform-origin: right bottom; -} - -/* Extending from Vertical Center */ -.ui.left.center.popup { - margin: 0em @popupDistanceAway 0em 0em; - transform-origin: right 50%; -} -.ui.right.center.popup { - margin: 0em 0em 0em @popupDistanceAway; - transform-origin: left 50%; -} - -/* Extending from Bottom */ -.ui.bottom.popup { - margin: @popupDistanceAway 0em 0em; -} -.ui.bottom.left.popup { - transform-origin: left top; -} -.ui.bottom.center.popup { - transform-origin: center top; -} -.ui.bottom.right.popup { - transform-origin: right top; -} - -/*-------------- - Pointer ----------------*/ - -/*--- Below ---*/ -.ui.bottom.center.popup:before { - margin-left: @arrowOffset; - top: @arrowOffset; - left: 50%; - right: auto; - bottom: auto; - box-shadow: @bottomArrowBoxShadow; -} - -.ui.bottom.left.popup { - margin-left: @boxArrowOffset; -} -/*rtl:rename*/ -.ui.bottom.left.popup:before { - top: @arrowOffset; - left: @arrowDistanceFromEdge; - right: auto; - bottom: auto; - margin-left: 0em; - box-shadow: @bottomArrowBoxShadow; -} - -.ui.bottom.right.popup { - margin-right: @boxArrowOffset; -} -/*rtl:rename*/ -.ui.bottom.right.popup:before { - top: @arrowOffset; - right: @arrowDistanceFromEdge; - bottom: auto; - left: auto; - margin-left: 0em; - box-shadow: @bottomArrowBoxShadow; -} - -/*--- Above ---*/ -.ui.top.center.popup:before { - top: auto; - right: auto; - bottom: @arrowOffset; - left: 50%; - margin-left: @arrowOffset; -} -.ui.top.left.popup { - margin-left: @boxArrowOffset; -} -/*rtl:rename*/ -.ui.top.left.popup:before { - bottom: @arrowOffset; - left: @arrowDistanceFromEdge; - top: auto; - right: auto; - margin-left: 0em; -} -.ui.top.right.popup { - margin-right: @boxArrowOffset; -} -/*rtl:rename*/ -.ui.top.right.popup:before { - bottom: @arrowOffset; - right: @arrowDistanceFromEdge; - top: auto; - left: auto; - margin-left: 0em; -} - -/*--- Left Center ---*/ -/*rtl:rename*/ -.ui.left.center.popup:before { - top: 50%; - right: @arrowOffset; - bottom: auto; - left: auto; - margin-top: @arrowOffset; - box-shadow: @leftArrowBoxShadow; -} - -/*--- Right Center ---*/ -/*rtl:rename*/ -.ui.right.center.popup:before { - top: 50%; - left: @arrowOffset; - bottom: auto; - right: auto; - margin-top: @arrowOffset; - box-shadow: @rightArrowBoxShadow; -} - -/* Arrow Color By Location */ -.ui.bottom.popup:before { - background: @arrowTopBackground; -} -.ui.right.center.popup:before, -.ui.left.center.popup:before { - background: @arrowCenterBackground; -} -.ui.top.popup:before { - background: @arrowBottomBackground; -} - -/* Inverted Arrow Color */ -.ui.inverted.bottom.popup:before { - background: @invertedArrowTopBackground; -} -.ui.inverted.right.center.popup:before, -.ui.inverted.left.center.popup:before { - background: @invertedArrowCenterBackground; -} -.ui.inverted.top.popup:before { - background: @invertedArrowBottomBackground; -} - - -/******************************* - Coupling -*******************************/ - -/* Immediate Nested Grid */ -.ui.popup > .ui.grid:not(.padded) { - width: @nestedGridWidth; - margin: @nestedGridMargin; -} - -/******************************* - States -*******************************/ - -.ui.loading.popup { - display: block; - visibility: hidden; - z-index: @loadingZIndex; -} - -.ui.animating.popup, -.ui.visible.popup { - display: block; -} - -.ui.visible.popup { - transform: translateZ(0px); - backface-visibility: hidden; -} - - -/******************************* - Variations -*******************************/ - -/*-------------- - Basic ----------------*/ - -.ui.basic.popup:before { - display: none; -} - - -/*-------------- - Wide ----------------*/ - -.ui.wide.popup { - max-width: @wideWidth; -} -.ui[class*="very wide"].popup { - max-width: @veryWideWidth; -} - -@media only screen and (max-width: @largestMobileScreen) { - .ui.wide.popup, - .ui[class*="very wide"].popup { - max-width: @maxWidth; - } -} - - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.popup { - width: 100%; - max-width: none; -} - - -/*-------------- - Colors ----------------*/ - -/* Inverted colors */ -.ui.inverted.popup { - background: @invertedBackground; - color: @invertedColor; - border: @invertedBorder; - box-shadow: @invertedBoxShadow; -} -.ui.inverted.popup .header { - background-color: @invertedHeaderBackground; - color: @invertedHeaderColor; -} -.ui.inverted.popup:before { - background-color: @invertedArrowColor; - box-shadow: none !important; -} - -/*-------------- - Flowing ----------------*/ - -.ui.flowing.popup { - max-width: none; -} - - -/*-------------- - Sizes ----------------*/ - -.ui.mini.popup { - font-size: @mini; -} -.ui.tiny.popup { - font-size: @tiny; -} -.ui.small.popup { - font-size: @small; -} -.ui.popup { - font-size: @medium; -} -.ui.large.popup { - font-size: @large; -} -.ui.huge.popup { - font-size: @huge; -} - - -.loadUIOverrides(); diff --git a/src/definitions/modules/progress.less b/src/definitions/modules/progress.less deleted file mode 100644 index ff8323f..0000000 --- a/src/definitions/modules/progress.less +++ /dev/null @@ -1,503 +0,0 @@ -/*! - * # Semantic UI - Progress Bar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'progress'; - -@import (multiple) '../../theme.config'; - -/******************************* - Progress -*******************************/ - -.ui.progress { - position: relative; - display: block; - max-width: 100%; - border: @border; - margin: @margin; - box-shadow: @boxShadow; - background: @background; - padding: @padding; - border-radius: @borderRadius; -} - -.ui.progress:first-child { - margin: @firstMargin; -} -.ui.progress:last-child { - margin: @lastMargin; -} - -/******************************* - Content -*******************************/ - -/* Activity Bar */ -.ui.progress .bar { - display: block; - line-height: 1; - position: @barPosition; - width: @barInitialWidth; - min-width: @barMinWidth; - background: @barBackground; - border-radius: @barBorderRadius; - transition: @barTransition; -} - -/* Percent Complete */ -.ui.progress .bar > .progress { - white-space: nowrap; - position: @progressPosition; - width: @progressWidth; - font-size: @progressSize; - top: @progressTop; - right: @progressRight; - left: @progressLeft; - bottom: @progressBottom; - color: @progressColor; - text-shadow: @progressTextShadow; - margin-top: @progressOffset; - font-weight: @progressFontWeight; - text-align: @progressTextAlign; -} - -/* Label */ -.ui.progress > .label { - position: absolute; - width: @labelWidth; - font-size: @labelSize; - top: @labelTop; - right: @labelRight; - left: @labelLeft; - bottom: @labelBottom; - color: @labelColor; - font-weight: @labelFontWeight; - text-shadow: @labelTextShadow; - margin-top: @labelOffset; - text-align: @labelTextAlign; - transition: @labelTransition; -} - - -/******************************* - Types -*******************************/ - - -/* Indicating */ -.ui.indicating.progress[data-percent^="1"] .bar, -.ui.indicating.progress[data-percent^="2"] .bar { - background-color: @indicatingFirstColor; -} -.ui.indicating.progress[data-percent^="3"] .bar { - background-color: @indicatingSecondColor; -} -.ui.indicating.progress[data-percent^="4"] .bar, -.ui.indicating.progress[data-percent^="5"] .bar { - background-color: @indicatingThirdColor; -} -.ui.indicating.progress[data-percent^="6"] .bar { - background-color: @indicatingFourthColor; -} -.ui.indicating.progress[data-percent^="7"] .bar, -.ui.indicating.progress[data-percent^="8"] .bar { - background-color: @indicatingFifthColor; -} -.ui.indicating.progress[data-percent^="9"] .bar, -.ui.indicating.progress[data-percent^="100"] .bar { - background-color: @indicatingSixthColor; -} - -/* Indicating Label */ -.ui.indicating.progress[data-percent^="1"] .label, -.ui.indicating.progress[data-percent^="2"] .label { - color: @indicatingFirstLabelColor; -} -.ui.indicating.progress[data-percent^="3"] .label { - color: @indicatingSecondLabelColor; -} -.ui.indicating.progress[data-percent^="4"] .label, -.ui.indicating.progress[data-percent^="5"] .label { - color: @indicatingThirdLabelColor; -} -.ui.indicating.progress[data-percent^="6"] .label { - color: @indicatingFourthLabelColor; -} -.ui.indicating.progress[data-percent^="7"] .label, -.ui.indicating.progress[data-percent^="8"] .label { - color: @indicatingFifthLabelColor; -} -.ui.indicating.progress[data-percent^="9"] .label, -.ui.indicating.progress[data-percent^="100"] .label { - color: @indicatingSixthLabelColor; -} - -/* Single Digits */ -.ui.indicating.progress[data-percent="1"] .bar, -.ui.indicating.progress[data-percent="2"] .bar, -.ui.indicating.progress[data-percent="3"] .bar, -.ui.indicating.progress[data-percent="4"] .bar, -.ui.indicating.progress[data-percent="5"] .bar, -.ui.indicating.progress[data-percent="6"] .bar, -.ui.indicating.progress[data-percent="7"] .bar, -.ui.indicating.progress[data-percent="8"] .bar, -.ui.indicating.progress[data-percent="9"] .bar { - background-color: @indicatingFirstColor; -} -.ui.indicating.progress[data-percent="1"] .label, -.ui.indicating.progress[data-percent="2"] .label, -.ui.indicating.progress[data-percent="3"] .label, -.ui.indicating.progress[data-percent="4"] .label, -.ui.indicating.progress[data-percent="5"] .label, -.ui.indicating.progress[data-percent="6"] .label, -.ui.indicating.progress[data-percent="7"] .label, -.ui.indicating.progress[data-percent="8"] .label, -.ui.indicating.progress[data-percent="9"] .label { - color: @indicatingFirstLabelColor; -} - -/* Indicating Success */ -.ui.indicating.progress.success .label { - color: @successHeaderColor; -} - -/******************************* - States -*******************************/ - - -/*-------------- - Success ----------------*/ - -.ui.progress.success .bar { - background-color: @successColor !important; -} -.ui.progress.success .bar, -.ui.progress.success .bar::after { - animation: none !important; -} -.ui.progress.success > .label { - color: @successHeaderColor; -} - -/*-------------- - Warning ----------------*/ - -.ui.progress.warning .bar { - background-color: @warningColor !important; -} -.ui.progress.warning .bar, -.ui.progress.warning .bar::after { - animation: none !important; -} -.ui.progress.warning > .label { - color: @warningHeaderColor; -} - -/*-------------- - Error ----------------*/ - -.ui.progress.error .bar { - background-color: @errorColor !important; -} -.ui.progress.error .bar, -.ui.progress.error .bar::after { - animation: none !important; -} -.ui.progress.error > .label { - color: @errorHeaderColor; -} - -/*-------------- - Active ----------------*/ - -.ui.active.progress .bar { - position: relative; - min-width: @activeMinWidth; -} -.ui.active.progress .bar::after { - content: ''; - opacity: 0; - - position: absolute; - top: 0px; - left: 0px; - right: 0px; - bottom: 0px; - background: @activePulseColor; - - border-radius: @barBorderRadius; - - animation: progress-active @activePulseDuration @defaultEasing infinite; -} -@keyframes progress-active { - 0% { - opacity: @activePulseMaxOpacity; - width: 0; - } - 90% { - } - 100% { - opacity: 0; - width: 100%; - } -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.progress { - opacity: 0.35; -} -.ui.disabled.progress .bar, -.ui.disabled.progress .bar::after { - animation: none !important; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.progress { - background: @invertedBackground; - border: @invertedBorder; -} -.ui.inverted.progress .bar { - background: @invertedBarBackground; -} -.ui.inverted.progress .bar > .progress { - color: @invertedProgressColor; -} -.ui.inverted.progress > .label { - color: @invertedLabelColor; -} -.ui.inverted.progress.success > .label { - color: @successColor; -} -.ui.inverted.progress.warning > .label { - color: @warningColor; -} -.ui.inverted.progress.error > .label { - color: @errorColor; -} - -/*-------------- - Attached ----------------*/ - -/* bottom attached */ -.ui.progress.attached { - background: @attachedBackground; - position: relative; - border: none; - margin: 0em; -} -.ui.progress.attached, -.ui.progress.attached .bar { - display: block; - height: @attachedHeight; - padding: 0px; - overflow: hidden; - border-radius: 0em 0em @attachedBorderRadius @attachedBorderRadius; -} -.ui.progress.attached .bar { - border-radius: 0em; -} - -/* top attached */ -.ui.progress.top.attached, -.ui.progress.top.attached .bar { - top: 0px; - border-radius: @attachedBorderRadius @attachedBorderRadius 0em 0em; -} -.ui.progress.top.attached .bar { - border-radius: 0em; -} - -/* Coupling */ -.ui.segment > .ui.attached.progress, -.ui.card > .ui.attached.progress { - position: absolute; - top: auto; - left: 0; - bottom: 100%; - width: 100%; -} -.ui.segment > .ui.bottom.attached.progress, -.ui.card > .ui.bottom.attached.progress { - top: 100%; - bottom: auto; -} - -/*-------------- - Colors ----------------*/ - -/* Red */ -.ui.red.progress .bar { - background-color: @red; -} -.ui.red.inverted.progress .bar { - background-color: @lightRed; -} - -/* Orange */ -.ui.orange.progress .bar { - background-color: @orange; -} -.ui.orange.inverted.progress .bar { - background-color: @lightOrange; -} - -/* Yellow */ -.ui.yellow.progress .bar { - background-color: @yellow; -} -.ui.yellow.inverted.progress .bar { - background-color: @lightYellow; -} - -/* Olive */ -.ui.olive.progress .bar { - background-color: @olive; -} -.ui.olive.inverted.progress .bar { - background-color: @lightOlive; -} - -/* Green */ -.ui.green.progress .bar { - background-color: @green; -} -.ui.green.inverted.progress .bar { - background-color: @lightGreen; -} - -/* Teal */ -.ui.teal.progress .bar { - background-color: @teal; -} -.ui.teal.inverted.progress .bar { - background-color: @lightTeal; -} - -/* Blue */ -.ui.blue.progress .bar { - background-color: @blue; -} -.ui.blue.inverted.progress .bar { - background-color: @lightBlue; -} - -/* Violet */ -.ui.violet.progress .bar { - background-color: @violet; -} -.ui.violet.inverted.progress .bar { - background-color: @lightViolet; -} - -/* Purple */ -.ui.purple.progress .bar { - background-color: @purple; -} -.ui.purple.inverted.progress .bar { - background-color: @lightPurple; -} - -/* Pink */ -.ui.pink.progress .bar { - background-color: @pink; -} -.ui.pink.inverted.progress .bar { - background-color: @lightPink; -} - -/* Brown */ -.ui.brown.progress .bar { - background-color: @brown; -} -.ui.brown.inverted.progress .bar { - background-color: @lightBrown; -} - -/* Grey */ -.ui.grey.progress .bar { - background-color: @grey; -} -.ui.grey.inverted.progress .bar { - background-color: @lightGrey; -} - -/* Black */ -.ui.black.progress .bar { - background-color: @black; -} -.ui.black.inverted.progress .bar { - background-color: @lightBlack; -} - -/*-------------- - Sizes ----------------*/ - -.ui.tiny.progress { - font-size: @tiny; -} -.ui.tiny.progress .bar { - height: @tinyBarHeight; -} - -.ui.small.progress { - font-size: @small; -} -.ui.small.progress .bar { - height: @smallBarHeight; -} - -.ui.progress { - font-size: @medium; -} -.ui.progress .bar { - height: @barHeight; -} - -.ui.large.progress { - font-size: @large; -} -.ui.large.progress .bar { - height: @largeBarHeight; -} - -.ui.big.progress { - font-size: @big; -} -.ui.big.progress .bar { - height: @bigBarHeight; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/rating.less b/src/definitions/modules/rating.less deleted file mode 100644 index e2effed..0000000 --- a/src/definitions/modules/rating.less +++ /dev/null @@ -1,191 +0,0 @@ -/*! - * # Semantic UI - Rating - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'rating'; - -@import (multiple) '../../theme.config'; - -/******************************* - Rating -*******************************/ - -.ui.rating { - display: inline-flex; - white-space: @whiteSpace; - vertical-align: @verticalAlign; -} -.ui.rating:last-child { - margin-right: 0em; -} - -/* Icon */ -.ui.rating .icon { - padding: 0em; - margin: 0em; - text-align: center; - font-weight: @normal; - font-style: normal; - flex: 1 0 auto; - cursor: @iconCursor; - width: @iconWidth; - height: @iconHeight; - transition: @iconTransition; -} - - -/******************************* - Types -*******************************/ - - -/*------------------- - Standard ---------------------*/ - -/* Inactive Icon */ -.ui.rating .icon { - background: @inactiveBackground; - color: @inactiveColor; -} - -/* Active Icon */ -.ui.rating .active.icon { - background: @activeBackground; - color: @activeColor; -} - -/* Selected Icon */ -.ui.rating .icon.selected, -.ui.rating .icon.selected.active { - background: @selectedBackground; - color: @selectedColor; -} - - -/*------------------- - Star ---------------------*/ - -/* Inactive */ -.ui.star.rating .icon { - width: @starIconWidth; - height: @starIconHeight; - background: @starInactiveBackground; - color: @starInactiveColor; - text-shadow: @starInactiveTextShadow; -} - -/* Active Star */ -.ui.star.rating .active.icon { - background: @starActiveBackground !important; - color: @starActiveColor !important; - text-shadow: @starActiveTextShadow !important; -} - -/* Selected Star */ -.ui.star.rating .icon.selected, -.ui.star.rating .icon.selected.active { - background: @starSelectedBackground !important; - color: @starSelectedColor !important; - text-shadow: @starSelectedTextShadow !important; -} - - -/*------------------- - Heart ---------------------*/ - -.ui.heart.rating .icon { - width: @heartIconWidth; - height: @heartIconHeight; - background: @heartInactiveBackground; - color: @heartInactiveColor; - text-shadow: @heartInactiveTextShadow !important; -} - -/* Active Heart */ -.ui.heart.rating .active.icon { - background: @heartActiveBackground !important; - color: @heartActiveColor !important; - text-shadow: @heartActiveTextShadow !important; -} - -/* Selected Heart */ -.ui.heart.rating .icon.selected, -.ui.heart.rating .icon.selected.active { - background: @heartSelectedBackground !important; - color: @heartSelectedColor !important; - text-shadow: @heartSelectedTextShadow !important; -} - - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -/* disabled rating */ -.ui.disabled.rating .icon { - cursor: default; -} - - -/*------------------- - User Interactive ---------------------*/ - -/* Selected Rating */ -.ui.rating.selected .active.icon { - opacity: @interactiveActiveIconOpacity; -} -.ui.rating.selected .icon.selected, -.ui.rating .icon.selected { - opacity: @interactiveSelectedIconOpacity; -} - - - -/******************************* - Variations -*******************************/ - -.ui.mini.rating { - font-size: @mini; -} -.ui.tiny.rating { - font-size: @tiny; -} -.ui.small.rating { - font-size: @small; -} -.ui.rating { - font-size: @medium; -} -.ui.large.rating { - font-size: @large; -} -.ui.huge.rating { - font-size: @huge; -} -.ui.massive.rating { - font-size: @massive; -} - - -.loadUIOverrides(); diff --git a/src/definitions/modules/search.less b/src/definitions/modules/search.less deleted file mode 100644 index fc34dcf..0000000 --- a/src/definitions/modules/search.less +++ /dev/null @@ -1,448 +0,0 @@ -/*! - * # Semantic UI - Search - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'search'; - -@import (multiple) '../../theme.config'; - -/******************************* - Search -*******************************/ - -.ui.search { - position: relative; -} - -.ui.search > .prompt { - margin: 0em; - outline: none; - -webkit-appearance: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - - text-shadow: none; - font-style: normal; - font-weight: @normal; - - line-height: @promptLineHeight; - padding: @promptPadding; - font-size: @promptFontSize; - - background: @promptBackground; - border: @promptBorder; - color: @promptColor; - box-shadow: @promptBoxShadow; - transition: @promptTransition; -} - -.ui.search .prompt { - border-radius: @promptBorderRadius; -} - - -/*-------------- - Icon ----------------*/ - -.ui.search .prompt ~ .search.icon { - cursor: pointer; -} - -/*-------------- - Results ----------------*/ - -.ui.search > .results { - display: none; - - position: absolute; - top: 100%; - left: 0%; - transform-origin: center top; - white-space: normal; - text-align: left; - text-transform: none; - - background: @resultsBackground; - - margin-top: @resultsDistance; - width: @resultsWidth; - - border-radius: @resultsBorderRadius; - box-shadow: @resultsBoxShadow; - border: @resultsBorder; - z-index: @resultsZIndex; -} -.ui.search > .results > :first-child { - border-radius: @resultsBorderRadius @resultsBorderRadius 0em 0em; -} -.ui.search > .results > :last-child { - border-radius: 0em 0em @resultsBorderRadius @resultsBorderRadius; -} - -/*-------------- - Result ----------------*/ - -.ui.search > .results .result { - cursor: pointer; - display: block; - overflow: hidden; - font-size: @resultFontSize; - padding: @resultPadding; - color: @resultTextColor; - line-height: @resultLineHeight; - border-bottom: @resultDivider; -} -.ui.search > .results .result:last-child { - border-bottom: @resultLastDivider !important; -} - -/* Image */ -.ui.search > .results .result .image { - float: @resultImageFloat; - overflow: hidden; - background: @resultImageBackground; - width: @resultImageWidth; - height: @resultImageHeight; - border-radius: @resultImageBorderRadius; -} -.ui.search > .results .result .image img { - display: block; - width: auto; - height: 100%; -} - -/*-------------- - Info ----------------*/ - -.ui.search > .results .result .image + .content { - margin: @resultImageMargin; -} - -.ui.search > .results .result .title { - margin: @resultTitleMargin; - font-family: @resultTitleFont; - font-weight: @resultTitleFontWeight; - font-size: @resultTitleFontSize; - color: @resultTitleColor; -} -.ui.search > .results .result .description { - margin-top: @resultDescriptionDistance; - font-size: @resultDescriptionFontSize; - color: @resultDescriptionColor; -} -.ui.search > .results .result .price { - float: @resultPriceFloat; - color: @resultPriceColor; -} - -/*-------------- - Message ----------------*/ - -.ui.search > .results > .message { - padding: @messageVerticalPadding @messageHorizontalPadding; -} -.ui.search > .results > .message .header { - font-family: @headerFont; - font-size: @messageHeaderFontSize; - font-weight: @messageHeaderFontWeight; - color: @messageHeaderColor; -} -.ui.search > .results > .message .description { - margin-top: @messageDescriptionDistance; - font-size: @messageDescriptionFontSize; - color: @messageDescriptionColor; -} - -/* View All Results */ -.ui.search > .results > .action { - display: block; - border-top: @actionBorder; - background: @actionBackground; - padding: @actionPadding; - color: @actionColor; - font-weight: @actionFontWeight; - text-align: @actionAlign; -} - - -/******************************* - States -*******************************/ - -/*-------------------- - Focus ----------------------*/ - -.ui.search > .prompt:focus { - border-color: @promptFocusBorderColor; - background: @promptFocusBackground; - color: @promptFocusColor; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.search .input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @loaderFillColor; -} -.ui.loading.search .input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: button-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor transparent transparent; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; -} - - -/*-------------- - Hover ----------------*/ - -.ui.search > .results .result:hover, -.ui.category.search > .results .category .result:hover { - background: @resultHoverBackground; -} -.ui.search .action:hover { - background: @actionHoverBackground; -} - -/*-------------- - Active ----------------*/ - -.ui.category.search > .results .category.active { - background: @categoryActiveBackground; -} -.ui.category.search > .results .category.active > .name { - color: @categoryNameActiveColor; -} - -.ui.search > .results .result.active, -.ui.category.search > .results .category .result.active { - position: relative; - border-left-color: @resultActiveBorderLeft; - background: @resultActiveBackground; - box-shadow: @resultActiveBoxShadow; -} -.ui.search > .results .result.active .title { - color: @resultActiveTitleColor; -} -.ui.search > .results .result.active .description { - color: @resultActiveDescriptionColor; -} - -/*-------------------- - Disabled -----------------------*/ - -/* Disabled */ -.ui.disabled.search { - cursor: default; - pointer-events: none; - opacity: @disabledOpacity; -} - - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -.ui.search.selection .prompt { - border-radius: @selectionPromptBorderRadius; -} - -/* Remove input */ -.ui.search.selection > .icon.input > .remove.icon { - pointer-events: none; - position: absolute; - left: auto; - opacity: 0; - color: @selectionCloseIconColor; - top: @selectionCloseTop; - right: @selectionCloseRight; - transition: @selectionCloseTransition; -} -.ui.search.selection > .icon.input > .active.remove.icon { - cursor: pointer; - opacity: @selectionCloseIconOpacity; - pointer-events: auto; -} -.ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon { - right: @selectionCloseIconInputRight; -} -.ui.search.selection > .icon.input > .remove.icon:hover { - opacity: @selectionCloseIconHoverOpacity; - color: @selectionCloseIconHoverColor; -} - - -/*-------------- - Category ----------------*/ - -.ui.category.search .results { - width: @categoryResultsWidth; -} - -.ui.category.search .results.animating, -.ui.category.search .results.visible { - display: table; -} - -/* Category */ -.ui.category.search > .results .category { - display: table-row; - background: @categoryBackground; - box-shadow: @categoryBoxShadow; - transition: @categoryTransition; -} - -/* Last Category */ -.ui.category.search > .results .category:last-child { - border-bottom: none; -} - -/* First / Last */ -.ui.category.search > .results .category:first-child .name + .result { - border-radius: 0em @resultsBorderRadius 0em 0em; -} -.ui.category.search > .results .category:last-child .result:last-child { - border-radius: 0em 0em @resultsBorderRadius 0em; -} - -/* Category Result Name */ -.ui.category.search > .results .category > .name { - display: table-cell; - text-overflow: ellipsis; - width: @categoryNameWidth; - white-space: @categoryNameWhitespace; - background: @categoryNameBackground; - font-family: @categoryNameFont; - font-size: @categoryNameFontSize; - padding: @categoryNamePadding; - font-weight: @categoryNameFontWeight; - color: @categoryNameColor; - border-bottom: @categoryDivider; -} - -/* Category Result */ -.ui.category.search > .results .category .results { - display: table-cell; - background: @categoryResultBackground; - border-left: @categoryResultLeftBorder; - border-bottom: @categoryDivider; -} -.ui.category.search > .results .category .result { - border-bottom: @categoryResultDivider; - transition: @categoryResultTransition; - padding: @categoryResultPadding; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Left / Right ---------------------*/ - -.ui[class*="left aligned"].search > .results { - right: auto; - left: 0%; -} -.ui[class*="right aligned"].search > .results { - right: 0%; - left: auto; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.search .results { - width: 100%; -} - - -/*-------------- - Sizes ----------------*/ - -.ui.mini.search { - font-size: @relativeMini; -} -.ui.small.search { - font-size: @relativeSmall; -} -.ui.search { - font-size: @relativeMedium; -} -.ui.large.search { - font-size: @relativeLarge; -} -.ui.big.search { - font-size: @relativeBig; -} -.ui.huge.search { - font-size: @relativeHuge; -} -.ui.massive.search { - font-size: @relativeMassive; -} - -/*-------------- - Mobile ----------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.search .results { - max-width: @mobileMaxWidth; - } -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/shape.less b/src/definitions/modules/shape.less deleted file mode 100644 index c2c87f9..0000000 --- a/src/definitions/modules/shape.less +++ /dev/null @@ -1,150 +0,0 @@ -/*! - * # Semantic UI - Shape - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'shape'; - -@import (multiple) '../../theme.config'; - -/******************************* - Shape -*******************************/ - -.ui.shape { - position: relative; - vertical-align: top; - display: @display; - perspective: @perspective; - transition: @transition; -} - -.ui.shape .sides { - transform-style: preserve-3d; -} - -.ui.shape .side { - opacity: 1; - width: 100%; - - margin: @sideMargin !important; - backface-visibility: @backfaceVisibility; -} - -.ui.shape .side { - display: none; -} - -.ui.shape .side * { - backface-visibility: visible !important; -} - -/******************************* - Types -*******************************/ - -.ui.cube.shape .side { - min-width: @cubeSize; - height: @cubeSize; - - padding: @cubePadding; - - background-color: @cubeBackground; - color: @cubeTextColor; - box-shadow: @cubeBoxShadow; -} -.ui.cube.shape .side > .content { - width: 100%; - height: 100%; - display: table; - - text-align: @cubeTextAlign; - user-select: text; -} -.ui.cube.shape .side > .content > div { - display: table-cell; - vertical-align: middle; - font-size: @cubeFontSize; -} - -/******************************* - Variations -*******************************/ - -.ui.text.shape.animating .sides { - position: static; -} -.ui.text.shape .side { - white-space: nowrap; -} -.ui.text.shape .side > * { - white-space: normal; -} - - -/******************************* - States -*******************************/ - -/*-------------- - Loading ----------------*/ - -.ui.loading.shape { - position: absolute; - top: -9999px; - left: -9999px; -} - - -/*-------------- - Animating ----------------*/ - -.ui.shape .animating.side { - position: absolute; - top: 0px; - left: 0px; - display: block; - z-index: @animatingZIndex; -} -.ui.shape .hidden.side { - opacity: @hiddenSideOpacity; -} - - -/*-------------- - CSS ----------------*/ - -.ui.shape.animating .sides { - position: absolute; -} -.ui.shape.animating .sides { - transition: @transition; -} -.ui.shape.animating .side { - transition: @sideTransition; -} - -/*-------------- - Active ----------------*/ - -.ui.shape .active.side { - display: block; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/sidebar.less b/src/definitions/modules/sidebar.less deleted file mode 100644 index 489eff0..0000000 --- a/src/definitions/modules/sidebar.less +++ /dev/null @@ -1,538 +0,0 @@ -/*! - * # Semantic UI - Sidebar - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'sidebar'; - -@import (multiple) '../../theme.config'; - -/******************************* - Sidebar -*******************************/ - -/* Sidebar Menu */ -.ui.sidebar { - position: fixed; - top: 0; - left: 0; - - backface-visibility: hidden; - transition: none; - will-change: transform; - transform: translate3d(0, 0, 0); - visibility: hidden; - -webkit-overflow-scrolling: touch; - - height: 100% !important; - max-height: 100%; - border-radius: 0em !important; - margin: 0em !important; - overflow-y: auto !important; - z-index: @topLayer; -} - -/* GPU Layers for Child Elements */ -.ui.sidebar > * { - backface-visibility: hidden; -} - - -/*-------------- - Direction ----------------*/ - -.ui.left.sidebar { - right: auto; - left: 0px; - transform: translate3d(-100%, 0, 0); -} -.ui.right.sidebar { - right: 0px !important; - left: auto !important; - transform: translate3d(100%, 0%, 0); -} - -.ui.top.sidebar, -.ui.bottom.sidebar { - width: 100% !important; - height: auto !important; -} -.ui.top.sidebar { - top: 0px !important; - bottom: auto !important; - transform: translate3d(0, -100%, 0); -} -.ui.bottom.sidebar { - top: auto !important; - bottom: 0px !important; - transform: translate3d(0, 100%, 0); -} - - -/*-------------- - Pushable ----------------*/ - -.pushable { - height: 100%; - overflow-x: hidden; - padding: 0em !important; -} - -/* Whole Page */ -body.pushable { - background: @canvasBackground !important; -} - -/* Page Context */ -.pushable:not(body) { - transform: translate3d(0, 0, 0); -} -.pushable:not(body) > .ui.sidebar, -.pushable:not(body) > .fixed, -.pushable:not(body) > .pusher:after { - position: absolute; -} - - -/*-------------- - Fixed ----------------*/ - -.pushable > .fixed { - position: fixed; - backface-visibility: hidden; - - transition: transform @duration @easing; - will-change: transform; - z-index: @fixedLayer; -} - -/*-------------- - Page ----------------*/ - -.pushable > .pusher { - position: relative; - backface-visibility: hidden; - overflow: hidden; - min-height: 100%; - transition: transform @duration @easing; - z-index: @middleLayer; -} - -body.pushable > .pusher { - background: @pageBackground; -} - -/* Pusher should inherit background from context */ -.pushable > .pusher { - background: inherit; -} - -/*-------------- - Dimmer ----------------*/ - -.pushable > .pusher:after { - position: fixed; - top: 0px; - right: 0px; - content: ''; - background-color: @dimmerColor; - overflow: hidden; - opacity: 0; - transition: @dimmerTransition; - will-change: opacity; - z-index: @dimmerLayer; -} - -/*-------------- - Coupling ----------------*/ - -.ui.sidebar.menu .item { - border-radius: 0em !important; -} - -/******************************* - States -*******************************/ - -/*-------------- - Dimmed ----------------*/ - -.pushable > .pusher.dimmed:after { - width: 100% !important; - height: 100% !important; - opacity: 1 !important; -} - -/*-------------- - Animating ----------------*/ - -.ui.animating.sidebar { - visibility: visible; -} - -/*-------------- - Visible ----------------*/ - -.ui.visible.sidebar { - visibility: visible; - transform: translate3d(0, 0, 0); -} - -/* Shadow Direction */ -.ui.left.visible.sidebar, -.ui.right.visible.sidebar { - box-shadow: @horizontalBoxShadow; -} -.ui.top.visible.sidebar, -.ui.bottom.visible.sidebar { - box-shadow: @verticalBoxShadow; -} - -/* Visible On Load */ -.ui.visible.left.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .pusher { - transform: translate3d(@width, 0, 0); -} -.ui.visible.right.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .pusher { - transform: translate3d(-@width, 0, 0); -} -.ui.visible.top.sidebar ~ .fixed, -.ui.visible.top.sidebar ~ .pusher { - transform: translate3d(0, @height, 0); -} -.ui.visible.bottom.sidebar ~ .fixed, -.ui.visible.bottom.sidebar ~ .pusher { - transform: translate3d(0, -@height, 0); -} - -/* opposite sides visible forces content overlay */ -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher { - transform: translate3d(0, 0, 0); -} - -/*-------------- - iOS ----------------*/ - - -/******************************* - Variations -*******************************/ - -/*-------------- - Width ----------------*/ - -/* Left / Right */ -.ui.thin.left.sidebar, -.ui.thin.right.sidebar { - width: @thinWidth; -} -.ui[class*="very thin"].left.sidebar, -.ui[class*="very thin"].right.sidebar { - width: @veryThinWidth; -} -.ui.left.sidebar, -.ui.right.sidebar { - width: @width; -} -.ui.wide.left.sidebar, -.ui.wide.right.sidebar { - width: @wideWidth; -} -.ui[class*="very wide"].left.sidebar, -.ui[class*="very wide"].right.sidebar { - width: @veryWideWidth; -} - -/* Left Visible */ -.ui.visible.thin.left.sidebar ~ .fixed, -.ui.visible.thin.left.sidebar ~ .pusher { - transform: translate3d(@thinWidth, 0, 0); -} -.ui.visible[class*="very thin"].left.sidebar ~ .fixed, -.ui.visible[class*="very thin"].left.sidebar ~ .pusher { - transform: translate3d(@veryThinWidth, 0, 0); -} -.ui.visible.wide.left.sidebar ~ .fixed, -.ui.visible.wide.left.sidebar ~ .pusher { - transform: translate3d(@wideWidth, 0, 0); -} -.ui.visible[class*="very wide"].left.sidebar ~ .fixed, -.ui.visible[class*="very wide"].left.sidebar ~ .pusher { - transform: translate3d(@veryWideWidth, 0, 0); -} - -/* Right Visible */ -.ui.visible.thin.right.sidebar ~ .fixed, -.ui.visible.thin.right.sidebar ~ .pusher { - transform: translate3d(-@thinWidth, 0, 0); -} -.ui.visible[class*="very thin"].right.sidebar ~ .fixed, -.ui.visible[class*="very thin"].right.sidebar ~ .pusher { - transform: translate3d(-@veryThinWidth, 0, 0); -} -.ui.visible.wide.right.sidebar ~ .fixed, -.ui.visible.wide.right.sidebar ~ .pusher { - transform: translate3d(-@wideWidth, 0, 0); -} -.ui.visible[class*="very wide"].right.sidebar ~ .fixed, -.ui.visible[class*="very wide"].right.sidebar ~ .pusher { - transform: translate3d(-@veryWideWidth, 0, 0); -} - - - -/******************************* - Animations -*******************************/ - -/*-------------- - Overlay ----------------*/ - -/* Set-up */ -.ui.overlay.sidebar { - z-index: @topLayer; -} - -/* Initial */ -.ui.left.overlay.sidebar { - transform: translate3d(-100%, 0%, 0); -} -.ui.right.overlay.sidebar { - transform: translate3d(100%, 0%, 0); -} -.ui.top.overlay.sidebar { - transform: translate3d(0%, -100%, 0); -} -.ui.bottom.overlay.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* Animation */ -.animating.ui.overlay.sidebar, -.ui.visible.overlay.sidebar { - transition: transform @duration @easing; -} - -/* End - Sidebar */ -.ui.visible.left.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} -.ui.visible.right.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} -.ui.visible.top.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} -.ui.visible.bottom.overlay.sidebar { - transform: translate3d(0%, 0%, 0); -} - -/* End - Pusher */ -.ui.visible.overlay.sidebar ~ .fixed, -.ui.visible.overlay.sidebar ~ .pusher { - transform: none !important; -} - - - -/*-------------- - Push ----------------*/ - -/* Initial */ -.ui.push.sidebar { - transition: transform @duration @easing; - z-index: @topLayer; -} - -/* Sidebar - Initial */ -.ui.left.push.sidebar { - transform: translate3d(-100%, 0, 0); -} -.ui.right.push.sidebar { - transform: translate3d(100%, 0, 0); -} -.ui.top.push.sidebar { - transform: translate3d(0%, -100%, 0); -} -.ui.bottom.push.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* End */ -.ui.visible.push.sidebar { - transform: translate3d(0%, 0, 0); -} - - -/*-------------- - Uncover ----------------*/ - -/* Initial */ -.ui.uncover.sidebar { - transform: translate3d(0, 0, 0); - z-index: @bottomLayer; -} - -/* End */ -.ui.visible.uncover.sidebar { - transform: translate3d(0, 0, 0); - transition: transform @duration @easing; -} - - -/*-------------- - Slide Along ----------------*/ - -/* Initial */ -.ui.slide.along.sidebar { - z-index: @bottomLayer; -} - -/* Sidebar - Initial */ -.ui.left.slide.along.sidebar { - transform: translate3d(-50%, 0, 0); -} -.ui.right.slide.along.sidebar { - transform: translate3d(50%, 0, 0); -} -.ui.top.slide.along.sidebar { - transform: translate3d(0, -50%, 0); -} -.ui.bottom.slide.along.sidebar { - transform: translate3d(0%, 50%, 0); -} - -/* Animation */ -.ui.animating.slide.along.sidebar { - transition: transform @duration @easing; -} - -/* End */ -.ui.visible.slide.along.sidebar { - transform: translate3d(0%, 0, 0); -} - - -/*-------------- - Slide Out ----------------*/ - -/* Initial */ -.ui.slide.out.sidebar { - z-index: @bottomLayer; -} - -/* Sidebar - Initial */ -.ui.left.slide.out.sidebar { - transform: translate3d(50%, 0, 0); -} -.ui.right.slide.out.sidebar { - transform: translate3d(-50%, 0, 0); -} -.ui.top.slide.out.sidebar { - transform: translate3d(0%, 50%, 0); -} -.ui.bottom.slide.out.sidebar { - transform: translate3d(0%, -50%, 0); -} - -/* Animation */ -.ui.animating.slide.out.sidebar { - transition: transform @duration @easing; -} - -/* End */ -.ui.visible.slide.out.sidebar { - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Scale Down ----------------*/ - -/* Initial */ -.ui.scale.down.sidebar { - transition: transform @duration @easing; - z-index: @topLayer; -} - -/* Sidebar - Initial */ -.ui.left.scale.down.sidebar { - transform: translate3d(-100%, 0, 0); -} -.ui.right.scale.down.sidebar { - transform: translate3d(100%, 0, 0); -} -.ui.top.scale.down.sidebar { - transform: translate3d(0%, -100%, 0); -} -.ui.bottom.scale.down.sidebar { - transform: translate3d(0%, 100%, 0); -} - -/* Pusher - Initial */ -.ui.scale.down.left.sidebar ~ .pusher { - transform-origin: 75% 50%; -} -.ui.scale.down.right.sidebar ~ .pusher { - transform-origin: 25% 50%; -} -.ui.scale.down.top.sidebar ~ .pusher { - transform-origin: 50% 75%; -} -.ui.scale.down.bottom.sidebar ~ .pusher { - transform-origin: 50% 25%; -} - -/* Animation */ -.ui.animating.scale.down > .visible.ui.sidebar { - transition: transform @duration @easing; -} -.ui.visible.scale.down.sidebar ~ .pusher, -.ui.animating.scale.down.sidebar ~ .pusher { - display: block !important; - width: 100%; - height: 100%; - overflow: hidden !important; -} - -/* End */ -.ui.visible.scale.down.sidebar { - transform: translate3d(0, 0, 0); -} -.ui.visible.scale.down.sidebar ~ .pusher { - transform: scale(0.75); -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/sticky.less b/src/definitions/modules/sticky.less deleted file mode 100644 index 9ee898d..0000000 --- a/src/definitions/modules/sticky.less +++ /dev/null @@ -1,74 +0,0 @@ -/*! - * # Semantic UI - Sticky - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'sticky'; - -@import (multiple) '../../theme.config'; - -/******************************* - Sticky -*******************************/ - -.ui.sticky { - position: static; - transition: @transition; - z-index: @zIndex; -} - -/******************************* - States -*******************************/ - -/* Bound */ -.ui.sticky.bound { - position: absolute; - left: auto; - right: auto; -} - -/* Fixed */ -.ui.sticky.fixed { - position: fixed; - left: auto; - right: auto; -} - -/* Bound/Fixed Position */ -.ui.sticky.bound.top, -.ui.sticky.fixed.top { - top: 0px; - bottom: auto; -} -.ui.sticky.bound.bottom, -.ui.sticky.fixed.bottom { - top: auto; - bottom: 0px; -} - - -/******************************* - Types -*******************************/ - -.ui.native.sticky { - position: -webkit-sticky; - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/tab.less b/src/definitions/modules/tab.less deleted file mode 100644 index 3f3ba09..0000000 --- a/src/definitions/modules/tab.less +++ /dev/null @@ -1,94 +0,0 @@ -/*! - * # Semantic UI - Tab - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'tab'; - -@import (multiple) '../../theme.config'; - -/******************************* - UI Tabs -*******************************/ - -.ui.tab { - display: none; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Active ----------------------*/ - -.ui.tab.active, -.ui.tab.open { - display: block; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.tab.loading { - position: relative; - overflow: hidden; - display: block; - min-height: @loadingMinHeight; -} -.ui.tab.loading * { - position: @loadingContentPosition !important; - left: @loadingContentOffset !important; -} - -.ui.tab.loading:before, -.ui.tab.loading.segment:before { - position: absolute; - content: ''; - top: @loaderDistanceFromTop; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - border-radius: @circularRadius; - border: @loaderLineWidth solid @loaderFillColor; -} -.ui.tab.loading:after, -.ui.tab.loading.segment:after { - position: absolute; - content: ''; - top: @loaderDistanceFromTop; - left: 50%; - - margin: @loaderMargin; - width: @loaderSize; - height: @loaderSize; - - animation: button-spin @loaderSpeed linear; - animation-iteration-count: infinite; - - border-radius: @circularRadius; - - border-color: @loaderLineColor transparent transparent; - border-style: solid; - border-width: @loaderLineWidth; - - box-shadow: 0px 0px 0px 1px transparent; -} - -.loadUIOverrides(); diff --git a/src/definitions/modules/transition.less b/src/definitions/modules/transition.less deleted file mode 100644 index 92c4963..0000000 --- a/src/definitions/modules/transition.less +++ /dev/null @@ -1,78 +0,0 @@ -/*! - * # Semantic UI - Transition - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'module'; -@element : 'transition'; - -@import (multiple) '../../theme.config'; - -/******************************* - Transitions -*******************************/ - -.transition { - animation-iteration-count: 1; - animation-duration: @transitionDefaultDuration; - animation-timing-function: @transitionDefaultEasing; - animation-fill-mode: @transitionDefaultFill; -} - -/******************************* - States -*******************************/ - - -/* Animating */ -.animating.transition { - backface-visibility: @backfaceVisibility; - visibility: visible !important; -} - -/* Loading */ -.loading.transition { - position: absolute; - top: -99999px; - left: -99999px; -} - -/* Hidden */ -.hidden.transition { - display: none; - visibility: hidden; -} - -/* Visible */ -.visible.transition { - display: block !important; - visibility: visible !important; -/* backface-visibility: @backfaceVisibility; - transform: @use3DAcceleration;*/ -} - -/* Disabled */ -.disabled.transition { - animation-play-state: paused; -} - -/******************************* - Variations -*******************************/ - -.looping.transition { - animation-iteration-count: infinite; -} - - -.loadUIOverrides(); diff --git a/src/definitions/views/ad.less b/src/definitions/views/ad.less deleted file mode 100644 index 3c3b86b..0000000 --- a/src/definitions/views/ad.less +++ /dev/null @@ -1,268 +0,0 @@ -/*! - * # Semantic UI - Ad - * http://github.com/semantic-org/semantic-ui/ - * - * - * Copyright 2013 Contributors - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'ad'; - -@import (multiple) '../../theme.config'; - -/******************************* - Advertisement -*******************************/ - -.ui.ad { - display: block; - overflow: @overflow; - margin: @margin; -} - -.ui.ad:first-child { - margin: 0em; -} - -.ui.ad:last-child { - margin: 0em; -} - -.ui.ad iframe { - margin: 0em; - padding: 0em; - border: none; - overflow: hidden; -} - -/*-------------- - Common ----------------*/ - -/* Leaderboard */ -.ui.leaderboard.ad { - width: 728px; - height: 90px; -} - -/* Medium Rectangle */ -.ui[class*="medium rectangle"].ad { - width: 300px; - height: 250px; -} - -/* Large Rectangle */ -.ui[class*="large rectangle"].ad { - width: 336px; - height: 280px; -} -/* Half Page */ -.ui[class*="half page"].ad { - width: 300px; - height: 600px; -} - -/*-------------- - Square ----------------*/ - -/* Square */ -.ui.square.ad { - width: 250px; - height: 250px; -} - -/* Small Square */ -.ui[class*="small square"].ad { - width: 200px; - height: 200px; -} - -/*-------------- - Rectangle ----------------*/ - -/* Small Rectangle */ -.ui[class*="small rectangle"].ad { - width: 180px; - height: 150px; -} - -/* Vertical Rectangle */ -.ui[class*="vertical rectangle"].ad { - width: 240px; - height: 400px; -} - -/*-------------- - Button ----------------*/ - -.ui.button.ad { - width: 120px; - height: 90px; -} -.ui[class*="square button"].ad { - width: 125px; - height: 125px; -} -.ui[class*="small button"].ad { - width: 120px; - height: 60px; -} - -/*-------------- - Skyscrapers ----------------*/ - -/* Skyscraper */ -.ui.skyscraper.ad { - width: 120px; - height: 600px; -} - -/* Wide Skyscraper */ -.ui[class*="wide skyscraper"].ad { - width: 160px; -} - -/*-------------- - Banners ----------------*/ - -/* Banner */ -.ui.banner.ad { - width: 468px; - height: 60px; -} - -/* Vertical Banner */ -.ui[class*="vertical banner"].ad { - width: 120px; - height: 240px; -} - -/* Top Banner */ -.ui[class*="top banner"].ad { - width: 930px; - height: 180px; -} - -/* Half Banner */ -.ui[class*="half banner"].ad { - width: 234px; - height: 60px; -} - -/*-------------- - Boards ----------------*/ - -/* Leaderboard */ -.ui[class*="large leaderboard"].ad { - width: 970px; - height: 90px; -} - -/* Billboard */ -.ui.billboard.ad { - width: 970px; - height: 250px; -} - -/*-------------- - Panorama ----------------*/ - -/* Panorama */ -.ui.panorama.ad { - width: 980px; - height: 120px; -} - -/*-------------- - Netboard ----------------*/ - -/* Netboard */ -.ui.netboard.ad { - width: 580px; - height: 400px; -} - - - -/*-------------- - Mobile ----------------*/ - -/* Large Mobile Banner */ -.ui[class*="large mobile banner"].ad { - width: 320px; - height: 100px; -} - -/* Mobile Leaderboard */ -.ui[class*="mobile leaderboard"].ad { - width: 320px; - height: 50px; -} - -/******************************* - Types -*******************************/ - -/* Mobile Sizes */ -.ui.mobile.ad { - display: none; -} - -@media only screen and (max-width : @largestMobileScreen) { - .ui.mobile.ad { - display: block; - } -} - - -/******************************* - Variations -*******************************/ - -.ui.centered.ad { - margin-left: auto; - margin-right: auto; -} - -.ui.test.ad { - position: relative; - background: @testBackground; -} -.ui.test.ad:after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - text-align: center; - transform: translateX(-50%) translateY(-50%); - - content: @testText; - color: @testColor; - font-size: @testFontSize; - font-weight: @testFontWeight; -} -.ui.mobile.test.ad:after { - font-size: @testMobileFontSize; -} -.ui.test.ad[data-text]:after { - content: attr(data-text); -} - -.loadUIOverrides(); \ No newline at end of file diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less deleted file mode 100644 index dec49f9..0000000 --- a/src/definitions/views/card.less +++ /dev/null @@ -1,1059 +0,0 @@ -/*! - * # Semantic UI - Item - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'card'; - -@import (multiple) '../../theme.config'; - -/******************************* - Standard -*******************************/ - -/*-------------- - Card ----------------*/ - -.ui.cards > .card, -.ui.card { - max-width: 100%; - position: relative; - display: @display; - flex-direction: column; - - width: @width; - min-height: @minHeight; - background: @background; - padding: @padding; - - border: @border; - border-radius: @borderRadius; - box-shadow: @boxShadow; - transition: @transition; - z-index: @zIndex; -} -.ui.card { - margin: @margin; -} - -.ui.cards > .card a, -.ui.card a { - cursor: pointer; -} - -.ui.card:first-child { - margin-top: 0em; -} -.ui.card:last-child { - margin-bottom: 0em; -} - -/*-------------- - Cards ----------------*/ - -.ui.cards { - display: @groupDisplay; - margin: @groupMargin; - flex-wrap: wrap; -} - -.ui.cards > .card { - display: @groupCardDisplay; - margin: @groupCardMargin; - float: @groupCardFloat; -} - -/* Clearing */ -.ui.cards:after, -.ui.card:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - - -/* Consecutive Card Groups Preserve Row Spacing */ -.ui.cards ~ .ui.cards { - margin-top: @consecutiveGroupDistance; -} - - -/*-------------- - Rounded Edges ----------------*/ - -.ui.cards > .card > :first-child, -.ui.card > :first-child { - border-radius: @borderRadius @borderRadius 0em 0em !important; - border-top: none !important; -} - -.ui.cards > .card > :last-child, -.ui.card > :last-child { - border-radius: 0em 0em @borderRadius @borderRadius !important; -} - -.ui.cards > .card > :only-child, -.ui.card > :only-child { - border-radius: @borderRadius !important; -} - -/*-------------- - Images ----------------*/ - -.ui.cards > .card > .image, -.ui.card > .image { - position: relative; - display: block; - flex: 0 0 auto; - padding: @imagePadding; - background: @imageBackground; -} -.ui.cards > .card > .image > img, -.ui.card > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: inherit; -} -.ui.cards > .card > .image:not(.ui) > img, -.ui.card > .image:not(.ui) > img { - border: @imageBorder; -} - -/*-------------- - Content ----------------*/ - -.ui.cards > .card > .content, -.ui.card > .content { - flex-grow: 1; - border: @contentBorder; - border-top: @contentDivider; - background: @contentBackground; - margin: @contentMargin; - padding: @contentPadding; - box-shadow: @contentBoxShadow; - font-size: @contentFontSize; - border-radius: @contentBorderRadius; -} - -.ui.cards > .card > .content:after, -.ui.card > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.cards > .card > .content > .header, -.ui.card > .content > .header { - display: block; - margin: @headerMargin; - font-family: @headerFont; - color: @headerColor; -} - -/* Default Header Size */ -.ui.cards > .card > .content > .header:not(.ui), -.ui.card > .content > .header:not(.ui) { - font-weight: @headerFontWeight; - font-size: @headerFontSize; - margin-top: @headerLineHeightOffset; - line-height: @headerLineHeight; -} - -.ui.cards > .card > .content > .meta + .description, -.ui.cards > .card > .content > .header + .description, -.ui.card > .content > .meta + .description, -.ui.card > .content > .header + .description { - margin-top: @descriptionDistance; -} - -/*---------------- - Floated Content ------------------*/ - -.ui.cards > .card [class*="left floated"], -.ui.card [class*="left floated"] { - float: left; -} -.ui.cards > .card [class*="right floated"], -.ui.card [class*="right floated"] { - float: right; -} - -/*-------------- - Aligned ----------------*/ - -.ui.cards > .card [class*="left aligned"], -.ui.card [class*="left aligned"] { - text-align: left; -} -.ui.cards > .card [class*="center aligned"], -.ui.card [class*="center aligned"] { - text-align: center; -} -.ui.cards > .card [class*="right aligned"], -.ui.card [class*="right aligned"] { - text-align: right; -} - - -/*-------------- - Content Image ----------------*/ - -.ui.cards > .card .content img, -.ui.card .content img { - display: inline-block; - vertical-align: @contentImageVerticalAlign; - width: @contentImageWidth; -} -.ui.cards > .card img.avatar, -.ui.cards > .card .avatar img, -.ui.card img.avatar, -.ui.card .avatar img { - width: @avatarSize; - height: @avatarSize; - border-radius: @avatarBorderRadius; -} - - -/*-------------- - Description ----------------*/ - -.ui.cards > .card > .content > .description, -.ui.card > .content > .description { - clear: both; - color: @descriptionColor; -} - -/*-------------- - Paragraph ----------------*/ - -.ui.cards > .card > .content p, -.ui.card > .content p { - margin: 0em 0em @paragraphDistance; -} -.ui.cards > .card > .content p:last-child, -.ui.card > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.cards > .card .meta, -.ui.card .meta { - font-size: @metaFontSize; - color: @metaColor; -} -.ui.cards > .card .meta *, -.ui.card .meta * { - margin-right: @metaSpacing; -} -.ui.cards > .card .meta :last-child, -.ui.card .meta :last-child { - margin-right: 0em; -} - -.ui.cards > .card .meta [class*="right floated"], -.ui.card .meta [class*="right floated"] { - margin-right: 0em; - margin-left: @metaSpacing; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ -.ui.cards > .card > .content a:not(.ui), -.ui.card > .content a:not(.ui) { - color: @contentLinkColor; - transition: @contentLinkTransition; -} -.ui.cards > .card > .content a:not(.ui):hover, -.ui.card > .content a:not(.ui):hover { - color: @contentLinkHoverColor; -} - -/* Header */ -.ui.cards > .card > .content > a.header, -.ui.card > .content > a.header { - color: @headerLinkColor; -} -.ui.cards > .card > .content > a.header:hover, -.ui.card > .content > a.header:hover { - color: @headerLinkHoverColor; -} - -/* Meta */ -.ui.cards > .card .meta > a:not(.ui), -.ui.card .meta > a:not(.ui) { - color: @metaLinkColor; -} -.ui.cards > .card .meta > a:not(.ui):hover, -.ui.card .meta > a:not(.ui):hover { - color: @metaLinkHoverColor; -} - -/*-------------- - Buttons ----------------*/ - -.ui.cards > .card > .buttons, -.ui.card > .buttons, -.ui.cards > .card > .button, -.ui.card > .button { - margin: @buttonMargin; - width: @buttonWidth; -} - -/*-------------- - Dimmer ----------------*/ - -.ui.cards > .card .dimmer, -.ui.card .dimmer { - background-color: @dimmerColor; - z-index: @dimmerZIndex; -} - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ -.ui.cards > .card > .content .star.icon, -.ui.card > .content .star.icon { - cursor: pointer; - opacity: @actionOpacity; - transition: @actionTransition; -} -.ui.cards > .card > .content .star.icon:hover, -.ui.card > .content .star.icon:hover { - opacity: @actionHoverOpacity; - color: @starColor; -} -.ui.cards > .card > .content .active.star.icon, -.ui.card > .content .active.star.icon { - color: @starActiveColor; -} - -/*-----Like----- */ - -/* Icon */ -.ui.cards > .card > .content .like.icon, -.ui.card > .content .like.icon { - cursor: pointer; - opacity: @actionOpacity; - transition: @actionTransition; -} -.ui.cards > .card > .content .like.icon:hover, -.ui.card > .content .like.icon:hover { - opacity: @actionHoverOpacity; - color: @likeColor; -} -.ui.cards > .card > .content .active.like.icon, -.ui.card > .content .active.like.icon { - color: @likeActiveColor; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.cards > .card > .extra, -.ui.card > .extra { - max-width: 100%; - min-height: 0em !important; - flex-grow: 0; - border-top: @extraDivider !important; - position: @extraPosition; - background: @extraBackground; - width: @extraWidth; - margin: @extraMargin; - padding: @extraPadding; - top: @extraTop; - left: @extraLeft; - color: @extraColor; - box-shadow: @extraBoxShadow; - transition: @extraTransition; -} -.ui.cards > .card > .extra a:not(.ui), -.ui.card > .extra a:not(.ui) { - color: @extraLinkColor; -} -.ui.cards > .card > .extra a:not(.ui):hover, -.ui.card > .extra a:not(.ui):hover { - color: @extraLinkHoverColor; -} - - -/******************************* - Variations -*******************************/ - -/*------------------- - Raised ---------------------*/ - -.ui.raised.cards > .card, -.ui.raised.card { - box-shadow: @raisedShadow; -} -.ui.raised.cards a.card:hover, -.ui.link.cards .raised.card:hover, -a.ui.raised.card:hover, -.ui.link.raised.card:hover { - box-shadow: @raisedShadowHover; -} - -.ui.raised.cards > .card, -.ui.raised.card { - box-shadow: @raisedShadow; -} -/*------------------- - Centered ---------------------*/ - -.ui.centered.cards { - justify-content: center; -} -.ui.centered.card { - margin-left: auto; - margin-right: auto; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.card { - width: 100%; - max-width: 9999px; -} - -/*------------------- - Link ---------------------*/ - -.ui.cards a.card, -.ui.link.cards .card, -a.ui.card, -.ui.link.card { - transform: none; -} - - -.ui.cards a.card:hover, -.ui.link.cards .card:hover, -a.ui.card:hover, -.ui.link.card:hover { - cursor: pointer; - z-index: @linkHoverZIndex; - background: @linkHoverBackground; - border: @linkHoverBorder; - box-shadow: @linkHoverBoxShadow; - transform: @linkHoverTransform; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ -.ui.red.cards > .card, -.ui.cards > .red.card, -.ui.red.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @red, - @shadowBoxShadow - ; -} -.ui.red.cards > .card:hover, -.ui.cards > .red.card:hover, -.ui.red.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @redHover, - @shadowHoverBoxShadow - ; -} - -/* Orange */ -.ui.orange.cards > .card, -.ui.cards > .orange.card, -.ui.orange.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @orange, - @shadowBoxShadow - ; -} -.ui.orange.cards > .card:hover, -.ui.cards > .orange.card:hover, -.ui.orange.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @orangeHover, - @shadowHoverBoxShadow - ; -} - -/* Yellow */ -.ui.yellow.cards > .card, -.ui.cards > .yellow.card, -.ui.yellow.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @yellow, - @shadowBoxShadow - ; -} -.ui.yellow.cards > .card:hover, -.ui.cards > .yellow.card:hover, -.ui.yellow.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @yellowHover, - @shadowHoverBoxShadow - ; -} - -/* Olive */ -.ui.olive.cards > .card, -.ui.cards > .olive.card, -.ui.olive.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @olive, - @shadowBoxShadow - ; -} -.ui.olive.cards > .card:hover, -.ui.cards > .olive.card:hover, -.ui.olive.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @oliveHover, - @shadowHoverBoxShadow - ; -} - -/* Green */ -.ui.green.cards > .card, -.ui.cards > .green.card, -.ui.green.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @green, - @shadowBoxShadow - ; -} -.ui.green.cards > .card:hover, -.ui.cards > .green.card:hover, -.ui.green.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @greenHover, - @shadowHoverBoxShadow - ; -} - -/* Teal */ -.ui.teal.cards > .card, -.ui.cards > .teal.card, -.ui.teal.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @teal, - @shadowBoxShadow - ; -} -.ui.teal.cards > .card:hover, -.ui.cards > .teal.card:hover, -.ui.teal.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @tealHover, - @shadowHoverBoxShadow - ; -} - -/* Blue */ -.ui.blue.cards > .card, -.ui.cards > .blue.card, -.ui.blue.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @blue, - @shadowBoxShadow - ; -} -.ui.blue.cards > .card:hover, -.ui.cards > .blue.card:hover, -.ui.blue.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @blueHover, - @shadowHoverBoxShadow - ; -} - -/* Violet */ -.ui.violet.cards > .card, -.ui.cards > .violet.card, -.ui.violet.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @violet, - @shadowBoxShadow - ; -} -.ui.violet.cards > .card:hover, -.ui.cards > .violet.card:hover, -.ui.violet.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @violetHover, - @shadowHoverBoxShadow - ; -} - -/* Purple */ -.ui.purple.cards > .card, -.ui.cards > .purple.card, -.ui.purple.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @purple, - @shadowBoxShadow - ; -} -.ui.purple.cards > .card:hover, -.ui.cards > .purple.card:hover, -.ui.purple.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @purpleHover, - @shadowHoverBoxShadow - ; -} - -/* Pink */ -.ui.pink.cards > .card, -.ui.cards > .pink.card, -.ui.pink.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @pink, - @shadowBoxShadow - ; -} -.ui.pink.cards > .card:hover, -.ui.cards > .pink.card:hover, -.ui.pink.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @pinkHover, - @shadowHoverBoxShadow - ; -} - -/* Brown */ -.ui.brown.cards > .card, -.ui.cards > .brown.card, -.ui.brown.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @brown, - @shadowBoxShadow - ; -} -.ui.brown.cards > .card:hover, -.ui.cards > .brown.card:hover, -.ui.brown.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @brownHover, - @shadowHoverBoxShadow - ; -} - -/* Grey */ -.ui.grey.cards > .card, -.ui.cards > .grey.card, -.ui.grey.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @grey, - @shadowBoxShadow - ; -} -.ui.grey.cards > .card:hover, -.ui.cards > .grey.card:hover, -.ui.grey.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @greyHover, - @shadowHoverBoxShadow - ; -} - -/* Black */ -.ui.black.cards > .card, -.ui.cards > .black.card, -.ui.black.card { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @black, - @shadowBoxShadow - ; -} -.ui.black.cards > .card:hover, -.ui.cards > .black.card:hover, -.ui.black.card:hover { - box-shadow: - @borderShadow, - 0px @coloredShadowDistance 0px 0px @blackHover, - @shadowHoverBoxShadow - ; -} - -/*-------------- - Card Count ----------------*/ - -.ui.one.cards { - margin-left: @oneCardOffset; - margin-right: @oneCardOffset; -} -.ui.one.cards > .card { - width: @oneCard; -} - -.ui.two.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; -} -.ui.two.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; -} - -.ui.three.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; -} -.ui.three.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; -} - -.ui.four.cards { - margin-left: @fourCardOffset; - margin-right: @fourCardOffset; -} -.ui.four.cards > .card { - width: @fourCard; - margin-left: @fourCardSpacing; - margin-right: @fourCardSpacing; -} - -.ui.five.cards { - margin-left: @fiveCardOffset; - margin-right: @fiveCardOffset; -} -.ui.five.cards > .card { - width: @fiveCard; - margin-left: @fiveCardSpacing; - margin-right: @fiveCardSpacing; -} - -.ui.six.cards { - margin-left: @sixCardOffset; - margin-right: @sixCardOffset; -} -.ui.six.cards > .card { - width: @sixCard; - margin-left: @sixCardSpacing; - margin-right: @sixCardSpacing; -} - -.ui.seven.cards { - margin-left: @sevenCardOffset; - margin-right: @sevenCardOffset; -} -.ui.seven.cards > .card { - width: @sevenCard; - margin-left: @sevenCardSpacing; - margin-right: @sevenCardSpacing; -} - -.ui.eight.cards { - margin-left: @eightCardOffset; - margin-right: @eightCardOffset; -} -.ui.eight.cards > .card { - width: @eightCard; - margin-left: @eightCardSpacing; - margin-right: @eightCardSpacing; - font-size: 11px; -} - -.ui.nine.cards { - margin-left: @nineCardOffset; - margin-right: @nineCardOffset; -} -.ui.nine.cards > .card { - width: @nineCard; - margin-left: @nineCardSpacing; - margin-right: @nineCardSpacing; - font-size: 10px; -} - -.ui.ten.cards { - margin-left: @tenCardOffset; - margin-right: @tenCardOffset; -} -.ui.ten.cards > .card { - width: @tenCard; - margin-left: @tenCardSpacing; - margin-right: @tenCardSpacing; -} - - -/*------------------- - Doubling ---------------------*/ - -/* Mobile Only */ -@media only screen and (max-width : @largestMobileScreen) { - .ui.two.doubling.cards { - margin-left: @oneCardOffset; - margin-right: @oneCardOffset; - } - .ui.two.doubling.cards > .card { - width: @oneCard; - margin-left: @oneCardSpacing; - margin-right: @oneCardSpacing; - } - .ui.three.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.three.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.four.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.four.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.five.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.five.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.six.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.six.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.seven.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.seven.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.eight.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.eight.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.nine.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.nine.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.ten.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.ten.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } -} - -/* Tablet Only */ -@media only screen and (min-width : @tabletBreakpoint) and (max-width : @largestTabletScreen) { - .ui.two.doubling.cards { - margin-left: @oneCardOffset; - margin-right: @oneCardOffset; - } - .ui.two.doubling.cards > .card { - width: @oneCard; - margin-left: @oneCardSpacing; - margin-right: @oneCardSpacing; - } - .ui.three.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.three.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.four.doubling.cards { - margin-left: @twoCardOffset; - margin-right: @twoCardOffset; - } - .ui.four.doubling.cards > .card { - width: @twoCard; - margin-left: @twoCardSpacing; - margin-right: @twoCardSpacing; - } - .ui.five.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.five.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.six.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.six.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.eight.doubling.cards { - margin-left: @threeCardOffset; - margin-right: @threeCardOffset; - } - .ui.eight.doubling.cards > .card { - width: @threeCard; - margin-left: @threeCardSpacing; - margin-right: @threeCardSpacing; - } - .ui.eight.doubling.cards { - margin-left: @fourCardOffset; - margin-right: @fourCardOffset; - } - .ui.eight.doubling.cards > .card { - width: @fourCard; - margin-left: @fourCardSpacing; - margin-right: @fourCardSpacing; - } - .ui.nine.doubling.cards { - margin-left: @fourCardOffset; - margin-right: @fourCardOffset; - } - .ui.nine.doubling.cards > .card { - width: @fourCard; - margin-left: @fourCardSpacing; - margin-right: @fourCardSpacing; - } - .ui.ten.doubling.cards { - margin-left: @fiveCardOffset; - margin-right: @fiveCardOffset; - } - .ui.ten.doubling.cards > .card { - width: @fiveCard; - margin-left: @fiveCardSpacing; - margin-right: @fiveCardSpacing; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width : @largestMobileScreen) { - .ui.stackable.cards { - display: block !important; - } - .ui.stackable.cards .card:first-child { - margin-top: 0em !important; - } - .ui.stackable.cards > .card { - display: block !important; - height: auto !important; - margin: @stackableRowSpacing @stackableCardSpacing; - padding: 0 !important; - width: @stackableMargin !important; - } -} - - -/*-------------- - Size ----------------*/ - -.ui.cards > .card { - font-size: @medium; -} - -.loadUIOverrides(); diff --git a/src/definitions/views/comment.less b/src/definitions/views/comment.less deleted file mode 100644 index d42d5f1..0000000 --- a/src/definitions/views/comment.less +++ /dev/null @@ -1,269 +0,0 @@ -/*! - * # Semantic UI - Comment - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'comment'; - -@import (multiple) '../../theme.config'; - -/******************************* - Standard -*******************************/ - - -/*-------------- - Comments ----------------*/ - -.ui.comments { - margin: @margin; - max-width: @maxWidth; -} - -.ui.comments:first-child { - margin-top: 0em; -} -.ui.comments:last-child { - margin-bottom: 0em; -} - -/*-------------- - Comment ----------------*/ - -.ui.comments .comment { - position: relative; - background: @commentBackground; - margin: @commentMargin; - padding: @commentPadding; - border: @commentBorder; - border-top: @commentDivider; - line-height: @commentLineHeight; -} -.ui.comments .comment:first-child { - margin-top: @firstCommentMargin; - padding-top: @firstCommentPadding; -} - - -/*-------------------- - Nested Comments ----------------------*/ - -.ui.comments .comment .comments { - margin: @nestedCommentsMargin; - padding: @nestedCommentsPadding; -} -.ui.comments .comment .comments:before{ - position: absolute; - top: 0px; - left: 0px; -} -.ui.comments .comment .comments .comment { - border: @nestedCommentBorder; - border-top: @nestedCommentDivider; - background: @nestedCommentBackground; -} - -/*-------------- - Avatar ----------------*/ - -.ui.comments .comment .avatar { - display: @avatarDisplay; - width: @avatarWidth; - height: @avatarHeight; - float: @avatarFloat; - margin: @avatarMargin; -} -.ui.comments .comment img.avatar, -.ui.comments .comment .avatar img { - display: block; - margin: 0em auto; - width: 100%; - height: 100%; - border-radius: @avatarBorderRadius; -} - -/*-------------- - Content ----------------*/ - -.ui.comments .comment > .content { - display: block; -} -/* If there is an avatar move content over */ -.ui.comments .comment > .avatar ~ .content { - margin-left: @contentMargin; -} - -/*-------------- - Author ----------------*/ - -.ui.comments .comment .author { - font-size: @authorFontSize; - color: @authorColor; - font-weight: @authorFontWeight; -} -.ui.comments .comment a.author { - cursor: pointer; -} -.ui.comments .comment a.author:hover { - color: @authorHoverColor; -} - -/*-------------- - Metadata ----------------*/ - -.ui.comments .comment .metadata { - display: @metadataDisplay; - margin-left: @metadataSpacing; - color: @metadataColor; - font-size: @metadataFontSize; -} -.ui.comments .comment .metadata > * { - display: inline-block; - margin: 0em @metadataContentSpacing 0em 0em; -} -.ui.comments .comment .metadata > :last-child { - margin-right: 0em; -} - -/*-------------------- - Comment Text ----------------------*/ - -.ui.comments .comment .text { - margin: @textMargin; - font-size: @textFontSize; - word-wrap: @textWordWrap; - color: @textColor; - line-height: @textLineHeight; -} - - -/*-------------------- - User Actions ----------------------*/ - -.ui.comments .comment .actions { - font-size: @actionFontSize; -} -.ui.comments .comment .actions a { - cursor: pointer; - display: inline-block; - margin: 0em @actionContentDistance 0em 0em; - color: @actionLinkColor; -} -.ui.comments .comment .actions a:last-child { - margin-right: 0em; -} -.ui.comments .comment .actions a.active, -.ui.comments .comment .actions a:hover { - color: @actionLinkHoverColor; -} - -/*-------------------- - Reply Form ----------------------*/ - -.ui.comments > .reply.form { - margin-top: @replyDistance; -} -.ui.comments .comment .reply.form { - width: 100%; - margin-top: @commentReplyDistance; -} -.ui.comments .reply.form textarea { - font-size: @replyFontSize; - height: @replyHeight; -} - -/******************************* - State -*******************************/ - -.ui.collapsed.comments, -.ui.comments .collapsed.comments, -.ui.comments .collapsed.comment { - display: none; -} - - -/******************************* - Variations -*******************************/ - -/*-------------------- - Threaded ----------------------*/ - -.ui.threaded.comments .comment .comments { - margin: @threadedCommentMargin; - padding: @threadedCommentPadding; - box-shadow: @threadedCommentBoxShadow; -} - -/*-------------------- - Minimal ----------------------*/ - -.ui.minimal.comments .comment .actions { - opacity: 0; - position: @minimalActionPosition; - top: @minimalActionTop; - right: @minimalActionRight; - left: @minimalActionLeft; - transition: @minimalTransition; - transition-delay: @minimalTransitionDelay; -} -.ui.minimal.comments .comment > .content:hover > .actions { - opacity: 1; -} - - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.comments { - font-size: @mini; -} -.ui.tiny.comments { - font-size: @tiny; -} -.ui.small.comments { - font-size: @small; -} -.ui.comments { - font-size: @medium; -} -.ui.large.comments { - font-size: @large; -} -.ui.big.comments { - font-size: @big; -} -.ui.huge.comments { - font-size: @huge; -} -.ui.massive.comments { - font-size: @massive; -} - - -.loadUIOverrides(); diff --git a/src/definitions/views/feed.less b/src/definitions/views/feed.less deleted file mode 100644 index 2447904..0000000 --- a/src/definitions/views/feed.less +++ /dev/null @@ -1,278 +0,0 @@ -/*! - * # Semantic UI - Feed - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'feed'; - -@import (multiple) '../../theme.config'; - -/******************************* - Activity Feed -*******************************/ - -.ui.feed { - margin: @margin; -} -.ui.feed:first-child { - margin-top: 0em; -} -.ui.feed:last-child { - margin-bottom: 0em; -} - - -/******************************* - Content -*******************************/ - -/* Event */ -.ui.feed > .event { - display: flex; - flex-direction: row; - width: @eventWidth; - padding: @eventPadding; - margin: @eventMargin; - background: @eventBackground; - border-top: @eventDivider; -} -.ui.feed > .event:first-child { - border-top: 0px; - padding-top: 0em; -} -.ui.feed > .event:last-child { - padding-bottom: 0em; -} - -/* Event Label */ -.ui.feed > .event > .label { - display: block; - flex: 0 0 auto; - width: @labelWidth; - height: @labelHeight; - align-self: @labelAlignSelf; - text-align: @labelTextAlign; -} -.ui.feed > .event > .label .icon { - opacity: @iconLabelOpacity; - font-size: @iconLabelSize; - width: @iconLabelWidth; - padding: @iconLabelPadding; - background: @iconLabelBackground; - border: @iconLabelBorder; - border-radius: @iconLabelBorderRadius; - color: @iconLabelColor; -} -.ui.feed > .event > .label img { - width: @imageLabelWidth; - height: @imageLabelHeight; - border-radius: @imageLabelBorderRadius; -} -.ui.feed > .event > .label + .content { - margin: @labeledContentMargin; -} - -/*-------------- - Content ----------------*/ - -/* Content */ -.ui.feed > .event > .content { - display: block; - flex: 1 1 auto; - align-self: @contentAlignSelf; - text-align: @contentTextAlign; - word-wrap: @contentWordWrap; -} -.ui.feed > .event:last-child > .content { - padding-bottom: @lastLabeledContentPadding; -} - -/* Link */ -.ui.feed > .event > .content a { - cursor: pointer; -} - -/*-------------- - Date ----------------*/ - -.ui.feed > .event > .content .date { - margin: @dateMargin; - padding: @datePadding; - color: @dateColor; - font-weight: @dateFontWeight; - font-size: @dateFontSize; - font-style: @dateFontStyle; - color: @dateColor; -} - -/*-------------- - Summary ----------------*/ - -.ui.feed > .event > .content .summary { - margin: @summaryMargin; - font-size: @summaryFontSize; - font-weight: @summaryFontWeight; - color: @summaryColor; -} - -/* Summary Image */ -.ui.feed > .event > .content .summary img { - display: inline-block; - width: @summaryImageWidth; - height: @summaryImageHeight; - margin: @summaryImageMargin; - border-radius: @summaryImageBorderRadius; - vertical-align: @summaryImageVerticalAlign; -} -/*-------------- - User ----------------*/ - -.ui.feed > .event > .content .user { - display: inline-block; - font-weight: @userFontWeight; - margin-right: @userDistance; - vertical-align: baseline; -} -.ui.feed > .event > .content .user img { - margin: @userImageMargin; - width: @userImageWidth; - height: @userImageHeight; - vertical-align: @userImageVerticalAlign; -} -/*-------------- - Inline Date ----------------*/ - -/* Date inside Summary */ -.ui.feed > .event > .content .summary > .date { - display: @summaryDateDisplay; - float: @summaryDateFloat; - font-weight: @summaryDateFontWeight; - font-size: @summaryDateFontSize; - font-style: @summaryDateFontStyle; - margin: @summaryDateMargin; - padding: @summaryDatePadding; - color: @summaryDateColor; -} - -/*-------------- - Extra Summary ----------------*/ - -.ui.feed > .event > .content .extra { - margin: @extraMargin; - background: @extraBackground; - padding: @extraPadding; - color: @extraColor; -} - -/* Images */ -.ui.feed > .event > .content .extra.images img { - display: inline-block; - margin: @extraImageMargin; - width: @extraImageWidth; -} - -/* Text */ -.ui.feed > .event > .content .extra.text { - padding: @extraTextPadding; - border-left: @extraTextPointer; - font-size: @extraTextFontSize; - max-width: @extraTextMaxWidth; - line-height: @extraTextLineHeight; -} - -/*-------------- - Meta ----------------*/ - -.ui.feed > .event > .content .meta { - display: @metadataDisplay; - font-size: @metadataFontSize; - margin: @metadataMargin; - background: @metadataBackground; - border: @metadataBorder; - border-radius: @metadataBorderRadius; - box-shadow: @metadataBoxShadow; - padding: @metadataPadding; - color: @metadataColor; -} - -.ui.feed > .event > .content .meta > * { - position: relative; - margin-left: @metadataElementSpacing; -} -.ui.feed > .event > .content .meta > *:after { - content: @metadataDivider; - color: @metadataDividerColor; - top: 0em; - left: @metadataDividerOffset; - opacity: 1; - position: absolute; - vertical-align: top; -} - -.ui.feed > .event > .content .meta .like { - color: @likeColor; - transition: @likeTransition; -} -.ui.feed > .event > .content .meta .like:hover .icon { - color: @likeHoverColor; -} -.ui.feed > .event > .content .meta .active.like .icon { - color: @likeActiveColor; -} - -/* First element */ -.ui.feed > .event > .content .meta > :first-child { - margin-left: 0em; -} -.ui.feed > .event > .content .meta > :first-child::after { - display: none; -} - -/* Action */ -.ui.feed > .event > .content .meta a, -.ui.feed > .event > .content .meta > .icon { - cursor: @metadataActionCursor; - opacity: @metadataActionOpacity; - color: @metadataActionColor; - transition: @metadataActionTransition; -} -.ui.feed > .event > .content .meta a:hover, -.ui.feed > .event > .content .meta a:hover .icon, -.ui.feed > .event > .content .meta > .icon:hover { - color: @metadataActionHoverColor; -} - - - -/******************************* - Variations -*******************************/ - -.ui.small.feed { - font-size: @small; -} -.ui.feed { - font-size: @medium; -} -.ui.large.feed { - font-size: @large; -} - -.loadUIOverrides(); diff --git a/src/definitions/views/item.less b/src/definitions/views/item.less deleted file mode 100644 index b31dd2e..0000000 --- a/src/definitions/views/item.less +++ /dev/null @@ -1,474 +0,0 @@ -/*! - * # Semantic UI - Item - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'item'; - -@import (multiple) '../../theme.config'; - -/******************************* - Standard -*******************************/ - -/*-------------- - Item ----------------*/ - -.ui.items > .item { - display: @display; - margin: @itemSpacing 0em; - width: @width; - min-height: @minHeight; - background: @background; - padding: @padding; - - border: @border; - border-radius: @borderRadius; - box-shadow: @boxShadow; - transition: @transition; - z-index: @zIndex; -} -.ui.items > .item a { - cursor: pointer; -} - -/*-------------- - Items ----------------*/ - -.ui.items { - margin: @groupMargin; -} - -.ui.items:first-child { - margin-top: 0em !important; -} -.ui.items:last-child { - margin-bottom: 0em !important; -} - -/*-------------- - Item ----------------*/ - -.ui.items > .item:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} -.ui.items > .item:first-child { - margin-top: 0em; -} -.ui.items > .item:last-child { - margin-bottom: 0em; -} - - - -/*-------------- - Images ----------------*/ - -.ui.items > .item > .image { - position: relative; - flex: 0 0 auto; - display: @imageDisplay; - float: @imageFloat; - margin: @imageMargin; - padding: @imagePadding; - max-height: @imageMaxHeight; - align-self: @imageVerticalAlign; -} -.ui.items > .item > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: @imageBorderRadius; - border: @imageBorder; -} - -.ui.items > .item > .image:only-child > img { - border-radius: @borderRadius; -} - - -/*-------------- - Content ----------------*/ - -.ui.items > .item > .content { - display: block; - flex: 1 1 auto; - background: @contentBackground; - margin: @contentMargin; - padding: @contentPadding; - box-shadow: @contentBoxShadow; - font-size: @contentFontSize; - border: @contentBorder; - border-radius: @contentBorderRadius; -} -.ui.items > .item > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item > .image + .content { - min-width: 0; - width: @contentWidth; - display: @contentDisplay; - margin-left: @contentOffset; - align-self: @contentVerticalAlign; - padding-left: @contentImageDistance; -} - -.ui.items > .item > .content > .header { - display: inline-block; - margin: @headerMargin; - font-family: @headerFont; - font-weight: @headerFontWeight; - color: @headerColor; -} -/* Default Header Size */ -.ui.items > .item > .content > .header:not(.ui) { - font-size: @headerFontSize; -} - -/*-------------- - Floated ----------------*/ - -.ui.items > .item [class*="left floated"] { - float: left; -} -.ui.items > .item [class*="right floated"] { - float: right; -} - - -/*-------------- - Content Image ----------------*/ - -.ui.items > .item .content img { - align-self: @contentImageVerticalAlign; - width: @contentImageWidth; -} -.ui.items > .item img.avatar, -.ui.items > .item .avatar img { - width: @avatarSize; - height: @avatarSize; - border-radius: @avatarBorderRadius; -} - - -/*-------------- - Description ----------------*/ - -.ui.items > .item > .content > .description { - margin-top: @descriptionDistance; - max-width: @descriptionMaxWidth; - font-size: @descriptionFontSize; - line-height: @descriptionLineHeight; - color: @descriptionColor; -} - -/*-------------- - Paragraph ----------------*/ - -.ui.items > .item > .content p { - margin: 0em 0em @paragraphDistance; -} -.ui.items > .item > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.items > .item .meta { - margin: @metaMargin; - font-size: @metaFontSize; - line-height: @metaLineHeight; - color: @metaColor; -} -.ui.items > .item .meta * { - margin-right: @metaSpacing; -} -.ui.items > .item .meta :last-child { - margin-right: 0em; -} - -.ui.items > .item .meta [class*="right floated"] { - margin-right: 0em; - margin-left: @metaSpacing; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ -.ui.items > .item > .content a:not(.ui) { - color: @contentLinkColor; - transition: @contentLinkTransition; -} -.ui.items > .item > .content a:not(.ui):hover { - color: @contentLinkHoverColor; -} - -/* Header */ -.ui.items > .item > .content > a.header { - color: @headerLinkColor; -} -.ui.items > .item > .content > a.header:hover { - color: @headerLinkHoverColor; -} - -/* Meta */ -.ui.items > .item .meta > a:not(.ui) { - color: @metaLinkColor; -} -.ui.items > .item .meta > a:not(.ui):hover { - color: @metaLinkHoverColor; -} - - - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ -.ui.items > .item > .content .favorite.icon { - cursor: pointer; - opacity: @actionOpacity; - transition: @actionTransition; -} -.ui.items > .item > .content .favorite.icon:hover { - opacity: @actionHoverOpacity; - color: @favoriteColor; -} -.ui.items > .item > .content .active.favorite.icon { - color: @favoriteActiveColor; -} - -/*-----Like----- */ - -/* Icon */ -.ui.items > .item > .content .like.icon { - cursor: pointer; - opacity: @actionOpacity; - transition: @actionTransition; -} -.ui.items > .item > .content .like.icon:hover { - opacity: @actionHoverOpacity; - color: @likeColor; -} -.ui.items > .item > .content .active.like.icon { - color: @likeActiveColor; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.items > .item .extra { - display: @extraDisplay; - position: @extraPosition; - background: @extraBackground; - margin: @extraMargin; - width: @extraWidth; - padding: @extraPadding; - top: @extraTop; - left: @extraLeft; - color: @extraColor; - box-shadow: @extraBoxShadow; - transition: @extraTransition; - border-top: @extraDivider; -} -.ui.items > .item .extra > * { - margin: (@extraRowSpacing / 2) @extraHorizontalSpacing (@extraRowSpacing / 2) 0em; -} -.ui.items > .item .extra > [class*="right floated"] { - margin: (@extraRowSpacing / 2) 0em (@extraRowSpacing / 2) @extraHorizontalSpacing; -} - -.ui.items > .item .extra:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - - -/******************************* - Responsive -*******************************/ - -/* Default Image Width */ -.ui.items > .item > .image:not(.ui) { - width: @imageWidth; -} - - -/* Tablet Only */ -@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) { - .ui.items > .item { - margin: @tabletItemSpacing 0em; - } - .ui.items > .item > .image:not(.ui) { - width: @tabletImageWidth; - } - .ui.items > .item > .image + .content { - display: block; - padding: 0em 0em 0em @tabletContentImageDistance; - } - -} - -/* Mobile Only */ -@media only screen and (max-width: @largestMobileScreen) { - .ui.items:not(.unstackable) > .item { - flex-direction: column; - margin: @mobileItemSpacing 0em; - } - .ui.items:not(.unstackable) > .item > .image { - display: block; - margin-left: auto; - margin-right: auto; - } - .ui.items:not(.unstackable) > .item > .image, - .ui.items:not(.unstackable) > .item > .image > img { - max-width: 100% !important; - width: @mobileImageWidth !important; - max-height: @mobileImageMaxHeight !important; - } - .ui.items:not(.unstackable) > .item > .image + .content { - display: block; - padding: @mobileContentImageDistance 0em 0em; - } -} - - -/******************************* - Variations -*******************************/ - - -/*------------------- - Aligned ---------------------*/ - -.ui.items > .item > .image + [class*="top aligned"].content { - align-self: flex-start; -} -.ui.items > .item > .image + [class*="middle aligned"].content { - align-self: center; -} -.ui.items > .item > .image + [class*="bottom aligned"].content { - align-self: flex-end; -} - - -/*-------------- - Relaxed ----------------*/ - -.ui.relaxed.items > .item { - margin: @relaxedItemSpacing 0em; -} -.ui[class*="very relaxed"].items > .item { - margin: @veryRelaxedItemSpacing 0em; -} - - -/*------------------- - Divided ---------------------*/ - -.ui.divided.items > .item { - border-top: @dividedBorder; - margin: @dividedMargin; - padding: @dividedPadding; -} -.ui.divided.items > .item:first-child { - border-top: none; - margin-top: @dividedFirstLastMargin !important; - padding-top: @dividedFirstLastPadding !important; -} -.ui.divided.items > .item:last-child { - margin-bottom: @dividedFirstLastMargin !important; - padding-bottom: @dividedFirstLastPadding !important; -} - -/* Relaxed Divided */ -.ui.relaxed.divided.items > .item { - margin: 0em; - padding: @relaxedItemSpacing 0em; -} -.ui[class*="very relaxed"].divided.items > .item { - margin: 0em; - padding: @veryRelaxedItemSpacing 0em; -} - - -/*------------------- - Link ---------------------*/ - -.ui.items a.item:hover, -.ui.link.items > .item:hover { - cursor: pointer; -} - -.ui.items a.item:hover .content .header, -.ui.link.items > .item:hover .content .header { - color: @headerLinkHoverColor; -} - - -/*-------------- - Size ----------------*/ - -.ui.items > .item { - font-size: @relativeMedium; -} - -/*--------------- - Unstackable -----------------*/ - -@media only screen and (max-width: @largestMobileScreen) { - .ui.unstackable.items > .item > .image, - .ui.unstackable.items > .item > .image > img { - width: @unstackableMobileImageWidth !important; - } -} - -.loadUIOverrides(); diff --git a/src/definitions/views/statistic.less b/src/definitions/views/statistic.less deleted file mode 100644 index 5e8f898..0000000 --- a/src/definitions/views/statistic.less +++ /dev/null @@ -1,554 +0,0 @@ -/*! - * # Semantic UI - Statistic - * http://github.com/semantic-org/semantic-ui/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - -/******************************* - Theme -*******************************/ - -@type : 'view'; -@element : 'statistic'; - -@import (multiple) '../../theme.config'; - -/******************************* - Statistic -*******************************/ - -/* Standalone */ -.ui.statistic { - display: inline-flex; - flex-direction: column; - margin: @margin; - max-width: @maxWidth; -} - -.ui.statistic + .ui.statistic { - margin: 0em 0em 0em @horizontalSpacing; -} - -.ui.statistic:first-child { - margin-top: 0em; -} -.ui.statistic:last-child { - margin-bottom: 0em; -} - - - -/******************************* - Group -*******************************/ - -/* Grouped */ -.ui.statistics { - display: flex; - align-items: flex-start; - flex-wrap: wrap; -} -.ui.statistics > .statistic { - display: inline-flex; - flex: 0 1 auto; - flex-direction: column; - margin: @elementMargin; - max-width: @elementMaxWidth; -} -.ui.statistics { - display: flex; - margin: @groupMargin; -} - -/* Clearing */ -.ui.statistics:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.statistics:first-child { - margin-top: 0em; -} - - -/******************************* - Content -*******************************/ - - -/*-------------- - Value ----------------*/ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-family: @valueFont; - font-size: @valueSize; - font-weight: @valueFontWeight; - line-height: @valueLineHeight; - color: @valueColor; - text-transform: @valueTextTransform; - text-align: @textAlign; -} - -/*-------------- - Label ----------------*/ - -.ui.statistics .statistic > .label, -.ui.statistic > .label { - font-family: @labelFont; - font-size: @labelSize; - font-weight: @labelFontWeight; - color: @labelColor; - text-transform: @labelTextTransform; - text-align: @textAlign; -} - -/* Top Label */ -.ui.statistics .statistic > .label ~ .value, -.ui.statistic > .label ~ .value { - margin-top: @topLabelDistance; -} - -/* Bottom Label */ -.ui.statistics .statistic > .value ~ .label, -.ui.statistic > .value ~ .label { - margin-top: @bottomLabelDistance; -} - - - -/******************************* - Types -*******************************/ - -/*-------------- - Icon Value ----------------*/ - -.ui.statistics .statistic > .value .icon, -.ui.statistic > .value .icon { - opacity: 1; - width: auto; - margin: 0em; -} - -/*-------------- - Text Value ----------------*/ - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - line-height: @textValueLineHeight; - min-height: @textValueMinHeight; - font-weight: @textValueFontWeight; - text-align: center; -} -.ui.statistics .statistic > .text.value + .label, -.ui.statistic > .text.value + .label { - text-align: center; -} - -/*-------------- - Image Value ----------------*/ - -.ui.statistics .statistic > .value img, -.ui.statistic > .value img { - max-height: @imageHeight; - vertical-align: @imageVerticalAlign; -} - - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Count ----------------*/ - - -.ui.ten.statistics { - margin: @itemGroupMargin; -} -.ui.ten.statistics .statistic { - min-width: @tenColumn; - margin: @itemMargin; -} - -.ui.nine.statistics { - margin: @itemGroupMargin; -} -.ui.nine.statistics .statistic { - min-width: @nineColumn; - margin: @itemMargin; -} - -.ui.eight.statistics { - margin: @itemGroupMargin; -} -.ui.eight.statistics .statistic { - min-width: @eightColumn; - margin: @itemMargin; -} - -.ui.seven.statistics { - margin: @itemGroupMargin; -} -.ui.seven.statistics .statistic { - min-width: @sevenColumn; - margin: @itemMargin; -} - -.ui.six.statistics { - margin: @itemGroupMargin; -} -.ui.six.statistics .statistic { - min-width: @sixColumn; - margin: @itemMargin; -} - -.ui.five.statistics { - margin: @itemGroupMargin; -} -.ui.five.statistics .statistic { - min-width: @fiveColumn; - margin: @itemMargin; -} - -.ui.four.statistics { - margin: @itemGroupMargin; -} -.ui.four.statistics .statistic { - min-width: @fourColumn; - margin: @itemMargin; -} - -.ui.three.statistics { - margin: @itemGroupMargin; -} -.ui.three.statistics .statistic { - min-width: @threeColumn; - margin: @itemMargin; -} - -.ui.two.statistics { - margin: @itemGroupMargin; -} -.ui.two.statistics .statistic { - min-width: @twoColumn; - margin: @itemMargin; -} - -.ui.one.statistics { - margin: @itemGroupMargin; -} -.ui.one.statistics .statistic { - min-width: @oneColumn; - margin: @itemMargin; -} - - - - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.statistic { - flex-direction: row; - align-items: center; -} -.ui.horizontal.statistics { - flex-direction: column; - margin: 0em; - max-width: none; -} -.ui.horizontal.statistics .statistic { - flex-direction: row; - align-items: center; - max-width: none; - margin: @horizontalGroupElementMargin; -} - -.ui.horizontal.statistic > .text.value, -.ui.horizontal.statistics > .statistic > .text.value { - min-height: 0em !important; -} -.ui.horizontal.statistics .statistic > .value .icon, -.ui.horizontal.statistic > .value .icon { - width: @iconWidth; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - display: inline-block; - vertical-align: middle; -} -.ui.horizontal.statistics .statistic > .label, -.ui.horizontal.statistic > .label { - display: inline-block; - vertical-align: middle; - margin: 0em 0em 0em @horizontalLabelDistance; -} - -/*-------------- - Colors ----------------*/ - -.ui.red.statistics .statistic > .value, -.ui.statistics .red.statistic > .value, -.ui.red.statistic > .value { - color: @red; -} -.ui.orange.statistics .statistic > .value, -.ui.statistics .orange.statistic > .value, -.ui.orange.statistic > .value { - color: @orange; -} -.ui.yellow.statistics .statistic > .value, -.ui.statistics .yellow.statistic > .value, -.ui.yellow.statistic > .value { - color: @yellow; -} -.ui.olive.statistics .statistic > .value, -.ui.statistics .olive.statistic > .value, -.ui.olive.statistic > .value { - color: @olive; -} -.ui.green.statistics .statistic > .value, -.ui.statistics .green.statistic > .value, -.ui.green.statistic > .value { - color: @green; -} -.ui.teal.statistics .statistic > .value, -.ui.statistics .teal.statistic > .value, -.ui.teal.statistic > .value { - color: @teal; -} -.ui.blue.statistics .statistic > .value, -.ui.statistics .blue.statistic > .value, -.ui.blue.statistic > .value { - color: @blue; -} -.ui.violet.statistics .statistic > .value, -.ui.statistics .violet.statistic > .value, -.ui.violet.statistic > .value { - color: @violet; -} -.ui.purple.statistics .statistic > .value, -.ui.statistics .purple.statistic > .value, -.ui.purple.statistic > .value { - color: @purple; -} -.ui.pink.statistics .statistic > .value, -.ui.statistics .pink.statistic > .value, -.ui.pink.statistic > .value { - color: @pink; -} -.ui.brown.statistics .statistic > .value, -.ui.statistics .brown.statistic > .value, -.ui.brown.statistic > .value { - color: @brown; -} -.ui.grey.statistics .statistic > .value, -.ui.statistics .grey.statistic > .value, -.ui.grey.statistic > .value { - color: @grey; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.statistics .statistic > .value, -.ui.inverted.statistic .value { - color: @invertedValueColor; -} -.ui.inverted.statistics .statistic > .label, -.ui.inverted.statistic .label { - color: @invertedLabelColor; -} - -.ui.inverted.red.statistics .statistic > .value, -.ui.statistics .inverted.red.statistic > .value, -.ui.inverted.red.statistic > .value { - color: @lightRed; -} -.ui.inverted.orange.statistics .statistic > .value, -.ui.statistics .inverted.orange.statistic > .value, -.ui.inverted.orange.statistic > .value { - color: @lightOrange; -} -.ui.inverted.yellow.statistics .statistic > .value, -.ui.statistics .inverted.yellow.statistic > .value, -.ui.inverted.yellow.statistic > .value { - color: @lightYellow; -} -.ui.inverted.olive.statistics .statistic > .value, -.ui.statistics .inverted.olive.statistic > .value, -.ui.inverted.olive.statistic > .value { - color: @lightOlive; -} -.ui.inverted.green.statistics .statistic > .value, -.ui.statistics .inverted.green.statistic > .value, -.ui.inverted.green.statistic > .value { - color: @lightGreen; -} -.ui.inverted.teal.statistics .statistic > .value, -.ui.statistics .inverted.teal.statistic > .value, -.ui.inverted.teal.statistic > .value { - color: @lightTeal; -} -.ui.inverted.blue.statistics .statistic > .value, -.ui.statistics .inverted.blue.statistic > .value, -.ui.inverted.blue.statistic > .value { - color: @lightBlue; -} -.ui.inverted.violet.statistics .statistic > .value, -.ui.statistics .inverted.violet.statistic > .value, -.ui.inverted.violet.statistic > .value { - color: @lightViolet; -} -.ui.inverted.purple.statistics .statistic > .value, -.ui.statistics .inverted.purple.statistic > .value, -.ui.inverted.purple.statistic > .value { - color: @lightPurple; -} -.ui.inverted.pink.statistics .statistic > .value, -.ui.statistics .inverted.pink.statistic > .value, -.ui.inverted.pink.statistic > .value { - color: @lightPink; -} -.ui.inverted.brown.statistics .statistic > .value, -.ui.statistics .inverted.brown.statistic > .value, -.ui.inverted.brown.statistic > .value { - color: @lightBrown; -} -.ui.inverted.grey.statistics .statistic > .value, -.ui.statistics .inverted.grey.statistic > .value, -.ui.inverted.grey.statistic > .value { - color: @lightGrey; -} - -/*-------------- - Floated ----------------*/ - -.ui[class*="left floated"].statistic { - float: left; - margin: @leftFloatedMargin; -} -.ui[class*="right floated"].statistic { - float: right; - margin: @rightFloatedMargin; -} -.ui.floated.statistic:last-child { - margin-bottom: 0em; -} - - -/*-------------- - Sizes ----------------*/ - - -/* Mini */ -.ui.mini.statistics .statistic > .value, -.ui.mini.statistic > .value { - font-size: @miniValueSize !important; -} -.ui.mini.horizontal.statistics .statistic > .value, -.ui.mini.horizontal.statistic > .value { - font-size: @miniHorizontalValueSize !important; -} -.ui.mini.statistics .statistic > .text.value, -.ui.mini.statistic > .text.value { - font-size: @miniTextValueSize !important; -} - - -/* Tiny */ -.ui.tiny.statistics .statistic > .value, -.ui.tiny.statistic > .value { - font-size: @tinyValueSize !important; -} -.ui.tiny.horizontal.statistics .statistic > .value, -.ui.tiny.horizontal.statistic > .value { - font-size: @tinyHorizontalValueSize !important; -} -.ui.tiny.statistics .statistic > .text.value, -.ui.tiny.statistic > .text.value { - font-size: @tinyTextValueSize !important; -} - -/* Small */ -.ui.small.statistics .statistic > .value, -.ui.small.statistic > .value { - font-size: @smallValueSize !important; -} -.ui.small.horizontal.statistics .statistic > .value, -.ui.small.horizontal.statistic > .value { - font-size: @smallHorizontalValueSize !important; -} -.ui.small.statistics .statistic > .text.value, -.ui.small.statistic > .text.value { - font-size: @smallTextValueSize !important; -} - -/* Medium */ -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-size: @valueSize !important; -} -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - font-size: @horizontalValueSize !important; -} -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - font-size: @textValueSize !important; -} - -/* Large */ -.ui.large.statistics .statistic > .value, -.ui.large.statistic > .value { - font-size: @largeValueSize !important; -} -.ui.large.horizontal.statistics .statistic > .value, -.ui.large.horizontal.statistic > .value { - font-size: @largeHorizontalValueSize !important; -} -.ui.large.statistics .statistic > .text.value, -.ui.large.statistic > .text.value { - font-size: @largeTextValueSize !important; -} - -/* Huge */ -.ui.huge.statistics .statistic > .value, -.ui.huge.statistic > .value { - font-size: @hugeValueSize !important; -} -.ui.huge.horizontal.statistics .statistic > .value, -.ui.huge.horizontal.statistic > .value { - font-size: @hugeHorizontalValueSize !important; -} -.ui.huge.statistics .statistic > .text.value, -.ui.huge.statistic > .text.value { - font-size: @hugeTextValueSize !important; -} - - -.loadUIOverrides(); diff --git a/src/semantic.less b/src/semantic.less deleted file mode 100644 index e3cf111..0000000 --- a/src/semantic.less +++ /dev/null @@ -1,66 +0,0 @@ -/* - -███████╗███████╗███╗ ███╗ █████╗ ███╗ ██╗████████╗██╗ ██████╗ ██╗ ██╗██╗ -██╔════╝██╔════╝████╗ ████║██╔══██╗████╗ ██║╚══██╔══╝██║██╔════╝ ██║ ██║██║ -███████╗█████╗ ██╔████╔██║███████║██╔██╗ ██║ ██║ ██║██║ ██║ ██║██║ -╚════██║██╔══╝ ██║╚██╔╝██║██╔══██║██║╚██╗██║ ██║ ██║██║ ██║ ██║██║ -███████║███████╗██║ ╚═╝ ██║██║ ██║██║ ╚████║ ██║ ██║╚██████╗ ╚██████╔╝██║ -╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ - - Import this file into your LESS project to use Semantic UI without build tools -*/ - -/* Global */ -& { @import "definitions/globals/site"; } - -/* Elements */ -& { @import "definitions/elements/button"; } -& { @import "definitions/elements/container"; } -& { @import "definitions/elements/divider"; } -& { @import "definitions/elements/flag"; } -& { @import "definitions/elements/header"; } -& { @import "definitions/elements/icon"; } -& { @import "definitions/elements/image"; } -& { @import "definitions/elements/input"; } -& { @import "definitions/elements/label"; } -& { @import "definitions/elements/list"; } -& { @import "definitions/elements/loader"; } -& { @import "definitions/elements/placeholder"; } -& { @import "definitions/elements/rail"; } -& { @import "definitions/elements/reveal"; } -& { @import "definitions/elements/segment"; } -& { @import "definitions/elements/step"; } - -/* Collections */ -& { @import "definitions/collections/breadcrumb"; } -& { @import "definitions/collections/form"; } -& { @import "definitions/collections/grid"; } -& { @import "definitions/collections/menu"; } -& { @import "definitions/collections/message"; } -& { @import "definitions/collections/table"; } - -/* Views */ -& { @import "definitions/views/ad"; } -& { @import "definitions/views/card"; } -& { @import "definitions/views/comment"; } -& { @import "definitions/views/feed"; } -& { @import "definitions/views/item"; } -& { @import "definitions/views/statistic"; } - -/* Modules */ -& { @import "definitions/modules/accordion"; } -& { @import "definitions/modules/checkbox"; } -& { @import "definitions/modules/dimmer"; } -& { @import "definitions/modules/dropdown"; } -& { @import "definitions/modules/embed"; } -& { @import "definitions/modules/modal"; } -& { @import "definitions/modules/nag"; } -& { @import "definitions/modules/popup"; } -& { @import "definitions/modules/progress"; } -& { @import "definitions/modules/rating"; } -& { @import "definitions/modules/search"; } -& { @import "definitions/modules/shape"; } -& { @import "definitions/modules/sidebar"; } -& { @import "definitions/modules/sticky"; } -& { @import "definitions/modules/tab"; } -& { @import "definitions/modules/transition"; } diff --git a/src/site/collections/breadcrumb.overrides b/src/site/collections/breadcrumb.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/collections/breadcrumb.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/breadcrumb.variables b/src/site/collections/breadcrumb.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/collections/breadcrumb.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/form.overrides b/src/site/collections/form.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/collections/form.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/form.variables b/src/site/collections/form.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/collections/form.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/collections/grid.overrides b/src/site/collections/grid.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/collections/grid.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/grid.variables b/src/site/collections/grid.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/collections/grid.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/collections/menu.overrides b/src/site/collections/menu.overrides deleted file mode 100644 index c172e5f..0000000 --- a/src/site/collections/menu.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ \ No newline at end of file diff --git a/src/site/collections/menu.variables b/src/site/collections/menu.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/collections/menu.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/collections/message.overrides b/src/site/collections/message.overrides deleted file mode 100644 index 96091c3..0000000 --- a/src/site/collections/message.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/message.variables b/src/site/collections/message.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/collections/message.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/collections/table.overrides b/src/site/collections/table.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/collections/table.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/collections/table.variables b/src/site/collections/table.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/collections/table.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/button.overrides b/src/site/elements/button.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/button.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/button.variables b/src/site/elements/button.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/button.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/container.overrides b/src/site/elements/container.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/container.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/container.variables b/src/site/elements/container.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/container.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/divider.overrides b/src/site/elements/divider.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/divider.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/divider.variables b/src/site/elements/divider.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/divider.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/flag.overrides b/src/site/elements/flag.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/flag.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/flag.variables b/src/site/elements/flag.variables deleted file mode 100644 index e3e125d..0000000 --- a/src/site/elements/flag.variables +++ /dev/null @@ -1,3 +0,0 @@ -/*------------------- - Flag Variables ---------------------*/ diff --git a/src/site/elements/header.overrides b/src/site/elements/header.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/header.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/header.variables b/src/site/elements/header.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/header.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/icon.overrides b/src/site/elements/icon.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/icon.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/icon.variables b/src/site/elements/icon.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/icon.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/image.overrides b/src/site/elements/image.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/image.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/image.variables b/src/site/elements/image.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/image.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/input.overrides b/src/site/elements/input.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/input.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/input.variables b/src/site/elements/input.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/input.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/label.overrides b/src/site/elements/label.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/label.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/label.variables b/src/site/elements/label.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/label.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/list.overrides b/src/site/elements/list.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/list.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/list.variables b/src/site/elements/list.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/list.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/loader.overrides b/src/site/elements/loader.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/loader.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/loader.variables b/src/site/elements/loader.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/loader.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/rail.overrides b/src/site/elements/rail.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/rail.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/rail.variables b/src/site/elements/rail.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/rail.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/reveal.overrides b/src/site/elements/reveal.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/reveal.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/reveal.variables b/src/site/elements/reveal.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/reveal.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/segment.overrides b/src/site/elements/segment.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/segment.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/segment.variables b/src/site/elements/segment.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/segment.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/elements/step.overrides b/src/site/elements/step.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/elements/step.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/elements/step.variables b/src/site/elements/step.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/elements/step.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/globals/site.overrides b/src/site/globals/site.overrides deleted file mode 100644 index 29812c4..0000000 --- a/src/site/globals/site.overrides +++ /dev/null @@ -1,1036 +0,0 @@ -/******************************* - Site Overrides -*******************************/ - -:root { - /******************************* - Site Settings - *******************************/ - - /*------------------- - Fonts - --------------------*/ - - --font-name: @fontName; - --font-smoothing: @fontSmoothing; - - --header-font: @headerFont; - --page-font: @pageFont; - - --google-font-name: @googleFontName; - --import-google-fonts: @importGoogleFonts; - --google-font-sizes: @googleFontSizes; - --google-subset: @googleSubset; - - --google-protocol: @googleProtocol; - --google-font-request: @googleFontRequest; - - /*------------------- - Base Sizes - --------------------*/ - - /* This is the single variable that controls them all */ - --em-size: @emSize; - - /* The size of page text */ - --font-size: @fontSize; - - - /*------------------- - Border Radius - --------------------*/ - - /* See Power-user section below - for explanation of @px variables - */ - --relative-border-radius: @relativeBorderRadius; - --absolute-border-radius: @absoluteBorderRadius; - - --default-border-radius: @defaultBorderRadius; - - /*------------------- - Brand Colors - --------------------*/ - - --primary-color: @primaryColor; - --secondary-color: @secondaryColor; - - --light-primary-color: @lightPrimaryColor; - --light-secondary-color: @lightSecondaryColor; - - /*-------------- - Page Heading - ---------------*/ - - --header-font-weight: @headerFontWeight; - --header-line-height: @headerLineHeight; - - --h1: @h1; - --h2: @h2; - --h3: @h3; - --h4: @h4; - --h5: @h5; - - /*-------------- - Form Input - ---------------*/ - - /* This adjusts the default form input across all elements */ - --input-background: @inputBackground; - --input-vertical-padding: @inputVerticalPadding; - --input-horizontal-padding: @inputHorizontalPadding; - --input-padding: @inputPadding; - - /* Input Text Color */ - --input-color: @inputColor; - --input-placeholder-color: @inputPlaceholderColor; - --input-placeholder-focus-color: @inputPlaceholderFocusColor; - - /* Line Height Default For Inputs in Browser */ - --input-line-height: @inputLineHeight; - - /*------------------- - Focused Input - --------------------*/ - - /* Used on inputs, textarea etc */ - --focused-form-border-color: @focusedFormBorderColor; - - /* Used on dropdowns, other larger blocks */ - --focused-form-muted-border-color: @focusedFormMutedBorderColor; - - --unfocused-outline-color: @unfocusedOutlineColor; - --unfocused-outline-offset: @unfocusedOutlineOffset; - --focused-outline-style: @focusedOutlineStyle; - --focused-outline-width: @focusedOutlineWidth; - --focused-outline-color: @focusedOutlineColor; - --focused-outline-offset: @focusedOutlineOffset; - - /*------------------- - Sizes - --------------------*/ - - /* - Sizes are all expressed in terms of 14px/em (default em) - This ensures these "ratios" remain constant despite changes in EM - */ - - --mini-size: @miniSize; - --tiny-size: @tinySize; - --small-size: @smallSize; - --medium-size: @mediumSize; - --large-size: @largeSize; - --big-size: @bigSize; - --huge-size: @hugeSize; - --massive-size: @massiveSize; - - - /*------------------- - Page - --------------------*/ - - --page-background: @pageBackground; - --page-overflow-x: @pageOverflowX; - - --line-height: @lineHeight; - --text-color: @textColor; - - /*------------------- - Paragraph - --------------------*/ - - --paragraph-margin: @paragraphMargin; - --paragraph-line-height: @paragraphLineHeight; - - /*------------------- - Links - --------------------*/ - - --link-color: @linkColor; - --link-underline: @linkUnderline; - --link-hover-color: @linkHoverColor; - --link-hover-underline: @linkHoverUnderline; - - /*------------------- - Highlighted Text - --------------------*/ - - --highlight-background: @highlightBackground; - --highlight-color: @highlightColor; - - --input-highlight-background: @inputHighlightBackground; - --input-highlight-color: @inputHighlightColor; - - - /*------------------- - Loader - --------------------*/ - - --loader-size: @loaderSize; - --loader-speed: @loaderSpeed; - --loader-line-width: @loaderLineWidth; - --loader-fill-color: @loaderFillColor; - --loader-line-color: @loaderLineColor; - - --inverted-loader-fill-color: @invertedLoaderFillColor; - --inverted-loader-line-color: @invertedLoaderLineColor; - - /*------------------- - Grid - --------------------*/ - - --column-count: @columnCount; - - /*------------------- - Transitions - --------------------*/ - - --default-duration: @defaultDuration; - --default-easing: @defaultEasing; - - /*------------------- - Breakpoints - --------------------*/ - - --mobile-breakpoint: @mobileBreakpoint; - --tablet-breakpoint: @tabletBreakpoint; - --computer-breakpoint: @computerBreakpoint; - --large-monitor-breakpoint: @largeMonitorBreakpoint; - --widescreen-monitor-breakpoint: @widescreenMonitorBreakpoint; - - /*------------------- - Site Colors - --------------------*/ - - /*--- Colors ---*/ - --red: @red; - --orange: @orange; - --yellow: @yellow; - --olive: @olive; - --green: @green; - --teal: @teal; - --blue: @blue; - --violet: @violet; - --purple: @purple; - --pink: @pink; - --brown: @brown; - --grey: @grey; - --black: @black; - - /*--- Light Colors ---*/ - --light-red: @lightRed; - --light-orange: @lightOrange; - --light-yellow: @lightYellow; - --light-olive: @lightOlive; - --light-green: @lightGreen; - --light-teal: @lightTeal; - --light-blue: @lightBlue; - --light-violet: @lightViolet; - --light-purple: @lightPurple; - --light-pink: @lightPink; - --light-brown: @lightBrown; - --light-grey: @lightGrey; - --light-black: @lightBlack; - - /*--- Neutrals ---*/ - --full-black: @fullBlack; - --off-white: @offWhite; - --dark-white: @darkWhite; - --mid-white: @midWhite; - --white: @white; - - /*--- Colored Backgrounds ---*/ - --red-background: @redBackground; - --orange-background: @orangeBackground; - --yellow-background: @yellowBackground; - --olive-background: @oliveBackground; - --green-background: @greenBackground; - --teal-background: @tealBackground; - --blue-background: @blueBackground; - --violet-background: @violetBackground; - --purple-background: @purpleBackground; - --pink-background: @pinkBackground; - --brown-background: @brownBackground; - - /*--- Colored Headers ---*/ - --red-header-color: @redHeaderColor; - --olive-header-color: @oliveHeaderColor; - --green-header-color: @greenHeaderColor; - --yellow-header-color: @yellowHeaderColor; - --blue-header-color: @blueHeaderColor; - --teal-header-color: @tealHeaderColor; - --pink-header-color: @pinkHeaderColor; - --violet-header-color: @violetHeaderColor; - --purple-header-color: @purpleHeaderColor; - --orange-header-color: @orangeHeaderColor; - --brown-header-color: @brownHeaderColor; - - /*--- Colored Text ---*/ - --red-text-color: @redTextColor; - --orange-text-color: @orangeTextColor; - --yellow-text-color: @yellowTextColor; - --olive-text-color: @oliveTextColor; - --green-text-color: @greenTextColor; - --teal-text-color: @tealTextColor; - --blue-text-color: @blueTextColor; - --violet-text-color: @violetTextColor; - --purple-text-color: @purpleTextColor; - --pink-text-color: @pinkTextColor; - --brown-text-color: @brownTextColor; - - /*--- Colored Border ---*/ - --red-border-color: @redBorderColor; - --orange-border-color: @orangeBorderColor; - --yellow-border-color: @yellowBorderColor; - --olive-border-color: @oliveBorderColor; - --green-border-color: @greenBorderColor; - --teal-border-color: @tealBorderColor; - --blue-border-color: @blueBorderColor; - --violet-border-color: @violetBorderColor; - --purple-border-color: @purpleBorderColor; - --pink-border-color: @pinkBorderColor; - --brown-border-color: @brownBorderColor; - - /*------------------- - Alpha Colors - --------------------*/ - - --subtle-transparent-black: @subtleTransparentBlack; - --transparent-black: @transparentBlack; - --strong-transparent-black: @strongTransparentBlack; - --very-strong-transparent-black: @veryStrongTransparentBlack; - - --subtle-transparent-white: @subtleTransparentWhite; - --transparent-white: @transparentWhite; - --strong-transparent-white: @strongTransparentWhite; - - /*------------------- - Accents - --------------------*/ - - /* Differentiating Neutrals */ - --subtle-gradient: @subtleGradient; - - /* Differentiating Layers */ - --subtle-shadow: - 0px 1px 2px 0 @borderColor - ; - --floating-shadow: - 0px 2px 4px 0px rgba(34, 36, 38, 0.12), - 0px 2px 10px 0px rgba(34, 36, 38, 0.15) - ; - --raised-shadow: 0px 2px 3px 0px @borderColor; - - /******************************* - Power-User - *******************************/ - - - /*------------------- - Emotive Colors - --------------------*/ - - /* Positive */ - --positive-color: @positiveColor; - --positive-background-color: @positiveBackgroundColor; - --positive-border-color: @positiveBorderColor; - --positive-header-color: @positiveHeaderColor; - --positive-text-color: @positiveTextColor; - - /* Negative */ - --negative-color: @negativeColor; - --negative-background-color: @negativeBackgroundColor; - --negative-border-color: @negativeBorderColor; - --negative-header-color: @negativeHeaderColor; - --negative-text-color: @negativeTextColor; - - /* Info */ - --info-color: @infoColor; - --info-background-color: @infoBackgroundColor; - --info-border-color: @infoBorderColor; - --info-header-color: @infoHeaderColor; - --info-text-color: @infoTextColor; - - /* Warning */ - --warning-color: @warningColor; - --warning-border-color: @warningBorderColor; - --warning-background-color: @warningBackgroundColor; - --warning-header-color: @warningHeaderColor; - --warning-text-color: @warningTextColor; - - /*------------------- - Paths - --------------------*/ - - /* For source only. Modified in gulp for dist */ - --image-path: @imagePath; - --font-path: @fontPath; - - /*------------------- - Em Sizes - --------------------*/ - - /* - This rounds @size values to the closest pixel then expresses that value in (r)em. - This ensures all size values round to exact pixels - */ - --mini: @mini; - --tiny: @tiny; - --small: @small; - --medium: @medium; - --large: @large; - --big: @big; - --huge: @huge; - --massive: @massive; - - /* em */ - --relative-mini: @relativeMini; - --relative-tiny: @relativeTiny; - --relative-small: @relativeSmall; - --relative-medium: @relativeMedium; - --relative-large: @relativeLarge; - --relative-big: @relativeBig; - --relative-huge: @relativeHuge; - --relative-massive: @relativeMassive; - - /* rem */ - --absolute-mini: @absoluteMini; - --absolute-tiny: @absoluteTiny; - --absolute-small: @absoluteSmall; - --absolute-medium: @absoluteMedium; - --absolute-large: @absoluteLarge; - --absolute-big: @absoluteBig; - --absolute-huge: @absoluteHuge; - --absolute-massive: @absoluteMassive; - - /*------------------- - Icons - --------------------*/ - - /* Maximum Glyph Width of Icon */ - --icon-width: @iconWidth; - - /*------------------- - Neutral Text - --------------------*/ - - --dark-text-color: @darkTextColor; - --muted-text-color: @mutedTextColor; - --light-text-color: @lightTextColor; - - --unselected-text-color: @unselectedTextColor; - --hovered-text-color: @hoveredTextColor; - --pressed-text-color: @pressedTextColor; - --selected-text-color: @selectedTextColor; - --disabled-text-color: @disabledTextColor; - - --inverted-text-color: @invertedTextColor; - --inverted-muted-text-color: @invertedMutedTextColor; - --inverted-light-text-color: @invertedLightTextColor; - --inverted-unselected-text-color: @invertedUnselectedTextColor; - --inverted-hovered-text-color: @invertedHoveredTextColor; - --inverted-pressed-text-color: @invertedPressedTextColor; - --inverted-selected-text-color: @invertedSelectedTextColor; - --inverted-disabled-text-color: @invertedDisabledTextColor; - - /*------------------- - Brand Colors - --------------------*/ - - --facebook-color: @facebookColor; - --twitter-color: @twitterColor; - --google-plus-color: @googlePlusColor; - --linked-in-color: @linkedInColor; - --youtube-color: @youtubeColor; - --instagram-color: @instagramColor; - --pinterest-color: @pinterestColor; - --vk-color: @vkColor; - - /*------------------- - Borders - --------------------*/ - - --circular-radius: @circularRadius; - - --border-color: @borderColor; - --strong-border-color: @strongBorderColor; - --internal-border-color: @internalBorderColor; - --selected-border-color: @selectedBorderColor; - --strong-selected-border-color: @strongSelectedBorderColor; - --disabled-border-color: @disabledBorderColor; - - --solid-internal-border-color: @solidInternalBorderColor; - --solid-border-color: @solidBorderColor; - --solid-selected-border-color: @solidSelectedBorderColor; - - --white-border-color: @whiteBorderColor; - --selected-white-border-color: @selectedWhiteBorderColor; - - --solid-white-border-color: @solidWhiteBorderColor; - --selected-solid-white-border-color: @selectedSolidWhiteBorderColor; - - - /*------------------- - Derived Values - --------------------*/ - - /* Loaders Position Offset */ - --loader-offset: @loaderOffset; - --loader-margin: @loaderMargin; - - /* Rendered Scrollbar Width */ - --scrollbar-width: @scrollbarWidth; - - /* Maximum Single Character Glyph Width, aka Capital "W" */ - --glyph-width: @glyphWidth; - - /* Used to match floats with text */ - --line-height-offset: @lineHeightOffset; - --header-line-height-offset: @headerLineHeightOffset; - - /* Header Spacing */ - --header-top-margin: @headerTopMargin; - --header-bottom-margin: @headerBottomMargin; - --header-margin: @headerMargin; - - /* Minimum Mobile Width */ - --page-min-width: @pageMinWidth; - - /* Positive / Negative Dupes */ - --success-background-color: @successBackgroundColor; - --success-color: @successColor; - --success-border-color: @successBorderColor; - --success-header-color: @successHeaderColor; - --success-text-color: @successTextColor; - - --error-background-color: @errorBackgroundColor; - --error-color: @errorColor; - --error-border-color: @errorBorderColor; - --error-header-color: @errorHeaderColor; - --error-text-color: @errorTextColor; - - - /* Responsive */ - --largest-mobile-screen: @largestMobileScreen; - --largest-tablet-screen: @largestTabletScreen; - --largest-small-monitor: @largestSmallMonitor; - --largest-large-monitor: @largestLargeMonitor; - - - /*------------------- - Exact Pixel Values - --------------------*/ - /* - These are used to specify exact pixel values in em - for things like borders that remain constantly - sized as emSize adjusts - - Since there are many more sizes than names for sizes, - these are named by their original pixel values. - - */ - - --1px: @1px; - --2px: @2px; - --3px: @3px; - --4px: @4px; - --5px: @5px; - --6px: @6px; - --7px: @7px; - --8px: @8px; - --9px: @9px; - --10px: @10px; - --11px: @11px; - --12px: @12px; - --13px: @13px; - --14px: @14px; - --15px: @15px; - --16px: @16px; - --17px: @17px; - --18px: @18px; - --19px: @19px; - --20px: @20px; - --21px: @21px; - --22px: @22px; - --23px: @23px; - --24px: @24px; - --25px: @25px; - --26px: @26px; - --27px: @27px; - --28px: @28px; - --29px: @29px; - --30px: @30px; - --31px: @31px; - --32px: @32px; - --33px: @33px; - --34px: @34px; - --35px: @35px; - --36px: @36px; - --37px: @37px; - --38px: @38px; - --39px: @39px; - --40px: @40px; - --41px: @41px; - --42px: @42px; - --43px: @43px; - --44px: @44px; - --45px: @45px; - --46px: @46px; - --47px: @47px; - --48px: @48px; - --49px: @49px; - --50px: @50px; - --51px: @51px; - --52px: @52px; - --53px: @53px; - --54px: @54px; - --55px: @55px; - --56px: @56px; - --57px: @57px; - --58px: @58px; - --59px: @59px; - --60px: @60px; - --61px: @61px; - --62px: @62px; - --63px: @63px; - --64px: @64px; - - --relative1px: @relative1px; - --relative2px: @relative2px; - --relative3px: @relative3px; - --relative4px: @relative4px; - --relative5px: @relative5px; - --relative6px: @relative6px; - --relative7px: @relative7px; - --relative8px: @relative8px; - --relative9px: @relative9px; - --relative10px: @relative10px; - --relative11px: @relative11px; - --relative12px: @relative12px; - --relative13px: @relative13px; - --relative14px: @relative14px; - --relative15px: @relative15px; - --relative16px: @relative16px; - --relative17px: @relative17px; - --relative18px: @relative18px; - --relative19px: @relative19px; - --relative20px: @relative20px; - --relative21px: @relative21px; - --relative22px: @relative22px; - --relative23px: @relative23px; - --relative24px: @relative24px; - --relative25px: @relative25px; - --relative26px: @relative26px; - --relative27px: @relative27px; - --relative28px: @relative28px; - --relative29px: @relative29px; - --relative30px: @relative30px; - --relative31px: @relative31px; - --relative32px: @relative32px; - --relative33px: @relative33px; - --relative34px: @relative34px; - --relative35px: @relative35px; - --relative36px: @relative36px; - --relative37px: @relative37px; - --relative38px: @relative38px; - --relative39px: @relative39px; - --relative40px: @relative40px; - --relative41px: @relative41px; - --relative42px: @relative42px; - --relative43px: @relative43px; - --relative44px: @relative44px; - --relative45px: @relative45px; - --relative46px: @relative46px; - --relative47px: @relative47px; - --relative48px: @relative48px; - --relative49px: @relative49px; - --relative50px: @relative50px; - --relative51px: @relative51px; - --relative52px: @relative52px; - --relative53px: @relative53px; - --relative54px: @relative54px; - --relative55px: @relative55px; - --relative56px: @relative56px; - --relative57px: @relative57px; - --relative58px: @relative58px; - --relative59px: @relative59px; - --relative60px: @relative60px; - --relative61px: @relative61px; - --relative62px: @relative62px; - --relative63px: @relative63px; - --relative64px: @relative64px; - - /* Columns */ - --one-wide: @oneWide; - --two-wide: @twoWide; - --three-wide: @threeWide; - --four-wide: @fourWide; - --five-wide: @fiveWide; - --six-wide: @sixWide; - --seven-wide: @sevenWide; - --eight-wide: @eightWide; - --nine-wide: @nineWide; - --ten-wide: @tenWide; - --eleven-wide: @elevenWide; - --twelve-wide: @twelveWide; - --thirteen-wide: @thirteenWide; - --fourteen-wide: @fourteenWide; - --fifteen-wide: @fifteenWide; - --sixteen-wide: @sixteenWide; - - --one-column: @oneColumn; - --two-column: @twoColumn; - --three-column: @threeColumn; - --four-column: @fourColumn; - --five-column: @fiveColumn; - --six-column: @sixColumn; - --seven-column: @sevenColumn; - --eight-column: @eightColumn; - --nine-column: @nineColumn; - --ten-column: @tenColumn; - --eleven-column: @elevenColumn; - --twelve-column: @twelveColumn; - --thirteen-column: @thirteenColumn; - --fourteen-column: @fourteenColumn; - --fifteen-column: @fifteenColumn; - --sixteen-column: @sixteenColumn; - - - /******************************* - States - *******************************/ - - /*------------------- - Disabled - --------------------*/ - - --disabled-opacity: @disabledOpacity; - --disabled-text-color: @disabledTextColor; - --inverted-disabled-text-color: @invertedDisabledTextColor; - - /*------------------- - Hover - --------------------*/ - - /*--- Shadows ---*/ - --floating-shadow-hover: - 0px 2px 4px 0px rgba(34, 36, 38, 0.15), - 0px 2px 10px 0px rgba(34, 36, 38, 0.25) - ; - - /*--- Colors ---*/ - --primary-color-hover: @primaryColorHover; - --secondary-color-hover: @secondaryColorHover; - - --red-hover: @redHover; - --orange-hover: @orangeHover; - --yellow-hover: @yellowHover; - --olive-hover: @oliveHover; - --green-hover: @greenHover; - --teal-hover: @tealHover; - --blue-hover: @blueHover; - --violet-hover: @violetHover; - --purple-hover: @purpleHover; - --pink-hover: @pinkHover; - --brown-hover: @brownHover; - - --light-red-hover: @lightRedHover; - --light-orange-hover: @lightOrangeHover; - --light-yellow-hover: @lightYellowHover; - --light-olive-hover: @lightOliveHover; - --light-green-hover: @lightGreenHover; - --light-teal-hover: @lightTealHover; - --light-blue-hover: @lightBlueHover; - --light-violet-hover: @lightVioletHover; - --light-purple-hover: @lightPurpleHover; - --light-pink-hover: @lightPinkHover; - --light-brown-hover: @lightBrownHover; - --light-grey-hover: @lightGreyHover; - --light-black-hover: @lightBlackHover; - - /*--- Emotive ---*/ - --positive-color-hover: @positiveColorHover; - --negative-color-hover: @negativeColorHover; - - /*--- Brand ---*/ - --facebook-hover-color: @facebookHoverColor; - --twitter-hover-color: @twitterHoverColor; - --google-plus-hover-color: @googlePlusHoverColor; - --linked-in-hover-color: @linkedInHoverColor; - --youtube-hover-color: @youtubeHoverColor; - --instagram-hover-color: @instagramHoverColor; - --pinterest-hover-color: @pinterestHoverColor; - --vk-hover-color: @vkHoverColor; - - /*--- Dark Tones ---*/ - --full-black-hover: @fullBlackHover; - --black-hover: @blackHover; - --grey-hover: @greyHover; - - /*--- Light Tones ---*/ - --white-hover: @whiteHover; - --off-white-hover: @offWhiteHover; - --dark-white-hover: @darkWhiteHover; - - /*------------------- - Focus - --------------------*/ - - /*--- Colors ---*/ - --primary-color-focus: @primaryColorFocus; - --secondary-color-focus: @secondaryColorFocus; - - --red-focus: @redFocus; - --orange-focus: @orangeFocus; - --yellow-focus: @yellowFocus; - --olive-focus: @oliveFocus; - --green-focus: @greenFocus; - --teal-focus: @tealFocus; - --blue-focus: @blueFocus; - --violet-focus: @violetFocus; - --purple-focus: @purpleFocus; - --pink-focus: @pinkFocus; - --brown-focus: @brownFocus; - - --light-red-focus: @lightRedFocus; - --light-orange-focus: @lightOrangeFocus; - --light-yellow-focus: @lightYellowFocus; - --light-olive-focus: @lightOliveFocus; - --light-green-focus: @lightGreenFocus; - --light-teal-focus: @lightTealFocus; - --light-blue-focus: @lightBlueFocus; - --light-violet-focus: @lightVioletFocus; - --light-purple-focus: @lightPurpleFocus; - --light-pink-focus: @lightPinkFocus; - --light-brown-focus: @lightBrownFocus; - --light-grey-focus: @lightGreyFocus; - --light-black-focus: @lightBlackFocus; - - /*--- Emotive ---*/ - --positive-color-focus: @positiveColorFocus; - --negative-color-focus: @negativeColorFocus; - - /*--- Brand ---*/ - --facebook-focus-color: @facebookFocusColor; - --twitter-focus-color: @twitterFocusColor; - --google-plus-focus-color: @googlePlusFocusColor; - --linked-in-focus-color: @linkedInFocusColor; - --youtube-focus-color: @youtubeFocusColor; - --instagram-focus-color: @instagramFocusColor; - --pinterest-focus-color: @pinterestFocusColor; - --vk-focus-color: @vkFocusColor; - - /*--- Dark Tones ---*/ - --full-black-focus: @fullBlackFocus; - --black-focus: @blackFocus; - --grey-focus: @greyFocus; - - /*--- Light Tones ---*/ - --white-focus: @whiteFocus; - --off-white-focus: @offWhiteFocus; - --dark-white-focus: @darkWhiteFocus; - - - /*------------------- - Down (:active) - --------------------*/ - - /*--- Colors ---*/ - --primary-color-down: @primaryColorDown; - --secondary-color-down: @secondaryColorDown; - - --red-down: @redDown; - --orange-down: @orangeDown; - --yellow-down: @yellowDown; - --olive-down: @oliveDown; - --green-down: @greenDown; - --teal-down: @tealDown; - --blue-down: @blueDown; - --violet-down: @violetDown; - --purple-down: @purpleDown; - --pink-down: @pinkDown; - --brown-down: @brownDown; - - --light-red-down: @lightRedDown; - --light-orange-down: @lightOrangeDown; - --light-yellow-down: @lightYellowDown; - --light-olive-down: @lightOliveDown; - --light-green-down: @lightGreenDown; - --light-teal-down: @lightTealDown; - --light-blue-down: @lightBlueDown; - --light-violet-down: @lightVioletDown; - --light-purple-down: @lightPurpleDown; - --light-pink-down: @lightPinkDown; - --light-brown-down: @lightBrownDown; - --light-grey-down: @lightGreyDown; - --light-black-down: @lightBlackDown; - - /*--- Emotive ---*/ - --positive-color-down: @positiveColorDown; - --negative-color-down: @negativeColorDown; - - /*--- Brand ---*/ - --facebook-down-color: @facebookDownColor; - --twitter-down-color: @twitterDownColor; - --google-plus-down-color: @googlePlusDownColor; - --linked-in-down-color: @linkedInDownColor; - --youtube-down-color: @youtubeDownColor; - --instagram-down-color: @instagramDownColor; - --pinterest-down-color: @pinterestDownColor; - --vk-down-color: @vkDownColor; - - /*--- Dark Tones ---*/ - --full-black-down: @fullBlackDown; - --black-down: @blackDown; - --grey-down: @greyDown; - - /*--- Light Tones ---*/ - --white-down: @whiteDown; - --off-white-down: @offWhiteDown; - --dark-white-down: @darkWhiteDown; - - - /*------------------- - Active - --------------------*/ - - /*--- Colors ---*/ - --primary-color-active: @primaryColorActive; - --secondary-color-active: @secondaryColorActive; - - --red-active: @redActive; - --orange-active: @orangeActive; - --yellow-active: @yellowActive; - --olive-active: @oliveActive; - --green-active: @greenActive; - --teal-active: @tealActive; - --blue-active: @blueActive; - --violet-active: @violetActive; - --purple-active: @purpleActive; - --pink-active: @pinkActive; - --brown-active: @brownActive; - - --light-red-active: @lightRedActive; - --light-orange-active: @lightOrangeActive; - --light-yellow-active: @lightYellowActive; - --light-olive-active: @lightOliveActive; - --light-green-active: @lightGreenActive; - --light-teal-active: @lightTealActive; - --light-blue-active: @lightBlueActive; - --light-violet-active: @lightVioletActive; - --light-purple-active: @lightPurpleActive; - --light-pink-active: @lightPinkActive; - --light-brown-active: @lightBrownActive; - --light-grey-active: @lightGreyActive; - --light-black-active: @lightBlackActive; - - /*--- Emotive ---*/ - --positive-color-active: @positiveColorActive; - --negative-color-active: @negativeColorActive; - - /*--- Brand ---*/ - --facebook-active-color: @facebookActiveColor; - --twitter-active-color: @twitterActiveColor; - --google-plus-active-color: @googlePlusActiveColor; - --linked-in-active-color: @linkedInActiveColor; - --youtube-active-color: @youtubeActiveColor; - --instagram-active-color: @instagramActiveColor; - --pinterest-active-color: @pinterestActiveColor; - --vk-active-color: @vkActiveColor; - - /*--- Dark Tones ---*/ - --full-black-active: @fullBlackActive; - --black-active: @blackActive; - --grey-active: @greyActive; - - /*--- Light Tones ---*/ - --white-active: @whiteActive; - --off-white-active: @offWhiteActive; - --dark-white-active: darken(@darkWhite, 5); - - /*------------------- - Side Bar - --------------------*/ - --sidebar-background: @sidebarBackground; - --sidebar-menu-item-active-background: @sidebarMenuItemActiveBackground; - --sidebar-menu-item-inactive-background: @sidebarMenuItemInactiveBackground; - --sidebar-menu-section-color: @sidebarMenuSectionColor; - --sidebar-menu-section-separator-color: @sidebarMenuSectionSeparatorColor; - --sidebar-menu-item-color: @sidebarMenuItemColor; - --sidebar-menu-action-color: @sidebarMenuActionColor; - --sidebar-menu-action-hover-color: @sidebarMenuActionHoverColor; - --sidebar-sync-status-view-background: @sidebarSyncStatusViewBackground; - --sidebar-sync-status-view-text-color: @sidebarSyncStatusViewTextColor; - --sidebar-sync-status-view-detail-color: @sidebarSyncStatusViewDetailColor; - --sidebar-scrollbar-width: @sidebarScrollbarWidth; - --sidebar-scrollbar-track-background: @sidebarScrollbarTrackBackground; - --sidebar-scrollbar-thumb-background: @sidebarScrollbarThumbBackground; - - /*------------------- - Scroll Bar - --------------------*/ - --scrollbar-width: @scrollbarWidth; - --scrollbar-track-background: @scrollbarTrackBackground; - --scrollbar-thumb-background: @scrollbarThumbBackground; - - /*------------------- - Note List Bar - --------------------*/ - --note-list-bar-background: @noteListBarBackground; - --note-list-bar-pinned-section-header-background: @noteListBarPinnedSectionHeaderBackground; - --note-list-bar-pinned-section-header-border-bottom: @noteListBarPinnedSectionHeaderBorderBottom; - --note-list-bar-pinned-section-footer-border-bottom: @noteListBarPinnedSectionFooterBorderBottom; - --note-list-view-item-color: @noteListViewItemColor; - --note-list-view-item-separator-border: @noteListViewItemSeparatorBorder; - --note-list-view-item-date-color: @noteListViewItemDateColor; - --note-list-view-item-tag-color: @noteListViewItemTagColor; - --note-list-view-item-inactive-background: @noteListViewItemInactiveBackground; - --note-list-view-item-active-background: @noteListViewItemActiveBackground; - --note-list-view-item-active-color: @noteListViewItemActiveColor; - --note-list-view-item-active-date-color: @noteListViewItemActiveDateColor; - --note-list-view-item-active-tag-color: @noteListViewItemActiveTagColor; - --note-list-view-item-focus-inner-shadow: @noteListViewItemFocusInnerShadow; - --note-search-bar-background: @noteSearchBarBackground; - --note-search-bar-border-bottom: @noteSearchBarBorderBottom; - --note-search-bar-input-border: @noteSearchBarInputBorder; - --note-search-bar-input-background: @noteSearchBarInputBackground; - - /*------------------- - Editor - --------------------*/ - --editor-background: @editorBackground; - - /*------------------- - Header Note Menu - --------------------*/ - --header-note-menu-background: @headerNoteMenuBackground; - --header-note-menu-color: @headerNoteMenuColor; - --header-note-menu-action-item-active-background: @headerNoteMenuActionItemActiveBackground; - --header-note-menu-action-item-active-border: @headerNoteMenuActionItemActiveBorder; - --header-note-menu-action-item-separator-border: @headerNoteMenuActionItemSeparatorBorder; - --header-note-menu-encrypt-button-color: @headerNoteMenuEncryptButtonColor; - --header-note-menu-encrypt-button-background: @headerNoteMenuEncryptButtonBackground; - - /*------------------- - Preferences - --------------------*/ - --preferences-sidebar-background: @preferencesSidebarBackground; - --preferences-sidebar-item-active-background: @preferencesSidebarItemActiveBackground; - --preferences-view-background: @preferencesViewBackground; - - /*------------------- - Task Icons - --------------------*/ - --task-icon-active: @taskIconActive; - --task-icon-onhold: @taskIconOnHold; - --task-icon-completed: @taskIconCompleted; - --task-icon-dropped: @taskIconDropped; - - /*------------------- - Task Progress View - --------------------*/ - --task-progress-view-border-color: @taskProgressViewBorderColor; - --task-progress-view-background-color: @taskProgressViewBackgroundColor; - --task-progress-view-foreground-color: @taskProgressViewForegroundColor; - --task-progress-view-completed-color: @taskProgressViewCompletedColor; -} diff --git a/src/site/globals/site.variables b/src/site/globals/site.variables deleted file mode 100644 index 6e3d5e8..0000000 --- a/src/site/globals/site.variables +++ /dev/null @@ -1,95 +0,0 @@ -/******************************* - User Global Variables -*******************************/ -@fontPath : 'inkdrop://default-dark-ui/styles/themes/default/assets/fonts'; -@headerFont : -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; -@pageFont : -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; -@importGoogleFonts : false; -@useCustomScrollbars: false; - - -/*------------------- - Side Bar ---------------------*/ -@sidebarBackground : @pageBackground; -@sidebarMenuItemActiveBackground: hsl(var(--hsl-slate-500) / 40%); -@sidebarMenuItemInactiveBackground: rgba(0, 0, 0, 0.2); -@sidebarMenuSectionColor: @lightTextColor; -@sidebarMenuSectionSeparatorColor: rgba(255,255,255,0.1); -@sidebarMenuItemColor : @textColor; -@sidebarMenuActionColor : @lightTextColor; -@sidebarMenuActionHoverColor : @primaryColorFocus; -@sidebarSyncStatusViewBackground: #26292C; -@sidebarSyncStatusViewTextColor: @textColor; -@sidebarSyncStatusViewDetailColor: @lightTextColor; -@sidebarScrollbarWidth: 6px; -@sidebarScrollbarTrackBackground: rgba(0,0,0,0.02); -@sidebarScrollbarThumbBackground: rgba(255,255,255,0.1); - -/*------------------- - Scroll Bar ---------------------*/ -@scrollbarWidth: 6px; -@scrollbarTrackBackground: rgba(0,0,0,0.02); -@scrollbarThumbBackground: rgba(255,255,255,0.1); - -/*------------------- - Note List Bar ---------------------*/ -@noteListBarBackground: #34393D; -@noteListBarPinnedSectionHeaderBackground: rgba(255, 255, 255, 0.05); -@noteListBarPinnedSectionHeaderBorderBottom: 1px solid rgba(255, 255, 255, 0.1); -@noteListBarPinnedSectionFooterBorderBottom: 4px solid rgba(255, 255, 255, 0.2); -@noteListViewItemColor: @mutedTextColor; -@noteListViewItemSeparatorBorder: 1px solid @white; -@noteListViewItemDateColor: @primaryColor; -@noteListViewItemTagColor: @primaryColor; -@noteListViewItemInactiveBackground: #6987AF30; -@noteListViewItemActiveBackground: #6987AF60; -@noteListViewItemActiveColor: @textColor; -@noteListViewItemActiveDateColor: @textColor; -@noteListViewItemActiveTagColor: @textColor; -@noteListViewItemFocusInnerShadow: none; -@noteSearchBarBackground: @noteListBarBackground; -@noteSearchBarBorderBottom: 1px solid @white; -@noteSearchBarInputBorder: 1px solid transparent; -@noteSearchBarInputBackground: @inputBackground; - -/*------------------- - Editor ---------------------*/ -@editorBackground: @pageBackground; - -/*------------------- - Header Note Menu ---------------------*/ -@headerNoteMenuBackground: transparent; -@headerNoteMenuColor: @lightTextColor; -@headerNoteMenuActionItemActiveBackground: rgba(49, 204, 236, 0.3); -@headerNoteMenuActionItemActiveBorder: 1px solid rgba(49, 204, 236, 0.8); -@headerNoteMenuActionItemSeparatorBorder: 1px solid @whiteDown; -@headerNoteMenuEncryptButtonColor: @yellowTextColor; -@headerNoteMenuEncryptButtonBackground: @yellowBackground; - -/*------------------- - Preferences ---------------------*/ -@preferencesSidebarBackground: @white; -@preferencesSidebarItemActiveBackground: #6987AF40; -@preferencesViewBackground: @offWhite; - -/*------------------- - Task Icons ---------------------*/ -@taskIconActive: hsl(var(--hsl-slate-400)); -@taskIconOnHold: hsl(var(--hsl-amber-500)); -@taskIconCompleted: hsl(var(--hsl-emerald-500)); -@taskIconDropped: hsl(var(--hsl-rose-400)); - -/*------------------- - Task Progress View ---------------------*/ -@taskProgressViewBorderColor: hsl(var(--hsl-gray-50) / 10%); -@taskProgressViewBackgroundColor: hsl(var(--hsl-gray-950) / 30%); -@taskProgressViewForegroundColor: hsl(var(--hsl-gray-50) / 60%); -@taskProgressViewCompletedColor: hsl(var(--hsl-green-500)); diff --git a/src/site/modules/accordion.overrides b/src/site/modules/accordion.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/accordion.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/accordion.variables b/src/site/modules/accordion.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/accordion.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/chatroom.overrides b/src/site/modules/chatroom.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/chatroom.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/chatroom.variables b/src/site/modules/chatroom.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/chatroom.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/checkbox.overrides b/src/site/modules/checkbox.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/checkbox.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/checkbox.variables b/src/site/modules/checkbox.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/checkbox.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/dimmer.overrides b/src/site/modules/dimmer.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/dimmer.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/dimmer.variables b/src/site/modules/dimmer.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/dimmer.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/dropdown.overrides b/src/site/modules/dropdown.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/dropdown.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/dropdown.variables b/src/site/modules/dropdown.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/dropdown.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/embed.overrides b/src/site/modules/embed.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/embed.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/embed.variables b/src/site/modules/embed.variables deleted file mode 100644 index e69de29..0000000 diff --git a/src/site/modules/modal.overrides b/src/site/modules/modal.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/modal.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/modal.variables b/src/site/modules/modal.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/modal.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/nag.overrides b/src/site/modules/nag.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/nag.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/nag.variables b/src/site/modules/nag.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/nag.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/popup.overrides b/src/site/modules/popup.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/popup.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/popup.variables b/src/site/modules/popup.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/popup.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/progress.overrides b/src/site/modules/progress.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/progress.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/progress.variables b/src/site/modules/progress.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/progress.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/rating.overrides b/src/site/modules/rating.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/rating.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/rating.variables b/src/site/modules/rating.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/rating.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/search.overrides b/src/site/modules/search.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/search.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/search.variables b/src/site/modules/search.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/search.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/shape.overrides b/src/site/modules/shape.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/shape.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/shape.variables b/src/site/modules/shape.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/shape.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/sidebar.overrides b/src/site/modules/sidebar.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/sidebar.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/sidebar.variables b/src/site/modules/sidebar.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/sidebar.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/sticky.overrides b/src/site/modules/sticky.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/sticky.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/sticky.variables b/src/site/modules/sticky.variables deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/sticky.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/tab.overrides b/src/site/modules/tab.overrides deleted file mode 100644 index 660e664..0000000 --- a/src/site/modules/tab.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Overrides -*******************************/ diff --git a/src/site/modules/tab.variables b/src/site/modules/tab.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/tab.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/modules/transition.overrides b/src/site/modules/transition.overrides deleted file mode 100644 index cba59ef..0000000 --- a/src/site/modules/transition.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Site Overrides -*******************************/ diff --git a/src/site/modules/transition.variables b/src/site/modules/transition.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/modules/transition.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/ad.overrides b/src/site/views/ad.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/ad.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/ad.variables b/src/site/views/ad.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/ad.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/card.overrides b/src/site/views/card.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/card.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/card.variables b/src/site/views/card.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/card.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/comment.overrides b/src/site/views/comment.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/comment.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/comment.variables b/src/site/views/comment.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/comment.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/feed.overrides b/src/site/views/feed.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/feed.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/feed.variables b/src/site/views/feed.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/feed.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/item.overrides b/src/site/views/item.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/item.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/item.variables b/src/site/views/item.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/item.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/statistic.overrides b/src/site/views/statistic.overrides deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/statistic.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/site/views/statistic.variables b/src/site/views/statistic.variables deleted file mode 100644 index 6f085f9..0000000 --- a/src/site/views/statistic.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - User Variable Overrides -*******************************/ diff --git a/src/theme.config b/src/theme.config deleted file mode 100644 index 37ff98a..0000000 --- a/src/theme.config +++ /dev/null @@ -1,93 +0,0 @@ -/* - -████████╗██╗ ██╗███████╗███╗ ███╗███████╗███████╗ -╚══██╔══╝██║ ██║██╔════╝████╗ ████║██╔════╝██╔════╝ - ██║ ███████║█████╗ ██╔████╔██║█████╗ ███████╗ - ██║ ██╔══██║██╔══╝ ██║╚██╔╝██║██╔══╝ ╚════██║ - ██║ ██║ ██║███████╗██║ ╚═╝ ██║███████╗███████║ - ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝ - -*/ - -/******************************* - Theme Selection -*******************************/ - -/* To override a theme for an individual element - specify theme name below -*/ - -/* Global */ -@site : 'default'; -@reset : 'default'; - -/* Elements */ -@button : 'default'; -@container : 'default'; -@divider : 'default'; -@flag : 'default'; -@header : 'default'; -@icon : 'default'; -@image : 'default'; -@input : 'default'; -@label : 'default'; -@list : 'default'; -@loader : 'default'; -@placeholder : 'default'; -@rail : 'default'; -@reveal : 'default'; -@segment : 'default'; -@step : 'default'; - -/* Collections */ -@breadcrumb : 'default'; -@form : 'default'; -@grid : 'default'; -@menu : 'default'; -@message : 'default'; -@table : 'default'; - -/* Modules */ -@accordion : 'default'; -@checkbox : 'default'; -@dimmer : 'default'; -@dropdown : 'default'; -@embed : 'default'; -@modal : 'default'; -@nag : 'default'; -@popup : 'default'; -@progress : 'default'; -@rating : 'default'; -@search : 'default'; -@shape : 'default'; -@sidebar : 'default'; -@sticky : 'default'; -@tab : 'default'; -@transition : 'default'; - -/* Views */ -@ad : 'default'; -@card : 'default'; -@comment : 'default'; -@feed : 'default'; -@item : 'default'; -@statistic : 'default'; - -/******************************* - Folders -*******************************/ - -/* Path to theme packages */ -@themesFolder : 'themes'; - -/* Path to site override folder */ -@siteFolder : 'site'; - - -/******************************* - Import Theme -*******************************/ - -@import (multiple) "theme.less"; - -/* End Config */ diff --git a/src/theme.less b/src/theme.less deleted file mode 100644 index ffaf4f8..0000000 --- a/src/theme.less +++ /dev/null @@ -1,61 +0,0 @@ -/******************************* - Import Directives -*******************************/ - -/*------------------ - Theme --------------------*/ - -@theme: @@element; - -/*-------------------- - Site Variables ----------------------*/ - -/* Default site.variables */ -@import "@{themesFolder}/default/globals/site.variables"; - -/* Packaged site.variables */ -@import "@{themesFolder}/@{site}/globals/site.variables"; - -/* Component's site.variables */ -@import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; - -/* Site theme site.variables */ -@import (optional) "@{siteFolder}/globals/site.variables"; - - -/*------------------- - Component Variables ----------------------*/ - -/* Default */ -@import "@{themesFolder}/default/@{type}s/@{element}.variables"; - -/* Packaged Theme */ -@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables"; - -/* Site Theme */ -@import (optional) "@{siteFolder}/@{type}s/@{element}.variables"; - - -/******************************* - Mix-ins -*******************************/ - -/*------------------ - Fonts --------------------*/ - -.loadFonts() when (@importGoogleFonts) { - @import (css) url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}'); -} - -/*------------------ - Overrides --------------------*/ - -.loadUIOverrides() { - @import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; - @import (optional) "@{siteFolder}/@{type}s/@{element}.overrides"; -} diff --git a/src/themes/default/assets/fonts/brand-icons.eot b/src/themes/default/assets/fonts/brand-icons.eot deleted file mode 100644 index 0a1ef3f7ec16d6686bea362f2e41247b813e6d40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98640 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

2LiaYv-Uxv|O@DH|N zJ6yl=P728ny|%tK3mR%4fJ;mmLOP8 zW-Uq+0-Ue#f51NNHke}))A>yiwIUph5U{zh4)*6c9gmKlHZpSB*3(8u*KN%8_U6`Q zdwYL+oTH^)KD)lDo=9wLoL%3NOr=ui(2Kq7lzorP{MMMaV!rXxOUC>ac=yGL;>66h z+Q!x8P?faswXm}S;8C~@;D_&g>Iq7-2x< z!fj;CH+*0mSwt(d`X`%g?&%1-gO^&>>Ep6&%{y@d-93bLksjJm)Oy0v=*~nbfxl&T z#?+%h%hj#4T`&}%o^*UBv~Nw*VIu`#|YE+A3 zo`1VgbPK$znBU>8!yy+D5Xzj_6(`yn^VHf(tE_?_@i5N@q8{oH4I5as6-ZiOKaB5I zoAjwZQBh%Lio}J8<3t3wGPj-BzcW|BNk@ZrGLtFy*-QibY)`R2mdeEYiuqVIpRdLa zIUzF`30--0IQC)=(V!ZQ6j@ZL{^b+8?#5ik2#2i{Uf$w&t=@!At?&xy`+6!Mxm8yR zq&6Y)SqK?{5IqoPdv_6^K1DwYnihhEG7Fu)4*$>@@HJlv%61=ihJ6XU5r06A;GGq( z<2^kAnqWJ$LGf7hM>SfS^UJgfu*f3(jl~4i%OG=(Is!^oQ%7rvp2PfdYY0$(lf72P z42B56+?b$(h*5-WT7d`+8*V|xpU0)^O~%P<*d5@dn80uhVhu1krVjPHUUge#OmoP{ z5iEdcvsO_G5N5D&V4!qZ3}35O_XLk9c22q$m%emAo$oXsnY>e!_d>pq?hkuE3P zldTlg?A9Bw`HevqhtR~w%La5P;J>WG6$KFXjXD9G7$f>r)DVMC&mlD8re)M3XGPVM1Lb!D4bD{_|(s ze8MC>h*EBP!-jOMJb7ng{rY5b{rcT1tPiqO(h#WW5eF5OAc){Pq5$E& z@Xov&iVfbj#Rh?m!vT2Ru(LtlP@XKi>9aPZ-O`lzZkSnpkn#QuEC5TfLiXWZ0w2W+ z`8=cKv+DsuvIDywW^$e%c?9ppId3&+>SMX?aW(D7vjt z=FmWXt}eQuH@F7h#_>x2=Q^CZI+(V(;IziG<5 z;JXqNaNhKoYmd>FN>G(heCejJ&ajX0Y+G>irl<>sPC9PGsbm+*$Q z0lx?+OhaKF(;65C6cI)dp=~qT0_%#?0>{Ac<8-TmLQu^%ltWcD44PA`m+AWr z2n~+$xi<~axS@u8BEnolK|2a>C8AjsGvtILZgP3D=;Sp`HIl0kcCHB79?%_mum}IH zPDd;RF%|2ft6ge2QW`RPpq9bf_xZ0qli3FI*M34xtLriazy7$^s|Q2bbWbUj&Fg8+8DrYO ziF{cFPhz&HmFzuGC4>^TMkj^0@D0l7EjX(Rs|KUJ9v^^d83cWnkud!d3le%9+o0%T zQ6exA>K*-&EaiiO=kt5Rk}VY+5-!Z@#XbGH=1u!V9wqDeEa-wKp(STsGDi2qkK_e=d=i`&rhRzes(R z{VS%6c&|j6fOyr*FaO=$Tb3 zWd-UDmpw}mG`)CVL9SqyqJ=G`eB-IbU9F|#Q~7TXt_qK>7{ec3@V=A~yLi=9W6GHM z;JLl6Z3`y*PyLU}2S@XzC4OOeZIR^~YpVIPN}rTU*_~IcKQysw(c4z&*J^#}A7=OE zHogRW!DH+lKUDQ(1+25O*D$s05wi+BQc$NnnIxjVDM*v;ndCe85Uoik^vY0i0VJpR zV7w=p2!s(%D6E$BO^ChI3|;mu+P!e$?yK0>qJdQd1FJT$FIv_LJ&THdJvEp>+&-fE z!{$cWcNwNWO3AOymO!zY1G7a?&hv+Vlb(wH)R=|x4XFwHIa#z5<|u3Ygg{TNE*~3P zUOfX%9a>TEUp_Xva+D6Gc=vo4eN9mF_6 z8-VoR@}yE`;A0<8&@U=#6>E)ypG1-u$x&2j3gl*o{E)W^c&P-=mziAijKAtXe97Wsme&#cXde z(;tiaX(DVHT14}YVE2MdBY|b*e5RrWux&_|qrR}5O9mUUr0Gi~%86Kdu^`31u9p$bfQ_H{x>%JGsF;1-!S?J~p?EqqkewRy_r)UE zN)<>Z26YQNi~PEZ`}bm%&d(UCQm!J7FCK+W&Ka+n8X^hZLL?-`{f0i8E#~}jClV=? z(|tz3dOvROwL$Uq&Ncw8h|je^-WZ37(B9@XdAPsf0OejKe?=R0p?aLGw2G`Y3?R(=jLoaqQ|_fj7woBl z;A++$uqL*Vqoy(&DTWuv$SPE72>+S~9Z$Xx?*0oUQ>XKEiuh$!Zox!ZpS$vQDWKE3 ztkM>Oie~l>4i3_xnlz8rC9yUvu%9bvacaji{;2Qtb*HadyG*%en@Gon9jEWPWd7st z#BTXh?yebBs5KWZTnm$4|N79|;Q^)RoqYh;wx3fz2g2IseR3cgkwS}Gk^^_|zn&$D zioQ)0JgXtT1aZ6M6V8DlANxrWj-=B~5-ws9!$}|rn<>ot;#R8rwePOh#8IOuY=f}A zS*ZI)5Ka`-tW(aTA78rb>xR4GjEx)DuT0UUl%6k1=WpEqu0;!Fx!HsUg3yKNtV)Is6-ntcGUgs=Yq&eZYZ5N`Cu0`CbM|=6+YZrPxX))pkc>*S7gbOWT z(F~s1jTWP>%19-1+ajVJdAJXD5{f9qH?}`}2s@K~q2xL<5;4b}pu?WYPd~dk7kO_W z>IcBh{cdWfYq|#_GUrct(^z zF$9p`gj*>Kv$toP%NxDe7anF&8h)q|Mm(p=sd7>Dmuv_eMk16`s3v1Oo`h)e1P-64 z;<%~{;u8f5WD zOitl3LpI)z$E-?t4-kfAcCQ1b7uX|2Ikuma@2tbG1`Guj#69SV%&OZ$-~dJx?vyGf z=Fn;^Nl$it*8*dUJTRRo{}zw6=`rB}*%W5aE~g6`VqEUv~Io zIbZmVGx@&$>@YpFc;5K(lNPilmdqPpw)oOQaVV48^0qChRCQ={!MrWaM?$)P(2hG+ z*y%mFuO}2a{$qAc9f1%0Af6Z@)FB(Yi!1?AzazB9c8P&N!YKXVgT$dg{4sKuHSnrj80dMO$#NIdx`FU2_i@HtD zl-O<^riPU(bYq}7e>9aEo!<;Z7ZB;B*cqRn`btTV8Y=Z6N>)c$FgCy-o-ULr4xBVd zpG44FK+#1b7!}bF6=pBk-+cN4-4A(D5RHH>K~sjI7C!JQf|e)^2eEA(n`lNeP!5wZ zAs@4J)jzXY31XWtLP!x3uK4hx1Vs75aE20L-PRE-iJOMgczSR^#Q3^O*b*o<$%~&*FX% zUX5dF~Fdo7knbcV9mMjGFFfP(Sglc2VPY){ZDUFVn=s(VEvjex|MGofG4Ui}<>(J*wLo;lL4ILIo#4^14 z%qKRx#An|%BYLh%_~#)7I5qk;=1@iC1WeP+j)Av1h`Jx|?AR7b<#hF_!wmEqxGNBT zju3bloenC9wv!P4#Wr)QGapg)!%qQBX2Cz`HP=C}NuU)C$mwUIEpX3+%0bs;-nu4e z#2X&0%K!T%=pAVKac@ECE&e^azh1|V>To3HM#8phO@-68owBd1)lAn8N8+vn-V|Jn zQ~0CHSOoH1Nb$^pM7f-x?3>Oz>Vy#Iu9rtEaAJzVanp_@B9VLk=hI)c1ILIL%#80` zIdP15HQ}3$fplyJF>0^Se}aWLj%Qy*$SiMY)WIHMwPPPoKZnW6f%}$)t$D$-=oIe< z3zPL;oWvvtyh5Q~VY-&;Hp|L)vaX38BtmknPj}M=|G}hf1wI{Ky(*{XgIJ3Q9fnA2 zoE>u0;i#a9%ISds!pMSWoRo8Kno?suQ)M`S6Bgc%l&i&}5P#?saQ9`8{6hj(5RysbzuwR&-}+u+^RJ^h!(#FyZ8 zA~rLGdLiW{IBh(uC@NO@VUgX9O&4}){ra0~*(~kj>F$Yy)x@y&`iHUjJ7LJV7GedqmXsxTRyABt_r_Woz zX4RIjZC&*qc&)wrAIAE8&hxVs*?SU?+k)n-@ud)x9^5?FP*_ln$U?zbyg+euj4^c= z@uk>!&ln?|Po50HbXbo&!>;TV#}8cgCY$Tog780OSWyI9Snu?+Z$yX2vxBxd^K&Pg zb?8PXdvX|4DjCp4cyHywT|<`YGr|!VJOXymhe!!*L-GegHr}rQ4~xIhH`Hrk2c~8~ zSPupKn(}QU6p97$FUHbGW*X5{Z+J8trJJMK?9A)6W-=7Q?j#*sMdO04q1`&%IRbX! zI`LGchy9jRN5cCn6a^eJgv~J6ZHoXL7F@<@8?ymE439eKCW`=oKM)=k76Jf|UkkD| z_C>(`XVPCS+CA~Bg}W9m+%=JopBA2^BcU9MN>a6d1-{*an-}8Gq2adxubU;0I;6)o>*}V7F z_ipYy*aYsHIhEvaj?>-C+nUlLlGF^BxWKO&#-DZD6q*vbod$}!36pnosN{7b(Q$3J{R ziGGJi7g4td0ud2$PzfMF){+0DAHLu)f2R+_#wf2Ubf*icao_O`zgXKjWx8H<-$Sqb z@yTkwnYF)8Mn5Z!p1*tGyEm^t@Yu%2#snEX<5kCxHX?U0GuJ+R|J{u9pm#w29@`l8 zQ_;nLoEas?FLfpTbTyXrQxwSoU2CK*a?7m2Uc`$GK7JLIEm87>8%ca8l7_SEMigC_ z>L1}yot@wL;9YBF%PeFYaW;#mj!7lczvW=2KySCNaEiW;trDcaEj=U;Jk+s+Ng;Y!Pw&x z@p&`GWJ&Tmz=On6Mjva+)w2>`lHaW72Z~6YRCHWS5jyTI)#m&h3 zvBrsZIvg~rHyPISa;?xMdFQf%RcfTXTw~r$)jP$EYLMF3`jkw;2?moXdi#Q_`OD4a zOn2Hfv=dRz>P@=^=htG}UmW`7_eg!X``zm zh?1`sYqOGkk-TeZFnsb@wj(mVBWLf5ODd|Z&f4~3znHNL-G%Y#<$Hc{YJBThuj*`_ zYEGR#;@~EmhXCo?{M7trE3@+QU-#-$a{$p7E>0*rTRYMtcg~E8#a1xzbM@fJx>wfL z4}qg!JpB`d|EwZViK+g4{famAx)a6gPDPp8Wmj94Zq6`yi!byUEysA4(L9>-Fir=< z0M{JT9mZn*x_e2{N@W9vQauLZ{9O5x|m_^01UgUJw) zH~N(LP{ldGFMXZ4h_|(6+G!LPT#E*431C-x9Iit)ly&HbqD_cCA-fUyFFQ#*wQMP% zGWmv!NNu~*ZnlM)VCTwSHeU!-&C$fxhe|4TwKnOTnOn`CX0rFz*slS4p|7O zvwEt4qJZYE8E*O>L^QxWhgl)$g`IK%nz3fFNGOq9R?ljZ92%q1&~{5`5Dv7 zS6b6ct20we^OG}cOS8E4cRuZqz=+Z;{F_(_dKzL+$jb;T3MdxPtcDj6mKIQIX z_n+FoTCcSlo!j@Rr(QKIMOR$YCFN?n-CS8-pSilx?TVa0w*QLyYBCN=Xe?92{C^D= z?SJ7Oim{H8)=wbUbm+vQ<)C0;M&U9P{n3XMcV*zCI;cDcJ>&P;?h3B7`U9kBP2 z2p{Dx@YR=f5o}wU3}GJ7GO&);X&oF;2Q_g_L zDEnsG`&}X-8QXpz@fffdYM&YUv9rBWiYmDl9CO&kIozF?w-$yjdCIw{(Jpkbue_|5 zp)>nN#?k5!`H+WoaDF3Q_M?pN5Wgh_6+2iXG>i3T7`0$(d=^VE#S&d7Z9-42O?7f5 zjDA*d$%nvIn60P%o&TZm9lF&p?KyB&r20Y8vzPG@vIPulIIuN1CqRw9)yP1}RPi8@ z01{aY`e5JTl2qSKFVjGu&>^wpbpddP%v&kzr8ZFZz2|$O)bo~woJXLj4nZ@Mq+^V3 z#0jTKmN?tt8`W)_3}uprNzvA9=pZywiM<2!cqLjnCvqLz!5xV|J404C&=jISq(a$g z*UFFrg$4#Z#z1i})6iS6hL_RuMJFhb?dyLZ`H_Os!7!ei!Zo7lnYn2intMaaP?)kb z-M&dOcUURygxRR%vyx^^MkQxAR{7`jaUI)jY`CzlQUb6NxHS*yThf{6>WOEDWrTxw zr4pSq={)U<`ptUdzU?C`3yoTOe0l4#Ak4+gG(T-PR%U;*rH-x)mZoP0<;HE(^EJ2+ z_J28d8MbJ%zOt~f(i(s+O1s4}q#i-8I=gse?SL+#{v@=9W-p1?BKMV#>y*l}WR?fcg%g)C?^O?Z}f4j#S6ArG| zz-<3DDEvwZ?yWySQV)=|t1>o3YIj#L&!mY)l9)jB5M8N166wI=@n?4qlH(^xeU!J*(MNxXy8mC_QWx;=F(E)zJUqC&E~S80W$@>SJ3yu zR+9H%UV}rKW(Z5*PRmu=R@@2MLatI11~cSCik0yRq`}*o@M=kV3y?8d&qyC~JeV=q zI}22{m^M;{jP_d7hWLLyzbr!u{F8%lXa7j@DD#d`T6u`(IekrLRe% z3(1SO{ouI=x09Cv&fC2`eXbNN=k0C7*tYY_K`E1|dzn&hg+;o~qLpkp<5zt3q+Zb0 z7wnvyo%8}jl$oB4O zY(MyZJD0O+n{_Mj?Zva_Qu&#%9J?hiDu*-q)Dc}jk}Qh6ix$Z}#6`4=)v1z0I2I(S zm?AbpA#7oAB{M`{UcuZZhGg=BqLIW8l9xgMZMU54Rv9n)HI?IGD-@VWs~BYLZ2m~3 zJ9a(JL`JhVInyx-s@9`WFM7qerk%tvG8ue-x;T1PQ#lYbXemAR02kbftYIMhu@fR4J??GXZyi#k4RaY~pa1 zrR)ws`cM9Hww4CF3FCevoBI0w$l+KANgsW?rH?lvAO5`*&=su$_|_^Es#CK!*BWRy z&OP?(5Cgt~VqpeHZhL4ok20c{p>bVX$n>)%!+bB25ayXUfA!VbDx6?Sea9dRa~*-h zkzF|&@6*IfFJr9VCso@nVGM!QdIUC-5O$Imi7Ijd$rN9TFcS6&R%AV{kl!vKkdkZ& zylKykdL+Olps=s)zia>gyB?L7A6&nBJ*DRnWBH{#1Sgaf_p?af)JLCxQ+E0ml(m{E0M{dWBC?oOldv)I z*~H%nneVP+Vb_2Z{d09i{UJGfC~=@6QenzNIZ4AqioCEL%h7c^({LewO9w5Ku*PyD zO7_0}#f3k_$Pp9PWXraj;ysw9fbn6ul$@p|g-g0LjzmQ8{wC zLf)eU2qdAHkTzu4e1YXU8-*1pN|`r- zITuc|>wA;4p1-f3v4%XHVTCFJF56qFuqdfW@6La8fj83*O$bjvX@HO*vMwE4yNIto%hM(|mU9 z+&MLN?#WlY;(xsImFnu3e(9lyzIb5v)NOJAUUuUy=V(6{Nm&J1j(?vhl30d3EcqD9 z$I%-;|KtaCZu{K%_no_?a_)WSdEMSQ#~;TzS2@QoyuS1NE!z;j$l{ToF!3P^XKtG# zJl_`GMJ1cddmk=k!~L6TueaLkJu!NF9?$I`%TIgHi;ktEv5+MxY&5A5ZH2JHuDQ#3 z{r#CUA3k%_O*egDL`?J3A6B_Dcb-X~N!sHV)xFFce!@v}8GQ-xM*=*OalfSsh#;IT zi3l4BF~SkRJ$MZIdLr`Vv)F+mM+74>5MdSlN=KE^c=r+e4*^r>Q`Qfr-q zcy=h6a-P5 z*xcoFo9u$Wg_Wc8&2sJ8v4xragKDi)EbH&=uMQ>_XAWG|naJDKxI^(W@!kGW5;Mx8 z(~Zzr|JQi3)04-1wZTjE{Tm`K=c^}?P|s_zEwAN=h3Qp+XIqExqfO7n1qS6}@0RxZLO(63` zx>o7&XqckXaHevCA=!!}tqYdxz2AXeEmIo-B|wj@0e&1nZ9@_T2}Gf)f~E6a&4m+mE`mumD<>FTHwYWSpv&lVO^nc3Saewu7&nA zZ|pkE6P1U1xMz%#Ah!y&ym;x7ggX?~fA4)&#!ey!RuCH(>Zjr2BW}fqSoXJ_Mxlrx;JNAg~`>^h4^yAsJxZ`O7f4&#JyOQ7hG^T3(VRr zd%qcPWu41Pg=S!28N+C`)(bbSa?#)VWTV>oFZa2|jgKS0B~L{? zsy@!B0vdo;gZUtEGI1VY$}s?V?~7-ew#Dik!P1$AMhj3P`ilwFekoE%cK)vHyLlL- zt;clz`WXFw(JIc8#glpobgG_xtKc3D+@x2KhjTM#fb}IStv*hjuAS4d*b3>lBff)w zZnsVxNZBr_qMmDw#~9=32T=>IGbN2Mkp*AZ_Nmv6jZ>Ta9b@mswoS|&(NKVsjm$76 znM8+?UY5iMt#~1h1f_+3!*Aj-m-s75okC_a;#80fPnnpQWs8E174&wuv%A|}-_@X> z#BUSYLy4G0LPVJqON=nW*lslQCb3;iZ1hAHwU<_oH5B;+k+9bRCJb_U>XW$nT#zNi zn$qmp`?PX(<>5?WT$Afcawk14OKmeUw9|xEOkDlhHqE4)(o>B z_+J^0l>I;!IAz=L<1#@oH=k`U@BEvU7Or4VEi50}S}evk)c0vWTdKDwrU$)dEz0_2 zR+B1T{5*4yh-vBsVVRLWO^6OM5Z8q8-m(bcI+;8XW8kQu{ZY~eUEIK~)zBM$!6k|- z_E6-(nm*$da`kytPN%G_J~>>uZ{SrR&8-gR7pCCIDm8XKP6)BZ{nVfR-_QQ3`W5wF z^wk(_#@HyxiBpkImhkKK<@TZ4qnTO9w~LNFzjEMiDZFs^{wkQppkTu{UuoBKez(^vq}`}n=`5bi!|6I1mTJhx z^8UMDDH}Yx$T^Ch^LOf#>KyoW0!NG!@lho}55!krH$h$}N*KKjP`BhyNi5bn=u9?0oy{Uq4=QPo1i)mQP=?`>Ay5%Gb;FOCzX9v9ZW$mBT%E$mF=AWheKE_+vi#(SUVLxm)H2J3V=;BxSdwpn52q zj^JAIql%t3*C!~hrBZ&;=XrmR&jD^j%dP;1@N&I-dgHGsm2;WQw_X7B)XoA>ZkGH; zN-q>s%B`0@XRRPP*95{cy3vX(kmcRW~yeiZ8xo>KcX?N5qRCM4W7OJyg!fq$~S$sS^~7L1%H%sT3y8FbOZDOSTuA3+mQ(`fvOwsz=ey?k9c!lWsCcJPS_ujr6Lu zB+8WV@Gv!ubcbD2ia8C_b~GW3CJYjKm@#4oFjAkHKzK^TdXWLn2cQ+B;(-u7B_UZR zNG6eAu$``(PP<*lX02XxzPgfGtu3?$`Qj9j#B_JDJT*VnFE4hms?vjPik;QHa3ORX z+0Foacl_|e;qk@m0`iVzAGY(VLatcM^@BnoXdSpLPi7v83Hk2C@X$i3OeQU)c#cgb z6%n^`Jol>Zf`Lz8r53ses76*gTL}8Q+cRtd9_%Yi}>X_z23 zatsjyyot#`Byo z=Lo9q3rPThRG|)%iBhy#AJ9C`Jsf1Dky)7P^?;;4UFa~Vf-3GoEH>SBeBLHe41=47 zvnQsePRtH(nqh(#SQG!`NfHcYRntailt8j3@>Fn%ze6qBkKh5!pbb7uY~-899w)n1 zm_|@VXef#E_ha6c*ZLARLEQkJvr4E<8a~lTcmXpcw}S__jpZT&`5+N|v3sD7lG_=} zjLJGA{l=0E?~#tfy~3IUg&;3677n{%-W6m4H-ApOPh!7Vxm>R^4G{7`4i@U| zLb}juERf*=W+?6WF29pQ%)0Bx7H(Me-0k}}shextTE5qN!mawN6wx|zg9Eu%N)IX{m9vtMwW$Ezn9KYzRk!-IipPq5zUz`Tty63>ol(_ z2pl-=1Z^W1<&E3QFFU?@Zykgb2@7YBtlxb!bDyDqbNa;DBMY+>Coqh~)su&}PwU^K z)c5G8w-29Md2lq-E{xt1oY3bG5kEzgSJ;P(;Csi01v>4pATG}3#VWk*It{BQUmJh& zH9`mXX}-Si@fW<{J$3nd6M3oYkAH3Fiyt;%(6ub<13O<-{WE8h1tLH`FtRz$tB3J1 z@8Q13hKWNqST67`c@2k`mR`hjdHJ5DrPr&&CwES&pOydrHBz0#$4_>^s1|9DsYIYa zNxw+^kYaK$xUskxmwZN0%B>fbMposgky(-SBN@$t#2G=bleLqXOtwf&gJOX_O-`&SmBXy>=rCN#JIJspi3jmP6g>{v0LHab6jf zjN=DQw`AylgUHMw;5rSzTwJ9%!NSb!;ma5nvm`oGf2B$077jfIfx|Ma(^%976q?jHMWrDlRa1c#dFJF!-j$vB6lNH(v*;cnW+oCc#$E>~_eD&u_}NCXY0CwBQW>aFUjG2xZRiz3Pyq%j(^ z!Y&WPDCL!AN<<0-bOaOWE#yJEx_V~wMF$SNXmeqDt^@1-!UL}? zV~Ul}b;ifHuGpko9Bg$q?tKl3>ETqpSbOAVYFGli9@#t}QFqg4XN4(xNZ*vqRk<;% zYb2~9@yz}}ENQWt`C)ZANK9v$fJT*M6LlfkLbM1l3)(<;RtHl{c>#E8!LW1sHqFjm zbzq7@RZ7jqm9_P?0~PnJwNfRQ*Y#X}BCfYf9iLHHZ_erqWM;dIwZRmreyy&i-+FVe zHQbJiRb6fF{OrMrxr|SBj)MAjKU;6jEcT}heiHUc_LrVUC zGJfRjtK;@7@o}f~xK3Bdblg~p#-$-B2->bzx~5iDRxr`&6JTpp>N$S0GPQDR zsuWHgxv-1&*B*T7gvw{KQ{!Q2|AwYY5O3K_g%(%hv{c~LQ6MSIl3Xh`+f%zTYpka) z7g84a)_Pn}*Zs&3zjx>9Yt-5`JMVnwH9z!(s_uL>e#=`_cIO{>k+w1zpXb$IAoDbI z$ef_#dxKOj@ecvG!t5hL(i^B_Usk1^pTcTVKX%~Ip$&?>Kc-3>PyfMte#$NF951J8E$SHn@-QHU7M^nILBM8e;y`;cb=Dq?ANVfFLvBXLESe{R za#J0;;ndRNQgxzLUM_9g#;J$arge&UHI?|R_H4<&e% zpdm+sP|p4XoS;3t?tQKIEOj+#vU#l}l7OS~gT?mBj)H9K`}xjJ=xYPM6&XN))h zwebtbAKFTgIfo84O>=x4K=WnO#auOtZUovSeHbnX(cL{c;w6YCTp_!{1Qk$}HE9FO zyy&hhJn{%qp5*01F(~y*L9vjfMYM}=$e+C99bjg`dcxCJQ&q$CoLt8DWL#PtdsOFi z6pLQK_CGrI3o??JKodh%LLW=O0xH14{m*AZf zCMs4F+atLh(8$d~kIn;QpEsijb`-0tByYGQkCXP_%w_=4V`Mm!ZNsGsZ0fNKxT(XK zRykn7ct!-7D~@CrAaXqp8j$3riy4Osqe0px)I>GbbO>sfQfkx|A`!hDS4mSK?IeOH z3ag}uWr#~gN>Um*QJCqE(CXDH%XW!6ZtncVUnl2ixXBq~pRzZe$s0vQ^2IKSfaX~l zKkp4e?x&Ue-~}(-Ll&-HqM|@($#Riem$a83_jJwot7X`4(@wV0gf0aXj>-hM&Z~7& zUs909`*w-iAJp&yI!)PYtbMGKyzNkGxh)y$=}Nv8rR`Kqg_lZnWd&?+Hk_izNMHR` zb%?$?LyhUNcvr1V{A4m57@gP}Ja!Gk#7IoKNLU=o!Y;Z8PxvZ_>ktIMb62 ze-e6^wqGn~Cpun8ZaJ2+TP=gN0tSum)$-n`9YIxuy8#?AbphPKH?q391mc*Yc|mcX z@C!Be)$;ZBU(Ny?Fo= zE}-)CWj)HpVs(^Tj1f>1#0Xd(4xEJ=g}n^lN0=;l1o&em1|fuWX( zVnHyXn^@UHQ5M)_5mQ}$*xNiBFuAbaVrL*CRW$fST@_VM%=?70jU#n2<`eCHc{q?! zndrT8Sg{VQ{*eE{s%R(7SbG{WT)=WkA`}?x@|glO$q*I)&F&qx1ZXDPC0CC(bVPY9 z7sFw6afY$)L>o5hu#)CwsP|kUzDN1wk zV7YA0p+^}L5{Hq`E32b(g{owL07at|tAG>aG^9n4Ko~nnCzi`qClEXFb;t#oext%>-rXer93GOW}gG%#KpfL4oVy<;Oz(zk^W6pH#JcR2V0;l%ie<6*!Ov?Mzu z6H<7Sq%CeRf-4K}GGUscZAWl_DdW?45P?cMM9q;+6~vxbpw>P{B_e!3WVH3JNkLnZhoph={lWJ@qHKp1VLV(zS76E7iW zghvwwf4DiEZWYoL!a;>_BAfRDVh1pM=d%-y7_UVv=^-F0J+nd|N|o_7npqzn2tHJ( zCt<4z;tQ#gsr#Rx+tYQ(*4J^00+PwtHIt*$$#9;g8x(qhkA_R2KQ;DQY);sdadNFP&n!vi2MdREMLUxswBw5PpAz>qAiHX=`W=oK7 z@$#sC&!{v5SR{l?k>f4O`WS_>`{kvBnuxF>Vl7d%iY#F8qYfdZ5~u5O%<3FG3rixP zA&C4t02^y?~hwD;vZs(CNHm~kYd8U<_ z=w52S{qow2?tRDUj-PJ>9J}~9I-Y#2N-@DpcO-baG3{~nYV6|c zsoVSVu{XeVITozM%WGhXWU|F+%-okmXhZ=RAzoH{i~_<0GC7J5V^LO3$Y4i`z-XqY zpC*c&&{MA@(W@lQf_-lanM1;~@tiB!x`3pCupk+O0O9mWEv}AJsIH1gau2xl-$`Bl zW4Rq5yzSLi3jb+3?ANM@qDn1FqvGx-t=uKo7EZ2moYh}l46C^!`zf~@OZEB^KCkhW z@$v6xKRipqF%qEkK8yyhU*n=ne;d)BZ%&&TvckVj*VhYH#sz*|XKoRKr&;bbRs0;i z?8b#DpU$36+X)>%7Ss9c1&YO*XwK}1zv#E)lZy{?D-cgmV2LipZjd(n$GZUjB0e@$YmR$>v zzbMPBCw%a>X0?JzW_ZkT-JJ|t7K`|SB*N^Aj)ygwH2w|JctY46ab5$M|?qEJq3Ih;;e5YV}3a6W1dTbn8SBhF_I_y}Cj_7r!S8Dxnrx zVYfZGhY@wpMvvsCV16beN1&&P&s37&lgFt2*?2_9_uOr~WQ!3eHg5P77O*9!F@Th3 z*cpWC|Los?V*k!>P$Ng;w=mnA<$BPJaE)N}2m@s)!Y(CUyH4T6sM-h%UT8KNRUG7q zs+fH4WGi$mO}6ELmT^Q?s3J^oA$hTWifZSc9~8r8shAZeyTCtKszTS6UCetg$VC7VvO&&4;ewt& zor$@1vIAGX@qL3C$e0v;w7IwMy`P{9<6x`}C+Ih<-OiETSPEWErdY0SQs?P}0{xVt zPpD`A`PtuAzl@J@iZ9Zrm`KTu7Ef|w2#84I-f$~X{jp#qkk(i4Zl4?;ABX(PaHheg{rvRc=DRqbkc|X5>4V4V4oD|Rw$W}xEb2dhF_vfNhLi2~Bh!HM^=S|oUhO7L%cTpoY=>NB?MB0> z+RcWtsYUp1l9;sAK&PHa37?XAy_Nori^4iT-aB`0LroOU-EhNAH(e*S52-|Z4lID( zgv&9loT+o-aPr4TTn5j89TRS=5bnN%NWM!whR@Brn5d&0hKxyaz>sRpNJ)qoiI%X& zFwZbqk0e(T^^?{}X7xRB$4rw9A%+X0%`%^9t~Q&iTk_Iu&dhAh%sfgWRxTIiPHL9j zD~IcES`W)Ts3tLxF8;dcHFN!NvNb`$%Z5lRV((rv=tUDO>gSqXvIth#(at%-CuHwi zGoNy0@40^c8+VI(w|A6Z{*U*`VfK!kjLDCpQhbU?*b3Z4mmw*T2J{;mp-=PR3XtXy zr-n$1#4FBs8fCS;)=$xJrnC^vMvP3n79&p=i`1WzLa;oycyRTe%e`Z(SFPtge|_;p zSP!}AX#p;TbzjHFP(w*=2(&-;io7Zlsc&-{ZQQnKtTeOOCrO@jedR?D8 zv+t_t_`R*(OzWs=_Q9o`J_<)?P^ye~PQ0^!s7Sq>ZvW>d*VZOK7BxzKF`sK!;5$on z)n8?9{4jdz=GYZnVONl+$*^Z?lfbaJuM_+h*Tg?v*}=FVq7E1%>=wT@oT z4$6#sKlwxnx}tyQ+HGs=^L!|kp8K>LmPf8X`|KB!T;{`!cy0zafS5eD4f{yylj6nd zi%lgR6shG)!ecU93kx-HJyylkO5$`WE|9~FsT{3qF}gJaOB+5lV>^UQ@6ww=vi1o>?%3x-VIX zB4_C@x7E}?PH${X%gc|fo>^HrbHBW(hv%+J_QcEI7XhxrynzuWekUz;BCQ3?+Ak5` z6&jq<8xTN<5oO*)f!I(vFWNFxYqU?<@yPhth^-K6&pH_cCufSlLBaA8&J412wK+)qVqghmD z`8<+jI4i{unEYZ%%1xVC>zcSWNl0bsK=eQM#D4_%F%;?nLgp(nG0>MNBccshgKkK- z8tsx!#?;Bd*=+A1eKQv8od-UK-NVU=?fSXnzDOJv-~<+OCkqF7(rINA0O3r%{Q;wL zD6x%YcEGwqk7vr24yjTj8SAW+kg9NoO>J?N(l;tbfcaWtz$Is!SZrK|1;(SB%@W%1ufvPG8=8zCNoEL;Zr;zvv8>Tsj>t$r+HtWQ3YAdLD$EAfveK3|zpaD6aG zpdiEzoG8ht9Qm93t7}~QXg!mGX>zT}1#?G2E~1}hd{VW8U)ZHwyoJyOc`*PvmfQ(a zljoG6Cx_@Sg)Dpy=!=8`3RXVwo6Cz6sgj$mxp}jN_Dc`ML+1Kr0xs~x6r(cr$N=?W z_Nn&;*3O?{M?m~U&J>O;YV)M*TIp0sA`~N;{%aQN8TK;AWRJb$r}921f|yj9lpbOx zVdj{*BbAA6&4akt%!az#AppZPRt({&k4lZW9%V>WOq*UQ=QRqc!9!|(k@W7BNeV(G}mZKoV(_>Md&dp$^!hlR?IfbU}z}KJYwKLS8r2cKr zGRUDI?K=y=fBO1{l~3ge0Xku(rNaZ2sgl_(83|-4bYDuqOl)F8P58?6jN|5TQbJEn z3b!N+YStuS0IXu))+-7x7yZiHEC%yAh5rILBLYZ_ZljD-41hMiQ7Yx8vl^M4cy004 znqBdUlN6u821${JOvCQw;Owytch-j^4ATxuA&Ro*)G;q)vN5TEMh$CRsTqf)ImcL= zZTg0d_nS7i06H3^%M*V%uHoYaNeX!p-mo-mCZ0GHa%7SC$v^*jUAY!cst~RbW#obAzinNf}F2Za4E9xJK5f;FbZ&LSeOiGuG zMmVBQW@!AXh!=5GNT_FTLKBgQC|DanGN)~6NIXO_qG0i$S{2ce{EPtH74%6U=_>(F z0$^sft?ot%m-Agi+j~#*p0kU?Rr}ATI(Z7p;&{eZxqh*gvHWyb-#YvFD~{`1>l?=p zKJwq2ou8PKKxqY>E;G4?F)VQwe42JKEa&k^6Y}N$`QE~sQpc87^+x9vTPam7=HM!T zGXRI^YG{g2i^ zqy-Vx3DS>QY;CBzrMPXBm%^EBBXsVWxu@t^#mXCJ?r|GYb~f_UQKLKG(JQNk+_8VN z{KDO{_qb8RpDFIE7@e@(Z9Fh@kApoo6Zw?l=$1ovwp>v6l)Lp1SvccI4VS$Z)+$E( zj?uQW@d{sJwhgUJF?Z}o%S#1T**joZ?Uv*AzTI`BW!B|570QC(^}NL2+JGB-Og#@% z11&jyh=LMa1W|WA-K#f!1aV1 z#tBHiB6F`?!&`jO_2~GI*GGQc|DV@z{x|=VCob;c|Kthl=-kh0ht%U^En5GzBMl2( zMHHj~nhm-~LIjz3BE?}WLzD1ycfgGhb(>cjJ;BJ(^fCSfR2O=s+@}PC41^{b#!{ya zz%sMHtd~3lxh!cCqFD$vrFvGN`l;aB7tc+U)AOg8W$JNwU_73?<(oGL8~J9YK0R^u z(zVwft@?#JlXCi4UoiaP#KKF)`=CB*4dW%oV6os-XBtgt1SX&!f`lWLnVG5T?Vy{j zjAx0@76xIO8o&~hu#MdGLg{yqf)#I(RL6MIDC}EAh{i{b5tveoCyqYZw0}Kr<(=wm1WV;))65a*LWaYN-7oj^j&h3=IrIq6>5Z2p z5Q|nqsj(UQiiIBhtB8ybQ!!-*E8$lB_pg%t*Mma684VK)bj^ww0Ew;E6EqAGVI&QJ z(VRVXsELdtrC^8ZaQDK9euXhhRk8-ORhc#zcQqZA!;18zbjdi zSn?%xwot2)(syw2^zM!(wc5uld$7@P=8m7*Xr!!bj3Dcta9f>)&i=uHc1NjF)Kc2C z8pMNIF(}*rYjN1#s+2X?p;EM)n=fy7rzT$KW*0QanK>}ij~4f}50q~^#m*ep;EaamNrxR1@VnXW9^}LzZF6U9g{jBC9yb3=^kps@gRdL-txZkZg z5Jqfs>EuibKjtq|(>aHK4K(%hWo%j&WcuREW=bL(Z- zeC&r0-+BIwdRMo!^I?{j)a9k_O^-hM_;;Q?``BX~!yqs7E7}w4hw#nrXU@BR&t_wo zGu!DnDCnpnr_luxAuxoSa`&+W zV%@r&7$dp@84ue3Hut0J6HrV&u!QuQv+dJZ#efhtC7w9)@1DoMn;pCP8(UmQOiBn2 zIVip;x`CKg$#`ba%hV_R_IWTC|BQ~>S7ZeVfDxTOe}zZnPS9viVcTj~r*wXx@KT+YdfD zM}Gc6E;{b^D1)x#2qw#QCdbjzI8u*g-F@@3`&-RQ zr#Z8*IW_tB;~jW-CMUO6sRym58pk@@Q&Za=Qp7v+YqET8zB3(ny8Gtm_jM5x*Zixh z*TB*#tuQ^g^TAwsa|AMX4GlxFq1&0Hj$QrxFEsw?olUx6<0 zE~+H{JmYso6wbtT4yTC(3{W^x3=({GqKwi{S36uSQ$AA+R{%XGy?OV}C5mgJwWcJN zMyKWG$>uUa@e%Gfx&zcX93=@%z-mSbnk0X;lLX!VuRFy>BT6yT9zBH8$?OH+#`03A zy+|)`1S%H^5CU3b21`ND_Rd0TsL>+OupuHl#^~xAI|2QNgbY%PqGXv-Ws^h z7ou;B^%8bOiiuu`-%F4b52HZlLec#2G{U_>#)2@W>@J`a@@4d+ki*DId+*N=%j`0% zaECWfj;t)lnM={nD5Gx>jHp|kU+o%w~1 zs(0qMW=`CE<;>{=p12>o6AN+YpD)wZ%oO}0@}}#T$#Y|!S8Qch-;f0^2N^wXy0E8( z9~$2n=ec+yt-A#ym#wuc0~rc3UykfIohZyW)-73Exax$6D53O0ePDc(7aoA?AC288 zyyy1Y=b~0?rqxo9-fp_v8Rxc}l@pa(hbqOEnx2$jW?DNx`90&gYAN4+8;ht(HrYOw z)L54Im*@&bxa#5Be*O#%?F_lqd#8}%p6s21q!#R*0>Qy^Ni`yQ-TC6-Bb{6nwc=Pg zhf~&^V;$aBRyH5c6@2y7h4M$4!p^y;pZ=$~8T0(7`!IBZO!%Q&QWAOVRtOOtX z|AKos4BO}lr1`bvkKZ!(V)WLtV<(6u8wS~!*Kzh&ZOF2Tu80_p(5{kTtV^+`Fd9?qXRsyshNS& zp3utx3;q$;Q!RB^ z;cqFd5IIP^&Yj^xw6p@kjZFJOVh&gXajp^??~6r{%({FZ;MGM=i!X+owF?~<18vW3 zLywZti4;fkz(>2Qepn*S1y4aLY}{vt7T3BE%#2XQTQC5K)nTzI!XIu+%#3AmY4a2f zM=~i*o#XO0Lg%tK3y3tkl!qKs=8u?LEk@#S4N+k&<7t=El}vG5<#@E^k?bJJS(qQ~ z%*66x3%SPK(={pH8nJ9nw}^k^QzG?X1Z0jQ*}Ird#DMh$eBDeQ1edxAVg#?syw>kT zpGH5Fn2=Ex35!_zeFXxqN;!b2>P48TUNJDeJn&!Yw^C}bj;GkM!~vwIGBBP1Y=Ky1 z8muf%Tq+wBC%WWoKvD^suI=aGY6E$z=hV{zEk$=io3ufs8EMSg8SozppcKZU7Z45< zkp-=#1&)`Bba(=N+!toE=tKZ`aG%0}jwjI~yEc_=_?5VfV>jjbKL8pumD9Ua_DY#O z1Goq|5E;O!U@`IzIU;bZfFF(|k5i5Zji-X{%<+s!^4AMKK3fZ)ShZdIAq-l|pqbPn z1U-oBSad*lzDOw#s%Ih?e@Z`4Z%sgo5SFKW{AYM_#dDgr^-_IqIR_9@qnA{g|(8_YzMV^#Fuk{ z|8$Hbb(}jwf6@i-B6b9Zgn9+Yk~z_#nQjF9MUQ4Yt@g-pO9H>lL^9y;lC3f^tTA{o zC{WCp;Dw+8hUd{hJ4lR;O~E2XvUc}0MY&Vli<2+mN%#h$og>Xdrfe~+jQiN8JPw1Q4_synwa{UIaI7wZ&h!kOHu>5Ws_ zmp)>druE3Ck#V0;=gAlZ0|Q9{Tm=Q_M+jhayC@=yG`0oLQU?po1vxy6mU4qUf!*T$@Rw6Wav%+x>S3Oj#=i-Z3=OVdLt z#w32+^Xd@iH_e=UaO@mbjK~nw02)*z$?{q~vV?Uf8B8E7EHC6WUOou#1y!q50) ze2Z@%1S|=kW&6#NJ@9Sv^02&|k(X~GtOHSQDeWhPqWm=FMkRV7TAw&mq5n%ThV zt_H&ko@5mcN`cd)W`OIY^J(A7RlE6Gt-apnS*zu{RYe(N%{ zAWOEjmj2tnP4^6I=kF~8Xa?xc)R%YuS`|Oy*<0!KmhD|+v+Kg!B*io%)u9sd}(vH|yk!ySl%x@}HyXokG>qcyb55&6h;}ncYrASlz_V>U4 zicj!Jol1$mix?&ZSQ^Beaa zwXG!Q&a#i*_f*ZVfMcAQwm0v%Z@Q2hoVoh<={%X%RQLKp?eZ(?ty<WOZF@3|W7=$FQRgZ835$a+UP5zn>wn2A6M;|8tMA1&(lo?Ei_ zfi@kjOf+Wn5hwO&2_9HH7SiV2FWOr`C+Ip-8EK7uN|h#Ai0zyBUqy`(Wk*~YGFth{ zEl$QQRGAEYw!@PvV>!av!;*My_v=VLKX=}D<3+OI6tLb(6wd|2@7+p@8?0k@nR$5r6{Zp<(=4Ol8D@uK~eAb}`yRA=@lB&E9NYZydvr zZ}#+(Z*?o)`jKk;U|%NR8wslynbl1K$0#8U$`s?$c1ViUTq&*$kfx?vrDB>$F{U!r zZ?zm8{(jN)x*Bn5EhuWb54J5J&w%1w1?;>+2PiO-Lrb01J^1|iSHD3xj>JaW{IwJ` zMK1pzG$?~?^S?@nmW%PUw~wyFwT9$Wa;2Je+Q?-z7!>rkwyzBHQ57q)n5l=A)Y3tc zhzKAB+Q@$Fj;53!X0k01|rDVw@l`P;ie`U zWF?ty`MA`Ia#P)jbha*g(T%H9#jIS5F`5rXIK}69J(!WZh^4MnC6)IteBm$mp6aPD zeBldu{zaBO`!(#lbCOq3W^$IXCvgv%s4xC3vof@tdbLv$|8})g=9@aV^WI_{7yphN zo>K7xVH}5#7DDoHOJU6GZzku3o^VdRmN{>gc*1qed~+K979uZ6CUZOS)>!zUF=1mS zf4Zi)N`!QV&PbO|=w~D`MT&}J34jbqy6Qz=)sGo-C#KiV1XIK23cjbozNyunKdetp z?GK#@9)m{qV6U^Ea9aS|Qnt|ie9wwKtIN%x{Y$itWpVV<;Xrea%Uf$b&H0#c64EaZ?((o4)#`J zt8-hPs}mE_zR2xM@K(BM;daOA9%HhP$jczK9(}kd$@+We+W=QzU7RS&TYH|@ixaGO zo`TFc2OKtdTGy#29tS&r-^x8BA9iK;GwQ?YDKxfGozJme91aRytlC}}Lo72?_w=6l z*{9=onmfNYXWabs>;7B(h3nO!{+;$OJY6q**RP41C)e>0$bSb`^06MpMml}mTJbQ& zKPLVKeL>y%VEd8BA89{$-+en@d-r>;92JGgY!43|8lJoV{;NOx?stE7FgZ$BpOi+j z@Xdcx{fqiBG@6inkxl9~-YU3Kuy%bcYACqqDM%}lJL0t^x`ybOv=^!jqC%7%9>^>4 z*VA~WB>}#EK@ufJuB{HFTEt*MtVB^{l1RQF0?Yx+two}Qi+wc})#~9}n}bgC?z@|v zeslW1_cgD(u1Rp`o*Bozxem*lH9gqB{_??;rD`GA?9#;9M<&akXf^?iU@5tiepq}n z{`s7f-J&n~lkZ}f_xqxXL@SXx5!z1iS1ZnY4o<-X-k;ujk5g&X>tR?oO>it`bS%HQ zl|Mc|oy|6<=Z-1)c1&5bt=6oyvjfV3s^0<-(&K7ULlk4L7UPckW-JwIIgtqnX+O<* zQN6J;n&H;iO;jow!>1y{4J4Yx@Zuz{gI^O5FI{0YO(Z;`TY%hT3J}N|t73yP9I?t5 z5@EoXQ8P11CsRu&*VW_{R82 zmy|i(BBKhFO_m~8jW_F8n)P`puY|2-t&FFyc_Ba*;3iSf!s zKniNzkA4~D?+-u5vCLLv{k2tSlAf`yk@%RTj({=2=^38+qmSYm(c5LDyxYCa{3ffn zWNN>mL!uji?J)8ITtGpdc9TB-DdgbCh&aCnubQyrNe4oQW;*1G`M#%cMTv;qRa?Zv zOLv+RPAr)@2@xg2Q|4BTd0IE2z7n-u6dRxYWD3X#U|fULKh&Gn>K1q|inm}0=zgQzWi(Wg!S53>IW zqHcF3d0=lM5A45=eP-;7YE0!xewb7ef0VXny#7Z`EnZ(bU{_Y7k!fSrWI@uv(z+6` zC?3!xI%78UP*Rx&;ujWo{n}8nWkkwayBrd0D9ZdQ(L@p;m*V8h@={OkFdL0-^6pI^ z-A{Z>5;s^|#c1W{i%%m_SozJuuh{8Y;(f+>b5Jd8GFG0~YuK3_tpgxYs>8lxsbh;^Yb57h>@5bXuMhEjyda~)z`QeG`BAREOr_m7_1v{ywd zVxY)asZxl}tEBU;eAk+Ob_gVmC%L#(PDPDk9V|0(6Nx)y=O0i_W!WZn+&KOqP*%d- z3yqw*+F;@6No8(b>*=!!0O9WQbNr?!KkG(M14E@1V#4! zft-QhLuXW~t?(eq>*#~ni+n$vN1w9}TSnX9X&p}MZS64GSU?`|Nohrggis+uBuOcB zHUPenUri*CP$TFwxPtN6kl^=LE(S-bX57IwhMF-8ogePje=!I3NHuaQAv1j+C0i50t=7Sb-f3APXQ3?>WqpBHZiJ}7{%$M@Dg zo|3h@T)RBZd2*MtG z4yv{D%(0ytlWB4 ztY8h$4TmJ7B$;Y`q!RUZWDL+#S<3Xl1tdJ#ymzf7rc~%4Mw1AlF(HRoli78Ic#kA5 zhH@sh$45KE#l_j?^7?{$J9zeNJYP09+o}2)1e@+Y;aquz7ZJ7G9JTvzA7<Yl@p z&A$8Y+iFRrQdOzyU;qE}e~#btd&=qNH8$?9LdttE+;qsYjXU$m9Uz7&Dv72uO68%4 z9>4$o$06Ycml`j*@kUa^u?Jiu(|}lpvtdra6PT`q^>!<_u zgO*~})I^l?7;ou0J0DvhddKfrL*;^tM8^Uaoa1yZjU<_ zWNZuqK3Eb!0_gZ(qa@*{EY~19N%>|w14;|`H1#jD+kbw|z{_U6!8Kc3^YdFDlw`R? z;y79Mkq7|~O%+(0*g!jI{EufU8UB^X708FL%9#7w>zPc|^B%e^=j-9x?Cid|*&mNk=LyDBDh5MLPq`^7T&_VZ zA^SrXu@+)TMvxu&dY}GxoY@5|81ZX}ZZ5@E1@9?|4}Q0ofxvXNLsu~L2a76YS+V3K z#RoNV_wp6Hx_s7%SB+ywjauA1yIRT9@l+GHw3W;*W|Qy_!cq+r>h^c*YX{fr{>xTt zvBm#Gu6ov}8nQ1(IIFrTh}^O?if9SF;!)PV(BDhRlk2tdrm`2iC?<)9&P=jkWs@!gjLx4hJhPfH z+*EdE=vGs%sHDD5`dxI=H*>bo7&f(Dfc6|=_7Jm9QrTS!e-6@AVNC2_zLn8E9342e zvj2%!HcOoY{d%Gjp4>RRXG)#cmyWDx$_>@+^KU3RDQ!AZ#sNJ({#TTL+5!XxX}CCQ;o};$crF5Zk&>)3 zjjfY?vH(^D;q9kJ`%@csV+nmuaz><^%Mv408j9O75Pt-nMCMB973nM<{tLgVxvXYz z3q|{oU+0Aoe>pEdLK>DP;)DO{Lg%XuX)s2)zrqheaNa(9+OP-6 zjwDz~j$LHgcj&M)UYs;HM#_b#K<<@RpzXw?9vKuy^GPLX&2;qY*7n~RO(^I+QdIto zczV5%Q9t=kHIr|U{0sXAJ~L_r$BA6Ui47VF@>n8D5*-adOu|Z#f@7F89Gb7N&SfGY z640G?6Cl>RZ-ALo_^&NZQptjXB(n*)C5g=81=J~ z$dx(4sRbi7h?SJ$)C&1IdOaGv36~%WxSa~e78>u0JZ&yn3oi8lz3H8OW6DdyvyQ@Y1h$itHVm5H8Ftx-gS<<8k3PBJjR1Ek) zBk`#YKLkZagwTz+MdNA|=nK|O?T|-A6^bK_6|-hBPvF~!vP$xCG^#s8(iTg?B2N%k ziLs94el@85y`GO+DY!er5j$2-hA8xr%tKZMS~%5!MalmrWkvJ*l69Dx!ucdTHOrg{ zta*k~9ag$>w;oMF{|l#00(b>Q;0U}c5Kk#lO2JydB~b~rvIWa1rKgB; zC8##YZSwD9Sh`6V_b}zVaD4ncb>cLuU|BASSfOY+VZw7Kv2r>|&`af7cFY18hG!#^ ztnqqK;kLmd$FTzaY@!k`=po>ej^bJz1uFBiys3uUtKCq@^RU>4q1a@#;aY_C zTm{_mYADcELUTc-ySJFhhQb{m2Ro_`qS~S1%GTg?F8}GR(c->{p3U63zWTroX^g(t z#lp#Uc|KgvXQ!jVi1zvzfXK>Jv7F4o6=p5Z_6vc~!=YelsWPu8%=tnW_4eUVAUk{b z)XLdxPFMHLEy(;QIF@l8Z(-a{;eRX;yP1WBazp&o-o@ya(kHy;xx-N#uPHXZ6mD{~ zI{YelL46ukG1sIdhySJKdIM@x`l^HF91r?@i}O2nV7u^jzrg6);_R?a2u zE|oINXO}f}vbht*ndYEyxLE6d!#5IJ1(pucPg93cjamz;uh)K?`b)xRF!F1B;jd%b6h9omow+`Z0z((m zv5Xd`O+O}qh3R%w#V!`K0 zv+?lXl}D?&Mo=+RZNqqqP*+?{RNdtnC1nR1>-g)p2mvKb@N%v#q*+r8j53ddU z$O;AOBwI3F#yWzbjjzfPx4c@Qz(nLEAelnaNo5j_T8zfD=ypX78&}P$IX5#4V+&=^ z4uhSg@NHzW)@sz6+FHkmE2dRAvv+7ZndG(MFnfK6VhH$GL`+AmZ;*;ef)R<0#Z*BA zG?Qz@W=7M^q%ce{tj6-@%bf1VXj}M+gvoY1oG=HJezG2zSh(S?8|UY5yz7RA?TOQ; zf3R@Ff~;9sxN-Y2Udza!SUVIX_mabwCR zZ0LJh5mr*e8GY!v0RunL)#TBxl7D&CzLe)pMfGI)0S^+mzs32bCL5)x>{L7oK2Hr( z5mq5RJrobUI352v<3tC#IOX}2hyV_iY}e;c0Y?b`1keL}F6U@L{ex82R&Oywfd{w7 zw$cUVBgBHUNRk6+)nkY680X?^)|?i-V%Q4ersN@DirsJ*J;SD@unSS7=0(dx6>QV* zl!uB(I?J~&SDjL&(#qs!vtH3HE9DO*_Ll3ew{Y{~{EZ8qTPyE5OM&CLY9&(0H*;3J zx!G3Em#ZsxtjzD7Y)=(ybD;PpH|D2~Z$G#+)$8`#gIflJTNXS0Zf|NyDZ^w{DxPel z@~{V|RXx8d_cDY|{(a&s3>C=E!0rb2!* z@)NKZBz2oxHlV8HLf@xa-HC;d+Ai}A_lrFMn23KgEY$Fl3)E8f#n8cu_~;zPHexZx zE=+!iyDL^l`Ihx23fq#B%GpXX=lq{%n|IvNygixRdEb7F_|59^YgSx$<(lK4G@`PT zP8}2_P3R;7AFZQAkwP(t8_YZ($;9K4L_*fuh8)r6$Y+%X0namuxy0F>g;y1?Ilk(; z;{)SWn|S(9@OA$J9)RmWFuw&ZsIR~v@Q*?nh2zZk^ULJ9BP2vrkaDh$v9PHCfC;D;bZ*^#ts{ zMLipE>t(yra2r$gMjJ9VUGEX259?W{n0c6D?MgiHnR30F!E>ktbJ=EHm?AN*39n}z zxOwplr))Fty<169#LbgZb4h1$t5hWio*ioKH$#I7bj;4hEmU-1jAnrRjJ%;!JXX&I zv(coX!nm1A7pYLI$BkG@hspo1(alM>cVeoQ1~eEq8_k09EGo?z5rB|jkSLlhb6Py` zdrC3ok(J^xI+V z#?)FDD|dGX@orz-UfFy7;r-WMyZ`X}$8Xo)bmXd&C$Bp4k@4H7!^vn-H={sE^x%t| zx>1fhCJ4*Qp?5U(c#Z;x%yLaIWtb>bI&MB4PR0s5+rNx0Dr|1+Y_8m#b`Ksu=<#|GcaX%Nhn@MG6OXr_zD@kG^Hc?+=RhZ>O11M^W_UQQKQ2NRM4P8vZTlJ8FVKjfia+VL~anWyo-Vr^eG) zEyh#OQDE8_v4mrLFR_LoaQeaYo5T2s6)TIMZKSMLbCU}=g_-M3@-@Pam+~kMOBM?d z;)sLpKRZD6(}EohgG)#wVi@MHhXgdbd5q9RB%9O>H913Zdvs00Y@q%UHdY3`IRr~X zIKv=U(P@DmdGl^47qfpm9^9uS(@sF^BbxA~#xzh(&?zWsBZ~7ig_|;%$jmNF=!1wi zNJxyfKxq3P;*qXytMgxkzBIST>=QLoC^<38Hqmn#(y%?CVnO8)u93eh$tNg$F};{x z#EU`HpVA@V8fB%9J%;}@#mH4_9$+gaX9?vnj`9#p&x~nw%W4vM3glj5yO&a(u3d)D znKIOnRKT2`PDzPUSIOxcb8$Hv*?Xx)5 zsM9>cFA1Sj&4;+lC$|616b@ya%qh$}JOj4<#1($+@0X{i%c*2{(fIImiJL_2@x^$e zJdG#F3+)f3uMh1HrpxK~T;|ArYIbv0|E*|0oUQhtaSJ@g;;hfv^dFEnzeKL*giK&E z5X8!r_m)T$Vj(+onP?uYmbsQqq)U?K>5l~=oRP=QhNHmwZq|UEMUBAf;Kqz%uTyVl z7P3Wiawgqu&Mf1Q2n@pdaILX*a5HNomh<(=!C-zw`GX|j_(HffQ>)n(q zb`}-~O&!G*DIgw zwx@>Gyq9M*W8mqDWM{pxvRJOPy#g(h&|46&WYP?+V%eS>73NB2!3qYZ^3Gx2(JmpE--jL}2=)J)%@amBSlLUbwB z8NyKK{~=99t)!YO)y~1GeyiRpFmEy8MWXpkuGU@YR#RyxM`G!6jG+T+B@{d*jDgA- zAbJl4q67nREQCqeO^JZdcW_}}=qF$0|r!+H>O8s;JpZn(hfbO|5xAucr%xbO}HjN0S5#SEtxEMoreCP z0_27|>VlycUz1EQDE`nvZD2XzD3N!S9NDDxn{PLQZq>M}*)AU}mUZnfC~$k*@aXDn zVRrl9xapW(ea%^ai{7~T`bodh z{Fn3n#v=;{8~s1A(ns8Z-yp9M^m3`u|A!-euvtHN`di8q%6pKiIew!h+4q#W75_L; zUk_#jW^Tl4dk9T;TN4%wWK*jh^hO#4SBmoXJ4|v!_3gij8^Qa6wi~YhWyE|0p6%ol zCjm=*|7;f*==DGG*S~i9*-RJL>NOPBz)Zk3w%-d)cjUyMMOJ)W6Y==xI=TDPm4une zWpl;h{f{$;>csRqcj@?e<8kFN)r@5)jbg4u&F12Ku2V_hb=wLAkhniIf;Hs z&NR3#msv0sB0Y#WU@@1?=M*B^*-Bw4ecSThjpf_Z%lQfi7DtNsZGTPq&&Y?0)L0K+ zgxoXbb0&U31w0vWe3}{^Yd7|ck~V$S)YMhey`vpcsRGW{gRg#YYwN*%%_@}mgj3nzL+QF{G-@;w_#Y4Zb<^8L#A_rI-tlJVRSKTK2RbFpO^$&BHik1X(K zozc!+_fz=r41g^}SKt(BPl9M7la)`1o>Ib?2S!`SKkM#W3dMHg1uID>Q)_xDO%1#$ zneu8=c@n}hHicsBrM|NG;9w8Mqjf!rfjGN7JH4dfvBENMdJNJ9x5+&Y5Oy{I*6b+ zAf6_PM@1^h*^Cn$T~EGQu_3$Gm-BP)Q*+Sr>QJGpLO~bP7Tsof$ zMRJ?X#Z!RmURekR3ZaOWDRvfWO~7Pfs4Bcb!lvkPCWgNe&Xuhjg>SOZs4Uvm^#`t^ zKQcy4ICaQgDMm3&-}ako$iD znTg*6p~)?z!O0i!)jMIG5CjF22Xe~iEZGTIi-yPTAgaj?l&&jJ?vdx;GqEf^(GJB3 zWfeV^TP@qO#IvQ5@5!;{wzgYCF_(A<)|2nW`^|2$oc7oWyVYMezV~z(jmix2bNq;- zws&Qq@*db@^>}BkYD8*#J6N2$KD98IHX*?1Y*b@Lb+v;dK<|zgpUBVUU}+;m$$KHJ z4q7IylJe#f@4cp1MuLUxlazjf zugpD?PBSCN&8D4Bk@K8tr=2zq4!d29S+0kn_N+wIFoNOqElC@)#p4k-r$N=PS&jbo z(}4h_ShiV-tH4fQ<&op1Ez}cQppZ)>@C2sjAkwhCSdQ)EmD>G*a-~!a#jAzdZF1_Z zysuAwN%=eE=^Y3O-_MFlJXjbzkhzIGb{t(}2OD>iF2VgL^u?mwa2FRGcT_qAVGkd> zb8#1cr(M&5(3+wgSYFy22&|2$jY#rISgj>fytS+ASlnG=BkBCu3+1w%Vv|s z`t;JFhxQ^zMK2ojGgxQ^vy8ne+U8|-wn4I}lG(ZHXLPkxC`KUIytGa^yS?3BS|T64 zGaCIv(J`a%EILbi;t8J0_@napsI$9Kd+C>#oZ>s7a4af`6G}qg{lvM1d|Tjeh}TGd zm1I{*6bp~V$QuJ9L`y-h^vyg@gYhXTCMeQORcN5$-N}*R&KTwsqmo<6sJuvDpnN=? z$RF$!ZuY=TC1ZB@EQ(V3n&kv^_j)$CeCGLQmV+6+wEdAx#q%ne-%lMpn8GFum}`4X zm{>vyS)2Ku0+)gE;|`yyUObwHr{|}GorKbvGh)Wnfyv1OQ)Vna*LgN+8vM|)6nX<; zh9Ec0XZQ=QFhOL;D za@0hiy?Jc2rQp(Z&Jhfc1J#gvF5r)&%HsG~t?`jRahX~F?r2`Q5!5I@7|{f1d}|;d z%T-D8EX?NfvjvJARRKgv+g#GwH}NXMJ}??1x*YY2kkb!ed~K(jTygP&agtCry@O^P z_YNBNVw-+BW|}S-)5ay8|5awRv5;Jn)iEs|+{4w|3k}^$*cd*IwZjy!Rjjamquy$v zV`I|K%m~^5cdhL5CKHUSW6oc)6>`yR;CMVnK_LoLm{7R~ve9fQqD68u+3XA;f32K( z0bV4K%i#c0BSw2(#UVHl-DO9_*09`ZOLxpF%YdD4h_+V1n486o}Iup<-=@y&$+d=b1yl!)@|e9 z&!_vkSvXp%MdNO1bM<_^l^`?N2?pp0OWpZXj^UQ;vz0tW3KKZRqv(dy1%5*q*{?Qo zcC~%=ZTlYDNqAD-pnv4Gb9)w_RR(XJt#IwZtd}d+YjaV3ZmKtH>IoQlNfO=iGQpg) z>g6L-4K<6LLl}=LM|#m}s!t++D0Ne2wzAaEK6--Im$nmG_iM`cee7A<=VHS*J+`T- zKfoj|$^k(_1N%fs7NCO1Yi?wsE zDl`HHGsGjLd)Nu(dI%vbCt9hOYl&i{7FPO-nLDXEhT+83@muBMA^anKh5W?S>rPX< z@nBH6kySO3Hq>Ub*4DM#h_Auyg^?6<|gI9VJ_Zo&XBPMDtUH_pjW2(D+uaX6Fk894I7~N#FX-=-l=n zc`L7dXy4XD`+ukPK|o=NPJ)=o@DAnB{K?T?5INy|rs+14z{B$Sn$f(r?vLs1SH9|? z^aYVE+t|XdfHQ8dAJYRd-yFM~7z}O30w+s%5VP1vM92qv2z^9cHyVZ{sv)1p5ngVh z+`?VJDO6QsIR$&-ctN?adiNSizMIXbT_$cb88JegPB>?nF$02$eAZ3o3u||;eiK!& zP%kGCwbMHc=6MS!kZYY9zdbpAyD)vQLyW>Ncoz?GPBXOL{pp!f4BR~I(j^bv|M{iJ zrCDL$+Rl%x-qR#1SDw}>D$Zex5QSM`cfAQ-E)cTq3lDM3?&u9^kEWq_i$Rc zBpiEbHl+U7pml%vaqGuWr)Xn*QeOrW{lvr{PWn3P}jpNH4uAc|f zg{+ZQMZ>~{UdLv_ErRQ{CCwvqCKj1LI{bmKJAvHB>XY59vC|gfe0bS3&AyUY zFGK}W@HZ_#AOLpO^3NFd)Yb-49cV0r*mVN!ay}?U7y#bE%uQgFOctcOR=1QH|o{+8@fydyO0f>}H0A}QzBRO*4iD#$nX&rd#a4YrMKtR0$kTYE>yNzMcTGNzT%iuzKoZFo zbX%>BmkHFq6k_r;S)trMI&%E!iC%4Vx{_?x^`g0y(Q~Dcr!K+4Q*_)tMI}334(F?r zk@~dTGhcQvJDQm)^wWC=*CzLEodQ+Wo(UIf#X`D}UaP0-Td7QHzF-w9q*lbEEj_Kz z0!)}RA5-^64=zL_X$;DVR*mDc2XXfZf*XliaMDtXSprtNAb zlAv?T(R_XCJM`BvpRdHpo?)X0nT)wcNs&*_Nz#H`E-F@fQEr%sLD4Q3+AU%)5p;O{mfDxh{O!*ZSxN!H$`huhO7G+>HHxAApenF?;zQKj6Br8RTCe=#a2k9@ zfb13DE)KkeYnI#<$=|zG^hhy9L`#-w3%B&x{HdZ75CaWzXPl(n zW4)DI%uKmH57RHqK+4N`8En5&SIbgbw5;l=9OSvO^s0+5@0BJ0<&V^86g16vygp6L@I2T`7?VeIP99Y% z!?fCX*vB9H{yf}n-Q3+cys&0&KhoSwy96?xGTR;0r{ZVK*{Sv6p3$GHrCM)kE!aEM zocv_&U@KK^_eQHnui87DuW;}-vQYBkKm9|put_|k3pQXtly48C>i}BvG5qW|;Y5*{A|A;H zQ4A%_iaSZ2JjWE{DqJ!==#8p>pV8s2rAOv{t*VR{M0d`o>!A_Gfzw%@WnvQ3KX)m3$~d`Ml;Obv4{gZl|n#4jR9Ot zT6#L6>gQ{&hCZVN-$ejOuN{jWtq!U@YtpB&y^&l01Xpnu%X^w-MldL8#;t@E zFZVbyhR64?zq_FP(X(ULC#~4C@hHWVf6wdo2McW`r1mHB{u_|=Sf|5`5!?P%c~y== zA@@z$VE12sK0y3oj5SEexC#pi{jOPo%foA5bfI9%)s+ixsdSItafoGf%D~IrCl$SlAEbwq1sx+DN(2l zEBo>)tIqgN>Hp`=o! z#nOwaizVBtq^`G1iBz?8vc!}gMsJEF3bp3e4F>?~*PL!Mkv9`*XW33OTg5Zl{AQHQ z9x@SJud&far!CC;dWXzgkE2Z_Ie<)Nf?s1&`Q^~)wxx8s)Zz-f%a*@US*m~lCZWsFt#&4+rk#eBjhXe* zP1SnRBya{q$4D|J%88C!s#o6Xxl6Z=LLSFyl`dP}lPr-XP51&-m6f5kH2Sn|B@2`3 z6d*7&MN$}rveR+YgP?A@waJV-?sGqQ`VW<-z`1V`?}8hNSXGBdgGY9e0H@k^&zF>wEw?H`nGEk9`*Ve7QNW7wLdieAo|Ez5h}oVCL6svAHVPh0#N z_E5m;nI=CtSEd@LY{~lSE#=d4ox!L7+tYtQebo0c(i4(hBPy|{_F#zs?k(kJ{)OxI z1ZFtCZh!HIuKVwtHRqmd?%JGG_Me;eDQ$x#1*(w3N&=*}8j=mTQ2aSK5b?n^dTmZ^MbSNDeRJ{kPb8;kU z55YkF7D&b?i1qq;Nw^p4^9L<;q$=I9<;%b%OsJ)|B^A|i$;WjtQHl| zSBqe5@g*kS2cNwKGhdQ*7%$4xku?lv$VGH3CS0fvga{7B85QE~MBO3)pgH0Fci?t0{T1>j{xq}je<$aE-9vfH$YAEB{1h;(M15lx#WnuL^xdV z$wQ$FxHR8`s72uBz-wbk>Qmw8Fg{qJl> zsz6=Qj32+`wcP&j|Mo_tPr~;^$2_lGO*V`Nm(3hLl7mrgcphbI@#OLi^l(>v9DkBSVFcD- zQ9z9N1zUY8w8d8Qip`Om{;~Sw9lY_!-IIK-iqlAq2pcu_DV}tQQ-x;;9*uXvBaC+! z!nYtGZ&D@{j|ElJ23^LY=&*e#^I(6WNP>EQBGFtEH#v4QilFcW=1~&YAw)_w8 z4O8#$_4`zH-|K_HbrtGEB95W&lUvf;oLvhCe`>tXPk~?x{>(nEW#7-p83o_4k5Rqv z4MDuim&+)rKJrYjL`_)zppBL|)sBD{MNSmFvF0x^*voXdGfz)+mX8te))JTS*$^r9e2uzT_X>b zc_1E7m1+(%G^b7+@NbBr#?eeif-|^+w^6F5h;a1*)sjQ)sH3q!y|fnGDDw^Lk+M4* zi?AIluY7UYps$71>tBWwmeMqDI0H+vi=%XIW8WGRC*^SF?s!%+7Q>-BxZ%VGPG1Z$ zZE+&J}me4|uG$CTfW@0wsm_ah@Ace1WTn@uX3LBJA=e}<6pge{ zu;W%rY5s0yMv>hh)g7Pzm_N0Szied!u))~!$L!|>nOfSTv>&Q3O2y;$dO(c#Fupvo z1IO2J5!Q0?e)t&wr8^Irw})FfJn1)dmPW@$s~P9j;R6qB5<1-eP+4zxl1XUJO~WX@ z3l^k)vzetDUOS%`kbm#`emhf{F0Cm`$A`nVa#Ary8~5(n_s~=E6d4;GBG78F6n|}F zvBAGpXchS9dW1*dvvBlWkl7qS8}YK1bRXUagyL|vveZUZ7ZtN51`Q8pXWtrUEQ*6x zQh@!Kzu5G|;3%-sstqvY*+VFGM(CUJ@by#CQF(~x8lWDCF5i~)p-hpO7`rN23r+@l=s^QMG&Ge`?GugcQ#IpvYjNNj(O~X~1Wjpzr+{vrEcM$7_HiE~^Zg}Ug+zcvP-1%0liO5-5h?1@-|-P|jEzk> zEe(}mEM8r0ATHvzbYZtew-wKKU7W^T)W~H3ky|MNZh81FtN|Cddud~rmrElA&e!%d zJJq7=WGaD^%FU*2yo+MVZA4Qd2kt6ahdU>dv#i@^y4^Wc0HUsOZKidyRw{}^BD&s=ub9!y?VQ&#HxBu%bAvCZkn;*)cbMU?KIQwOZBaY z*U0>vMzp!`j@Og*9Gs-H=;z+i+DKwk)zpmhM*Vt1!2rqQ-AuFt#V%GY^~fCoU~&7A z8@`_L*WBAaA3SJaP>8&d6~wcHYJ-=bdYk@ZR^e?#$P}*^fmG!?;aq#^+N7ib1e|@h zE@6{u&Z%Yd$E^=v_x|VK^Mmrs-jtf}JvIHDxEpE}N&UcE9V!%Nj_+?};vuLq+xbQz za3pN>`Uf(pVf3Y`=ln$L$epd!4KGGEtWI!iegZBE)#^y{bL^f?cA4J}GM z&36}Hb^KrNupqrP?A;%h%QW<^I}YnZ=W=?Uyaj`q)AI zoG?lpOe7A8b0jMG<4{2a`2pOM-NJ6`q$fn_nMaE}Wu zVc%m!jibP=kw5a7heeu5Hj~^^NPhe+E)7d!_h`j(hiOIs1{0)`y$Deduws!2as8R= zWJE(xECuV>jbH{%FWWB=fV^TYkt7b`|FC>dHn$%ilXv1#5@^!ef%99>-D))A@vR3p z`@O*rKDznfmWSK@!OcOhzXmq~+*d|Ihvf`kI~j+R*Hq*agwLv`sSlF2oUltNv>T8e z@iwGrDr9F`m(P~9^I6lnkrwe+J3#&R;6|h!F`*r%hAtD>Vq`Ty)&^N)NPs}#la)aw zTwAG6*Aw$a0TwD@))eLwH9Wct!#4K`909^r@?*fU;q4UbY*5d$D1jw3Ro!;&5?{SF@@FHcc3I>UQ# zOiqcj5Y1fx;UsR1ny>+Wc7Mn=&n-ZJ9f^Eaic|g7J;{KhyaAo<*6n`}BL3(cQ{sIe z1~w9WTP5s7-Vsh-;UB_bd4(;AVJ0+~{_prd!w;q}Gww!{q11Xw)xyt5dwAoXm}2}_ zirZgiw|($}6YUk%jeF5APT9eD=+>YNBpKVEQO+SNT{OlCv?fuEhEn5$oJ0nC8=b~R z$3nBBEApLuu}e@S*!MJRWbhvbL8Iu!+$a()I_YX*GS&C8=lArc4WkfBL_;Kx9GP!! zG;^8b9XycwV7|NDJvN6=TfhDK<12|qwmMT%aGt!;w?qQdidaV=< zK*Jhy>>Cz(M93H8Katll`FJvUXapIj5?`I@_TV`~BN~}p%6>@Ie`c9hWoj4IbR=`Vhu-P`3NH)e4``?e3(;g%`6aRIwRPpI(S)ui zqRN~etsT!PN%EpYdPOJ4i!n*RP2|co=I4q-+3%qVCMxBYlK6;FB5`SE54EF_~|`KkQCNB*^EiUczdNW-RwpxMhf^j zPHX;c)A8UM$b;_~RTFE~$!yu8G#UA2W~9Fke~>3b~CE2h&g%2r!9 ztvY5TjSt-XiXM;C5{ALc|7hu{UcQveoakk<3+ug;MTCaNZ&{Y)HRX@LX{rqK-A@T1 zE#r)2+{=8ui+%Z#`6<-7{~w}0l-F*5)T_drcrCBrOvJ92nT(gGE-fmLSG`Lc;X6fC zZp&tGl%+TNQ(yGyA24Y5E6?${WqW82hrn^40fqm9iI-!8%e*0dA7A6RpZYl{8r>ek zQo4Dc@Wl{+q^dE82+sH-nw8{fsO?!F@Oot4d-G6b2Ey~Z2ZXwV&Mn7mURt-iYVdy3 zwk*m&=ur{`O!M0E(L>pCDRbcJ^%Ci+_UZ0ji~T!h&e%~;FKmCaytpwamj@e*yTAkuQo5zT3=am)z<78(1@dFePu%WS&7u$SY zCRQxZ_DXrZd+2DnoX;1iT9MC{%U2&fU0LLZ*5%jAvBp{hgnL1$?}?P!QFm^wSZc-6 zvuip9T==n)LgE>}X77A-#-GMAa@W@(K7nWY7ssPmrfZqAeL3RCg=BJ<8D4q@qkAOT zed#O08TUlUURlVbN`a7;H>d=w&jf>u*nq)B&w+H_d}dJMtvH1%UiCB{9RdxKIHhDHV5I321OI^0K%Lgmfj@O}(Ovsr8=)X?+Q&~+j8)%i5`sJcmF z@z_uFG5m2lnv)Ca0&JX=j2-nyR2Hk_`AcHYL2JmfQ@Vd``KE_E`|e*pt!(b=?CU6x zAKU)o^76wy?a(<_-!w(8k~li>uAcw%=Em;ALW!$t23hPzYUT(MZl zQUNLqYixwcux^!_fiz}K2!2EeNx3)7Ti<2gdh-O-kiK_de1F8sl(XbbvOX@I=MJ~V z#Z&!trQX;)^sJk&ikVlf)CUykFwMqXI_u`F_Ve}z3UdXoZ8ggATB(#)IwAe=zC%;9 zvr2ce4Bf;^GhirIZ5 z3DLa%Oge^2C|7IoT%$CH-(YDDWX_(+UL${9U{8I@G+Kt2^~x#l{=jhd6}2Q5y_STR z(Odl2%bV9I&x7Ek)ty{vR&TGR3GD3NSHT$0(?UNq*6?MCNks3Jx)*4~GUL|Q1L!0| zF{=FH_N%CgZYnS1^)t<_snBhq;C|d3@^V|SwYGn)6%3VDmB$_P(w5urU{!-$=bdex z+ES&mRBvpFtJ6OxDz-45V#4K5jmGxCb1`|^BXlxP`P3hOWd8k3;05S= zvlCZK-6ni(rX<0O!`;U!C6%9vrU;mTpnqd|``{&h$%%(mJ>Sakf$Il2@uK2d07)lEpy5dFG(UZNK5G zG4jnoF6*!vPQnHihQfG!$Yw#eecAI*fmdL=0F|NWg@QUPvx1DAUA~Q->B=`g{g{$) ziu&p@I0%{($OmmA&Ela-h>74U*66>cqE+!BF~tR55k5skJp9)b^o<*EA)k`4B`^6x zni3CMJbt&@$}-Cqvn^`A!*OM%3W;bgrsk7W4^JoaYRQO43c50iginPpgo6Y8plaRN z8-o>Se5i0JUr0=rqDikbwK7$rntU)@?$o&j38&mGI|-ZW<8|ouh5_-jJ$(V0dtpMO z=F)56OnhwOeZ+{rr!YH>Ji5Y$!fdN~*gDU6VhXp~8hX=@cmkTCueFiPKjMk2X~7$T zk^K=*oK2t|y!PeVS9|PJ*@-D2XtDMOu%z!SfOr|NVgA~K@xODMh^W9dbj2%n47UO& zpX3xx)3x~wd{xXhlX-BVlOK*L2bHA8bdQqqE>=NbkdL# zrKvgtrB~XqEjwArCX7Z6O0nrku-^}imICU^s;ZAx_4xcSZgzTRB45MicM@=;ClgLQ zY1Q(U)$5q?;e1?QUDDOH6*aK51j+P~*%N0@%+2vKn}Gx9;H3ZZHE0Ue=%oJ&PKxE< zRPi7Kq)J&NrNehfU1*9H)8&;EN)iUI)K0btwyH3i#lw;SL)}ZF-LdffYR1r_@eDze zkosPeLa*Ua)^R-BNtW{|vtF^Htwt&=*1u35<(?u(S?I66TM6WU-q z5rxn!n=ohEMr_pABb)1L=+MESa`q4$rR;INXdeL!0gQJ zT;%MDxyhZ2oIEI~dh$X-(Zue8`0Hg&>@;xJ2W?l|8wgMG({6>ASelmr%%pH)K#mJb zcfc-~QQoL1jO)&w zI(6*?ght*jm6$*5})$ zNf@MyaL@+g2LjD`%`_x~GL`627j!a%S1sZY^#lHTrRKT)UXR)=xq5ZOb~Lg~2aU>{ znpmA)wzS?n1V%Zf*0^z6={KE3P%Bm&k0f%WLOA7c%!s5^s;CoF@z#4X#}aS*1bWWr zkdq@}Wl~)K8vQ61a{ywWtCZ{AO;@H>Fe>XUBo0mClN=C{Q-#fm2SlHaw3V+tie}4H z>STLm7`Cf1(7B<}&{jy+p5JJ!w{l(}R;;derzZ7Cr+W5GtwU`X=O&VYbNCcev3RpW z_fxZ1Q`Rs8uj-U?p`a9Jno~A6sm0we_?cRjQ@C7MG`* zFzQaP3}y{wB2W1ihDxd!ckDz)6;^;w0h2sP) z$rga0f>}5kB0GsP^>0iVjvyEfH#gZFER+^&)7FX#8KLl#L_MiYORL-<=VgQcLRRsu#~RGA4H!9^Sxs=8XQ7|qsu zk~#w@k!obzdD}2yeP=F%XVU_2NrctFhh?EXF<}J5RuUz1*Y*&3AlBJ4Y!A7qJD^Z{ zgv|Xsq}4?m;_kD2#UO74HnzG20)SMQ54o0Gpf5uTujy`E2_}tHW^3Wfk^Hm0>u%_` z_t*u?PUWJO5*i)I7K7^vcx)oagNkq0|C920<(1?IivFv%$7rA{&&EHkozuAxJax-P zyI^`zD;X}i#ZI!AgzGXIE9DE+_)KN1w;oVhn-9H6IXpa>?YQ||g9;qsqi5@rp{cG{ zrkS1-q*-Vi?ABfX*Z*SMyk+~Hlqa&4dwA^z_HOkGPBiJaO~Nf2jxlbVP9Pv{vyZmP z*_ZZs+w65GAy=Vo9NH$Kgq99wOTi8JOL>LznD{)Ju8NW5KYaP!_OYZ= z{YI2n1{T9dlv^JQA%QC8d_J4Zr?cs}JCkkYo7UCwYHqq)ZcdM82U)USO@ly2Bx2>0 z^|j9}s*Oe|OOg0osk{HwBM%(kGwiP0$M4*%7iZf*?!rcXCX>sw1~#|JZ@f9>tYFcV zA+xJ5ArP4UH0#^1%qYwwV?|m9I~(nUp~voJVt!h}fMtd1JBFcr2(NhT}s?(LI$T z>7mA-Z2}lYKt@#cU)rF}9V-XZs%R!+rAhX; zRE?^&HiC5a{(aPM2rgl3=~Wz5lVm+agOm8GFo2e*Fc-I!d;j?@MihsQTVH?@O$#j% zOX3(>XfhBrb&jEht5NU`OJUH(i8J_zAM_P8JY2ZBNV^D!9)u4!^3Q(pxDaVwxevu6 z{eApyAuoPSY!yVD=riqlUI`Pb?gy2-k1fr8^gG|#eq{L2L&INE&YwE9eO@_V`QjJ1 zzazWh=3`LmaL<}#$E{G!_{NFb@EXv^TFgDP3lj?JOAx0LiimHsiFUFuk7nnm|A;*R z#R#rmar6?&O8fh$L__Fc?G|e!H51@}Yo~DhXm>$*yP8eKU{B6YlI&m`pB~;>s&o!R zV3VelxzbtB8aOoPV$tDX?QpPn)eZZaVP5w)2&kFy`kp+MRNPR)Nli^Z8Yhc8x3-?Y zGn$S=qa0T~svb!W3+d^p0vxcADtj|tG-z!9pjN6(R*xKZZKYACI7_{XqMvBgj%5pP z$xk_v+QP_xRhmIJ8PuwKYjKQ%x!z1Vv;Em(!5Iv5i9RSA1`4W0l2fFH5|!r!Gx+U5 zA3abi>rKH3ci7i{7I1{`qzGvvAN23HPCmNv7^yJ&ee)^cd zq&y1A_MH-3Apwb^QI9@~Tqs5tNCOG^;X zU;LM@gXOz}-*dU%<3terc%u}cm1`Z%`$6npz-O!zAv!?dh+joejfhrX;X`hr6Z*qi z6|~>w*>k~~*vt|DUy$@>Q~3_=cPD5pgv*V_o`&0+TMVYusFP}zk|qNT6OT}@C?GK- z>OhMRDqk28&RoXV^!ds94PJWss_Du~H#>bqIZ)rzXjQ^-bt zai_P2wPFbU0A~vtLzIG!Q5dbEl~aTVDhI+flkdZXE^}{yz-pv5$6qnG#C$^+g#&zUd&GGrmwq^7}Y4zuDmTQ+~X1 zVrK20wNmAU^UF{T)j!>z)(%3pv2f!;bKjuUKiMx~wFbgQC{iHKfz`{<2qwWpA+D5E zIxy9zl7XpbflHC%U#_j)^GN^skc?tVX(i!+v_Y4SDFC^dzcYx=`!9kS{7;I!)t&PK<7L#L$>vRB8-rv@vx`W3CY$!+x8AU_l z0|-LMlY>sQsA)FS5;Lw%)yM(`G>S#)@s_j*S>ddXxvtJ?H*h-RC$G-WjzVpFXeHZi z*O)TWjizOeoK|=^RNL;rqMDBvpNbb#>5|fzEzB32D-lNvq$^6<)nktT6Hu<_LT)Ut zNBm!o#HnW($;aJbu^4pYg^12Cx2ojb&Q_CV$AFD4VJ&)-n*2n1A!*fHX{%#7?S`3H zblU1-4-P{mVnbe_{&3&%h(*ibs-y7JceFuY=mJIIXVUb$ z6XrK7B})&_5>lpx$;(HA(`ChG3u^fW&bO1<(;f4==Co~jXT4}TmwHdiN@_FvOubPG zXX+6x6?5JQaahK}D%UkTue>x_(N{xL-b=!%c>KKbhPcvM{+(Mscj&s#=o?FEFN*?% zVPM|<3#HWl<=F6=L`>L@6(hb_v!|P`MMWtkX}&ai+oDjyLwzD+=#q@t#bQq+NBEw- zL7m*PI$*WI$NBq>zx%ttQ|`z;`JvoLpRE1fmw)x^vajUbe+iDPk25o-u=bB*l}%g< zRw8i2izBKx2@cI*Wdg?$amRJ8SB2t%=`D@-1+S`R0?Duyjf>#*859D_15JD}HoSiK za7($Hl+pnF+^!WY9+@27Ry0k5l+q~2W~=cS3#3uxadpV5qZtDCuislLHR^#EDv8ax zl`-#?pBoh0`@s1J_WCc1xBZ`U=hnM5XdX-|AHY@MJw6jVI~@HbUszMV`VhD4EnZr=cs!Lo{an7x0Sy_h83CDg+%~HLs2==iKIGb zor@g_pha@=MYooCi#JePZ47*=xTbt1ua~R6(#Ya(RO;>3^CXI`_Xp>P3+ut)_M4`r z{$uy<$=3bPdH?%gUO586G8I!Yxy2)uxxvCs*?c~G)54&>@@CIURyzr-Ac))+D>~PgVg}42=o0>PhW!74l zH>n7>Uo9Lc?SB9nd*Q&&w!H7s=B=H((7dU2{cU&Mb$`?>S}!Z@FXj;BJ}%Yg;uJf$ z;h*7{iDpG=@(MTp<;8}BfcQz^K%$FtY=^M3Nif&rNt7ylY4N|ecJ0w|TxVV1?9R+S zw32ouOP1xwO19)i$yl;%Nlxq}ekDGxlR!*J3T~6kTgXXcLQ&g{d`!y$x{mPZrX z1`2HnB=kWG2WZnCa0`axQ=TW3l7?3(Jv>4=Ksmf}IFu;-?(9mI-IT*0MDgD5yEAj2 z-}l|`zP@i1AYGZPtUq0uoUG7VWpWmWc=_$O2L)XDQD_a$D!zX9?AZraT2#4u^=f#$ z^)8!|Yp+kPKQ3Q7x3qLFtE@kbk6xRdee>Mhdu~bk;rgqyv#H$qJb2}^SSMV96tTEVUOS;GtDCE1Ab`x^uX=54PwO zZ5rmA$Ils)i$v$&i}TdD!
6Q`^2*fV$Q4tSi)?Hij}xK-abjmrgabGcVtJb1^= zGq^hn)B1&}J>_H1D>E7RoWfqo?ktX_Lrh=OcVwSWztPSsxCPrJiwDsDbt2(9- zn1(?wNN0D~Eq<(j^#Ho`;2!uKIgnGUOX`dDljyI7oO-gM>I*OvcKvP3uV~qaRxn#z zeM|nO=i2}}pU#6wg_D~4HRYE3U>)GnJ-Cqn&}$!o?SPNHK8Qu;YimFmv;?SK z+V;S>B9)#A+!eaAe*7Qrn?3-WRL0(WchNKJ$LY%JPhA))O>W(++b835XUXD2G#v-{^KW~YbuR%Y(qK66)fcy?s&121Q@FP}a)cjqE5 z;=O(UN_aGzJ={z43dFj+$2~ByoH;ZxdMLB)F}`~K;lthIAExbFu z-r4nmt1!d3JDEZPD%$>YX#3B?kHB77%04Ui4ObT-KvUL8=^xVp93)yD?|JqFQ%P1C zUBvzt7)LTtx=gw>E<0{jlNPKc*MQG37K7*T3I;BD*BsxyGt-1e9Za~fJF1nk_v5yl zevpPI3QZ+fd|Md|g6jtg{9obA)-EU8TwGoxibiX$i=&F2Pp;AE!u!1}*ai~$@Tv2ue$>K!|B zB|kF?du(tBG<6DhDYZLr@bHP@V^9Q?gNJo^=^2G3Udc1i-(G}{{0Ynv=B17Q(L*|f zAhy*oS=W*H(mHu{gb(YK7~4+8sWZ_B-?jdwA(gfpdMM1Tjy>g<=G0}!<4S~=B}eN zv+~2uh@ChEFKHM*OE_!3Puc_m)o&@*8x&05+f||T&Z#>pJ087o;ZX!CZo^5Fb2rAU zUw${8-uifIb?5lfk*V^vFUnI#mX=m8KYPC{#sFIE%e@sm!1BgMs@CFn8?YX%U?pa{ z4`%;26I6cvawSgu2P#-P~JV;;Y!^MF)W$tbs#MKjRCb-YG!Z=rb zGBN{4oM-jKGov?rR{g&`e2_)L+7}r zzm)w9(h1VEOtc6??W&-9U`JbfEIK;Mqri4W0R=sV~;=>ol#-bN48BlIYlWRXn{F{e40pF8XeIJMJQX4}2kiFUHaDqsQs{=^gX~^aQ;V?hAjA zeu#dUeuUmlPtsHLqx2qnFTIbRrXQmpr}xuO&`;6_=!5hj`YC#bewu!Uo~7sLXX(TA z5&9^7jDC(jPM@Hkr(eL0>R*JnpI@d=(x>Qo`ZRq8_mY1FzEmz_FZXlwYxL_Fqke;a z6So$w!ZOb1>9^>&>38UN>G$aOVYToD`UCm`{ULpk{)k?rFVRc%$Mh%kr}Ss^=kzlD z1$~+RlD>lN{=cHXroW-TrB~?h=&SVi@D=k9m|Oi5eU1JZHsbz;{+0d>{to_wUd2tJ z|AhAaU-Wg@*?NuE>2+lQR~_X=4jc-?aVDG#P++h`!A3V0{f3lbWke|}6!OwW|Y0kK4n&!Q}!!w!uhIs4>tl;kQ5#?6pHsz>tOt~Fv+jlC*ak=@Va!NU^+@;*DoWY&uv$*(tPPu15U0z%a zJHw`JGa+2dV}@(qk{O1Eh@~hef*Ca?OBsG#SP`W41-kLP>1X4~Hz)Faw(z z;$mV(Oz)$4%k{Y>r7WP>O6(?!bwDs-ttVlX~Zroq>#m;NJjE{okfPF_o1TY zB`oGVZWtDx_Th{b+ap#2q0TMlu@34KBb}rx&?u%OO15oWYeGH6SZ7d%8#NyS;;VzIo#JlA%4A^?RR?>fA$ zJ4`e&3>J_Xx;8eWIP19edI>*nYW^vv$YL!jU2MaQ=N;JF~ z)i2xzuGf%BjdzL&MQot9EGndMS~;zTwrfUt1gHY&AXD?YBT{29%$}wr`=ESXM9nkn zgIi-#L<#|6)ZDy$k|IbZx-J>KcP%0ZBtb*4LXD&8Q|=n7MT~(09Q=UybctHRDb!hP zgtANGe7$biZe)8*sn-kW%YJ8M07?{{CktHagS}+69+pSYjLaqrWQ1p0G5}rcbzspANvp5KHA0o6eP==xUribO)s?3VfuLNCDwm91E>3^Kjm%Zb={ zxovtLi;t`PwGsQ?vW|8VA&;}J?^t;^5V46|{jw|hJV0xM@;tOc zq`SP+;36)%aS||L1UzP157yUM(8Qohn>)K9G zYJ%2~6@*!2G>cm>t;wTS!gOfQCZt2jgIucl{Yq**O!vUDVPa)H5PjBzY%AiY2?hxa zH^^2bmeX}kZPxH+VN}>DAftVCIgl^&+zSaX&1W^ox#Yvd=T|46G zc;>sE9R8)UP4nGLN#JIE?sPPWDHd@(FheOshXdJofx`{a#yHT>Whsm`k(FU42>nbT zjue9gk~M~o?{>zx6YwVLCIYwV_Ul@@E;7dN=f9K;lfoz z)bMa#{-WAUXb?j+=IEgrM~nwRQ^AgprN9eWF>IJt*s;+7VQXO` z8qCqcZrtF3a`9sRVgj17&5)@V6CRm*N)S<31uxn$elZ~CBa}^YU^EB_0un`ZSy1XD zeWveWdW1f~ml{I+k0A8A4pI=@Yq>$a5T$a(ZkVwy!N?byFl%PyW(B%N6L!OMI|v~B zouYtHw;PbSAUHV|+n`fT0ua`MMJ*RPQ4B5}6yU>HxPg^;&7yF9WNIa@7wZB#O$3S( z&8`UiL9%C#XN(%+1Mlu*J`l!?eY94PF@U+`wpFvQRxxsfENY}Txr>0L31r`QP_zAcg zH8EReuBR**Xsc9fz&p^fI2sp?SOMZ=%uGV4dp*Hj+!9q32`DV&ZRiXdU?^)tn8PwD zjHFx*SZ)I?fw`m}VzilS@qDUJx&oyDiDS}RlzBt#bOnz}X`a!B_~>C;oU-MR45a+& zwVvKb)wmn-Ls_U3k(z)V<09BRVs+VDT^)o9iQ!}tVdWAbk{~b}TFW#cdUWU)Qt2xp zbQqXF9mupErnX!pIM{Oi%_n$YA}u^Zm_;iwrPa)|0>mV2O{i)0H2iklV7QHL7s$Gw zY;FTr+YR3q#WqSRH3ZXW>undZr!7Xn!44E#0XZzmj^#Ha3hmHBji7`@05>IkJH&YB zi);rfOc9yZ`3_wxoAejgQcPL^dhrej5}(VgDr-- QJc-es8x7q@(^>BS0Q4)MCjbBd diff --git a/src/themes/default/assets/fonts/brand-icons.svg b/src/themes/default/assets/fonts/brand-icons.svg deleted file mode 100644 index 4c23753..0000000 --- a/src/themes/default/assets/fonts/brand-icons.svg +++ /dev/null @@ -1,1008 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/default/assets/fonts/brand-icons.ttf b/src/themes/default/assets/fonts/brand-icons.ttf deleted file mode 100644 index f99085132dc78365412a4f395cd886fb1a3b69eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98404 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 PvoiK&B4Ws6*Wv#Fi@o?r diff --git a/src/themes/default/assets/fonts/icons.svg b/src/themes/default/assets/fonts/icons.svg deleted file mode 100644 index 0ae8e32..0000000 --- a/src/themes/default/assets/fonts/icons.svg +++ /dev/null @@ -1,1518 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/default/assets/fonts/icons.ttf b/src/themes/default/assets/fonts/icons.ttf deleted file mode 100644 index 17bb6747a599c59238e88924d3f50b2911adeeea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105784 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 QpjjFFG7&N4vFq@^0RWZWBLDyZ diff --git a/src/themes/default/assets/fonts/icons.woff b/src/themes/default/assets/fonts/icons.woff deleted file mode 100644 index 4cf2a4fee4bdc1938f9e6b35a747c93a86e00fef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 50524 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 CUpr|4 diff --git a/src/themes/default/assets/fonts/icons.woff2 b/src/themes/default/assets/fonts/icons.woff2 deleted file mode 100644 index eea9aa228137c5d178a22f785828ff4a867ea92e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40148 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

+ +

Messages

+ +
+
+ Changes in Service +
+

We just updated our privacy policy here to better service our customers. We recommend reviewing the changes. +

+
+ +
+ +
+
+ You are eligible for a reward +
+

Go to your special offers page to see now.

+
+ +
+
+ We're sorry we can't apply that discount +
+

That offer has expired +

+
+ +

Segments

+ +
+
+
dev-toolsOfficial +
+ + + v0.1.0
+
+
Developer tools for Inkdrop
+
+
+
+
+
+ +
+
+ +
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 diff --git a/src/themes/default/assets/fonts/outline-icons.eot b/src/themes/default/assets/fonts/outline-icons.eot deleted file mode 100644 index cda0a84cfb15713ff11a77882a5af6cd68f6af42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31156 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 Vetq&ZzjmtkLF*Q0=ckD7|GxpupZfp+ diff --git a/src/themes/default/assets/fonts/outline-icons.svg b/src/themes/default/assets/fonts/outline-icons.svg deleted file mode 100644 index 2875252..0000000 --- a/src/themes/default/assets/fonts/outline-icons.svg +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/themes/default/assets/fonts/outline-icons.ttf b/src/themes/default/assets/fonts/outline-icons.ttf deleted file mode 100644 index ee13f848ecc459afad72db6feaaef367cabdc63f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30928 zcmd_T33OanohN+nTkE}g^=f;ys#L0yYLR41DoG{DyX7UZlQ@Z!I3XKBvL#ziY)g^k zED+KTgiL4xV=|duGAxEKO#@AL`{U3#kcP%EK&N}cd~Sy3<8*Td9hx(TW|*Fm!Zd*o z%HQw*Zf%mKEVG^OoKL0u>c02xyYJrr{ont7Z!yjo^RjbHW~BqS-M%;Tf&4oe<6Cg` z$j!G64DEjD@Ep#c!TBA>PEXEVb6_OGnEXY?jGvx3_2}_`{Lw4dFlL`;Y%(`9JvrqM zzxNT8T|ye2!3AZz^vB4587Vh&dhwAT%2!@SeLqI}?y1>hlXu?!;PZ_6UcmjIot}JT zj(?E-4EN$V&zzY&JzY2+`yOMnU%)##Hojg+o%|4XVDLv zO1W1}W+HdRJs0;)R${xDwEx;eN0@zTa`6mHGNt8yYo4Dvd14avizhkC(Or%!oN4u| z{3rZ8Q*rrs_;Fl2Q2YLGEWyxgiK#NKuJd>J_%%~(yrTR(;KHLHec6v^sC1E81+wFZ?^Bs6$$T=#zk`P<9t;gYWF0Dez2B%XltWC zcxF{w=$TsiMj1TY$h-I5wp88r(K%AHt?u)vzvUgQeofTlz7N;%ry>zPY(@euDff%< zmZxx)Mt(ECfw8!*$TXkNvva_-Kt-+Sl~|>-lB@Jrc2)LQ?yAgH7Aj{ek5$f9o~pdR z@?7Pkl?#gUiX~)bjB1{^e_zuV21t`PSuom#3GXT7Gu< zkC*>y`P<9iU;c;XpDzFN@-J7+mFre+T)AiE?JJ8b?_Bx7$_H0oT=~+twmp3x!h>coy`^jTL0hq;~2ST*L;45iO=t` z*3ZY-$Jm8cpBGs3^C|XO_Br+^>>~R-K3`w+`4;;Y`z}6z$9~{`{v#8gCHCXS=ckN5 zpiAron**)8m6e&n4zWBt&7$lbtQ(vp%|_V>i?9xMoZZa2*tKjoXyiEC$+B#cO|v4q z1vKv<*%Z36||!*;L>V>Z50kc`Ehj|6%wx+K8%mgiY&j(oW+Pi3776o`En_SwVTQ70^pg_iDqFr@B+Od2 ze4|L1zigSFN5V{I%ZEk6oMy{tHzmw&whTO=gn7=E?-2SEry_xdvE_dj3Dk@&|57B-HMW9wQv!u!D+fdZtz#<~Z%UwgY~?zUK>ygv zjUs^(vK5RgCD25+f-$26>d02^5D9dWtpIkEKrz`0+Cd4lldaG@kVuYPp?4sGp0XA6 zff6VyTLDf`ViWj&P$ZI1Uk-Ez9bS!JS%@L5(!)@Ul9pZo~>ZqDS_Uz6^uJ2P=2;@ zStRfPw(>V3fg7-u?}!Axz*c@B5;z1~`7a`YSFl&{4oct}?A30Oz(3flfFC7r680+K zM~S4fR{=jtB(=Q?_)#Lc|J6Sb2^@#LiZ)OJ?_oa=h(uh-{d=4`d%kFx#;wMu%pvm&-jMfs?>||GtrvZ9 z->tqsu{YcE_K*DA{GSbIfe!`#Ie2aGd!fyt$3iRN&hW>=KXT&Ehn#WRGXR+_|^&yIt|F_jJ9S zE9D-^NAuq(JXiQ$v9~x={6_bV?&rH->v>PlYrWs<{ne)2ru#QNzv=HbU+!D%clsCm ze==}*;7>|UX}ol2=~;r+l}r3<{1Rs4PEc0Bi4TqLEdwX zPBSNGI}0Ph@+e9~QBsr3qeD?g>ny|~j<$(+7EssdZXS(A$6{&Dzo6>6>ZF|NB`1|~ z_&Boe6>%J`z9K1##LGDTY+&yI{x93+Wz%*7xmY^WmJ2vMqpRJjUZTgV6Lc)O7skc0 zdKr&DN0n4hNeX9Ks$*a(Y}&RN4kQ&L$a&aMk~GM`2a@vnIn0(0P^sOZ>X=`=rO)VD zVQmkKU7}Ol`B1c-JDR@cyeRr#9*q^XVxg$p9HpWt?ShqG7OmzN(Do!Xvew`&GX#j$ zhks0Tbq#fO-Ph*CqoFp-@6|t|d;RweCCy6jlC?)B=n<%RI(T$wHy;()f#KCS+c&>&-~3Z_*f)Cb=;*zt=y1nAkER`yP34%XdG@(u!@pQ7 zhO*W1S~(QvI~M)wF$E?4i)gw#mshuGtkEDePDN81&C*>Y!(o6I%4in`WOyj*X}*YG zYQ6{nX?@eBbsOFZEpw^y? z22IKGF^#(Zx(xz^Oy#IXz$CQ2YTQ&YVxn1LF=7HtVHZDf0DOkfF3d^*Y=d#T{;KY8 zX|}x;nAI=3&}=jwZBnjWx$;$M5C0mtXBQ|n=F(VaVQdtiV#EQ##3w>C!HEuyjtm!d zP>x|oQ;VYo%oBV@0N3Iu$PS2(6SKKqEOY{hPD~(OnGg{-Kuhq+@8a+E8Ai;sr5_Z!FbTY|H1{N(XJzwE2#3U&!mRokXGMz<}m4ec`ar^r#*2 z2V^Crm~yq({pOFM(*BNQ*cVc?pGD&sE5M~rW6LD*<=5-2v<`>>rg9BRW1zDxC~?W1 zk##_5{4=Y1**%_b1;^V{#U+Brzp8!<&>8#vIj8UV$%)I$V< zgE1rI3%8~F(Zfb34Tz+!u>^fQ2R>qwY%gf&Sd7SLQLnQHewfJCrAsO2{CPpNIP%rf z+#J6QLU!cH5&jSnGSugB`O+oSSEtQ4L-$xrPbG**C{Vi zEB8JSte&TPYoCurvhEv#1(&JmK~R+ZaO0)J!TdRwp1Fr-Fki&kyBfLoHF5`<1rIeY zeyIvx<#4~rZ!!EFjIVlr&Mo&~^@n_Oqgbt4Vs;bFYMQwt>y>;gms55AMdEhVgSuxQ zHEtjO7}-6E&jSlr!SlTgGT+!5{skJg3O;Mk^)>g4YtGk}4?`+|9N|g{E^QQyvjw6< zQ8}2cNg2;Ix^<%2*A@V*pS{#l78pgmwI&ywbMHW0C{-^2=Z;9qg=Sf+@iGFlxPDI~ z*SyxuaYIzjC!AE79x01ss`@PNt$q*KD`>NTbr+_(T&`1()-RW;f^VQ1q>}ogdcKLvDKxQM(%1xi{*`N6>}UkI>V9 z`i7lq!oCak9_o{e4Gokix?)ZfFZ?_fb>7+x<6D9l@zGHrNl>P5dCmFz-l%iet^Zu3 z9xlIOKSASbI7V~iEzXcPnhb9S^J{p%1e$mO)~hzME{uWFL*Ag-H=1w3anfyMu(DQd z=-uCffO`~xJf>;R`KN>2kF~AxHQ*2JWbc!!%rwjhZ_F>CI4kj_k-1~ zsnkFa*IRXnm@A3b#POOASl&Q|_&T_V{Gsi{RTSkOP?^sut*T$CsgS)Vs>mPQDTDi% z$~}tmN3!Yi9)W{?*ehY_5t5{^KnOk=%+}^8DSS;z$j`ToB$yqa$bAlNK)qD`_7C9z zo_L`ZBdT+J;>;hRk`I`L|#tkQ@#06=SRTh%>6CqduOL9UHJ+ulNy z&sBGzTG#C?O=*BwuB$K!IIV77K0cmEJqP;*3`%noZmLz4sg&F4I*I=R8L{?P7iFPQ~4UoB}sdeB6I!byI z?lkOEu)kaajdsB{E;8>FR;S*Sv!vYDVu2#%qy)gByqh6wRTb2o%u`EF3NW4!Cjj9q zl87*9+LLy=wluVKy>YEu%ZgE$hg{8fY!pf@fv?yPjW-IVnRNBnxf|QilJvK-65hTw z6waoPBxETlsgl!|Zr|ic8vl+gJGEO$NeXh!y|vjvnb)%_-JvKEUnrKy^(W&zA8xu&9;mm`;kx0e zNaliFe5?i>fP=Jt*NRXi^CFoUV^?K(=B6ia%BD3_^GiO}Q01uaZP#udz{MNichhix zE>_IPJLQg$lS&V7dv@D!Iz^fHr@B-4pIi0CFKl_o*4)0ffLAjmL-*R2kLx+_mUqm* zV@vhC9Wg^{Xvm2sJF@v)A(l+W3c2eka{<_b>YPGR_jU2Vw>K_5xbmAT zOVU3633$(TkOw4hWAYWXLXk{6(P8&{q+A>=l6gjtlAX6x7<({gnm$CsO16u#Yvvik z{RoVBx<-|B!AM2bV4TbNmUgSjz~D&nw%qQKWURcYM|F*rT0GgMXtrJb<8A%D@o2yw z*9ObG@;&ZZG~V04?cmn(_WXEnUpe17zBQQi*f5rQjrjKRRwdx14K1L?B|RI>`@^w# zAdt_;#!^E)itI`Adn4hFbh<4O4fZ4o7M<)!cZ4IQRN~gnU3-RXzo#>jNqbby^5t*8 zHIZ^{=1soYLq4sIDP-8i?|u$mh5t0yJ2AV5M$3f_$Yee%smG0oPp*C62QyPL9Nvgr z@-4ruD@Q$Y&|CYyhe{{IG;UBuYch5lWNfl-GhVEz_BG-uY$Gt3fJDlWvWQaFcn;Cd ztFDB*Muv$lMfm5-w(~hBs5WUPDbS zr+RK3VtS`(|20|e$MKZp(*7o_NtfQ37lC3BHo-hLOvFNPqhbMFh0Rc4U=(fN$n-hl zbFzi*@my}ayQ?GQ1BnBhQd8MnuM^EhB0et+u#Utx8i{G!4Ccpg9?$zdmTbuFiljvQ z_s812x}k8TO)*HG#5~%AdE^Ht>w*tR#^s5<#f3Lb3fLv0lU#JO$2VrBb$$?M9OteZC0$=L|M@Zo z)CAvM9_*5QFLg1T_$k=PCLRRj#z0zN>=xE;M=$#MSlAU^V<18N*^FW~q@j?iC>cp! z;S(RP{_<`oC7E0g4hA;`7q`8n@A-c=VIVuUb;u_&ilTkk1@VNFGVw_D!o2)S^_QlU za_+_>cw(@$?WH|BH#f=dBgSgEWsr1vUVv7Imeg2Yi(nv&uE1OYBH{8nAZjcc(W8Pp zb{6p{5s_Woy#aEHg3%cNuem8R5lEF%{-pVi?hvd(7la0SN>ZeM>3Bg3ypCDEMasxr zxh3gG$w1;3h+uw5SGUye-varUx2113B4!|9MvNP>{%G}=Zg;g<^&eeTRptvp-RIMT zo}Rsuv=>k86{Yv0q7W+FBW~}(doXB_*;rE+f^NMQ&-F-4&kDtn;0W<|w_lM}l8w_f zWjGf4VL8TB*8+8+Es$7TEv}S$+HdsK+ILf`r@Hjgy%8f2Fe3N9RQF4aLw-~cKT#&1 zcD`R4i**v?B00l#DS$u}!PxYe3-Uq{HUI)~2Oo8*Nz{R0R&;6i$Y4~{W4kyHcJEA@ zPagWMe0HpDyrAowuD{_f$I0+u;<~<)EGZGil&W8-WwvbYzw3tUH|eF$`Tc=xe>UcH zxApA1OBuSp`119;w&aSvd%Q{Sb(=Oz{d1f4My^o|j1lJV-_Qj~mS(_9=~}-9#V;3H^=MoJRuv<|;h<{^?h2BZ z_0vQFaIoqb{RHL>kr?L{$39}8JEY8*_Jx;IRE`ceiZ9B4x%veceSnN8x#LjvBG1_7 zOm%|V3mYTaOF9rmpJfqu)C2xB=yE8;Bh`3R%j_t|y29DuaAbI7*j0y$;6i$&Yb1s= zjQ?0ahqt;bqHEx+?s=rP>l^G9qn7j5PlCw1=7A-Et8XG&}!arFV_U=oC4`f)Hs3$Wtinl^|}B7)eXJ$hxO%{d{#d%7-prpdR?u zoB)1K_4nwyX(YUk<4qWAnjSb*o#GeJ@aobb*nx7ox<&Ei;7YtpcXTu9@kX{qyq*O4 z!&}Cs9dgZHij{f&mJjf;T^wZ1b<_ciT<q>vWq9Y@RJ(8)~vbg5$QuK{GTG4XRus5Yy+D$j%&>7Mq-Xxs` zcWQ_MYT#wPKfM$M_WC`7->Yf)8Ec5H>kZr$wiE+bxU&c`sYv=Yl%S21Q8nSc6A-@vQH+R9di_=w3pzN+C~3}6BuR19NSg%ajUkd@w5%hm0rSR& z9KC?EG15wgwJr@q1(AH+;VAfq6PBq;A*jthC(y5QGvW(`tU}1{hJh!T{ z60>|(DA4u@mt@_v10i+eUZ3~r{tWN7eTHs?OZ};MRQF3>JFWO+k70)oT8?ZRx^}5k zH!|;cx?(=r%ee%-T?S3LYW#*=TZllm7HYYQuGCx~w=KY6qzE;lig{rp6}pkPLmt>Hqw$Wbgc{D{g}e0$>U%;K4dM+K`y9zq%6J@ph=)qA%H%vYP<_1 zWaFM)R+Yg)ZAMX5Wq3e4p{j=VG@TqYJfQ=Wd0K-MT9ZS;Z|n2^4SKq6t2b^1iFx1~ zu+M!R5x%gHa|o;S0WqX0306RM9=LZ2MmvcB3W3Vi$#!wDJQ$m`FeWYR0aPB6iasKW zrGW&l=Ee{ELkP$SBojSFXlBV^B<=GWdH@q8(a~MMw{NFuIURvLN5YBrb|-2N`=U-}!^TUWSAgzw@#?|b`vQhx1#S7yQkRY0z zx1#!CLrYejr^f#TO4v_)QEj)vpQ%25BY)Qti0QbHye#iIe^+d79J-q2oq=FpT{`E& zpAKk8km96yS8D?R-bMu5b}rh1=%34%YOkgS)WXo78vpkY_4#=1WiW@r-dTZ)?nnw= z39VAlpr-!UhZt3wIj^Gw>Vv{yJu*mWK!gW)an&_QaDr&>BDDviHCtC@lx@qf?XXXW z{G9#W){}poI(#_gv64o3XgFjfeH&<%PwT$0Z5x&y%c6=^Cx2aNYb#iB#YzN&2}?oT zj)s+L)YmV;6G0J8y^v9%d-8q>U9hECS^{eBlKi~5n-kZ8qFEdnixy)M9ef@tXK}1U zDvk}uKrHx=g9j!c(T%^YJ<`Zcls6|16nR9o%md>CJO6xO{D4`oNAkRQAfZGz-Ml#} zZRft>n|iItu_wlB-|x|O9E#=#ddB+QlHcHD*Pz?c3po?Eltp0>B5Cq zZ@b{qh9zknHjj3)cH}X^p|jUC5zibt_CRF{qSau-$jnI6qoQ*xHC{s(Nb3yx<&-bLP#)9)O5XSXr_-}n-Rptes{;c)U z9|eNhm?t|>D(7NZsc`VI++5rrSBt7D2V+5dJk$~Pd1Tf5qYwg^$X@$Z_=dj;h*3-| zg{J9*qy-A+ERZyTw$!LT%`qL}eqAK7lgvx4CHq8;uIe#U2e-y4lRneO>_!QjK6G{TBmFm&tRTZU=aTPTT4o??cMp41%OfkEp!J`u zpvMbRru$Rg&_K@e4tClRkKgC<*&)MYsQ$1g6h*L~bdhU{VJcdtUC-LSoE3Su@biri zcIG5a@|b+2KN3sW@qp&_$cAs6q8i722DqISG!&0*2I9R#(jA?HrHK7;(<5s>E39Y` zS5>d$_XdK#fDwc*BoIj_Rm|qC&tm!r2;hnk z4qO<5EEI}^t_ArT<&H`VapL z28m=h#Evex@Edbi0fM_zfUK)%Qm+ST*3}V@fC%AUAQJ%;I0_S&EAH!EFj~3)fReyk zs7wtMbO9S)59~J1xN4-{VAmmN?b+C7D z4a4D{u~g4+x19}`*5LlZhpe2>&g$(MO)(8f$`>Vs?nXnNupbp0AsguL_e4^Wb9L+! z_;<-&-%x{JI70GeJ$N=YmP|H0YfU&60>;ECO?@`;S>FrncTy!%+ff z6DcXMaVQ$DW8eM%3wp*+|8E!**KaFe*9kr_%YKXfOTi85457gYS2F`uC~j|t0}=yh zccTV?mEavPcnQYu(n5DWzri^_ZudpJX@7C7D46GIGZpx}%RAZ-;`lmzli14V4ed18 z>v5RHG>>~A3z-Tt49;(8Ugf@!X?VTz^{HYp^$EdZpZED)zH%hik~NFd0z?p>CTh%?`WDweEao!`ZE7GN+nVSL+%9Qe+l`yI6^}L*iO(mC zzDu?>6(U1q@OCG?)elD8<54u-<6R6`Rxn9$>IqoBKsV*u8rP^`9ZrmY3i3JDVXDKh zKe~*WaD1|@Vz9kxOzxh5AH|~^!0o~sjrO~ElHl>KVWMO{9FGT{MQcXFk*!oce6~T?v zrsiYc4s{q~wm-hb8{e|U8#W*cIbCL?J5g%Lc&^|_!j9!twri=dHZI9Z8*EQws`uNv z2?+_T0&*Lzzfd5v_R!kRF=28Pc;V`yU9L6`Ed|&FOoFqngA;(p2Hjwj(VbGUKvJ8S z&Lqk;P6!U;#=>b;Z*M#KWLvwYc1Gg`=jotQ+_Fhihk!QMD8J*iRqH8uEFR@)YI~pZT6xo$IIH=EPP>F1Nj?GXZZB3F{tN5?06yEPcL7j95#8ml z=xHmT1zUv#Gc*P!OP^r@Gh!ORDIvM#!Jvx>bRc<7BcTrvg`a{@l#nilF+df7CR|Qq zU6`&g6_8;GC22OJNCzK=mrB$o&6K=)EaUHv4J2d9R3_RRC?<7piDLara5;w#IYaO! zL9&5jHtg8ju(t)>Z2E(jeu7$`zGteCJ@?swwefZs^!5S!gg zR~Wt1HZ+rSMR$DMAJlx14X^Wj8ZVTFozY0xw!-NNZ#vi!o6!T7r0=qPdRX5d2#>rh z9(KnCNIlM`eT9Cr`0t`fqqfwghcl8*;rQ1j%4+^)Y8aEV<)wURb8Db3*Aq z@a4{b@{=(;I6Bnc8A3c>hldG#d1`eIlGJ^tec~v=Bu_$No;e@wC^(f;g&@+ zd)$lTFCkPAcB&*ftDD(Zx@qpyq4q`j*I7C9F2m}k3Ds>G)%P{l&%7f}*W#r$mDk?m z>WE);{h4GR+5_5A>tWN4 z1If61MTGg*u2e5`*17%K?VTL^B#F%VX6W$lu^s93jA_z-JTUyHk=p3(oNxpFsE{m!p`g?_(6kM_3D zs1{s(GE^PSFf?fV)Mtzh5ggcdX&qcQ?V-Uj9xd*khIJR?ux$d+v2=i6;si= z?zsAeU@X=diw*MeJF!CGk!~EiS4UT@USj+jmF|qaeE3e8O3Mh+uJh1w==rpgVmo5x zVHc(t1Yl1+s%#bVhtUh73-zfmCK_KaKHP}y)ZIu}_YleQCBXk2;Z4AFF=kOx?yf#l z&ngPt5(OR+%{=J#X9k@*h~=IE7v-26BJ*>4$|Njxb2z{ve+Bn|#5m3gusldToRQ^& zhsEAx;785%;ahLyAwII64PrwNP0TI_Y( z=eF`=^|v(Nw{Gsnb;^BaookI&uUpISH)cKTIKRfOcMAUoB!>IQjz}7vD-^<(09hQ& z0pVT{9nz98Zb5iJ^fOq4Ff9~BiAG_#yzvMOU2cg+VeGPi3y3m>rN@>~v0H*Fit-=B zg5mL-u}z6h#ev%)TXRK%Ppfy`tD7LY$ugIH!D|a0xkxbs3!yh1Ac=0B%NMz6B=?kL z?hBe+ZBHG}d3^kZh}Wm0%W@!cd#Ql8#!SB_I@-JL)iTUTnPMc@QMfjU&`Z37n_3|4 zUH`I!>gCd&q+v=vPp+r972bK5KQv+!DPALws3OqIRV(9*V{m%Jw9c`*pcpG6&}IzL zU8G+ZM~Czn!od(F&>Ehb8;O_WBLj0!i}A8OCA1O31^STlf(H!UHV>P&Znz zJ?hJQLuu4q8n~s@oeU%$JC=g|Lr=wQ2dCY52k{Py`w%wH=34JNu{+cK>(J5~H>vYF zvXcvuQ^0EE4bB^C0m=!*s*%}{L2j~JAyAa24%JX_Xf1&f875I*&s@$1%$=FMbGbp=lz!Dr^8$K`F=5uKUaQV za@Tt$vwQ%EV6bfXieUG z0y?h+E6!HhOKMfbd&~j4gEBxD8$*;cEDFL>K>MCVu-0jfWC-bf1X6q!a#jR;wTve> zCzG4YbckB}yx2+x-Xuly7*P!|GJfl|-&~}5ErCqf^VM?$+3Wxp$5OhyqnvgRFCgj$ zT9S;Yc35y6%{pTJ4BHL-pY$ZZ8BvB8vjgr!=P1IUgMGoH9Ho}!o0Xjc^(^%bU{37s2)U$)+*d} zGEOE$x*u6nUh1wM^e5C!rk#!P3V`^VYCzRgzEph&=NGCUd7AKw4%x$pyPMJbm)7nT zw0i3xelCRJs8(WG3<`#``o-5?gBYZGc>L44Ize^faJYM_L4+DB@AZG(xVEp6tHBO7 zX$Cvl7$p4N@aG?Z{QD?-H+za`KnrBDt3*-+71vAvRECrRFKM8xg#|?U;D29*YoEq=MSm+mSz?8O0TebrS&UVxq^zTs5q0URf;lH z`MA3u!>3if{vDqik7HW^f-S{F{}6b20c+##f;2#TcfOlF!Tt~ShwP6a8`R-N{jc@4 zuH`mOEdK{kXgc$nb%M&O3_Q`>*@N7>22=A)XF6kr12s7{VyaL@_P(>Z03OPs_R(* zlw1R@8>AKnY2ye1EE0`_$uG~pSe*!({?L4;$KEuDFbl7vY?mXs>M!yapMOTx0{VYA z#V_!eDkiMWr6bWcIk;m$*1R$PWH@b9`}X)FyZ@c;SG6zoRfNpgT$fASVKr}%1=$qL zIJ`y@YD$)ZT(!!#E&F!$8af$z=`h#KZnWl!$1hOf)d!cKigtRjA0{M~e6iq8Td=Bf z4DyMf_*m(=YVRz*c+rZ-t&7$p%~e3H%csBdfNtBDZCjt#Q{I+kL``{t#))J}mzUSp zSBZ5H4PZ2EMGYzpQ)cU0i1qk8pU_pH92PI%NvP4tk}+s~Zh!fzvh>)$X_j8g_+jUP z?(!O9&1fIC1GJB26HFx1wT|sr%>i9!DIldH+L_GF6k=i{A|IL`Erf$ESQm9S81j*T z8M6>z9-R{!2d>waHTEm_35xsY6Ku72D2SE zRNb%wx)zirIf6w(ZEf-HOF^n7A#k}VM~;D;yk37H=RmZr6TCYA7#0q$B4`d7@;2z+ z7AuelMTg2aD;|$hRP{_r);H<;gPm=$KwzW(+!{@9HjD8d$o{WUkB;1}SKdz6_~)@wrTX)_@Obgu zuf#4Qy|xLV>?TS1T&`R`ST5&;U5f8=m!}Byvz+n6hwJ+rVWEd@PTeF))n7}>%k;>> z@;PA)tHndOYw0qOd?ws>6Jduj!Hrd-;LBoxOb?)J+22`;S1+d&tR(PKW|?;*gY78b0y#uI(GD2 zd;VcBJe>78^(0)&4q~D2s7uf)?>uj}MYhWRV77aE-wg?`w=2@-3xt)?NSl4$?tWp0 zo4#~rTOih+8*Y!88lO4;W5ka>IG;_)4z5>& z;eT^A5M3c%si}uDzM7m|W#?bD;fcEsn9ww@+T^5m*+qGJ5664H!ZV0zgj*%Ak0E?{ z1d-{IE6~tzVeM?@vDnlHcA@oqp7r^;aeqSc#l7#{z4rr0oyYeZ#*-1ri5n+A>;os- zUvK+Yq|N-_!tPeYD+otcS4ku7A{fGri|$K1u!+R8d$d?gTlJFndgDGRalgU+zZZMV zZN{z-@JQrI%j2$X^a_1;aO zYWm1v*Y7a=6u8*SIu=Gjb+?!n#Wsd0+`^?)ZeLzf}%n8}A1yq>rY5YNMS% zd3RHaT7MhRry4>Q*$6OxzW}W7VjsXS5_|$tsW1b=>FjPZP@u2{3Lrp4ft#UaXSKj& zH;jYk9&Xe6cr8j%4CJqN=qfVq7Ox~f&Qh%Fj$pqIF&2TXLDz$hmU zR3Z4nSgWYg;B!B4xGeSg(?P|;il)(kBUwG1_gIn>7?mV$DZ#YA4+6HMrPJD~vLit% zD@jx~II^~^Hyrj9gPSZh?hF?Lf#R?eSFKIKqG#20?r+>^gF({umBLafY_#2j2((HW zMlw)FSPf5P%r36*E;EzBl0&H+NE${8%diH?&h+Ms9v&D7Ti)cLljTar?zXWYKkE!8 zy}r;!HzKuW!J&J(zWSZwKflVCK(9w3BVo7f{Ag{vRPb41x5RLvk~OtF3PlkSprn&v zTMj73BW1N7Mxu5(7;)iiXpLW_#ZM!Ra9qTY>X01q?@CtR(F2l!Fe5}f_2!(8pvUrh z4NJrd8@8&OC9i^@xj?Efku-9-q3Q%=5ZZfad`6XQS=GE9ssh+TweduvUPO2X9V?y= zv?cTHb^yyCJbv!g{m~z0)4`m*Io@WdK3!5gVPD0EICo>WS4rdosYKgIELQGJ4v3&p z1f%LHkI$F1!kSm}J7&P^Nu|BcO9)Xl72O}`(!2crq7_fU#s@fFa^X0H-x!!BIJ)vA z0jM5L3pY%QwmjC1qlL^vfwXS;tSjJ9Fb5uk+)3v3#s^Qpg+tz)h%1pI*|v@nmN?78_|xqyo8w;@xey0JKf4X|hzKExy^# z1=A5f;1clbh@q9$mmF_8P$=+%p^D2r_= zEz{oWwJh(}c3Hl$`XWim7$~7fiap)Bv0iE4nvrsMb<+ubf%!rccNfeS;6ZA-+@T!r zrqw~96zyOF*ui?uF5fB54kAd2Vo$=!psl4w?|n*;tji&PqT{BHgg?}_=ir{!0mH^` zr~9LUu%{#MlHh|Ko^T-AfBN3hPYXKy_bGou(IXKoJN2icFwEo6rGFsLUxQrHOTX}u zZ!{dvE+T&|K?KEu-0F!4H#XI1^d`dpFw$AN?dWZ#&Pabe+@Il7nf`G6Z*x0xxg7`T z@bjRr`Vn6+9q%taQtFSVKdKFE8@#Plx@~aVfaWW9bR{zV{h35px|_4wBY3X*xGxy= zB@*4bFPHP_-OzAra)=wdPksd&iM0~ln#cfRq;EKLTKA84pvRnY^`qw`L?s-gJAKLzu#9%%9 zaxKqM<9BO$36Utjs^w)i%00Ebg8Z&pUS(0fSj%gypZ|6(Z?ZeE-=nDC%LH>G_3|vu83R{UxfP_Lh;BdJjyW znVz3qoSw=YeKfQ1(21eN#p9Xd^RuTj^uY9~Q?r@5`PuuYk1h7kEH2J%8yGlVyWW3n z_B4L4Vixhbi!1{eKMafc0?tq4d!y?a!~A8`=7;$${8oM&Kf-V4cks9IJNaGwZhjBHm%p9g z$KSyx_#{8dkMSu!&5!dFe1@Oo_wxt%DSn!t;j?@WksI@TfiLp2{2^vdPEE~EFD&#O zot=H4adK>Oekw9KKR^3$-{h&qzGElnkDZ$Co0@(2%+*&8po9%!DP zK6&Qsg0FFR?$p_Z=FP>Er>7S@^_xL-XL_-3;lZ=`c6+h<3iTkgs*Kxu|Ef!8=Zs@B zlkb1P5_PszC<|Y>wlw-4Vj~aAvo8>(=KRtC4gM!-4soDDID0I;`edeL* zQ?ql^eMo0K^)qAo(P;s4&+(HONW9GwnfYTgCm)(N#mU*Jle31KJvKX4yEy&GvFTId z{>jsmC#FROb5qCtZo#?Pho|S~W>2136lESdIW=9Y3PFFnaAjeLJP-EE-cK>FNoJI%;APxWMO9VfoXYWYD&d# z)Xpz@W@Z=WPA*QKGG=Da&Yu7tFL+K)0V}3XOzX(du&6GmH21jRd0_fcfeNRlPtTq) zPMthH-8YZHM-Fr3=-E?8J*Q4CxHur=XLIG#(=(Qf-8GE0@znIAeMe7X-eBaE)3d1M z%=E(xE_AHfqr_tRPR!4qowI8vXV18&UbjTw+^NYk)7ISN*@fvE&U$g_(PsYaLhV)l z2hUC~5N_7)ne)>p(6nh_oU$eNi1n(qEFQ&Uql zr#+P^CSf5zhlfctOsn)`qLfAjy}q|`J-0RRx_e=OfWs1rw1_$a9{vHs)4|M_D7 zpefX$>||+08Gfw52hrn%uUPy0M@5} zam@d~iG&vHW%Z8)0NBX?`NaP~4$cQ!ZDsG~^^g0nhVQ?;OS@p-V|I?F|E=r$$6fsg zZ4KuvdlRpJb=m*b01*8HF-R=n%E83m{2w> z5s58=BR~O^d=S!r|BdzQ=MD@^4GeU~HN^!33+7AtJ3%}?H_+EN)HgBp69c@Yy^NXL z&-k6R&ui}+1X5t67@kqsL^1&%04fS!_b))YvXxvv3cgbjIwm|ECp$@qI5dj`Gd(sc*+_=4C^VdM83YV6))2B-5FPY5Pp=%b zUEk^TBJmy4n7|i%yCassYxgOCFIG8}&$y}Tul)9>f(~{)Enhc-TZ!G8OZRTc^Dj^O zVlD&~q8~tE_*fGbQb{S(rjf3*h|qfWGzrV9h~|36mC=(mw9iAYoG9I#Xt;GDsM7@e z%vc^us-vNtBsNz?kCUveB&Y{t!f7;b*4dNyh1M7*h0^LNTDXaWhK4HI&54(W;w$>j z$wZf`oSNqozZxqMM4itWG{%7YQl6rTHE@UR*C7DFq&yO&1Tw+2sqX zRSkkz4Jox{6Q5#M=_6Jn{ zCs_W+T+26=HnkT@%SQN@6}_F8+~4{Y$p#Rn?=jx+7O=BU0=IVnBUdOQ<{Z4X>{G9_ z&Gv95@AOZc!OEBu4#RyxK_DU$OXel^=qLOUTAn2>nzb?JB6i>CmRx|tp{C>mv(Y_; ztMv(Hm~~wKo;BgAjN~13{6k8aFRFb^QK%riIdt{Zp6iVnzvCUM;{$1I*UY5fn8McB z^wXih4Up344io7j@8w93@{aTI+!&1(QAKSg<+7FH1 zs?Y5p8zTi*;iYWKpfl4f1mI6=*@(h2Z<4S~%5ZFxED~UobykGrqCU!W84Q`Oe4}Jj zR#{wzWtLFUAbaGH=%PHTocy8;J;yXn{S_%CaZNQ^QX%9X5>Ol`|7J7Ble5Q1F}ADl zF8bF*7S|=7#&xW_?1|(x(3;D+P&ph052DEE)ouMFk!iYfcKv(&3cc6iu}#Rf~*= zlm!b}%?Wz75!DR^Yq?Cv2?N=1nm`)3D%q5Vv6P9F;WEFnDs~DE^HiEf8a;(`g>{Pw z=LwI>Jg*5vwH7sxEY-Y*$&}ZW?Xsg^_^cKFNO&5(QdJWjE>muz%8J=Dur>k;zaX3U z%N~PuqcxN)nl&r)W^CB1d~7P4GiPvY@D!*Jn+MAp!`TodKYMH6q9XrYXkIzpesC%H zTJFZ(AKf1T9hDs)Twk{}@6v1nUj)`A^JkW^_Bw>?4P*gzqYXi!{gHNdca$SB{oIt? zW=>;}5ojY-=^1xxh7smzX5BDm7!Nv%13I%ZE-&Q1+<1;@uFUjJFFjhzyP5NA z0%4XJlUVa~XQYkU>$Cd9TO-WnD;x2+sWeM=>QV1OXB&!D zc~n@J-F#oT=}hWb9>ow0z&X_;+-lt^6gZ4o_aPefa^cPu5cEf&JyY;pI(Q5O)wLTV z?|D-&W}$2?xOwHHLfWa$($5E9ws4C*&v9i&nlRJUE_p_c2KC(X5qv_HRP!3Pi#Wf_4b&T#ZXVMI1`!@~&B%#ZLy;WFk`=)OIS4Db*9|^N zztg>EB(PqSekal8pk7**P2&%|ra}{Jx#L{=QI6XwXjfk$c0l|wlW{+(l34vxt)R?~ zDqRm!HuQOhD?3;vEhl^Ue!;hqgku2{8*VZHm$}@Sm@3!?uAC*dZGhc|zCag}2l8MG zC^A)~eGRaI*aF$6BR#nT3r7;V1E)c3b#QEU2*9Fo5TuVh*v=W)Wr$cX+2A^xG-0FW zjW*$Gg)g;W^*g#;o3 z+3V&k*9QkUXTHkbr-4cUS5EZ>2QA-F7=Tg+`6_F?xCoW)kNAOUzMojs%ZK*62p z{@^5n4%vy26-p5U=r+Khe@3hR4FNq<18V~fvR`yuwG$0+umyVb@Wb=>4H@%f z`-IA{Nu2Pqrfr1Ec0vU7TpB0-X*VP1X2I5RCmL+4;49i|r4{_L1qJno!-j(_IK+Ye zOa(=rzXvU|Mdlrh#r~pWDnPnuxT1mNBD-rS@bUk!Ki2g2>@3CB0F#KL2C8G28B#OF zMbDe5PjTkvgEi5|Ssp&Et&cUkYA>1T3FijXSytxZ$6HuXrN|DjkT1*q`lH^SQ^AN6 z1uXb6zm1~7nj>z0uogp2=T03ixn+q1Y*#^ z+R~o`_`43P=K+V>|1Bw9>LEx@p|6Wg9ugtQ6>|Ir^iIHcl>5XBA?#gv|51>}U`smF zj3w4&{$4nZ9mzII83wcWYvGoJT>IfDf>6P{3}lcnsR1iOrASH>L@Ly|leOs@<^KGz z=1zQ4+|HmY!((Lyv@o<_=Xah^JYyg+pZf*64-$&monT}S(qEs3cb^l*lkF)}cr^PL za|RV=LnRyxaZ>C1v3Gvl_FeoQu8*$MlXI*q*ihU}VwH*K9jQwX@6-u4UH;|jz5Lr{ z!KF%qOD_JM&bL&=Gg_!jSYDcJXmlgXYyNK6fK!g9%2oK+e1mhX&*9(Ix`L{-C?axA z29_{#;p4}HXIv`rdA0EKkHJ$+{n!NaM%O4GF?sO|v%7^q(A_LpmI~E5!`!Y`ZCGYz z!f{^@1)6TwlK^^JOo;jrak{sg5S0e5g&R6hd3?hUmtQR#77YiREp01I3HV+3fvAoN z(Xj>co_UhVxk6Ak2xhLrm!vUoV$8Tv0!i>oEe)&>Lp^;!5_L=BnoV^JJ}Z0hTmX0- zvEfgZrh!%=SkyD!yjS76>kl1jAipjF=-fHj4i8dF!Q9{Uc$YuTcO|3FodIFt;pi5~ z{>i_CHKa@4h=b8L9e+y^k?aPfqQ_q?aUhwJDB_CV=eA0onoh|iR2tY4*YWxK2|%yv z1rsos?sJEpa=-i4`uJ1H=dC|M|MoYLD&ag7Z!a80{R?fBF&53^XdhC@gXhz=3`$wg z<8mZ9Bh-ZEqUHFde~a(TcQB3^o7l=N>VXUI81^V8xC_8u!AX^2QR_PurmEwD{;hWm zl7-6Aw?4Qt_vuemRl@f3Zo4R=hTxAR2K_x&xeii^4*|R)b0WBF^X|`teRPgBqqF;a zWc*-AdtWH-gypY+Q2RjP;awzoUeK#~dysYccn~qnYrrUk8vmfPr8t_-=D>Z6NLJ|% zKmIYup}Uk1K4IT;p}mOCWl(4Rk6vhj?>Q4$<8}fQMG*Qz_$vgi1N55`R!?53U8#3y*9hyZ^ALB{?{uDm#m8~GV~OJ zA7=SiAFLZZST!YG>JcRgbc`Wsmon@cfq>Em?}){&%WEq2+zS*v7*nu(6N5%cHaPuJ zU*{1D76?H-LgEa=-GM83UA$)DXwnc)0ei6X8>}$f@Dvn3O9`Qsl?_}+d*CiRcDG2n z^x5x?Si!`JSqPP1<4ukIyDZ3oq%$(jcoh|p*L=%+ly5A;hpBZGa(TeFLazmXT)9n} zH1t8pq8{T;h#q{Bd?5re`W4u=4_MD`dor1Tk^A{~fkZ1oSK9u1PP)38o2j*w!KkxM z{L_%uBzjx2#GQ>};cPmIREHC9t$44<1vl0>RQ&XPWZS}{Cu}^E_N7z@)FkNi0Kaz* z50sH7?8bDSDSS%@STER*F|cr~FgDCU@4oif1o7Lw8MwGi$3Jn1z35P}iUc_H&-=hy2Bo3-k@lMg>a z@1q!0lc48m-ok!LX%sA->GGUgh}^|iF47jyst%hz1*y1=B7Np`x*P^m<`ZqHt#s%U zWLF;!FY^^L!e5%T??dH3qd>9a{^NZ89b=?o%S`^p_;w7p0+8TYEIR*aP=)yEu-yk4 zbIlC}*^9=E#f@)qYib@~Z|kf&^WLn*>L;UDnbH(w4$T~5EZ^6jP?$=A znNogH>5&33hiAkwWN1z_L5@GX8pDtu#8Z=?(YHX3v!E){p~_SvDxM{0bSjgJgR&!T z6~RHC`FIGwye+YiU4n1@XxO3CtqMwP;So1Q3sxx$(ITQ>H+!caEL$UfFlXD1fMzn_ zGNWyZL7L?+eu_IFBnW0?izvNVYhNe7yc>V~8XYy!_eQNM6Ce)Us3u{{Ia9;7P#c4s zXclSu*^A5#kNBdn6sNkl42BYtH*+tGbRW_8$dmR7)%0*agXHMGP!&`sV5_u_bn^p- z=ufZOT;h7S&P^WvY&6kjl5C(9?LVQlG3N+JI84^FL1+?7QbO%rK z$)xQ~ql+0idQqXf7%2ZOmA!oHmTQcN1JbNC$psPNw}Q1gDH+3imCz*aXx(Sw_n`A* zwK#{F5%DVqVzc;LCE9qRfB>FdMFvggypEF%J$$P0tD)u2O8m*rt^to8bj=eFgF5;h07 zlV(pf2r7*TpzF2<-JU1?$&PcL&=#1;2eG*C2C_S@Zu>MUVk9EzLU#_AL49A|J(kU* z+h7{di{2(!ml`8>Ahgbb{elN@nI$hDj;8bBO}5kaHKY}PW4iKSMvBs7VKg*XDMPtu zM@f>k<98gU%;y3nM+u?^JIp~QCih+2jnG5%Z))0%WKya#AbMv{KECFM9pTAW{#Mrw z3{zS{L9YwKygePH5^w3pYsp{$3eUV1w>SG2R`v8l>tRaFpNhk4I+5d6#H>;kv|L;D^**9xos~?_vrp5qK7dJ zsKUWua}bH9j80lqNjaX`ZL|dW)(|~Qu1(BmtX{+QnV9dPROkrtZEi6LR_(L_#Wr3G z=`j0Jr>S*_@9C3s_yrf(xt#rYIoL`>?a$x}=K2}uR%<**%y57gOeaC55-B91PJ>NW z4H;GeowHiQ(*|m3e~`K~Oe!-ANcNL+qxBIeqyfbPY1Q$pvIe24agb<|9UAkw;PQ@7 zr%>q-+4E9bY>r6v!LG;Ggr_65i+|3Fo5siGa>JRNzi{Iv9Hgwo#W6f3Uyoq4MzkE$ z?$YjaxfxWPU*y3c!TjT)xK{LS!;a}VPDrEi|CY<%aO_pd0E94lOC!!DkVhTF_CS zW@ou6E?CVE#Wf0e1uRg9U$g(-N+5skqO~X7r1A`@6~0c@$v?x@_3V76pCAThxzlqk zFr;ySc}Kw>hzdF=aC0lS!Nt}IVvx2YjDty#Ar2rF{%9jEB8^D6X6YoqYivB=F+_g* zi1CUi9y>@rGLuOo9hE+oQ6Y@s@o?S-S!5{OA&hdmA+qbPWm7;UkqRZw1`8p3j)By)7rQ&6nrgdAr~+C7GL+P_D>h+K!)bw>2i`)q_-qR!VrN6EO@YW(3-+Q z%98T!bbEUB7V+p@?)|m`+D%2`xC@*drFR83%2VWvo_Zrr=2+2I5J*v9U$AVoV@mI%uRm)x`Q@+v&&O2YbU#4E_~1Lwz&GO}#YC z^>GhzEVo>pX~cZ%yNnLRYbYDOYoMp(n?Z~IM$D<}T{b-cArx5le&Bt2#3Po+0-Kam z)0!^w^hfdIP!NC$^R_fiT@Y$&w!fprQGW^-Ee=+h2Oy$CbYuJb5PQ819S|j!pB?~L zr-F+feUPC-l>XA-O+~`L1$1TxyB+EGLk%^G^mXvat^I_~JHTA!r|n=HN(1x&7JY2f z6WQ3;nTvQKKY6}wgQL)WJ05BXMn0FDjAiW~@Bc1L7Ah}M#bB7R zh1pcJ^2;$9niMK%^AC+&h$)k)Q|W&dU!*TEt}_gyfS(HT0EbXINK&?KG3_}8&OPqA zd|cCCwq6oK!##1m)MM10VFuVtT`z0mcA}2@9l>U~*g0E#2juARm#N2C;JlBb`q^E4 z7_fK{op{VQ#TrEXl zd2&WTW}z+LhXToB|SPda>+cJPc96oNzTj$M}+l;tt`F%hD?AR}-%?Gsgtx%A7@R zf6>V@F1*7r2_=6^9tEnB-3rV+TK1RJ#df-XIV;{>K~1$`kJg{%pQ{9lVGsyae~lRF zcAllUY@aW^7su1(sgP2Tt=eci@5iQE4r)!qKi2h&T2 zZ}!`J&KKPAq4(EG`JWejRNLUVtU?F2XK1Us>j`ix)jziyQ8PLA|B0_IYTk{G*If^G)2dm09KFsANsX^x1s5xmgoC&R^R6oc~Uk z6^HXkRE+oS@PdYLnGsN@eB83Gf0SF|t?Ibpge@w@sL5^HCvlFr8U$gXM3T1fhP>U^ zb&4+o3VQ_3O}h%CyheEWS}GXFjGRB*a@dfQNE(LP8WjN{Iyeii_+#HlV9W}>Asj*6 zpL}Iwy5z5}iKbdr7mHy!xWa+g_{!gK3prY8CcCobF?ks^OSmw)%#IQ~6rCgpHd+Z_ zOI1Bq!q_A%)5(a_&YWD&R?RdNeeBQp6}A_=Ume6rx0UGIcK zto|UGct9RYRFTt=Von$zCf`+kukCs=p~qYvtcK8bRaq4`YT&H z@#jS8z?I!TCj?GX70h^ytpxgN8pC#r`l1R1PWgls2SIs---grnj3anPQCdZ+1*y%( zP{I6if)_uPb&xs{*F##-G-2kCc+G`ae!|JfF4EvqzrbZPKFq`-$}a6VY+)TWm&F^K z^v{gId%Ojvi!geOx*0pjp?72BsoOaDff(Z32uqoe{L>a7;g`r^!rO3yRCs1miNP{( zp7C}2bM_}r$E{I;(pi_ia3|>rl`gbvukU(n&HfqUK72x}$JJvZ9IJJKGG zzTvJ<9;U687V^EH;?YFHf6HC}?pGgwsq*Hj>?jfO{W8dhz=GqA4F9 zg|@k)60p@BjjjT6nw85-hW~PeNc!VLLW~cOBvAU3lB#hOT!NqEo-}O=Ua^WOg-!eDV~iD@>a&UUPy%O>kg}PFw9i;aSR2 z;O#?Y)=-Ke&h%SCs%_c~#Wgi#_cB(ZiY?OS$<)-f{%!5q6WR5U-BNFjen^@MNe{(f zQq+6I%;2&yXkge2EI)By!Y@t%#{5<MaL1KU=MsHA7TU#d#EMnXpzBl5!-j z?BNl}OUu}RpO4Dj!%)6E09(iE4sy;9g~WLY{-_vc?F;ro^DGv z{O`s3YeM%^CtugT-w9En?Pd*fHYUUgO6e!<(wTi*{P@SWsvRR$0X~c9dr5Ldl!ttd z49NLb7meArMW%g3*;-1G#EMHhe3FUXxK&akfddy^WCwM9a*nMthGsu(PRUP0{j|e{ z-5=uoPqk(S-oMP#CGN#)ZY9`23FW#E@0T*D(Si3-k0sNeu4+ZfU@bfo-?q!hO;q4j zGT(tq{_#U&0eTql*Jw#$p`RT6%K6I84WzaF%>q*-CzcsT#w!td5Pam& zcYCtP_cVy7cgy`jzng6fVXzV+M=CoWk<7CyQP*6T&WdXklIy7V*^oW}h9bp-z)om> zCQ)gO4iH5EW6%Q#;)8K%scVM+#}$Yt8`=UQ1@ES{UCiyAdnRz()x z8Ee$`$K+iILUuD85E*vGM|nZhOBO!h1(i8N-omlLyt-nN=Q=e|K}m1C(%j8`i>Kc? zjI1T4Dk!mS)yWd|rO60kw}~{>&MDh|5-R%KeK_GBg{nrkEN7_i?rFh1tcl%BMI>T0 zE>2!=so%Im*N0GWY$Z1hkE6-TLSlMN=N7+(9h1q5H|~H;v+3RD&WY>W1w~+_O&;{m zD6D}mhED>>r@I*baaTIl!!-YmE<-o$rhoXEO>V%P{yl*Uv&2q21P&E1SMl!U(VQgX zSh_Y0V!(%OR0VBsStb$XeLPaOQeJOe2ez5Dpop$(!4SCQ`v$-j>!0B3h@~E!wYfIeDnK8R7>`2p=} z^X%W2#p4%G^LRGR$y%v&!%vn^LVuqeeIn&6R$}mEtbS2tHJedF^!zP*CU7(*1PbCD z-5EMJPh}e*uw_Z#I_P4lU0Lq5hBveYdm@>!E-=}(N1edZS->AR73OHg=$Wzc)>)kp zcelN%CRq}sDJ2PO_I^xPV~*>a98b+oZgAr$A7*X6D?5Hodh2x!FblXu%NQ$Sjv`BL9$v?p} zJl7YMH~Cxf4hm!pPi^+MxC?ygk+(4V>^q@rR%_n)J+t`K2S0M5khM5(kpX@&yM#s` zvSU~8IlNqL!blrSRCG-2?PPBU1l|q}{m^lwKR1hwpzNi#MQP$>9^F0T7iq)_aL8=h z;=6A$BQulrn`$ysNM>MbS@tm?t#(9g7=%jyUO#*^nqfc z`fzr%#v@`X`6?c<(`S!Li=@C{Ak&vd-E=Pq<{$w%q9i}B4La~Z zG}%cMIbgg_1iw%rh-)YaS`;p|K%$oAhhh$*-V^TPsdSn(JZ{5WS_|bQ=S#W zk(T9nb_=|P<3LA5i>kGY7orSrlti($w!%!VCZFvfEvtU0n#o8wDu-YDIKhEV8e5Jj zot!}6w4wt*?V9GR)(m?4imn#bOxfDCQFkCY<0-d3q0usv=twNl#CoxkPT(b=C6JMV zp_wj=_LmTZMqTLXq->1eGIL$w=y-0ztCyg%S)hLIrZn!e8dBfQ@4)D@8uvwfbTGAW zn4#373&n9JCxCTKrmOll^>lsbKy-k@ETrbRkrY!Gt{Img&r-#we1WTx$rJnDnu;qc2NemWJFh$mP)?P|}qdy<5;ua@t_S z=OzeuWH#B6LO#5jTwa_qnCf-}eho>d>A8kK=IQM@RM=G#dm_}7Z0P@4n{FfPo!5}; zcgZ#`oW3?Nh2L$FnC3jE^Y=LG3-P7%OBaa9E6zh6&omu-fhKo>bQ>c+5Jzprk6?@C z-hD~fZkb$jD9-QthHL3A({ot4TF%qcyX^X4=6$^zJj)b#1T{oIl(Y<%_w<}qMx5bA z(om_{ct@Pz;KQ>)L)4r4HvIfH|BIE8O`Cq56xy2q-W@Q##GZ`q_+#dE()o?6>4aYH z6|a53=d^kSzo)Xb;l^N-k=rkh(Z6VztJTN_d&4(AaJG^K&3NBXAnE>wr*8&;{|2k}Vl zL9m$c&*|ijpIRy_YqG`uh=pg!TV#jnB9D{0D>;hTpt<%9TX=sxl5y(>x-lMEo{3em z1=jvy{UDqU+>tP2i6AR_FNm}t-2rO9j`6?y}i5gy91ovY76#3 zt0l(>k!yXu&(P0iX3}@Pz~G5RMDI`Q>qK=$>iPX!sC+(#YhP@_eVY?J*jGO2y&@io zOOe<{`~H4uO?_riL3+fJri>$H#=IzBIPYA4YO9UC1csQuDQTub-|aHJ7#XjABJCZ_ z@j)4i=DkGqr>Q?1Q(U8FBw`IpAZ1}1ibQYI9k%ORhFW|VJ?lH@!|5i6mBecDV#vPU zt-XIXH?OY7!FknuN8QLVv1JPmCM@mE@OuAvQ>El)!0j^3ZL0RvTH+k*{5bmszdoNA@ zJuwtn+;cAY(XD?KP|5RhhJHRO_n{$(7W||_IecL5F27#!XZ-dtl@&PkExVX5z z@+(+z>ey#?R7$A6=PUOa-_MflHB3^^dVhcXCj2m1*+F>F7-1`(>6>vf@au*}CQFQL zE)$|J2hzzpNf%ul&&HyEEClv#+x+QxCaO9k5y}N^WXW4+UOhbjbW8OV>KHEHM;4jk z57n*c&$zTQDnY40(m+H})uzuc##E^h5gPMG=m4HlNQ9^^@5fl@qtif^|Hwl8?78BDx z?pR-OU+wqXn?!aOMSo0HpP;?a}$;%Pv*|fDLDQYE0%_&9X zD@0DEix=$SCmhXeL(AZ4n6^dw!6;SVOF*zqkeX(mYNd+dk zclFsA8DnQR=B*Z7XxD$BX;pV?X^2-xFCBuWaZxN`0(pKTncp_PDyx+fXuTrWv zpOv}MO|)*M)LX;|c_PyIP`0i7z**nQOx5RijM!5d2XBE?5G>|gH%UdKy{tvcXz% z0R^0@Ac1^;_GsNHL=K0^HU0p>9@Ip?v|-e(g7Cm+eswnT3H{!Rq!RucHX+ zj*Z3FG3QeB#E`bHR-q2}vR6<^)SwHM*UeaG z+K!>w@$ZXnPQi5r7LW#vc<4B^Jiu#_9CPr)LKVT7a{FXh4dFXN_>wBH7SP68B=ZV+TJQ+Vav- zRkD=d3^tbw{{&y7j7Gej=O99V(1EJwGvD~P9}Wl?8$(^<4no%oY^z+ZXsE-=rL>_e zGg0I&z(=hPOys_0x^GDr2fmZYr~q^LU48Ef>zm4C7sGoa^2l6jz3<-~T1 zf5o(Q2l_bo@c7!6HY^RREkPo>LS0O~3#+;LL6&Kyk9ur-5-lh~Kk7t9Q6El~(@a#R zwnQ!y1h_Y69z8pMZKiBVwQ7(S(pbvRumM+Xv?F!Dbd?6S8W^{F`6)V9s;;B*%%&3E zC{s{`VqMkMQuY;?Y4-1(eg2J}sm*|60ww+q^R3hthOH6JT1I;C&Oiowa6OmU9LLM> zs7?Mk0i;#M9@LXje2W?iU*y=2vFmw`hiz(uS)nVYc|&40dScn=XJcxg?Q4u|tk1$G zf4A$eD3mMT9uZG|t`u8X?y~%4)3&?VU!?S&P^13EjVKOLlb%$pEH_FvHQ2B)>IMZ- zHaLR?EHC9*Wj8p7ZI`@EVV@_69~y^K^xGz8i!}}zbxgS!q^)N`>#*xb)m+CrC3-EZ zV{zA}1>msRoRu=sVYxA?Di{hIVHuDR7&ohgENJU!>mfKY1p2((4fmTr7FpYV2t+e0s6Egh;bx6ZxXc*AE-%8KuW=&tEfUlJ4enz4+%F#e5!h z^{$>-vv7pD9=EKI;ICs*?4D5M)w|KWa;t3iUvE!k(r8-i@_(5I<_+%QaKh~_He#)R zws;qD`G{_^4^h-JP=2cT)4k1oXzu>aH_&qnme`A}*o!!Z`9@LwIkSGI{1wC~nt5q& zv$U;t49r0B8t&f9@@9h9K51Qhx$d8lXlhec;KQ?WzO3G1%nhH{{R(g;h;II09rgeA zdH@bO90^13|8N@Nv}Ixo?`;SU>tcU>e|`(d$Hqtn>LWtdu>%aP5XAqlH-!K08vq8T zHu!z}-OI+o3Xo71rU7(>K%IN##H#2a_7OviDUHl?XGv}BCJo1q1BlFs{Mkth88iSt z)d8%30GVpm#JTICkKLI5bJbzKd6U?RyMgMaP>K17f-L^TMjYbp=c0av3ri@Cpc62t$Z5NPb9v$N?xwC|RgDsK3zC&{5EBFt9MHFlDf;uuX8Na9MCS z@XGKl2-pa!2sMcGh%Sf+NW4fD$dJf!$S)|8C@ZM+sD7vqXryR)Xb0%n=yB*b7|a+k zn6Q`$Sj<>+*iJZzI8(UBxF>i)_=@;h_(udqgrJ0)gmXmXL}|oLBo-uHq@tutWY}au zWMkya$ZjbT)KZbQ|<@3~r3*jBbo) zOv+3(%;?O*%-YOJ|F;j+=3ae$qX1BO;VFm^c=+#rKS%)GAgIqjeSCF7ui}6*`bh7j z5C(iOrOm-!uC_cZ$#1Y=7`b(v41L%wOzF+dEkj~@!Jm!?c-(K;GlCJxzm7u+63>jY zT|fDD-)C0K05f-pf!FS`&E|ow7cKe&C=MBuZIaRLqFa_VMS)N!xQr;QtIp91omI6mH-WbV%IWAlg4fjYG?p<4xj33fmq|7#%0vlNvq_y?)DsaA z6brx>Vsp`sV4eEZqHxabey(0IM%fSW^{nJKuN-^zaF0z+^ySzvnZ%ZZ5}DVX;BDX5 ze}nJOKD0<^aI2pwMSed-5?ZbfAMgWT4f#PGZQM+jgcj$&g%}u(V_?cMOps83Q;EdG zf{1l}68HzGjE9{1{Tf?wd`?t11KVv-uLpu#@lbcfgad z!>(S0OnVYtA?f$9hQqdA1de+OU7@Y_h&#i+UPMHDV)}#bej)MqFoMIDZ}>)ga(tg!bMe{e=)iLVt*FV28KC?;j`> ziGHRw7u9xQoQ&1UMV_f@8>r&Qj`>Y_xZom@$&B~IP@~DNCQq%Je&XbTr@i`=hbEP0 zSfA(Ic*#JYr8DY5la|Ci(WOip&Y}|uNfDYUveu(1sl)w~s!6kY)1I?|6pLU{j0lk< zlh5XhPuyAaoV3kN5@v^KM%td>F=?H0GE*U#NlYH>eA=QL)0N_K>y2Kqoz-u-It%gZ zLi+7$C6;|7Jj+S#pB9yIp&LYMaMN9MIw#vn&GFCy#(`ohDM6upUO(e-Ns-q%|0yfw zH_f9E0YPI%%hE4?U0EZD0KJWWN`v+?ZzWw41$<&IAo4jS)v}mQeb5J(O}+k8pWWDs zCCThep*P=#4%AJm z4N%9`nhg8h#$L_fr)oeRdJC&Emxo?RznD;=qixVsWWNg=MO$o2k!}!tK0tPBvQxpY zx)4f;tyM*+rCwIp8J@>`XEe__S(=aM$o4x%NMdm$^s0oiSEOqk)^_8=n7A5|9R|~% zGo!4@qPn8`f`{{sjl1oi*` diff --git a/src/themes/default/assets/fonts/outline-icons.woff2 b/src/themes/default/assets/fonts/outline-icons.woff2 deleted file mode 100644 index 35cc7b3b7aca3106b44e3cf7d5784d6d329277d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12240 zcmV;>FE7w{Pew8T0RR91058x03jhEB0C>;<055$20RR9100000000000000000000 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 diff --git a/src/themes/default/assets/images/flags.png b/src/themes/default/assets/images/flags.png deleted file mode 100644 index cdd33c3bc609a91ff492fa352d835bc65de6eb9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28123 zcmX`Rby$=^_dmRVl(Y&+cXvs5N+aFUT?^E|)z zd;Ynvd*;l{HRn3#b86zWHI?yRlD`B10C?|J6h8d>f&c)_4J@?(j5Jm50|00MZFN1x zf4@&pPuJJiNaQ^NaS1>H+}+;pqo8a6P@YgwZn(Ivh2P!DNFN>^-kX~4?CzYQpq!q; z?^RTgA3i(=_}|@0T?0_Au2^}>dG=%_jx|*eczCbr>EQO3Vl`rSULKdkZDcn1BC) zqhp_#l^9>zsM+;dxm7zmINEI;-U{iK2ZA4b+{ zGWy{BNoM6LzCfCO*{!8@muPTj;|D$MOx3MnLBHBKfHq3jc%HOhlQ0z&1|$>KZ7DT0!LH)$WR#xYT?Zw*SPJ|%PnR&PlsOuqXt z*|6TA6?pYcLKwilqrav{O-((~rGm!Mkn;U5ApdT?z6GFy0ss)#tjcfiq9^x1$fREj zd0eLTY^4_s^G);a{PMyKd!%!&AE@))%)@X3|LL^y3ayy_f{Fq<3^2_9jIP-?e>97! zTT)nLGDkz@13^kl-Er_wibWd5B@ADh@+QVcXm{OzZ=G&zsKKQ7FD%Mqx7cuW{$sds zhf{j)=ut9q>XnJ)T~< zFoYX5p`j~7w0n^7S{~Pb@|Mzz(iH{p`*&WNr3oo6PWIO0&1r`>ua{jDJ4YhztUU?p zmrbNxu#3|}jzPlvmK7ToW@!K*$SzxRd5vUf?3zUvpr+Pdq8I(3bJ~BYbOORdV2bALih2o2SspWaT6;14hFNI3U1~H zp5gj#cF#&RR@L>~uYAjU8-W?{bLmS`3=RS-Cc*S0=F;XP<}=V78iN<}5<{Ki9F zPdQjoPtQ4UX)0&ohn8iJ**i8NAt4T)GbLI<`hnRz4jP;(fI$tpz}^=Q>ir2}RG>l{ z);X*)aXJs@@=}e1oqcC#r!d*PAU8uFWAD74H=?&LELq@?m_ZqzM#|@4>}UF;{&%xl zJ?Hp_29h2L%gyYfmmzML6S7ilLRHl#BlfgY%cG+zU_Se^4qs>MyhbHvd8D@Qu=IvZ&TB`bT(bNb_AN8TC%^) z=g&7?tRHIUs3a@PV7<-tm#0e8&|_4z+Y@Y5up!nh`?_iKiyr*F={!NFU*#Hkdm38_ z{-E6|nvm)~(Zlyhx2h^<7nff7t-xLJ!2ci^oi=oJ#RH~S6|H}+yA17Ili3DWLlU$yGW9Va`+w^06b zeT?yc#EqRr$N9FTEM??FSJZ@u)A;O0v(xHomY)r?*4@rm>@*gwL`@ZySPVZKcO?=| zlW&X1e2w$t+&F+|I`Tu6Nv?3QYgesx)*|F`n)zB*>$1rr>mQ=G2%Ig81qb+Sc5=Zno1!b3D?slq_eDe zvHo(xXl~A@H8k>EtgSZs-z&i-A*gKN%ImxL715V~*eH*V9<*;dX~fD-KEP;4Xe1CLTVu_NWWnJ6n91FCqOW*$K%%Tk zduC_~7Otz~oXd109g!!mLycu`;4R#Hf2L-CL#^&~Oyhk{mbjxf{Ih@V&jJoDtl`Og z4GLQO8Hi}gyC~HkgK_x%3!))6C#y~N{ia)!lTfywdBXeTkFZs*pNMeHjkl!gqXOQB zXqMb&p6n76>Qc7nTm8-i{P;Wt=4KWag&{|Jhbas?%7yFw6uX`x1v407Vxb($H)oq3 zttQj4>T>_3ozy;eEACELtaCgiEJhmNTBCQjp~w3ICm;JVjcO z0JGKy*5s6w)K`Ra5;lw3f7%fZ+o&mh2a6UEz8h(nmHY0*a*e4k0|O`Sh&np5_MJ)DPtx8-_#kPu-rI+U+S7%z+b^<7O~o+|Op--W>#x$2RO zB(f%+w4c&%#hSk)E8iJkbGAgK&mr>r`Y4l=XhbzX<1_a#52U<0x{^#di{_b)6g}l& zT@eNy++Bc>$-BeM@|+uSI|&D_LTn)+i#Vra&|2PU=#dgjQ`7vQiEQf;}MU7{R+C zGz#vi9Npt-$&-@jXZ$SvK36wpSXdZoG$y*FD5m+*cbC1{m|`YI+X;DZEMzj7%}oMz z0wT}j*_xFu>AaUBnihwIGj>yJGD7OEk73js?htB($t@zcvG-g&jHZwMm_vF?HkhR) zfkB#|&1AzZv~zljr}be*1I?C_w-R}vR>#wOm5cZ;+(#i`Ej>g}-42{u;54d_?KgY% zKgx=<{2dZ4ti-|V#|wFFin8&xq!=}4&XKt^H?QYzXRl|>8lOusH*fp%OTQeB*%nbZ zpug%DGbc4~rztb!-p$RljAG6P%IqFkIA`-a#E46YbBsP`*((|DGzmFJVzggY$8S#- zuxWxNet**w<8q4Z>Sk;FVQs2d`3~?3)rrXr*ES(w7dm) zy|J15GQ1&nY)oUt9PDqZSTZ@gJi56m29%(aj)qr9U{3Z)A!*a{Og`@P8CRB%6F3y6 z=zLU1Ir)SQ@=uYPUS4MDGm)e&P4SAPT$j<=woPYQ(I8PH-!nQ&Wd&>2`pDr|^kI>O zi)BymxJPJPRp)J`B+BO#E+*fYwIOXM7;9nWrzZ}(>qXz7J&tchB zUPmL14rsPehVuQblfFP1e?bn6uSDCE#^(;2D!f^|u@&Y1Cy-H^qA%YqcgqtPMgSJE z!t`m$|D|?Dy{?YxW$GR`t2))(U(+XE!=f+C+PL;`KBkA$3wb5nDafr{4aAv zb#KCtb$?vyj{dkF(6D`DXz|j~=v2(!rVEU4DB?PH^{>EE*)`7M?X;~Lx`mWvWPpg}Fy;}$8 z%u%EWZB5`lmG(htDa<&4Yvof3b6Nq1bO3mo!NbrR$S7D!hhZ-9jvr8Unl%vW~ZzOT7oWqh_@sBf6^)okKx3ZJ38;VZS^E(+NhwrVpdjG zYK3=oQBR4V$p_ybE{T`xBKWuKN#9~4+iwN_*w0E)`E0+2Y6uxxgt@=SoIbGvzVp~x zdT{T)mQuAa7=eh5MQ1B{!6x0ZK#c`%FO6+3^Sb)l;=qd7~Z)0QT?^mo$3_ z!meR#9haxJYuWyII&Htd&f+dhfVS<=EOYBrk)@L;3dbHcxac8{i@SmrTCC7Y8%en& z2!*i?dJDFmPfbnPGfPX+WJ?~Gtk`~ldl6j1dg{xx%%$~L>$3J0_n_4-XQE4Qn(1^M zGMK*oOZ94V2!_p?w6;n=1;Bzd{~QLB^m0IB%i34o*Tt+>3&uF?xkiKJ?LoR02H0b- zH8LDH9A+yYk#v45T9au1#4M&UsjptxYNy6mp&uzBtnF9 zkJI*+7iHXin98>x&`mdCulr()sQyefRz}xvlS3u$5`?(__H7x7sItex ze!;0y_NC3_+JvesLuXogU)9dubfa)KFL&qCOGvqSJ@S3#YiX9Sywo~GyUw%asH1Fc zh)f>1|53Usk+K3De z(+osHRYq=V8Vj3fn)~WbB8YqP;K3bBw8NYT9i6+?oief^q=gccS<4o81hC6E!`J{qyA6svFNLly^BziAq!k03ujbnj^KAB+17 zSws8wmBFhzDPnVEk=K;I|NGC_&9Zm>be zHMEbR4}N9&V8wO>5t*Ojy}98>*1i`>!omyn9j!~%Zsy=$u0bEU#||rbX+$;$BP;8Z zzC6f`#cV0}d#-v`Bl8D*b#4ZM72WH6R?^a5>6;3?DTVl%gJdPz<>MhU z!)?;+jx;X{{r6-|YNy0O5=k(t_LLK}4lK!hiEKaD(u?L=lU9m{)Fx!k#Q_hU^W$|FOsN1}Ig}zoN{~r{u5xd=TZ;xZV_6i)ZQMW|ZU!6Kl9`yo)W4 z6xsJ1I6kgZtlba(T}$3sS@Wx{aq@?Y-|}%Os9T1#LiU-4qX*ti!tD+9haUdR2cUw4}1q2Y+4kS59|WPMt8AXk5gkZ1i1W*|l2>q}=Lhr_TZ)|IGlNf9VT# z@ZB~sy@KAZKbs6Q-G9mJz2B`{7(vSIMqpC)UI(^+>XXECor^iM`q*?rTpTgSgk`Yt z%}ra#ztjT|Np0ymO9G7lF){I#V>6$ljinsSP$Y$@dmBkN3;wW5LAHwXmw=6wV_aJ*CjG1X{U_^J!!pYmW^FB2$HI*t^h;tM2k;wnaUcM2 z;&)14}EdSJaqgt~a5*mQT*4}>Y zdj;WFXuROitshX&mi;Z_EP*$)&`XGJOq2MoF)r`qC;q3kPe7uvNj%i2ioOdb;vt^-O7se`1W<*f1 z^q{S?ZWdZ;*<{#mvlqZQ`7XOC80NVq;z-=&Y(yFrDJH~8KbHn#b~N<4DC)FH@}XCq z1Plh|)hNg1kbZTxEaE`|MLn}vtmjiw2ns!X$|z@%4J2QghD#hLrl!PIBYQ*I*}%RP zI{sPwFJ^?d3f{=q*$_c!ZqR#K6 zfrdVwut*gFh{M_IiT{`oyixj7>)A z|7!>rA-w01F#@y|s#mQAcgo8jqe;=)d?>VO>i3J7d}FT0FaxO`l||EwO1=&Yp`&Bx zOMRq7{;<&&OWh!)fxR2u2uW8iZkAc$fn?KOzP}Wt3~e2ceAMlVI5{PDrvtYQ|M6PB zL_EXD@PDX~ZwXE`7qY5Mj7VZXCshYmlO`SRAJ!Nltau`RvKi2`8iMdUPAyKmh+mq$jC z5O7bpAnJb{1_sZ4TynW0Mk4=g1)z!c?7E8RdHL0oFUV@P99xHBbgP5*YKIeCH^vg9 zoaHP^b*x?#FH%cY^GATZl-WAM5C{=Cn0=B*@q^+T5}{=GyyMf~%}|icp{BQHq@r-( z6LTFdVfiQ4UF3+C<;DhO;;o{h9n1{bXt$>4wUKVdW0*~BqLR0C*c{VBTLgA7wyE^Y zC_f@!03$$NhnjSyi=PNr2h0Z+dk8mB=?vLhOz?V0pyyYtMTZ;IusD{_ggQeTaq-yh zcVyPvLeExp=B-MzoS%d<{}&d2gWRqX6!8uH^4Z9qE3D8ZP<+bg(|t^trts$USr_|j zGy2%3j9L%F>MdG%ds*Lu%%3f+2{iad-Fme< z?G|9c9owFeekpZEX!HV{Ph*SI+X4m& zPK#fDW-26qbq@o=*Q;C%&DXCJ;Z)+yYnlZ)AuE>!NUNVS%5^geLUfjEnW8pRqx3e^ zn8>fx$RH5%=S;gL4}1&*TxkQ-;WD&HGtjd&YFqt~G62JL^ObzOT#=fFJuh}9w6p4H~*-i-&{-&Pk4O_%z z<#Xwz$i_f4-gkvs6Ye^1_(xLat7>x)&*jDPgmiNcCqAr>4x77zvo*(!o&FpxR*hCe z8ttz2(tFcMO>omjGKMZo9YxzS*gyQ^T$Zh6c6YlUzWNG6>Mu^=^?fGMr?pJZBDJ8@ z!NsD8m;=h7Asp`9a>S@4*Vhy9Bwb8*e$5(MfWni%!jol>eK)5+mtqrti3Bz17^7O^ zN(f6%i^M=sB(6PmuR z(uq{tu<7Tm?@YdeWVJR&r1-8olMMvfsF0`0^v^8tv_{xCy;F5pelW8N#ji_7?tz*D%r2g<~q4oXt2) zTi+^Zf%EB>k|LwnKw0hB=>Ih=h>B4DrrQvacJN}L*G&2?0+L$Wj9#DaxkhR!X^=T*H3Tf$@ z%G!(rRxJ*7Py~9z;;4n0eC;EnM1|VFp&IH5|^t z!oM+k>H_sujT$ObyX65RL%d+mF%?njYfRICcV?h+OMm{_Dslos)6xT&>eK2LCVfT<)jD8Yq8QqzQ~tweurx2Sb29!{v=LOM~^nQ@ZG&<-V7l;VPy#f`In|RDZIjhu=>80r$oyf zM2}JKu{Yl?d0-PYJG~0#EHzv4#I}b6asBqvSUL=Us+*yPFa&}$g1R;>2L$!J5yFjtOQKoC|CyOn$uL7bZHI;CV-e}j>jnUVV}7Lef*X!O;<*~XW$i(NTkp|Tu3Eq@>p>Jn;#`O-0}>hCtZL(Ax$NJy$5DbnnwR25{hs&1}z6U6m8vTG(7M0tNOF22&{6U1W+A zm-Mfb9QM4#XkW*p`B!g6=M*tQS0coww>`rGRk7F%E5!l=$Xi}6_9icX#-@ta0!e0N zVp5nT;*wH+@=&dPftZ{?5VL>$h;XWMadGKP#lQ=sf}}$tNgL>Fzo7hc# zbaPewwz#5_H?)l)i{I$EjoVog}N zN2FdTo+iZl$c$WqM$0vRkC6EG`M-cIXiL2*zEM&TquuqNm`v+0AkQDM)(YJeRx|ND!7K+b0|3p;)f$^`Dx;wNs4+>cB*gDZk1U5 zi_!SG&W`ks!V{+@T#73w-P`FukID{>WPJV4VLq8vX$Ei+QBCbciOJAn8$q65#p1LJ zO$Jbjz&Hi^6qS1v=Ws^Rn!e43*IQHz34hUb_8Vi{qnK4RKQ5?{aJF0R48|2T5y9Vgdc140LCwUyEWRXB;PbqD zD;rjDt(>8eW5t}yH3$rgAz}!g<2riQu?kIo{3T()whelxlJJGdu!pdzmL&Ho00?Ws zTMO@#2;>v37$?u@3oMLaHIJ)IJ0PgD(kzcYeDuZs_N4EvawhQAFcXGqr}D?=+qhY-`P)=7)>#Tw7zyR zBCK`5n^bzW3*mvqaZ`8vPJ;K5V?N#D`3tpQt#vt|N+`(`isf`YH;-t28fcgne_1{M z`q4YiDJw?@Ucr5|!i&uu_nusmLLY(wzhz;BpW1^)x;*1SF9@^!lYoH72@YE5+<|z_ z5B=;4GumI;`@8qOS=$pAWdWV!$T6vp|B+706;A-|EpB9@QX{H*vHb=Gphj_c+cS3D zL3Ye~eB@&!#AbW|`6nJ7%kuebOj)mXenkmy1d}aZ2@8peadLK&Bj`j=cSePboe&CT zdP%c0=E&$mrz;>lHtG#i*YFW8=XLrBi^#w$ybK@LnGTS+fURw~dx?G|i*o1Za77(M z%d_Y3e{dFAR_ylhY@XaAyvQhufQLahu;4NcF7jtGRxnBGUu}{kuPxX|MW-}Q6CxF+ z6Jp;EsfuzBBIp_s&+5RWsLVgv4-zB|$%=wsC}4bYDM?r*en}!2RfZYKdDAOl6dcB( z+kB`gNyU`G19q4Jq?fSsvq0jV3m7m-@t<8WrvAl?u{l|x5>K~W;^X@)E}WuFhe3vR zo+wIgS3_3!&7l6|C7u6Wweh>-`|IQFI^52FPc}n$MSeg>r4+m1Z;aVCQ$zRe!}C_V zaAPaO9}j|JF42Q2DUN)1znm-HFgG)E=wCx9{ah;Mdt6ry9KPIkzd6eYN2o#k-TeaI zk#9RmOY(cLa~ZCS-yzE01zsO5YC8N_5MS3Xq-WQf&HJ&q>WUHM<6}bYD_w2Kr~q$Z z>|dU#GVEPG^a;@IhFSDa;$L#^Bb&t{hDmcWWhV87!K2oK;avjXg_dBSs6=VGXVn&J z+sKxW8OmPYWj$HC%TdPw>z2iTv~+bnj$Mt1Bbt5w`d<$0d%=Y4s%4%;fc@VUEW=&B zcaGj<;XGOfi@KfK_6G?SX=Y_RHZj>BT^BmS*L!|eXFdGd1tDA4pe-)@en|k!%(`x4 zSD07+*Y(R$-n0UwsQ}DV` z9Qg7j#gSpTI*+vW^M>t3b$#RuNHJ|2@6?T1)O9=+gkq-0bFwGubedydi^s#MGq}-{ z3P-R?IGrVH*$d1KpCoUf4#dE?`uK%w$g z@eXLPTROx!=Ja2&soW>*NpnA*G~r0QP?vp%GnSDvJbX$_65qc}1lyIbExjc=eL@yX z{wyi!Z&jp1pUL`xMy}9?g0($C3bH*FlDAOru?cD=?!D75PkjxHcfKlKGXD1h4I3Hv zI#B&+fkeV%H4<7R1T|Tfr>UP(S1+B+f3GAI@DJwDh&y`hqPj_a@5+)|1u18ye7YVR z87_(cMVOO~zu}vflUd7Izl&CoI!*k;k~-&&Ay+Qmmr2uPIk#f)gBPM?i`kwUnNQz9 zKg+H6X9{}l6B#hz3r$BCPntX&larvRcxQD#$%rv6PDvE^>)^?3Hcmr_t9{ror9ffH(ueuMZ9AbX{bfdvjB z!tz4m`89UWz71+1Cl>MIZ@m!|b6dT%>zCp>TN3}jJeh)j$K5>U>JG&+qCk|ti06oJQfp8ezw|T!(31SM*?}xq6tb;%*-A02mGwA zV2y5)3g|>xeKl=XwM|JU#n~THQsGKi53?qnDi)ZLrcQDDFziB6(V|Xhm(d4f=8PW7c@M#I{+3#4^WI=R zw4w{kQ;vI8cQlcz(+0pcdie`jZ3F)CV>icfFoJ1f|IcBh;g;k;mUIcIXPNitsIeXB z?V`2JCsU1}4yoqL%{@OW^1h@96Dj@>3ORg%S12(s$Pdt$uaB z%Vx{hf4ZD}N8($T4EnF0VhSTHL#Yo;)N!y0;fD9=3R$)$_?q?Xe<|n;YXIsv`;#so z-`ZBSwP!Cd<=Fpqdr9%8-SVh>MycoY=$^z-8i+yXE4Dww#l7eAp4ph+G$>rpvGmyJ zWmTpD*;t>ouJKRbh(UX9rMC92tUtsGwN(>No2c#|dLZJf?i=0~lRJfiYAy~7m zxmz+OefRB@LEY*Ru*6jF`FW!|P#9BW=BZJdYX9dwhnQ*|Ep)QGc4sHCM{h&=>L^W1 z3K>2iPtfg&!gSloh8(s#1~eiHGpj-id5T_|{`8mJwZ#?<^iqIHvV|O^R*{kN-XUZ- zf#`i%O>(5h{yhJj&#Upj{d#~-qN>+8?Y&jYG}M1rcS)b_XqOf(W%U+&R|W@h`TWIF z+kEQ~`2!hRzK&F%W4^Qh_{P6}IQ5mMuMY#Og04ou&{dVh~}<$a^~2D(Qbov3fu z7X=b!E!yl{enO$==2@4pmNnlkEIF$apE>jSb5g%zbrtYX`~6&Qva(GZD4b4%r+-q4 zXeMIl;re;ke9>LcE4Kk(S)9{$bcxBx+RzPH*H4#l<8BkIYGh!<@Yr0>*k!T%&+dlWiv?~Y(cbzXkod7qG{fgq z8-c6>XV_WzBQ~AChVda{T3$==9UMFGuL$31i1B+X&GFj&)XMzInw**Z;xqqj3djx+ zOMYPR%a?&f8fn!r9%qMRjJ>w<4g;;diOqoH2m(mptwDr|QO|p9`F9@npRRvTcmvai z&)B;h)U3qMvST(s+=bGy8V)8GclJK>edx0d?M1|d>BqAq|DVGN`AfWoBjZP-^!PRx zWzmE8Sq}idOMic1a}f5hrHA~Qyr9cGoK#}J7?{yb0leIsGW&EJ$HkQwXpN=@J!CU_ z_hq*0wlpt&S2F^0=Jb;6Dxj@!lS92umJ)px|F?@;Bn*k<9u9J2r@L*Jl(OvjvmaLI zY{I~{y!y*<&B(wg^=|5cp+P-}iwU!nP4D<3TfH7=f?x2Z#(?6V`63toxvSo?&e!KZ zL}tkPGLAimL$R@hu89zDZ2d^YE8ipk-ImFzZi7%ZpR6tU~f6yo?2~9Q)|jHIhJ{GKX(?w-KU@hm8NEi z@YGif0N8r7nPIXEPjM%O09f=%bqtM zDewXy86xJ|?n@G-aoRC^M8G-csazL;BdglDHxQVPyp}JW3Q8BawHtKwFIDowOd-vc z>vxZ=awJZ3302nQb5V>?m>aD?49I@H{xU{3TG`wo z2L3UyaK%%*Ce|=(aifugpQLKsS4rSblbt!jB z%U~i<*QYp)_SG2Db?G&fE_4o zpvY*RHn4UN7>$tTutdOk;2rFE+tPCisl>wI*}K<3*w;UJgD|WTFV#0an+I z{DZE{9?_HY(cIIEmPth`=M#X9oee;@`pUvotz5lGIPcC|dJfKH=tawqn z7OH5+;Jx4_HP+P~eJ2ISDC-}}W(i!vx~{)3JiMV?&;rY`e1{fElIVgLZZ`2>t_E(yO5viHoEtq4*UR1l0;hEX76GQ7u!tvjp_K&`Zz<_djj3 zBM|29>_;;vv0>g7*$=>W`OvUJL z(8f?k4E+eTX4-$P@|Q>cWT*tUP|8E^jLAHTvm$S~n;zD9QAM3)yBC9da& zr7!r$MyPotN_0r}cMseCMf=E(k&%&(>c3(xinnJuTueJa0yDOlaKr&=zh&CegG_4{&K^G`bJU;HcdIx+H0B<^95gL9nkfL!hw2dzTGF+?v_k`t4(D-WJ?ve-i^VK`XRn_ z2oOK;ozEPwmjZl&?S%|j!KcWyDuo6l|4HvA6ko)2y(lFDsJ%z~Qb?R?X^`x;WXw-b z|B9-dYS$4AbM+zc`8Xsuo~Z4_jFy zlEW($?g%OR6A(GJYq@m3=c4EVs)?fBzm|ol zrQZ>(R$?ZUz++BMIF9L?&n4_TTve-O6fH#m>xB3oz3aL|AyR+T4#EPVv%lQ(mQqi= z^AuSn2f(Ng>zRWS?nSlzii+|j&>;%2Cm8K5xT1%b51ALoR>>` zXr&hr38QLvZ}n8dGFEs^=D#H)@`6D@5Xd*S+}}Y!?UO|<8KCV6JGoqMx?-+1J4BDY zASBd`ue%~>e}VsU!u-xAVSb4A$SB~f!PBsI$|t3J;JmK=S;`4koSrlZYWl9rif zHC3wg`*#?j_S$DhfaT0f*S)0ygTeD{kiS9Dc%kGiUn{sPTz2sEYpWX?c)`D-rKYAP zKDn$@Fah3i4%49c@MrUc~irV>8ODmVJ#Z*>A=ey5?(ZBI=$=m-} zdK|$Q7Izy9EH3tMa*rBGjP6S0C%fHfLe#4zUTz%XHMF$+Y{}9=R1Z8Hd9BtOcz&HU zHBluH?RIn9`rM*}h?Q*_ZfO~&qNSP18Wgg`p0vPs-`>B`Sd1Ygt)|$TlvnC6-!IrPB37nub~mk6P!BCOd%}-G`TK9n0R3&*=eKQYh?FvZ>y*dA4KSvnu_6j2C{z_y zmQeAP6Cq(WeX>Fv9Ysca`WyEbB$44MBWm%~Uzk>^loAB`5^xxX!3(Mfq7o^{qA%5A&oTB>-OPux5KRD{(tZmD!p?#yXkrL zQe5cMk#s=;364Tx0M?e?c^ZPbsNDBWG-#tpqTmE=FPnmN(oNGuUw`p0KzsD(77NVt zTlpa^@73JDcJ{$Q#w@qeA<8>mkHP3W75IdeTmU9i&A^-e&IyS|AocQ(E($Mk^;p^ z@qb0b5Rn#U_K<_8IDl>vdy+PEZ(WyWfATisL1I=Pw9U< z&LSKMgi(D;<5r2EI|_6YwhZ9-CKn0iF5Ym8NhZ)LhlF}=I^R~S@PcpODOw7_C^e%r zB)tWEupS2RE%Ar=>4|C|7qmjUu3JalU;LJc|4&_?F_q6|Ay?OBse09C8=3bO@&$s8 zdxOU)8rQep9dOAVmC<0}8)1Zfw}VOI;pTKf5Ix})%A*C?*$EHdF%sad?XsGuH<#BK zoGB1mybf^KSK{+mBUF`?Tt=DI0j6^gTJiBxMDlDx@S_M$*%lL)K8r+KzGh?eUF4Nu zVNLl6E{rYu%UH1bn+eP#bFrr|Q4NrAdG05RZeZKz3 z_V(huWDlO{g1nqOahBl^AfI14KBR~P zDn5#?2zYa`6>Bw|?7~m2Ry%G~t6G{+X6l5ZUyf^;&z$Ffqx`ZvvQPFsb7u$a{Z+tw zfq&r_KbS%1Xq%}n#@EEg#*X3YWuTf0{$vnYw&?5U7?=GKD*^hnRC;+#emVJt+x66* z)W6sc2?^#uBZW#l$Z&W6i-9TeWV5)J=YzaA&uVb@eOS!j7rx@}h-f<)7ZAdF_~!V~ z_~k(AymJzLhc1AQQ5 zqE81+{30s&tTqJwBK`$_5rwEiB%YDkhg!Nf3a(1c?wLCFaxy!dorUTIf+RDS(Kcyp zYvfzq0^t^L2U+SWJ6+`?tO;KTK14JisqVqoZOx|+t@crgg~gv;{eNZl*tkTMh_1bt zQOBXCT10;h>RxCmyMO7P>upGOSBLrh{D{jG;iMg)}3{HlhFyb z${k#A69j+22U%XC-a?T$GoG+wJZx;IX8M99|9!?H=;vov;GX*fBY3vOLx0B4gt|Tw zJPdO_ZkdOc!D-60?#1Iz$JhcwbHje>w6-6b)_aB2ADQ$8I{05yLlw~CA?0yn znXBhXjHpS%`Rln)p$gRmmw6+ZGI{qpKx_P->NnR6aKQMH_E>jU0{OO~p7DjkQg%w- z>V2ZRx5G;zJAYjgaK!yb#za(Mr&?~oAKfV8esw{lGyVi7cXoDeOQm0EoJ zBTDZJ-$`?5VL>Pf2yvnhI!xQ<3Fba7U#kZy>&hLC%HA=enS@lMjWo}EXT%wy*8P_M z7~-=zjq@cA4$d`F?E?{~IdQQNKF4;wZ0cJr zo#vbuRbO8*nYDSAm?k+w+?BPpEiJVJ)B`%e0nrpT$IIF7Q#n7SRYF?Ag^F_asTdBK z4_oURK@1u%l?sfurJ3#)w3kI$h>aq=k{ z3h2k&e0;nF*obq*qlW-CooM1GBd9TJ-`mqD9Vx{``t;d_|N7Owpe zT+PvOPTW^g0J1Q(AbbN#Uu*IeXvxAT?oP+cqyJh}<+eER1f5nBl@Ob@a=Y($ib9QH zTgbS_%Ye@#@HioEslZ(zgaUc6Q;ltSXHaJX^$NJa(O1mjc)rPEqA zJ9ijz{Vls(RbkqsJwW_ZXZ_S9d5)1DbU@u#vXJW@{C3cJPDV#+ecA#mMfBvq5p}2+ z_Ve($df7P6}6d&2RG}hHparU+x>GCAr8Wy?GkveZnYgGrBBCkeR4LTd0C0~uCvKEaN_{Be{MgYNGJ zf$-VXpg)CHMAsOg1M;4$)CTGOSZdsRS*RNz9r|#4&%qrszA&X9VaP7th|lP3e>ar= z>64`;)a;^_e{VUFNqE2i!4J|`N$CMvr z7}+hz*2E_Wa-8}w*K6#NZN+U=N__VA_xHAcVo$tlg3hKO1Sc#(H=op=s_J;ReHe)l zB*m{Htmw=UcOuvsi^*vUuGnMDDO4Vzc#W=x3O?@0*(d~7wbSuxM*dO^#&KQAJ@=Zp z+f3K{pZLI`(W%_6rT0RCw1SpiCp|fSOVbZ?jOYf8xTGPTr`#d$apQHyfktO&9DalF znXUeyV5%!(sokiyos*yoqZ$2KMu`<3kflEr*dvxEV|c?i`x|}Rwji>w6>`|LQx>6Ab56tJK z;4-R)wEBe8!&Q@p)-ybl09lnGcJG>|h8kJse(7o-4NbiN zD!*4wry%1M+K1^T*)`V2iX#c|w*yu#rjw+(c;8)2+?owJ*u&2R ze~clL&&a5lkygx5U11fyBA|SH4ajjAp-SVHBMxJAG%y$)9I)f=60koEq)lAyaV%h?g(qt^T2tG3kQ?r4w1LWFRC9p4%|bDzDN zecfVBT1SDbuC6X1w)!bPw-Skv4vZ{wZUcXQ`q%Mr-coe*n|}))+|fexc?*ytTjTQ2 zVIPX0$(az?20|p_gutIFC%s{H49f{p?Ur52Tx6QoHrW`fH(+bfvdjP9Hiw;>j=bTt z#_WpWcc#gPLgd$&_G7!~Ypf9{Z#N)dnR-J1=@NFKggITT?ntO#gN`zd-7i6TRwR`w?Y5eqZZ%tW6 zB3}3QIv<9Fb?oo}#NO+F8Adg=L%b*W09iQrbC{T4XYF0e|NNlS6XUgBjFYBMDQIsP zzh|!duAk04qShKoTSyr_5sTh%$LRlmouL)o{AQJhzH2zDoNaoHU$T@ZnJi1u_pk-Y zai&v7#^JBflNqZNnEgbx)oT_FZJ~i&DHx{+3#0gyYH@oRIw6I05?1P=_k0J7NhRRyN7>-sdShc>j7%6A!29m(_wXcdX?c+k8^VnG+Zx8P zdp{p8q_qK9mH9U<>8d|t`EHbwffh$)+q9vDn)2N$SD^zyVR1$hMSgmd>wr-Tn0-aB z4c6ua@qe%X^vPi-Wt*1yFmHE!kSR7?2+~%`Fjj?<#DtlfhLkV|hMJVK81pG)e?=)c zImUXk9X?Wz)j6l#fU@M69^kZhwiXdkh7bRO&EaRG?>x(WXp9Oi`lZNv)uWT(qx&L? zkd-77?a&!2WKx)IVnWljr75YuCU^bxql1^XVu-eW(yP1U4{1W*st5s~($0Jl%~`Qs zGI5tFKCT$5lhwQLYuy`6R%@#TU=C-`x~_YoP+FpcrmXaVo_=3?A>Q>nMHMp@{Yf5V znYMKyMcvn+({c44*cfrswSHUdjw#C+c}a;3O%;+LB|BS#xW=4HTod}>HB!~xZPFRL zZ7Qr^P1u1Jusa`B%~c+ZQ-M^H z@u!wQQre%<9pO_fd`+@X!L2x{cUpIKMF|zLYdxz%Db4GBQLP(;!hDJhRcxU{${YW) zArvh9v~6$y|88$n7WJ=~ULff1pM&QnWDeJxi+N^hKE%YzmthDj{ z1shU8GjW9?6o2A|Q@oImQA5zrzQ6fdM2>Xvs(a_NIy)+q@XUGgMr~m$Cfal=jOrYF z;M^@u&=C|+DA$cV(>Od4yX1p$a3wod>{#!3QTQhL+7rO^+71@mg=0;D8RY*P!wF1h zXtVW`U2d}q#yiT{)o`oEIIjm`WzaXpp{^JaHhXA@PGB&P$r?r-NiUSa;0CWbE5)s| zBRa$FPvX3~@b7(4sT!HylpaHVQ=DNcGDftVgP~R^eNt`Ksk|e~$dja29@$--`Yq{WlHo3V|0)jEzKb_p-Tc!g+ zCT)We-EeP3TLX_awGva!&sp63A6<(OutH@+r7L4(k&+B)RbR z_EypiMhY9ulv#5@<1F7xedO%j9R;9V@xd07YWSyzqqt23stCkw1fLnZH*7A z%D57~5%CWcq^g&Kf1pV|3?I)9WL3p|W4>nVrOKZHTl1$Yf%7y^zPh5!iU|I5KT?V6 z(Pbz%x<(nf;{>D>9~sQ89q4MhBvW2+B|WOWu<>jmw6ye08zudo8@GyAUbB^_h)^JE`ES(!ZN-~6J(z3aQatpN2YUIM z8tik4u~fTQYx|VxSA2&Wx3_J`k+`@@qO$2Hk}MTPRVg@4t*yPBJSSr)Dcj`au-sHo z&waxzmN<34EwqR))cq{p4g@mJCr=AqUS3$ZB1WP_Hjks(xOq>gUZoDwqdy?xeXFwAEuBPfsT<@b8bt18fBMnNlUDF(z~E z#%Lq|3pd%!qS$Ok;N?B;OLNJ7bS|Zv4SOFvJ<2-XT@I^XHaJs87tB?Y?W1%`0Cr8* z$dsyJQCdfsF2Q_LQ@5rIsY6i?gVbJ_kO_TswZX>NrUS8A<#XNt!K3aZC4 z+0<4Aee3W15@?I~hcNs;#k4I<2}%{b%IPUCor!?Hfzn%HA8Hx-RVK7-!o-U98!?u0dOZ^w1gIzw!@1w*I z_q;_>gnXh-l+@HDYY@M>Q_juNz$-~#VM%Cv)N32a%E^_Lq1byQkvBIdLQ-<)!`RUn zliDM0;0_a|BNeviWuJN+SuI%t)DmM5w^JX-?kpDMrS*(M$-B%}lHfJLXUbpt7%iW~ zO4-Eu^0mLgO2~xys{JCT2WImN)twv@Q)gZ}e+3_hG%dp#t?0n0!9%XowZlV5pn|W@ zWZ^CNn+40t%0~?5bO)OXQ zelCJBOv8Qs6Egle{EyJ=PL$0=dRn=#zxUhNihKT?Gi;EQq|?*4?Nwv`L^jqqNX=4g zSAS(}xbigKs1=aGNpaM|bebuHJZ{Vis2pz^5SZd=lkL(Ye!xn9d^v19aTL;r?r3Cdt zid_R%xDHFqFm0H&9iZdr{L0#%xy_bRzyt>Og|-3dp_?MR6HT#>PqS=eXWH5~_PQf{ zJ7i+oNtskz1KV3AJ4A`?L6dB6)$ke@6jo;_Kv$w>g@52%ixHR_OK^Mhn(#nTne>#` zVX;#yCtcn1fGLnUz&v6KMjRCiu~2b$Ht+o7{D@0Axd;v1isSso&-Ye& zOmRmkB0BMbEhQsjGOrDj`k-NQrC2Z)n#Jc@P%6lmp#_c*5Osp8bLFrlnl{z{tmfsP zcz)>HT;cEoUAqxurUD9ks;ffwJzKSZWI|yTkVn zj%7JrPoB-}=3BMW#HsQRI*)6$h2`Wi>K?Q-lE(g?Kd}1?sp!7^NoE3it{rk^6v&Lv<|U4#;YBCcYrC+ZTv$ zJ6cTH3hm=*kSSVAtuR(GFmZPeA%e8bj`-)`NkW`cL|jh+BL1`;8uZP(f}C&+s|!ih z{ct}lF1x`G4--Pf16a7wX{%g?f;2v0DJ)`u0a{aSJC1Hlgf}|yV<1t|wXyLWy#}@* zu9uKu6X$XAx&T=HXSSSb7;O;ptj5e<(cixv_P>Yg?}tg+^^onVaWu}I071JtJ83q9 z#GEdi%9`m4!)uo)AtB7;jsrnWLJp3|#GSF38NCFzi6zMYimjvS;K7`%XB(iAiQhQ5CknB=WP&n)$ z5!`KRi1qh@8vWOdE+gisdy3)nH%J@Bxzf^u+~tsgp_;v42X|_@aL7u$wXNxd3h;$ubl~w8cQ(9@HZbvXwB1O znT>L69)AKdMk}<9Cb7roIj6n7?Wd#{SC>!H9qh540y8y)uR*p1<4RcDY|8$$|NkUj za}of#Xb$wa)*>RF(`Ja!kn!u?=4poUks_JwRq<>Qqv@%=G=K5O^m1~wM>5ae9y$7Gst8{!6StC`Ja@iYoPUA9`L6V1JUP=XJ) zF1|!$pCoRMZMLpDJisXq3^Zj>mIH}6$F>~Yq$;B_mcUo?@4J6h&u=rcil(SSV?wf_!)7cY2FKXK1Ho5DsU)@>cv0fQ3H+Q*3)WHy3 zi0d3LxO|}61Tt!_86qgwTJP-K@X^4I!B>(3>Rq!2b@tJu6KTkes-0 zA9Lii1vm3UlJ8Pyt`qac*kbFyd^wF#3{6j4I9_Yrjh&y(@Yj20(}M;x_UMqYd2`M_ zXSCkAtLat7NpYE&0o<~2R$$6Io?u3a8fjOKjT>Ep2A?l3 zzRAxU&t{gnQus<>@t~XVYi2U{*70TUKOo`n?a2*CvK{EBIH`7S;F9CIZd9(9sm{_k)O`$a-$;D;J3~n$Ma4S_qO3$XPQuoLR)YR>H zN`<5bvrk^GnRI{daO3!cA2iR&bv0*Ch`)7^rzzf2F4V6Nb-lPej%&^GWCojE$iLNm zcEXE$;~bgK!}&5Vv*tDTFRKgr#1Bs~pB}CGx{=C8r?j?0jP7(R&{2rzssSLpL-qMD zsSG9rrfbz433C#u0k>Yoi{1VG_h1ST%Kb+`PT##NH(rc-U0lL^eG#udW%VgDLsOKH z$KM_Tlyk$^Uhq5G&Zlg|k0UQJ?vF07uL}#$Cl%i8$oEyw;jbq%gF;cpX$EEV z0>FB(xZz1vaO7&pgvJU9xt`~KQuNtfG%PfPi>r4{yoI)~|E*9+ay*p^Yt_X)A?a!z zD)&2mVYJefr^x7hx?Nv_XwZVK$V*5QD6@7mDVG#p+t$Elz;~rbf7Of@w^aBkb47>g z2;9$7{&D}1dQGwGP_1-O{c6QIh+PZ5l_s{I;gCOQai!a z(2uWX!}nOAd!&_SQ=XC|i}((0;j83n@7B9ol)8=Kh?2pC~GCDsj zq4tu9`HW#qlQ@0&$L%z?GpmtsL!_0dEk;8zj3zFp)5@irJ0^vy&P1m3l9=K;X=sQ11-vKrknqXSxPlmMWvwF1k`?Q|T_C*Fh<4GD?; zmwz}}+0{8})_e0ig-+bKqoPJhy%)>8P`Xk(Diiw0|dzQvV zdvkPJZXfBh!8BAD1D&9ro*wlL)SRn5k-ORYaMClDUF)n3)jGGDBwJo$>o+s7!!KGp zI~^b`M-6oVv7tY9r|HlShi9nkwQnEdtAOqM9&O0!zZ=@B{7shsx`#MLAUwfRBWQsD zMEJW2VLAx;hNT=aE<|(%$Vx~+LrSaeO)tKO)hj7_3TH5#2{AAt&d2g%?-&S6A@^~y zQ5llaRG;#)R8*-pGCIfVvGy?@2D%g1XzTIDesa2OV|dSSw@To2jd*4|h#YJb($6jP z#F|DTe*DmPK>tc3gtCb?4vu?$EI6E2LU@(*9QTXeARE6;w%ckMGy=bU?O88Erxifm zD8e0+V5-VSY@T#%0oyVC<($Y;D+<&6-SxJrC#K*&YjejGi;Z}z-$2EqS+vN(j;3dy zT6Np>-$-l|yc28+|M|769^3Kju&{{y@4cIZ=@`_d7F9+WiS!zH$1|}y)*=ROIvziL z3Mu#)Yl;UjPZf+z(Zi|nDZ-LosXizGG(x2g4B4^{+<=(2y5=jOjrmGLBiaT!SDy;m z@uhIO{k4x~whBYBs1X7;$wHG4nG)vcwCwTnh=bsw>^|tlak?G<=%~4Ez8V&F>Ampb zrVE&RSS|cu*3&a5$A>u60sSt4jxb@5%rtf^qNN2juOh2Qd4l9|*9Piz16M2Lnqcdp zSzdjskjZf^n)KgCyw9HP`G5N6j)+x>A-V8NHL|O9xwn3OH*XnI(Aj-$8@m1RBOtt- zx_*%BSt^bhm4p++y~2x+RO;5;t5WA5nHxaAVrc49jO=J;tIxlEtQ{x#T#M;kN2 zUCn&~Yle%RY;VlH%HXXzBukl+e45DI6^?f5HSV z*Am2rHv>@aouDl2P5t5*F9ffoIx8?{;F%RGFKaek&b>jzG+_cHZaa zMkQ?vh6;~K6+v_i3_0EX1^1_$%fQzzJ|#nn(1p1QL&9m|>I&+t9eNUB|5OYALD`s^ z&Xy_LjY)zC180r+kDcJ5T=C@LxRG-M7zVJl7re5`p7ka6a9>&FOBCM%1K`&W*x`oT zAiPS6gu&xk|CKcBNy`#LRLtG2uiB;4d&@TwrNx$gXk;hnw3bt^trizd+W6AbnB6=) zYQKKHeY}g{BT=5qEzh}sg9or}%*}bve}$Jp zUPBOTLdJu1OGI0OhtH}j63ovNikTA?8H#tfslmS*T;}D)t7EC%6A^1Fk&*dP+tHD4 zAdZ3XS?FJ9907unQ6D?@*ONQh zt$`|!AE%&0Y{tHUP9n}EJFa(mb%c>hBH}5$EJ;44sOD=ODVcK;_G1V=16+e2^=bs) z6>rxM*vB%^$u~x(M9+hlp{X;#=n6IU|Aw%hrg(}K28R~o!v3+!G#4%G=m&R^?@AyM^Obvc9W??7Qc(rcv|VQ zbPk!x(g!}4;C`$`PtPOtSkq3z`98d%vc0o?jC=JxCJ;-qcc4Ahki(Gxb!>pz`ebg{ z%qsZ|Mb=8-`Gn5KT(FxpReE+=>1_FI`E%P%E}zYx4yGco!lGi~4?Ju3!-ZZ~iooOF zfhRPXnDK$`t_((05(;>iU;k3dYC=mwT)|3$L_-snZrW zldb#n!?$XV0JMeAH9#Rod+aIoibygYq$Y5`*IfC0WxAld!DH{2y?eEd$Q9|4E;#7c z1@Qxuc zND-BMO*qC3?&;0^oeuJLcB(N~1EyF$&mu3C#a04%DnulS*}s!0b0YQ#=CVnGc@E^W z>e?hZN^ex-uW(5IN5=2xyg|dkvT5NPnw`;`;d;^c1l)M?BOwuxsozIJSboDy(i~#W z5%X?O!(V7)S?w8DucxuCAEh>}DDD2i!NMuRRVR{QY8v5GotH_rqRQX6rG&9EB~&I>i~an(LaoUL=UarCq-X$JYw%(9JG4a2+em=It+Z< z{-_x2kvf!U`B@}j2H|w=sBp+AurPGo&xjP2#YSuhVnae}f3_6I@?EJ&rlY=L(+Zcs zw2^UH6XJ&)rw>E4zHoO7t2;9&W#w&Ftx^fphdZ-r$M}7>w=36p+pg;@iwlES*Qpm{ z?J0E)>W0`$ZS0No9z88*us(7QG0p*#&qw05)#d+3i^DGpq_W1b#+8lMB1j`n(EWq# z`19-K5S)vnwm+kl3Z*R;dX+PnBa_W%VpO5coBm^v7kD3!h4AMwa*?*=hAJ+Hvbz%cX#(^b)&+Ge3A%Oi=r@aG85x-Eo~BrRhfv7w_(NHIo?f%|I)58 zycs4eZGk;(>@imp3C8UHgd8QHknv}NwjbTjFyi`(IRu10UkEcw#KOf(-s z)||Pm#=hey%j=;UI5A+HUwOb9aR}?7;CfRK&u|QwQXR1Z@;;?2AZMa}I-1lC=H^GE z%J}^ucz13hn>3`2Zc%h_h>2lzsSn-vH1?xCav?P^1(LF99Mxyz_I)spMklv3SSEq? zOvMHws z_DT1hV43q;;9!Kg?D?a*)XtC~S=tK=<2b&efWjTj&ajXC;v-NRR!H~MHx~^5c(PYb zDJ-AZ$VMm%xAPuNa-oQeFB$h2+>;TotKp0o(reK3;sl&kAcT`I9)`>P@JC0CgV+7p z&Afz{74m%E3$jI8e5ef%rAuJjuClsm(&r(R*&;XWi%F``5Nn1X+DR^1Ke^7l4d& z97gLvTNEF^JbkCl?*=-#T4S;)jJz+9z$SSQxorRqU{apx9CtgaMs74Q&g-84@b4#qbl?Pm0R0g#gF7U1(}&RJ2k*KNb@TjB2PjENcE;Fj86 zJ2%Od@7!j&v3l_cL!ZXP1#S8Bw+e@91R+CWhk{l2gyC%E1sxx@Ij{S^zHgJG?f?^3 szvps9ukhz5h*B>3w`t1c9~9oX)@<@)c diff --git a/src/themes/default/collections/breadcrumb.overrides b/src/themes/default/collections/breadcrumb.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/collections/breadcrumb.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/collections/breadcrumb.variables b/src/themes/default/collections/breadcrumb.variables deleted file mode 100644 index a97d5b0..0000000 --- a/src/themes/default/collections/breadcrumb.variables +++ /dev/null @@ -1,33 +0,0 @@ -/******************************* - Breadcrumb -*******************************/ - -/*------------------- - Breadcrumb ---------------------*/ - -@verticalMargin: 0em; -@display: inline-block; -@verticalAlign: middle; - -@dividerSpacing: @3px; -@dividerOpacity: 0.7; -@dividerColor: @lightTextColor; - -@dividerSize: @relativeSmall; -@dividerVerticalAlign: baseline; - -@iconDividerSize: @relativeTiny; -@iconDividerVerticalAlign: baseline; - -@sectionMargin: 0em; -@sectionPadding: 0em; - -/* Coupling */ -@segmentPadding: @relativeMini @relativeMedium; - -/*------------------- - States ---------------------*/ - -@activeFontWeight: @bold; diff --git a/src/themes/default/collections/form.overrides b/src/themes/default/collections/form.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/collections/form.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/collections/form.variables b/src/themes/default/collections/form.variables deleted file mode 100644 index df04870..0000000 --- a/src/themes/default/collections/form.variables +++ /dev/null @@ -1,197 +0,0 @@ -/******************************* - Form -*******************************/ - -/*------------------- - Elements ---------------------*/ - -/* Form */ -@gutterWidth: 1em; -@rowDistance: 1em; - -/* Text */ -@paragraphMargin: @rowDistance 0em; - -/* Field */ -@fieldMargin: 0em 0em @rowDistance; - -/* Fields */ -@fieldsMargin: 0em -(@gutterWidth / 2) @rowDistance; - -/* Form Label */ -@labelDistance: @4px; -@labelMargin: 0em 0em @labelDistance 0em; -@labelFontSize: @relativeSmall; -@labelFontWeight: @bold; -@labelTextTransform: none; -@labelColor: @textColor; - -/* Input */ -@inputFont: @pageFont; -@inputWidth: 100%; -@inputFontSize: 1em; -@inputPadding: (@inputVerticalPadding + ((1em - @inputLineHeight) / 2)) @inputHorizontalPadding; -@inputBorder: 1px solid @borderColor; -@inputBorderRadius: @absoluteBorderRadius; -@inputColor: @textColor; -@inputTransition: - color @defaultDuration @defaultEasing, - border-color @defaultDuration @defaultEasing, - outline-offset @defaultDuration @defaultEasing, - outline-color @defaultDuration @defaultEasing -; -@inputBoxShadow: 0em 0em 0em 0em transparent inset; - -/* Select */ -@selectBackground: @white; -@selectBorderRadius: @inputBorderRadius; -@selectBorder: @inputBorder; -@selectPadding: 0.62em @inputHorizontalPadding; -@selectBoxShadow: @inputBoxShadow; -@selectTransition: @inputTransition; -@selectColor: @inputColor; - -/* Text Area */ -@textAreaPadding: @inputVerticalPadding @inputHorizontalPadding; -@textAreaHeight: 12em; -@textAreaResize: vertical; -@textAreaLineHeight: 1.2857; -@textAreaMinHeight: 8em; -@textAreaMaxHeight: 24em; -@textAreaBackground: @inputBackground; -@textAreaBorder: @inputBorder; -@textAreaFontSize: @inputFontSize; -@textAreaTransition: @inputTransition; - -/* Checkbox */ -@checkboxVerticalAlign: top; -@checkboxLabelFontSize: 1em; -@checkboxLabelTextTransform: @labelTextTransform; - -/* Inline Validation Prompt */ -@promptBackground: @white; -@promptBorderColor: @formErrorBorder; -@promptBorder: 1px solid @promptBorderColor; -@promptTextColor: @formErrorColor; -@inlinePromptMargin: -0.25em 0em -0.5em 0.5em; -@inlinePromptBorderWidth: 1px; - -/*------------------- - States ---------------------*/ - -/* Focus */ -@inputFocusPointerSize: 0px; - -/* Input Focus */ -@inputFocusBackground: @inputBackground; -@inputFocusBorderColor: @focusedFormBorderColor; -@inputFocusColor: @selectedTextColor; -@inputFocusBoxShadow: @inputFocusPointerSize 0em 0em 0em @selectedBorderColor inset; -@inputFocusBorderRadius: @inputBorderRadius; - -/* Text Area Focus */ -@textAreaFocusBackground: @inputFocusBackground; -@textAreaFocusBorderColor: @inputFocusBorderColor; -@textAreaFocusColor: @inputFocusColor; -@textAreaFocusBoxShadow: @inputFocusBoxShadow; -@textAreaFocusBorderRadius: @inputFocusBorderRadius; - -/* Disabled */ -@disabledLabelOpacity: @disabledOpacity; - -/* Errored Input */ -@formErrorColor: @negativeTextColor; -@formErrorBorder: @negativeBorderColor; -@formErrorBackground: @negativeBackgroundColor; - -/* AutoFill */ -@inputAutoFillBackground: #FFFFF0; -@inputAutoFillBorder: #E5DFA1; -@inputAutoFillFocusBackground: @inputAutoFillBackground; -@inputAutoFillFocusBorder: #D5C315; -@inputAutoFillErrorBackground: #FFFAF0; -@inputAutoFillErrorBorder: #E0B4B4; - - -/* Input Error */ -@inputErrorBorderRadius: ''; -@inputErrorBoxShadow: none; - -/* Dropdown Error */ -@dropdownErrorHoverBackground: #FBE7E7; -@dropdownErrorSelectedBackground: @dropdownErrorHoverBackground; -@dropdownErrorActiveBackground: #FDCFCF; -@dropdownErrorLabelBackground: #EACBCB; -@dropdownErrorLabelColor: @errorTextColor; - -/* Focused Error */ -@inputErrorFocusBackground: @negativeBackgroundColor; -@inputErrorFocusColor: @negativeTextColor; -@inputErrorFocusBorder: @negativeBorderColor; -@inputErrorFocusBoxShadow: none; - -/* Placeholder Error */ -@inputErrorPlaceholderColor: lighten(@formErrorColor, 40); -@inputErrorPlaceholderFocusColor: lighten(@formErrorColor, 30); - -/* Loading Dimmer */ -@loaderDimmerColor: rgba(255, 255, 255, 0.8); -@loaderDimmerZIndex: 100; - -/* Loading Spinner */ -@loaderSize: 3em; -@loaderLineZIndex: 101; - -/*------------------- - Types ---------------------*/ - -/* Required */ -@requiredContent: '*'; -@requiredColor: @negativeColor; -@requiredVerticalOffset: -0.2em; -@requiredDistance: 0.2em; -@requiredMargin: @requiredVerticalOffset 0em 0em @requiredDistance; - -/* Inverted */ -@invertedInputBackground: @inputBackground; -@invertedInputBorderColor: @whiteBorderColor; -@invertedInputBoxShadow: @inputBoxShadow; -@invertedInputColor: @inputColor; -@invertedLabelColor: @invertedTextColor; -@invertedInputBoxShadow: none; - -/*------------------- - Variations ---------------------*/ - -/* Grouped Fields */ -@groupedMargin: @fieldMargin; -@groupedFieldMargin: 0.5em 0em; - -@groupedLabelDistance: @labelDistance; -@groupedLabelColor: @labelColor; -@groupedLabelMargin: @labelMargin; -@groupedLabelFontSize: @labelFontSize; -@groupedLabelFontWeight: @labelFontWeight; -@groupedLabelTextTransform: @labelTextTransform; - - -/* Inline */ -@inlineInputSize: @relativeMedium; - -@inlineLabelDistance: @relativeTiny; -@inlineLabelColor: @labelColor; -@inlineLabelFontSize: @labelFontSize; -@inlineLabelFontWeight: @labelFontWeight; -@inlineLabelTextTransform: @labelTextTransform; - -@groupedInlineLabelMargin: 0.035714em 1em 0em 0em; - -/*------------------- - Groups ---------------------*/ - -@inlineFieldsMargin: 0em 1em 0em 0em; diff --git a/src/themes/default/collections/grid.overrides b/src/themes/default/collections/grid.overrides deleted file mode 100644 index 0e06821..0000000 --- a/src/themes/default/collections/grid.overrides +++ /dev/null @@ -1,4 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - diff --git a/src/themes/default/collections/grid.variables b/src/themes/default/collections/grid.variables deleted file mode 100644 index cdf5956..0000000 --- a/src/themes/default/collections/grid.variables +++ /dev/null @@ -1,103 +0,0 @@ -/******************************* - Grid -*******************************/ - -/* Inherited From Site */ - -// @mobileBreakpoint -// @tabletBreakpoint -// @computerBreakpoint -// @largeMonitorBreakpoint -// @widescreenMonitorBreakpoint - -/******************************* - Grid -*******************************/ - -@minWidth: 320px; - -@gutterWidth: 2rem; -@rowSpacing: 2rem; - -@tableWidth: ~"calc(100% + "@gutterWidth~")"; -@columnMaxImageWidth: 100%; - -@consecutiveGridDistance: (@rowSpacing / 2); - -/******************************* - Variations -*******************************/ - -/*-------------- - Relaxed ----------------*/ - -@relaxedGutterWidth: 3rem; -@veryRelaxedGutterWidth: 5rem; - -/*-------------- - Divided ----------------*/ - -@dividedBorder: -1px 0px 0px 0px @borderColor; -@verticallyDividedBorder: 0px -1px 0px 0px @borderColor; - -@dividedInvertedBorder: -1px 0px 0px 0px @whiteBorderColor; -@verticallyDividedInvertedBorder: 0px -1px 0px 0px @whiteBorderColor; - -/*-------------- - Celled ----------------*/ - -@celledMargin: 1em 0em; -@celledWidth: 1px; -@celledBorderColor: @solidBorderColor; - -@celledPadding: 1em; -@celledRelaxedPadding: 1.5em; -@celledVeryRelaxedPadding: 2em; - -@celledGridDivider: 0px 0px 0px @celledWidth @celledBorderColor; -@celledRowDivider: 0px (-@celledWidth) 0px 0px @celledBorderColor; -@celledColumnDivider: (-@celledWidth) 0px 0px 0px @celledBorderColor; - - -/*-------------- - Stackable ----------------*/ - -@stackableRowSpacing: @rowSpacing; -@stackableGutter: @gutterWidth; -@stackableMobileBorder: 1px solid @borderColor; -@stackableInvertedMobileBorder: 1px solid @whiteBorderColor; - - -/******************************* - Legacy -*******************************/ - -/*-------------- - Page ----------------*/ - -/* Legacy (DO NOT USE) - */ -@mobileWidth: auto; -@mobileMargin: 0em; -@mobileGutter: 0em; - -@tabletWidth: auto; -@tabletMargin: 0em; -@tabletGutter: 2em; - -@computerWidth: auto; -@computerMargin: 0em; -@computerGutter: 3%; - -@largeMonitorWidth: auto; -@largeMonitorMargin: 0em; -@largeMonitorGutter: 15%; - -@widescreenMonitorWidth: auto; -@widescreenMargin: 0em; -@widescreenMonitorGutter: 23%; \ No newline at end of file diff --git a/src/themes/default/collections/menu.overrides b/src/themes/default/collections/menu.overrides deleted file mode 100644 index de7d2a1..0000000 --- a/src/themes/default/collections/menu.overrides +++ /dev/null @@ -1,7 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - -.ui.vertical.menu { - backdrop-filter: blur(10px); -} diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables deleted file mode 100644 index 06c1560..0000000 --- a/src/themes/default/collections/menu.variables +++ /dev/null @@ -1,458 +0,0 @@ -/******************************* - Menu -*******************************/ - -/*------------------- - Collection ---------------------*/ - -/* Menu */ -@verticalMargin: @medium; -@horizontalMargin: 0em; -@margin: @verticalMargin @horizontalMargin; -@background: @white; -@fontFamily: @pageFont; -@itemBackground: none; -@fontWeight: @normal; -@borderWidth: 1px; -@border: @borderWidth solid @borderColor; -@boxShadow: @subtleShadow; -@borderRadius: @defaultBorderRadius; -@minHeight: (@itemVerticalPadding * 2) + 1em; - -/* Menu Item */ -@itemVerticalPadding: @relativeSmall; -@itemHorizontalPadding: @relativeLarge; -@itemTextTransform: none; -@itemTransition: - background @defaultDuration @defaultEasing, - box-shadow @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing -; -@itemFontWeight: @normal; -@itemTextColor: @textColor; - -/* Divider */ -@dividerSize: 1px; -@dividerBackground: @internalBorderColor; - -/* Sub Menu */ -@subMenuDistance: 0.5em; -@subMenuMargin: @subMenuDistance -@itemHorizontalPadding 0em; -@subMenuFontSize: @relativeTiny; -@subMenuTextColor: rgba(0, 0, 0, 0.5); - -@subMenuIndent: 0em; -@subMenuHorizontalPadding: (@itemHorizontalPadding / @tinySize) + @subMenuIndent; -@subMenuVerticalPadding: 0.5em; - -/* Text Item */ -@textLineHeight: 1.3; - -/*-------------- - Elements ----------------*/ - -/* Icon */ -@iconFloat: none; -@iconMargin: 0em @relative5px 0em 0em; -@iconOpacity: 0.9; - -/* Dropdown Icon */ -@dropdownIconFloat: right; -@dropdownIconDistance: 1em; - -/* Header */ -@headerBackground: ''; -@headerWeight: @bold; -@headerTextTransform: @normal; - -/* Vertical Icon */ -@verticalIconFloat: right; -@verticalIconMargin: 0em 0em 0em 0.5em; - -/* Vertical Header */ -@verticalHeaderMargin: 0em 0em 0.5em; -@verticalHeaderFontSize: @relativeMedium; -@verticalHeaderFontWeight: @bold; - -/* Pointing Arrow */ -@arrowSize: @relative8px; -@arrowBorderWidth: 1px; -@arrowBorder: @arrowBorderWidth solid @solidBorderColor; -@arrowTransition: background @defaultDuration @defaultEasing; -@arrowZIndex: 2; - -@arrowHoverColor: #F2F2F2; -@arrowActiveColor: @arrowHoverColor; -@arrowActiveHoverColor: @arrowActiveColor; - -@arrowVerticalHoverColor: @arrowHoverColor; -@arrowVerticalActiveColor: @arrowActiveColor; -@arrowVerticalSubMenuColor: @white; - -/*-------------- - Couplings ----------------*/ - -/* Button */ -@buttonSize: @relativeMedium; -@buttonOffset: 0em; -@buttonMargin: -0.5em 0em; -@buttonVerticalPadding: @relativeMini; - -/* Input */ -@inputSize: @relativeMedium; -@inputVerticalMargin: -0.5em; -@inputOffset: 0em; -@inputVerticalPadding: @relative8px; - -/* Image */ -@imageMargin: -0.3em 0em; -@imageWidth: 2.5em; -@verticalImageWidth: auto; - -/* Label */ -@labelOffset: -0.15em; -@labelBackground: #999999; -@labelTextColor: @white; - -@labelTextMargin: 1em; -@labelVerticalPadding: 0.3em; -@labelHorizontalPadding: @relativeMini; - -@labelAndIconFloat: none; -@labelAndIconMargin: 0em 0.5em 0em 0em; - -/* Dropdown in Menu */ -@dropdownMenuBoxShadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - -@dropdownBackground: @white; -@dropdownMenuDistance: 0em; -@dropdownMenuBorderRadius: @borderRadius; - -@dropdownItemFontSize: @relativeMedium; -@dropdownItemPadding: @relativeMini @relativeLarge; -@dropdownItemBackground: transparent; -@dropdownItemColor: @textColor; -@dropdownItemTextTransform: none; -@dropdownItemFontWeight: @normal; -@dropdownItemBoxShadow: none; -@dropdownItemTransition: none; - -@dropdownItemIconFloat: none; -@dropdownItemIconFontSize: @relativeMedium; -@dropdownItemIconMargin: 0em 0.75em 0em 0em; - -@dropdownHoveredItemBackground: @transparentBlack; -@dropdownHoveredItemColor: @selectedTextColor; - -/* Dropdown Variations */ -@dropdownVerticalMenuBoxShadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); -@secondaryDropdownMenuDistance: @relative5px; -@pointingDropdownMenuDistance: 0.75em; -@invertedSelectionDropdownColor: @invertedTextColor; - -/*-------------- - States ----------------*/ - -/* Hovered Item */ -@hoverItemBackground: @subtleTransparentBlack; -@hoverItemTextColor: @selectedTextColor; - -/* Pressed Item */ -@pressedItemBackground: @subtleTransparentBlack; -@pressedItemTextColor: @hoverItemTextColor; - - -/* Active Item */ -@activeItemBackground: @transparentBlack; -@activeItemTextColor: @selectedTextColor; -@activeItemFontWeight: @normal; -@activeIconOpacity: 1; -@activeItemBoxShadow: none; - -/* Active Hovered Item */ -@activeHoverItemBackground: @transparentBlack; -@activeHoverItemColor: @selectedTextColor; - -/* Selected Dropdown */ -@dropdownSelectedItemBackground: @transparentBlack; -@dropdownSelectedItemColor: @selectedTextColor; - -/* Active Dropdown */ -@dropdownActiveItemBackground: @subtleTransparentBlack; -@dropdownActiveItemColor: @selectedTextColor; -@dropdownActiveItemFontWeight: @bold; - -/* Active Sub Menu */ -@subMenuActiveBackground: transparent; -@subMenuActiveTextColor: @activeItemTextColor; -@subMenuActiveFontWeight: @bold; - - -/*-------------- - Types ----------------*/ - -/* Vertical */ -@verticalBoxShadow: @boxShadow; -@verticalPointerWidth: 2px; -@verticalBackground: fade(@white, 70%); -@verticalItemBackground: none; -@verticalDividerBackground: @dividerBackground; - -@verticalActiveBoxShadow: none; - - -/* Secondary */ -@secondaryBackground: none; -@secondaryMargin: 0em -@secondaryItemSpacing; -@secondaryItemBackground: none; -@secondaryItemSpacing: @relative5px; -@secondaryItemMargin: 0em @secondaryItemSpacing; -@secondaryItemVerticalPadding: @relativeMini; -@secondaryItemHorizontalPadding: @relativeSmall; -@secondaryItemPadding: @relativeMini @relativeSmall; -@secondaryItemBorderRadius: @defaultBorderRadius; -@secondaryItemTransition: color @defaultDuration @defaultEasing; -@secondaryItemColor: @unselectedTextColor; - -@secondaryHoverItemBackground: @transparentBlack; -@secondaryHoverItemColor: @selectedTextColor; - -@secondaryActiveItemBackground: @transparentBlack; -@secondaryActiveItemColor: @selectedTextColor; -@secondaryActiveHoverItemBackground: @transparentBlack; -@secondaryActiveHoverItemColor: @selectedTextColor; - -@secondaryActiveHoveredItemBackground: @transparentBlack; -@secondaryActiveHoveredItemColor: @selectedTextColor; - -@secondaryHeaderBackground: none transparent; -@secondaryHeaderBorder: none; - -@secondaryItemVerticalSpacing: @secondaryItemSpacing; -@secondaryVerticalItemMargin: 0em 0em @secondaryItemVerticalSpacing; -@secondaryVerticalItemBorderRadius: @defaultBorderRadius; - -@secondaryMenuSubMenuMargin: 0em -@secondaryItemHorizontalPadding; -@secondaryMenuSubMenuItemMargin: 0em; -@secondarySubMenuHorizontalPadding: (@itemHorizontalPadding / @tinySize) + @subMenuIndent; -@secondaryMenuSubMenuItemPadding: @relative7px @secondarySubMenuHorizontalPadding; - -/* Pointing */ -@secondaryPointingBorderWidth: 2px; -@secondaryPointingBorderColor: @borderColor; -@secondaryPointingItemVerticalPadding: @relativeTiny; -@secondaryPointingItemHorizontalPadding: @relativeLarge; - -@secondaryPointingHoverTextColor: @textColor; - -@secondaryPointingActiveBorderColor: @black; -@secondaryPointingActiveTextColor: @selectedTextColor; -@secondaryPointingActiveFontWeight: @bold; - -@secondaryPointingActiveDropdownBorderColor: transparent; - -@secondaryPointingActiveHoverBorderColor: @secondaryPointingActiveBorderColor; -@secondaryPointingActiveHoverTextColor: @secondaryPointingActiveTextColor; - -@secondaryPointingHeaderColor: @darkTextColor; -@secondaryVerticalPointingItemMargin: 0em -@secondaryPointingBorderWidth 0em 0em; - - -/* Inverted Secondary */ -@secondaryInvertedColor: @invertedLightTextColor; - -@secondaryInvertedHoverBackground: @transparentWhite; -@secondaryInvertedHoverColor: @invertedSelectedTextColor; - -@secondaryInvertedActiveBackground: @strongTransparentWhite; -@secondaryInvertedActiveColor: @invertedSelectedTextColor; - -/* Inverted Pointing */ -@secondaryPointingInvertedBorderColor: @whiteBorderColor; -@secondaryPointingInvertedItemTextColor: @invertedTextColor; -@secondaryPointingInvertedItemHeaderColor: @white; -@secondaryPointingInvertedItemHoverTextColor: @selectedTextColor; -@secondaryPointingInvertedActiveBorderColor: @white; -@secondaryPointingInvertedActiveColor: @invertedSelectedTextColor; - - -/* Tiered */ -@tieredActiveItemBackground: #FCFCFC; -@tieredActiveMenuBackground: #FCFCFC; - -@tieredSubMenuTextTransform: @normal; -@tieredSubMenuFontWeight: @normal; - -@tieredSubMenuColor: @lightTextColor; - -@tieredSubMenuHoverBackground: none transparent; -@tieredSubMenuHoverColor: @hoveredTextColor; - -@tieredSubMenuActiveBackground: none transparent; -@tieredSubMenuActiveColor: @selectedTextColor; - -@tieredInvertedSubMenuBackground: rgba(0, 0, 0, 0.2); - - -/* Icon */ -@iconMenuTextAlign: center; -@iconMenuItemColor: @black; -@iconMenuInvertedItemColor: @white; - - -/* Tabular */ -@tabularBorderColor: @borderColor; -@tabularBackgroundColor: transparent; -@tabularBackground: none @tabularBackgroundColor; -@tabularBorderWidth: 1px; -@tabularOppositeBorderWidth: @tabularBorderWidth + 1px; -@tabularVerticalPadding: @itemVerticalPadding; -@tabularHorizontalPadding: @relativeHuge; -@tabularBorderRadius: @defaultBorderRadius; -@tabularTextColor: @itemTextColor; - -@tabularHoveredTextColor: @hoveredTextColor; - -@tabularVerticalBackground: none @tabularBackgroundColor; - -@tabularFluidOffset: 1px; -@tabularFluidWidth: calc(100% + (@tabularFluidOffset * 2)); - -@tabularActiveBackground: none @white; -@tabularActiveColor: @selectedTextColor; -@tabularActiveBoxShadow: none; -@tabularActiveWeight: @bold; - - - -/* Pagination */ -@paginationMinWidth: 3em; -@paginationActiveBackground: @transparentBlack; -@paginationActiveTextColor: @selectedTextColor; - -/* Labeled Icon */ -@labeledIconItemHorizontalPadding: @relativeMassive; -@labeledIconSize: @relativeMassive; -@labeledIconMinWidth: 6em; -@labeledIconTextMargin: 0.5rem; - - -/* Text */ -@textMenuItemSpacing: @relative7px; -@textMenuMargin: @relativeMedium -(@textMenuItemSpacing); -@textMenuItemColor: @mutedTextColor; -@textMenuItemFontWeight: @normal; -@textMenuItemMargin: 0em 0em; -@textMenuItemPadding: @relative5px @textMenuItemSpacing; -@textMenuItemTransition: opacity @defaultDuration @defaultEasing; - -@textMenuSubMenuMargin: 0em; -@textMenuSubMenuItemMargin: 0em; -@textMenuSubMenuItemPadding: @relative7px 0em; - -@textMenuActiveItemFontWeight: @normal; -@textMenuActiveItemColor: @selectedTextColor; - -@textMenuHeaderSize: @relativeSmall; -@textMenuHeaderColor: @darkTextColor; -@textMenuHeaderFontWeight: @bold; -@textMenuHeaderTextTransform: uppercase; - -@textVerticalMenuMargin: @relativeMedium 0em; -@textVerticalMenuHeaderMargin: @relative8px 0em @relative10px; -@textVerticalMenuItemMargin: @relative8px 0em; - -@textVerticalMenuIconFloat: none; -@textVerticalMenuIconMargin: @iconMargin; - - -/*-------------- - Variations ----------------*/ - -/* Inverted */ -@invertedBackground: @black; -@invertedBoxShadow: none; -@invertedBorder: 0px solid transparent; -@invertedHeaderBackground: transparent; - -@invertedItemBackground: transparent; -@invertedItemTextColor: @invertedTextColor; - -/* Inverted Sub Menu */ -@invertedSubMenuBackground: transparent; -@invertedSubMenuColor: @invertedUnselectedTextColor; - -/* Inverted Hover */ -@invertedHoverBackground: @transparentWhite; -@invertedHoverColor: @invertedSelectedTextColor; - -@invertedSubMenuHoverBackground: transparent; -@invertedSubMenuHoverColor: @invertedSelectedTextColor; - -/* Pressed */ -@invertedMenuPressedBackground: @transparentWhite; -@invertedMenuPressedColor: @invertedSelectedTextColor; - -/* Inverted Active */ -@invertedActiveBackground: @strongTransparentWhite; -@invertedActiveColor: @invertedSelectedTextColor; -@invertedArrowActiveColor: #3D3E3F; - -/* Inverted Active Hover */ -@invertedActiveHoverBackground: @invertedActiveBackground; -@invertedActiveHoverColor: @white; -@invertedArrowActiveHoverColor: @invertedArrowActiveColor; - -@invertedSubMenuActiveBackground: transparent; -@invertedSubMenuActiveColor: @white; - -/* Inverted Menu Divider */ -@invertedDividerBackground: rgba(255, 255, 255, 0.08); -@invertedVerticalDividerBackground: @invertedDividerBackground; - -/* Inverted Colored */ -@invertedColoredDividerBackground: @dividerBackground; -@invertedColoredActiveBackground: @strongTransparentBlack; - -/* Fixed */ -@fixedPrecedingGridMargin: 2.75rem; - -/* Floated */ -@floatedDistance: 0.5rem; - -/* Attached */ -@attachedTopOffset: 0px; -@attachedBottomOffset: 0px; -@attachedHorizontalOffset: -@borderWidth; -@attachedWidth: calc(100% - (@attachedHorizontalOffset * 2)); -@attachedBoxShadow: none; -@attachedBorder: @borderWidth solid @solidBorderColor; -@attachedBottomBoxShadow: - @boxShadow, - @attachedBoxShadow -; - -/* Resize large sizes */ -@mini: @11px; -@tiny: @12px; -@small: @13px; -@large: @15px; -@big: @16px; -@huge: @17px; -@massive: @18px; - -/* Sizes */ -@miniWidth: 9rem; -@tinyWidth: 11rem; -@smallWidth: 13rem; -@mediumWidth: 15rem; -@largeWidth: 18rem; -@bigWidth: 20rem; -@hugeWidth: 22rem; -@massiveWidth: 25rem; diff --git a/src/themes/default/collections/message.overrides b/src/themes/default/collections/message.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/collections/message.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/collections/message.variables b/src/themes/default/collections/message.variables deleted file mode 100644 index df26776..0000000 --- a/src/themes/default/collections/message.variables +++ /dev/null @@ -1,158 +0,0 @@ -/******************************* - Message -*******************************/ - -// @textColor - -/*------------------- - Elements ---------------------*/ - -@verticalMargin: 1em; -@verticalPadding: 1em; -@horizontalPadding: 1.5em; -@padding: @verticalPadding @horizontalPadding; -@background: @darkWhite; -@lineHeightOffset: ((@lineHeight - 1em) / 2); - -@borderRadius: @defaultBorderRadius; -@borderWidth: 1px; -@borderShadow: 0px 0px 0px @borderWidth @strongBorderColor inset; -@shadowShadow: 0px 0px 0px 0px rgba(0, 0, 0, 0); -@boxShadow: - @borderShadow, - @shadowShadow -; - -@transition: - opacity @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing, - background @defaultDuration @defaultEasing, - box-shadow @defaultDuration @defaultEasing -; - -/* Header */ -@headerFontSize: @relativeLarge; -@headerFontWeight: @bold; -@headerDisplay: block; -@headerDistance: 0rem; -@headerMargin: -@headerLineHeightOffset 0em @headerDistance 0em; -@headerParagraphDistance: 0.25em; - -/* Paragraph */ -@messageTextOpacity: 0.85; -@messageParagraphMargin: 0.75em; - -/* List */ -@listOpacity: 0.85; -@listStylePosition: inside; -@listMargin: 0.5em; -@listItemIndent: 1em; -@listItemMargin: 0.3em; - -/* Icon */ -@iconDistance: 0.6em; - -/* Close Icon */ -@closeTopDistance: @verticalPadding - @lineHeightOffset; -@closeRightDistance: 0.5em; -@closeOpacity: 0.7; -@closeTransition: opacity @defaultDuration @defaultEasing; - - -/*------------------- - Types ---------------------*/ - -/* Icon Message */ -@iconSize: 3em; -@iconOpacity: 0.8; -@iconContentDistance: 0rem; -@iconVerticalAlign: middle; - -/* Attached */ -@attachedXOffset: -1px; -@attachedYOffset: -1px; -@attachedBoxShadow: 0em 0em 0em @borderWidth @borderColor inset; -@attachedBottomBoxShadow: - @attachedBoxShadow, - @subtleShadow -; - -/* Floating */ -@floatingBoxShadow: - @borderShadow, - @floatingShadow -; - -/* Colors */ -@redBoxShadow: - 0px 0px 0px @borderWidth @redBorderColor inset, - @shadowShadow -; -@orangeBoxShadow: - 0px 0px 0px @borderWidth @orangeBorderColor inset, - @shadowShadow -; -@yellowBoxShadow: - 0px 0px 0px @borderWidth @yellowBorderColor inset, - @shadowShadow -; -@oliveBoxShadow: - 0px 0px 0px @borderWidth @oliveBorderColor inset, - @shadowShadow -; -@greenBoxShadow: - 0px 0px 0px @borderWidth @greenBorderColor inset, - @shadowShadow -; -@tealBoxShadow: - 0px 0px 0px @borderWidth @tealBorderColor inset, - @shadowShadow -; -@blueBoxShadow: - 0px 0px 0px @borderWidth @blueBorderColor inset, - @shadowShadow -; -@violetBoxShadow: - 0px 0px 0px @borderWidth @violetBorderColor inset, - @shadowShadow -; -@purpleBoxShadow: - 0px 0px 0px @borderWidth @purpleBorderColor inset, - @shadowShadow -; -@pinkBoxShadow: - 0px 0px 0px @borderWidth @pinkBorderColor inset, - @shadowShadow -; -@brownBoxShadow: - 0px 0px 0px @borderWidth @brownBorderColor inset, - @shadowShadow -; - -/* Warning / Positive / Negative / Info */ -@positiveBoxShadow: - 0px 0px 0px @borderWidth @positiveBorderColor inset, - @shadowShadow -; -@negativeBoxShadow: - 0px 0px 0px @borderWidth @negativeBorderColor inset, - @shadowShadow -; -@infoBoxShadow: - 0px 0px 0px @borderWidth @infoBorderColor inset, - @shadowShadow -; -@warningBoxShadow: - 0px 0px 0px @borderWidth @warningBorderColor inset, - @shadowShadow -; -@errorBoxShadow: - 0px 0px 0px @borderWidth @errorBorderColor inset, - @shadowShadow -; -@successBoxShadow: - 0px 0px 0px @borderWidth @successBorderColor inset, - @shadowShadow -; diff --git a/src/themes/default/collections/table.overrides b/src/themes/default/collections/table.overrides deleted file mode 100644 index e69de29..0000000 diff --git a/src/themes/default/collections/table.variables b/src/themes/default/collections/table.variables deleted file mode 100644 index 420986d..0000000 --- a/src/themes/default/collections/table.variables +++ /dev/null @@ -1,247 +0,0 @@ -/******************************* - Table -*******************************/ - -/*------------------- - Element ---------------------*/ - -@verticalMargin: 1em; -@horizontalMargin: 0em; -@margin: @verticalMargin @horizontalMargin; -@borderCollapse: separate; -@borderSpacing: 0px; -@borderRadius: @defaultBorderRadius; -@transition: - background @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing -; -@background: @white; -@color: @textColor; -@borderWidth: 1px; -@border: @borderWidth solid @borderColor; -@boxShadow: none; -@textAlign: left; - -/*-------------- - Parts ----------------*/ - -/* Table Row */ -@rowBorder: 1px solid @internalBorderColor; - -/* Table Cell */ -@cellVerticalPadding: @relativeMini; -@cellHorizontalPadding: @relativeMini; -@cellVerticalAlign: inherit; -@cellTextAlign: inherit; -@cellBorder: 1px solid @internalBorderColor; - -/* Table Header */ -@headerBorder: 1px solid @internalBorderColor; -@headerDivider: none; -@headerBackground: @offWhite; -@headerAlign: inherit; -@headerVerticalAlign: inherit; -@headerColor: @textColor; -@headerVerticalPadding: @relativeSmall; -@headerHorizontalPadding: @cellHorizontalPadding; -@headerFontStyle: none; -@headerFontWeight: @bold; -@headerTextTransform: none; -@headerBoxShadow: none; - -/* Table Footer */ -@footerBoxShadow: none; -@footerBorder: 1px solid @borderColor; -@footerDivider: none; -@footerBackground: @offWhite; -@footerAlign: inherit; -@footerVerticalAlign: middle; -@footerColor: @textColor; -@footerVerticalPadding: @cellVerticalPadding; -@footerHorizontalPadding: @cellHorizontalPadding; -@footerFontStyle: @normal; -@footerFontWeight: @normal; -@footerTextTransform: none; - -/* Responsive Size */ -@responsiveHeaderDisplay: block; -@responsiveFooterDisplay: block; -@responsiveRowVerticalPadding: 1em; -@responsiveRowBoxShadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; -@responsiveCellVerticalPadding: 0.25em; -@responsiveCellHorizontalPadding: 0.75em; -@responsiveCellBoxShadow: none !important; -@responsiveCellHeaderFontWeight: @bold; - -/*------------------- - Types ---------------------*/ - -/* Definition */ -@definitionPageBackground: @white; - -@definitionHeaderBackground: transparent; -@definitionHeaderColor: @unselectedTextColor; -@definitionHeaderFontWeight: @normal; - -@definitionFooterBackground: @definitionHeaderBackground; -@definitionFooterColor: @definitionHeaderColor; -@definitionFooterFontWeight: @definitionHeaderFontWeight; - -@definitionColumnBackground: @subtleTransparentBlack; -@definitionColumnFontWeight: @bold; -@definitionColumnColor: @selectedTextColor; -@definitionColumnFontSize: @relativeMedium; -@definitionColumnTextTransform: ''; -@definitionColumnBoxShadow: ''; -@definitionColumnTextAlign: ''; -@definitionColumnHorizontalPadding: ''; - - -/*-------------- - Couplings ----------------*/ - -@iconVerticalAlign: baseline; - -/*-------------- - States ----------------*/ - -@stateMarkerWidth: 0px; - -/* Positive */ -@positiveColor: @positiveTextColor; -@positiveBoxShadow: @stateMarkerWidth 0px 0px @positiveBorderColor inset; -@positiveBackgroundHover: darken(@positiveBackgroundColor, 3); -@positiveColorHover: darken(@positiveColor, 3); - -/* Negative */ -@negativeColor: @negativeTextColor; -@negativeBoxShadow: @stateMarkerWidth 0px 0px @negativeBorderColor inset; -@negativeBackgroundHover: darken(@negativeBackgroundColor, 3); -@negativeColorHover: darken(@negativeColor, 3); - -/* Error */ -@errorColor: @errorTextColor; -@errorBoxShadow: @stateMarkerWidth 0px 0px @errorBorderColor inset; -@errorBackgroundHover: darken(@errorBackgroundColor, 3); -@errorColorHover: darken(@errorColor, 3); - -/* Warning */ -@warningColor: @warningTextColor; -@warningBoxShadow: @stateMarkerWidth 0px 0px @warningBorderColor inset; -@warningBackgroundHover: darken(@warningBackgroundColor, 3); -@warningColorHover: darken(@warningColor, 3); - -/* Active */ -@activeColor: @textColor; -@activeBackgroundColor: #E0E0E0; -@activeBoxShadow: @stateMarkerWidth 0px 0px @activeColor inset; - -@activeBackgroundHover: #EFEFEF; -@activeColorHover: @selectedTextColor; - -/*-------------- - Types ----------------*/ - -/* Attached */ -@attachedTopOffset: 0px; -@attachedBottomOffset: 0px; -@attachedHorizontalOffset: -@borderWidth; -@attachedWidth: calc(100% - (@attachedHorizontalOffset * 2)); -@attachedBoxShadow: none; -@attachedBorder: @borderWidth solid @solidBorderColor; -@attachedBottomBoxShadow: - @boxShadow, - @attachedBoxShadow -; - -/* Striped */ -@stripedBackground: rgba(0, 0, 50, 0.02); -@invertedStripedBackground: rgba(255, 255, 255, 0.05); - -/* Selectable */ -@selectableBackground: @transparentBlack; -@selectableTextColor: @selectedTextColor; -@selectableInvertedBackground: @transparentWhite; -@selectableInvertedTextColor: @invertedSelectedTextColor; - -/* Sortable */ -@sortableBackground: ''; -@sortableColor: @textColor; - -@sortableBorder: 1px solid @borderColor; -@sortableIconWidth: auto; -@sortableIconDistance: 0.5em; -@sortableIconOpacity: 0.8; -@sortableIconFont: 'Icons'; -@sortableIconAscending: '\f0d8'; -@sortableIconDescending: '\f0d7'; -@sortableDisabledColor: @disabledTextColor; - -@sortableHoverBackground: @transparentBlack; -@sortableHoverColor: @hoveredTextColor; - -@sortableActiveBackground: @transparentBlack; -@sortableActiveColor: @selectedTextColor; - -@sortableActiveHoverBackground: @transparentBlack; -@sortableActiveHoverColor: @selectedTextColor; - -@sortableInvertedBorderColor: transparent; -@sortableInvertedHoverBackground: @transparentWhite @subtleGradient; -@sortableInvertedHoverColor: @invertedHoveredTextColor; -@sortableInvertedActiveBackground: @strongTransparentWhite @subtleGradient; -@sortableInvertedActiveColor: @invertedSelectedTextColor; - -/* Colors */ -@coloredBorderSize: 0.2em; -@coloredBorderRadius: 0em 0em @borderRadius @borderRadius; - -/* Inverted */ -@invertedBackground: #333333; -@invertedBorder: none; -@invertedCellBorderColor: @whiteBorderColor; -@invertedCellColor: @invertedTextColor; - -@invertedHeaderBackground: @veryStrongTransparentBlack; -@invertedHeaderColor: @invertedTextColor; -@invertedHeaderBorderColor: @invertedCellBorderColor; - -@invertedDefinitionColumnBackground: @subtleTransparentWhite; -@invertedDefinitionColumnColor: @invertedSelectedTextColor; -@invertedDefinitionColumnFontWeight: @bold; - -/* Basic */ -@basicTableBackground: transparent; -@basicTableBorder: @borderWidth solid @borderColor; -@basicBoxShadow: none; - -@basicTableHeaderBackground: transparent; -@basicTableCellBackground: transparent; -@basicTableHeaderDivider: none; -@basicTableCellBorder: 1px solid rgba(0, 0, 0, 0.1); -@basicTableCellPadding: ''; -@basicTableStripedBackground: @transparentBlack; - -/* Padded */ -@paddedVerticalPadding: 1em; -@paddedHorizontalPadding: 1em; -@veryPaddedVerticalPadding: 1.5em; -@veryPaddedHorizontalPadding: 1.5em; - -/* Compact */ -@compactVerticalPadding: 0.5em; -@compactHorizontalPadding: 0.7em; -@veryCompactVerticalPadding: 0.4em; -@veryCompactHorizontalPadding: 0.6em; - - -/* Sizes */ -@small: 0.9em; -@medium: 1em; -@large: 1.1em; diff --git a/src/themes/default/elements/button.overrides b/src/themes/default/elements/button.overrides deleted file mode 100644 index 25f41bf..0000000 --- a/src/themes/default/elements/button.overrides +++ /dev/null @@ -1,21 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - -/* Standard Basic Inverted */ -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - color: @textColor !important; -} -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: @fullBlack !important; -} -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: @fullBlack !important; -} -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - color: @fullBlack !important; -} diff --git a/src/themes/default/elements/button.variables b/src/themes/default/elements/button.variables deleted file mode 100644 index 3d6f216..0000000 --- a/src/themes/default/elements/button.variables +++ /dev/null @@ -1,359 +0,0 @@ -/******************************* - Button -*******************************/ - -/*------------------- - Element ---------------------*/ - -/* Button */ -@verticalMargin: 0em; -@horizontalMargin: 0.25em; -@backgroundColor: darken(@white, 4); -@backgroundImage: none; -@background: @backgroundColor @backgroundImage; -@lineHeight: 1em; - -/* Button defaults to using same height as input globally */ -@verticalPadding: @inputVerticalPadding; -@horizontalPadding: 1.5em; - -/* Text */ -@textTransform: none; -@tapColor: transparent; -@fontFamily: @pageFont; -@fontWeight: @bold; -@textColor: #DDDDDD; -@textShadow: none; -@invertedTextShadow: @textShadow; -@borderRadius: @defaultBorderRadius; -@verticalAlign: baseline; - -/* Internal Shadow */ -@shadowDistance: 0em; -@shadowOffset: (@shadowDistance / 2); -@shadowBoxShadow: 0px -@shadowDistance 0px 0px @borderColor inset; - -/* Box Shadow */ -@borderBoxShadowColor: transparent; -@borderBoxShadowWidth: 1px; -@borderBoxShadow: 0px 0px 0px @borderBoxShadowWidth @borderBoxShadowColor inset; -@boxShadow: @subtleShadow; - -/* Icon */ -@iconHeight: @relativeTiny; -@iconOpacity: 0.8; -@iconDistance: @relative6px; -@iconColor: ''; -@iconTransition: opacity @defaultDuration @defaultEasing; -@iconVerticalAlign: ''; - -@iconMargin: 0em @iconDistance 0em -(@iconDistance / 2); -@rightIconMargin: 0em -(@iconDistance / 2) 0em @iconDistance; - -/* Loader */ -@invertedLoaderFillColor: rgba(0, 0, 0, 0.15); - -@transition: - opacity @defaultDuration @defaultEasing, - background-color @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing, - box-shadow @defaultDuration @defaultEasing, - background @defaultDuration @defaultEasing, - outline-offset @defaultDuration @defaultEasing, - outline-color @defaultDuration @defaultEasing -; -/* -@willChange: box-shadow, transform, opacity, color, background; -*/ -@willChange: ''; - -/*------------------- - Group ---------------------*/ - -@groupBoxShadow: none; -@groupButtonBoxShadow: @boxShadow; -@verticalBoxShadow: none; -@groupButtonOffset: 0px 0px 0px 0px; -@verticalGroupOffset: 0px 0px 0px 0px; - -/*------------------- - States ---------------------*/ - -/* Hovered */ -@hoverBackgroundColor: darken(@white, 2); -@hoverBackgroundImage: @backgroundImage; -@hoverBoxShadow: @boxShadow; -@hoverColor: @hoveredTextColor; -@iconHoverOpacity: 0.85; - -/* Focused */ -@focusBackgroundColor: @hoverBackgroundColor; -@focusBackgroundImage: ''; -@focusBoxShadow: ''; -@focusColor: @hoveredTextColor; -@iconFocusOpacity: 0.85; - -/* Disabled */ -@disabledBackgroundImage: none; -@disabledBoxShadow: none; - -/* Pressed Down */ -@downBackgroundColor: @backgroundColor; -@downBackgroundImage: ''; -@downPressedShadow: none; -@downBoxShadow: - @borderBoxShadow, - @downPressedShadow -; -@downColor: @pressedTextColor; - -/* Active */ -@activeBackgroundColor: @backgroundColor; -@activeBackgroundImage: none; -@activeColor: @selectedTextColor; -@activeBoxShadow: @borderBoxShadow; - -/* Active + Hovered */ -@activeHoverBackgroundColor: @activeBackgroundColor; -@activeHoverBackgroundImage: none; -@activeHoverColor: @activeColor; -@activeHoverBoxShadow: @activeBoxShadow; - -/* Loading */ -@loadingOpacity: 1; -@loadingPointerEvents: auto; -@loadingTransition: - all 0s linear, - opacity @defaultDuration @defaultEasing -; - -/*------------------- - Types ---------------------*/ - -/* Or */ -@orText: 'or'; - -@orGap: 0.3em; -@orHeight: (@verticalPadding * 2) + 1em; -@orZIndex: 3; - -@orCircleDistanceToEdge: (@verticalPadding); -@orCircleSize: @orHeight - @orCircleDistanceToEdge; -@orLineHeight: (@orCircleSize); -@orBoxShadow: @borderBoxShadow; - -@orVerticalOffset: -(@orCircleSize / 2); -@orHorizontalOffset: -(@orCircleSize / 2); - -@orBackgroundColor: @white; -@orTextShadow: @invertedTextShadow; -@orTextStyle: @normal; -@orTextWeight: @bold; -@orTextColor: @lightTextColor; - - -@orSpacerHeight: @verticalPadding; -@orSpacerColor: transparent; - -/* Icon */ -@iconButtonOpacity: 0.9; - -/* Labeled */ -@labeledLabelFontSize: @medium; -@labeledLabelAlign: center; -@labeledLabelPadding: ''; -@labeledLabelFontSize: @relativeMedium; -@labeledLabelBorderColor: @borderColor; -@labeledLabelBorderOffset: -@borderBoxShadowWidth; -@labeledTagLabelSize: 1.85em; /* hypotenuse of triangle */ -@labeledIconMargin: 0em; - -/* Labeled Icon */ -@labeledIconWidth: 1em + (@verticalPadding * 2); -@labeledIconBackgroundColor: rgba(0, 0, 0, 0.05); -@labeledIconPadding: (@horizontalPadding + @labeledIconWidth); -@labeledIconBorder: transparent; -@labeledIconColor: ''; - -@labeledIconLeftShadow: -1px 0px 0px 0px @labeledIconBorder inset; -@labeledIconRightShadow: 1px 0px 0px 0px @labeledIconBorder inset; - - -/* Inverted */ -@invertedBorderSize: 2px; -@invertedTextColor: @white; -@invertedTextHoverColor: @hoverColor; -@invertedGroupButtonOffset: 0px 0px 0px -(@invertedBorderSize); -@invertedVerticalGroupButtonOffset: 0px 0px -(@invertedBorderSize) 0px; - -/* Basic */ -@basicBorderRadius: @borderRadius; -@basicBorderSize: 1px; -@basicTextColor: @textColor; -@basicColoredBorderSize: 1px; - -@basicBackground: transparent none; -@basicFontWeight: @normal; -@basicBorder: 1px solid @borderColor; -@basicBoxShadow: 0px 0px 0px @basicBorderSize @borderColor inset; -@basicLoadingColor: @offWhite; -@basicTextTransform: none; - -/* Basic Hover */ -@basicHoverBackground: @white; -@basicHoverTextColor: @hoveredTextColor; -@basicHoverBoxShadow: - 0px 0px 0px @basicBorderSize @selectedBorderColor inset, - 0px 0px 0px 0px @borderColor inset -; -/* Basic Focus */ -@basicFocusBackground: @basicHoverBackground; -@basicFocusTextColor: @basicHoverTextColor; -@basicFocusBoxShadow: @basicHoverBoxShadow; - -/* Basic Down */ -@basicDownBackground: @offWhite; -@basicDownTextColor: @pressedTextColor; -@basicDownBoxShadow: - 0px 0px 0px @basicBorderSize rgba(0, 0, 0, 0.15) inset, - 0px 1px 4px 0px @borderColor inset -; -/* Basic Active */ -@basicActiveBackground: @transparentBlack; -@basicActiveBoxShadow: ''; -@basicActiveTextColor: @selectedTextColor; - -/* Basic Inverted */ -@basicInvertedBackground: transparent; -@basicInvertedFocusBackground: transparent; -@basicInvertedDownBackground: @transparentWhite; -@basicInvertedActiveBackground: @transparentWhite; - -@basicInvertedBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.5) inset; -@basicInvertedHoverBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 1) inset; -@basicInvertedFocusBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 1) inset; -@basicInvertedDownBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.9) inset; -@basicInvertedActiveBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.7) inset; - -@basicInvertedColor: @darkWhite; -@basicInvertedHoverColor: @darkWhiteHover; -@basicInvertedDownColor: @darkWhiteActive; -@basicInvertedActiveColor: @invertedTextColor; - - -/* Basic Group */ -@basicGroupBorder: @basicBorderSize solid @borderColor; -@basicGroupBoxShadow: none; - -/*------------------- - Variations ---------------------*/ - -/* Colors */ -@coloredBackgroundImage: none; -@coloredBoxShadow: @boxShadow; - -/* Colored */ -@brownTextColor: @invertedTextColor; -@brownTextShadow: @invertedTextShadow; -@redTextColor: @invertedTextColor; -@redTextShadow: @invertedTextShadow; -@orangeTextColor: @invertedTextColor; -@orangeTextShadow: @invertedTextShadow; -@greenTextColor: @invertedTextColor; -@greenTextShadow: @invertedTextShadow; -@blueTextColor: @invertedTextColor; -@blueTextShadow: @invertedTextShadow; -@violetTextColor: @invertedTextColor; -@violetTextShadow: @invertedTextShadow; -@purpleTextColor: @invertedTextColor; -@purpleTextShadow: @invertedTextShadow; -@pinkTextColor: @invertedTextColor; -@pinkTextShadow: @invertedTextShadow; -@blackTextColor: @invertedTextColor; -@blackTextShadow: @invertedTextShadow; -@oliveTextColor: @invertedTextColor; -@oliveTextShadow: @invertedTextShadow; -@yellowTextColor: @invertedTextColor; -@yellowTextShadow: @invertedTextShadow; -@tealTextColor: @invertedTextColor; -@tealTextShadow: @invertedTextShadow; -@greyTextColor: @invertedTextColor; -@greyTextShadow: @invertedTextShadow; - -/* Inverted */ -@lightBrownTextColor: @invertedTextColor; -@lightBrownTextShadow: @invertedTextShadow; -@lightRedTextColor: @invertedTextColor; -@lightRedTextShadow: @invertedTextShadow; -@lightOrangeTextColor: @invertedTextColor; -@lightOrangeTextShadow: @invertedTextShadow; -@lightGreenTextColor: @invertedTextColor; -@lightGreenTextShadow: @invertedTextShadow; -@lightBlueTextColor: @invertedTextColor; -@lightBlueTextShadow: @invertedTextShadow; -@lightVioletTextColor: @invertedTextColor; -@lightVioletTextShadow: @invertedTextShadow; -@lightPurpleTextColor: @invertedTextColor; -@lightPurpleTextShadow: @invertedTextShadow; -@lightPinkTextColor: @invertedTextColor; -@lightPinkTextShadow: @invertedTextShadow; -@lightBlackTextColor: @invertedTextColor; -@lightBlackTextShadow: @invertedTextShadow; -@lightOliveTextColor: @textColor; -@lightOliveTextShadow: @textShadow; -@lightYellowTextColor: @textColor; -@lightYellowTextShadow: @textShadow; -@lightTealTextColor: @textColor; -@lightTealTextShadow: @textShadow; -@lightGreyTextColor: @textColor; -@lightGreyTextShadow: @textShadow; - - -/* Ordinality */ -@primaryBackgroundImage: @coloredBackgroundImage; -@primaryTextColor: @invertedTextColor; -@lightPrimaryTextColor: @invertedTextColor; -@primaryTextShadow: @invertedTextShadow; -@primaryBoxShadow: @coloredBoxShadow; - -@secondaryBackgroundImage: @coloredBackgroundImage; -@secondaryTextColor: @invertedTextColor; -@secondaryTextShadow: @invertedTextShadow; -@lightSecondaryTextColor: @invertedTextColor; -@secondaryBoxShadow: @coloredBoxShadow; - -@positiveBackgroundImage: @coloredBackgroundImage; -@positiveTextColor: @invertedTextColor; -@positiveTextShadow: @invertedTextShadow; -@positiveBoxShadow: @coloredBoxShadow; - -@negativeBackgroundImage: @coloredBackgroundImage; -@negativeTextColor: @invertedTextColor; -@negativeTextShadow: @invertedTextShadow; -@negativeBoxShadow: @coloredBoxShadow; - -/* Compact */ -@compactVerticalPadding: (@verticalPadding * 0.75); -@compactHorizontalPadding: (@horizontalPadding * 0.75); - -/* Attached */ -@attachedOffset: -1px; -@attachedBoxShadow: 0px 0px 0px 1px @borderColor; -@attachedHorizontalPadding: 0.75em; -@attachedZIndex: 2; - -/* Floated */ -@floatedMargin: 0.25em; - -/* Animated */ -@animatedVerticalAlign: middle; -@animatedZIndex: 1; -@animationDuration: 0.3s; -@animationEasing: ease; -@fadeScaleHigh: 1.5; -@fadeScaleLow: 0.75; diff --git a/src/themes/default/elements/container.overrides b/src/themes/default/elements/container.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/container.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/container.variables b/src/themes/default/elements/container.variables deleted file mode 100644 index 33f3a8c..0000000 --- a/src/themes/default/elements/container.variables +++ /dev/null @@ -1,58 +0,0 @@ -/******************************* - Container -*******************************/ - -/*------------------- - Element ---------------------*/ - -/* Minimum Gutter is used to determine the maximum container width for a given device */ - -@maxWidth: 100%; - -/* Devices */ -@mobileMinimumGutter: 0em; -@mobileWidth: auto; -@mobileGutter: 1em; - -@tabletMinimumGutter: (@emSize * 1); -@tabletWidth: @tabletBreakpoint - (@tabletMinimumGutter * 2) - @scrollbarWidth; -@tabletGutter: auto; - -@computerMinimumGutter: (@emSize * 1.5); -@computerWidth: @computerBreakpoint - (@computerMinimumGutter * 2) - @scrollbarWidth; -@computerGutter: auto; - -@largeMonitorMinimumGutter: (@emSize * 2); -@largeMonitorWidth: @largeMonitorBreakpoint - (@largeMonitorMinimumGutter * 2) - @scrollbarWidth; -@largeMonitorGutter: auto; - -/* Coupling (Add Negative Margin to container size) */ -@gridGutterWidth: 2rem; -@relaxedGridGutterWidth: 3rem; -@veryRelaxedGridGutterWidth: 5rem; - -@mobileGridWidth: @mobileWidth; -@tabletGridWidth: ~"calc("@tabletWidth~" + "@gridGutterWidth~")"; -@computerGridWidth: ~"calc("@computerWidth~" + "@gridGutterWidth~")"; -@largeMonitorGridWidth: ~"calc("@largeMonitorWidth~" + "@gridGutterWidth~")"; - -@mobileRelaxedGridWidth: @mobileWidth; -@tabletRelaxedGridWidth: ~"calc("@tabletWidth~" + "@relaxedGridGutterWidth~")"; -@computerRelaxedGridWidth: ~"calc("@computerWidth~" + "@relaxedGridGutterWidth~")"; -@largeMonitorRelaxedGridWidth: ~"calc("@largeMonitorWidth~" + "@relaxedGridGutterWidth~")"; - -@mobileVeryRelaxedGridWidth: @mobileWidth; -@tabletVeryRelaxedGridWidth: ~"calc("@tabletWidth~" + "@veryRelaxedGridGutterWidth~")"; -@computerVeryRelaxedGridWidth: ~"calc("@computerWidth~" + "@veryRelaxedGridGutterWidth~")"; -@largeMonitorVeryRelaxedGridWidth: ~"calc("@largeMonitorWidth~" + "@veryRelaxedGridGutterWidth~")"; - -/*------------------- - Types ---------------------*/ - -/* Text */ -@textWidth: 700px; -@textFontFamily: @pageFont; -@textLineHeight: 1.5; -@textSize: @large; \ No newline at end of file diff --git a/src/themes/default/elements/divider.overrides b/src/themes/default/elements/divider.overrides deleted file mode 100644 index 2690ca2..0000000 --- a/src/themes/default/elements/divider.overrides +++ /dev/null @@ -1,18 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); -} - -@media only screen and (max-width : (@tabletBreakpoint - 1px)) { - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); - } -} \ No newline at end of file diff --git a/src/themes/default/elements/divider.variables b/src/themes/default/elements/divider.variables deleted file mode 100644 index ca61775..0000000 --- a/src/themes/default/elements/divider.variables +++ /dev/null @@ -1,53 +0,0 @@ -/******************************* - Divider -*******************************/ - -/*------------------- - Element ---------------------*/ - -@margin: 1rem 0rem; - -@highlightWidth: 1px; -@highlightColor: @whiteBorderColor; - -@shadowWidth: 1px; -@shadowColor: @borderColor; - -/* Text */ -@letterSpacing: 0.05em; -@fontWeight: @bold; -@color: @darkTextColor; -@textTransform: uppercase; - -/*------------------- - Coupling ---------------------*/ - -/* Icon */ -@dividerIconSize: 1rem; -@dividerIconMargin: 0rem; - - -/******************************* - Variations -*******************************/ - -/* Horizontal / Vertical */ -@horizontalMargin: ''; -@horizontalDividerMargin: 1em; -@horizontalRulerOffset: ~"calc(-50% - "(@horizontalDividerMargin)~")"; - -@verticalDividerMargin: 1rem; -@verticalDividerHeight: ~"calc(100% - "(@verticalDividerMargin)~")"; - -/* Inverted */ -@invertedTextColor: @white; -@invertedHighlightColor: rgba(255, 255, 255, 0.15); -@invertedShadowColor: @borderColor; - -/* Section */ -@sectionMargin: 2rem; - -/* Sizes */ -@medium: 1rem; diff --git a/src/themes/default/elements/flag.overrides b/src/themes/default/elements/flag.overrides deleted file mode 100644 index 6a0f921..0000000 --- a/src/themes/default/elements/flag.overrides +++ /dev/null @@ -1,991 +0,0 @@ -/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */ - -/******************************* - Theme Overrides -*******************************/ - -i.flag.ad:before, -i.flag.andorra:before { - background-position: 0px 0px; -} -i.flag.ae:before, -i.flag.united.arab.emirates:before, -i.flag.uae:before { - background-position: 0px -26px; -} -i.flag.af:before, -i.flag.afghanistan:before { - background-position: 0px -52px; -} -i.flag.ag:before, -i.flag.antigua:before { - background-position: 0px -78px; -} -i.flag.ai:before, -i.flag.anguilla:before { - background-position: 0px -104px; -} -i.flag.al:before, -i.flag.albania:before { - background-position: 0px -130px; -} -i.flag.am:before, -i.flag.armenia:before { - background-position: 0px -156px; -} -i.flag.an:before, -i.flag.netherlands.antilles:before { - background-position: 0px -182px; -} -i.flag.ao:before, -i.flag.angola:before { - background-position: 0px -208px; -} -i.flag.ar:before, -i.flag.argentina:before { - background-position: 0px -234px; -} -i.flag.as:before, -i.flag.american.samoa:before { - background-position: 0px -260px; -} -i.flag.at:before, -i.flag.austria:before { - background-position: 0px -286px; -} -i.flag.au:before, -i.flag.australia:before { - background-position: 0px -312px; -} -i.flag.aw:before, -i.flag.aruba:before { - background-position: 0px -338px; -} -i.flag.ax:before, -i.flag.aland.islands:before { - background-position: 0px -364px; -} -i.flag.az:before, -i.flag.azerbaijan:before { - background-position: 0px -390px; -} -i.flag.ba:before, -i.flag.bosnia:before { - background-position: 0px -416px; -} -i.flag.bb:before, -i.flag.barbados:before { - background-position: 0px -442px; -} -i.flag.bd:before, -i.flag.bangladesh:before { - background-position: 0px -468px; -} -i.flag.be:before, -i.flag.belgium:before { - background-position: 0px -494px; -} -i.flag.bf:before, -i.flag.burkina.faso:before { - background-position: 0px -520px; -} -i.flag.bg:before, -i.flag.bulgaria:before { - background-position: 0px -546px; -} -i.flag.bh:before, -i.flag.bahrain:before { - background-position: 0px -572px; -} -i.flag.bi:before, -i.flag.burundi:before { - background-position: 0px -598px; -} -i.flag.bj:before, -i.flag.benin:before { - background-position: 0px -624px; -} -i.flag.bm:before, -i.flag.bermuda:before { - background-position: 0px -650px; -} -i.flag.bn:before, -i.flag.brunei:before { - background-position: 0px -676px; -} -i.flag.bo:before, -i.flag.bolivia:before { - background-position: 0px -702px; -} -i.flag.br:before, -i.flag.brazil:before { - background-position: 0px -728px; -} -i.flag.bs:before, -i.flag.bahamas:before { - background-position: 0px -754px; -} -i.flag.bt:before, -i.flag.bhutan:before { - background-position: 0px -780px; -} -i.flag.bv:before, -i.flag.bouvet.island:before { - background-position: 0px -806px; -} -i.flag.bw:before, -i.flag.botswana:before { - background-position: 0px -832px; -} -i.flag.by:before, -i.flag.belarus:before { - background-position: 0px -858px; -} -i.flag.bz:before, -i.flag.belize:before { - background-position: 0px -884px; -} -i.flag.ca:before, -i.flag.canada:before { - background-position: 0px -910px; -} -i.flag.cc:before, -i.flag.cocos.islands:before { - background-position: 0px -962px; -} -i.flag.cd:before, -i.flag.congo:before { - background-position: 0px -988px; -} -i.flag.cf:before, -i.flag.central.african.republic:before { - background-position: 0px -1014px; -} -i.flag.cg:before, -i.flag.congo.brazzaville:before { - background-position: 0px -1040px; -} -i.flag.ch:before, -i.flag.switzerland:before { - background-position: 0px -1066px; -} -i.flag.ci:before, -i.flag.cote.divoire:before { - background-position: 0px -1092px; -} -i.flag.ck:before, -i.flag.cook.islands:before { - background-position: 0px -1118px; -} -i.flag.cl:before, -i.flag.chile:before { - background-position: 0px -1144px; -} -i.flag.cm:before, -i.flag.cameroon:before { - background-position: 0px -1170px; -} -i.flag.cn:before, -i.flag.china:before { - background-position: 0px -1196px; -} -i.flag.co:before, -i.flag.colombia:before { - background-position: 0px -1222px; -} -i.flag.cr:before, -i.flag.costa.rica:before { - background-position: 0px -1248px; -} -i.flag.cs:before, -i.flag.serbia:before { - background-position: 0px -1274px; -} -i.flag.cu:before, -i.flag.cuba:before { - background-position: 0px -1300px; -} -i.flag.cv:before, -i.flag.cape.verde:before { - background-position: 0px -1326px; -} -i.flag.cx:before, -i.flag.christmas.island:before { - background-position: 0px -1352px; -} -i.flag.cy:before, -i.flag.cyprus:before { - background-position: 0px -1378px; -} -i.flag.cz:before, -i.flag.czech.republic:before { - background-position: 0px -1404px; -} -i.flag.de:before, -i.flag.germany:before { - background-position: 0px -1430px; -} -i.flag.dj:before, -i.flag.djibouti:before { - background-position: 0px -1456px; -} -i.flag.dk:before, -i.flag.denmark:before { - background-position: 0px -1482px; -} -i.flag.dm:before, -i.flag.dominica:before { - background-position: 0px -1508px; -} -i.flag.do:before, -i.flag.dominican.republic:before { - background-position: 0px -1534px; -} -i.flag.dz:before, -i.flag.algeria:before { - background-position: 0px -1560px; -} -i.flag.ec:before, -i.flag.ecuador:before { - background-position: 0px -1586px; -} -i.flag.ee:before, -i.flag.estonia:before { - background-position: 0px -1612px; -} -i.flag.eg:before, -i.flag.egypt:before { - background-position: 0px -1638px; -} -i.flag.eh:before, -i.flag.western.sahara:before { - background-position: 0px -1664px; -} -i.flag.gb.eng:before, -i.flag.england:before { - background-position: 0px -1690px; -} -i.flag.er:before, -i.flag.eritrea:before { - background-position: 0px -1716px; -} -i.flag.es:before, -i.flag.spain:before { - background-position: 0px -1742px; -} -i.flag.et:before, -i.flag.ethiopia:before { - background-position: 0px -1768px; -} -i.flag.eu:before, -i.flag.european.union:before { - background-position: 0px -1794px; -} -i.flag.fi:before, -i.flag.finland:before { - background-position: 0px -1846px; -} -i.flag.fj:before, -i.flag.fiji:before { - background-position: 0px -1872px; -} -i.flag.fk:before, -i.flag.falkland.islands:before { - background-position: 0px -1898px; -} -i.flag.fm:before, -i.flag.micronesia:before { - background-position: 0px -1924px; -} -i.flag.fo:before, -i.flag.faroe.islands:before { - background-position: 0px -1950px; -} -i.flag.fr:before, -i.flag.france:before { - background-position: 0px -1976px; -} -i.flag.ga:before, -i.flag.gabon:before { - background-position: -36px 0px; -} -i.flag.gb:before, -i.flag.uk:before, -i.flag.united.kingdom:before { - background-position: -36px -26px; -} -i.flag.gd:before, -i.flag.grenada:before { - background-position: -36px -52px; -} -i.flag.ge:before, -i.flag.georgia:before { - background-position: -36px -78px; -} -i.flag.gf:before, -i.flag.french.guiana:before { - background-position: -36px -104px; -} -i.flag.gh:before, -i.flag.ghana:before { - background-position: -36px -130px; -} -i.flag.gi:before, -i.flag.gibraltar:before { - background-position: -36px -156px; -} -i.flag.gl:before, -i.flag.greenland:before { - background-position: -36px -182px; -} -i.flag.gm:before, -i.flag.gambia:before { - background-position: -36px -208px; -} -i.flag.gn:before, -i.flag.guinea:before { - background-position: -36px -234px; -} -i.flag.gp:before, -i.flag.guadeloupe:before { - background-position: -36px -260px; -} -i.flag.gq:before, -i.flag.equatorial.guinea:before { - background-position: -36px -286px; -} -i.flag.gr:before, -i.flag.greece:before { - background-position: -36px -312px; -} -i.flag.gs:before, -i.flag.sandwich.islands:before { - background-position: -36px -338px; -} -i.flag.gt:before, -i.flag.guatemala:before { - background-position: -36px -364px; -} -i.flag.gu:before, -i.flag.guam:before { - background-position: -36px -390px; -} -i.flag.gw:before, -i.flag.guinea-bissau:before { - background-position: -36px -416px; -} -i.flag.gy:before, -i.flag.guyana:before { - background-position: -36px -442px; -} -i.flag.hk:before, -i.flag.hong.kong:before { - background-position: -36px -468px; -} -i.flag.hm:before, -i.flag.heard.island:before { - background-position: -36px -494px; -} -i.flag.hn:before, -i.flag.honduras:before { - background-position: -36px -520px; -} -i.flag.hr:before, -i.flag.croatia:before { - background-position: -36px -546px; -} -i.flag.ht:before, -i.flag.haiti:before { - background-position: -36px -572px; -} -i.flag.hu:before, -i.flag.hungary:before { - background-position: -36px -598px; -} -i.flag.id:before, -i.flag.indonesia:before { - background-position: -36px -624px; -} -i.flag.ie:before, -i.flag.ireland:before { - background-position: -36px -650px; -} -i.flag.il:before, -i.flag.israel:before { - background-position: -36px -676px; -} -i.flag.in:before, -i.flag.india:before { - background-position: -36px -702px; -} -i.flag.io:before, -i.flag.indian.ocean.territory:before { - background-position: -36px -728px; -} -i.flag.iq:before, -i.flag.iraq:before { - background-position: -36px -754px; -} -i.flag.ir:before, -i.flag.iran:before { - background-position: -36px -780px; -} -i.flag.is:before, -i.flag.iceland:before { - background-position: -36px -806px; -} -i.flag.it:before, -i.flag.italy:before { - background-position: -36px -832px; -} -i.flag.jm:before, -i.flag.jamaica:before { - background-position: -36px -858px; -} -i.flag.jo:before, -i.flag.jordan:before { - background-position: -36px -884px; -} -i.flag.jp:before, -i.flag.japan:before { - background-position: -36px -910px; -} -i.flag.ke:before, -i.flag.kenya:before { - background-position: -36px -936px; -} -i.flag.kg:before, -i.flag.kyrgyzstan:before { - background-position: -36px -962px; -} -i.flag.kh:before, -i.flag.cambodia:before { - background-position: -36px -988px; -} -i.flag.ki:before, -i.flag.kiribati:before { - background-position: -36px -1014px; -} -i.flag.km:before, -i.flag.comoros:before { - background-position: -36px -1040px; -} -i.flag.kn:before, -i.flag.saint.kitts.and.nevis:before { - background-position: -36px -1066px; -} -i.flag.kp:before, -i.flag.north.korea:before { - background-position: -36px -1092px; -} -i.flag.kr:before, -i.flag.south.korea:before { - background-position: -36px -1118px; -} -i.flag.kw:before, -i.flag.kuwait:before { - background-position: -36px -1144px; -} -i.flag.ky:before, -i.flag.cayman.islands:before { - background-position: -36px -1170px; -} -i.flag.kz:before, -i.flag.kazakhstan:before { - background-position: -36px -1196px; -} -i.flag.la:before, -i.flag.laos:before { - background-position: -36px -1222px; -} -i.flag.lb:before, -i.flag.lebanon:before { - background-position: -36px -1248px; -} -i.flag.lc:before, -i.flag.saint.lucia:before { - background-position: -36px -1274px; -} -i.flag.li:before, -i.flag.liechtenstein:before { - background-position: -36px -1300px; -} -i.flag.lk:before, -i.flag.sri.lanka:before { - background-position: -36px -1326px; -} -i.flag.lr:before, -i.flag.liberia:before { - background-position: -36px -1352px; -} -i.flag.ls:before, -i.flag.lesotho:before { - background-position: -36px -1378px; -} -i.flag.lt:before, -i.flag.lithuania:before { - background-position: -36px -1404px; -} -i.flag.lu:before, -i.flag.luxembourg:before { - background-position: -36px -1430px; -} -i.flag.lv:before, -i.flag.latvia:before { - background-position: -36px -1456px; -} -i.flag.ly:before, -i.flag.libya:before { - background-position: -36px -1482px; -} -i.flag.ma:before, -i.flag.morocco:before { - background-position: -36px -1508px; -} -i.flag.mc:before, -i.flag.monaco:before { - background-position: -36px -1534px; -} -i.flag.md:before, -i.flag.moldova:before { - background-position: -36px -1560px; -} -i.flag.me:before, -i.flag.montenegro:before { - background-position: -36px -1586px; -} -i.flag.mg:before, -i.flag.madagascar:before { - background-position: -36px -1613px; -} -i.flag.mh:before, -i.flag.marshall.islands:before { - background-position: -36px -1639px; -} -i.flag.mk:before, -i.flag.macedonia:before { - background-position: -36px -1665px; -} -i.flag.ml:before, -i.flag.mali:before { - background-position: -36px -1691px; -} -i.flag.mm:before, -i.flag.myanmar:before, -i.flag.burma:before { - background-position: -73px -1821px; -} -i.flag.mn:before, -i.flag.mongolia:before { - background-position: -36px -1743px; -} -i.flag.mo:before, -i.flag.macau:before { - background-position: -36px -1769px; -} -i.flag.mp:before, -i.flag.northern.mariana.islands:before { - background-position: -36px -1795px; -} -i.flag.mq:before, -i.flag.martinique:before { - background-position: -36px -1821px; -} -i.flag.mr:before, -i.flag.mauritania:before { - background-position: -36px -1847px; -} -i.flag.ms:before, -i.flag.montserrat:before { - background-position: -36px -1873px; -} -i.flag.mt:before, -i.flag.malta:before { - background-position: -36px -1899px; -} -i.flag.mu:before, -i.flag.mauritius:before { - background-position: -36px -1925px; -} -i.flag.mv:before, -i.flag.maldives:before { - background-position: -36px -1951px; -} -i.flag.mw:before, -i.flag.malawi:before { - background-position: -36px -1977px; -} -i.flag.mx:before, -i.flag.mexico:before { - background-position: -72px 0px; -} -i.flag.my:before, -i.flag.malaysia:before { - background-position: -72px -26px; -} -i.flag.mz:before, -i.flag.mozambique:before { - background-position: -72px -52px; -} -i.flag.na:before, -i.flag.namibia:before { - background-position: -72px -78px; -} -i.flag.nc:before, -i.flag.new.caledonia:before { - background-position: -72px -104px; -} -i.flag.ne:before, -i.flag.niger:before { - background-position: -72px -130px; -} -i.flag.nf:before, -i.flag.norfolk.island:before { - background-position: -72px -156px; -} -i.flag.ng:before, -i.flag.nigeria:before { - background-position: -72px -182px; -} -i.flag.ni:before, -i.flag.nicaragua:before { - background-position: -72px -208px; -} -i.flag.nl:before, -i.flag.netherlands:before { - background-position: -72px -234px; -} -i.flag.no:before, -i.flag.norway:before { - background-position: -72px -260px; -} -i.flag.np:before, -i.flag.nepal:before { - background-position: -72px -286px; -} -i.flag.nr:before, -i.flag.nauru:before { - background-position: -72px -312px; -} -i.flag.nu:before, -i.flag.niue:before { - background-position: -72px -338px; -} -i.flag.nz:before, -i.flag.new.zealand:before { - background-position: -72px -364px; -} -i.flag.om:before, -i.flag.oman:before { - background-position: -72px -390px; -} -i.flag.pa:before, -i.flag.panama:before { - background-position: -72px -416px; -} -i.flag.pe:before, -i.flag.peru:before { - background-position: -72px -442px; -} -i.flag.pf:before, -i.flag.french.polynesia:before { - background-position: -72px -468px; -} -i.flag.pg:before, -i.flag.new.guinea:before { - background-position: -72px -494px; -} -i.flag.ph:before, -i.flag.philippines:before { - background-position: -72px -520px; -} -i.flag.pk:before, -i.flag.pakistan:before { - background-position: -72px -546px; -} -i.flag.pl:before, -i.flag.poland:before { - background-position: -72px -572px; -} -i.flag.pm:before, -i.flag.saint.pierre:before { - background-position: -72px -598px; -} -i.flag.pn:before, -i.flag.pitcairn.islands:before { - background-position: -72px -624px; -} -i.flag.pr:before, -i.flag.puerto.rico:before { - background-position: -72px -650px; -} -i.flag.ps:before, -i.flag.palestine:before { - background-position: -72px -676px; -} -i.flag.pt:before, -i.flag.portugal:before { - background-position: -72px -702px; -} -i.flag.pw:before, -i.flag.palau:before { - background-position: -72px -728px; -} -i.flag.py:before, -i.flag.paraguay:before { - background-position: -72px -754px; -} -i.flag.qa:before, -i.flag.qatar:before { - background-position: -72px -780px; -} -i.flag.re:before, -i.flag.reunion:before { - background-position: -72px -806px; -} -i.flag.ro:before, -i.flag.romania:before { - background-position: -72px -832px; -} -i.flag.rs:before, -i.flag.serbia:before { - background-position: -72px -858px; -} -i.flag.ru:before, -i.flag.russia:before { - background-position: -72px -884px; -} -i.flag.rw:before, -i.flag.rwanda:before { - background-position: -72px -910px; -} -i.flag.sa:before, -i.flag.saudi.arabia:before { - background-position: -72px -936px; -} -i.flag.sb:before, -i.flag.solomon.islands:before { - background-position: -72px -962px; -} -i.flag.sc:before, -i.flag.seychelles:before { - background-position: -72px -988px; -} -i.flag.gb.sct:before, -i.flag.scotland:before { - background-position: -72px -1014px; -} -i.flag.sd:before, -i.flag.sudan:before { - background-position: -72px -1040px; -} -i.flag.se:before, -i.flag.sweden:before { - background-position: -72px -1066px; -} -i.flag.sg:before, -i.flag.singapore:before { - background-position: -72px -1092px; -} -i.flag.sh:before, -i.flag.saint.helena:before { - background-position: -72px -1118px; -} -i.flag.si:before, -i.flag.slovenia:before { - background-position: -72px -1144px; -} -i.flag.sj:before, -i.flag.svalbard:before, -i.flag.jan.mayen:before { - background-position: -72px -1170px; -} -i.flag.sk:before, -i.flag.slovakia:before { - background-position: -72px -1196px; -} -i.flag.sl:before, -i.flag.sierra.leone:before { - background-position: -72px -1222px; -} -i.flag.sm:before, -i.flag.san.marino:before { - background-position: -72px -1248px; -} -i.flag.sn:before, -i.flag.senegal:before { - background-position: -72px -1274px; -} -i.flag.so:before, -i.flag.somalia:before { - background-position: -72px -1300px; -} -i.flag.sr:before, -i.flag.suriname:before { - background-position: -72px -1326px; -} -i.flag.st:before, -i.flag.sao.tome:before { - background-position: -72px -1352px; -} -i.flag.sv:before, -i.flag.el.salvador:before { - background-position: -72px -1378px; -} -i.flag.sy:before, -i.flag.syria:before { - background-position: -72px -1404px; -} -i.flag.sz:before, -i.flag.swaziland:before { - background-position: -72px -1430px; -} -i.flag.tc:before, -i.flag.caicos.islands:before { - background-position: -72px -1456px; -} -i.flag.td:before, -i.flag.chad:before { - background-position: -72px -1482px; -} -i.flag.tf:before, -i.flag.french.territories:before { - background-position: -72px -1508px; -} -i.flag.tg:before, -i.flag.togo:before { - background-position: -72px -1534px; -} -i.flag.th:before, -i.flag.thailand:before { - background-position: -72px -1560px; -} -i.flag.tj:before, -i.flag.tajikistan:before { - background-position: -72px -1586px; -} -i.flag.tk:before, -i.flag.tokelau:before { - background-position: -72px -1612px; -} -i.flag.tl:before, -i.flag.timorleste:before { - background-position: -72px -1638px; -} -i.flag.tm:before, -i.flag.turkmenistan:before { - background-position: -72px -1664px; -} -i.flag.tn:before, -i.flag.tunisia:before { - background-position: -72px -1690px; -} -i.flag.to:before, -i.flag.tonga:before { - background-position: -72px -1716px; -} -i.flag.tr:before, -i.flag.turkey:before { - background-position: -72px -1742px; -} -i.flag.tt:before, -i.flag.trinidad:before { - background-position: -72px -1768px; -} -i.flag.tv:before, -i.flag.tuvalu:before { - background-position: -72px -1794px; -} -i.flag.tw:before, -i.flag.taiwan:before { - background-position: -72px -1820px; -} -i.flag.tz:before, -i.flag.tanzania:before { - background-position: -72px -1846px; -} -i.flag.ua:before, -i.flag.ukraine:before { - background-position: -72px -1872px; -} -i.flag.ug:before, -i.flag.uganda:before { - background-position: -72px -1898px; -} -i.flag.um:before, -i.flag.us.minor.islands:before { - background-position: -72px -1924px; -} -i.flag.us:before, -i.flag.america:before, -i.flag.united.states:before { - background-position: -72px -1950px; -} -i.flag.uy:before, -i.flag.uruguay:before { - background-position: -72px -1976px; -} -i.flag.uz:before, -i.flag.uzbekistan:before { - background-position: -108px 0px; -} -i.flag.va:before, -i.flag.vatican.city:before { - background-position: -108px -26px; -} -i.flag.vc:before, -i.flag.saint.vincent:before { - background-position: -108px -52px; -} -i.flag.ve:before, -i.flag.venezuela:before { - background-position: -108px -78px; -} -i.flag.vg:before, -i.flag.british.virgin.islands:before { - background-position: -108px -104px; -} -i.flag.vi:before, -i.flag.us.virgin.islands:before { - background-position: -108px -130px; -} -i.flag.vn:before, -i.flag.vietnam:before { - background-position: -108px -156px; -} -i.flag.vu:before, -i.flag.vanuatu:before { - background-position: -108px -182px; -} -i.flag.gb.wls:before, -i.flag.wales:before { - background-position: -108px -208px; -} -i.flag.wf:before, -i.flag.wallis.and.futuna:before { - background-position: -108px -234px; -} -i.flag.ws:before, -i.flag.samoa:before { - background-position: -108px -260px; -} -i.flag.ye:before, -i.flag.yemen:before { - background-position: -108px -286px; -} -i.flag.yt:before, -i.flag.mayotte:before { - background-position: -108px -312px; -} -i.flag.za:before, -i.flag.south.africa:before { - background-position: -108px -338px; -} -i.flag.zm:before, -i.flag.zambia:before { - background-position: -108px -364px; -} -i.flag.zw:before, -i.flag.zimbabwe:before { - background-position: -108px -390px; -} diff --git a/src/themes/default/elements/flag.variables b/src/themes/default/elements/flag.variables deleted file mode 100644 index cf0884c..0000000 --- a/src/themes/default/elements/flag.variables +++ /dev/null @@ -1,13 +0,0 @@ -/******************************* - Flag -*******************************/ - -/*------------------- - Element ---------------------*/ - -@spritePath: "@{imagePath}/flags.png"; -@width: 16px; -@height: 11px; -@verticalAlign: baseline; -@margin: 0.5em; \ No newline at end of file diff --git a/src/themes/default/elements/header.overrides b/src/themes/default/elements/header.overrides deleted file mode 100644 index 0e06821..0000000 --- a/src/themes/default/elements/header.overrides +++ /dev/null @@ -1,4 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - diff --git a/src/themes/default/elements/header.variables b/src/themes/default/elements/header.variables deleted file mode 100644 index 885715b..0000000 --- a/src/themes/default/elements/header.variables +++ /dev/null @@ -1,151 +0,0 @@ -/******************************* - Header -*******************************/ - -/*------------------- - Element ---------------------*/ - -@textTransform: none; -@fontFamily: @headerFont; -@fontWeight: @headerFontWeight; -@lineHeight: @headerLineHeight; -@lineHeightOffset: @headerLineHeightOffset; - -@topMargin: @headerTopMargin; -@bottomMargin: @headerBottomMargin; -@margin: @topMargin 0em @bottomMargin; - -@firstMargin: -@lineHeightOffset; -@lastMargin: 0em; -@horizontalPadding: 0em; -@verticalPadding: 0em; - -/* Sub Heading */ -@subHeadingDistance: @2px; -@subHeadingFontSize: @relativeTiny; -@subHeadingFontWeight: @bold; -@subHeadingTextTransform: uppercase; -@subHeadingColor: ''; - -@smallSubHeadingSize: @relativeMini; -@largeSubHeadingSize: @relativeSmall; -@hugeSubHeadingSize: @relativeMedium; - -/* Sub Header */ -@subHeaderMargin: 0em; -@subHeaderLineHeight: 1.2em; -@subHeaderColor: @mutedTextColor; - -/* Icon */ -@iconOpacity: 1; -@iconSize: 1.5em; -@iconOffset: 0em; -@iconMargin: 0.75rem; -@iconAlignment: middle; - -/* Image */ -@imageWidth: 2.5em; -@imageHeight: auto; -@imageOffset: @lineHeightOffset; -@imageMargin: @iconMargin; -@imageAlignment: middle; - -/* Label */ -@labelSize: ''; -@labelDistance: 0.5rem; -@labelVerticalAlign: middle; - -/* Content */ -@contentAlignment: top; -@contentIconAlignment: middle; -@contentImageAlignment: middle; - -/* Paragraph after Header */ -@nextParagraphDistance: 0em; - -/*------------------- - Variations ---------------------*/ - -/* Sizing */ -@hugeFontSize : unit(@h1, em); -@largeFontSize : unit(@h2, em); -@mediumFontSize : unit(@h3, em); -@smallFontSize : unit(@h4, em); -@tinyFontSize : unit(@h5, em); - -/* Sub Header */ -@h1SubHeaderFontSize: @large; -@h2SubHeaderFontSize: @large; -@h3SubHeaderFontSize: @medium; -@h4SubHeaderFontSize: @medium; -@h5SubHeaderFontSize: @small; - -@hugeSubHeaderFontSize : @h1SubHeaderFontSize; -@largeSubHeaderFontSize : @h2SubHeaderFontSize; -@subHeaderFontSize : @h3SubHeaderFontSize; -@smallSubHeaderFontSize : @h4SubHeaderFontSize; -@tinySubHeaderFontSize : @h5SubHeaderFontSize; - -/* Icon Header */ -@iconHeaderSize: 3em; -@iconHeaderOpacity: 1; -@iconHeaderMargin: 0.5rem; -@circularHeaderIconSize: 2em; -@squareHeaderIconSize: 2em; - -/* No Line Height Offset */ -@iconHeaderTopMargin: 2rem; -@iconHeaderBottomMargin: @bottomMargin; -@iconHeaderFirstMargin: 0em; - -/* Divided */ -@dividedBorderWidth: 1px; -@dividedBorder: @dividedBorderWidth solid @borderColor; -@dividedColoredBorderWidth: 2px; - -@dividedBorderPadding: @3px; -@dividedSubHeaderPadding: @3px; -@dividedIconPadding: 0em; - -/* Block */ -@blockBackground: @darkWhite; -@blockBoxShadow: none; -@blockBorderWidth: 1px; -@blockBorder: @blockBorderWidth solid @solidBorderColor; -@blockHorizontalPadding: @medium; -@blockVerticalPadding: @mini; -@blockBorderRadius: @defaultBorderRadius; - -@tinyBlock: @tiny; -@smallBlock: @small; -@mediumBlock: @medium; -@largeBlock: @large; -@hugeBlock: @huge; - -/* Attached */ -@attachedOffset: -1px; -@attachedBoxShadow: none; -@attachedBorder: 1px solid @solidBorderColor; -@attachedVerticalPadding: @blockVerticalPadding; -@attachedHorizontalPadding: @blockHorizontalPadding; -@attachedBackground: @white; -@attachedBorderRadius: @blockBorderRadius; - -@tinyAttachedSize: @relativeTiny; -@smallAttachedSize: @relativeSmall; -@mediumAttachedSize: @relativeMedium; -@largeAttachedSize: @relativeLarge; -@bigAttachedSize: @relativeBig; -@hugeAttachedSize: @relativeHuge; - -/* Inverted */ -@invertedColor: @white; -@invertedSubHeaderColor: @invertedMutedTextColor; -@invertedDividedBorderColor: @whiteBorderColor; -@invertedBlockBackground: @lightBlack @subtleGradient; -@invertedAttachedBackground: @invertedBlockBackground; - -/* Floated */ -@floatedMargin: 0.5em; diff --git a/src/themes/default/elements/icon.overrides b/src/themes/default/elements/icon.overrides deleted file mode 100644 index 2befad7..0000000 --- a/src/themes/default/elements/icon.overrides +++ /dev/null @@ -1,1716 +0,0 @@ -/* - * Font Awesome 5.0.8 by @fontawesome - http://fontawesome.io - @fontawesome - * License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License) - */ - -/******************************* - -Semantic-UI integration of font-awesome : - -///class names are separated -i.icon.circle => i.icon.circle -i.icon.circle-o => i.icon.circle.outline - -//abbreviation are replaced by full letters: -i.icon.ellipsis-h => i.icon.ellipsis.horizontal -i.icon.ellipsis-v => i.icon.ellipsis.vertical -.alpha => .i.icon.alphabet -.asc => .i.icon.ascending -.desc => .i.icon.descending -.alt =>.alternate - -ASCII order is conserved for easier maintenance. - -Icons that only have one style 'outline', 'square' etc do not require this class -for instance `lemon icon` not `lemon outline icon` since there is only one lemon - -*******************************/ - - -/******************************* - Icons -*******************************/ - -/* Deprecated *In/Out Naming Conflict) */ -i.icon.linkedin.in:before { content: "\f0e1"; } -i.icon.zoom.in:before { content: "\f00e"; } -i.icon.zoom.out:before { content: "\f010"; } -i.icon.sign.in:before { content: "\f2f6"; } -i.icon.in.cart:before { content: "\f218"; } -i.icon.log.out:before { content: "\f2f5"; } -i.icon.sign.out:before { content: "\f2f5"; } - -/* Icons */ -i.icon.\35 00px:before { content: "\f26e"; } -i.icon.accessible.icon:before { content: "\f368"; } -i.icon.accusoft:before { content: "\f369"; } -i.icon.address.book:before { content: "\f2b9"; } -i.icon.address.card:before { content: "\f2bb"; } -i.icon.adjust:before { content: "\f042"; } -i.icon.adn:before { content: "\f170"; } -i.icon.adversal:before { content: "\f36a"; } -i.icon.affiliatetheme:before { content: "\f36b"; } -i.icon.algolia:before { content: "\f36c"; } -i.icon.align.center:before { content: "\f037"; } -i.icon.align.justify:before { content: "\f039"; } -i.icon.align.left:before { content: "\f036"; } -i.icon.align.right:before { content: "\f038"; } -i.icon.amazon:before { content: "\f270"; } -i.icon.amazon.pay:before { content: "\f42c"; } -i.icon.ambulance:before { content: "\f0f9"; } -i.icon.american.sign.language.interpreting:before { content: "\f2a3"; } -i.icon.amilia:before { content: "\f36d"; } -i.icon.anchor:before { content: "\f13d"; } -i.icon.android:before { content: "\f17b"; } -i.icon.angellist:before { content: "\f209"; } -i.icon.angle.double.down:before { content: "\f103"; } -i.icon.angle.double.left:before { content: "\f100"; } -i.icon.angle.double.right:before { content: "\f101"; } -i.icon.angle.double.up:before { content: "\f102"; } -i.icon.angle.down:before { content: "\f107"; } -i.icon.angle.left:before { content: "\f104"; } -i.icon.angle.right:before { content: "\f105"; } -i.icon.angle.up:before { content: "\f106"; } -i.icon.angrycreative:before { content: "\f36e"; } -i.icon.angular:before { content: "\f420"; } -i.icon.app.store:before { content: "\f36f"; } -i.icon.app.store.ios:before { content: "\f370"; } -i.icon.apper:before { content: "\f371"; } -i.icon.apple:before { content: "\f179"; } -i.icon.apple.pay:before { content: "\f415"; } -i.icon.archive:before { content: "\f187"; } -i.icon.arrow.alternate.circle.down:before { content: "\f358"; } -i.icon.arrow.alternate.circle.left:before { content: "\f359"; } -i.icon.arrow.alternate.circle.right:before { content: "\f35a"; } -i.icon.arrow.alternate.circle.up:before { content: "\f35b"; } -i.icon.arrow.circle.down:before { content: "\f0ab"; } -i.icon.arrow.circle.left:before { content: "\f0a8"; } -i.icon.arrow.circle.right:before { content: "\f0a9"; } -i.icon.arrow.circle.up:before { content: "\f0aa"; } -i.icon.arrow.down:before { content: "\f063"; } -i.icon.arrow.left:before { content: "\f060"; } -i.icon.arrow.right:before { content: "\f061"; } -i.icon.arrow.up:before { content: "\f062"; } -i.icon.arrows.alternate:before { content: "\f0b2"; } -i.icon.arrows.alternate.horizontal:before { content: "\f337"; } -i.icon.arrows.alternate.vertical:before { content: "\f338"; } -i.icon.assistive.listening.systems:before { content: "\f2a2"; } -i.icon.asterisk:before { content: "\f069"; } -i.icon.asymmetrik:before { content: "\f372"; } -i.icon.at:before { content: "\f1fa"; } -i.icon.audible:before { content: "\f373"; } -i.icon.audio.description:before { content: "\f29e"; } -i.icon.autoprefixer:before { content: "\f41c"; } -i.icon.avianex:before { content: "\f374"; } -i.icon.aviato:before { content: "\f421"; } -i.icon.aws:before { content: "\f375"; } -i.icon.backward:before { content: "\f04a"; } -i.icon.balance.scale:before { content: "\f24e"; } -i.icon.ban:before { content: "\f05e"; } -i.icon.band.aid:before { content: "\f462"; } -i.icon.bandcamp:before { content: "\f2d5"; } -i.icon.barcode:before { content: "\f02a"; } -i.icon.bars:before { content: "\f0c9"; } -i.icon.baseball.ball:before { content: "\f433"; } -i.icon.basketball.ball:before { content: "\f434"; } -i.icon.bath:before { content: "\f2cd"; } -i.icon.battery.empty:before { content: "\f244"; } -i.icon.battery.full:before { content: "\f240"; } -i.icon.battery.half:before { content: "\f242"; } -i.icon.battery.quarter:before { content: "\f243"; } -i.icon.battery.three.quarters:before { content: "\f241"; } -i.icon.bed:before { content: "\f236"; } -i.icon.beer:before { content: "\f0fc"; } -i.icon.behance:before { content: "\f1b4"; } -i.icon.behance.square:before { content: "\f1b5"; } -i.icon.bell:before { content: "\f0f3"; } -i.icon.bell.slash:before { content: "\f1f6"; } -i.icon.bicycle:before { content: "\f206"; } -i.icon.bimobject:before { content: "\f378"; } -i.icon.binoculars:before { content: "\f1e5"; } -i.icon.birthday.cake:before { content: "\f1fd"; } -i.icon.bitbucket:before { content: "\f171"; } -i.icon.bitcoin:before { content: "\f379"; } -i.icon.bity:before { content: "\f37a"; } -i.icon.black.tie:before { content: "\f27e"; } -i.icon.blackberry:before { content: "\f37b"; } -i.icon.blind:before { content: "\f29d"; } -i.icon.blogger:before { content: "\f37c"; } -i.icon.blogger.b:before { content: "\f37d"; } -i.icon.bluetooth:before { content: "\f293"; } -i.icon.bluetooth.b:before { content: "\f294"; } -i.icon.bold:before { content: "\f032"; } -i.icon.bolt:before { content: "\f0e7"; } -i.icon.bomb:before { content: "\f1e2"; } -i.icon.book:before { content: "\f02d"; } -i.icon.bookmark:before { content: "\f02e"; } -i.icon.bowling.ball:before { content: "\f436"; } -i.icon.box:before { content: "\f466"; } -i.icon.boxes:before { content: "\f468"; } -i.icon.braille:before { content: "\f2a1"; } -i.icon.briefcase:before { content: "\f0b1"; } -i.icon.btc:before { content: "\f15a"; } -i.icon.bug:before { content: "\f188"; } -i.icon.building:before { content: "\f1ad"; } -i.icon.bullhorn:before { content: "\f0a1"; } -i.icon.bullseye:before { content: "\f140"; } -i.icon.buromobelexperte:before { content: "\f37f"; } -i.icon.bus:before { content: "\f207"; } -i.icon.buysellads:before { content: "\f20d"; } -i.icon.calculator:before { content: "\f1ec"; } -i.icon.calendar:before { content: "\f133"; } -i.icon.calendar.alternate:before { content: "\f073"; } -i.icon.calendar.check:before { content: "\f274"; } -i.icon.calendar.minus:before { content: "\f272"; } -i.icon.calendar.plus:before { content: "\f271"; } -i.icon.calendar.times:before { content: "\f273"; } -i.icon.camera:before { content: "\f030"; } -i.icon.camera.retro:before { content: "\f083"; } -i.icon.car:before { content: "\f1b9"; } -i.icon.caret.down:before { content: "\f0d7"; } -i.icon.caret.left:before { content: "\f0d9"; } -i.icon.caret.right:before { content: "\f0da"; } -i.icon.caret.square.down:before { content: "\f150"; } -i.icon.caret.square.left:before { content: "\f191"; } -i.icon.caret.square.right:before { content: "\f152"; } -i.icon.caret.square.up:before { content: "\f151"; } -i.icon.caret.up:before { content: "\f0d8"; } -i.icon.cart.arrow.down:before { content: "\f218"; } -i.icon.cart.plus:before { content: "\f217"; } -i.icon.cc.amazon.pay:before { content: "\f42d"; } -i.icon.cc.amex:before { content: "\f1f3"; } -i.icon.cc.apple.pay:before { content: "\f416"; } -i.icon.cc.diners.club:before { content: "\f24c"; } -i.icon.cc.discover:before { content: "\f1f2"; } -i.icon.cc.jcb:before { content: "\f24b"; } -i.icon.cc.mastercard:before { content: "\f1f1"; } -i.icon.cc.paypal:before { content: "\f1f4"; } -i.icon.cc.stripe:before { content: "\f1f5"; } -i.icon.cc.visa:before { content: "\f1f0"; } -i.icon.centercode:before { content: "\f380"; } -i.icon.certificate:before { content: "\f0a3"; } -i.icon.chart.area:before { content: "\f1fe"; } -i.icon.chart.bar:before { content: "\f080"; } -i.icon.chart.line:before { content: "\f201"; } -i.icon.chart.pie:before { content: "\f200"; } -i.icon.check:before { content: "\f00c"; } -i.icon.check.circle:before { content: "\f058"; } -i.icon.check.square:before { content: "\f14a"; } -i.icon.chess:before { content: "\f439"; } -i.icon.chess.bishop:before { content: "\f43a"; } -i.icon.chess.board:before { content: "\f43c"; } -i.icon.chess.king:before { content: "\f43f"; } -i.icon.chess.knight:before { content: "\f441"; } -i.icon.chess.pawn:before { content: "\f443"; } -i.icon.chess.queen:before { content: "\f445"; } -i.icon.chess.rook:before { content: "\f447"; } -i.icon.chevron.circle.down:before { content: "\f13a"; } -i.icon.chevron.circle.left:before { content: "\f137"; } -i.icon.chevron.circle.right:before { content: "\f138"; } -i.icon.chevron.circle.up:before { content: "\f139"; } -i.icon.chevron.down:before { content: "\f078"; } -i.icon.chevron.left:before { content: "\f053"; } -i.icon.chevron.right:before { content: "\f054"; } -i.icon.chevron.up:before { content: "\f077"; } -i.icon.child:before { content: "\f1ae"; } -i.icon.chrome:before { content: "\f268"; } -i.icon.circle:before { content: "\f111"; } -i.icon.circle.notch:before { content: "\f1ce"; } -i.icon.clipboard:before { content: "\f328"; } -i.icon.clipboard.check:before { content: "\f46c"; } -i.icon.clipboard.list:before { content: "\f46d"; } -i.icon.clock:before { content: "\f017"; } -i.icon.clone:before { content: "\f24d"; } -i.icon.closed.captioning:before { content: "\f20a"; } -i.icon.cloud:before { content: "\f0c2"; } -i.icon.cloudscale:before { content: "\f383"; } -i.icon.cloudsmith:before { content: "\f384"; } -i.icon.cloudversify:before { content: "\f385"; } -i.icon.code:before { content: "\f121"; } -i.icon.code.branch:before { content: "\f126"; } -i.icon.codepen:before { content: "\f1cb"; } -i.icon.codiepie:before { content: "\f284"; } -i.icon.coffee:before { content: "\f0f4"; } -i.icon.cog:before { content: "\f013"; } -i.icon.cogs:before { content: "\f085"; } -i.icon.columns:before { content: "\f0db"; } -i.icon.comment:before { content: "\f075"; } -i.icon.comment.alternate:before { content: "\f27a"; } -i.icon.comments:before { content: "\f086"; } -i.icon.compass:before { content: "\f14e"; } -i.icon.compress:before { content: "\f066"; } -i.icon.connectdevelop:before { content: "\f20e"; } -i.icon.contao:before { content: "\f26d"; } -i.icon.copy:before { content: "\f0c5"; } -i.icon.copyright:before { content: "\f1f9"; } -i.icon.cpanel:before { content: "\f388"; } -i.icon.creative.commons:before { content: "\f25e"; } -i.icon.credit.card:before { content: "\f09d"; } -i.icon.crop:before { content: "\f125"; } -i.icon.crosshairs:before { content: "\f05b"; } -i.icon.css3:before { content: "\f13c"; } -i.icon.css3.alternate:before { content: "\f38b"; } -i.icon.cube:before { content: "\f1b2"; } -i.icon.cubes:before { content: "\f1b3"; } -i.icon.cut:before { content: "\f0c4"; } -i.icon.cuttlefish:before { content: "\f38c"; } -i.icon.d.and.d:before { content: "\f38d"; } -i.icon.dashcube:before { content: "\f210"; } -i.icon.database:before { content: "\f1c0"; } -i.icon.deaf:before { content: "\f2a4"; } -i.icon.delicious:before { content: "\f1a5"; } -i.icon.deploydog:before { content: "\f38e"; } -i.icon.deskpro:before { content: "\f38f"; } -i.icon.desktop:before { content: "\f108"; } -i.icon.deviantart:before { content: "\f1bd"; } -i.icon.digg:before { content: "\f1a6"; } -i.icon.digital.ocean:before { content: "\f391"; } -i.icon.discord:before { content: "\f392"; } -i.icon.discourse:before { content: "\f393"; } -i.icon.dna:before { content: "\f471"; } -i.icon.dochub:before { content: "\f394"; } -i.icon.docker:before { content: "\f395"; } -i.icon.dollar.sign:before { content: "\f155"; } -i.icon.dolly:before { content: "\f472"; } -i.icon.dolly.flatbed:before { content: "\f474"; } -i.icon.dot.circle:before { content: "\f192"; } -i.icon.download:before { content: "\f019"; } -i.icon.draft2digital:before { content: "\f396"; } -i.icon.dribbble:before { content: "\f17d"; } -i.icon.dribbble.square:before { content: "\f397"; } -i.icon.dropbox:before { content: "\f16b"; } -i.icon.drupal:before { content: "\f1a9"; } -i.icon.dyalog:before { content: "\f399"; } -i.icon.earlybirds:before { content: "\f39a"; } -i.icon.edge:before { content: "\f282"; } -i.icon.edit:before { content: "\f044"; } -i.icon.eject:before { content: "\f052"; } -i.icon.elementor:before { content: "\f430"; } -i.icon.ellipsis.horizontal:before { content: "\f141"; } -i.icon.ellipsis.vertical:before { content: "\f142"; } -i.icon.ember:before { content: "\f423"; } -i.icon.empire:before { content: "\f1d1"; } -i.icon.envelope:before { content: "\f0e0"; } -i.icon.envelope.open:before { content: "\f2b6"; } -i.icon.envelope.square:before { content: "\f199"; } -i.icon.envira:before { content: "\f299"; } -i.icon.eraser:before { content: "\f12d"; } -i.icon.erlang:before { content: "\f39d"; } -i.icon.ethereum:before { content: "\f42e"; } -i.icon.etsy:before { content: "\f2d7"; } -i.icon.euro.sign:before { content: "\f153"; } -i.icon.exchange.alternate:before { content: "\f362"; } -i.icon.exclamation:before { content: "\f12a"; } -i.icon.exclamation.circle:before { content: "\f06a"; } -i.icon.exclamation.triangle:before { content: "\f071"; } -i.icon.expand:before { content: "\f065"; } -i.icon.expand.arrows.alternate:before { content: "\f31e"; } -i.icon.expeditedssl:before { content: "\f23e"; } -i.icon.external.alternate:before { content: "\f35d"; } -i.icon.external.square.alternate:before { content: "\f360"; } -i.icon.eye:before { content: "\f06e"; } -i.icon.eye.dropper:before { content: "\f1fb"; } -i.icon.eye.slash:before { content: "\f070"; } -i.icon.facebook:before { content: "\f09a"; } -i.icon.facebook.f:before { content: "\f39e"; } -i.icon.facebook.messenger:before { content: "\f39f"; } -i.icon.facebook.square:before { content: "\f082"; } -i.icon.fast.backward:before { content: "\f049"; } -i.icon.fast.forward:before { content: "\f050"; } -i.icon.fax:before { content: "\f1ac"; } -i.icon.female:before { content: "\f182"; } -i.icon.fighter.jet:before { content: "\f0fb"; } -i.icon.file:before { content: "\f15b"; } -i.icon.file.alternate:before { content: "\f15c"; } -i.icon.file.archive:before { content: "\f1c6"; } -i.icon.file.audio:before { content: "\f1c7"; } -i.icon.file.code:before { content: "\f1c9"; } -i.icon.file.excel:before { content: "\f1c3"; } -i.icon.file.image:before { content: "\f1c5"; } -i.icon.file.pdf:before { content: "\f1c1"; } -i.icon.file.powerpoint:before { content: "\f1c4"; } -i.icon.file.video:before { content: "\f1c8"; } -i.icon.file.word:before { content: "\f1c2"; } -i.icon.film:before { content: "\f008"; } -i.icon.filter:before { content: "\f0b0"; } -i.icon.fire:before { content: "\f06d"; } -i.icon.fire.extinguisher:before { content: "\f134"; } -i.icon.firefox:before { content: "\f269"; } -i.icon.first.aid:before { content: "\f479"; } -i.icon.first.order:before { content: "\f2b0"; } -i.icon.firstdraft:before { content: "\f3a1"; } -i.icon.flag:before { content: "\f024"; } -i.icon.flag.checkered:before { content: "\f11e"; } -i.icon.flask:before { content: "\f0c3"; } -i.icon.flickr:before { content: "\f16e"; } -i.icon.flipboard:before { content: "\f44d"; } -i.icon.fly:before { content: "\f417"; } -i.icon.folder:before { content: "\f07b"; } -i.icon.folder.open:before { content: "\f07c"; } -i.icon.font:before { content: "\f031"; } -i.icon.font.awesome:before { content: "\f2b4"; } -i.icon.font.awesome.alternate:before { content: "\f35c"; } -i.icon.font.awesome.flag:before { content: "\f425"; } -i.icon.fonticons:before { content: "\f280"; } -i.icon.fonticons.fi:before { content: "\f3a2"; } -i.icon.football.ball:before { content: "\f44e"; } -i.icon.fort.awesome:before { content: "\f286"; } -i.icon.fort.awesome.alternate:before { content: "\f3a3"; } -i.icon.forumbee:before { content: "\f211"; } -i.icon.forward:before { content: "\f04e"; } -i.icon.foursquare:before { content: "\f180"; } -i.icon.free.code.camp:before { content: "\f2c5"; } -i.icon.freebsd:before { content: "\f3a4"; } -i.icon.frown:before { content: "\f119"; } -i.icon.futbol:before { content: "\f1e3"; } -i.icon.gamepad:before { content: "\f11b"; } -i.icon.gavel:before { content: "\f0e3"; } -i.icon.gem:before { content: "\f3a5"; } -i.icon.genderless:before { content: "\f22d"; } -i.icon.get.pocket:before { content: "\f265"; } -i.icon.gg:before { content: "\f260"; } -i.icon.gg.circle:before { content: "\f261"; } -i.icon.gift:before { content: "\f06b"; } -i.icon.git:before { content: "\f1d3"; } -i.icon.git.square:before { content: "\f1d2"; } -i.icon.github:before { content: "\f09b"; } -i.icon.github.alternate:before { content: "\f113"; } -i.icon.github.square:before { content: "\f092"; } -i.icon.gitkraken:before { content: "\f3a6"; } -i.icon.gitlab:before { content: "\f296"; } -i.icon.gitter:before { content: "\f426"; } -i.icon.glass.martini:before { content: "\f000"; } -i.icon.glide:before { content: "\f2a5"; } -i.icon.glide.g:before { content: "\f2a6"; } -i.icon.globe:before { content: "\f0ac"; } -i.icon.gofore:before { content: "\f3a7"; } -i.icon.golf.ball:before { content: "\f450"; } -i.icon.goodreads:before { content: "\f3a8"; } -i.icon.goodreads.g:before { content: "\f3a9"; } -i.icon.google:before { content: "\f1a0"; } -i.icon.google.drive:before { content: "\f3aa"; } -i.icon.google.play:before { content: "\f3ab"; } -i.icon.google.plus:before { content: "\f2b3"; } -i.icon.google.plus.g:before { content: "\f0d5"; } -i.icon.google.plus.square:before { content: "\f0d4"; } -i.icon.google.wallet:before { content: "\f1ee"; } -i.icon.graduation.cap:before { content: "\f19d"; } -i.icon.gratipay:before { content: "\f184"; } -i.icon.grav:before { content: "\f2d6"; } -i.icon.gripfire:before { content: "\f3ac"; } -i.icon.grunt:before { content: "\f3ad"; } -i.icon.gulp:before { content: "\f3ae"; } -i.icon.h.square:before { content: "\f0fd"; } -i.icon.hacker.news:before { content: "\f1d4"; } -i.icon.hacker.news.square:before { content: "\f3af"; } -i.icon.hand.lizard:before { content: "\f258"; } -i.icon.hand.paper:before { content: "\f256"; } -i.icon.hand.peace:before { content: "\f25b"; } -i.icon.hand.point.down:before { content: "\f0a7"; } -i.icon.hand.point.left:before { content: "\f0a5"; } -i.icon.hand.point.right:before { content: "\f0a4"; } -i.icon.hand.point.up:before { content: "\f0a6"; } -i.icon.hand.pointer:before { content: "\f25a"; } -i.icon.hand.rock:before { content: "\f255"; } -i.icon.hand.scissors:before { content: "\f257"; } -i.icon.hand.spock:before { content: "\f259"; } -i.icon.handshake:before { content: "\f2b5"; } -i.icon.hashtag:before { content: "\f292"; } -i.icon.hdd:before { content: "\f0a0"; } -i.icon.heading:before { content: "\f1dc"; } -i.icon.headphones:before { content: "\f025"; } -i.icon.heart:before { content: "\f004"; } -i.icon.heartbeat:before { content: "\f21e"; } -i.icon.hips:before { content: "\f452"; } -i.icon.hire.a.helper:before { content: "\f3b0"; } -i.icon.history:before { content: "\f1da"; } -i.icon.hockey.puck:before { content: "\f453"; } -i.icon.home:before { content: "\f015"; } -i.icon.hooli:before { content: "\f427"; } -i.icon.hospital:before { content: "\f0f8"; } -i.icon.hospital.symbol:before { content: "\f47e"; } -i.icon.hotjar:before { content: "\f3b1"; } -i.icon.hourglass:before { content: "\f254"; } -i.icon.hourglass.end:before { content: "\f253"; } -i.icon.hourglass.half:before { content: "\f252"; } -i.icon.hourglass.start:before { content: "\f251"; } -i.icon.houzz:before { content: "\f27c"; } -i.icon.html5:before { content: "\f13b"; } -i.icon.hubspot:before { content: "\f3b2"; } -i.icon.i.cursor:before { content: "\f246"; } -i.icon.id.badge:before { content: "\f2c1"; } -i.icon.id.card:before { content: "\f2c2"; } -i.icon.image:before { content: "\f03e"; } -i.icon.images:before { content: "\f302"; } -i.icon.imdb:before { content: "\f2d8"; } -i.icon.inbox:before { content: "\f01c"; } -i.icon.indent:before { content: "\f03c"; } -i.icon.industry:before { content: "\f275"; } -i.icon.info:before { content: "\f129"; } -i.icon.info.circle:before { content: "\f05a"; } -i.icon.instagram:before { content: "\f16d"; } -i.icon.internet.explorer:before { content: "\f26b"; } -i.icon.ioxhost:before { content: "\f208"; } -i.icon.italic:before { content: "\f033"; } -i.icon.itunes:before { content: "\f3b4"; } -i.icon.itunes.note:before { content: "\f3b5"; } -i.icon.jenkins:before { content: "\f3b6"; } -i.icon.joget:before { content: "\f3b7"; } -i.icon.joomla:before { content: "\f1aa"; } -i.icon.js:before { content: "\f3b8"; } -i.icon.js.square:before { content: "\f3b9"; } -i.icon.jsfiddle:before { content: "\f1cc"; } -i.icon.key:before { content: "\f084"; } -i.icon.keyboard:before { content: "\f11c"; } -i.icon.keycdn:before { content: "\f3ba"; } -i.icon.kickstarter:before { content: "\f3bb"; } -i.icon.kickstarter.k:before { content: "\f3bc"; } -i.icon.korvue:before { content: "\f42f"; } -i.icon.language:before { content: "\f1ab"; } -i.icon.laptop:before { content: "\f109"; } -i.icon.laravel:before { content: "\f3bd"; } -i.icon.lastfm:before { content: "\f202"; } -i.icon.lastfm.square:before { content: "\f203"; } -i.icon.leaf:before { content: "\f06c"; } -i.icon.leanpub:before { content: "\f212"; } -i.icon.lemon:before { content: "\f094"; } -i.icon.less:before { content: "\f41d"; } -i.icon.level.down.alternate:before { content: "\f3be"; } -i.icon.level.up.alternate:before { content: "\f3bf"; } -i.icon.life.ring:before { content: "\f1cd"; } -i.icon.lightbulb:before { content: "\f0eb"; } -i.icon.linechat:before { content: "\f3c0"; } -i.icon.linkify:before { content: "\f0c1"; } -i.icon.linkedin:before { content: "\f08c"; } -i.icon.linkedin.alt:before { content: "\f0e1"; } -i.icon.linode:before { content: "\f2b8"; } -i.icon.linux:before { content: "\f17c"; } -i.icon.lira.sign:before { content: "\f195"; } -i.icon.list:before { content: "\f03a"; } -i.icon.list.alternate:before { content: "\f022"; } -i.icon.list.ol:before { content: "\f0cb"; } -i.icon.list.ul:before { content: "\f0ca"; } -i.icon.location.arrow:before { content: "\f124"; } -i.icon.lock:before { content: "\f023"; } -i.icon.lock.open:before { content: "\f3c1"; } -i.icon.long.arrow.alternate.down:before { content: "\f309"; } -i.icon.long.arrow.alternate.left:before { content: "\f30a"; } -i.icon.long.arrow.alternate.right:before { content: "\f30b"; } -i.icon.long.arrow.alternate.up:before { content: "\f30c"; } -i.icon.low.vision:before { content: "\f2a8"; } -i.icon.lyft:before { content: "\f3c3"; } -i.icon.magento:before { content: "\f3c4"; } -i.icon.magic:before { content: "\f0d0"; } -i.icon.magnet:before { content: "\f076"; } -i.icon.male:before { content: "\f183"; } -i.icon.map:before { content: "\f279"; } -i.icon.map.marker:before { content: "\f041"; } -i.icon.map.marker.alternate:before { content: "\f3c5"; } -i.icon.map.pin:before { content: "\f276"; } -i.icon.map.signs:before { content: "\f277"; } -i.icon.mars:before { content: "\f222"; } -i.icon.mars.double:before { content: "\f227"; } -i.icon.mars.stroke:before { content: "\f229"; } -i.icon.mars.stroke.horizontal:before { content: "\f22b"; } -i.icon.mars.stroke.vertical:before { content: "\f22a"; } -i.icon.maxcdn:before { content: "\f136"; } -i.icon.medapps:before { content: "\f3c6"; } -i.icon.medium:before { content: "\f23a"; } -i.icon.medium.m:before { content: "\f3c7"; } -i.icon.medkit:before { content: "\f0fa"; } -i.icon.medrt:before { content: "\f3c8"; } -i.icon.meetup:before { content: "\f2e0"; } -i.icon.meh:before { content: "\f11a"; } -i.icon.mercury:before { content: "\f223"; } -i.icon.microchip:before { content: "\f2db"; } -i.icon.microphone:before { content: "\f130"; } -i.icon.microphone.slash:before { content: "\f131"; } -i.icon.microsoft:before { content: "\f3ca"; } -i.icon.minus:before { content: "\f068"; } -i.icon.minus.circle:before { content: "\f056"; } -i.icon.minus.square:before { content: "\f146"; } -i.icon.mix:before { content: "\f3cb"; } -i.icon.mixcloud:before { content: "\f289"; } -i.icon.mizuni:before { content: "\f3cc"; } -i.icon.mobile:before { content: "\f10b"; } -i.icon.mobile.alternate:before { content: "\f3cd"; } -i.icon.modx:before { content: "\f285"; } -i.icon.monero:before { content: "\f3d0"; } -i.icon.money.bill.alternate:before { content: "\f3d1"; } -i.icon.moon:before { content: "\f186"; } -i.icon.motorcycle:before { content: "\f21c"; } -i.icon.mouse.pointer:before { content: "\f245"; } -i.icon.music:before { content: "\f001"; } -i.icon.napster:before { content: "\f3d2"; } -i.icon.neuter:before { content: "\f22c"; } -i.icon.newspaper:before { content: "\f1ea"; } -i.icon.nintendo.switch:before { content: "\f418"; } -i.icon.node:before { content: "\f419"; } -i.icon.node.js:before { content: "\f3d3"; } -i.icon.npm:before { content: "\f3d4"; } -i.icon.ns8:before { content: "\f3d5"; } -i.icon.nutritionix:before { content: "\f3d6"; } -i.icon.object.group:before { content: "\f247"; } -i.icon.object.ungroup:before { content: "\f248"; } -i.icon.odnoklassniki:before { content: "\f263"; } -i.icon.odnoklassniki.square:before { content: "\f264"; } -i.icon.opencart:before { content: "\f23d"; } -i.icon.openid:before { content: "\f19b"; } -i.icon.opera:before { content: "\f26a"; } -i.icon.optin.monster:before { content: "\f23c"; } -i.icon.osi:before { content: "\f41a"; } -i.icon.outdent:before { content: "\f03b"; } -i.icon.page4:before { content: "\f3d7"; } -i.icon.pagelines:before { content: "\f18c"; } -i.icon.paint.brush:before { content: "\f1fc"; } -i.icon.palfed:before { content: "\f3d8"; } -i.icon.pallet:before { content: "\f482"; } -i.icon.paper.plane:before { content: "\f1d8"; } -i.icon.paperclip:before { content: "\f0c6"; } -i.icon.paragraph:before { content: "\f1dd"; } -i.icon.paste:before { content: "\f0ea"; } -i.icon.patreon:before { content: "\f3d9"; } -i.icon.pause:before { content: "\f04c"; } -i.icon.pause.circle:before { content: "\f28b"; } -i.icon.paw:before { content: "\f1b0"; } -i.icon.paypal:before { content: "\f1ed"; } -i.icon.pen.square:before { content: "\f14b"; } -i.icon.pencil.alternate:before { content: "\f303"; } -i.icon.percent:before { content: "\f295"; } -i.icon.periscope:before { content: "\f3da"; } -i.icon.phabricator:before { content: "\f3db"; } -i.icon.phoenix.framework:before { content: "\f3dc"; } -i.icon.phone:before { content: "\f095"; } -i.icon.phone.square:before { content: "\f098"; } -i.icon.phone.volume:before { content: "\f2a0"; } -i.icon.php:before { content: "\f457"; } -i.icon.pied.piper:before { content: "\f2ae"; } -i.icon.pied.piper.alternate:before { content: "\f1a8"; } -i.icon.pied.piper.pp:before { content: "\f1a7"; } -i.icon.pills:before { content: "\f484"; } -i.icon.pinterest:before { content: "\f0d2"; } -i.icon.pinterest.p:before { content: "\f231"; } -i.icon.pinterest.square:before { content: "\f0d3"; } -i.icon.plane:before { content: "\f072"; } -i.icon.play:before { content: "\f04b"; } -i.icon.play.circle:before { content: "\f144"; } -i.icon.playstation:before { content: "\f3df"; } -i.icon.plug:before { content: "\f1e6"; } -i.icon.plus:before { content: "\f067"; } -i.icon.plus.circle:before { content: "\f055"; } -i.icon.plus.square:before { content: "\f0fe"; } -i.icon.podcast:before { content: "\f2ce"; } -i.icon.pound.sign:before { content: "\f154"; } -i.icon.power.off:before { content: "\f011"; } -i.icon.print:before { content: "\f02f"; } -i.icon.product.hunt:before { content: "\f288"; } -i.icon.pushed:before { content: "\f3e1"; } -i.icon.puzzle.piece:before { content: "\f12e"; } -i.icon.python:before { content: "\f3e2"; } -i.icon.qq:before { content: "\f1d6"; } -i.icon.qrcode:before { content: "\f029"; } -i.icon.question:before { content: "\f128"; } -i.icon.question.circle:before { content: "\f059"; } -i.icon.quidditch:before { content: "\f458"; } -i.icon.quinscape:before { content: "\f459"; } -i.icon.quora:before { content: "\f2c4"; } -i.icon.quote.left:before { content: "\f10d"; } -i.icon.quote.right:before { content: "\f10e"; } -i.icon.random:before { content: "\f074"; } -i.icon.ravelry:before { content: "\f2d9"; } -i.icon.react:before { content: "\f41b"; } -i.icon.rebel:before { content: "\f1d0"; } -i.icon.recycle:before { content: "\f1b8"; } -i.icon.redriver:before { content: "\f3e3"; } -i.icon.reddit:before { content: "\f1a1"; } -i.icon.reddit.alien:before { content: "\f281"; } -i.icon.reddit.square:before { content: "\f1a2"; } -i.icon.redo:before { content: "\f01e"; } -i.icon.redo.alternate:before { content: "\f2f9"; } -i.icon.registered:before { content: "\f25d"; } -i.icon.rendact:before { content: "\f3e4"; } -i.icon.renren:before { content: "\f18b"; } -i.icon.reply:before { content: "\f3e5"; } -i.icon.reply.all:before { content: "\f122"; } -i.icon.replyd:before { content: "\f3e6"; } -i.icon.resolving:before { content: "\f3e7"; } -i.icon.retweet:before { content: "\f079"; } -i.icon.road:before { content: "\f018"; } -i.icon.rocket:before { content: "\f135"; } -i.icon.rocketchat:before { content: "\f3e8"; } -i.icon.rockrms:before { content: "\f3e9"; } -i.icon.rss:before { content: "\f09e"; } -i.icon.rss.square:before { content: "\f143"; } -i.icon.ruble.sign:before { content: "\f158"; } -i.icon.rupee.sign:before { content: "\f156"; } -i.icon.safari:before { content: "\f267"; } -i.icon.sass:before { content: "\f41e"; } -i.icon.save:before { content: "\f0c7"; } -i.icon.schlix:before { content: "\f3ea"; } -i.icon.scribd:before { content: "\f28a"; } -i.icon.search:before { content: "\f002"; } -i.icon.search.minus:before { content: "\f010"; } -i.icon.search.plus:before { content: "\f00e"; } -i.icon.searchengin:before { content: "\f3eb"; } -i.icon.sellcast:before { content: "\f2da"; } -i.icon.sellsy:before { content: "\f213"; } -i.icon.server:before { content: "\f233"; } -i.icon.servicestack:before { content: "\f3ec"; } -i.icon.share:before { content: "\f064"; } -i.icon.share.alternate:before { content: "\f1e0"; } -i.icon.share.alternate.square:before { content: "\f1e1"; } -i.icon.share.square:before { content: "\f14d"; } -i.icon.shekel.sign:before { content: "\f20b"; } -i.icon.shield.alternate:before { content: "\f3ed"; } -i.icon.ship:before { content: "\f21a"; } -i.icon.shipping.fast:before { content: "\f48b"; } -i.icon.shirtsinbulk:before { content: "\f214"; } -i.icon.shopping.bag:before { content: "\f290"; } -i.icon.shopping.basket:before { content: "\f291"; } -i.icon.shopping.cart:before { content: "\f07a"; } -i.icon.shower:before { content: "\f2cc"; } -i.icon.sign.language:before { content: "\f2a7"; } -i.icon.signal:before { content: "\f012"; } -i.icon.simplybuilt:before { content: "\f215"; } -i.icon.sistrix:before { content: "\f3ee"; } -i.icon.sitemap:before { content: "\f0e8"; } -i.icon.skyatlas:before { content: "\f216"; } -i.icon.skype:before { content: "\f17e"; } -i.icon.slack:before { content: "\f198"; } -i.icon.slack.hash:before { content: "\f3ef"; } -i.icon.sliders.horizontal:before { content: "\f1de"; } -i.icon.slideshare:before { content: "\f1e7"; } -i.icon.smile:before { content: "\f118"; } -i.icon.snapchat:before { content: "\f2ab"; } -i.icon.snapchat.ghost:before { content: "\f2ac"; } -i.icon.snapchat.square:before { content: "\f2ad"; } -i.icon.snowflake:before { content: "\f2dc"; } -i.icon.sort:before { content: "\f0dc"; } -i.icon.sort.alphabet.down:before { content: "\f15d"; } -i.icon.sort.alphabet.up:before { content: "\f15e"; } -i.icon.sort.amount.down:before { content: "\f160"; } -i.icon.sort.amount.up:before { content: "\f161"; } -i.icon.sort.down:before { content: "\f0dd"; } -i.icon.sort.numeric.down:before { content: "\f162"; } -i.icon.sort.numeric.up:before { content: "\f163"; } -i.icon.sort.up:before { content: "\f0de"; } -i.icon.soundcloud:before { content: "\f1be"; } -i.icon.space.shuttle:before { content: "\f197"; } -i.icon.speakap:before { content: "\f3f3"; } -i.icon.spinner:before { content: "\f110"; } -i.icon.spotify:before { content: "\f1bc"; } -i.icon.square:before { content: "\f0c8"; } -i.icon.square.full:before { content: "\f45c"; } -i.icon.stack.exchange:before { content: "\f18d"; } -i.icon.stack.overflow:before { content: "\f16c"; } -i.icon.star:before { content: "\f005"; } -i.icon.star.half:before { content: "\f089"; } -i.icon.staylinked:before { content: "\f3f5"; } -i.icon.steam:before { content: "\f1b6"; } -i.icon.steam.square:before { content: "\f1b7"; } -i.icon.steam.symbol:before { content: "\f3f6"; } -i.icon.step.backward:before { content: "\f048"; } -i.icon.step.forward:before { content: "\f051"; } -i.icon.stethoscope:before { content: "\f0f1"; } -i.icon.sticker.mule:before { content: "\f3f7"; } -i.icon.sticky.note:before { content: "\f249"; } -i.icon.stop:before { content: "\f04d"; } -i.icon.stop.circle:before { content: "\f28d"; } -i.icon.stopwatch:before { content: "\f2f2"; } -i.icon.strava:before { content: "\f428"; } -i.icon.street.view:before { content: "\f21d"; } -i.icon.strikethrough:before { content: "\f0cc"; } -i.icon.stripe:before { content: "\f429"; } -i.icon.stripe.s:before { content: "\f42a"; } -i.icon.studiovinari:before { content: "\f3f8"; } -i.icon.stumbleupon:before { content: "\f1a4"; } -i.icon.stumbleupon.circle:before { content: "\f1a3"; } -i.icon.subscript:before { content: "\f12c"; } -i.icon.subway:before { content: "\f239"; } -i.icon.suitcase:before { content: "\f0f2"; } -i.icon.sun:before { content: "\f185"; } -i.icon.superpowers:before { content: "\f2dd"; } -i.icon.superscript:before { content: "\f12b"; } -i.icon.supple:before { content: "\f3f9"; } -i.icon.sync:before { content: "\f021"; } -i.icon.sync.alternate:before { content: "\f2f1"; } -i.icon.syringe:before { content: "\f48e"; } -i.icon.table:before { content: "\f0ce"; } -i.icon.table.tennis:before { content: "\f45d"; } -i.icon.tablet:before { content: "\f10a"; } -i.icon.tablet.alternate:before { content: "\f3fa"; } -i.icon.tachometer.alternate:before { content: "\f3fd"; } -i.icon.tag:before { content: "\f02b"; } -i.icon.tags:before { content: "\f02c"; } -i.icon.tasks:before { content: "\f0ae"; } -i.icon.taxi:before { content: "\f1ba"; } -i.icon.telegram:before { content: "\f2c6"; } -i.icon.telegram.plane:before { content: "\f3fe"; } -i.icon.tencent.weibo:before { content: "\f1d5"; } -i.icon.terminal:before { content: "\f120"; } -i.icon.text.height:before { content: "\f034"; } -i.icon.text.width:before { content: "\f035"; } -i.icon.th:before { content: "\f00a"; } -i.icon.th.large:before { content: "\f009"; } -i.icon.th.list:before { content: "\f00b"; } -i.icon.themeisle:before { content: "\f2b2"; } -i.icon.thermometer:before { content: "\f491"; } -i.icon.thermometer.empty:before { content: "\f2cb"; } -i.icon.thermometer.full:before { content: "\f2c7"; } -i.icon.thermometer.half:before { content: "\f2c9"; } -i.icon.thermometer.quarter:before { content: "\f2ca"; } -i.icon.thermometer.three.quarters:before { content: "\f2c8"; } -i.icon.thumbs.down:before { content: "\f165"; } -i.icon.thumbs.up:before { content: "\f164"; } -i.icon.thumbtack:before { content: "\f08d"; } -i.icon.ticket.alternate:before { content: "\f3ff"; } -i.icon.times:before { content: "\f00d"; } -i.icon.times.circle:before { content: "\f057"; } -i.icon.tint:before { content: "\f043"; } -i.icon.toggle.off:before { content: "\f204"; } -i.icon.toggle.on:before { content: "\f205"; } -i.icon.trademark:before { content: "\f25c"; } -i.icon.train:before { content: "\f238"; } -i.icon.transgender:before { content: "\f224"; } -i.icon.transgender.alternate:before { content: "\f225"; } -i.icon.trash:before { content: "\f1f8"; } -i.icon.trash.alternate:before { content: "\f2ed"; } -i.icon.tree:before { content: "\f1bb"; } -i.icon.trello:before { content: "\f181"; } -i.icon.tripadvisor:before { content: "\f262"; } -i.icon.trophy:before { content: "\f091"; } -i.icon.truck:before { content: "\f0d1"; } -i.icon.tty:before { content: "\f1e4"; } -i.icon.tumblr:before { content: "\f173"; } -i.icon.tumblr.square:before { content: "\f174"; } -i.icon.tv:before { content: "\f26c"; } -i.icon.twitch:before { content: "\f1e8"; } -i.icon.twitter:before { content: "\f099"; } -i.icon.twitter.square:before { content: "\f081"; } -i.icon.typo3:before { content: "\f42b"; } -i.icon.uber:before { content: "\f402"; } -i.icon.uikit:before { content: "\f403"; } -i.icon.umbrella:before { content: "\f0e9"; } -i.icon.underline:before { content: "\f0cd"; } -i.icon.undo:before { content: "\f0e2"; } -i.icon.undo.alternate:before { content: "\f2ea"; } -i.icon.uniregistry:before { content: "\f404"; } -i.icon.universal.access:before { content: "\f29a"; } -i.icon.university:before { content: "\f19c"; } -i.icon.unlink:before { content: "\f127"; } -i.icon.unlock:before { content: "\f09c"; } -i.icon.unlock.alternate:before { content: "\f13e"; } -i.icon.untappd:before { content: "\f405"; } -i.icon.upload:before { content: "\f093"; } -i.icon.usb:before { content: "\f287"; } -i.icon.user:before { content: "\f007"; } -i.icon.user.circle:before { content: "\f2bd"; } -i.icon.user.md:before { content: "\f0f0"; } -i.icon.user.plus:before { content: "\f234"; } -i.icon.user.secret:before { content: "\f21b"; } -i.icon.user.times:before { content: "\f235"; } -i.icon.users:before { content: "\f0c0"; } -i.icon.ussunnah:before { content: "\f407"; } -i.icon.utensil.spoon:before { content: "\f2e5"; } -i.icon.utensils:before { content: "\f2e7"; } -i.icon.vaadin:before { content: "\f408"; } -i.icon.venus:before { content: "\f221"; } -i.icon.venus.double:before { content: "\f226"; } -i.icon.venus.mars:before { content: "\f228"; } -i.icon.viacoin:before { content: "\f237"; } -i.icon.viadeo:before { content: "\f2a9"; } -i.icon.viadeo.square:before { content: "\f2aa"; } -i.icon.viber:before { content: "\f409"; } -i.icon.video:before { content: "\f03d"; } -i.icon.vimeo:before { content: "\f40a"; } -i.icon.vimeo.square:before { content: "\f194"; } -i.icon.vimeo.v:before { content: "\f27d"; } -i.icon.vine:before { content: "\f1ca"; } -i.icon.vk:before { content: "\f189"; } -i.icon.vnv:before { content: "\f40b"; } -i.icon.volleyball.ball:before { content: "\f45f"; } -i.icon.volume.down:before { content: "\f027"; } -i.icon.volume.off:before { content: "\f026"; } -i.icon.volume.up:before { content: "\f028"; } -i.icon.vuejs:before { content: "\f41f"; } -i.icon.warehouse:before { content: "\f494"; } -i.icon.weibo:before { content: "\f18a"; } -i.icon.weight:before { content: "\f496"; } -i.icon.weixin:before { content: "\f1d7"; } -i.icon.whatsapp:before { content: "\f232"; } -i.icon.whatsapp.square:before { content: "\f40c"; } -i.icon.wheelchair:before { content: "\f193"; } -i.icon.whmcs:before { content: "\f40d"; } -i.icon.wifi:before { content: "\f1eb"; } -i.icon.wikipedia.w:before { content: "\f266"; } -i.icon.window.close:before { content: "\f410"; } -i.icon.window.maximize:before { content: "\f2d0"; } -i.icon.window.minimize:before { content: "\f2d1"; } -i.icon.window.restore:before { content: "\f2d2"; } -i.icon.windows:before { content: "\f17a"; } -i.icon.won.sign:before { content: "\f159"; } -i.icon.wordpress:before { content: "\f19a"; } -i.icon.wordpress.simple:before { content: "\f411"; } -i.icon.wpbeginner:before { content: "\f297"; } -i.icon.wpexplorer:before { content: "\f2de"; } -i.icon.wpforms:before { content: "\f298"; } -i.icon.wrench:before { content: "\f0ad"; } -i.icon.xbox:before { content: "\f412"; } -i.icon.xing:before { content: "\f168"; } -i.icon.xing.square:before { content: "\f169"; } -i.icon.y.combinator:before { content: "\f23b"; } -i.icon.yahoo:before { content: "\f19e"; } -i.icon.yandex:before { content: "\f413"; } -i.icon.yandex.international:before { content: "\f414"; } -i.icon.yelp:before { content: "\f1e9"; } -i.icon.yen.sign:before { content: "\f157"; } -i.icon.yoast:before { content: "\f2b1"; } -i.icon.youtube:before { content: "\f167"; } -i.icon.youtube.square:before { content: "\f431"; } - -/* Aliases */ -i.icon.chess.rock:before { content: "\f447"; } -i.icon.ordered.list:before { content: "\f0cb"; } -i.icon.unordered.list:before { content: "\f0ca"; } -i.icon.user.doctor:before { content: "\f0f0"; } -i.icon.shield:before { content: "\f3ed"; } -i.icon.puzzle:before { content: "\f12e"; } -i.icon.credit.card.amazon.pay:before { content: "\f42d"; } -i.icon.credit.card.american.express:before { content: "\f1f3"; } -i.icon.credit.card.diners.club:before { content: "\f24c"; } -i.icon.credit.card.discover:before { content: "\f1f2"; } -i.icon.credit.card.jcb:before { content: "\f24b"; } -i.icon.credit.card.mastercard:before { content: "\f1f1"; } -i.icon.credit.card.paypal:before { content: "\f1f4"; } -i.icon.credit.card.stripe:before { content: "\f1f5"; } -i.icon.credit.card.visa:before { content: "\f1f0"; } -i.icon.add.circle:before { content: "\f055"; } -i.icon.add.square:before { content: "\f0fe"; } -i.icon.add.to.calendar:before { content: "\f271"; } -i.icon.add.to.cart:before { content: "\f217"; } -i.icon.add.user:before { content: "\f234"; } -i.icon.add:before { content: "\f067"; } -i.icon.alarm.mute:before { content: "\f1f6"; } -i.icon.alarm:before { content: "\f0f3"; } -i.icon.ald:before { content: "\f2a2"; } -i.icon.als:before { content: "\f2a2"; } -i.icon.american.express.card:before { content: "\f1f3"; } -i.icon.american.express:before { content: "\f1f3"; } -i.icon.amex:before { content: "\f1f3"; } -i.icon.announcement:before { content: "\f0a1"; } -i.icon.area.chart:before { content: "\f1fe"; } -i.icon.area.graph:before { content: "\f1fe"; } -i.icon.arrow.down.cart:before { content: "\f218"; } -i.icon.asexual:before { content: "\f22d"; } -i.icon.asl.interpreting:before { content: "\f2a3"; } -i.icon.asl:before { content: "\f2a3"; } -i.icon.assistive.listening.devices:before { content: "\f2a2"; } -i.icon.attach:before { content: "\f0c6"; } -i.icon.attention:before { content: "\f06a"; } -i.icon.balance:before { content: "\f24e"; } -i.icon.bar:before { content: "\f0fc"; } -i.icon.bathtub:before { content: "\f2cd"; } -i.icon.battery.four:before { content: "\f240"; } -i.icon.battery.high:before { content: "\f241"; } -i.icon.battery.low:before { content: "\f243"; } -i.icon.battery.medium:before { content: "\f242"; } -i.icon.battery.one:before { content: "\f243"; } -i.icon.battery.three:before { content: "\f241"; } -i.icon.battery.two:before { content: "\f242"; } -i.icon.battery.zero:before { content: "\f244"; } -i.icon.birthday:before { content: "\f1fd"; } -i.icon.block.layout:before { content: "\f009"; } -i.icon.bluetooth.alternative:before { content: "\f294"; } -i.icon.broken.chain:before { content: "\f127"; } -i.icon.browser:before { content: "\f022"; } -i.icon.call.square:before { content: "\f098"; } -i.icon.call:before { content: "\f095"; } -i.icon.cancel:before { content: "\f00d"; } -i.icon.cart:before { content: "\f07a"; } -i.icon.cc:before { content: "\f20a"; } -i.icon.chain:before { content: "\f0c1"; } -i.icon.chat:before { content: "\f075"; } -i.icon.checked.calendar:before { content: "\f274"; } -i.icon.checkmark:before { content: "\f00c"; } -i.icon.circle.notched:before { content: "\f1ce"; } -i.icon.close:before { content: "\f00d"; } -i.icon.cny:before { content: "\f157"; } -i.icon.cocktail:before { content: "\f000"; } -i.icon.commenting:before { content: "\f27a"; } -i.icon.computer:before { content: "\f108"; } -i.icon.configure:before { content: "\f0ad"; } -i.icon.content:before { content: "\f0c9"; } -i.icon.deafness:before { content: "\f2a4"; } -i.icon.delete.calendar:before { content: "\f273"; } -i.icon.delete:before { content: "\f00d"; } -i.icon.detective:before { content: "\f21b"; } -i.icon.diners.club.card:before { content: "\f24c"; } -i.icon.diners.club:before { content: "\f24c"; } -i.icon.discover.card:before { content: "\f1f2"; } -i.icon.discover:before { content: "\f1f2"; } -i.icon.discussions:before { content: "\f086"; } -i.icon.doctor:before { content: "\f0f0"; } -i.icon.dollar:before { content: "\f155"; } -i.icon.dont:before { content: "\f05e"; } -i.icon.dribble:before { content: "\f17d"; } -i.icon.drivers.license:before { content: "\f2c2"; } -i.icon.dropdown:before { content: "\f0d7"; } -i.icon.eercast:before { content: "\f2da"; } -i.icon.emergency:before { content: "\f0f9"; } -i.icon.envira.gallery:before { content: "\f299"; } -i.icon.erase:before { content: "\f12d"; } -i.icon.eur:before { content: "\f153"; } -i.icon.euro:before { content: "\f153"; } -i.icon.eyedropper:before { content: "\f1fb"; } -i.icon.fa:before { content: "\f2b4"; } -i.icon.factory:before { content: "\f275"; } -i.icon.favorite:before { content: "\f005"; } -i.icon.feed:before { content: "\f09e"; } -i.icon.female.homosexual:before { content: "\f226"; } -i.icon.file.text:before { content: "\f15c"; } -i.icon.find:before { content: "\f1e5"; } -i.icon.first.aid:before { content: "\f0fa"; } -i.icon.five.hundred.pixels:before { content: "\f26e"; } -i.icon.fork:before { content: "\f126"; } -i.icon.game:before { content: "\f11b"; } -i.icon.gay:before { content: "\f227"; } -i.icon.gbp:before { content: "\f154"; } -i.icon.gittip:before { content: "\f184"; } -i.icon.google.plus.circle:before { content: "\f2b3"; } -i.icon.google.plus.official:before { content: "\f2b3"; } -i.icon.grab:before { content: "\f255"; } -i.icon.graduation:before { content: "\f19d"; } -i.icon.grid.layout:before { content: "\f00a"; } -i.icon.group:before { content: "\f0c0"; } -i.icon.h:before { content: "\f0fd"; } -i.icon.hand.victory:before { content: "\f25b"; } -i.icon.handicap:before { content: "\f193"; } -i.icon.hard.of.hearing:before { content: "\f2a4"; } -i.icon.header:before { content: "\f1dc"; } -i.icon.help.circle:before { content: "\f059"; } -i.icon.help:before { content: "\f128"; } -i.icon.heterosexual:before { content: "\f228"; } -i.icon.hide:before { content: "\f070"; } -i.icon.hotel:before { content: "\f236"; } -i.icon.hourglass.four:before { content: "\f254"; } -i.icon.hourglass.full:before { content: "\f254"; } -i.icon.hourglass.one:before { content: "\f251"; } -i.icon.hourglass.three:before { content: "\f253"; } -i.icon.hourglass.two:before { content: "\f252"; } -i.icon.idea:before { content: "\f0eb"; } -i.icon.ils:before { content: "\f20b"; } -i.icon.in-cart:before { content: "\f218"; } -i.icon.inr:before { content: "\f156"; } -i.icon.intergender:before { content: "\f224"; } -i.icon.intersex:before { content: "\f224"; } -i.icon.japan.credit.bureau.card:before { content: "\f24b"; } -i.icon.japan.credit.bureau:before { content: "\f24b"; } -i.icon.jcb:before { content: "\f24b"; } -i.icon.jpy:before { content: "\f157"; } -i.icon.krw:before { content: "\f159"; } -i.icon.lab:before { content: "\f0c3"; } -i.icon.law:before { content: "\f24e"; } -i.icon.legal:before { content: "\f0e3"; } -i.icon.lesbian:before { content: "\f226"; } -i.icon.lightning:before { content: "\f0e7"; } -i.icon.like:before { content: "\f004"; } -i.icon.line.graph:before { content: "\f201"; } -i.icon.linkedin.square:before { content: "\f08c"; } -i.icon.linkify:before { content: "\f0c1"; } -i.icon.lira:before { content: "\f195"; } -i.icon.list.layout:before { content: "\f00b"; } -i.icon.magnify:before { content: "\f00e"; } -i.icon.mail.forward:before { content: "\f064"; } -i.icon.mail.square:before { content: "\f199"; } -i.icon.mail:before { content: "\f0e0"; } -i.icon.male.homosexual:before { content: "\f227"; } -i.icon.man:before { content: "\f222"; } -i.icon.marker:before { content: "\f041"; } -i.icon.mars.alternate:before { content: "\f229"; } -i.icon.mars.horizontal:before { content: "\f22b"; } -i.icon.mars.vertical:before { content: "\f22a"; } -i.icon.mastercard.card:before { content: "\f1f1"; } -i.icon.mastercard:before { content: "\f1f1"; } -i.icon.microsoft.edge:before { content: "\f282"; } -i.icon.military:before { content: "\f0fb"; } -i.icon.ms.edge:before { content: "\f282"; } -i.icon.mute:before { content: "\f131"; } -i.icon.new.pied.piper:before { content: "\f2ae"; } -i.icon.non.binary.transgender:before { content: "\f223"; } -i.icon.numbered.list:before { content: "\f0cb"; } -i.icon.optinmonster:before { content: "\f23c"; } -i.icon.options:before { content: "\f1de"; } -i.icon.other.gender.horizontal:before { content: "\f22b"; } -i.icon.other.gender.vertical:before { content: "\f22a"; } -i.icon.other.gender:before { content: "\f229"; } -i.icon.payment:before { content: "\f09d"; } -i.icon.paypal.card:before { content: "\f1f4"; } -i.icon.pencil.square:before { content: "\f14b"; } -i.icon.photo:before { content: "\f030"; } -i.icon.picture:before { content: "\f03e"; } -i.icon.pie.chart:before { content: "\f200"; } -i.icon.pie.graph:before { content: "\f200"; } -i.icon.pied.piper.hat:before { content: "\f2ae"; } -i.icon.pin:before { content: "\f08d"; } -i.icon.plus.cart:before { content: "\f217"; } -i.icon.pocket:before { content: "\f265"; } -i.icon.point:before { content: "\f041"; } -i.icon.pointing.down:before { content: "\f0a7"; } -i.icon.pointing.left:before { content: "\f0a5"; } -i.icon.pointing.right:before { content: "\f0a4"; } -i.icon.pointing.up:before { content: "\f0a6"; } -i.icon.pound:before { content: "\f154"; } -i.icon.power.cord:before { content: "\f1e6"; } -i.icon.power:before { content: "\f011"; } -i.icon.privacy:before { content: "\f084"; } -i.icon.r.circle:before { content: "\f25d"; } -i.icon.rain:before { content: "\f0e9"; } -i.icon.record:before { content: "\f03d"; } -i.icon.refresh:before { content: "\f021"; } -i.icon.remove.circle:before { content: "\f057"; } -i.icon.remove.from.calendar:before { content: "\f272"; } -i.icon.remove.user:before { content: "\f235"; } -i.icon.remove:before { content: "\f00d"; } -i.icon.repeat:before { content: "\f01e"; } -i.icon.rmb:before { content: "\f157"; } -i.icon.rouble:before { content: "\f158"; } -i.icon.rub:before { content: "\f158"; } -i.icon.ruble:before { content: "\f158"; } -i.icon.rupee:before { content: "\f156"; } -i.icon.s15:before { content: "\f2cd"; } -i.icon.selected.radio:before { content: "\f192"; } -i.icon.send:before { content: "\f1d8"; } -i.icon.setting:before { content: "\f013"; } -i.icon.settings:before { content: "\f085"; } -i.icon.shekel:before { content: "\f20b"; } -i.icon.sheqel:before { content: "\f20b"; } -i.icon.shipping:before { content: "\f0d1"; } -i.icon.shop:before { content: "\f07a"; } -i.icon.shuffle:before { content: "\f074"; } -i.icon.shutdown:before { content: "\f011"; } -i.icon.sidebar:before { content: "\f0c9"; } -i.icon.signing:before { content: "\f2a7"; } -i.icon.signup:before { content: "\f044"; } -i.icon.sliders:before { content: "\f1de"; } -i.icon.soccer:before { content: "\f1e3"; } -i.icon.sort.alphabet.ascending:before { content: "\f15d"; } -i.icon.sort.alphabet.descending:before { content: "\f15e"; } -i.icon.sort.ascending:before { content: "\f0de"; } -i.icon.sort.content.ascending:before { content: "\f160"; } -i.icon.sort.content.descending:before { content: "\f161"; } -i.icon.sort.descending:before { content: "\f0dd"; } -i.icon.sort.numeric.ascending:before { content: "\f162"; } -i.icon.sort.numeric.descending:before { content: "\f163"; } -i.icon.sound:before { content: "\f025"; } -i.icon.spy:before { content: "\f21b"; } -i.icon.stripe.card:before { content: "\f1f5"; } -i.icon.student:before { content: "\f19d"; } -i.icon.talk:before { content: "\f27a"; } -i.icon.target:before { content: "\f140"; } -i.icon.teletype:before { content: "\f1e4"; } -i.icon.television:before { content: "\f26c"; } -i.icon.text.cursor:before { content: "\f246"; } -i.icon.text.telephone:before { content: "\f1e4"; } -i.icon.theme.isle:before { content: "\f2b2"; } -i.icon.theme:before { content: "\f043"; } -i.icon.thermometer:before { content: "\f2c7"; } -i.icon.thumb.tack:before { content: "\f08d"; } -i.icon.time:before { content: "\f017"; } -i.icon.tm:before { content: "\f25c"; } -i.icon.toggle.down:before { content: "\f150"; } -i.icon.toggle.left:before { content: "\f191"; } -i.icon.toggle.right:before { content: "\f152"; } -i.icon.toggle.up:before { content: "\f151"; } -i.icon.translate:before { content: "\f1ab"; } -i.icon.travel:before { content: "\f0b1"; } -i.icon.treatment:before { content: "\f0f1"; } -i.icon.triangle.down:before { content: "\f0d7"; } -i.icon.triangle.left:before { content: "\f0d9"; } -i.icon.triangle.right:before { content: "\f0da"; } -i.icon.triangle.up:before { content: "\f0d8"; } -i.icon.try:before { content: "\f195"; } -i.icon.unhide:before { content: "\f06e"; } -i.icon.unlinkify:before { content: "\f127"; } -i.icon.unmute:before { content: "\f130"; } -i.icon.usd:before { content: "\f155"; } -i.icon.user.cancel:before { content: "\f235"; } -i.icon.user.close:before { content: "\f235"; } -i.icon.user.delete:before { content: "\f235"; } -i.icon.user.x:before { content: "\f235"; } -i.icon.vcard:before { content: "\f2bb"; } -i.icon.video.camera:before { content: "\f03d"; } -i.icon.video.play:before { content: "\f144"; } -i.icon.visa.card:before { content: "\f1f0"; } -i.icon.visa:before { content: "\f1f0"; } -i.icon.volume.control.phone:before { content: "\f2a0"; } -i.icon.wait:before { content: "\f017"; } -i.icon.warning.circle:before { content: "\f06a"; } -i.icon.warning.sign:before { content: "\f071"; } -i.icon.warning:before { content: "\f12a"; } -i.icon.wechat:before { content: "\f1d7"; } -i.icon.wi-fi:before { content: "\f1eb"; } -i.icon.wikipedia:before { content: "\f266"; } -i.icon.winner:before { content: "\f091"; } -i.icon.wizard:before { content: "\f0d0"; } -i.icon.woman:before { content: "\f221"; } -i.icon.won:before { content: "\f159"; } -i.icon.wordpress.beginner:before { content: "\f297"; } -i.icon.wordpress.forms:before { content: "\f298"; } -i.icon.world:before { content: "\f0ac"; } -i.icon.write.square:before { content: "\f14b"; } -i.icon.x:before { content: "\f00d"; } -i.icon.yc:before { content: "\f23b"; } -i.icon.ycombinator:before { content: "\f23b"; } -i.icon.yen:before { content: "\f157"; } -i.icon.zip:before { content: "\f187"; } -i.icon.zoom-in:before { content: "\f00e"; } -i.icon.zoom-out:before { content: "\f010"; } -i.icon.zoom:before { content: "\f00e"; } -i.icon.bitbucket.square:before { content: "\f171"; } -i.icon.checkmark.box:before { content: "\f14a"; } -i.icon.circle.thin:before { content: "\f111"; } -i.icon.cloud.download:before { content: "\f381"; } -i.icon.cloud.upload:before { content: "\f382"; } -i.icon.compose:before { content: "\f303"; } -i.icon.conversation:before { content: "\f086"; } -i.icon.credit.card.alternative:before { content: "\f09d"; } -i.icon.currency:before { content: "\f3d1"; } -i.icon.dashboard:before { content: "\f3fd"; } -i.icon.diamond:before { content: "\f3a5"; } -i.icon.disk:before { content: "\f0a0"; } -i.icon.exchange:before { content: "\f362"; } -i.icon.external.share:before { content: "\f14d"; } -i.icon.external.square:before { content: "\f360"; } -i.icon.external:before { content: "\f35d"; } -i.icon.facebook.official:before { content: "\f082"; } -i.icon.food:before { content: "\f2e7"; } -i.icon.hourglass.zero:before { content: "\f253"; } -i.icon.level.down:before { content: "\f3be"; } -i.icon.level.up:before { content: "\f3bf"; } -i.icon.logout:before { content: "\f2f5"; } -i.icon.meanpath:before { content: "\f0c8"; } -i.icon.money:before { content: "\f3d1"; } -i.icon.move:before { content: "\f0b2"; } -i.icon.pencil:before { content: "\f303"; } -i.icon.protect:before { content: "\f023"; } -i.icon.radio:before { content: "\f192"; } -i.icon.remove.bookmark:before { content: "\f02e"; } -i.icon.resize.horizontal:before { content: "\f337"; } -i.icon.resize.vertical:before { content: "\f338"; } -i.icon.sign-in:before { content: "\f2f6"; } -i.icon.sign-out:before { content: "\f2f5"; } -i.icon.spoon:before { content: "\f2e5"; } -i.icon.star.half.empty:before { content: "\f089"; } -i.icon.star.half.full:before { content: "\f089"; } -i.icon.ticket:before { content: "\f3ff"; } -i.icon.times.rectangle:before { content: "\f410"; } -i.icon.write:before { content: "\f303"; } -i.icon.youtube.play:before { content: "\f167"; } - - - -/******************************* - Outline Icons -*******************************/ - -/* Outline Icon */ -.loadOutlineIcons() when (@importOutlineIcons) { - /* Load & Define Icon Font */ - @font-face { - font-family: @outlineFontName; - src: @outlineFallbackSRC; - src: @outlineSrc; - font-style: normal; - font-weight: @normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; - } - i.icon.outline { - font-family: @outlineFontName; - } - /* Icon Definitions */ - i.icon.address.book.outline:before { content: "\f2b9"; } - i.icon.address.card.outline:before { content: "\f2bb"; } - i.icon.arrow.alternate.circle.down.outline:before { content: "\f358"; } - i.icon.arrow.alternate.circle.left.outline:before { content: "\f359"; } - i.icon.arrow.alternate.circle.right.outline:before { content: "\f35a"; } - i.icon.arrow.alternate.circle.up.outline:before { content: "\f35b"; } - i.icon.bell.outline:before { content: "\f0f3"; } - i.icon.bell.slash.outline:before { content: "\f1f6"; } - i.icon.bookmark.outline:before { content: "\f02e"; } - i.icon.building.outline:before { content: "\f1ad"; } - i.icon.calendar.outline:before { content: "\f133"; } - i.icon.calendar.alternate.outline:before { content: "\f073"; } - i.icon.calendar.check.outline:before { content: "\f274"; } - i.icon.calendar.minus.outline:before { content: "\f272"; } - i.icon.calendar.plus.outline:before { content: "\f271"; } - i.icon.calendar.times.outline:before { content: "\f273"; } - i.icon.caret.square.down.outline:before { content: "\f150"; } - i.icon.caret.square.left.outline:before { content: "\f191"; } - i.icon.caret.square.right.outline:before { content: "\f152"; } - i.icon.caret.square.up.outline:before { content: "\f151"; } - i.icon.chart.bar.outline:before { content: "\f080"; } - i.icon.check.circle.outline:before { content: "\f058"; } - i.icon.check.square.outline:before { content: "\f14a"; } - i.icon.circle.outline:before { content: "\f111"; } - i.icon.clipboard.outline:before { content: "\f328"; } - i.icon.clock.outline:before { content: "\f017"; } - i.icon.clone.outline:before { content: "\f24d"; } - i.icon.closed.captioning.outline:before { content: "\f20a"; } - i.icon.comment.outline:before { content: "\f075"; } - i.icon.comment.alternate.outline:before { content: "\f27a"; } - i.icon.comments.outline:before { content: "\f086"; } - i.icon.compass.outline:before { content: "\f14e"; } - i.icon.copy.outline:before { content: "\f0c5"; } - i.icon.copyright.outline:before { content: "\f1f9"; } - i.icon.credit.card.outline:before { content: "\f09d"; } - i.icon.dot.circle.outline:before { content: "\f192"; } - i.icon.edit.outline:before { content: "\f044"; } - i.icon.envelope.outline:before { content: "\f0e0"; } - i.icon.envelope.open.outline:before { content: "\f2b6"; } - i.icon.eye.slash.outline:before { content: "\f070"; } - i.icon.file.outline:before { content: "\f15b"; } - i.icon.file.alternate.outline:before { content: "\f15c"; } - i.icon.file.archive.outline:before { content: "\f1c6"; } - i.icon.file.audio.outline:before { content: "\f1c7"; } - i.icon.file.code.outline:before { content: "\f1c9"; } - i.icon.file.excel.outline:before { content: "\f1c3"; } - i.icon.file.image.outline:before { content: "\f1c5"; } - i.icon.file.pdf.outline:before { content: "\f1c1"; } - i.icon.file.powerpoint.outline:before { content: "\f1c4"; } - i.icon.file.video.outline:before { content: "\f1c8"; } - i.icon.file.word.outline:before { content: "\f1c2"; } - i.icon.flag.outline:before { content: "\f024"; } - i.icon.folder.outline:before { content: "\f07b"; } - i.icon.folder.open.outline:before { content: "\f07c"; } - i.icon.frown.outline:before { content: "\f119"; } - i.icon.futbol.outline:before { content: "\f1e3"; } - i.icon.gem.outline:before { content: "\f3a5"; } - i.icon.hand.lizard.outline:before { content: "\f258"; } - i.icon.hand.paper.outline:before { content: "\f256"; } - i.icon.hand.peace.outline:before { content: "\f25b"; } - i.icon.hand.point.down.outline:before { content: "\f0a7"; } - i.icon.hand.point.left.outline:before { content: "\f0a5"; } - i.icon.hand.point.right.outline:before { content: "\f0a4"; } - i.icon.hand.point.up.outline:before { content: "\f0a6"; } - i.icon.hand.pointer.outline:before { content: "\f25a"; } - i.icon.hand.rock.outline:before { content: "\f255"; } - i.icon.hand.scissors.outline:before { content: "\f257"; } - i.icon.hand.spock.outline:before { content: "\f259"; } - i.icon.handshake.outline:before { content: "\f2b5"; } - i.icon.hdd.outline:before { content: "\f0a0"; } - i.icon.heart.outline:before { content: "\f004"; } - i.icon.hospital.outline:before { content: "\f0f8"; } - i.icon.hourglass.outline:before { content: "\f254"; } - i.icon.id.badge.outline:before { content: "\f2c1"; } - i.icon.id.card.outline:before { content: "\f2c2"; } - i.icon.image.outline:before { content: "\f03e"; } - i.icon.images.outline:before { content: "\f302"; } - i.icon.keyboard.outline:before { content: "\f11c"; } - i.icon.lemon.outline:before { content: "\f094"; } - i.icon.life.ring.outline:before { content: "\f1cd"; } - i.icon.lightbulb.outline:before { content: "\f0eb"; } - i.icon.list.alternate.outline:before { content: "\f022"; } - i.icon.map.outline:before { content: "\f279"; } - i.icon.meh.outline:before { content: "\f11a"; } - i.icon.minus.square.outline:before { content: "\f146"; } - i.icon.money.bill.alternate.outline:before { content: "\f3d1"; } - i.icon.moon.outline:before { content: "\f186"; } - i.icon.newspaper.outline:before { content: "\f1ea"; } - i.icon.object.group.outline:before { content: "\f247"; } - i.icon.object.ungroup.outline:before { content: "\f248"; } - i.icon.paper.plane.outline:before { content: "\f1d8"; } - i.icon.pause.circle.outline:before { content: "\f28b"; } - i.icon.play.circle.outline:before { content: "\f144"; } - i.icon.plus.square.outline:before { content: "\f0fe"; } - i.icon.question.circle.outline:before { content: "\f059"; } - i.icon.registered.outline:before { content: "\f25d"; } - i.icon.save.outline:before { content: "\f0c7"; } - i.icon.share.square.outline:before { content: "\f14d"; } - i.icon.smile.outline:before { content: "\f118"; } - i.icon.snowflake.outline:before { content: "\f2dc"; } - i.icon.square.outline:before { content: "\f0c8"; } - i.icon.star.outline:before { content: "\f005"; } - i.icon.star.half.outline:before { content: "\f089"; } - i.icon.sticky.note.outline:before { content: "\f249"; } - i.icon.stop.circle.outline:before { content: "\f28d"; } - i.icon.sun.outline:before { content: "\f185"; } - i.icon.thumbs.down.outline:before { content: "\f165"; } - i.icon.thumbs.up.outline:before { content: "\f164"; } - i.icon.times.circle.outline:before { content: "\f057"; } - i.icon.trash.alternate.outline:before { content: "\f2ed"; } - i.icon.user.outline:before { content: "\f007"; } - i.icon.user.circle.outline:before { content: "\f2bd"; } - i.icon.window.close.outline:before { content: "\f410"; } - i.icon.window.maximize.outline:before { content: "\f2d0"; } - i.icon.window.minimize.outline:before { content: "\f2d1"; } - i.icon.window.restore.outline:before { content: "\f2d2"; } - - /* Outline Aliases */ - i.icon.disk.outline:before { content: "\f0a0"; } - i.icon.heart.empty, - i.icon.star.empty { - font-family: @outlineFontName; - } - i.icon.heart.empty:before { content: "\f004"; } - i.icon.star.empty:before { content: "\f089"; } - -} -.loadOutlineIcons(); - -/******************************* - Brand Icons -*******************************/ - -.loadBrandIcons() when (@importBrandIcons) { - /* Load & Define Brand Font */ - @font-face { - font-family: @brandFontName; - src: @brandFallbackSRC; - src: @brandSrc; - font-style: normal; - font-weight: @normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; - } - /* Brand Icon Font Family */ - i.icon.\35 00px, - i.icon.accessible.icon, - i.icon.accusoft, - i.icon.adn, - i.icon.adversal, - i.icon.affiliatetheme, - i.icon.algolia, - i.icon.amazon, - i.icon.amazon.pay, - i.icon.amilia, - i.icon.android, - i.icon.angellist, - i.icon.angrycreative, - i.icon.angular, - i.icon.app.store, - i.icon.app.store.ios, - i.icon.apper, - i.icon.apple, - i.icon.apple.pay, - i.icon.asymmetrik, - i.icon.audible, - i.icon.autoprefixer, - i.icon.avianex, - i.icon.aviato, - i.icon.aws, - i.icon.bandcamp, - i.icon.behance, - i.icon.behance.square, - i.icon.bimobject, - i.icon.bitbucket, - i.icon.bitcoin, - i.icon.bity, - i.icon.black.tie, - i.icon.blackberry, - i.icon.blogger, - i.icon.blogger.b, - i.icon.bluetooth, - i.icon.bluetooth.b, - i.icon.btc, - i.icon.buromobelexperte, - i.icon.buysellads, - i.icon.cc.amazon.pay, - i.icon.cc.amex, - i.icon.cc.apple.pay, - i.icon.cc.diners.club, - i.icon.cc.discover, - i.icon.cc.jcb, - i.icon.cc.mastercard, - i.icon.cc.paypal, - i.icon.cc.stripe, - i.icon.cc.visa, - i.icon.centercode, - i.icon.chrome, - i.icon.cloudscale, - i.icon.cloudsmith, - i.icon.cloudversify, - i.icon.codepen, - i.icon.codiepie, - i.icon.connectdevelop, - i.icon.contao, - i.icon.cpanel, - i.icon.creative.commons, - i.icon.css3, - i.icon.css3.alternate, - i.icon.cuttlefish, - i.icon.d.and.d, - i.icon.dashcube, - i.icon.delicious, - i.icon.deploydog, - i.icon.deskpro, - i.icon.deviantart, - i.icon.digg, - i.icon.digital.ocean, - i.icon.discord, - i.icon.discourse, - i.icon.dochub, - i.icon.docker, - i.icon.draft2digital, - i.icon.dribbble, - i.icon.dribbble.square, - i.icon.dropbox, - i.icon.drupal, - i.icon.dyalog, - i.icon.earlybirds, - i.icon.edge, - i.icon.elementor, - i.icon.ember, - i.icon.empire, - i.icon.envira, - i.icon.erlang, - i.icon.ethereum, - i.icon.etsy, - i.icon.expeditedssl, - i.icon.facebook, - i.icon.facebook.f, - i.icon.facebook.messenger, - i.icon.facebook.square, - i.icon.firefox, - i.icon.first.order, - i.icon.firstdraft, - i.icon.flickr, - i.icon.flipboard, - i.icon.fly, - i.icon.font.awesome, - i.icon.font.awesome.alternate, - i.icon.font.awesome.flag, - i.icon.fonticons, - i.icon.fonticons.fi, - i.icon.fort.awesome, - i.icon.fort.awesome.alternate, - i.icon.forumbee, - i.icon.foursquare, - i.icon.free.code.camp, - i.icon.freebsd, - i.icon.get.pocket, - i.icon.gg, - i.icon.gg.circle, - i.icon.git, - i.icon.git.square, - i.icon.github, - i.icon.github.alternate, - i.icon.github.square, - i.icon.gitkraken, - i.icon.gitlab, - i.icon.gitter, - i.icon.glide, - i.icon.glide.g, - i.icon.gofore, - i.icon.goodreads, - i.icon.goodreads.g, - i.icon.google, - i.icon.google.drive, - i.icon.google.play, - i.icon.google.plus, - i.icon.google.plus.g, - i.icon.google.plus.square, - i.icon.google.wallet, - i.icon.gratipay, - i.icon.grav, - i.icon.gripfire, - i.icon.grunt, - i.icon.gulp, - i.icon.hacker.news, - i.icon.hacker.news.square, - i.icon.hips, - i.icon.hire.a.helper, - i.icon.hooli, - i.icon.hotjar, - i.icon.houzz, - i.icon.html5, - i.icon.hubspot, - i.icon.imdb, - i.icon.instagram, - i.icon.internet.explorer, - i.icon.ioxhost, - i.icon.itunes, - i.icon.itunes.note, - i.icon.jenkins, - i.icon.joget, - i.icon.joomla, - i.icon.js, - i.icon.js.square, - i.icon.jsfiddle, - i.icon.keycdn, - i.icon.kickstarter, - i.icon.kickstarter.k, - i.icon.korvue, - i.icon.laravel, - i.icon.lastfm, - i.icon.lastfm.square, - i.icon.leanpub, - i.icon.less, - i.icon.linechat, - i.icon.linkedin, - i.icon.linkedin.alternate, - i.icon.linkedin.in, - i.icon.linode, - i.icon.linux, - i.icon.lyft, - i.icon.magento, - i.icon.maxcdn, - i.icon.medapps, - i.icon.medium, - i.icon.medium.m, - i.icon.medrt, - i.icon.meetup, - i.icon.microsoft, - i.icon.mix, - i.icon.mixcloud, - i.icon.mizuni, - i.icon.modx, - i.icon.monero, - i.icon.napster, - i.icon.nintendo.switch, - i.icon.node, - i.icon.node.js, - i.icon.npm, - i.icon.ns8, - i.icon.nutritionix, - i.icon.odnoklassniki, - i.icon.odnoklassniki.square, - i.icon.opencart, - i.icon.openid, - i.icon.opera, - i.icon.optin.monster, - i.icon.osi, - i.icon.page4, - i.icon.pagelines, - i.icon.palfed, - i.icon.patreon, - i.icon.paypal, - i.icon.periscope, - i.icon.phabricator, - i.icon.phoenix.framework, - i.icon.php, - i.icon.pied.piper, - i.icon.pied.piper.alternate, - i.icon.pied.piper.pp, - i.icon.pinterest, - i.icon.pinterest.p, - i.icon.pinterest.square, - i.icon.playstation, - i.icon.product.hunt, - i.icon.pushed, - i.icon.python, - i.icon.qq, - i.icon.quinscape, - i.icon.quora, - i.icon.ravelry, - i.icon.react, - i.icon.rebel, - i.icon.redriver, - i.icon.reddit, - i.icon.reddit.alien, - i.icon.reddit.square, - i.icon.rendact, - i.icon.renren, - i.icon.replyd, - i.icon.resolving, - i.icon.rocketchat, - i.icon.rockrms, - i.icon.safari, - i.icon.sass, - i.icon.schlix, - i.icon.scribd, - i.icon.searchengin, - i.icon.sellcast, - i.icon.sellsy, - i.icon.servicestack, - i.icon.shirtsinbulk, - i.icon.simplybuilt, - i.icon.sistrix, - i.icon.skyatlas, - i.icon.skype, - i.icon.slack, - i.icon.slack.hash, - i.icon.slideshare, - i.icon.snapchat, - i.icon.snapchat.ghost, - i.icon.snapchat.square, - i.icon.soundcloud, - i.icon.speakap, - i.icon.spotify, - i.icon.stack.exchange, - i.icon.stack.overflow, - i.icon.staylinked, - i.icon.steam, - i.icon.steam.square, - i.icon.steam.symbol, - i.icon.sticker.mule, - i.icon.strava, - i.icon.stripe, - i.icon.stripe.s, - i.icon.studiovinari, - i.icon.stumbleupon, - i.icon.stumbleupon.circle, - i.icon.superpowers, - i.icon.supple, - i.icon.telegram, - i.icon.telegram.plane, - i.icon.tencent.weibo, - i.icon.themeisle, - i.icon.trello, - i.icon.tripadvisor, - i.icon.tumblr, - i.icon.tumblr.square, - i.icon.twitch, - i.icon.twitter, - i.icon.twitter.square, - i.icon.typo3, - i.icon.uber, - i.icon.uikit, - i.icon.uniregistry, - i.icon.untappd, - i.icon.usb, - i.icon.ussunnah, - i.icon.vaadin, - i.icon.viacoin, - i.icon.viadeo, - i.icon.viadeo.square, - i.icon.viber, - i.icon.vimeo, - i.icon.vimeo.square, - i.icon.vimeo.v, - i.icon.vine, - i.icon.vk, - i.icon.vnv, - i.icon.vuejs, - i.icon.wechat, - i.icon.weibo, - i.icon.weixin, - i.icon.whatsapp, - i.icon.whatsapp.square, - i.icon.whmcs, - i.icon.wikipedia.w, - i.icon.windows, - i.icon.wordpress, - i.icon.wordpress.simple, - i.icon.wpbeginner, - i.icon.wpexplorer, - i.icon.wpforms, - i.icon.xbox, - i.icon.xing, - i.icon.xing.square, - i.icon.y.combinator, - i.icon.yahoo, - i.icon.yandex, - i.icon.yandex.international, - i.icon.yelp, - i.icon.yoast, - i.icon.youtube, - i.icon.youtube.square { - font-family: 'brand-icons'; - } - /* Brand Icons Ideally Would Be Defined Here */ - -} -.loadBrandIcons(); diff --git a/src/themes/default/elements/icon.variables b/src/themes/default/elements/icon.variables deleted file mode 100644 index 5d32af2..0000000 --- a/src/themes/default/elements/icon.variables +++ /dev/null @@ -1,95 +0,0 @@ -/******************************* - Icon -*******************************/ - -/*-------------- - Font Files ----------------*/ - -@fontName: 'icons'; -@src: - url("@{fontPath}/@{fontName}.eot?#iefix") format('embedded-opentype'), - url("@{fontPath}/@{fontName}.woff2") format('woff2'), - url("@{fontPath}/@{fontName}.woff") format('woff'), - url("@{fontPath}/@{fontName}.ttf") format('truetype'), - url("@{fontPath}/@{fontName}.svg#icons") format('svg') -; -@fallbackSRC: url("@{fontPath}/@{fontName}.eot"); - -/*-------------- - Optional Files ----------------*/ - -/* Outline Icons */ -@importOutlineIcons: true; -@outlineFontName: 'outline-icons'; -@outlineSrc: - url("@{fontPath}/@{outlineFontName}.eot?#iefix") format('embedded-opentype'), - url("@{fontPath}/@{outlineFontName}.woff2") format('woff2'), - url("@{fontPath}/@{outlineFontName}.woff") format('woff'), - url("@{fontPath}/@{outlineFontName}.ttf") format('truetype'), - url("@{fontPath}/@{outlineFontName}.svg#icons") format('svg') -; -@outlineFallbackSRC: url("@{fontPath}/@{outlineFontName}.eot"); - -/* Brand Icons */ -@importBrandIcons: true; -@brandFontName: 'brand-icons'; -@brandSrc: - url("@{fontPath}/@{brandFontName}.eot?#iefix") format('embedded-opentype'), - url("@{fontPath}/@{brandFontName}.woff2") format('woff2'), - url("@{fontPath}/@{brandFontName}.woff") format('woff'), - url("@{fontPath}/@{brandFontName}.ttf") format('truetype'), - url("@{fontPath}/@{brandFontName}.svg#icons") format('svg') -; -@brandFallbackSRC: url("@{fontPath}/@{brandFontName}.eot"); - -/*-------------- - Definition ----------------*/ - -/* Icon Variables */ -@opacity: 1; -@width: @iconWidth; -@height: 1em; -@distanceFromText: 0.25rem; -@lineHeight: 1; - - -/* Variations */ -@linkOpacity: 0.8; -@linkDuration: 0.3s; -@loadingDuration: 2s; - -@circularSize: 2em; -@circularPadding: 0.5em 0em; -@circularShadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - -@borderedSize: 2em; -@borderedVerticalPadding: ((@borderedSize - @height) / 2); -@borderedHorizontalPadding: 0em; -@borderedShadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - -@cornerIconSize: 0.45em; -@cornerIconStroke: 1px; -@cornerIconShadow: - -@cornerIconStroke -@cornerIconStroke 0 @white, - @cornerIconStroke -@cornerIconStroke 0 @white, - -@cornerIconStroke @cornerIconStroke 0 @white, - @cornerIconStroke @cornerIconStroke 0 @white -; -@cornerIconInvertedShadow: - -@cornerIconStroke -@cornerIconStroke 0 @black, - @cornerIconStroke -@cornerIconStroke 0 @black, - -@cornerIconStroke @cornerIconStroke 0 @black, - @cornerIconStroke @cornerIconStroke 0 @black -; - -@mini: 0.4em; -@tiny: 0.5em; -@small: 0.75em; -@medium: 1em; -@large: 1.5em; -@big: 2em; -@huge: 4em; -@massive: 8em; diff --git a/src/themes/default/elements/image.overrides b/src/themes/default/elements/image.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/image.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/image.variables b/src/themes/default/elements/image.variables deleted file mode 100644 index 925110e..0000000 --- a/src/themes/default/elements/image.variables +++ /dev/null @@ -1,44 +0,0 @@ -/******************************* - Image -*******************************/ - -/*------------------- - Element ---------------------*/ - -@placeholderColor: transparent; -@roundedBorderRadius: 0.3125em; - -@imageHorizontalMargin: 0.25rem; -@imageVerticalMargin: 0.5rem; -@imageBorder: 1px solid rgba(0, 0, 0, 0.1); - -/*------------------- - Types ---------------------*/ - -/* Avatar */ -@avatarSize: 2em; -@avatarMargin: 0.25em; - - -/*------------------- - Variations ---------------------*/ - -/* Spaced */ -@spacedDistance: 0.5em; - -/* Floated */ -@floatedHorizontalMargin: 1em; -@floatedVerticalMargin: 1em; - -/* Size */ -@miniWidth: 35px; -@tinyWidth: 80px; -@smallWidth: 150px; -@mediumWidth: 300px; -@largeWidth: 450px; -@bigWidth: 600px; -@hugeWidth: 800px; -@massiveWidth: 960px; diff --git a/src/themes/default/elements/input.overrides b/src/themes/default/elements/input.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/input.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/input.variables b/src/themes/default/elements/input.variables deleted file mode 100644 index b46c553..0000000 --- a/src/themes/default/elements/input.variables +++ /dev/null @@ -1,103 +0,0 @@ -/******************************* - Input -*******************************/ - -/*------------------- - Element ---------------------*/ - -@inputFont: @pageFont; -@verticalPadding: @inputVerticalPadding; -@horizontalPadding: @inputHorizontalPadding; - -@lineHeight: @inputLineHeight; -@lineHeightOffset: ((@lineHeight - 1em) / 2); - -@padding: (@verticalPadding - @lineHeightOffset) @horizontalPadding; - -@textAlign: left; -@background: @inputBackground; -@borderWidth: 1px; -@border: @borderWidth solid @borderColor; -@boxShadow: none; - -@borderRadius: @defaultBorderRadius; -@transition: - box-shadow @defaultDuration @defaultEasing, - border-color @defaultDuration @defaultEasing, - outline-offset @defaultDuration @defaultEasing, - outline-color @defaultDuration @defaultEasing -; - -/*------------------- - Types ---------------------*/ - -/* Icon Input */ -@iconWidth: (@verticalPadding * 2) + @glyphWidth; -@iconOpacity: 0.5; -@iconFocusOpacity: 1; -@iconOffset: -0.5em; - -@iconDistance: 0em; -@iconMargin: @iconWidth + @iconDistance; -@iconTransition: opacity 0.3s @defaultEasing; - -@transparentIconWidth: @glyphWidth; -@transparentIconMargin: 2em; - -/* Circular Icon Input */ -@circularIconVerticalOffset: 0.35em; -@circularIconHorizontalOffset: 0.5em; - -/* Labeled Input */ -@labelCornerTop: @borderWidth; -@labelCornerRight: @borderWidth; -@labelCornerSize: @relative9px; -@labelSize: 1em; -@labelVerticalPadding: (@verticalPadding - @lineHeightOffset); - -@labeledMargin: 2.5em; -@labeledIconInputMargin: 3.25em; -@labeledIconMargin: 1.25em; - -/*------------------- - States ---------------------*/ - -/* Placeholder */ -@placeholderColor: @inputPlaceholderColor; -@placeholderFocusColor: @inputPlaceholderFocusColor; - -/* Down */ -@downBorderColor: rgba(0, 0, 0, 0.3); -@downBackground: #FAFAFA; -@downColor: @textColor; -@downBoxShadow: none; - -/* Focus */ -@focusBorderColor: @focusedFormBorderColor; -@focusBackground: @background; -@focusColor: @hoveredTextColor; -@focusBoxShadow: none; - -/* Error */ -@errorBackground: @negativeBackgroundColor; -@errorColor: @negativeTextColor; -@errorBorder: @negativeBorderColor; -@errorBoxShadow: none; - -@placeholderErrorColor: lighten(@errorColor, 40); -@placeholderErrorFocusColor: lighten(@errorColor, 30); - -/* Loader */ -@invertedLoaderFillColor: rgba(0, 0, 0, 0.15); - -/*------------------- - Variations ---------------------*/ - -/* Inverted */ -@transparentInvertedPlaceholderColor: @invertedUnselectedTextColor; -@transparentInvertedColor: @white; - diff --git a/src/themes/default/elements/label.overrides b/src/themes/default/elements/label.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/label.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/label.variables b/src/themes/default/elements/label.variables deleted file mode 100644 index 8f904e6..0000000 --- a/src/themes/default/elements/label.variables +++ /dev/null @@ -1,257 +0,0 @@ -/******************************* - Label -*******************************/ - -/*------------------- - Element ---------------------*/ - -@verticalAlign: baseline; -@verticalMargin: 0em; -@horizontalMargin: @relative2px; -@backgroundColor: hsl(var(--hsl-gray-400) / 10%); -@color: hsl(var(--hsl-gray-400)); -@backgroundImage: none; -@verticalPadding: 0.5833em; /* medium is not @emSize custom value required */ -@horizontalPadding: 0.833em; -@borderRadius: @absoluteBorderRadius; -@textTransform: none; -@fontWeight: var(--font-weights-medium); -@borderWidth: 1px; -@border: 0px solid transparent; - -@lineHeightOffset: -(@verticalPadding / 2); - -@labelTransitionDuration: @defaultDuration; -@labelTransitionEasing: @defaultEasing; -@transition: background @labelTransitionDuration @labelTransitionEasing; - -/* Group */ -@groupVerticalMargin: 0.5em; -@groupHorizontalMargin: 0.5em; - -/*------------------- - Parts ---------------------*/ - -/* Link */ -@linkOpacity: 0.5; -@linkTransition: @labelTransitionDuration opacity @labelTransitionEasing; - -/* Icon */ -@iconDistance: 0.75em; - -/* Image */ -@imageHeight: (1em + @verticalPadding * 2); - -/* Detail */ -@detailFontWeight: @bold; -@detailOpacity: 0.8; -@detailIconDistance: 0.25em; -@detailMargin: 1em; - -/* Delete */ -@deleteOpacity: @linkOpacity; -@deleteSize: @relativeSmall; -@deleteMargin: 0.5em; -@deleteTransition: background @labelTransitionDuration @labelTransitionEasing; - -/*------------------- - Types ---------------------*/ - -/* Image Label */ -@imageLabelBackground: @backgroundColor; -@imageLabelVerticalPadding: @verticalPadding; -@imageLabelHorizontalPadding: @horizontalPadding; -@imageLabelTextDistance: 0.5em; -@imageLabelDetailDistance: @imageLabelTextDistance; -@imageLabelBorderRadius: @borderRadius; -@imageLabelBoxShadow: none; -@imageLabelPadding: @imageLabelVerticalPadding @imageLabelHorizontalPadding @imageLabelVerticalPadding @imageLabelTextDistance; - -@imageLabelImageMargin: -@verticalPadding @imageLabelTextDistance -@verticalPadding -@imageLabelTextDistance; -@imageLabelImageBorderRadius: @imageLabelBorderRadius 0em 0em @imageLabelBorderRadius; -@imageLabelImageHeight: @imageHeight; - -@imageLabelDetailBackground: @strongTransparentBlack; -@imageLabelDetailPadding: @imageLabelVerticalPadding @imageLabelHorizontalPadding; -@imageLabelDetailMargin: -@imageLabelVerticalPadding -@imageLabelHorizontalPadding -@imageLabelVerticalPadding @imageLabelDetailDistance; - -/*------------------- - States ---------------------*/ - -/* Hover */ -@labelHoverBackgroundColor: lighten(#666E74, 10); -@labelHoverBackgroundImage: none; -@labelHoverTextColor: @hoveredTextColor; - -/* Active */ -@labelActiveBackgroundColor: lighten(#666E74, 10); -@labelActiveBackgroundImage: none; -@labelActiveTextColor: @selectedTextColor; - -/* Active Hover */ -@labelActiveHoverBackgroundColor: lighten(#666E74, 10); -@labelActiveHoverBackgroundImage: none; -@labelActiveHoverTextColor: @selectedTextColor; - - -/*------------------- - Variations ---------------------*/ - -/* Basic */ -@basicBackground: none @white; -@basicBorderWidth: 1px; -@basicBorder: @basicBorderWidth solid @borderColor; -@basicColor: @textColor; -@basicBoxShadow: none; - -@basicHoverBackground: @basicBackground; -@basicHoverColor: @linkHoverColor; -@basicHoverBorder: @basicBorder; -@basicHoverBoxShadow: @basicBoxShadow; - -/* Tag */ -@tagCircleColor: @white; -@tagCircleSize: 0.5em; -@tagHorizontalPadding: 1.5em; -@tagCircleBoxShadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); -@tagTriangleRightOffset: 100%; -@tagTriangleTopOffset: 50%; -@tagTriangleSize: 1.56em; -@tagTriangleBackgroundImage: none; -@tagTransition: none; /* Avoids error with background: inherit; on animation */ - -/* Ribbon */ -@ribbonTriangleSize: 1.2em; -@ribbonShadowColor: rgba(0, 0, 0, 0.15); - -@ribbonMargin: 1rem; -@ribbonOffset: calc(-@ribbonMargin - @ribbonTriangleSize); -@ribbonDistance: calc(@ribbonMargin + @ribbonTriangleSize); -@rightRibbonOffset: calc(100% + @ribbonMargin + @ribbonTriangleSize); - -@ribbonImageTopDistance: 1rem; -@ribbonImageMargin: -0.05rem; /* Rounding Offset on Triangle */ -@ribbonImageOffset: calc(-@ribbonImageMargin - @ribbonTriangleSize); -@rightRibbonImageOffset: calc(100% + @ribbonImageMargin + @ribbonTriangleSize); - -@ribbonTableMargin: @relativeMini; /* Rounding Offset on Triangle */ -@ribbonTableOffset: calc(-@ribbonTableMargin - @ribbonTriangleSize); -@rightRibbonTableOffset: calc(100% + @ribbonTableMargin + @ribbonTriangleSize); - - -/* Colors */ -@fullWhite : #1E2225; -@fullWhiteHover : #000000; - -@redTextColor: @black; -@orangeTextColor: @black; -@yellowTextColor: @black; -@oliveTextColor: @black; -@greenTextColor: @black; -@tealTextColor: @black; -@blueTextColor: @black; -@violetTextColor: @black; -@purpleTextColor: @black; -@pinkTextColor: @black; -@brownTextColor: @black; -@greyTextColor: @black; -@blackTextColor: @black; - -@redHoverTextColor: @black; -@orangeHoverTextColor: @black; -@yellowHoverTextColor: @black; -@oliveHoverTextColor: @black; -@greenHoverTextColor: @black; -@tealHoverTextColor: @black; -@blueHoverTextColor: @black; -@violetHoverTextColor: @black; -@purpleHoverTextColor: @black; -@pinkHoverTextColor: @black; -@brownHoverTextColor: @black; -@greyHoverTextColor: @black; -@blackHoverTextColor: @black; - -@redRibbonShadow: darken(@red, 10); -@orangeRibbonShadow: darken(@orange, 10); -@yellowRibbonShadow: darken(@yellow, 10); -@oliveRibbonShadow: darken(@olive, 10); -@greenRibbonShadow: darken(@green, 10); -@tealRibbonShadow: darken(@teal, 10); -@blueRibbonShadow: darken(@blue, 10); -@violetRibbonShadow: darken(@violet, 10); -@purpleRibbonShadow: darken(@purple, 10); -@pinkRibbonShadow: darken(@pink, 10); -@brownRibbonShadow: darken(@brown, 10); -@greyRibbonShadow: darken(@grey, 10); -@blackRibbonShadow: darken(@white, 10); - -/* Attached */ -@attachedSegmentPadding: 2rem; -@attachedVerticalPadding: 0.75em; -@attachedHorizontalPadding: 1em; - -@attachedCornerBorderRadius: @3px; -@attachedBorderRadius: @borderRadius; - -/* Corner */ -@cornerSizeRatio: 1; -@cornerTransition: color @labelTransitionDuration @labelTransitionEasing; -@cornerTriangleSize: 4em; -@cornerTriangleTransition: border-color @labelTransitionDuration @labelTransitionEasing; -@cornerTriangleZIndex: 1; - -@cornerIconSize: @relativeLarge; -@cornerIconTopOffset: @relative9px; -@cornerIconLeftOffset: @relative11px; - -/* Corner Text */ -@cornerTextWidth: 3em; -@cornerTextWeight: @bold; -@cornerTextSize: 1em; - -/* Horizontal */ -@horizontalLabelMinWidth: 3em; -@horizontalLabelMargin: 0.5em; -@horizontalLabelVerticalPadding: 0.4em; - -/* Circular Padding */ -@circularPadding: 0.5em; -@circularMinSize: 2em; -@emptyCircleSize: 0.5em; - -/* Pointing */ -@pointingBorderColor: inherit; -@pointingBorderWidth: @borderWidth; -@pointingVerticalDistance: 1em; -@pointingTriangleSize: 0.6666em; -@pointingHorizontalDistance: @pointingTriangleSize; - -@pointingTriangleTransition: background @labelTransitionDuration @labelTransitionEasing; -@pointingTriangleZIndex: 2; - -/* Basic Pointing */ -@basicPointingTriangleOffset: -@pointingBorderWidth; - -/* Floating */ -@floatingTopOffset: -1em; -@floatingLeftOffset: -1.5em; -@floatingZIndex: 100; - -/*------------------- - Group ---------------------*/ - -/* Sizing */ -@mini : @9px; -@tiny : @10px; -@small : @11px; -@medium : @12px; -@large : @absoluteMedium; -@big : @absoluteBig; -@huge : @absoluteHuge; -@massive : @absoluteMassive; diff --git a/src/themes/default/elements/list.overrides b/src/themes/default/elements/list.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/list.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/list.variables b/src/themes/default/elements/list.variables deleted file mode 100644 index def1014..0000000 --- a/src/themes/default/elements/list.variables +++ /dev/null @@ -1,224 +0,0 @@ -/******************************* - List -*******************************/ - -/*------------------- - View ---------------------*/ - -/* List */ -@listStyleType: none; -@listStylePosition: outside; -@margin: 1em 0em; -@verticalPadding: 0em; -@horizontalPadding: 0em; - -/* List Item */ -@itemVerticalPadding: @relative3px; -@itemHorizontalPadding: 0em; -@itemPadding: @itemVerticalPadding @itemHorizontalPadding; -@itemLineHeight: @relativeLarge; - -/* Sub List */ -@childListPadding: 0.75em 0em 0.25em 0.5em; -@childListIndent: 1em; - -/* Sub List Item */ -@childItemVerticalPadding: @relative2px; -@childItemHorizontalPadding: 0em; -@childItemPadding: @childItemVerticalPadding @childItemHorizontalPadding; -@childItemLineHeight: inherit; - -/*------------------- - Elements ---------------------*/ - -/* Icon */ -@iconDistance: @relative4px; -@iconOffset: 0em; -@iconTransition: color @defaultDuration @defaultEasing; -@iconVerticalAlign: top; -@iconContentVerticalAlign: top; - -/* Image */ -@imageDistance: 0.5em; -@imageAlign: top; - -/* Content */ -@contentDistance: 0.5em; -@contentLineHeight: @itemLineHeight; -@contentLineHeightOffset: (@contentLineHeight - 1em) / 2; -@contentVerticalAlign: top; - -/* Header */ -@itemHeaderFontFamily: @headerFont; -@itemHeaderFontWeight: @bold; -@itemHeaderColor: @textColor; - -/* Description */ -@itemDescriptionColor: rgba(0, 0, 0, 0.7); - -/* Link */ -@itemLinkColor: @linkColor; -@itemLinkHoverColor: @linkHoverColor; - -/* Header Link */ -@itemHeaderLinkColor: @itemLinkColor; -@itemHeaderLinkHoverColor: @itemLinkHoverColor; - -/* Linked Icon */ -@itemLinkIconColor: @lightTextColor; -@itemLinkIconHoverColor: @textColor; -@invertedIconLinkColor: @invertedLightTextColor; - -/*------------------- - States ---------------------*/ - -@disabledColor: @disabledTextColor; -@invertedDisabledColor: @invertedDisabledTextColor; - -/*------------------- - Variations ---------------------*/ - -/* Float */ -@floatDistance: 1em; -@leftFloatMargin: 0em @floatDistance 0em 0em; -@rightFloatMargin: 0em 0em 0em @floatDistance; - -/* Horizontal */ -@horizontalSpacing: 1em; -@horizontalIconDistance: 0.25em; -@horizontalVerticalAlign: middle; - -/* Inverted */ -@invertedListIconColor: @invertedLightTextColor; -@invertedHeaderColor: @invertedTextColor; -@invertedDescriptionColor: @invertedLightTextColor; -@invertedItemLinkColor: @invertedTextColor; -@invertedItemLinkHoverColor: @linkHoverColor; - -/* Link List */ -@linkListItemColor: @unselectedTextColor; -@linkListItemHoverColor: @hoveredTextColor; -@linkListItemDownColor: @pressedTextColor; -@linkListItemActiveColor: @selectedTextColor; -@linkListTransition: - @defaultDuration color @defaultEasing -; - -/* Inverted Link List */ -@invertedLinkListItemColor: @invertedUnselectedTextColor; -@invertedLinkListItemHoverColor: @invertedHoveredTextColor; -@invertedLinkListItemDownColor: @invertedPressedTextColor; -@invertedLinkListItemActiveColor: @invertedSelectedTextColor; - -/* Selection List */ -@selectionListItemMargin: 0em; -@selectionListItemBorderRadius: 0.5em; -@selectionListItemVerticalPadding: 0.5em; -@selectionListItemHorizontalPadding: 0.5em; -@selectionListTransition: - @defaultDuration color @defaultEasing, - @defaultDuration padding-left @defaultEasing, - @defaultDuration background-color @defaultEasing -; - -/* Selection List States */ -@selectionListBackground: transparent; -@selectionListColor: @unselectedTextColor; -@selectionListHoverBackground: @subtleTransparentBlack; -@selectionListHoverColor: @hoveredTextColor; -@selectionListDownBackground: @transparentBlack; -@selectionListDownColor: @pressedTextColor; -@selectionListActiveBackground: @transparentBlack; -@selectionListActiveColor: @selectedTextColor; - -/* Inverted Selection List */ -@invertedSelectionListBackground: transparent; -@invertedSelectionListColor: @invertedUnselectedTextColor; -@invertedSelectionListHoverBackground: @subtleTransparentWhite; -@invertedSelectionListHoverColor: @invertedHoveredTextColor; -@invertedSelectionListDownBackground: @transparentWhite; -@invertedSelectionListDownColor: @invertedPressedTextColor; -@invertedSelectionListActiveBackground: @transparentWhite; -@invertedSelectionListActiveColor: @invertedSelectedTextColor; - -/* Animated List */ -@animatedDuration: 0.25s; -@animatedDelay: 0.1s; -@animatedListTransition: - @animatedDuration color @defaultEasing @animatedDelay, - @animatedDuration padding-left @defaultEasing @animatedDelay, - @animatedDuration background-color @defaultEasing @animatedDelay -; -@animatedListIndent: 1em; - -/* Bulleted */ -@bulletDistance: 1.25rem; -@bulletOffset: -@bulletDistance; - -@bulletOpacity: 1; -@bulletCharacter: '•'; -@bulletColor: inherit; -@bulletLinkColor: @textColor; -@bulletVerticalAlign: top; -@bulletChildDistance: @bulletDistance; - -/* Horizontal Bullets */ -@horizontalBulletColor: @textColor; -@horizontalBulletSpacing: @bulletDistance + 0.5em; - -/* Ordered List */ -@orderedCountName: ordered; -@orderedCountContent: counters(ordered, ".") " "; -@orderedCountColor: @textColor; -@orderedCountDistance: 1.25rem; -@orderedCountOpacity: 0.8; -@orderedCountTextAlign: right; -@orderedCountVerticalAlign: middle; - -@orderedChildCountDistance: 1em; -@orderedChildCountOffset: -2em; - -@orderedInvertedCountColor: @invertedLightTextColor; - -/* Horizontal Ordered */ -@horizontalOrderedCountDistance: 0.5em; - -/* Divided */ -@dividedBorderWidth: 1px; -@dividedBorder: @dividedBorderWidth solid @borderColor; -@dividedInvertedBorderColor: @whiteBorderColor; -@dividedChildListBorder: none; -@dividedChildItemBorder: none; - -/* Divided Horizontal */ -@horizontalDividedSpacing: (@horizontalSpacing / 2); -@horizontalDividedLineHeight: 0.6; - -/* Divided */ -@celledBorderWidth: 1px; -@celledBorder: @celledBorderWidth solid @borderColor; -@celledInvertedBorder: @dividedBorderWidth solid @whiteBorderColor; -@celledHorizontalPadding: 0.5em; -@celledChildListBorder: none; -@celledChildItemBorder: none; - -/* Divided Horizontal */ -@horizontalCelledSpacing: (@horizontalSpacing / 2); -@horizontalCelledLineHeight: 0.6; - -/* Relaxed */ -@relaxedItemVerticalPadding: @relative6px; -@relaxedChildItemVerticalPadding: @relative3px; -@relaxedHeaderMargin: 0.25rem; -@relaxedHorizontalPadding: 1rem; - -/* Very Relaxed */ -@veryRelaxedItemVerticalPadding: @relative12px; -@veryRelaxedChildItemVerticalPadding: @relative4px; -@veryRelaxedHeaderMargin: 0.5rem; -@veryRelaxedHorizontalPadding: 1.5rem; - diff --git a/src/themes/default/elements/loader.overrides b/src/themes/default/elements/loader.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/loader.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/loader.variables b/src/themes/default/elements/loader.variables deleted file mode 100644 index b52281e..0000000 --- a/src/themes/default/elements/loader.variables +++ /dev/null @@ -1,73 +0,0 @@ -/******************************* - Loader -*******************************/ - -/* Some global loader styles defined in site.variables */ -// @loaderSpeed -// @loaderLineWidth -// @loaderFillColor -// @loaderLineColor -// @invertedLoaderFillColor -// @invertedLoaderLineColor - -/*------------------- - Standard ---------------------*/ - -@loaderTopOffset: 50%; -@loaderLeftOffset: 50%; - -@shapeBorderColor: @loaderLineColor transparent transparent; -@invertedShapeBorderColor: @invertedLoaderLineColor transparent transparent; - -/*------------------- - Types ---------------------*/ - -/* Text */ -@textDistance: @relativeMini; -@loaderTextColor: @textColor; -@invertedLoaderTextColor: @invertedTextColor; - - -/*------------------- - States ---------------------*/ - -@indeterminateDirection: reverse; -@indeterminateSpeed: (2 * @loaderSpeed); - -/*------------------- - Variations ---------------------*/ - -@inlineVerticalAlign: middle; -@inlineMargin: 0em; - -/* Exact Sizes (Avoids Rounding Errors) */ -@mini : @14px; -@tiny : @16px; -@small : @24px; -@medium : @32px; -@large : @48px; -@big : @52px; -@huge : @58px; -@massive : @64px; - -@miniOffset: 0em 0em 0em -(@mini / 2); -@tinyOffset: 0em 0em 0em -(@tiny / 2); -@smallOffset: 0em 0em 0em -(@small / 2); -@mediumOffset: 0em 0em 0em -(@medium / 2); -@largeOffset: 0em 0em 0em -(@large / 2); -@bigOffset: 0em 0em 0em -(@big / 2); -@hugeOffset: 0em 0em 0em -(@huge / 2); -@massiveOffset: 0em 0em 0em -(@massive / 2); - -@tinyFontSize: @relativeTiny; -@miniFontSize: @relativeMini; -@smallFontSize: @relativeSmall; -@mediumFontSize: @relativeMedium; -@largeFontSize: @relativeLarge; -@bigFontSize: @relativeBig; -@hugeFontSize: @relativeHuge; -@massiveFontSize: @relativeMassive; diff --git a/src/themes/default/elements/placeholder.overrides b/src/themes/default/elements/placeholder.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/placeholder.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/placeholder.variables b/src/themes/default/elements/placeholder.variables deleted file mode 100644 index 9e74197..0000000 --- a/src/themes/default/elements/placeholder.variables +++ /dev/null @@ -1,55 +0,0 @@ -@placeholderMaxWidth: 30rem; - -/* Key Content Sizing */ -@placeholderLineMargin: @relative12px; -@placeholderHeaderLineHeight: @relative9px; -@placeholderLineHeight: @relative7px; -@placeholderParagraphLineHeight: @placeholderLineHeight; - -@placeholderSpacing: @relative20px; - -/* Interval between consecutive placeholders */ -@placeholderAnimationInterval: 0.15s; - -/* Repeated Placeholder */ -@consecutivePlaceholderSpacing: 2rem; - -/* Image */ -@placeholderImageHeight: 100px; - -/* Header Image */ -@placeholderImageWidth: 3em; -@placeholderImageTextIndent: @10px; - -/* Paragraph */ -@placeholderHeaderLineOneOutdent: 20%; -@placeholderHeaderLineTwoOutdent: 60%; - -@placeholderLineOneOutdent: @placeholderFullLineOutdent; -@placeholderLineTwoOutdent: @placeholderMediumLineOutdent; -@placeholderLineThreeOutdent: @placeholderVeryLongLineOutdent; -@placeholderLineFourOutdent: @placeholderLongLineOutdent; -@placeholderLineFiveOutdent: @placeholderShortLineOutdent; - - -/* Glow Gradient */ -@placeholderLoadingAnimationDuration: 2s; -@placeholderLoadingGradientWidth: 1200px; -@placeholderLoadingGradient: linear-gradient(to right, - rgba(0, 0, 0, 0.08) 0%, - rgba(0, 0, 0, 0.15) 15%, - rgba(0, 0, 0, 0.08) 30% -); -@placeholderInvertedLoadingGradient: linear-gradient(to right, - rgba(255, 255, 255, 0.08) 0%, - rgba(255, 255, 255, 0.14) 15%, - rgba(255, 255, 255, 0.08) 30% -); - -/* Variations */ -@placeholderFullLineOutdent: 0%; -@placeholderVeryLongLineOutdent: 10%; -@placeholderLongLineOutdent: 35%; -@placeholderMediumLineOutdent: 50%; -@placeholderShortLineOutdent: 65%; -@placeholderVeryShortLineOutdent: 80%; diff --git a/src/themes/default/elements/rail.overrides b/src/themes/default/elements/rail.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/rail.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/rail.variables b/src/themes/default/elements/rail.variables deleted file mode 100644 index 321a26d..0000000 --- a/src/themes/default/elements/rail.variables +++ /dev/null @@ -1,34 +0,0 @@ -/******************************* - Rail -*******************************/ - -/*------------------- - Element ---------------------*/ - -@width: 300px; -@height: 100%; - -@distance: 4rem; -@splitDistance: (@distance / 2); - -/*------------------- - Variations ---------------------*/ - -/* Close */ -@closeDistance: 2em; -@veryCloseDistance: 1em; - -@splitCloseDistance: (@closeDistance / 2); -@splitVeryCloseDistance: (@veryCloseDistance / 2); - -@closeWidth: ~"calc("@width~" + "@splitCloseDistance~")"; -@veryCloseWidth: ~"calc("@width~" + "@splitVeryCloseDistance~")"; - -/* Dividing */ -@dividingBorder: 1px solid @borderColor; -@dividingDistance: 5rem; -@splitDividingDistance: (@dividingDistance / 2); -@dividingWidth: @width + @splitDividingDistance; - diff --git a/src/themes/default/elements/reveal.overrides b/src/themes/default/elements/reveal.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/reveal.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/reveal.variables b/src/themes/default/elements/reveal.variables deleted file mode 100644 index 1c7fac4..0000000 --- a/src/themes/default/elements/reveal.variables +++ /dev/null @@ -1,18 +0,0 @@ -/******************************* - Reveal -*******************************/ - -@transitionDelay: 0.1s; -@transitionDuration: 0.5s; -@transitionEasing: cubic-bezier(0.175, 0.885, 0.320, 1); -@transition: all @transitionDuration @defaultEasing @transitionDelay; - -@bottomZIndex: 2; -@topZIndex: 3; -@activeZIndex: 4; -@overlayZIndex: 5; - -/* Types */ -@rotateDegrees: 110deg; -@moveTransition: transform @transitionDuration @transitionEasing @transitionDelay; -@slideTransition: transform @transitionDuration @defaultEasing @transitionDelay; diff --git a/src/themes/default/elements/segment.overrides b/src/themes/default/elements/segment.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/elements/segment.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/elements/segment.variables b/src/themes/default/elements/segment.variables deleted file mode 100644 index 9b2c4d4..0000000 --- a/src/themes/default/elements/segment.variables +++ /dev/null @@ -1,154 +0,0 @@ -/******************************* - Segment -*******************************/ - -/*------------------- - Element ---------------------*/ - -@background: @white; -@borderWidth: 1px; -@border: @borderWidth solid @borderColor; - -@boxShadow: @subtleShadow; -@verticalPadding: 1em; -@horizontalPadding: 1em; -@padding: @verticalPadding @horizontalPadding; - -@verticalMargin: 1rem; -@horizontalMargin: 0em; -@margin: @verticalMargin @horizontalMargin; -@borderRadius: @defaultBorderRadius; - -/*------------------- - Group ---------------------*/ - -@groupedMargin: @margin; -@groupedBorder: @border; -@groupedBoxShadow: @boxShadow; -@groupedBorderRadius: @borderRadius; - -@nestedGroupMargin: @verticalMargin @verticalMargin; - -@groupedSegmentBorder: none; -@groupedSegmentDivider: @border; -@groupedSegmentMargin: 0em; -@groupedSegmentWidth: auto; -@groupedSegmentBoxShadow: none; - -/*------------------- - Coupling ---------------------*/ - -/* Page Grid Segment */ -@pageGridMargin: (2 * @verticalPadding); - -/******************************* - Types -*******************************/ - -/* Placeholder */ -@placeholderBackground: @offWhite; -@placeholderPadding: @padding; -@placeholderBorderColor: @borderColor; -@placeholderBoxShadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset; -@placeholderMinHeight: 18rem; -@placeholderContentMaxWidth: 15rem; -@placeholderContentInlineButtonMargin: 0px @5px 0px 0px; - - -/* Piled */ -@piledZIndex: auto; -@piledMargin: 3em; -@piledBoxShadow: ''; -@piledDegrees: 1.2deg; -@piledBorder: @border; - -/* Circular */ -@circularPadding: 2em; - -/* Stacked */ -@stackedHeight: 6px; -@stackedPageBackground: @subtleTransparentBlack; -@stackedPadding: @verticalPadding + (0.4em); -@tallStackedPadding: @verticalPadding + (0.8em); - -/******************************* - States -*******************************/ - -/* Loading Dimmer */ -@loaderDimmerColor: rgba(255, 255, 255, 0.8); -@loaderDimmerZIndex: 100; - -/* Loading Spinner */ -@loaderSize: 3em; -@loaderLineZIndex: 101; - - -/******************************* - Variations -*******************************/ - - -/* Raised */ -@raisedBoxShadow: @floatingShadow; - -/* Padded */ -@paddedSegmentPadding: 1.5em; -@veryPaddedSegmentPadding: 3em; - -/* Attached */ -@attachedTopOffset: 0px; -@attachedBottomOffset: 0px; -@attachedHorizontalOffset: -@borderWidth; -@attachedWidth: calc(100% - (@attachedHorizontalOffset * 2)); -@attachedBoxShadow: none; -@attachedBorder: @borderWidth solid @solidBorderColor; -@attachedBottomBoxShadow: - @boxShadow, - @attachedBoxShadow -; - -/* Inverted */ -@invertedBackground: @black; - -/* Floated */ -@floatedDistance: 1em; - -/* Basic */ -@basicBackground: none transparent; -@basicBorder: none; -@basicBoxShadow: none; -@basicBorderRadius: 0px; - -/* Colors */ -@coloredBorderSize: 2px; - -/* Ordinality */ -@secondaryBackground: @darkWhite; -@secondaryColor: @mutedTextColor; - -@tertiaryBackground: @midWhite; -@tertiaryColor: @mutedTextColor; - -@secondaryInvertedLightness: 0.2; -@secondaryInvertedBackground: - lighten(@black, (@secondaryInvertedLightness * 100)) - linear-gradient( - rgba(255, 255, 255, @secondaryInvertedLightness) 0%, - rgba(255, 255, 255, @secondaryInvertedLightness) 100% - ) -; -@secondaryInvertedColor: @invertedMutedTextColor; - -@tertiaryInvertedLightness: 0.35; -@tertiaryInvertedBackground: - lighten(@black, (@tertiaryInvertedLightness * 100)) - linear-gradient( - rgba(255, 255, 255, @tertiaryInvertedLightness) 0%, - rgba(255, 255, 255, @tertiaryInvertedLightness) 100% - ) -; -@tertiaryInvertedColor: @invertedMutedTextColor; diff --git a/src/themes/default/elements/step.overrides b/src/themes/default/elements/step.overrides deleted file mode 100644 index e7aca52..0000000 --- a/src/themes/default/elements/step.overrides +++ /dev/null @@ -1,16 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Step'; - src: - url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), - url(data:application/font-woff;charset=utf-8;base64,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) format('woff') - ; -} -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - font-family: 'Step'; - content: '\e800'; /* '' */ -} \ No newline at end of file diff --git a/src/themes/default/elements/step.variables b/src/themes/default/elements/step.variables deleted file mode 100644 index 332472d..0000000 --- a/src/themes/default/elements/step.variables +++ /dev/null @@ -1,130 +0,0 @@ -/******************************* - Step -*******************************/ - -/*------------------- - Group ---------------------*/ - -@stepMargin: 1em 0em; -@stepsBorderRadius: @defaultBorderRadius; -@stepsBackground: ''; -@stepsBoxShadow: none; -@stepsBorder: 1px solid @borderColor; - -/*------------------- - Element ---------------------*/ - -@verticalMargin: 0em; -@horizontalMargin: 0em; - -@arrowSize: @relativeLarge; -@verticalPadding: @relativeLarge; -@horizontalPadding: 2em; - -@transition: - background-color @defaultDuration @defaultEasing, - opacity @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing, - box-shadow @defaultDuration @defaultEasing -; -@lineHeight: @relativeLarge; -@alignItems: center; -@justifyContent: center; -@backgroundColor: @white; -@background: @backgroundColor; -@borderRadius: 0em; -@borderWidth: 1px; -@boxShadow: none; -@border: none; -@divider: @borderWidth solid @borderColor; - -/* Icon */ -@iconDistance: 1rem; -@iconSize: 2.5em; -@iconAlign: middle; - -/* Title */ -@titleFontFamily: @headerFont; -@titleFontWeight: @bold; -@titleFontSize: @relativeLarge; -@titleColor: @darkTextColor; - -/* Description */ -@descriptionDistance: 0.25em; -@descriptionFontSize: @relativeSmall; -@descriptionFontWeight: @normal; -@descriptionColor: @textColor; - - -/* Arrow */ -@arrowBackgroundColor: @backgroundColor; -@arrowTopOffset: 50%; -@arrowRightOffset: 0%; -@arrowBorderWidth: 0px @borderWidth @borderWidth 0px; - -@arrowDisplay: block; -@lastArrowDisplay: none; - -@activeArrowDisplay: block; -@activeLastArrowDisplay: none; - -/* Mobile */ -@mobileIconDistance: @iconDistance; - -/*------------------- - Types ---------------------*/ - -/* Vertical */ -@verticalDivider: @divider; -@verticalArrowTopOffset: 50%; -@verticalArrowRightOffset: 0%; -@verticalArrowBorderWidth: 0px @borderWidth @borderWidth 0px; - -@verticalArrowDisplay: none; -@verticalLastArrowDisplay: @verticalArrowDisplay; - -@verticalActiveArrowDisplay: block; -@verticalActiveLastArrowDisplay: block; - -/*------------------- - Variations ---------------------*/ - -@attachedHorizontalOffset: -@borderWidth; -@attachedVerticalOffset: 0; -@attachedWidth: calc(100% + (-@attachedHorizontalOffset * 2)); - -@orderedFontFamily: inherit; -@orderedFontWeight: @bold; - -/*------------------- - States ---------------------*/ - -/* Completed */ -@completedColor: @positiveColor; - -/* Hover */ -@hoverBackground: @offWhite; -@hoverColor: @hoveredTextColor; - -/* Down */ -@downBackground: @darkWhite; -@downColor: @pressedTextColor; - -/* Active */ -@activeBackground: @darkWhite; -@activeColor: @linkColor; -@activeIconColor: @darkTextColor; - -/* Active + Hover */ -@activeHoverBackground: @lightGrey; -@activeHoverColor: @textColor; - - -/* Disabled */ -@disabledBackground: @background; -@disabledColor: @disabledTextColor; diff --git a/src/themes/default/globals/site.overrides b/src/themes/default/globals/site.overrides deleted file mode 100644 index 79bef20..0000000 --- a/src/themes/default/globals/site.overrides +++ /dev/null @@ -1,7 +0,0 @@ -/******************************* - Global Overrides -*******************************/ - -:root { - color-scheme: dark; -} diff --git a/src/themes/default/globals/site.variables b/src/themes/default/globals/site.variables deleted file mode 100644 index 824eac8..0000000 --- a/src/themes/default/globals/site.variables +++ /dev/null @@ -1,992 +0,0 @@ -/******************************* - Site Settings -*******************************/ - -/*------------------- - Fonts ---------------------*/ - -@fontName : 'Lato'; -@fontSmoothing : antialiased; - -@headerFont : @fontName, 'Helvetica Neue', Arial, Helvetica, sans-serif; -@pageFont : @fontName, 'Helvetica Neue', Arial, Helvetica, sans-serif; - -@googleFontName : @fontName; -@importGoogleFonts : true; -@googleFontSizes : '400,700,400italic,700italic'; -@googleSubset : 'latin'; - -@googleProtocol : 'https://'; -@googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}'; - - -@bold : 600; -@normal : normal; - -/*------------------- - Base Sizes ---------------------*/ - -/* This is the single variable that controls them all */ -@emSize : 14px; - -/* The size of page text */ -@fontSize : 14px; - - -/*------------------- - Border Radius ---------------------*/ - -/* See Power-user section below - for explanation of @px variables -*/ -@relativeBorderRadius: @relative5px; -@absoluteBorderRadius: @5px; - -@defaultBorderRadius: @absoluteBorderRadius; - -/*------------------- - Brand Colors ---------------------*/ - -@primaryColor : #6987AF; -@secondaryColor : @black; - -@lightPrimaryColor : @lightBlue; -@lightSecondaryColor : @lightBlack; - -/*-------------- - Page Heading ----------------*/ - -@headerFontWeight : @bold; -@headerLineHeight : unit((18 / 14), em); - -@h1 : unit((28 / 14), rem); -@h2 : unit((24 / 14), rem); -@h3 : unit((18 / 14), rem); -@h4 : unit((15 / 14), rem); -@h5 : unit((14 / 14), rem); - -/*-------------- - Form Input ----------------*/ - -/* This adjusts the default form input across all elements */ -@inputBackground : @white; -@inputVerticalPadding : @relative11px; -@inputHorizontalPadding : @relative14px; -@inputPadding : @inputVerticalPadding @inputHorizontalPadding; - -/* Input Text Color */ -@inputColor: @textColor; -@inputPlaceholderColor: darken(@textColor, 40); -@inputPlaceholderFocusColor: darken(@textColor, 40); - -/* Line Height Default For Inputs in Browser (Descenders are 17px at 14px base em) */ -@inputLineHeight: unit((17 / 14), em); - -/*------------------- - Focused Input ---------------------*/ - -/* Used on inputs, textarea etc */ -@focusedFormBorderColor: #85B7D9; - -/* Used on dropdowns, other larger blocks */ -@focusedFormMutedBorderColor: #96C8DA; - -@unfocusedOutlineColor : transparent; -@unfocusedOutlineOffset : 0.4rem; -@focusedOutlineStyle : solid; -@focusedOutlineWidth : @2px; -@focusedOutlineColor : color-mix( - in srgb, - @focusedFormMutedBorderColor, - transparent 50% -); -@focusedOutlineOffset : 0rem; - -/*------------------- - Sizes ---------------------*/ - -/* - Sizes are all expressed in terms of 14px/em (default em) - This ensures these "ratios" remain constant despite changes in EM -*/ - -@miniSize : (11 / 14); -@tinySize : (12 / 14); -@smallSize : (13 / 14); -@mediumSize : (14 / 14); -@largeSize : (16 / 14); -@bigSize : (18 / 14); -@hugeSize : (20 / 14); -@massiveSize : (24 / 14); - - -/*------------------- - Page ---------------------*/ - -@pageBackground : #2E3235; -@pageOverflowX : hidden; - -@lineHeight : 1.4285em; -@textColor : #DDDDDD; - -/*------------------- - Paragraph ---------------------*/ - -@paragraphMargin : 0em 0em 1em; -@paragraphLineHeight : @lineHeight; - -/*------------------- - Links ---------------------*/ - -@linkColor : @primaryColor; -@linkUnderline : none; -@linkHoverColor : lighten(saturate(@linkColor, 20), 15, relative); -@linkHoverUnderline : @linkUnderline; - -/*------------------- - Scroll Bars ---------------------*/ - -@useCustomScrollbars: true; - -@customScrollbarWidth: 10px; -@customScrollbarHeight: 10px; - -@trackBackground: rgba(0, 0, 0, 0.1); -@trackBorderRadius: 0px; - -@thumbBorderRadius: 5px; -@thumbBackground: rgba(0, 0, 0, 0.25); -@thumbTransition: color 0.2s ease; - -@thumbInactiveBackground: rgba(0, 0, 0, 0.15); -@thumbHoverBackground: rgba(128, 135, 139, 0.8); - -/* Inverted */ -@trackInvertedBackground: rgba(255, 255, 255, 0.1); -@thumbInvertedBackground: rgba(255, 255, 255, 0.25); -@thumbInvertedInactiveBackground: rgba(255, 255, 255, 0.15); -@thumbInvertedHoverBackground: rgba(255, 255, 255, 0.35); - -/*------------------- - Highlighted Text ---------------------*/ - -@highlightBackground : @primaryColor; -@highlightColor : @textColor; - -@inputHighlightBackground : @blue; -@inputHighlightColor : @textColor; - - -/*------------------- - Loader ---------------------*/ - -@loaderSize : @relativeBig; -@loaderSpeed : 0.6s; -@loaderLineWidth : 0.2em; -@loaderFillColor : rgba(0, 0, 0, 0.1); -@loaderLineColor : @grey; - -@invertedLoaderFillColor : rgba(255, 255, 255, 0.15); -@invertedLoaderLineColor : @white; - -/*------------------- - Grid ---------------------*/ - -@columnCount: 16; - -/*------------------- - Transitions ---------------------*/ - -@defaultDuration : 0.1s; -@defaultEasing : ease; - -/*------------------- - Breakpoints ---------------------*/ - -@mobileBreakpoint : 320px; -@tabletBreakpoint : 768px; -@computerBreakpoint : 992px; -@largeMonitorBreakpoint : 1200px; -@widescreenMonitorBreakpoint : 1920px; - -/*------------------- - Site Colors ---------------------*/ - -/*--- Colors ---*/ -@red : #DB2828; -@orange : #C06D36; -@yellow : #FBBD08; -@olive : #B5CC18; -@green : #21BA45; -@teal : #00B5AD; -@blue : #2185D0; -@violet : #6435C9; -@purple : #A333C8; -@pink : #E03997; -@brown : #A5673F; -@grey : #767676; -@black : #F9FAFB; - -/*--- Light Colors ---*/ -@lightRed : #FF695E; -@lightOrange : #FF851B; -@lightYellow : #FFE21F; -@lightOlive : #D9E778; -@lightGreen : #2ECC40; -@lightTeal : #6DFFFF; -@lightBlue : #54C8FF; -@lightViolet : #A291FB; -@lightPurple : #DC73FF; -@lightPink : #FF8EDF; -@lightBrown : #D67C1C; -@lightGrey : #DCDDDE; -@lightBlack : #545454; - -/*--- Neutrals ---*/ -@fullBlack : #FFFFFF; -@offWhite : #34393D; -@darkWhite : #4B5257; -@midWhite : #666E74; -@white : #2E3235; - -/*--- Colored Backgrounds ---*/ -@redBackground : #FFE8E6; -@orangeBackground : #FFEDDE; -@yellowBackground : #FFF8DB; -@oliveBackground : #FBFDEF; -@greenBackground : #E5F9E7; -@tealBackground : #E1F7F7; -@blueBackground : #DFF0FF; -@violetBackground : #EAE7FF; -@purpleBackground : #F6E7FF; -@pinkBackground : #FFE3FB; -@brownBackground : #F1E2D3; - -/*--- Colored Headers ---*/ -@redHeaderColor : darken(@redTextColor, 5); -@oliveHeaderColor : darken(@oliveTextColor, 5); -@greenHeaderColor : darken(@greenTextColor, 5); -@yellowHeaderColor : darken(@yellowTextColor, 5); -@blueHeaderColor : darken(@blueTextColor, 5); -@tealHeaderColor : darken(@tealTextColor, 5); -@pinkHeaderColor : darken(@pinkTextColor, 5); -@violetHeaderColor : darken(@violetTextColor, 5); -@purpleHeaderColor : darken(@purpleTextColor, 5); -@orangeHeaderColor : darken(@orangeTextColor, 5); -@brownHeaderColor : darken(@brownTextColor, 5); - -/*--- Colored Text ---*/ -@redTextColor : @red; -@orangeTextColor : @orange; -@yellowTextColor : #B58105; // Yellow text is difficult to read -@oliveTextColor : #8ABC1E; // Olive is difficult to read -@greenTextColor : #1EBC30; // Green is difficult to read -@tealTextColor : #10A3A3; // Teal text is difficult to read -@blueTextColor : @blue; -@violetTextColor : @violet; -@purpleTextColor : @purple; -@pinkTextColor : @pink; -@brownTextColor : @brown; - -/*--- Colored Border ---*/ -@redBorderColor : @redTextColor; -@orangeBorderColor : @orangeTextColor; -@yellowBorderColor : @yellowTextColor; -@oliveBorderColor : @oliveTextColor; -@greenBorderColor : @greenTextColor; -@tealBorderColor : @tealTextColor; -@blueBorderColor : @blueTextColor; -@violetBorderColor : @violetTextColor; -@purpleBorderColor : @purpleTextColor; -@pinkBorderColor : @pinkTextColor; -@brownBorderColor : @brownTextColor; - -/*------------------- - Alpha Colors ---------------------*/ - -@subtleTransparentBlack : rgba(255, 255, 255, 0.03); -@transparentBlack : rgba(255, 255, 255, 0.05); -@strongTransparentBlack : rgba(255, 255, 255, 0.10); -@veryStrongTransparentBlack : rgba(255, 255, 255, 0.15); - -@subtleTransparentWhite : rgba(0, 0, 0, 0.02); -@transparentWhite : rgba(0, 0, 0, 0.08); -@strongTransparentWhite : rgba(0, 0, 0, 0.15); - -/*------------------- - Accents ---------------------*/ - -/* Differentiating Neutrals */ -@subtleGradient: linear-gradient(transparent, @transparentBlack); - -/* Differentiating Layers */ -@subtleShadow: - 0px 1px 2px 0 @borderColor -; -@floatingShadow: - 0px 2px 4px 0px rgba(34, 36, 38, 0.12), - 0px 2px 10px 0px rgba(34, 36, 38, 0.15) -; -@raisedShadow: 0px 2px 3px 0px @borderColor; - -/******************************* - Power-User -*******************************/ - - -/*------------------- - Emotive Colors ---------------------*/ - -/* Positive */ -@positiveColor : @green; -@positiveBackgroundColor : #FCFFF5; -@positiveBorderColor : #A3C293; -@positiveHeaderColor : #1A531B; -@positiveTextColor : #2C662D; - -/* Negative */ -@negativeColor : @red; -@negativeBackgroundColor : #FFF6F6; -@negativeBorderColor : #E0B4B4; -@negativeHeaderColor : #912D2B; -@negativeTextColor : #9F3A38; - -/* Info */ -@infoColor : #31CCEC; -@infoBackgroundColor : #F8FFFF; -@infoBorderColor : #A9D5DE; -@infoHeaderColor : #0E566C; -@infoTextColor : #276F86; - -/* Warning */ -@warningColor : #F2C037; -@warningBorderColor : #794B02; -@warningBackgroundColor : #FFFAF3; -@warningHeaderColor : #794B02; -@warningTextColor : #573A08; - -/*------------------- - Paths ---------------------*/ - -/* For source only. Modified in gulp for dist */ -@imagePath : '../../themes/default/assets/images'; -@fontPath : '../../themes/default/assets/fonts'; - -/*------------------- - Em Sizes ---------------------*/ - -/* - This rounds @size values to the closest pixel then expresses that value in (r)em. - This ensures all size values round to exact pixels -*/ -@miniRaw : unit( (round(@miniSize * @emSize) / @emSize )); -@tinyRaw : unit( (round(@tinySize * @emSize) / @emSize )); -@smallRaw : unit( (round(@smallSize * @emSize) / @emSize )); -@mediumRaw : unit( (round(@mediumSize * @emSize) / @emSize )); -@largeRaw : unit( (round(@largeSize * @emSize) / @emSize )); -@bigRaw : unit( (round(@bigSize * @emSize) / @emSize )); -@hugeRaw : unit( (round(@hugeSize * @emSize) / @emSize )); -@massiveRaw : unit( (round(@massiveSize * @emSize) / @emSize )); - -@mini : unit( @miniRaw, rem); -@tiny : unit( @tinyRaw, rem); -@small : unit( @smallRaw, rem); -@medium : unit( @mediumRaw, rem); -@large : unit( @largeRaw, rem); -@big : unit( @bigRaw, rem); -@huge : unit( @hugeRaw, rem); -@massive : unit( @massiveRaw, rem); - -/* em */ -@relativeMini : unit( @miniRaw, em); -@relativeTiny : unit( @tinyRaw, em); -@relativeSmall : unit( @smallRaw, em); -@relativeMedium : unit( @mediumRaw, em); -@relativeLarge : unit( @largeRaw, em); -@relativeBig : unit( @bigRaw, em); -@relativeHuge : unit( @hugeRaw, em); -@relativeMassive : unit( @massiveRaw, em); - -/* rem */ -@absoluteMini : unit( @miniRaw, rem); -@absoluteTiny : unit( @tinyRaw, rem); -@absoluteSmall : unit( @smallRaw, rem); -@absoluteMedium : unit( @mediumRaw, rem); -@absoluteLarge : unit( @largeRaw, rem); -@absoluteBig : unit( @bigRaw, rem); -@absoluteHuge : unit( @hugeRaw, rem); -@absoluteMassive : unit( @massiveRaw, rem); - -/*------------------- - Icons ---------------------*/ - -/* Maximum Glyph Width of Icon */ -@iconWidth : 1.18em; - -/*------------------- - Neutral Text ---------------------*/ - -@darkTextColor : rgba(255, 255, 255, 0.95); -@mutedTextColor : rgba(255, 255, 255, 0.6); -@lightTextColor : rgba(255, 255, 255, 0.50); - -@unselectedTextColor : rgba(255, 255, 255, 0.4); -@hoveredTextColor : rgba(255, 255, 255, 0.8); -@pressedTextColor : rgba(255, 255, 255, 0.9); -@selectedTextColor : rgba(255, 255, 255, 0.95); -@disabledTextColor : rgba(255, 255, 255, 0.2); - -@invertedTextColor : rgba(0, 0, 0, 0.9); -@invertedMutedTextColor : rgba(0, 0, 0, 0.8); -@invertedLightTextColor : rgba(0, 0, 0, 0.7); -@invertedUnselectedTextColor : rgba(0, 0, 0, 0.5); -@invertedHoveredTextColor : rgba(0, 0, 0, 1); -@invertedPressedTextColor : rgba(0, 0, 0, 1); -@invertedSelectedTextColor : rgba(0, 0, 0, 1); -@invertedDisabledTextColor : rgba(0, 0, 0, 0.2); - -/*------------------- - Brand Colors ---------------------*/ - -@facebookColor : #3B5998; -@twitterColor : #55ACEE; -@googlePlusColor : #DD4B39; -@linkedInColor : #1F88BE; -@youtubeColor : #FF0000; -@pinterestColor : #BD081C; -@vkColor : #4D7198; -@instagramColor : #49769C; - -/*------------------- - Borders ---------------------*/ - -@circularRadius : 500rem; - -@borderColor : rgba(24, 26, 28, 0.45); -@strongBorderColor : rgba(24, 26, 28, 0.22); -@internalBorderColor : rgba(24, 26, 28, 0.1); -@selectedBorderColor : rgba(24, 26, 28, 0.35); -@strongSelectedBorderColor : rgba(24, 26, 28, 0.5); -@disabledBorderColor : rgba(24, 26, 28, 0.5); - -@solidInternalBorderColor : #222222; -@solidBorderColor : #3B3C3E; -@solidSelectedBorderColor : #4D5B66; - -@whiteBorderColor : rgba(0, 0, 0, 0.1); -@selectedWhiteBorderColor : rgba(0, 0, 0, 0.8); - -@solidWhiteBorderColor : #34393D; -@selectedSolidWhiteBorderColor : #4D5B66; - - -/*------------------- - Derived Values ---------------------*/ - -/* Loaders Position Offset */ -@loaderOffset : -(@loaderSize / 2); -@loaderMargin : @loaderOffset 0em 0em @loaderOffset; - -/* Rendered Scrollbar Width */ -@scrollbarWidth: 17px; - -/* Maximum Single Character Glyph Width, aka Capital "W" */ -@glyphWidth: 1.1em; - -/* Used to match floats with text */ -@lineHeightOffset : ((@lineHeight - 1em) / 2); -@headerLineHeightOffset : ((@headerLineHeight - 1em) / 2); - -/* Header Spacing */ -@headerTopMargin : e(%("calc(2rem - %d)", @headerLineHeightOffset)); -@headerBottomMargin : 1rem; -@headerMargin : @headerTopMargin 0em @headerBottomMargin; - -/* Minimum Mobile Width */ -@pageMinWidth : 320px; - -/* Positive / Negative Dupes */ -@successBackgroundColor : @positiveBackgroundColor; -@successColor : @positiveColor; -@successBorderColor : @positiveBorderColor; -@successHeaderColor : @positiveHeaderColor; -@successTextColor : @positiveTextColor; - -@errorBackgroundColor : @negativeBackgroundColor; -@errorColor : @negativeColor; -@errorBorderColor : @negativeBorderColor; -@errorHeaderColor : @negativeHeaderColor; -@errorTextColor : @negativeTextColor; - - -/* Responsive */ -@largestMobileScreen : (@tabletBreakpoint - 1px); -@largestTabletScreen : (@computerBreakpoint - 1px); -@largestSmallMonitor : (@largeMonitorBreakpoint - 1px); -@largestLargeMonitor : (@widescreenMonitorBreakpoint - 1px); - - -/*------------------- - Exact Pixel Values ---------------------*/ -/* - These are used to specify exact pixel values in em - for things like borders that remain constantly - sized as emSize adjusts - - Since there are many more sizes than names for sizes, - these are named by their original pixel values. - -*/ - -@1px : unit( (1 / @emSize), rem); -@2px : unit( (2 / @emSize), rem); -@3px : unit( (3 / @emSize), rem); -@4px : unit( (4 / @emSize), rem); -@5px : unit( (5 / @emSize), rem); -@6px : unit( (6 / @emSize), rem); -@7px : unit( (7 / @emSize), rem); -@8px : unit( (8 / @emSize), rem); -@9px : unit( (9 / @emSize), rem); -@10px : unit( (10 / @emSize), rem); -@11px : unit( (11 / @emSize), rem); -@12px : unit( (12 / @emSize), rem); -@13px : unit( (13 / @emSize), rem); -@14px : unit( (14 / @emSize), rem); -@15px : unit( (15 / @emSize), rem); -@16px : unit( (16 / @emSize), rem); -@17px : unit( (17 / @emSize), rem); -@18px : unit( (18 / @emSize), rem); -@19px : unit( (19 / @emSize), rem); -@20px : unit( (20 / @emSize), rem); -@21px : unit( (21 / @emSize), rem); -@22px : unit( (22 / @emSize), rem); -@23px : unit( (23 / @emSize), rem); -@24px : unit( (24 / @emSize), rem); -@25px : unit( (25 / @emSize), rem); -@26px : unit( (26 / @emSize), rem); -@27px : unit( (27 / @emSize), rem); -@28px : unit( (28 / @emSize), rem); -@29px : unit( (29 / @emSize), rem); -@30px : unit( (30 / @emSize), rem); -@31px : unit( (31 / @emSize), rem); -@32px : unit( (32 / @emSize), rem); -@33px : unit( (33 / @emSize), rem); -@34px : unit( (34 / @emSize), rem); -@35px : unit( (35 / @emSize), rem); -@36px : unit( (36 / @emSize), rem); -@37px : unit( (37 / @emSize), rem); -@38px : unit( (38 / @emSize), rem); -@39px : unit( (39 / @emSize), rem); -@40px : unit( (40 / @emSize), rem); -@41px : unit( (41 / @emSize), rem); -@42px : unit( (42 / @emSize), rem); -@43px : unit( (43 / @emSize), rem); -@44px : unit( (44 / @emSize), rem); -@45px : unit( (45 / @emSize), rem); -@46px : unit( (46 / @emSize), rem); -@47px : unit( (47 / @emSize), rem); -@48px : unit( (48 / @emSize), rem); -@49px : unit( (49 / @emSize), rem); -@50px : unit( (50 / @emSize), rem); -@51px : unit( (51 / @emSize), rem); -@52px : unit( (52 / @emSize), rem); -@53px : unit( (53 / @emSize), rem); -@54px : unit( (54 / @emSize), rem); -@55px : unit( (55 / @emSize), rem); -@56px : unit( (56 / @emSize), rem); -@57px : unit( (57 / @emSize), rem); -@58px : unit( (58 / @emSize), rem); -@59px : unit( (59 / @emSize), rem); -@60px : unit( (60 / @emSize), rem); -@61px : unit( (61 / @emSize), rem); -@62px : unit( (62 / @emSize), rem); -@63px : unit( (63 / @emSize), rem); -@64px : unit( (64 / @emSize), rem); - -@relative1px : unit( (1 / @emSize), em); -@relative2px : unit( (2 / @emSize), em); -@relative3px : unit( (3 / @emSize), em); -@relative4px : unit( (4 / @emSize), em); -@relative5px : unit( (5 / @emSize), em); -@relative6px : unit( (6 / @emSize), em); -@relative7px : unit( (7 / @emSize), em); -@relative8px : unit( (8 / @emSize), em); -@relative9px : unit( (9 / @emSize), em); -@relative10px : unit( (10 / @emSize), em); -@relative11px : unit( (11 / @emSize), em); -@relative12px : unit( (12 / @emSize), em); -@relative13px : unit( (13 / @emSize), em); -@relative14px : unit( (14 / @emSize), em); -@relative15px : unit( (15 / @emSize), em); -@relative16px : unit( (16 / @emSize), em); -@relative17px : unit( (17 / @emSize), em); -@relative18px : unit( (18 / @emSize), em); -@relative19px : unit( (19 / @emSize), em); -@relative20px : unit( (20 / @emSize), em); -@relative21px : unit( (21 / @emSize), em); -@relative22px : unit( (22 / @emSize), em); -@relative23px : unit( (23 / @emSize), em); -@relative24px : unit( (24 / @emSize), em); -@relative25px : unit( (25 / @emSize), em); -@relative26px : unit( (26 / @emSize), em); -@relative27px : unit( (27 / @emSize), em); -@relative28px : unit( (28 / @emSize), em); -@relative29px : unit( (29 / @emSize), em); -@relative30px : unit( (30 / @emSize), em); -@relative31px : unit( (31 / @emSize), em); -@relative32px : unit( (32 / @emSize), em); -@relative33px : unit( (33 / @emSize), em); -@relative34px : unit( (34 / @emSize), em); -@relative35px : unit( (35 / @emSize), em); -@relative36px : unit( (36 / @emSize), em); -@relative37px : unit( (37 / @emSize), em); -@relative38px : unit( (38 / @emSize), em); -@relative39px : unit( (39 / @emSize), em); -@relative40px : unit( (40 / @emSize), em); -@relative41px : unit( (41 / @emSize), em); -@relative42px : unit( (42 / @emSize), em); -@relative43px : unit( (43 / @emSize), em); -@relative44px : unit( (44 / @emSize), em); -@relative45px : unit( (45 / @emSize), em); -@relative46px : unit( (46 / @emSize), em); -@relative47px : unit( (47 / @emSize), em); -@relative48px : unit( (48 / @emSize), em); -@relative49px : unit( (49 / @emSize), em); -@relative50px : unit( (50 / @emSize), em); -@relative51px : unit( (51 / @emSize), em); -@relative52px : unit( (52 / @emSize), em); -@relative53px : unit( (53 / @emSize), em); -@relative54px : unit( (54 / @emSize), em); -@relative55px : unit( (55 / @emSize), em); -@relative56px : unit( (56 / @emSize), em); -@relative57px : unit( (57 / @emSize), em); -@relative58px : unit( (58 / @emSize), em); -@relative59px : unit( (59 / @emSize), em); -@relative60px : unit( (60 / @emSize), em); -@relative61px : unit( (61 / @emSize), em); -@relative62px : unit( (62 / @emSize), em); -@relative63px : unit( (63 / @emSize), em); -@relative64px : unit( (64 / @emSize), em); - -/* Columns */ -@oneWide : (1 / @columnCount * 100%); -@twoWide : (2 / @columnCount * 100%); -@threeWide : (3 / @columnCount * 100%); -@fourWide : (4 / @columnCount * 100%); -@fiveWide : (5 / @columnCount * 100%); -@sixWide : (6 / @columnCount * 100%); -@sevenWide : (7 / @columnCount * 100%); -@eightWide : (8 / @columnCount * 100%); -@nineWide : (9 / @columnCount * 100%); -@tenWide : (10 / @columnCount * 100%); -@elevenWide : (11 / @columnCount * 100%); -@twelveWide : (12 / @columnCount * 100%); -@thirteenWide : (13 / @columnCount * 100%); -@fourteenWide : (14 / @columnCount * 100%); -@fifteenWide : (15 / @columnCount * 100%); -@sixteenWide : (16 / @columnCount * 100%); - -@oneColumn : (1 / 1 * 100%); -@twoColumn : (1 / 2 * 100%); -@threeColumn : (1 / 3 * 100%); -@fourColumn : (1 / 4 * 100%); -@fiveColumn : (1 / 5 * 100%); -@sixColumn : (1 / 6 * 100%); -@sevenColumn : (1 / 7 * 100%); -@eightColumn : (1 / 8 * 100%); -@nineColumn : (1 / 9 * 100%); -@tenColumn : (1 / 10 * 100%); -@elevenColumn : (1 / 11 * 100%); -@twelveColumn : (1 / 12 * 100%); -@thirteenColumn : (1 / 13 * 100%); -@fourteenColumn : (1 / 14 * 100%); -@fifteenColumn : (1 / 15 * 100%); -@sixteenColumn : (1 / 16 * 100%); - - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -@disabledOpacity: 0.45; - -/*------------------- - Hover ---------------------*/ - -/*--- Shadows ---*/ -@floatingShadowHover: - 0px 2px 4px 0px rgba(34, 36, 38, 0.15), - 0px 2px 10px 0px rgba(34, 36, 38, 0.25) -; - -/*--- Colors ---*/ -@primaryColorHover : saturate(darken(@primaryColor, 5), 10, relative); -@secondaryColorHover : saturate(lighten(@secondaryColor, 5), 10, relative); -@lightPrimaryColorHover : saturate(darken(@lightPrimaryColor, 5), 10, relative); -@lightSecondaryColorHover : saturate(lighten(@lightSecondaryColor, 5), 10, relative); - -@redHover : saturate(darken(@red, 5), 10, relative); -@orangeHover : saturate(darken(@orange, 5), 10, relative); -@yellowHover : saturate(darken(@yellow, 5), 10, relative); -@oliveHover : saturate(darken(@olive, 5), 10, relative); -@greenHover : saturate(darken(@green, 5), 10, relative); -@tealHover : saturate(darken(@teal, 5), 10, relative); -@blueHover : saturate(darken(@blue, 5), 10, relative); -@violetHover : saturate(darken(@violet, 5), 10, relative); -@purpleHover : saturate(darken(@purple, 5), 10, relative); -@pinkHover : saturate(darken(@pink, 5), 10, relative); -@brownHover : saturate(darken(@brown, 5), 10, relative); - -@lightRedHover : saturate(darken(@lightRed, 5), 10, relative); -@lightOrangeHover : saturate(darken(@lightOrange, 5), 10, relative); -@lightYellowHover : saturate(darken(@lightYellow, 5), 10, relative); -@lightOliveHover : saturate(darken(@lightOlive, 5), 10, relative); -@lightGreenHover : saturate(darken(@lightGreen, 5), 10, relative); -@lightTealHover : saturate(darken(@lightTeal, 5), 10, relative); -@lightBlueHover : saturate(darken(@lightBlue, 5), 10, relative); -@lightVioletHover : saturate(darken(@lightViolet, 5), 10, relative); -@lightPurpleHover : saturate(darken(@lightPurple, 5), 10, relative); -@lightPinkHover : saturate(darken(@lightPink, 5), 10, relative); -@lightBrownHover : saturate(darken(@lightBrown, 5), 10, relative); -@lightGreyHover : saturate(darken(@lightGrey, 5), 10, relative); -@lightBlackHover : saturate(darken(@fullBlack, 5), 10, relative); - -/*--- Emotive ---*/ -@positiveColorHover : saturate(darken(@positiveColor, 5), 10, relative); -@negativeColorHover : saturate(darken(@negativeColor, 5), 10, relative); - -/*--- Brand ---*/ -@facebookHoverColor : saturate(darken(@facebookColor, 5), 10, relative); -@twitterHoverColor : saturate(darken(@twitterColor, 5), 10, relative); -@googlePlusHoverColor : saturate(darken(@googlePlusColor, 5), 10, relative); -@linkedInHoverColor : saturate(darken(@linkedInColor, 5), 10, relative); -@youtubeHoverColor : saturate(darken(@youtubeColor, 5), 10, relative); -@instagramHoverColor : saturate(darken(@instagramColor, 5), 10, relative); -@pinterestHoverColor : saturate(darken(@pinterestColor, 5), 10, relative); -@vkHoverColor : saturate(darken(@vkColor, 5), 10, relative); - -/*--- Dark Tones ---*/ -@fullBlackHover : lighten(@fullBlack, 5); -@blackHover : lighten(@black, 5); -@greyHover : lighten(@grey, 5); - -/*--- Light Tones ---*/ -@whiteHover : darken(@white, 5); -@offWhiteHover : darken(@offWhite, 5); -@darkWhiteHover : darken(@darkWhite, 5); - -/*------------------- - Focus ---------------------*/ - -/*--- Colors ---*/ -@primaryColorFocus : saturate(darken(@primaryColor, 8), 20, relative); -@secondaryColorFocus : saturate(lighten(@secondaryColor, 8), 20, relative); -@lightPrimaryColorFocus : saturate(darken(@lightPrimaryColor, 8), 20, relative); -@lightSecondaryColorFocus : saturate(lighten(@lightSecondaryColor, 8), 20, relative); - -@redFocus : saturate(darken(@red, 8), 20, relative); -@orangeFocus : saturate(darken(@orange, 8), 20, relative); -@yellowFocus : saturate(darken(@yellow, 8), 20, relative); -@oliveFocus : saturate(darken(@olive, 8), 20, relative); -@greenFocus : saturate(darken(@green, 8), 20, relative); -@tealFocus : saturate(darken(@teal, 8), 20, relative); -@blueFocus : saturate(darken(@blue, 8), 20, relative); -@violetFocus : saturate(darken(@violet, 8), 20, relative); -@purpleFocus : saturate(darken(@purple, 8), 20, relative); -@pinkFocus : saturate(darken(@pink, 8), 20, relative); -@brownFocus : saturate(darken(@brown, 8), 20, relative); - -@lightRedFocus : saturate(darken(@lightRed, 8), 20, relative); -@lightOrangeFocus : saturate(darken(@lightOrange, 8), 20, relative); -@lightYellowFocus : saturate(darken(@lightYellow, 8), 20, relative); -@lightOliveFocus : saturate(darken(@lightOlive, 8), 20, relative); -@lightGreenFocus : saturate(darken(@lightGreen, 8), 20, relative); -@lightTealFocus : saturate(darken(@lightTeal, 8), 20, relative); -@lightBlueFocus : saturate(darken(@lightBlue, 8), 20, relative); -@lightVioletFocus : saturate(darken(@lightViolet, 8), 20, relative); -@lightPurpleFocus : saturate(darken(@lightPurple, 8), 20, relative); -@lightPinkFocus : saturate(darken(@lightPink, 8), 20, relative); -@lightBrownFocus : saturate(darken(@lightBrown, 8), 20, relative); -@lightGreyFocus : saturate(darken(@lightGrey, 8), 20, relative); -@lightBlackFocus : saturate(darken(@fullBlack, 8), 20, relative); - -/*--- Emotive ---*/ -@positiveColorFocus : saturate(darken(@positiveColor, 8), 20, relative); -@negativeColorFocus : saturate(darken(@negativeColor, 8), 20, relative); - -/*--- Brand ---*/ -@facebookFocusColor : saturate(darken(@facebookColor, 8), 20, relative); -@twitterFocusColor : saturate(darken(@twitterColor, 8), 20, relative); -@googlePlusFocusColor : saturate(darken(@googlePlusColor, 8), 20, relative); -@linkedInFocusColor : saturate(darken(@linkedInColor, 8), 20, relative); -@youtubeFocusColor : saturate(darken(@youtubeColor, 8), 20, relative); -@instagramFocusColor : saturate(darken(@instagramColor, 8), 20, relative); -@pinterestFocusColor : saturate(darken(@pinterestColor, 8), 20, relative); -@vkFocusColor : saturate(darken(@vkColor, 8), 20, relative); - -/*--- Dark Tones ---*/ -@fullBlackFocus : lighten(@fullBlack, 8); -@blackFocus : lighten(@black, 8); -@greyFocus : lighten(@grey, 8); - -/*--- Light Tones ---*/ -@whiteFocus : darken(@white, 8); -@offWhiteFocus : darken(@offWhite, 8); -@darkWhiteFocus : darken(@darkWhite, 8); - - -/*------------------- - Down (:active) ---------------------*/ - -/*--- Colors ---*/ -@primaryColorDown : darken(@primaryColor, 10); -@secondaryColorDown : lighten(@secondaryColor, 10); -@lightPrimaryColorDown : darken(@lightPrimaryColor, 10); -@lightSecondaryColorDown : lighten(@lightSecondaryColor, 10); - -@redDown : darken(@red, 10); -@orangeDown : darken(@orange, 10); -@yellowDown : darken(@yellow, 10); -@oliveDown : darken(@olive, 10); -@greenDown : darken(@green, 10); -@tealDown : darken(@teal, 10); -@blueDown : darken(@blue, 10); -@violetDown : darken(@violet, 10); -@purpleDown : darken(@purple, 10); -@pinkDown : darken(@pink, 10); -@brownDown : darken(@brown, 10); - -@lightRedDown : darken(@lightRed, 10); -@lightOrangeDown : darken(@lightOrange, 10); -@lightYellowDown : darken(@lightYellow, 10); -@lightOliveDown : darken(@lightOlive, 10); -@lightGreenDown : darken(@lightGreen, 10); -@lightTealDown : darken(@lightTeal, 10); -@lightBlueDown : darken(@lightBlue, 10); -@lightVioletDown : darken(@lightViolet, 10); -@lightPurpleDown : darken(@lightPurple, 10); -@lightPinkDown : darken(@lightPink, 10); -@lightBrownDown : darken(@lightBrown, 10); -@lightGreyDown : darken(@lightGrey, 10); -@lightBlackDown : darken(@fullBlack, 10); - -/*--- Emotive ---*/ -@positiveColorDown : darken(@positiveColor, 10); -@negativeColorDown : darken(@negativeColor, 10); - -/*--- Brand ---*/ -@facebookDownColor : darken(@facebookColor, 10); -@twitterDownColor : darken(@twitterColor, 10); -@googlePlusDownColor : darken(@googlePlusColor, 10); -@linkedInDownColor : darken(@linkedInColor, 10); -@youtubeDownColor : darken(@youtubeColor, 10); -@instagramDownColor : darken(@instagramColor, 10); -@pinterestDownColor : darken(@pinterestColor, 10); -@vkDownColor : darken(@vkColor, 10); - -/*--- Dark Tones ---*/ -@fullBlackDown : lighten(@fullBlack, 10); -@blackDown : lighten(@black, 10); -@greyDown : lighten(@grey, 10); - -/*--- Light Tones ---*/ -@whiteDown : darken(@white, 10); -@offWhiteDown : darken(@offWhite, 10); -@darkWhiteDown : darken(@darkWhite, 10); - - -/*------------------- - Active ---------------------*/ - -/*--- Colors ---*/ -@primaryColorActive : saturate(darken(@primaryColor, 5), 15, relative); -@secondaryColorActive : saturate(lighten(@secondaryColor, 5), 15, relative); -@lightPrimaryColorActive : saturate(darken(@lightPrimaryColor, 5), 15, relative); -@lightSecondaryColorActive : saturate(lighten(@lightSecondaryColor, 5), 15, relative); - -@redActive : saturate(darken(@red, 5), 15, relative); -@orangeActive : saturate(darken(@orange, 5), 15, relative); -@yellowActive : saturate(darken(@yellow, 5), 15, relative); -@oliveActive : saturate(darken(@olive, 5), 15, relative); -@greenActive : saturate(darken(@green, 5), 15, relative); -@tealActive : saturate(darken(@teal, 5), 15, relative); -@blueActive : saturate(darken(@blue, 5), 15, relative); -@violetActive : saturate(darken(@violet, 5), 15, relative); -@purpleActive : saturate(darken(@purple, 5), 15, relative); -@pinkActive : saturate(darken(@pink, 5), 15, relative); -@brownActive : saturate(darken(@brown, 5), 15, relative); - -@lightRedActive : saturate(darken(@lightRed, 5), 15, relative); -@lightOrangeActive : saturate(darken(@lightOrange, 5), 15, relative); -@lightYellowActive : saturate(darken(@lightYellow, 5), 15, relative); -@lightOliveActive : saturate(darken(@lightOlive, 5), 15, relative); -@lightGreenActive : saturate(darken(@lightGreen, 5), 15, relative); -@lightTealActive : saturate(darken(@lightTeal, 5), 15, relative); -@lightBlueActive : saturate(darken(@lightBlue, 5), 15, relative); -@lightVioletActive : saturate(darken(@lightViolet, 5), 15, relative); -@lightPurpleActive : saturate(darken(@lightPurple, 5), 15, relative); -@lightPinkActive : saturate(darken(@lightPink, 5), 15, relative); -@lightBrownActive : saturate(darken(@lightBrown, 5), 15, relative); -@lightGreyActive : saturate(darken(@lightGrey, 5), 15, relative); -@lightBlackActive : saturate(darken(@fullBlack, 5), 15, relative); - -/*--- Emotive ---*/ -@positiveColorActive : saturate(darken(@positiveColor, 5), 15, relative); -@negativeColorActive : saturate(darken(@negativeColor, 5), 15, relative); - -/*--- Brand ---*/ -@facebookActiveColor : saturate(darken(@facebookColor, 5), 15, relative); -@twitterActiveColor : saturate(darken(@twitterColor, 5), 15, relative); -@googlePlusActiveColor : saturate(darken(@googlePlusColor, 5), 15, relative); -@linkedInActiveColor : saturate(darken(@linkedInColor, 5), 15, relative); -@youtubeActiveColor : saturate(darken(@youtubeColor, 5), 15, relative); -@instagramActiveColor : saturate(darken(@instagramColor, 5), 15, relative); -@pinterestActiveColor : saturate(darken(@pinterestColor, 5), 15, relative); -@vkActiveColor : saturate(darken(@vkColor, 5), 15, relative); - -/*--- Dark Tones ---*/ -@fullBlackActive : darken(@fullBlack, 5); -@blackActive : darken(@black, 5); -@greyActive : darken(@grey, 5); - -/*--- Light Tones ---*/ -@whiteActive : darken(@white, 5); -@offWhiteActive : darken(@offWhite, 5); -@darkWhiteActive : darken(@darkWhite, 5); diff --git a/src/themes/default/modules/accordion.overrides b/src/themes/default/modules/accordion.overrides deleted file mode 100644 index e4bd727..0000000 --- a/src/themes/default/modules/accordion.overrides +++ /dev/null @@ -1,28 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ -@font-face { - font-family: 'Accordion'; - src: - url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'), - url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff') - ; - font-weight: normal; - font-style: normal; -} - -/* Dropdown Icon */ -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - font-family: Accordion; - line-height: 1; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.accordion .title .dropdown.icon:before, -.ui.accordion .accordion .title .dropdown.icon:before { - content: '\f0da'/*rtl:'\f0d9'*/; -} diff --git a/src/themes/default/modules/accordion.variables b/src/themes/default/modules/accordion.variables deleted file mode 100644 index 64cef4e..0000000 --- a/src/themes/default/modules/accordion.variables +++ /dev/null @@ -1,100 +0,0 @@ -/******************************* - Accordion -*******************************/ - -@boxShadow: none; - -/* Title */ -@titleFont: @headerFont; -@titlePadding: 0.5em 0em; -@titleFontSize: 1em; -@titleColor: @textColor; - -/* Icon */ -@iconOpacity: 1; -@iconFontSize: 1em; -@iconFloat: none; -@iconWidth: 1.25em; -@iconHeight: 1em; -@iconDisplay: inline-block; -@iconMargin: 0em 0.25rem 0em 0rem; -@iconPadding: 0em; -@iconTransition: - transform @defaultDuration @defaultEasing, - opacity @defaultDuration @defaultEasing -; -@iconVerticalAlign: baseline; -@iconTransform: none; - -/* Child Accordion */ -@childAccordionMargin: 1em 0em 0em; -@childAccordionPadding: 0em; - -/* Content */ -@contentMargin: ''; -@contentPadding: 0.5em 0em 1em; - -/*------------------- - Coupling ---------------------*/ - -@menuTitlePadding: 0em; -@menuIconFloat: right; -@menuIconMargin: @lineHeightOffset 0em 0em 1em; -@menuIconTransform: rotate(180deg); - - -/*------------------- - States ---------------------*/ - -@activeIconTransform: rotate(90deg); - -/*------------------- - Variations ---------------------*/ - -/* Styled */ -@styledWidth: 600px; -@styledBackground: @white; -@styledBorderRadius: @defaultBorderRadius; -@styledBoxShadow: - @subtleShadow, - 0px 0px 0px 1px @borderColor -; - -/* Content */ -@styledContentMargin: 0em; -@styledContentPadding: 0.5em 1em 1.5em; - -/* Child Content */ -@styledChildContentMargin: 0em; -@styledChildContentPadding: @styledContentPadding; - -/* Styled Title */ -@styledTitleMargin: 0em; -@styledTitlePadding: 0.75em 1em; -@styledTitleFontWeight: @bold; -@styledTitleColor: @unselectedTextColor; -@styledTitleTransition: background-color @defaultDuration @defaultEasing; -@styledTitleBorder: 1px solid @borderColor; -@styledTitleTransition: - background @defaultDuration @defaultEasing, - color @defaultDuration @defaultEasing -; - -/* Styled Title States */ -@styledTitleHoverBackground: transparent; -@styledTitleHoverColor: @textColor; -@styledActiveTitleBackground: transparent; -@styledActiveTitleColor: @selectedTextColor; - -/* Styled Child Title States */ -@styledHoverChildTitleBackground: @styledTitleHoverBackground; -@styledHoverChildTitleColor: @styledTitleHoverColor; -@styledActiveChildTitleBackground: @styledActiveTitleBackground; -@styledActiveChildTitleColor: @styledActiveTitleColor; - -/* Inverted */ -@invertedTitleColor: @invertedTextColor; - diff --git a/src/themes/default/modules/chatroom.overrides b/src/themes/default/modules/chatroom.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/modules/chatroom.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/modules/chatroom.variables b/src/themes/default/modules/chatroom.variables deleted file mode 100644 index 0da971c..0000000 --- a/src/themes/default/modules/chatroom.variables +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Chatroom -*******************************/ \ No newline at end of file diff --git a/src/themes/default/modules/checkbox.overrides b/src/themes/default/modules/checkbox.overrides deleted file mode 100644 index e83ad9f..0000000 --- a/src/themes/default/modules/checkbox.overrides +++ /dev/null @@ -1,36 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Checkbox'; - src: - url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype') - ; -} - -/* Checkmark */ -.ui.checkbox label:after, -.ui.checkbox .box:after { - font-family: 'Checkbox'; -} - -/* Checked */ -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - content: '\e800'; -} - -/* Indeterminate */ -.ui.checkbox input:indeterminate ~ .box:after, -.ui.checkbox input:indeterminate ~ label:after { - font-size: 12px; - content: '\e801'; -} - - -/* UTF Reference -.check:before { content: '\e800'; } -.dash:before { content: '\e801'; } -.plus:before { content: '\e802'; } -*/ diff --git a/src/themes/default/modules/checkbox.variables b/src/themes/default/modules/checkbox.variables deleted file mode 100644 index 32a54e4..0000000 --- a/src/themes/default/modules/checkbox.variables +++ /dev/null @@ -1,193 +0,0 @@ -/******************************* - Checkbox -*******************************/ - -@checkboxSize: 17px; -@checkboxColor: @textColor; -@checkboxLineHeight: @checkboxSize; - - -/* Label */ -@labelDistance: 1.85714em; /* 26px @ 14/em */ - -/* Checkbox */ -@checkboxBackground: rgba(0, 0, 0, 0.2); -@checkboxBorder: 1px solid @solidBorderColor; -@checkboxBorderRadius: @3px; -@checkboxTransition: - border @defaultDuration @defaultEasing, - opacity @defaultDuration @defaultEasing, - transform @defaultDuration @defaultEasing, - box-shadow @defaultDuration @defaultEasing -; - -/* Checkmark */ -@checkboxCheckFontSize: 14px; -@checkboxCheckTop: 0px; -@checkboxCheckLeft: 0px; -@checkboxCheckSize: @checkboxSize; - -/* Label */ -@labelFontSize: @relativeMedium; -@labelColor: @textColor; -@labelTransition: color @defaultDuration @defaultEasing; - -/*------------------- - States ---------------------*/ - -/* Hover */ -@checkboxHoverBackground: @checkboxBackground; -@checkboxHoverBorderColor: @selectedBorderColor; -@labelHoverColor: @hoveredTextColor; - -/* Pressed */ -@checkboxPressedBackground: @offWhite; -@checkboxPressedBorderColor: @selectedBorderColor; -@checkboxPressedColor: @selectedTextColor; -@labelPressedColor: @selectedTextColor; - -/* Focus */ -@checkboxFocusBackground: @white; -@checkboxFocusBorderColor: @focusedFormMutedBorderColor; -@checkboxFocusCheckColor: @selectedTextColor; -@labelFocusColor: @selectedTextColor; - -/* Active */ -@labelActiveColor: @selectedTextColor; -@checkboxActiveBackground: rgba(0, 0, 0, 0.2); -@checkboxActiveBorderColor: @selectedBorderColor; -@checkboxActiveCheckColor: @selectedTextColor; -@checkboxActiveCheckOpacity: 1; - -/* Active Focus */ -@checkboxActiveFocusBackground: @white; -@checkboxActiveFocusBorderColor: @checkboxFocusBorderColor; -@checkboxActiveFocusCheckColor: @selectedTextColor; - -/* Indeterminate */ -@checkboxIndeterminateBackground: @checkboxActiveBackground; -@checkboxIndeterminateBorderColor: @checkboxActiveBorderColor; -@checkboxIndeterminateCheckOpacity: 1; -@checkboxIndeterminateCheckColor: @checkboxActiveCheckColor; - -/* Disabled */ -@disabledCheckboxOpacity: 0.5; -@disabledCheckboxLabelColor: rgba(0, 0, 0, 1); - -/*------------------- - Types ---------------------*/ - -/* Radio */ -/* Uses px to avoid rounding issues with circles */ - -@radioSize: 15px; -@radioTop: 1px; -@radioLeft: 0px; -@radioLabelDistance: @labelDistance; - -@bulletTop: 1px; -@bulletLeft: 0px; -@bulletScale: (7 / 15); /* 7px as unitless value from radio size */ -@bulletColor: @textColor; -@bulletRadius: @circularRadius; - -@radioFocusBackground: @checkboxFocusBackground; -@radioFocusBulletColor: @checkboxFocusCheckColor; - -@radioActiveBackground: @checkboxActiveBackground; -@radioActiveBulletColor: @checkboxActiveCheckColor; - -@radioActiveFocusBackground: @checkboxActiveFocusBackground; -@radioActiveFocusBulletColor: @checkboxActiveFocusCheckColor; - -/* Slider & Toggle Handle */ -@handleBackground: @white @subtleGradient; -@handleBoxShadow: - @subtleShadow, - 0px 0px 0px 1px @borderColor inset -; - -/* Slider */ -@sliderHandleSize: 1.5rem; -@sliderLineWidth: 3.5rem; -@sliderTransitionDuration: 0.3s; - -@sliderHandleOffset: ((1rem - @sliderHandleSize) / 2); -@sliderHandleTransition: left @sliderTransitionDuration @defaultEasing; - -@sliderWidth: @sliderLineWidth; -@sliderHeight: (@sliderHandleSize + @sliderHandleOffset); - -@sliderLineHeight: @3px; -@sliderLineVerticalOffset: 0.4rem; -@sliderLineColor: @transparentBlack; -@sliderLineRadius: @circularRadius; -@sliderLineTransition: background @sliderTransitionDuration @defaultEasing; - -@sliderTravelDistance: @sliderLineWidth - @sliderHandleSize; - -@sliderLabelDistance: @sliderLineWidth + 1rem; -@sliderOffLabelColor: @unselectedTextColor; - -@sliderLabelLineHeight: 1rem; - -/* Slider States */ -@sliderHoverLaneBackground: @veryStrongTransparentBlack; -@sliderHoverLabelColor: @hoveredTextColor; - -@sliderOnLineColor: @lightBlack; -@sliderOnLabelColor: @selectedTextColor; - -@sliderOnFocusLineColor: @lightBlackFocus; -@sliderOnFocusLabelColor: @sliderOnLabelColor; - - - -/* Toggle */ -@toggleLaneWidth: 3.5rem; -@toggleHandleSize: 1.5rem; -@toggleTransitionDuration: 0.2s; - -@toggleWidth: @toggleLaneWidth; -@toggleHeight: @toggleHandleSize; - -@toggleHandleRadius: @circularRadius; -@toggleHandleOffset: 0rem; -@toggleHandleTransition: - background @sliderTransitionDuration @defaultEasing, - left @sliderTransitionDuration @defaultEasing -; - -@toggleLaneBackground: @transparentBlack; -@toggleLaneHeight: @toggleHandleSize; -@toggleLaneBoxShadow: none; -@toggleLaneVerticalOffset: 0rem; -@toggleOffOffset: -0.05rem; -@toggleOnOffset: (@toggleLaneWidth - @toggleHandleSize) + 0.15rem; - -@toggleLabelDistance: @toggleLaneWidth + 1rem; -@toggleLabelLineHeight: 1.5rem; -@toggleLabelOffset: 0.15em; - - -@toggleFocusColor: @veryStrongTransparentBlack; -@toggleHoverColor: @toggleFocusColor; - -@toggleOffLabelColor: @checkboxColor; -@toggleOffHandleBoxShadow: @handleBoxShadow; - -@toggleOnLabelColor: @selectedTextColor; -@toggleOnLaneColor: @primaryColor; - -@toggleOnHandleBoxShadow: @handleBoxShadow; - -@toggleOnFocusLaneColor: @primaryColorFocus; -@toggleOnFocusLabelColor: @toggleOnLabelColor; - - - -/*------------------- - Variations ---------------------*/ diff --git a/src/themes/default/modules/dimmer.overrides b/src/themes/default/modules/dimmer.overrides deleted file mode 100644 index 14fb0da..0000000 --- a/src/themes/default/modules/dimmer.overrides +++ /dev/null @@ -1,3 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ diff --git a/src/themes/default/modules/dimmer.variables b/src/themes/default/modules/dimmer.variables deleted file mode 100644 index cd85a74..0000000 --- a/src/themes/default/modules/dimmer.variables +++ /dev/null @@ -1,58 +0,0 @@ -/******************************* - Dimmer -*******************************/ - -@dimmablePosition: relative; -@dimmerPosition: absolute; - -@backgroundColor: rgba(0, 0, 0 , 0.25); -@lineHeight: 1; -@perspective: 2000px; -@padding: 1em; - -@duration: 0.5s; -@transition: - background-color @duration linear -; -@zIndex: 1000; -@textAlign: center; -@verticalAlign: middle; -@textColor: @white; -@overflow: hidden; - -@blurredStartFilter: ~"blur(0px) grayscale(0)"; -@blurredEndFilter: ~"blur(5px) grayscale(0.7)"; -@blurredTransition: 800ms filter @defaultEasing; - -@blurredBackgroundColor: rgba(0, 0, 0, 0.6); -@blurredInvertedBackgroundColor: rgba(255, 255, 255, 0.6); - -/* Hidden (Default) */ -@hiddenOpacity: 0; - -/* Visible */ -@visibleOpacity: 1; - -/*------------------- - Types ---------------------*/ - -/* Page Dimmer*/ -@transformStyle: ''; -@pageDimmerPosition: fixed; - - -/*------------------- - Variations ---------------------*/ - -/* Inverted */ -@invertedBackgroundColor: rgba(255, 255, 255, 0.85); -@invertedTextColor: @textColor; - -/* Simple */ -@simpleZIndex: 1; -@simpleStartBackgroundColor: rgba(0, 0, 0, 0); -@simpleEndBackgroundColor: @backgroundColor; -@simpleInvertedStartBackgroundColor: rgba(255, 255, 255, 0); -@simpleInvertedEndBackgroundColor: @invertedBackgroundColor; diff --git a/src/themes/default/modules/dropdown.overrides b/src/themes/default/modules/dropdown.overrides deleted file mode 100644 index 1732344..0000000 --- a/src/themes/default/modules/dropdown.overrides +++ /dev/null @@ -1,66 +0,0 @@ -/******************************* - Theme Overrides -*******************************/ - -/* Dropdown Carets */ -@font-face { - font-family: 'Dropdown'; - src: - url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff') - ; - font-weight: normal; - font-style: normal; -} - -.ui.dropdown > .dropdown.icon { - font-family: 'Dropdown'; - line-height: 1; - height: 1em; - width: 1.23em; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.dropdown > .dropdown.icon { - width: auto; -} -.ui.dropdown > .dropdown.icon:before { - content: '\f0d7'; -} - - -/* Inline dropdown menu */ -.ui.inline.dropdown .menu { - background: @inlineMenuBackground; - backdrop-filter: blur(10px); -} - -/* Sub Menu */ -.ui.dropdown .menu .item .dropdown.icon:before { - content: '\f0da'/*rtl:'\f0d9'*/; -} - -.ui.dropdown .item .left.dropdown.icon:before, -.ui.dropdown .left.menu .item .dropdown.icon:before { - content: "\f0d9"/*rtl:"\f0da"*/; -} - -/* Vertical Menu Dropdown */ -.ui.vertical.menu .dropdown.item > .dropdown.icon:before { - content: "\f0da"/*rtl:"\f0d9"*/; -} - -.ui.dropdown > .clear.icon:before { - content: "\f00d"; -} - -/* Icons for Reference (Subsetted in 2.4.0) - .dropdown.down:before { content: "\f0d7"; } - .dropdown.up:before { content: "\f0d8"; } - .dropdown.left:before { content: "\f0d9"; } - .dropdown.right:before { content: "\f0da"; } - .dropdown.close:before { content: "\f00d"; } -*/ - diff --git a/src/themes/default/modules/dropdown.variables b/src/themes/default/modules/dropdown.variables deleted file mode 100644 index deb02c4..0000000 --- a/src/themes/default/modules/dropdown.variables +++ /dev/null @@ -1,386 +0,0 @@ -/******************************* - Dropdown -*******************************/ - -/*------------------- - Element ---------------------*/ - -@transition: - box-shadow @defaultDuration @defaultEasing, - width @defaultDuration @defaultEasing, - outline-offset @defaultDuration @defaultEasing, - outline-color @defaultDuration @defaultEasing -; -@borderRadius: @defaultBorderRadius; - -@raisedShadow: 0px 2px 3px 0px @borderColor; - -/*------------------- - Content ---------------------*/ - -/* Icon */ -@dropdownIconSize: @relative12px; -@dropdownIconMargin: 0em 0em 0em 1em; - -/* Current Text */ -@textTransition: - outline-offset 100ms @defaultEasing, - outline-color 100ms @defaultEasing -; - -/* Menu */ -@menuBackground: @white; -@menuMargin: 0em; -@menuPadding: 0em 0em; -@menuTop: 100%; -@menuTextAlign: left; - -@inlineMenuBackground: fade(@white, 70%); - -@menuBorderWidth: 1px; -@menuBorderColor: @borderColor; -@menuBorder: @menuBorderWidth solid @menuBorderColor; -@menuBoxShadow: @raisedShadow; -@menuBorderRadius: @borderRadius; -@menuTransition: opacity @defaultDuration @defaultEasing; -@menuMinWidth: ~"calc(100% + "(@menuBorderWidth * 2)~")"; -@menuZIndex: 11; - -/* Text */ -@textLineHeight: 1em; -@textLineHeightOffset: (@textLineHeight - 1em); -@textCursorSpacing: 1px; - -/* Menu Item */ -@itemFontSize: @medium; -@itemTextAlign: left; -@itemBorder: none; -@itemHeight: auto; -@itemDivider: none; -@itemColor: @textColor; -@itemVerticalPadding: @mini; -@itemHorizontalPadding: @large; -@itemPadding: @itemVerticalPadding @itemHorizontalPadding; -@itemFontWeight: @normal; -@itemLineHeight: 1em; -@itemLineHeightOffset: (@itemLineHeight - 1em); -@itemTextTransform: none; -@itemBoxShadow: none; - -/* Sub Menu */ -@subMenuTop: 0%; -@subMenuLeft: 100%; -@subMenuRight: auto; -@subMenuDistanceAway: -0.5em; -@subMenuMargin: 0em 0em 0em @subMenuDistanceAway; -@subMenuBorderRadius: @borderRadius; -@subMenuZIndex: 21; - -/* Menu Header */ -@menuHeaderColor: @darkTextColor; -@menuHeaderFontSize: @relative11px; -@menuHeaderFontWeight: @bold; -@menuHeaderTextTransform: uppercase; -@menuHeaderMargin: 1rem 0rem 0.75rem; -@menuHeaderPadding: 0em @itemHorizontalPadding; - -/* Menu Divider */ -@menuDividerMargin: 0.5em 0em; -@menuDividerColor: @internalBorderColor; -@menuDividerSize: 1px; -@menuDividerBorder: @menuDividerSize solid @menuDividerColor; - -/* Menu Input */ -@menuInputMargin: @large @mini; -@menuInputMinWidth: 10rem; -@menuInputVerticalPadding: 0.5em; -@menuInputHorizontalPadding: @inputHorizontalPadding; -@menuInputPadding: @menuInputVerticalPadding @menuInputHorizontalPadding; - -/* Menu Image */ -@menuImageMaxHeight: 2em; -@menuImageVerticalMargin: (-(@menuImageMaxHeight - 1em) / 2); - -/* Item Sub-Element */ -@itemElementFloat: none; -@itemElementDistance: @mini; - -/* Sub-Menu Dropdown Icon */ -@itemDropdownIconDistance: 1em; -@itemDropdownIconFloat: right; -@itemDropdownIconMargin: @itemLineHeightOffset 0em 0em @itemDropdownIconDistance; - -/* Description */ -@itemDescriptionFloat: right; -@itemDescriptionMargin: 0em 0em 0em 1em; -@itemDescriptionColor: @lightTextColor; - -/* Message */ -@messagePadding: @selectionItemPadding; -@messageFontWeight: @normal; -@messageColor: @unselectedTextColor; - -/* Floated Content */ -@floatedDistance: 1em; - -/*------------------- - Types ---------------------*/ - -/*------------ - Selection ---------------*/ - -@selectionMinWidth: 14em; -@selectionVerticalPadding: @inputVerticalPadding; -@selectionHorizontalPadding: @inputHorizontalPadding; -@selectionBorderEmWidth: @relative1px; -@selectionMinHeight: @inputLineHeight + (@selectionVerticalPadding * 2) - @selectionBorderEmWidth; -@selectionBackground: @inputBackground; -@selectionDisplay: inline-block; -@selectionIconDistance: @inputHorizontalPadding + @glyphWidth; -@selectionPadding: @selectionVerticalPadding @selectionIconDistance @selectionVerticalPadding @selectionHorizontalPadding; -@selectionZIndex: 10; - -@selectionItemDivider: 1px solid @solidInternalBorderColor; -@selectionMessagePadding: @selectionItemPadding; - -/*