From 28669bed4629d50632b46feaca7fcd4c10fe9a68 Mon Sep 17 00:00:00 2001 From: xidedix Date: Tue, 13 Mar 2018 17:36:17 +0100 Subject: [PATCH] CoreUI-React initial commit v2.0.0-alpha.1 --- .babelrc | 6 - .gitignore | 21 +- CHANGELOG.md | 6 + CRA.md | 2434 +++++ REACT.md | 30 +- README.md | 69 - package.json | 74 +- public/assets/.gitkeep | 0 public/{ => assets}/img/avatars/1.jpg | Bin public/{ => assets}/img/avatars/2.jpg | Bin public/{ => assets}/img/avatars/3.jpg | Bin public/{ => assets}/img/avatars/4.jpg | Bin public/{ => assets}/img/avatars/5.jpg | Bin public/{ => assets}/img/avatars/6.jpg | Bin public/{ => assets}/img/avatars/7.jpg | Bin public/{ => assets}/img/avatars/8.jpg | Bin public/{ => assets}/img/brand/logo.svg | 106 +- public/{ => assets}/img/brand/sygnet.svg | 106 +- public/assets/img/favicon.png | Bin 0 -> 7185 bytes public/index.html | 33 +- public/manifest.json | 15 + src/App.css | 1 + src/App.js | 38 + src/App.test.js | 9 + src/{components/Sidebar => }/_nav.js | 106 +- src/components/Aside/package.json | 6 - src/components/Breadcrumb/Breadcrumb.js | 55 - src/components/Breadcrumb/package.json | 6 - src/components/Footer/Footer.js | 14 - src/components/Footer/package.json | 6 - src/components/Header/Header.js | 80 - src/components/Header/HeaderDropdown.js | 60 - src/components/Header/package.json | 6 - src/components/Sidebar/Sidebar.js | 164 - src/components/Sidebar/package.json | 6 - src/components/SidebarFooter/SidebarFooter.js | 14 - src/components/SidebarFooter/package.json | 6 - src/components/SidebarForm/SidebarForm.js | 14 - src/components/SidebarForm/package.json | 6 - src/components/SidebarHeader/SidebarHeader.js | 14 - src/components/SidebarHeader/package.json | 6 - .../SidebarMinimizer/SidebarMinimizer.js | 20 - src/components/SidebarMinimizer/package.json | 6 - src/containers/Full/Full.js | 143 +- .../Aside.js => containers/Full/FullAside.js} | 130 +- src/containers/Full/FullFooter.js | 27 + src/containers/Full/FullHeader.js | 79 + src/containers/index.js | 3 + src/index.css | 1 + src/index.js | 38 +- src/registerServiceWorker.js | 117 + src/routes.js | 119 +- {public => src}/scss/_custom.scss | 0 {public => src}/scss/_variables.scss | 0 src/scss/style.css | 9467 +++++++++++++++++ {public => src}/scss/style.scss | 2 + {public => src}/scss/vendors/_variables.scss | 0 src/scss/vendors/chart.js/chart.css | 42 + src/scss/vendors/chart.js/chart.scss | 48 + src/views/Base/Breadcrumbs/Breadcrumbs.js | 10 +- src/views/Base/Cards/Cards.js | 20 +- src/views/Base/Carousels/Carousels.js | 56 +- src/views/Base/Collapses/Collapses.js | 36 +- src/views/Base/Dropdowns/Dropdowns.js | 40 +- src/views/Base/Forms/Forms.js | 354 +- src/views/Base/Jumbotrons/Jumbotrons.js | 21 +- src/views/Base/ListGroups/ListGroups.js | 22 +- src/views/Base/Navbars/Navbars.js | 34 +- src/views/Base/Navs/Navs.js | 34 +- src/views/Base/Paginations/Pagnations.js | 21 +- src/views/Base/Popovers/Popovers.js | 35 +- src/views/Base/ProgressBar/ProgressBar.js | 97 +- src/views/Base/Switches/Switches.js | 243 +- src/views/Base/Tables/Tables.js | 18 +- src/views/Base/Tabs/Tabs.js | 22 +- src/views/Base/Tooltips/Tooltips.js | 49 +- src/views/Base/index.js | 22 + .../ButtonDropdowns/ButtonDropdowns.js | 52 +- .../Buttons/ButtonGroups/ButtonGroups.js | 38 +- src/views/Buttons/Buttons/Buttons.js | 6 +- .../Buttons/SocialButtons/SocialButtons.js | 12 +- src/views/Buttons/index.js | 8 + src/views/Charts/Charts.js | 157 +- src/views/Dashboard/Dashboard.js | 1057 +- src/views/Icons/Flags/Flags.js | 10 +- src/views/Icons/FontAwesome/FontAwesome.js | 1775 ++- .../Icons/SimpleLineIcons/SimpleLineIcons.js | 6 +- src/views/Icons/index.js | 7 + src/views/Notifications/Alerts/Alerts.js | 21 +- src/views/Notifications/Badges/Badges.js | 21 +- src/views/Notifications/Modals/Modals.js | 27 +- src/views/Notifications/index.js | 7 + src/views/Pages/Login/Login.js | 9 +- src/views/Pages/Page404/Page404.js | 6 +- src/views/Pages/Page500/Page500.js | 4 +- src/views/Pages/Register/Register.js | 12 +- src/views/Pages/index.js | 8 + src/views/Theme/Colors/Colors.js | 4 +- src/views/Theme/Typography/Typography.js | 132 +- src/views/Theme/index.js | 6 + src/views/Widgets/Widget01.js | 40 +- src/views/Widgets/Widget02.js | 41 +- src/views/Widgets/Widget03.js | 48 +- src/views/Widgets/Widget04.js | 42 +- src/views/Widgets/Widgets.js | 120 +- src/views/index.js | 68 + webpack.config.js | 112 - 107 files changed, 15271 insertions(+), 3478 deletions(-) delete mode 100644 .babelrc create mode 100644 CRA.md delete mode 100644 README.md create mode 100644 public/assets/.gitkeep rename public/{ => assets}/img/avatars/1.jpg (100%) rename public/{ => assets}/img/avatars/2.jpg (100%) rename public/{ => assets}/img/avatars/3.jpg (100%) rename public/{ => assets}/img/avatars/4.jpg (100%) rename public/{ => assets}/img/avatars/5.jpg (100%) rename public/{ => assets}/img/avatars/6.jpg (100%) rename public/{ => assets}/img/avatars/7.jpg (100%) rename public/{ => assets}/img/avatars/8.jpg (100%) rename public/{ => assets}/img/brand/logo.svg (98%) rename public/{ => assets}/img/brand/sygnet.svg (98%) create mode 100644 public/assets/img/favicon.png create mode 100644 public/manifest.json create mode 100644 src/App.css create mode 100644 src/App.js create mode 100644 src/App.test.js rename src/{components/Sidebar => }/_nav.js (78%) delete mode 100644 src/components/Aside/package.json delete mode 100644 src/components/Breadcrumb/Breadcrumb.js delete mode 100644 src/components/Breadcrumb/package.json delete mode 100644 src/components/Footer/Footer.js delete mode 100644 src/components/Footer/package.json delete mode 100644 src/components/Header/Header.js delete mode 100644 src/components/Header/HeaderDropdown.js delete mode 100644 src/components/Header/package.json delete mode 100644 src/components/Sidebar/Sidebar.js delete mode 100644 src/components/Sidebar/package.json delete mode 100644 src/components/SidebarFooter/SidebarFooter.js delete mode 100644 src/components/SidebarFooter/package.json delete mode 100644 src/components/SidebarForm/SidebarForm.js delete mode 100644 src/components/SidebarForm/package.json delete mode 100644 src/components/SidebarHeader/SidebarHeader.js delete mode 100644 src/components/SidebarHeader/package.json delete mode 100644 src/components/SidebarMinimizer/SidebarMinimizer.js delete mode 100644 src/components/SidebarMinimizer/package.json rename src/{components/Aside/Aside.js => containers/Full/FullAside.js} (75%) create mode 100644 src/containers/Full/FullFooter.js create mode 100644 src/containers/Full/FullHeader.js create mode 100644 src/containers/index.js create mode 100644 src/index.css create mode 100644 src/registerServiceWorker.js rename {public => src}/scss/_custom.scss (100%) rename {public => src}/scss/_variables.scss (100%) create mode 100644 src/scss/style.css rename {public => src}/scss/style.scss (67%) rename {public => src}/scss/vendors/_variables.scss (100%) create mode 100644 src/scss/vendors/chart.js/chart.css create mode 100644 src/scss/vendors/chart.js/chart.scss create mode 100644 src/views/Base/index.js create mode 100644 src/views/Buttons/index.js create mode 100644 src/views/Icons/index.js create mode 100644 src/views/Notifications/index.js create mode 100644 src/views/Pages/index.js create mode 100644 src/views/Theme/index.js create mode 100644 src/views/index.js delete mode 100644 webpack.config.js diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 95cfb98..0000000 --- a/.babelrc +++ /dev/null @@ -1,6 +0,0 @@ -{ - "presets": [ - ["react"], ["env"] - ], - "plugins": ["transform-object-rest-spread"] -} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 85905ac..bbe2239 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,22 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. +# See https://help.github.com/ignore-files/ for more about ignoring files. # dependencies -node_modules -package-lock.json +/node_modules # testing -coverage +/coverage # production -build +/build # misc .DS_Store -Thumbs.db -.env .idea -npm-debug.log -compilation-stats.json +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/CHANGELOG.md b/CHANGELOG.md index 5110db2..b284308 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## [react](./REACT.md) version `changelog` +##### `v2.0.0-alpha.1` +- refactor: separation of concerns - (CoreUI template vs CoreUI components) prepare to use CoreUI as dependency +- refactor: project structure change +- refactor: moved to [Create-React-App](CRA.md) +- chore: moved to [Semantic Versioning](https://semver.org/) + ##### `v1.0.10` - refactor: `` - refactor: `` diff --git a/CRA.md b/CRA.md new file mode 100644 index 0000000..d40c87e --- /dev/null +++ b/CRA.md @@ -0,0 +1,2434 @@ +This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). + +Below you will find some information on how to perform common tasks.
+You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md). + +## Table of Contents + +- [Updating to New Releases](#updating-to-new-releases) +- [Sending Feedback](#sending-feedback) +- [Folder Structure](#folder-structure) +- [Available Scripts](#available-scripts) + - [npm start](#npm-start) + - [npm test](#npm-test) + - [npm run build](#npm-run-build) + - [npm run eject](#npm-run-eject) +- [Supported Browsers](#supported-browsers) +- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills) +- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor) +- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor) +- [Debugging in the Editor](#debugging-in-the-editor) +- [Formatting Code Automatically](#formatting-code-automatically) +- [Changing the Page ``](#changing-the-page-title) +- [Installing a Dependency](#installing-a-dependency) +- [Importing a Component](#importing-a-component) +- [Code Splitting](#code-splitting) +- [Adding a Stylesheet](#adding-a-stylesheet) +- [Post-Processing CSS](#post-processing-css) +- [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc) +- [Adding Images, Fonts, and Files](#adding-images-fonts-and-files) +- [Using the `public` Folder](#using-the-public-folder) + - [Changing the HTML](#changing-the-html) + - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system) + - [When to Use the `public` Folder](#when-to-use-the-public-folder) +- [Using Global Variables](#using-global-variables) +- [Adding Bootstrap](#adding-bootstrap) + - [Using a Custom Theme](#using-a-custom-theme) +- [Adding Flow](#adding-flow) +- [Adding a Router](#adding-a-router) +- [Adding Custom Environment Variables](#adding-custom-environment-variables) + - [Referencing Environment Variables in the HTML](#referencing-environment-variables-in-the-html) + - [Adding Temporary Environment Variables In Your Shell](#adding-temporary-environment-variables-in-your-shell) + - [Adding Development Environment Variables In `.env`](#adding-development-environment-variables-in-env) +- [Can I Use Decorators?](#can-i-use-decorators) +- [Fetching Data with AJAX Requests](#fetching-data-with-ajax-requests) +- [Integrating with an API Backend](#integrating-with-an-api-backend) + - [Node](#node) + - [Ruby on Rails](#ruby-on-rails) +- [Proxying API Requests in Development](#proxying-api-requests-in-development) + - ["Invalid Host Header" Errors After Configuring Proxy](#invalid-host-header-errors-after-configuring-proxy) + - [Configuring the Proxy Manually](#configuring-the-proxy-manually) + - [Configuring a WebSocket Proxy](#configuring-a-websocket-proxy) +- [Using HTTPS in Development](#using-https-in-development) +- [Generating Dynamic `<meta>` Tags on the Server](#generating-dynamic-meta-tags-on-the-server) +- [Pre-Rendering into Static HTML Files](#pre-rendering-into-static-html-files) +- [Injecting Data from the Server into the Page](#injecting-data-from-the-server-into-the-page) +- [Running Tests](#running-tests) + - [Filename Conventions](#filename-conventions) + - [Command Line Interface](#command-line-interface) + - [Version Control Integration](#version-control-integration) + - [Writing Tests](#writing-tests) + - [Testing Components](#testing-components) + - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) + - [Initializing Test Environment](#initializing-test-environment) + - [Focusing and Excluding Tests](#focusing-and-excluding-tests) + - [Coverage Reporting](#coverage-reporting) + - [Continuous Integration](#continuous-integration) + - [Disabling jsdom](#disabling-jsdom) + - [Snapshot Testing](#snapshot-testing) + - [Editor Integration](#editor-integration) +- [Debugging Tests](#debugging-tests) + - [Debugging Tests in Chrome](#debugging-tests-in-chrome) + - [Debugging Tests in Visual Studio Code](#debugging-tests-in-visual-studio-code) +- [Developing Components in Isolation](#developing-components-in-isolation) + - [Getting Started with Storybook](#getting-started-with-storybook) + - [Getting Started with Styleguidist](#getting-started-with-styleguidist) +- [Publishing Components to npm](#publishing-components-to-npm) +- [Making a Progressive Web App](#making-a-progressive-web-app) + - [Opting Out of Caching](#opting-out-of-caching) + - [Offline-First Considerations](#offline-first-considerations) + - [Progressive Web App Metadata](#progressive-web-app-metadata) +- [Analyzing the Bundle Size](#analyzing-the-bundle-size) +- [Deployment](#deployment) + - [Static Server](#static-server) + - [Other Solutions](#other-solutions) + - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) + - [Building for Relative Paths](#building-for-relative-paths) + - [Azure](#azure) + - [Firebase](#firebase) + - [GitHub Pages](#github-pages) + - [Heroku](#heroku) + - [Netlify](#netlify) + - [Now](#now) + - [S3 and CloudFront](#s3-and-cloudfront) + - [Surge](#surge) +- [Advanced Configuration](#advanced-configuration) +- [Troubleshooting](#troubleshooting) + - [`npm start` doesn’t detect changes](#npm-start-doesnt-detect-changes) + - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra) + - [`npm run build` exits too early](#npm-run-build-exits-too-early) + - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku) + - [`npm run build` fails to minify](#npm-run-build-fails-to-minify) + - [Moment.js locales are missing](#momentjs-locales-are-missing) +- [Alternatives to Ejecting](#alternatives-to-ejecting) +- [Something Missing?](#something-missing) + +## Updating to New Releases + +Create React App is divided into two packages: + +* `create-react-app` is a global command-line utility that you use to create new projects. +* `react-scripts` is a development dependency in the generated projects (including this one). + +You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`. + +When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically. + +To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version you’re currently on (check `package.json` in this folder if you’re not sure), and apply the migration instructions for the newer versions. + +In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but it’s good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes. + +We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly. + +## Sending Feedback + +We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues). + +## Folder Structure + +After creation, your project should look like this: + +``` +my-app/ + README.md + node_modules/ + package.json + public/ + index.html + favicon.ico + src/ + App.css + App.js + App.test.js + index.css + index.js + logo.svg +``` + +For the project to build, **these files must exist with exact filenames**: + +* `public/index.html` is the page template; +* `src/index.js` is the JavaScript entry point. + +You can delete or rename the other files. + +You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.<br> +You need to **put any JS and CSS files inside `src`**, otherwise Webpack won’t see them. + +Only files inside `public` can be used from `public/index.html`.<br> +Read instructions below for using assets from JavaScript and HTML. + +You can, however, create more top-level directories.<br> +They will not be included in the production build so you can use them for things like documentation. + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.<br> +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.<br> +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.<br> +See the section about [running tests](#running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.<br> +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.<br> +Your app is ready to be deployed! + +See the section about [deployment](#deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Supported Browsers + +By default, the generated project uses the latest version of React. + +You can refer [to the React documentation](https://reactjs.org/docs/react-dom.html#browser-support) for more information about supported browsers. + +## Supported Language Features and Polyfills + +This project supports a superset of the latest JavaScript standard.<br> +In addition to [ES6](https://github.com/lukehoban/es6features) syntax features, it also supports: + +* [Exponentiation Operator](https://github.com/rwaldron/exponentiation-operator) (ES2016). +* [Async/await](https://github.com/tc39/ecmascript-asyncawait) (ES2017). +* [Object Rest/Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread) (stage 3 proposal). +* [Dynamic import()](https://github.com/tc39/proposal-dynamic-import) (stage 3 proposal) +* [Class Fields and Static Properties](https://github.com/tc39/proposal-class-public-fields) (part of stage 3 proposal). +* [JSX](https://facebook.github.io/react/docs/introducing-jsx.html) and [Flow](https://flowtype.org/) syntax. + +Learn more about [different proposal stages](https://babeljs.io/docs/plugins/#presets-stage-x-experimental-presets-). + +While we recommend using experimental proposals with some caution, Facebook heavily uses these features in the product code, so we intend to provide [codemods](https://medium.com/@cpojer/effective-javascript-codemods-5a6686bb46fb) if any of these proposals change in the future. + +Note that **the project only includes a few ES6 [polyfills](https://en.wikipedia.org/wiki/Polyfill)**: + +* [`Object.assign()`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) via [`object-assign`](https://github.com/sindresorhus/object-assign). +* [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) via [`promise`](https://github.com/then/promise). +* [`fetch()`](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) via [`whatwg-fetch`](https://github.com/github/fetch). + +If you use any other ES6+ features that need **runtime support** (such as `Array.from()` or `Symbol`), make sure you are including the appropriate polyfills manually, or that the browsers you are targeting already support them. + +Also note that using some newer syntax features like `for...of` or `[...nonArrayValue]` causes Babel to emit code that depends on ES6 runtime features and might not work without a polyfill. When in doubt, use [Babel REPL](https://babeljs.io/repl/) to see what any specific syntax compiles down to. + +## Syntax Highlighting in the Editor + +To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered. + +## Displaying Lint Output in the Editor + +>Note: this feature is available with `react-scripts@0.2.0` and higher.<br> +>It also only works with npm 3 or higher. + +Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint. + +They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do. + +You would need to install an ESLint plugin for your editor first. Then, add a file called `.eslintrc` to the project root: + +```js +{ + "extends": "react-app" +} +``` + +Now your editor should report the linting warnings. + +Note that even if you edit your `.eslintrc` file further, these changes will **only affect the editor integration**. They won’t affect the terminal and in-browser lint output. This is because Create React App intentionally provides a minimal set of rules that find common mistakes. + +If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules. + +## Debugging in the Editor + +**This feature is currently only supported by [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/).** + +Visual Studio Code and WebStorm support debugging out of the box with Create React App. This enables you as a developer to write and debug your React code without leaving the editor, and most importantly it enables you to have a continuous development workflow, where context switching is minimal, as you don’t have to switch between tools. + +### Visual Studio Code + +You would need to have the latest version of [VS Code](https://code.visualstudio.com) and VS Code [Chrome Debugger Extension](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) installed. + +Then add the block below to your `launch.json` file and put it inside the `.vscode` folder in your app’s root directory. + +```json +{ + "version": "0.2.0", + "configurations": [{ + "name": "Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceRoot}/src", + "sourceMapPathOverrides": { + "webpack:///src/*": "${webRoot}/*" + } + }] +} +``` +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +Start your app by running `npm start`, and start debugging in VS Code by pressing `F5` or by clicking the green debug icon. You can now write code, set breakpoints, make changes to the code, and debug your newly modified code—all from your editor. + +Having problems with VS Code Debugging? Please see their [troubleshooting guide](https://github.com/Microsoft/vscode-chrome-debug/blob/master/README.md#troubleshooting). + +### WebStorm + +You would need to have [WebStorm](https://www.jetbrains.com/webstorm/) and [JetBrains IDE Support](https://chrome.google.com/webstore/detail/jetbrains-ide-support/hmhgeddbohgjknpmjagkdomcpobmllji) Chrome extension installed. + +In the WebStorm menu `Run` select `Edit Configurations...`. Then click `+` and select `JavaScript Debug`. Paste `http://localhost:3000` into the URL field and save the configuration. + +>Note: the URL may be different if you've made adjustments via the [HOST or PORT environment variables](#advanced-configuration). + +Start your app by running `npm start`, then press `^D` on macOS or `F9` on Windows and Linux or click the green debug icon to start debugging in WebStorm. + +The same way you can debug your application in IntelliJ IDEA Ultimate, PhpStorm, PyCharm Pro, and RubyMine. + +## Formatting Code Automatically + +Prettier is an opinionated code formatter with support for JavaScript, CSS and JSON. With Prettier you can format the code you write automatically to ensure a code style within your project. See the [Prettier's GitHub page](https://github.com/prettier/prettier) for more information, and look at this [page to see it in action](https://prettier.github.io/prettier/). + +To format our code whenever we make a commit in git, we need to install the following dependencies: + +```sh +npm install --save husky lint-staged prettier +``` + +Alternatively you may use `yarn`: + +```sh +yarn add husky lint-staged prettier +``` + +* `husky` makes it easy to use githooks as if they are npm scripts. +* `lint-staged` allows us to run scripts on staged files in git. See this [blog post about lint-staged to learn more about it](https://medium.com/@okonetchnikov/make-linting-great-again-f3890e1ad6b8). +* `prettier` is the JavaScript formatter we will run before commits. + +Now we can make sure every file is formatted correctly by adding a few lines to the `package.json` in the project root. + +Add the following line to `scripts` section: + +```diff + "scripts": { ++ "precommit": "lint-staged", + "start": "react-scripts start", + "build": "react-scripts build", +``` + +Next we add a 'lint-staged' field to the `package.json`, for example: + +```diff + "dependencies": { + // ... + }, ++ "lint-staged": { ++ "src/**/*.{js,jsx,json,css}": [ ++ "prettier --single-quote --write", ++ "git add" ++ ] ++ }, + "scripts": { +``` + +Now, whenever you make a commit, Prettier will format the changed files automatically. You can also run `./node_modules/.bin/prettier --single-quote --write "src/**/*.{js,jsx,json,css}"` to format your entire project for the first time. + +Next you might want to integrate Prettier in your favorite editor. Read the section on [Editor Integration](https://prettier.io/docs/en/editors.html) on the Prettier GitHub page. + +## Changing the Page `<title>` + +You can find the source HTML file in the `public` folder of the generated project. You may edit the `<title>` tag in it to change the title from “React App” to anything else. + +Note that normally you wouldn’t edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is done without touching the HTML. + +If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API. For more complex scenarios when you want to change the title from React components, you can use [React Helmet](https://github.com/nfl/react-helmet), a third party library. + +If you use a custom server for your app in production and want to modify the title before it gets sent to the browser, you can follow advice in [this section](#generating-dynamic-meta-tags-on-the-server). Alternatively, you can pre-build each page as a static HTML file which then loads the JavaScript bundle, which is covered [here](#pre-rendering-into-static-html-files). + +## Installing a Dependency + +The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: + +```sh +npm install --save react-router +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-router +``` + +This works for any library, not just `react-router`. + +## Importing a Component + +This project setup supports ES6 modules thanks to Babel.<br> +While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. + +For example: + +### `Button.js` + +```js +import React, { Component } from 'react'; + +class Button extends Component { + render() { + // ... + } +} + +export default Button; // Don’t forget to use export default! +``` + +### `DangerButton.js` + + +```js +import React, { Component } from 'react'; +import Button from './Button'; // Import a component from another file + +class DangerButton extends Component { + render() { + return <Button color="red" />; + } +} + +export default DangerButton; +``` + +Be aware of the [difference between default and named exports](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281). It is a common source of mistakes. + +We suggest that you stick to using default imports and exports when a module only exports a single thing (for example, a component). That’s what you get when you use `export default Button` and `import Button from './Button'`. + +Named exports are useful for utility modules that export several functions. A module may have at most one default export and as many named exports as you like. + +Learn more about ES6 modules: + +* [When to use the curly braces?](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281) +* [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html) +* [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules) + +## Code Splitting + +Instead of downloading the entire app before users can use it, code splitting allows you to split your code into small chunks which you can then load on demand. + +This project setup supports code splitting via [dynamic `import()`](http://2ality.com/2017/01/import-operator.html#loading-code-on-demand). Its [proposal](https://github.com/tc39/proposal-dynamic-import) is in stage 3. The `import()` function-like form takes the module name as an argument and returns a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) which always resolves to the namespace object of the module. + +Here is an example: + +### `moduleA.js` + +```js +const moduleA = 'Hello'; + +export { moduleA }; +``` +### `App.js` + +```js +import React, { Component } from 'react'; + +class App extends Component { + handleClick = () => { + import('./moduleA') + .then(({ moduleA }) => { + // Use moduleA + }) + .catch(err => { + // Handle failure + }); + }; + + render() { + return ( + <div> + <button onClick={this.handleClick}>Load</button> + </div> + ); + } +} + +export default App; +``` + +This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button. + +You can also use it with `async` / `await` syntax if you prefer it. + +### With React Router + +If you are using React Router check out [this tutorial](http://serverless-stack.com/chapters/code-splitting-in-create-react-app.html) on how to use code splitting with it. You can find the companion GitHub repository [here](https://github.com/AnomalyInnovations/serverless-stack-demo-client/tree/code-splitting-in-create-react-app). + +Also check out the [Code Splitting](https://reactjs.org/docs/code-splitting.html) section in React documentation. + +## Adding a Stylesheet + +This project setup uses [Webpack](https://webpack.js.org/) for handling all assets. Webpack offers a custom way of “extending” the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**: + +### `Button.css` + +```css +.Button { + padding: 20px; +} +``` + +### `Button.js` + +```js +import React, { Component } from 'react'; +import './Button.css'; // Tell Webpack that Button.js uses these styles + +class Button extends Component { + render() { + // You can use them as regular CSS styles + return <div className="Button" />; + } +} +``` + +**This is not required for React** but many people find this feature convenient. You can read about the benefits of this approach [here](https://medium.com/seek-ui-engineering/block-element-modifying-your-javascript-components-d7f99fcab52b). However you should be aware that this makes your code less portable to other build tools and environments than Webpack. + +In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output. + +If you are concerned about using Webpack-specific semantics, you can put all your CSS right into `src/index.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool. + +## Post-Processing CSS + +This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you don’t need to worry about it. + +For example, this: + +```css +.App { + display: flex; + flex-direction: row; + align-items: center; +} +``` + +becomes this: + +```css +.App { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +``` + +If you need to disable autoprefixing for some reason, [follow this section](https://github.com/postcss/autoprefixer#disabling). + +## Adding a CSS Preprocessor (Sass, Less etc.) + +Generally, we recommend that you don’t reuse the same CSS classes across different components. For example, instead of using a `.Button` CSS class in `<AcceptButton>` and `<RejectButton>` components, we recommend creating a `<Button>` component with its own `.Button` styles, that both `<AcceptButton>` and `<RejectButton>` can render (but [not inherit](https://facebook.github.io/react/docs/composition-vs-inheritance.html)). + +Following this rule often makes CSS preprocessors less useful, as features like mixins and nesting are replaced by component composition. You can, however, integrate a CSS preprocessor if you find it valuable. In this walkthrough, we will be using Sass, but you can also use Less, or another alternative. + +First, let’s install the command-line interface for Sass: + +```sh +npm install --save node-sass-chokidar +``` + +Alternatively you may use `yarn`: + +```sh +yarn add node-sass-chokidar +``` + +Then in `package.json`, add the following lines to `scripts`: + +```diff + "scripts": { ++ "build-css": "node-sass-chokidar src/ -o src/", ++ "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --env=jsdom", +``` + +>Note: To use a different preprocessor, replace `build-css` and `watch-css` commands according to your preprocessor’s documentation. + +Now you can rename `src/App.css` to `src/App.scss` and run `npm run watch-css`. The watcher will find every Sass file in `src` subdirectories, and create a corresponding CSS file next to it, in our case overwriting `src/App.css`. Since `src/App.js` still imports `src/App.css`, the styles become a part of your application. You can now edit `src/App.scss`, and `src/App.css` will be regenerated. + +To share variables between Sass files, you can use Sass imports. For example, `src/App.scss` and other component style files could include `@import "./shared.scss";` with variable definitions. + +To enable importing files without using relative paths, you can add the `--include-path` option to the command in `package.json`. + +``` +"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/", +"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive", +``` + +This will allow you to do imports like + +```scss +@import 'styles/_colors.scss'; // assuming a styles directory under src/ +@import 'nprogress/nprogress'; // importing a css file from the nprogress node module +``` + +At this point you might want to remove all CSS files from the source control, and add `src/**/*.css` to your `.gitignore` file. It is generally a good practice to keep the build products outside of the source control. + +As a final step, you may find it convenient to run `watch-css` automatically with `npm start`, and run `build-css` as a part of `npm run build`. You can use the `&&` operator to execute two scripts sequentially. However, there is no cross-platform way to run two scripts in parallel, so we will install a package for this: + +```sh +npm install --save npm-run-all +``` + +Alternatively you may use `yarn`: + +```sh +yarn add npm-run-all +``` + +Then we can change `start` and `build` scripts to include the CSS preprocessor commands: + +```diff + "scripts": { + "build-css": "node-sass-chokidar src/ -o src/", + "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", +- "start": "react-scripts start", +- "build": "react-scripts build", ++ "start-js": "react-scripts start", ++ "start": "npm-run-all -p watch-css start-js", ++ "build-js": "react-scripts build", ++ "build": "npm-run-all build-css build-js", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject" + } +``` + +Now running `npm start` and `npm run build` also builds Sass files. + +**Why `node-sass-chokidar`?** + +`node-sass` has been reported as having the following issues: + +- `node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker. + +- Infinite styles compiling [#1939](https://github.com/facebookincubator/create-react-app/issues/1939) + +- `node-sass` has been reported as having issues with detecting new files in a directory [#1891](https://github.com/sass/node-sass/issues/1891) + + `node-sass-chokidar` is used here as it addresses these issues. + +## Adding Images, Fonts, and Files + +With Webpack, using static assets like images and fonts works similarly to CSS. + +You can **`import` a file right in a JavaScript module**. This tells Webpack to include that file in the bundle. Unlike CSS imports, importing a file gives you a string value. This value is the final path you can reference in your code, e.g. as the `src` attribute of an image or the `href` of a link to a PDF. + +To reduce the number of requests to the server, importing images that are less than 10,000 bytes returns a [data URI](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs) instead of a path. This applies to the following file extensions: bmp, gif, jpg, jpeg, and png. SVG files are excluded due to [#1153](https://github.com/facebookincubator/create-react-app/issues/1153). + +Here is an example: + +```js +import React from 'react'; +import logo from './logo.png'; // Tell Webpack this JS file uses this image + +console.log(logo); // /logo.84287d09.png + +function Header() { + // Import result is the URL of your image + return <img src={logo} alt="Logo" />; +} + +export default Header; +``` + +This ensures that when the project is built, Webpack will correctly move the images into the build folder, and provide us with correct paths. + +This works in CSS too: + +```css +.Logo { + background-image: url(./logo.png); +} +``` + +Webpack finds all relative module references in CSS (they start with `./`) and replaces them with the final paths from the compiled bundle. If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The final filenames in the compiled bundle are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets. + +Please be advised that this is also a custom feature of Webpack. + +**It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).<br> +An alternative way of handling static assets is described in the next section. + +## Using the `public` Folder + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +### Changing the HTML + +The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title). +The `<script>` tag with the compiled code will be added to it automatically during the build process. + +### Adding Assets Outside of the Module System + +You can also add other assets to the `public` folder. + +Note that we normally encourage you to `import` assets in JavaScript files instead. +For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-fonts-and-files). +This mechanism provides a number of benefits: + +* Scripts and stylesheets get minified and bundled together to avoid extra network requests. +* Missing files cause compilation errors instead of 404 errors for your users. +* Result filenames include content hashes so you don’t need to worry about browsers caching their old versions. + +However there is an **escape hatch** that you can use to add an asset outside of the module system. + +If you put a file into the `public` folder, it will **not** be processed by Webpack. Instead it will be copied into the build folder untouched. To reference assets in the `public` folder, you need to use a special variable called `PUBLIC_URL`. + +Inside `index.html`, you can use it like this: + +```html +<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> +``` + +Only files inside the `public` folder will be accessible by `%PUBLIC_URL%` prefix. If you need to use a file from `src` or `node_modules`, you’ll have to copy it there to explicitly specify your intention to make this file a part of the build. + +When you run `npm run build`, Create React App will substitute `%PUBLIC_URL%` with a correct absolute path so your project works even if you use client-side routing or host it at a non-root URL. + +In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes: + +```js +render() { + // Note: this is an escape hatch and should be used sparingly! + // Normally we recommend using `import` for getting asset URLs + // as described in “Adding Images and Fonts” above this section. + return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />; +} +``` + +Keep in mind the downsides of this approach: + +* None of the files in `public` folder get post-processed or minified. +* Missing files will not be called at compilation time, and will cause 404 errors for your users. +* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change. + +### When to Use the `public` Folder + +Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-fonts-and-files) from JavaScript. +The `public` folder is useful as a workaround for a number of less common cases: + +* You need a file with a specific name in the build output, such as [`manifest.webmanifest`](https://developer.mozilla.org/en-US/docs/Web/Manifest). +* You have thousands of images and need to dynamically reference their paths. +* You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code. +* Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag. + +Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them. + +## Using Global Variables + +When you include a script in the HTML file that defines global variables and try to use one of these variables in the code, the linter will complain because it cannot see the definition of the variable. + +You can avoid this by reading the global variable explicitly from the `window` object, for example: + +```js +const $ = window.$; +``` + +This makes it obvious you are using a global variable intentionally rather than because of a typo. + +Alternatively, you can force the linter to ignore any line by adding `// eslint-disable-line` after it. + +## Adding Bootstrap + +You don’t have to use [React Bootstrap](https://react-bootstrap.github.io) together with React but it is a popular library for integrating Bootstrap with React apps. If you need it, you can integrate it with Create React App by following these steps: + +Install React Bootstrap and Bootstrap from npm. React Bootstrap does not include Bootstrap CSS so this needs to be installed as well: + +```sh +npm install --save react-bootstrap bootstrap@3 +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-bootstrap bootstrap@3 +``` + +Import Bootstrap CSS and optionally Bootstrap theme CSS in the beginning of your ```src/index.js``` file: + +```js +import 'bootstrap/dist/css/bootstrap.css'; +import 'bootstrap/dist/css/bootstrap-theme.css'; +// Put any other imports below so that CSS from your +// components takes precedence over default styles. +``` + +Import required React Bootstrap components within ```src/App.js``` file or your custom component files: + +```js +import { Navbar, Jumbotron, Button } from 'react-bootstrap'; +``` + +Now you are ready to use the imported React Bootstrap components within your component hierarchy defined in the render method. Here is an example [`App.js`](https://gist.githubusercontent.com/gaearon/85d8c067f6af1e56277c82d19fd4da7b/raw/6158dd991b67284e9fc8d70b9d973efe87659d72/App.js) redone using React Bootstrap. + +### Using a Custom Theme + +Sometimes you might need to tweak the visual styles of Bootstrap (or equivalent package).<br> +We suggest the following approach: + +* Create a new package that depends on the package you wish to customize, e.g. Bootstrap. +* Add the necessary build steps to tweak the theme, and publish your package on npm. +* Install your own theme npm package as a dependency of your app. + +Here is an example of adding a [customized Bootstrap](https://medium.com/@tacomanator/customizing-create-react-app-aa9ffb88165) that follows these steps. + +## Adding Flow + +Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept. + +Recent versions of [Flow](http://flowtype.org/) work with Create React App projects out of the box. + +To add Flow to a Create React App project, follow these steps: + +1. Run `npm install --save flow-bin` (or `yarn add flow-bin`). +2. Add `"flow": "flow"` to the `scripts` section of your `package.json`. +3. Run `npm run flow init` (or `yarn flow init`) to create a [`.flowconfig` file](https://flowtype.org/docs/advanced-configuration.html) in the root directory. +4. Add `// @flow` to any files you want to type check (for example, to `src/App.js`). + +Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors. +You can optionally use an IDE like [Nuclide](https://nuclide.io/docs/languages/flow/) for a better integrated experience. +In the future we plan to integrate it into Create React App even more closely. + +To learn more about Flow, check out [its documentation](https://flowtype.org/). + +## Adding a Router + +Create React App doesn't prescribe a specific routing solution, but [React Router](https://reacttraining.com/react-router/) is the most popular one. + +To add it, run: + +```sh +npm install --save react-router-dom +``` + +Alternatively you may use `yarn`: + +```sh +yarn add react-router-dom +``` + +To try it, delete all the code in `src/App.js` and replace it with any of the examples on its website. The [Basic Example](https://reacttraining.com/react-router/web/example/basic) is a good place to get started. + +Note that [you may need to configure your production server to support client-side routing](#serving-apps-with-client-side-routing) before deploying your app. + +## Adding Custom Environment Variables + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +Your project can consume variables declared in your environment as if they were declared locally in your JS files. By +default you will have `NODE_ENV` defined for you, and any other environment variables starting with +`REACT_APP_`. + +**The environment variables are embedded during the build time**. Since Create React App produces a static HTML/CSS/JS bundle, it can’t possibly read them at runtime. To read them at runtime, you would need to load HTML into memory on the server and replace placeholders in runtime, just like [described here](#injecting-data-from-the-server-into-the-page). Alternatively you can rebuild the app on the server anytime you change them. + +>Note: You must create custom environment variables beginning with `REACT_APP_`. Any other variables except `NODE_ENV` will be ignored to avoid accidentally [exposing a private key on the machine that could have the same name](https://github.com/facebookincubator/create-react-app/issues/865#issuecomment-252199527). Changing any environment variables will require you to restart the development server if it is running. + +These environment variables will be defined for you on `process.env`. For example, having an environment +variable named `REACT_APP_SECRET_CODE` will be exposed in your JS as `process.env.REACT_APP_SECRET_CODE`. + +There is also a special built-in environment variable called `NODE_ENV`. You can read it from `process.env.NODE_ENV`. When you run `npm start`, it is always equal to `'development'`, when you run `npm test` it is always equal to `'test'`, and when you run `npm run build` to make a production bundle, it is always equal to `'production'`. **You cannot override `NODE_ENV` manually.** This prevents developers from accidentally deploying a slow development build to production. + +These environment variables can be useful for displaying information conditionally based on where the project is +deployed or consuming sensitive data that lives outside of version control. + +First, you need to have environment variables defined. For example, let’s say you wanted to consume a secret defined +in the environment inside a `<form>`: + +```jsx +render() { + return ( + <div> + <small>You are running this application in <b>{process.env.NODE_ENV}</b> mode.</small> + <form> + <input type="hidden" defaultValue={process.env.REACT_APP_SECRET_CODE} /> + </form> + </div> + ); +} +``` + +During the build, `process.env.REACT_APP_SECRET_CODE` will be replaced with the current value of the `REACT_APP_SECRET_CODE` environment variable. Remember that the `NODE_ENV` variable will be set for you automatically. + +When you load the app in the browser and inspect the `<input>`, you will see its value set to `abcdef`, and the bold text will show the environment provided when using `npm start`: + +```html +<div> + <small>You are running this application in <b>development</b> mode.</small> + <form> + <input type="hidden" value="abcdef" /> + </form> +</div> +``` + +The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this +value, we need to have it defined in the environment. This can be done using two ways: either in your shell or in +a `.env` file. Both of these ways are described in the next few sections. + +Having access to the `NODE_ENV` is also useful for performing actions conditionally: + +```js +if (process.env.NODE_ENV !== 'production') { + analytics.disable(); +} +``` + +When you compile the app with `npm run build`, the minification step will strip out this condition, and the resulting bundle will be smaller. + +### Referencing Environment Variables in the HTML + +>Note: this feature is available with `react-scripts@0.9.0` and higher. + +You can also access the environment variables starting with `REACT_APP_` in the `public/index.html`. For example: + +```html +<title>%REACT_APP_WEBSITE_NAME% +``` + +Note that the caveats from the above section apply: + +* Apart from a few built-in variables (`NODE_ENV` and `PUBLIC_URL`), variable names must start with `REACT_APP_` to work. +* The environment variables are injected at build time. If you need to inject them at runtime, [follow this approach instead](#generating-dynamic-meta-tags-on-the-server). + +### Adding Temporary Environment Variables In Your Shell + +Defining environment variables can vary between OSes. It’s also important to know that this manner is temporary for the +life of the shell session. + +#### Windows (cmd.exe) + +```cmd +set "REACT_APP_SECRET_CODE=abcdef" && npm start +``` + +(Note: Quotes around the variable assignment are required to avoid a trailing whitespace.) + +#### Windows (Powershell) + +```Powershell +($env:REACT_APP_SECRET_CODE = "abcdef") -and (npm start) +``` + +#### Linux, macOS (Bash) + +```bash +REACT_APP_SECRET_CODE=abcdef npm start +``` + +### Adding Development Environment Variables In `.env` + +>Note: this feature is available with `react-scripts@0.5.0` and higher. + +To define permanent environment variables, create a file called `.env` in the root of your project: + +``` +REACT_APP_SECRET_CODE=abcdef +``` +>Note: You must create custom environment variables beginning with `REACT_APP_`. Any other variables except `NODE_ENV` will be ignored to avoid [accidentally exposing a private key on the machine that could have the same name](https://github.com/facebookincubator/create-react-app/issues/865#issuecomment-252199527). Changing any environment variables will require you to restart the development server if it is running. + +`.env` files **should be** checked into source control (with the exclusion of `.env*.local`). + +#### What other `.env` files can be used? + +>Note: this feature is **available with `react-scripts@1.0.0` and higher**. + +* `.env`: Default. +* `.env.local`: Local overrides. **This file is loaded for all environments except test.** +* `.env.development`, `.env.test`, `.env.production`: Environment-specific settings. +* `.env.development.local`, `.env.test.local`, `.env.production.local`: Local overrides of environment-specific settings. + +Files on the left have more priority than files on the right: + +* `npm start`: `.env.development.local`, `.env.development`, `.env.local`, `.env` +* `npm run build`: `.env.production.local`, `.env.production`, `.env.local`, `.env` +* `npm test`: `.env.test.local`, `.env.test`, `.env` (note `.env.local` is missing) + +These variables will act as the defaults if the machine does not explicitly set them.
+Please refer to the [dotenv documentation](https://github.com/motdotla/dotenv) for more details. + +>Note: If you are defining environment variables for development, your CI and/or hosting platform will most likely need +these defined as well. Consult their documentation how to do this. For example, see the documentation for [Travis CI](https://docs.travis-ci.com/user/environment-variables/) or [Heroku](https://devcenter.heroku.com/articles/config-vars). + +#### Expanding Environment Variables In `.env` + +>Note: this feature is available with `react-scripts@1.1.0` and higher. + +Expand variables already on your machine for use in your `.env` file (using [dotenv-expand](https://github.com/motdotla/dotenv-expand)). + +For example, to get the environment variable `npm_package_version`: + +``` +REACT_APP_VERSION=$npm_package_version +# also works: +# REACT_APP_VERSION=${npm_package_version} +``` + +Or expand variables local to the current `.env` file: + +``` +DOMAIN=www.example.com +REACT_APP_FOO=$DOMAIN/foo +REACT_APP_BAR=$DOMAIN/bar +``` + +## Can I Use Decorators? + +Many popular libraries use [decorators](https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841) in their documentation.
+Create React App doesn’t support decorator syntax at the moment because: + +* It is an experimental proposal and is subject to change. +* The current specification version is not officially supported by Babel. +* If the specification changes, we won’t be able to write a codemod because we don’t use them internally at Facebook. + +However in many cases you can rewrite decorator-based code without decorators just as fine.
+Please refer to these two threads for reference: + +* [#214](https://github.com/facebookincubator/create-react-app/issues/214) +* [#411](https://github.com/facebookincubator/create-react-app/issues/411) + +Create React App will add decorator support when the specification advances to a stable stage. + +## Fetching Data with AJAX Requests + +React doesn't prescribe a specific approach to data fetching, but people commonly use either a library like [axios](https://github.com/axios/axios) or the [`fetch()` API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) provided by the browser. Conveniently, Create React App includes a polyfill for `fetch()` so you can use it without worrying about the browser support. + +The global `fetch` function allows to easily makes AJAX requests. It takes in a URL as an input and returns a `Promise` that resolves to a `Response` object. You can find more information about `fetch` [here](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch). + +This project also includes a [Promise polyfill](https://github.com/then/promise) which provides a full implementation of Promises/A+. A Promise represents the eventual result of an asynchronous operation, you can find more information about Promises [here](https://www.promisejs.org/) and [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). Both axios and `fetch()` use Promises under the hood. You can also use the [`async / await`](https://davidwalsh.name/async-await) syntax to reduce the callback nesting. + +You can learn more about making AJAX requests from React components in [the FAQ entry on the React website](https://reactjs.org/docs/faq-ajax.html). + +## Integrating with an API Backend + +These tutorials will help you to integrate your app with an API backend running on another port, +using `fetch()` to access it. + +### Node +Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo). + +### Ruby on Rails + +Check out [this tutorial](https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/). +You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo-rails). + +## Proxying API Requests in Development + +>Note: this feature is available with `react-scripts@0.2.3` and higher. + +People often serve the front-end React app from the same host and port as their backend implementation.
+For example, a production setup might look like this after the app is deployed: + +``` +/ - static server returns index.html with React app +/todos - static server returns index.html with React app +/api/todos - server handles any /api/* requests using the backend implementation +``` + +Such setup is **not** required. However, if you **do** have a setup like this, it is convenient to write requests like `fetch('/api/todos')` without worrying about redirecting them to another host or port during development. + +To tell the development server to proxy any unknown requests to your API server in development, add a `proxy` field to your `package.json`, for example: + +```js + "proxy": "http://localhost:4000", +``` + +This way, when you `fetch('/api/todos')` in development, the development server will recognize that it’s not a static asset, and will proxy your request to `http://localhost:4000/api/todos` as a fallback. The development server will **only** attempt to send requests without `text/html` in its `Accept` header to the proxy. + +Conveniently, this avoids [CORS issues](http://stackoverflow.com/questions/21854516/understanding-ajax-cors-and-security-considerations) and error messages like this in development: + +``` +Fetch API cannot load http://localhost:4000/api/todos. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. +``` + +Keep in mind that `proxy` only has effect in development (with `npm start`), and it is up to you to ensure that URLs like `/api/todos` point to the right thing in production. You don’t have to use the `/api` prefix. Any unrecognized request without a `text/html` accept header will be redirected to the specified `proxy`. + +The `proxy` option supports HTTP, HTTPS and WebSocket connections.
+If the `proxy` option is **not** flexible enough for you, alternatively you can: + +* [Configure the proxy yourself](#configuring-the-proxy-manually) +* Enable CORS on your server ([here’s how to do it for Express](http://enable-cors.org/server_expressjs.html)). +* Use [environment variables](#adding-custom-environment-variables) to inject the right server host and port into your app. + +### "Invalid Host Header" Errors After Configuring Proxy + +When you enable the `proxy` option, you opt into a more strict set of host checks. This is necessary because leaving the backend open to remote hosts makes your computer vulnerable to DNS rebinding attacks. The issue is explained in [this article](https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a) and [this issue](https://github.com/webpack/webpack-dev-server/issues/887). + +This shouldn’t affect you when developing on `localhost`, but if you develop remotely like [described here](https://github.com/facebookincubator/create-react-app/issues/2271), you will see this error in the browser after enabling the `proxy` option: + +>Invalid Host header + +To work around it, you can specify your public development host in a file called `.env.development` in the root of your project: + +``` +HOST=mypublicdevhost.com +``` + +If you restart the development server now and load the app from the specified host, it should work. + +If you are still having issues or if you’re using a more exotic environment like a cloud editor, you can bypass the host check completely by adding a line to `.env.development.local`. **Note that this is dangerous and exposes your machine to remote code execution from malicious websites:** + +``` +# NOTE: THIS IS DANGEROUS! +# It exposes your machine to attacks from the websites you visit. +DANGEROUSLY_DISABLE_HOST_CHECK=true +``` + +We don’t recommend this approach. + +### Configuring the Proxy Manually + +>Note: this feature is available with `react-scripts@1.0.0` and higher. + +If the `proxy` option is **not** flexible enough for you, you can specify an object in the following form (in `package.json`).
+You may also specify any configuration value [`http-proxy-middleware`](https://github.com/chimurai/http-proxy-middleware#options) or [`http-proxy`](https://github.com/nodejitsu/node-http-proxy#options) supports. +```js +{ + // ... + "proxy": { + "/api": { + "target": "", + "ws": true + // ... + } + } + // ... +} +``` + +All requests matching this path will be proxies, no exceptions. This includes requests for `text/html`, which the standard `proxy` option does not proxy. + +If you need to specify multiple proxies, you may do so by specifying additional entries. +Matches are regular expressions, so that you can use a regexp to match multiple paths. +```js +{ + // ... + "proxy": { + // Matches any request starting with /api + "/api": { + "target": "", + "ws": true + // ... + }, + // Matches any request starting with /foo + "/foo": { + "target": "", + "ssl": true, + "pathRewrite": { + "^/foo": "/foo/beta" + } + // ... + }, + // Matches /bar/abc.html but not /bar/sub/def.html + "/bar/[^/]*[.]html": { + "target": "", + // ... + }, + // Matches /baz/abc.html and /baz/sub/def.html + "/baz/.*/.*[.]html": { + "target": "" + // ... + } + } + // ... +} +``` + +### Configuring a WebSocket Proxy + +When setting up a WebSocket proxy, there are a some extra considerations to be aware of. + +If you’re using a WebSocket engine like [Socket.io](https://socket.io/), you must have a Socket.io server running that you can use as the proxy target. Socket.io will not work with a standard WebSocket server. Specifically, don't expect Socket.io to work with [the websocket.org echo test](http://websocket.org/echo.html). + +There’s some good documentation available for [setting up a Socket.io server](https://socket.io/docs/). + +Standard WebSockets **will** work with a standard WebSocket server as well as the websocket.org echo test. You can use libraries like [ws](https://github.com/websockets/ws) for the server, with [native WebSockets in the browser](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket). + +Either way, you can proxy WebSocket requests manually in `package.json`: + +```js +{ + // ... + "proxy": { + "/socket": { + // Your compatible WebSocket server + "target": "ws://", + // Tell http-proxy-middleware that this is a WebSocket proxy. + // Also allows you to proxy WebSocket requests without an additional HTTP request + // https://github.com/chimurai/http-proxy-middleware#external-websocket-upgrade + "ws": true + // ... + } + } + // ... +} +``` + +## Using HTTPS in Development + +>Note: this feature is available with `react-scripts@0.4.0` and higher. + +You may require the dev server to serve pages over HTTPS. One particular case where this could be useful is when using [the "proxy" feature](#proxying-api-requests-in-development) to proxy requests to an API server when that API server is itself serving HTTPS. + +To do this, set the `HTTPS` environment variable to `true`, then start the dev server as usual with `npm start`: + +#### Windows (cmd.exe) + +```cmd +set HTTPS=true&&npm start +``` + +#### Windows (Powershell) + +```Powershell +($env:HTTPS = $true) -and (npm start) +``` + +(Note: the lack of whitespace is intentional.) + +#### Linux, macOS (Bash) + +```bash +HTTPS=true npm start +``` + +Note that the server will use a self-signed certificate, so your web browser will almost definitely display a warning upon accessing the page. + +## Generating Dynamic `` Tags on the Server + +Since Create React App doesn’t support server rendering, you might be wondering how to make `` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this: + +```html + + + + + +``` + +Then, on the server, regardless of the backend you use, you can read `index.html` into memory and replace `__OG_TITLE__`, `__OG_DESCRIPTION__`, and any other placeholders with values depending on the current URL. Just make sure to sanitize and escape the interpolated values so that they are safe to embed into HTML! + +If you use a Node server, you can even share the route matching logic between the client and the server. However duplicating it also works fine in simple cases. + +## Pre-Rendering into Static HTML Files + +If you’re hosting your `build` with a static hosting provider you can use [react-snapshot](https://www.npmjs.com/package/react-snapshot) or [react-snap](https://github.com/stereobooster/react-snap) to generate HTML pages for each route, or relative link, in your application. These pages will then seamlessly become active, or “hydrated”, when the JavaScript bundle has loaded. + +There are also opportunities to use this outside of static hosting, to take the pressure off the server when generating and caching routes. + +The primary benefit of pre-rendering is that you get the core content of each page _with_ the HTML payload—regardless of whether or not your JavaScript bundle successfully downloads. It also increases the likelihood that each route of your application will be picked up by search engines. + +You can read more about [zero-configuration pre-rendering (also called snapshotting) here](https://medium.com/superhighfives/an-almost-static-stack-6df0a2791319). + +## Injecting Data from the Server into the Page + +Similarly to the previous section, you can leave some placeholders in the HTML that inject global variables, for example: + +```js + + + + +``` + +Then, on the server, you can replace `__SERVER_DATA__` with a JSON of real data right before sending the response. The client code can then read `window.SERVER_DATA` to use it. **Make sure to [sanitize the JSON before sending it to the client](https://medium.com/node-security/the-most-common-xss-vulnerability-in-react-js-applications-2bdffbcc1fa0) as it makes your app vulnerable to XSS attacks.** + +## Running Tests + +>Note: this feature is available with `react-scripts@0.3.0` and higher.
+>[Read the migration guide to learn how to enable it in older projects!](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md#migrating-from-023-to-030) + +Create React App uses [Jest](https://facebook.github.io/jest/) as its test runner. To prepare for this integration, we did a [major revamp](https://facebook.github.io/jest/blog/2016/09/01/jest-15.html) of Jest so if you heard bad things about it years ago, give it another try. + +Jest is a Node-based runner. This means that the tests always run in a Node environment and not in a real browser. This lets us enable fast iteration speed and prevent flakiness. + +While Jest provides browser globals such as `window` thanks to [jsdom](https://github.com/tmpvar/jsdom), they are only approximations of the real browser behavior. Jest is intended to be used for unit tests of your logic and your components rather than the DOM quirks. + +We recommend that you use a separate tool for browser end-to-end tests if you need them. They are beyond the scope of Create React App. + +### Filename Conventions + +Jest will look for test files with any of the following popular naming conventions: + +* Files with `.js` suffix in `__tests__` folders. +* Files with `.test.js` suffix. +* Files with `.spec.js` suffix. + +The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder. + +We recommend to put the test files (or `__tests__` folders) next to the code they are testing so that relative imports appear shorter. For example, if `App.test.js` and `App.js` are in the same folder, the test just needs to `import App from './App'` instead of a long relative path. Colocation also helps find tests more quickly in larger projects. + +### Command Line Interface + +When you run `npm test`, Jest will launch in the watch mode. Every time you save a file, it will re-run the tests, just like `npm start` recompiles the code. + +The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you can keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run: + +![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif) + +### Version Control Integration + +By default, when you run `npm test`, Jest will only run the tests related to files changed since the last commit. This is an optimization designed to make your tests run fast regardless of how many tests you have. However it assumes that you don’t often commit the code that doesn’t pass the tests. + +Jest will always explicitly mention that it only ran tests related to the files changed since the last commit. You can also press `a` in the watch mode to force Jest to run all tests. + +Jest will always run all tests on a [continuous integration](#continuous-integration) server or if the project is not inside a Git or Mercurial repository. + +### Writing Tests + +To create tests, add `it()` (or `test()`) blocks with the name of the test and its code. You may optionally wrap them in `describe()` blocks for logical grouping but this is neither required nor recommended. + +Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this: + +```js +import sum from './sum'; + +it('sums numbers', () => { + expect(sum(1, 2)).toEqual(3); + expect(sum(2, 2)).toEqual(4); +}); +``` + +All `expect()` matchers supported by Jest are [extensively documented here](https://facebook.github.io/jest/docs/en/expect.html#content).
+You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](https://facebook.github.io/jest/docs/en/expect.html#tohavebeencalled) to create “spies” or mock functions. + +### Testing Components + +There is a broad spectrum of component testing techniques. They range from a “smoke test” verifying that a component renders without throwing, to shallow rendering and testing some of the output, to full rendering and testing component lifecycle and state changes. + +Different projects choose different testing tradeoffs based on how often components change, and how much logic they contain. If you haven’t decided on a testing strategy yet, we recommend that you start with creating simple smoke tests for your components: + +```js +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; + +it('renders without crashing', () => { + const div = document.createElement('div'); + ReactDOM.render(, div); +}); +``` + +This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot of value with very little effort so they are great as a starting point, and this is the test you will find in `src/App.test.js`. + +When you encounter bugs caused by changing components, you will gain a deeper insight into which parts of them are worth testing in your application. This might be a good time to introduce more specific tests asserting specific expected output or behavior. + +If you’d like to test components in isolation from the child components they render, we recommend using [`shallow()` rendering API](http://airbnb.io/enzyme/docs/api/shallow.html) from [Enzyme](http://airbnb.io/enzyme/). To install it, run: + +```sh +npm install --save enzyme enzyme-adapter-react-16 react-test-renderer +``` + +Alternatively you may use `yarn`: + +```sh +yarn add enzyme enzyme-adapter-react-16 react-test-renderer +``` + +As of Enzyme 3, you will need to install Enzyme along with an Adapter corresponding to the version of React you are using. (The examples above use the adapter for React 16.) + +The adapter will also need to be configured in your [global setup file](#initializing-test-environment): + +#### `src/setupTests.js` +```js +import { configure } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; + +configure({ adapter: new Adapter() }); +``` + +>Note: Keep in mind that if you decide to "eject" before creating `src/setupTests.js`, the resulting `package.json` file won't contain any reference to it. [Read here](#initializing-test-environment) to learn how to add this after ejecting. + +Now you can write a smoke test with it: + +```js +import React from 'react'; +import { shallow } from 'enzyme'; +import App from './App'; + +it('renders without crashing', () => { + shallow(); +}); +``` + +Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `` and doesn’t go deeper. For example, even if `` itself renders a ` - ) - } -} - -export default SidebarMinimizer; diff --git a/src/components/SidebarMinimizer/package.json b/src/components/SidebarMinimizer/package.json deleted file mode 100644 index 86ebde3..0000000 --- a/src/components/SidebarMinimizer/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "SidebarMinimizer", - "version": "0.0.0", - "private": true, - "main": "./SidebarMinimizer.js" -} diff --git a/src/containers/Full/Full.js b/src/containers/Full/Full.js index 86f8d5c..9f8cb7b 100644 --- a/src/containers/Full/Full.js +++ b/src/containers/Full/Full.js @@ -1,105 +1,72 @@ -import React, {Component} from 'react'; -import {Switch, Route, Redirect} from 'react-router-dom'; -import {Container} from 'reactstrap'; -import Header from '../../components/Header/'; -import Sidebar from '../../components/Sidebar/'; -import Breadcrumb from '../../components/Breadcrumb/'; -import Aside from '../../components/Aside/'; -import Footer from '../../components/Footer/'; +import React, { Component } from 'react'; +import { Redirect, Route, Switch } from 'react-router-dom'; +import { Container } from 'reactstrap'; -import Dashboard from '../../views/Dashboard/'; - -import Colors from '../../views/Theme/Colors/'; -import Typography from '../../views/Theme/Typography/'; - -import Charts from '../../views/Charts/'; -import Widgets from '../../views/Widgets/'; - -// Base -import Cards from '../../views/Base/Cards/'; -import Forms from '../../views/Base/Forms/'; -import Switches from '../../views/Base/Switches/'; -import Tables from '../../views/Base/Tables/'; -import Tabs from '../../views/Base/Tabs/'; -import Breadcrumbs from '../../views/Base/Breadcrumbs/'; -import Carousels from '../../views/Base/Carousels/'; -import Collapses from '../../views/Base/Collapses/'; -import Dropdowns from '../../views/Base/Dropdowns/'; -import Jumbotrons from '../../views/Base/Jumbotrons/'; -import ListGroups from '../../views/Base/ListGroups/'; -import Navbars from '../../views/Base/Navbars/'; -import Navs from '../../views/Base/Navs/'; -import Paginations from '../../views/Base/Paginations/'; -import Popovers from '../../views/Base/Popovers/'; -import ProgressBar from '../../views/Base/ProgressBar/'; -import Tooltips from '../../views/Base/Tooltips/'; - -// Buttons -import Buttons from '../../views/Buttons/Buttons/'; -import ButtonDropdowns from '../../views/Buttons/ButtonDropdowns/'; -import ButtonGroups from '../../views/Buttons/ButtonGroups/'; -import SocialButtons from '../../views/Buttons/SocialButtons/'; - -// Icons -import Flags from '../../views/Icons/Flags/'; -import FontAwesome from '../../views/Icons/FontAwesome/'; -import SimpleLineIcons from '../../views/Icons/SimpleLineIcons/'; - -// Notifications -import Alerts from '../../views/Notifications/Alerts/'; -import Badges from '../../views/Notifications/Badges/'; -import Modals from '../../views/Notifications/Modals/'; +import { + AppAside, + AppBreadcrumb, + AppFooter, + AppHeader, + AppSidebar, + AppSidebarFooter, + AppSidebarForm, + AppSidebarHeader, + AppSidebarMinimizer, + AppSidebarNav, +} from '@coreui/react-dev'; +// sidebar nav config +import navigation from '../../_nav'; +// routes config +import routes from '../../routes'; +import FullAside from './FullAside'; +import FullFooter from './FullFooter'; +import FullHeader from './FullHeader'; class Full extends Component { render() { return (
-
+ + +
- + + + + + + +
- + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + {routes.map((route, idx) => { + return route.component ? ( ( + + )} />) + : (null); + }, + )} +
-
-
+ + +
); } diff --git a/src/components/Aside/Aside.js b/src/containers/Full/FullAside.js similarity index 75% rename from src/components/Aside/Aside.js rename to src/containers/Full/FullAside.js index 2cfd23b..d92f00e 100644 --- a/src/components/Aside/Aside.js +++ b/src/containers/Full/FullAside.js @@ -1,44 +1,61 @@ -import React, {Component} from 'react'; -import {TabContent, TabPane, Nav, NavItem, NavLink, Progress, Label, Input} from 'reactstrap'; -import classnames from 'classnames'; +import React, { Component } from 'react'; +import { Input, Label, Nav, NavItem, NavLink, Progress, TabContent, TabPane } from 'reactstrap'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +const propTypes = { + children: PropTypes.node, +}; + +const defaultProps = {}; + +class FullAside extends Component { -class Aside extends Component { constructor(props) { super(props); this.toggle = this.toggle.bind(this); this.state = { - activeTab: '1' + activeTab: '1', }; } toggle(tab) { if (this.state.activeTab !== tab) { this.setState({ - activeTab: tab + activeTab: tab, }); } } render() { + + const { children, ...attributes } = this.props; + return ( - - ) + + ); } } -export default Aside; +FullAside.propTypes = propTypes; +FullAside.defaultProps = defaultProps; + +export default FullAside; \ No newline at end of file diff --git a/src/containers/Full/FullFooter.js b/src/containers/Full/FullFooter.js new file mode 100644 index 0000000..325a9f5 --- /dev/null +++ b/src/containers/Full/FullFooter.js @@ -0,0 +1,27 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +const propTypes = { + children: PropTypes.node, +}; + +const defaultProps = {}; + +class FullFooter extends Component { + render() { + + const { children, ...attributes } = this.props; + + return ( + + CoreUI © 2018 creativeLabs. + Powered by CoreUI for React + + ); + } +} + +FullFooter.propTypes = propTypes; +FullFooter.defaultProps = defaultProps; + +export default FullFooter; \ No newline at end of file diff --git a/src/containers/Full/FullHeader.js b/src/containers/Full/FullHeader.js new file mode 100644 index 0000000..ae07656 --- /dev/null +++ b/src/containers/Full/FullHeader.js @@ -0,0 +1,79 @@ +import React, { Component } from 'react'; +import { Badge, DropdownItem, DropdownMenu, DropdownToggle, Nav, NavItem, NavLink } from 'reactstrap'; +import PropTypes from 'prop-types'; + +import { AppAsideToggler, AppHeaderDropdown, AppNavbarBrand, AppSidebarToggler } from '@coreui/react-dev'; + +const propTypes = { + children: PropTypes.node, +}; + +const defaultProps = {}; + +class FullHeader extends Component { + render() { + + const { children, ...attributes } = this.props; + + return ( + + + + + + + + + + + ); + } +} + +FullHeader.propTypes = propTypes; +FullHeader.defaultProps = defaultProps; + +export default FullHeader; \ No newline at end of file diff --git a/src/containers/index.js b/src/containers/index.js new file mode 100644 index 0000000..74f12b3 --- /dev/null +++ b/src/containers/index.js @@ -0,0 +1,3 @@ +import Full from './Full'; + +export { Full }; \ No newline at end of file diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/index.css @@ -0,0 +1 @@ + diff --git a/src/index.js b/src/index.js index 028bbc7..fae3e35 100644 --- a/src/index.js +++ b/src/index.js @@ -1,36 +1,8 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import {HashRouter, Route, Switch} from 'react-router-dom'; +import './index.css'; +import App from './App'; +import registerServiceWorker from './registerServiceWorker'; -// Styles -// Import Flag Icons Set -import 'flag-icon-css/css/flag-icon.min.css'; -// Import Font Awesome Icons Set -import 'font-awesome/css/font-awesome.min.css'; -// Import Simple Line Icons Set -import 'simple-line-icons/css/simple-line-icons.css'; -// Import Main styles for this application -import '../scss/style.scss' -// Temp fix for reactstrap -import '../scss/core/_dropdown-menu-right.scss' - -// Containers -import Full from './containers/Full/' - -// Views -import Login from './views/Pages/Login/' -import Register from './views/Pages/Register/' -import Page404 from './views/Pages/Page404/' -import Page500 from './views/Pages/Page500/' - -ReactDOM.render(( - - - - - - - - - -), document.getElementById('root')); +ReactDOM.render(, document.getElementById('root')); +registerServiceWorker(); diff --git a/src/registerServiceWorker.js b/src/registerServiceWorker.js new file mode 100644 index 0000000..a3e6c0c --- /dev/null +++ b/src/registerServiceWorker.js @@ -0,0 +1,117 @@ +// In production, we register a service worker to serve assets from local cache. + +// This lets the app load faster on subsequent visits in production, and gives +// it offline capabilities. However, it also means that developers (and users) +// will only see deployed updates on the "N+1" visit to a page, since previously +// cached resources are updated in the background. + +// To learn more about the benefits of this model, read https://goo.gl/KwvDNy. +// This link also includes instructions on opting out of this behavior. + +const isLocalhost = Boolean( + window.location.hostname === 'localhost' || + // [::1] is the IPv6 localhost address. + window.location.hostname === '[::1]' || + // 127.0.0.1/8 is considered localhost for IPv4. + window.location.hostname.match( + /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ + ) +); + +export default function register() { + if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { + // The URL constructor is available in all browsers that support SW. + const publicUrl = new URL(process.env.PUBLIC_URL, window.location); + if (publicUrl.origin !== window.location.origin) { + // Our service worker won't work if PUBLIC_URL is on a different origin + // from what our page is served on. This might happen if a CDN is used to + // serve assets; see https://github.com/facebookincubator/create-react-app/issues/2374 + return; + } + + window.addEventListener('load', () => { + const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; + + if (isLocalhost) { + // This is running on localhost. Lets check if a service worker still exists or not. + checkValidServiceWorker(swUrl); + + // Add some additional logging to localhost, pointing developers to the + // service worker/PWA documentation. + navigator.serviceWorker.ready.then(() => { + console.log( + 'This web app is being served cache-first by a service ' + + 'worker. To learn more, visit https://goo.gl/SC7cgQ' + ); + }); + } else { + // Is not local host. Just register service worker + registerValidSW(swUrl); + } + }); + } +} + +function registerValidSW(swUrl) { + navigator.serviceWorker + .register(swUrl) + .then(registration => { + registration.onupdatefound = () => { + const installingWorker = registration.installing; + installingWorker.onstatechange = () => { + if (installingWorker.state === 'installed') { + if (navigator.serviceWorker.controller) { + // At this point, the old content will have been purged and + // the fresh content will have been added to the cache. + // It's the perfect time to display a "New content is + // available; please refresh." message in your web app. + console.log('New content is available; please refresh.'); + } else { + // At this point, everything has been precached. + // It's the perfect time to display a + // "Content is cached for offline use." message. + console.log('Content is cached for offline use.'); + } + } + }; + }; + }) + .catch(error => { + console.error('Error during service worker registration:', error); + }); +} + +function checkValidServiceWorker(swUrl) { + // Check if the service worker can be found. If it can't reload the page. + fetch(swUrl) + .then(response => { + // Ensure service worker exists, and that we really are getting a JS file. + if ( + response.status === 404 || + response.headers.get('content-type').indexOf('javascript') === -1 + ) { + // No service worker found. Probably a different app. Reload the page. + navigator.serviceWorker.ready.then(registration => { + registration.unregister().then(() => { + window.location.reload(); + }); + }); + } else { + // Service worker found. Proceed as normal. + registerValidSW(swUrl); + } + }) + .catch(() => { + console.log( + 'No internet connection found. App is running in offline mode.' + ); + }); +} + +export function unregister() { + if ('serviceWorker' in navigator) { + navigator.serviceWorker.ready.then(registration => { + registration.unregister(); + }); + } +} diff --git a/src/routes.js b/src/routes.js index 9bca27d..c1c7bed 100644 --- a/src/routes.js +++ b/src/routes.js @@ -1,40 +1,79 @@ -const routes = { - '/': 'Home', - '/base': 'Base', - '/base/cards': 'Cards', - '/base/forms': 'Forms', - '/base/switches': 'Switches', - '/base/tables': 'Tables', - '/base/tabs': 'Tabs', - '/base/breadcrumbs': 'Breadcrumbs', - '/base/carousels': 'Carousels', - '/base/collapses': 'Collapses', - '/base/jumbotrons': 'Jumbotrons', - '/base/list-groups': 'List Groups', - '/base/navbars': 'Navbars', - '/base/navs': 'Navs', - '/base/paginations': 'Paginations', - '/base/popovers': 'Popovers', - '/base/progress-bar': 'Progress Bar', - '/base/tooltips': 'Tooltips', - '/buttons': 'Buttons', - '/buttons/buttons': 'Buttons', - '/buttons/social-buttons': 'Social Buttons', - '/buttons/button-dropdowns': 'Button Dropdowns', - '/buttons/button-groups': 'Button Groups', - '/charts': 'Charts', - '/dashboard': 'Dashboard', - '/icons': 'Icons', - '/icons/flags': 'Flags', - '/icons/font-awesome': 'Font Awesome', - '/icons/simple-line-icons': 'Simple Line Icons', - '/notifications': 'Notifications', - '/notifications/alerts': 'Alerts', - '/notifications/badges': 'Badges', - '/notifications/modals': 'Modals', - '/theme': 'Theme', - '/theme/colors': 'Colors', - '/theme/typography': 'Typography', - '/widgets': 'Widgets' -}; -export default routes; +import { + Alerts, + Badges, + Breadcrumbs, + ButtonDropdowns, + ButtonGroups, + Buttons, + Cards, + Carousels, + Charts, + Collapses, + Colors, + Dashboard, + Dropdowns, + Flags, + FontAwesome, + Forms, + Jumbotrons, + ListGroups, + Modals, + Navbars, + Navs, + Paginations, + Popovers, + ProgressBar, + SimpleLineIcons, + SocialButtons, + Switches, + Tables, + Tabs, + Tooltips, + Typography, + Widgets, +} from './views'; +import Full from './containers/Full'; + +// https://github.com/ReactTraining/react-router/tree/master/packages/react-router-config +const routes = [ + { path: '/', exact: true, name: 'Home', component: Full }, + { path: '/dashboard', name: 'Dashboard', component: Dashboard }, + { path: '/theme', exact: true, name: 'Theme', component: Colors }, + { path: '/theme/colors', name: 'Colors', component: Colors }, + { path: '/theme/typography', name: 'Typography', component: Typography }, + { path: '/base', exact: true, name: 'Base', component: Cards }, + { path: '/base/cards', name: 'Cards', component: Cards }, + { path: '/base/forms', name: 'Forms', component: Forms }, + { path: '/base/switches', name: 'Swithces', component: Switches }, + { path: '/base/tables', name: 'Tables', component: Tables }, + { path: '/base/tabs', name: 'Tabs', component: Tabs }, + { path: '/base/breadcrumbs', name: 'Breadcrumbs', component: Breadcrumbs }, + { path: '/base/carousels', name: 'Carousels', component: Carousels }, + { path: '/base/collapses', name: 'Collapses', component: Collapses }, + { path: '/base/dropdowns', name: 'Dropdowns', component: Dropdowns }, + { path: '/base/jumbotrons', name: 'Jumbotrons', component: Jumbotrons }, + { path: '/base/list-groups', name: 'ListGroups', component: ListGroups }, + { path: '/base/navbars', name: 'Navbars', component: Navbars }, + { path: '/base/navs', name: 'Navs', component: Navs }, + { path: '/base/paginations', name: 'Paginations', component: Paginations }, + { path: '/base/popovers', name: 'Popovers', component: Popovers }, + { path: '/base/progress-bar', name: 'Progress Bar', component: ProgressBar }, + { path: '/base/tooltips', name: 'Tooltips', component: Tooltips }, + { path: '/buttons', exact: true, name: 'Buttons', component: Buttons }, + { path: '/buttons/buttons', name: 'Buttons', component: Buttons }, + { path: '/buttons/button-dropdowns', name: 'ButtonDropdowns', component: ButtonDropdowns }, + { path: '/buttons/button-groups', name: 'ButtonGroups', component: ButtonGroups }, + { path: '/buttons/social-buttons', name: 'Social Buttons', component: SocialButtons }, + { path: '/icons', exact: true, name: 'Icons', component: Flags }, + { path: '/icons/flags', name: 'Flags', component: Flags }, + { path: '/icons/font-awesome', name: 'Font Awesome', component: FontAwesome }, + { path: '/icons/simple-line-icons', name: 'Simple Line Icons', component: SimpleLineIcons }, + { path: '/notifications', exact: true, name: 'Notifications', component: Alerts }, + { path: '/notifications/alerts', name: 'Alerts', component: Alerts }, + { path: '/notifications/badges', name: 'Badges', component: Badges }, + { path: '/notifications/modals', name: 'Modals', component: Modals }, + { path: '/widgets', name: 'Widgets', component: Widgets }, + { path: '/charts', name: 'Charts', component: Charts }, +]; + +export default routes; \ No newline at end of file diff --git a/public/scss/_custom.scss b/src/scss/_custom.scss similarity index 100% rename from public/scss/_custom.scss rename to src/scss/_custom.scss diff --git a/public/scss/_variables.scss b/src/scss/_variables.scss similarity index 100% rename from public/scss/_variables.scss rename to src/scss/_variables.scss diff --git a/src/scss/style.css b/src/scss/style.css new file mode 100644 index 0000000..79592aa --- /dev/null +++ b/src/scss/style.css @@ -0,0 +1,9467 @@ +@charset "UTF-8"; +/*! + * CoreUI - Open Source Dashboard UI Kit + * @version v2.0.0-alpha.2 + * @link https://coreui.io + * Copyright (c) 2018 creativeLabs Łukasz Holeczek + * Licensed under MIT (https://coreui.io/license) + */ +/*! + * Bootstrap v4.0.0 (https://getbootstrap.com) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #20a8d8; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #f86c6b; + --orange: #f8cb00; + --yellow: #ffc107; + --green: #4dbd74; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #536c79; + --gray-dark: #29363d; + --light-blue: #63c2de; + --primary: #20a8d8; + --secondary: #a4b7c1; + --success: #4dbd74; + --info: #63c2de; + --warning: #ffc107; + --danger: #f86c6b; + --light: #f0f3f5; + --dark: #29363d; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +*, +*::before, +*::after { + box-sizing: border-box; } + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: transparent; } + +@-ms-viewport { + width: device-width; } + +article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; } + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #151b1e; + text-align: left; + background-color: #e4e5e6; } + +[tabindex="-1"]:focus { + outline: 0 !important; } + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +dfn { + font-style: italic; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #20a8d8; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; } + a:hover { + color: #167495; + text-decoration: underline; } + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; } + a:not([href]):not([tabindex]):focus { + outline: 0; } + +pre, +code, +kbd, +samp { + font-family: monospace, monospace; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg:not(:root) { + overflow: hidden; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #536c79; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; } + +label { + display: inline-block; + margin-bottom: .5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible; } + +button, +select { + text-transform: none; } + +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; } + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit; } + +h1, .h1 { + font-size: 2.1875rem; } + +h2, .h2 { + font-size: 1.75rem; } + +h3, .h3 { + font-size: 1.53125rem; } + +h4, .h4 { + font-size: 1.3125rem; } + +h5, .h5 { + font-size: 1.09375rem; } + +h6, .h6 { + font-size: 0.875rem; } + +.lead { + font-size: 1.09375rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + +small, +.small { + font-size: 80%; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; } + +.blockquote-footer { + display: block; + font-size: 80%; + color: #536c79; } + .blockquote-footer::before { + content: "\2014 \00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #e4e5e6; + border: 1px solid #a4b7c1; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #536c79; } + +code, +kbd, +pre, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #151b1e; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 87.5%; + color: #151b1e; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; } + @media (min-width: 576px) { + .container { + max-width: 540px; } } + @media (min-width: 768px) { + .container { + max-width: 720px; } } + @media (min-width: 992px) { + .container { + max-width: 960px; } } + @media (min-width: 1200px) { + .container { + max-width: 1140px; } } + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; } + +.row { + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; } + +.col { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: none; } + +.col-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6 { + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + order: -1; } + +.order-last { + order: 13; } + +.order-0 { + order: 0; } + +.order-1 { + order: 1; } + +.order-2 { + order: 2; } + +.order-3 { + order: 3; } + +.order-4 { + order: 4; } + +.order-5 { + order: 5; } + +.order-6 { + order: 6; } + +.order-7 { + order: 7; } + +.order-8 { + order: 8; } + +.order-9 { + order: 9; } + +.order-10 { + order: 10; } + +.order-11 { + order: 11; } + +.order-12 { + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-sm-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + order: -1; } + .order-sm-last { + order: 13; } + .order-sm-0 { + order: 0; } + .order-sm-1 { + order: 1; } + .order-sm-2 { + order: 2; } + .order-sm-3 { + order: 3; } + .order-sm-4 { + order: 4; } + .order-sm-5 { + order: 5; } + .order-sm-6 { + order: 6; } + .order-sm-7 { + order: 7; } + .order-sm-8 { + order: 8; } + .order-sm-9 { + order: 9; } + .order-sm-10 { + order: 10; } + .order-sm-11 { + order: 11; } + .order-sm-12 { + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-md-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-md-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + order: -1; } + .order-md-last { + order: 13; } + .order-md-0 { + order: 0; } + .order-md-1 { + order: 1; } + .order-md-2 { + order: 2; } + .order-md-3 { + order: 3; } + .order-md-4 { + order: 4; } + .order-md-5 { + order: 5; } + .order-md-6 { + order: 6; } + .order-md-7 { + order: 7; } + .order-md-8 { + order: 8; } + .order-md-9 { + order: 9; } + .order-md-10 { + order: 10; } + .order-md-11 { + order: 11; } + .order-md-12 { + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-lg-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + order: -1; } + .order-lg-last { + order: 13; } + .order-lg-0 { + order: 0; } + .order-lg-1 { + order: 1; } + .order-lg-2 { + order: 2; } + .order-lg-3 { + order: 3; } + .order-lg-4 { + order: 4; } + .order-lg-5 { + order: 5; } + .order-lg-6 { + order: 6; } + .order-lg-7 { + order: 7; } + .order-lg-8 { + order: 8; } + .order-lg-9 { + order: 9; } + .order-lg-10 { + order: 10; } + .order-lg-11 { + order: 11; } + .order-lg-12 { + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: none; } + .col-xl-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + order: -1; } + .order-xl-last { + order: 13; } + .order-xl-0 { + order: 0; } + .order-xl-1 { + order: 1; } + .order-xl-2 { + order: 2; } + .order-xl-3 { + order: 3; } + .order-xl-4 { + order: 4; } + .order-xl-5 { + order: 5; } + .order-xl-6 { + order: 6; } + .order-xl-7 { + order: 7; } + .order-xl-8 { + order: 8; } + .order-xl-9 { + order: 9; } + .order-xl-10 { + order: 10; } + .order-xl-11 { + order: 11; } + .order-xl-12 { + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 1rem; + background-color: transparent; } + .table th, + .table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #a4b7c1; } + .table thead th { + vertical-align: bottom; + border-bottom: 2px solid #a4b7c1; } + .table tbody + tbody { + border-top: 2px solid #a4b7c1; } + .table .table { + background-color: #e4e5e6; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #a4b7c1; } + .table-bordered th, + .table-bordered td { + border: 1px solid #a4b7c1; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); } + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, 0.075); } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #c1e7f4; } + +.table-hover .table-primary:hover { + background-color: #abdff0; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #abdff0; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #e6ebee; } + +.table-hover .table-secondary:hover { + background-color: #d7dfe4; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #d7dfe4; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #cdedd8; } + +.table-hover .table-success:hover { + background-color: #bae6c9; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #bae6c9; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #d3eef6; } + +.table-hover .table-info:hover { + background-color: #bee6f2; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #bee6f2; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; } + +.table-hover .table-warning:hover { + background-color: #ffe8a1; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #ffe8a1; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #fdd6d6; } + +.table-hover .table-danger:hover { + background-color: #fcbebe; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #fcbebe; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fbfcfc; } + +.table-hover .table-light:hover { + background-color: #ecf1f1; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #ecf1f1; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c3c7c9; } + +.table-hover .table-dark:hover { + background-color: #b6babd; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #b6babd; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); } + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); } + .table-hover .table-active:hover > td, + .table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); } + +.table .thead-dark th { + color: #e4e5e6; + background-color: #151b1e; + border-color: #252f35; } + +.table .thead-light th { + color: #3e515b; + background-color: #c2cfd6; + border-color: #a4b7c1; } + +.table-dark { + color: #e4e5e6; + background-color: #151b1e; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #252f35; } + .table-dark.table-bordered { + border: 0; } + .table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); } + .table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + line-height: 1.5; + color: #3e515b; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #c2cfd6; + border-radius: 0; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + .form-control::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:focus { + color: #3e515b; + background-color: #fff; + border-color: #8ad4ee; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } + .form-control::placeholder { + color: #536c79; + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #c2cfd6; + opacity: 1; } + +select.form-control:not([size]):not([multiple]) { + height: calc(2.0625rem + 2px); } + +select.form-control:focus::-ms-value { + color: #3e515b; + background-color: #fff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; } + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.09375rem; + line-height: 1.5; } + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.76563rem; + line-height: 1.5; } + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, + .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, + .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, + .input-group-sm > .input-group-prepend > .form-control-plaintext.btn, + .input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, + .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, + .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, + .input-group-lg > .input-group-prepend > .form-control-plaintext.btn, + .input-group-lg > .input-group-append > .form-control-plaintext.btn { + padding-right: 0; + padding-left: 0; } + +.form-control-sm, .input-group-sm > .form-control, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + line-height: 1.5; } + +select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(1.64844rem + 2px); } + +.form-control-lg, .input-group-lg > .form-control, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + line-height: 1.5; } + +select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), +.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), +.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { + height: calc(2.64063rem + 2px); } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; } + .form-check-input:disabled ~ .form-check-label { + color: #536c79; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: inline-flex; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #4dbd74; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(77, 189, 116, 0.8); + border-radius: .2rem; } + +.was-validated .form-control:valid, .form-control.is-valid, .was-validated +.custom-select:valid, +.custom-select.is-valid { + border-color: #4dbd74; } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated + .custom-select:valid:focus, + .custom-select.is-valid:focus { + border-color: #4dbd74; + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } + .was-validated .form-control:valid ~ .valid-feedback, + .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, + .form-control.is-valid ~ .valid-tooltip, .was-validated + .custom-select:valid ~ .valid-feedback, + .was-validated + .custom-select:valid ~ .valid-tooltip, + .custom-select.is-valid ~ .valid-feedback, + .custom-select.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #4dbd74; } + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #4dbd74; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + background-color: #aadfbd; } + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + background-color: #72cb91; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #4dbd74; } + .was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { + border-color: inherit; } + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #f86c6b; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1; + color: #fff; + background-color: rgba(248, 108, 107, 0.8); + border-radius: .2rem; } + +.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated +.custom-select:invalid, +.custom-select.is-invalid { + border-color: #f86c6b; } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated + .custom-select:invalid:focus, + .custom-select.is-invalid:focus { + border-color: #f86c6b; + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } + .was-validated .form-control:invalid ~ .invalid-feedback, + .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, + .form-control.is-invalid ~ .invalid-tooltip, .was-validated + .custom-select:invalid ~ .invalid-feedback, + .was-validated + .custom-select:invalid ~ .invalid-tooltip, + .custom-select.is-invalid ~ .invalid-feedback, + .custom-select.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #f86c6b; } + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #f86c6b; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + background-color: #fee5e5; } + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + background-color: #fa9c9c; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #f86c6b; } + .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { + border-color: inherit; } + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.25); } + +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: flex; + flex: 0 0 auto; + flex-flow: row wrap; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group { + width: auto; } + .form-inline .form-check { + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + align-items: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn { + display: inline-block; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + user-select: none; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + .btn:hover, .btn:focus { + text-decoration: none; } + .btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } + .btn.disabled, .btn:disabled { + opacity: 0.65; } + .btn:not(:disabled):not(.disabled) { + cursor: pointer; } + .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { + background-image: none; } + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; } + +.btn-primary { + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + .btn-primary:hover { + color: #fff; + background-color: #1b8eb7; + border-color: #1985ac; } + .btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #1985ac; + border-color: #187da0; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } + +.btn-secondary { + color: #151b1e; + background-color: #a4b7c1; + border-color: #a4b7c1; } + .btn-secondary:hover { + color: #151b1e; + background-color: #8da5b2; + border-color: #869fac; } + .btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(164, 183, 193, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #151b1e; + background-color: #a4b7c1; + border-color: #a4b7c1; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #151b1e; + background-color: #869fac; + border-color: #7e99a7; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(164, 183, 193, 0.5); } + +.btn-success { + color: #fff; + background-color: #4dbd74; + border-color: #4dbd74; } + .btn-success:hover { + color: #fff; + background-color: #3ea662; + border-color: #3a9d5d; } + .btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #4dbd74; + border-color: #4dbd74; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #3a9d5d; + border-color: #379457; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } + +.btn-info { + color: #151b1e; + background-color: #63c2de; + border-color: #63c2de; } + .btn-info:hover { + color: #151b1e; + background-color: #43b6d7; + border-color: #39b2d5; } + .btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #151b1e; + background-color: #63c2de; + border-color: #63c2de; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #39b2d5; + border-color: #2eadd3; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } + +.btn-warning { + color: #151b1e; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:hover { + color: #151b1e; + background-color: #e0a800; + border-color: #d39e00; } + .btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #151b1e; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #151b1e; + background-color: #d39e00; + border-color: #c69500; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.btn-danger { + color: #fff; + background-color: #f86c6b; + border-color: #f86c6b; } + .btn-danger:hover { + color: #fff; + background-color: #f64846; + border-color: #f63c3a; } + .btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #f86c6b; + border-color: #f86c6b; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #f63c3a; + border-color: #f5302e; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } + +.btn-light { + color: #151b1e; + background-color: #f0f3f5; + border-color: #f0f3f5; } + .btn-light:hover { + color: #151b1e; + background-color: #d9e1e6; + border-color: #d1dbe1; } + .btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #151b1e; + background-color: #f0f3f5; + border-color: #f0f3f5; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #151b1e; + background-color: #d1dbe1; + border-color: #cad4dc; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } + +.btn-dark { + color: #fff; + background-color: #29363d; + border-color: #29363d; } + .btn-dark:hover { + color: #fff; + background-color: #1a2226; + border-color: #151b1f; } + .btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(41, 54, 61, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #29363d; + border-color: #29363d; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #151b1f; + border-color: #0f1417; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(41, 54, 61, 0.5); } + +.btn-outline-primary { + color: #20a8d8; + background-color: transparent; + background-image: none; + border-color: #20a8d8; } + .btn-outline-primary:hover { + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + .btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } + .btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #20a8d8; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.5); } + +.btn-outline-secondary { + color: #a4b7c1; + background-color: transparent; + background-image: none; + border-color: #a4b7c1; } + .btn-outline-secondary:hover { + color: #151b1e; + background-color: #a4b7c1; + border-color: #a4b7c1; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(164, 183, 193, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #a4b7c1; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #151b1e; + background-color: #a4b7c1; + border-color: #a4b7c1; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(164, 183, 193, 0.5); } + +.btn-outline-success { + color: #4dbd74; + background-color: transparent; + background-image: none; + border-color: #4dbd74; } + .btn-outline-success:hover { + color: #fff; + background-color: #4dbd74; + border-color: #4dbd74; } + .btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #4dbd74; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #4dbd74; + border-color: #4dbd74; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(77, 189, 116, 0.5); } + +.btn-outline-info { + color: #63c2de; + background-color: transparent; + background-image: none; + border-color: #63c2de; } + .btn-outline-info:hover { + color: #151b1e; + background-color: #63c2de; + border-color: #63c2de; } + .btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #63c2de; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #151b1e; + background-color: #63c2de; + border-color: #63c2de; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(99, 194, 222, 0.5); } + +.btn-outline-warning { + color: #ffc107; + background-color: transparent; + background-image: none; + border-color: #ffc107; } + .btn-outline-warning:hover { + color: #151b1e; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #151b1e; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.btn-outline-danger { + color: #f86c6b; + background-color: transparent; + background-image: none; + border-color: #f86c6b; } + .btn-outline-danger:hover { + color: #fff; + background-color: #f86c6b; + border-color: #f86c6b; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #f86c6b; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #f86c6b; + border-color: #f86c6b; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 108, 107, 0.5); } + +.btn-outline-light { + color: #f0f3f5; + background-color: transparent; + background-image: none; + border-color: #f0f3f5; } + .btn-outline-light:hover { + color: #151b1e; + background-color: #f0f3f5; + border-color: #f0f3f5; } + .btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f0f3f5; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #151b1e; + background-color: #f0f3f5; + border-color: #f0f3f5; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(240, 243, 245, 0.5); } + +.btn-outline-dark { + color: #29363d; + background-color: transparent; + background-image: none; + border-color: #29363d; } + .btn-outline-dark:hover { + color: #fff; + background-color: #29363d; + border-color: #29363d; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(41, 54, 61, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #29363d; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #29363d; + border-color: #29363d; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(41, 54, 61, 0.5); } + +.btn-link { + font-weight: 400; + color: #20a8d8; + background-color: transparent; } + .btn-link:hover { + color: #167495; + text-decoration: underline; + background-color: transparent; + border-color: transparent; } + .btn-link:focus, .btn-link.focus { + text-decoration: underline; + border-color: transparent; + box-shadow: none; } + .btn-link:disabled, .btn-link.disabled { + color: #536c79; } + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + line-height: 1.5; + border-radius: 0; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + line-height: 1.5; + border-radius: 0; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + opacity: 0; + transition: opacity 0.15s linear; } + .fade.show { + opacity: 1; } + +.collapse { + display: none; } + .collapse.show { + display: block; } + +tr.collapse.show { + display: table-row; } + +tbody.collapse.show { + display: table-row-group; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; } + +.dropup, +.dropdown { + position: relative; } + +.dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + +.dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0 0; + margin: 0.125rem 0 0; + font-size: 0.875rem; + color: #151b1e; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #c2cfd6; } + +.dropup .dropdown-menu { + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + margin-top: 0; + margin-left: 0.125rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + margin-top: 0; + margin-right: 0.125rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + width: 0; + height: 0; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + width: 0; + height: 0; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropleft .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #f0f3f5; } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #151b1e; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #0b0e0f; + text-decoration: none; + background-color: #f0f3f5; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #20a8d8; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #536c79; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0 1.5rem; + margin-bottom: 0; + font-size: 0.76563rem; + color: #536c79; + white-space: nowrap; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + flex: 0 1 auto; } + .btn-group > .btn:hover, + .btn-group-vertical > .btn:hover { + z-index: 1; } + .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + .btn-group .btn + .btn, + .btn-group .btn + .btn-group, + .btn-group .btn-group + .btn, + .btn-group .btn-group + .btn-group, + .btn-group-vertical .btn + .btn, + .btn-group-vertical .btn + .btn-group, + .btn-group-vertical .btn-group + .btn, + .btn-group-vertical .btn-group + .btn-group { + margin-left: -1px; } + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:first-child { + margin-left: 0; } + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; } + .dropdown-toggle-split::after { + margin-left: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; } + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; } + .btn-group-vertical .btn, + .btn-group-vertical .btn-group { + width: 100%; } + .btn-group-vertical > .btn + .btn, + .btn-group-vertical > .btn + .btn-group, + .btn-group-vertical > .btn-group + .btn, + .btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; } + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; } + .btn-group-toggle > .btn input[type="radio"], + .btn-group-toggle > .btn input[type="checkbox"], + .btn-group-toggle > .btn-group > .btn input[type="radio"], + .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; } + .input-group > .form-control, + .input-group > .custom-select, + .input-group > .custom-file { + position: relative; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; } + .input-group > .form-control:focus, + .input-group > .custom-select:focus, + .input-group > .custom-file:focus { + z-index: 3; } + .input-group > .form-control + .form-control, + .input-group > .form-control + .custom-select, + .input-group > .form-control + .custom-file, + .input-group > .custom-select + .form-control, + .input-group > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, + .input-group > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .custom-file { + display: flex; + align-items: center; } + +.input-group-prepend, +.input-group-append { + display: flex; } + .input-group-prepend .btn, + .input-group-append .btn { + position: relative; + z-index: 2; } + .input-group-prepend .btn + .btn, + .input-group-prepend .btn + .input-group-text, + .input-group-prepend .input-group-text + .input-group-text, + .input-group-prepend .input-group-text + .btn, + .input-group-append .btn + .btn, + .input-group-append .btn + .input-group-text, + .input-group-append .input-group-text + .input-group-text, + .input-group-append .input-group-text + .btn { + margin-left: -1px; } + +.input-group-prepend { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #3e515b; + text-align: center; + white-space: nowrap; + background-color: #f0f3f5; + border: 1px solid #c2cfd6; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; } + +.custom-control-inline { + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + background-color: #20a8d8; } + .custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 1px #e4e5e6, 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } + .custom-control-input:active ~ .custom-control-label::before { + color: #fff; + background-color: #b6e4f4; } + .custom-control-input:disabled ~ .custom-control-label { + color: #536c79; } + .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #c2cfd6; } + +.custom-control-label { + margin-bottom: 0; } + .custom-control-label::before { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + user-select: none; + background-color: #a4b7c1; } + .custom-control-label::after { + position: absolute; + top: 0.25rem; + left: 0; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50%; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + background-color: #20a8d8; } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(32, 168, 216, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(32, 168, 216, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::before { + background-color: #20a8d8; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); } + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(32, 168, 216, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.0625rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + line-height: 1.5; + color: #3e515b; + vertical-align: middle; + background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%2329363d' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; + background-size: 8px 10px; + border: 1px solid #c2cfd6; + border-radius: 0; + appearance: none; } + .custom-select:focus { + border-color: #8ad4ee; + outline: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(138, 212, 238, 0.5); } + .custom-select:focus::-ms-value { + color: #3e515b; + background-color: #fff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; } + .custom-select:disabled { + color: #536c79; + background-color: #c2cfd6; } + .custom-select::-ms-expand { + opacity: 0; } + +.custom-select-sm { + height: calc(1.64844rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 75%; } + +.custom-select-lg { + height: calc(2.64063rem + 2px); + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 125%; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.0625rem + 2px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.0625rem + 2px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-control { + border-color: #8ad4ee; + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } + .custom-file-input:focus ~ .custom-file-control::before { + border-color: #8ad4ee; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(2.0625rem + 2px); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #3e515b; + background-color: #fff; + border: 1px solid #c2cfd6; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(calc(2.0625rem + 2px) - 1px * 2); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #3e515b; + content: "Browse"; + background-color: #f0f3f5; + border-left: 1px solid #c2cfd6; } + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #536c79; } + +.nav-tabs { + border-bottom: 1px solid #a4b7c1; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .nav-tabs .nav-link { + border: 1px solid transparent; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #c2cfd6 #c2cfd6 #a4b7c1; } + .nav-tabs .nav-link.disabled { + color: #536c79; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #3e515b; + background-color: #e4e5e6; + border-color: #a4b7c1 #a4b7c1 #e4e5e6; } + .nav-tabs .dropdown-menu { + margin-top: -1px; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #20a8d8; } + +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; } + +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: 0.5rem 1rem; } + .navbar > .container, + .navbar > .container-fluid { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: 0.33594rem; + padding-bottom: 0.33594rem; + margin-right: 1rem; + font-size: 1.09375rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.09375rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + .navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; } + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } + .navbar-expand-sm .dropup .dropdown-menu { + top: auto; + bottom: 100%; } } + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } + .navbar-expand-md .dropup .dropdown-menu { + top: auto; + bottom: 100%; } } + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } + .navbar-expand-lg .dropup .dropdown-menu { + top: auto; + bottom: 100%; } } + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } + .navbar-expand-xl .dropup .dropdown-menu { + top: auto; + bottom: 100%; } } + +.navbar-expand { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand > .container, + .navbar-expand > .container-fluid { + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + .navbar-expand .dropup .dropdown-menu { + top: auto; + bottom: 100%; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); } + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid #c2cfd6; } + .card > hr { + margin-right: 0; + margin-left: 0; } + +.card-body { + flex: 1 1 auto; + padding: 1.25rem; } + +.card-title { + margin-bottom: 0.75rem; } + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.25rem; } + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: #f0f3f5; + border-bottom: 1px solid #c2cfd6; } + .card-header + .list-group .list-group-item:first-child { + border-top: 0; } + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: #f0f3f5; + border-top: 1px solid #c2cfd6; } + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; } + +.card-img { + width: 100%; } + +.card-img-top { + width: 100%; } + +.card-img-bottom { + width: 100%; } + +.card-deck { + display: flex; + flex-direction: column; } + .card-deck .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-deck { + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; } + .card-deck .card { + display: flex; + flex: 1 0 0%; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; } } + +.card-group { + display: flex; + flex-direction: column; } + .card-group > .card { + margin-bottom: 15px; } + @media (min-width: 576px) { + .card-group { + flex-flow: row wrap; } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } } + +.card-columns .card { + margin-bottom: 0.75rem; } + +@media (min-width: 576px) { + .card-columns { + column-count: 3; + column-gap: 1.25rem; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1.5rem; + list-style: none; + background-color: #fff; } + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + padding-left: 0.5rem; + color: #536c79; + content: "/"; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + +.breadcrumb-item.active { + color: #536c79; } + +.pagination { + display: flex; + padding-left: 0; + list-style: none; } + +.page-link, .pagination-datatables li a, .pagination li a { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #20a8d8; + background-color: #fff; + border: 1px solid #a4b7c1; } + .page-link:hover, .pagination-datatables li a:hover, .pagination li a:hover { + color: #167495; + text-decoration: none; + background-color: #c2cfd6; + border-color: #a4b7c1; } + .page-link:focus, .pagination-datatables li a:focus, .pagination li a:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(32, 168, 216, 0.25); } + .page-link:not(:disabled):not(.disabled), .pagination-datatables li a:not(:disabled):not(.disabled), .pagination li a:not(:disabled):not(.disabled) { + cursor: pointer; } + +.page-item:first-child .page-link, .pagination-datatables li:first-child .page-link, .pagination li:first-child .page-link, .page-item:first-child .pagination-datatables li a, .pagination-datatables li .page-item:first-child a, .pagination-datatables li:first-child a, .page-item:first-child .pagination li a, .pagination li .page-item:first-child a, .pagination li:first-child a { + margin-left: 0; } + +.page-item.active .page-link, .pagination-datatables li.active .page-link, .pagination li.active .page-link, .page-item.active .pagination-datatables li a, .pagination-datatables li .page-item.active a, .pagination-datatables li.active a, .page-item.active .pagination li a, .pagination li .page-item.active a, .pagination li.active a { + z-index: 1; + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + +.page-item.disabled .page-link, .pagination-datatables li.disabled .page-link, .pagination li.disabled .page-link, .page-item.disabled .pagination-datatables li a, .pagination-datatables li .page-item.disabled a, .pagination-datatables li.disabled a, .page-item.disabled .pagination li a, .pagination li .page-item.disabled a, .pagination li.disabled a { + color: #536c79; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #a4b7c1; } + +.pagination-lg .page-link, .pagination-lg .pagination-datatables li a, .pagination-datatables li .pagination-lg a, .pagination-lg .pagination li a, .pagination li .pagination-lg a { + padding: 0.75rem 1.5rem; + font-size: 1.09375rem; + line-height: 1.5; } + +.pagination-sm .page-link, .pagination-sm .pagination-datatables li a, .pagination-datatables li .pagination-sm a, .pagination-sm .pagination li a, .pagination li .pagination-sm a { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + line-height: 1.5; } + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; } + +.badge-primary { + color: #fff; + background-color: #20a8d8; } + .badge-primary[href]:hover, .badge-primary[href]:focus { + color: #fff; + text-decoration: none; + background-color: #1985ac; } + +.badge-secondary { + color: #151b1e; + background-color: #a4b7c1; } + .badge-secondary[href]:hover, .badge-secondary[href]:focus { + color: #151b1e; + text-decoration: none; + background-color: #869fac; } + +.badge-success { + color: #fff; + background-color: #4dbd74; } + .badge-success[href]:hover, .badge-success[href]:focus { + color: #fff; + text-decoration: none; + background-color: #3a9d5d; } + +.badge-info { + color: #151b1e; + background-color: #63c2de; } + .badge-info[href]:hover, .badge-info[href]:focus { + color: #151b1e; + text-decoration: none; + background-color: #39b2d5; } + +.badge-warning { + color: #151b1e; + background-color: #ffc107; } + .badge-warning[href]:hover, .badge-warning[href]:focus { + color: #151b1e; + text-decoration: none; + background-color: #d39e00; } + +.badge-danger { + color: #fff; + background-color: #f86c6b; } + .badge-danger[href]:hover, .badge-danger[href]:focus { + color: #fff; + text-decoration: none; + background-color: #f63c3a; } + +.badge-light { + color: #151b1e; + background-color: #f0f3f5; } + .badge-light[href]:hover, .badge-light[href]:focus { + color: #151b1e; + text-decoration: none; + background-color: #d1dbe1; } + +.badge-dark { + color: #fff; + background-color: #29363d; } + .badge-dark[href]:hover, .badge-dark[href]:focus { + color: #fff; + text-decoration: none; + background-color: #151b1f; } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #c2cfd6; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; } + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 3.8125rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; } + +.alert-primary { + color: #115770; + background-color: #d2eef7; + border-color: #c1e7f4; } + .alert-primary hr { + border-top-color: #abdff0; } + .alert-primary .alert-link { + color: #0a3544; } + +.alert-secondary { + color: #555f64; + background-color: #edf1f3; + border-color: #e6ebee; } + .alert-secondary hr { + border-top-color: #d7dfe4; } + .alert-secondary .alert-link { + color: #3e4548; } + +.alert-success { + color: #28623c; + background-color: #dbf2e3; + border-color: #cdedd8; } + .alert-success hr { + border-top-color: #bae6c9; } + .alert-success .alert-link { + color: #193e26; } + +.alert-info { + color: #336573; + background-color: #e0f3f8; + border-color: #d3eef6; } + .alert-info hr { + border-top-color: #bee6f2; } + .alert-info .alert-link { + color: #234650; } + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; } + .alert-warning hr { + border-top-color: #ffe8a1; } + .alert-warning .alert-link { + color: #533f03; } + +.alert-danger { + color: #813838; + background-color: #fee2e1; + border-color: #fdd6d6; } + .alert-danger hr { + border-top-color: #fcbebe; } + .alert-danger .alert-link { + color: #5d2929; } + +.alert-light { + color: #7d7e7f; + background-color: #fcfdfd; + border-color: #fbfcfc; } + .alert-light hr { + border-top-color: #ecf1f1; } + .alert-light .alert-link { + color: #646565; } + +.alert-dark { + color: #151c20; + background-color: #d4d7d8; + border-color: #c3c7c9; } + .alert-dark hr { + border-top-color: #b6babd; } + .alert-dark .alert-link { + color: #010101; } + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.65625rem; + background-color: #f0f3f5; } + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + color: #fff; + text-align: center; + background-color: #20a8d8; + transition: width 0.6s ease; } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + animation: progress-bar-stripes 1s linear infinite; } + +.media { + display: flex; + align-items: flex-start; } + +.media-body { + flex: 1; } + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; } + +.list-group-item-action { + width: 100%; + color: #3e515b; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + color: #3e515b; + text-decoration: none; + background-color: #f0f3f5; } + .list-group-item-action:active { + color: #151b1e; + background-color: #c2cfd6; } + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); } + .list-group-item:last-child { + margin-bottom: 0; } + .list-group-item:hover, .list-group-item:focus { + z-index: 1; + text-decoration: none; } + .list-group-item.disabled, .list-group-item:disabled { + color: #536c79; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #20a8d8; + border-color: #20a8d8; } + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; } + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; } + +.list-group-flush:last-child .list-group-item:last-child { + border-bottom: 0; } + +.list-group-item-primary { + color: #115770; + background-color: #c1e7f4; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #115770; + background-color: #abdff0; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #115770; + border-color: #115770; } + +.list-group-item-secondary { + color: #555f64; + background-color: #e6ebee; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #555f64; + background-color: #d7dfe4; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #555f64; + border-color: #555f64; } + +.list-group-item-success { + color: #28623c; + background-color: #cdedd8; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #28623c; + background-color: #bae6c9; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #28623c; + border-color: #28623c; } + +.list-group-item-info { + color: #336573; + background-color: #d3eef6; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #336573; + background-color: #bee6f2; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #336573; + border-color: #336573; } + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; } + +.list-group-item-danger { + color: #813838; + background-color: #fdd6d6; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #813838; + background-color: #fcbebe; } + .list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #813838; + border-color: #813838; } + +.list-group-item-light { + color: #7d7e7f; + background-color: #fbfcfc; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #7d7e7f; + background-color: #ecf1f1; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #7d7e7f; + border-color: #7d7e7f; } + +.list-group-item-dark { + color: #151c20; + background-color: #c3c7c9; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #151c20; + background-color: #b6babd; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #151c20; + border-color: #151c20; } + +.close { + float: right; + font-size: 1.3125rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:hover, .close:focus { + color: #000; + text-decoration: none; + opacity: .75; } + .close:not(:disabled):not(.disabled) { + cursor: pointer; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; } + +.modal-open { + overflow: hidden; } + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + outline: 0; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -25%); } + .modal.show .modal-dialog { + transform: translate(0, 0); } + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - (0.5rem * 2)); } + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: flex; + align-items: flex-start; + justify-content: space-between; + padding: 1rem; + border-bottom: 1px solid #c2cfd6; } + .modal-header .close { + padding: 1rem; + margin: -1rem -1rem -1rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; } + +.modal-footer { + display: flex; + align-items: center; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #c2cfd6; } + .modal-footer > :not(:first-child) { + margin-left: .25rem; } + .modal-footer > :not(:last-child) { + margin-right: .25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; } + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)); } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg { + max-width: 800px; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.76563rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; } + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; } + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.76563rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { + bottom: calc((0.5rem + 1px) * -1); } + .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, + .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + border-width: 0.5rem 0.5rem 0; } + .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, 0.25); } + .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { + bottom: 1px; + border-top-color: #fff; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, + .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + border-width: 0.5rem 0.5rem 0.5rem 0; } + .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, 0.25); } + .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { + left: 1px; + border-right-color: #fff; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { + top: calc((0.5rem + 1px) * -1); } + .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, + .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + border-width: 0 0.5rem 0.5rem 0.5rem; } + .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, 0.25); } + .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { + top: 1px; + border-bottom-color: #fff; } + .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, + .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + border-width: 0.5rem 0 0.5rem 0.5rem; } + .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, 0.25); } + .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { + right: 1px; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 0.875rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #151b1e; } + +.carousel { + position: relative; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + +.carousel-item { + position: relative; + display: none; + align-items: center; + width: 100%; + transition: transform 0.6s ease; + backface-visibility: hidden; + perspective: 1000px; } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +.carousel-item-next, +.carousel-item-prev { + position: absolute; + top: 0; } + +.carousel-item-next.carousel-item-left, +.carousel-item-prev.carousel-item-right { + transform: translateX(0); } + @supports (transform-style: preserve-3d) { + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + transform: translate3d(0, 0, 0); } } + +.carousel-item-next, +.active.carousel-item-right { + transform: translateX(100%); } + @supports (transform-style: preserve-3d) { + .carousel-item-next, + .active.carousel-item-right { + transform: translate3d(100%, 0, 0); } } + +.carousel-item-prev, +.active.carousel-item-left { + transform: translateX(-100%); } + @supports (transform-style: preserve-3d) { + .carousel-item-prev, + .active.carousel-item-left { + transform: translate3d(-100%, 0, 0); } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100%; } + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 10px; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + position: relative; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + background-color: rgba(255, 255, 255, 0.5); } + .carousel-indicators li::before { + position: absolute; + top: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; } + .carousel-indicators li::after { + position: absolute; + bottom: -10px; + left: 0; + display: inline-block; + width: 100%; + height: 10px; + content: ""; } + .carousel-indicators .active { + background-color: #fff; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary { + background-color: #20a8d8 !important; } + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #1985ac !important; } + +.bg-secondary { + background-color: #a4b7c1 !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #869fac !important; } + +.bg-success { + background-color: #4dbd74 !important; } + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #3a9d5d !important; } + +.bg-info { + background-color: #63c2de !important; } + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #39b2d5 !important; } + +.bg-warning { + background-color: #ffc107 !important; } + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; } + +.bg-danger { + background-color: #f86c6b !important; } + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #f63c3a !important; } + +.bg-light { + background-color: #f0f3f5 !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #d1dbe1 !important; } + +.bg-dark { + background-color: #29363d !important; } + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #151b1f !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border { + border: 1px solid #c2cfd6 !important; } + +.border-top { + border-top: 1px solid #c2cfd6 !important; } + +.border-right { + border-right: 1px solid #c2cfd6 !important; } + +.border-bottom { + border-bottom: 1px solid #c2cfd6 !important; } + +.border-left { + border-left: 1px solid #c2cfd6 !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #20a8d8 !important; } + +.border-secondary { + border-color: #a4b7c1 !important; } + +.border-success { + border-color: #4dbd74 !important; } + +.border-info { + border-color: #63c2de !important; } + +.border-warning { + border-color: #ffc107 !important; } + +.border-danger { + border-color: #f86c6b !important; } + +.border-light { + border-color: #f0f3f5 !important; } + +.border-dark { + border-color: #29363d !important; } + +.border-white { + border-color: #fff !important; } + +.rounded { + border-radius: 0.25rem !important; } + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex { + display: flex !important; } + +.d-inline-flex { + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: flex !important; } + .d-sm-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: flex !important; } + .d-md-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: flex !important; } + .d-lg-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: flex !important; } + .d-xl-inline-flex { + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: flex !important; } + .d-print-inline-flex { + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row { + flex-direction: row !important; } + +.flex-column { + flex-direction: column !important; } + +.flex-row-reverse { + flex-direction: row-reverse !important; } + +.flex-column-reverse { + flex-direction: column-reverse !important; } + +.flex-wrap { + flex-wrap: wrap !important; } + +.flex-nowrap { + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } + +.justify-content-start { + justify-content: flex-start !important; } + +.justify-content-end { + justify-content: flex-end !important; } + +.justify-content-center { + justify-content: center !important; } + +.justify-content-between { + justify-content: space-between !important; } + +.justify-content-around { + justify-content: space-around !important; } + +.align-items-start { + align-items: flex-start !important; } + +.align-items-end { + align-items: flex-end !important; } + +.align-items-center { + align-items: center !important; } + +.align-items-baseline { + align-items: baseline !important; } + +.align-items-stretch { + align-items: stretch !important; } + +.align-content-start { + align-content: flex-start !important; } + +.align-content-end { + align-content: flex-end !important; } + +.align-content-center { + align-content: center !important; } + +.align-content-between { + align-content: space-between !important; } + +.align-content-around { + align-content: space-around !important; } + +.align-content-stretch { + align-content: stretch !important; } + +.align-self-auto { + align-self: auto !important; } + +.align-self-start { + align-self: flex-start !important; } + +.align-self-end { + align-self: flex-end !important; } + +.align-self-center { + align-self: center !important; } + +.align-self-baseline { + align-self: baseline !important; } + +.align-self-stretch { + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; } + .flex-sm-column { + flex-direction: column !important; } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; } + .flex-sm-wrap { + flex-wrap: wrap !important; } + .flex-sm-nowrap { + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .justify-content-sm-start { + justify-content: flex-start !important; } + .justify-content-sm-end { + justify-content: flex-end !important; } + .justify-content-sm-center { + justify-content: center !important; } + .justify-content-sm-between { + justify-content: space-between !important; } + .justify-content-sm-around { + justify-content: space-around !important; } + .align-items-sm-start { + align-items: flex-start !important; } + .align-items-sm-end { + align-items: flex-end !important; } + .align-items-sm-center { + align-items: center !important; } + .align-items-sm-baseline { + align-items: baseline !important; } + .align-items-sm-stretch { + align-items: stretch !important; } + .align-content-sm-start { + align-content: flex-start !important; } + .align-content-sm-end { + align-content: flex-end !important; } + .align-content-sm-center { + align-content: center !important; } + .align-content-sm-between { + align-content: space-between !important; } + .align-content-sm-around { + align-content: space-around !important; } + .align-content-sm-stretch { + align-content: stretch !important; } + .align-self-sm-auto { + align-self: auto !important; } + .align-self-sm-start { + align-self: flex-start !important; } + .align-self-sm-end { + align-self: flex-end !important; } + .align-self-sm-center { + align-self: center !important; } + .align-self-sm-baseline { + align-self: baseline !important; } + .align-self-sm-stretch { + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; } + .flex-md-column { + flex-direction: column !important; } + .flex-md-row-reverse { + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + flex-direction: column-reverse !important; } + .flex-md-wrap { + flex-wrap: wrap !important; } + .flex-md-nowrap { + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .justify-content-md-start { + justify-content: flex-start !important; } + .justify-content-md-end { + justify-content: flex-end !important; } + .justify-content-md-center { + justify-content: center !important; } + .justify-content-md-between { + justify-content: space-between !important; } + .justify-content-md-around { + justify-content: space-around !important; } + .align-items-md-start { + align-items: flex-start !important; } + .align-items-md-end { + align-items: flex-end !important; } + .align-items-md-center { + align-items: center !important; } + .align-items-md-baseline { + align-items: baseline !important; } + .align-items-md-stretch { + align-items: stretch !important; } + .align-content-md-start { + align-content: flex-start !important; } + .align-content-md-end { + align-content: flex-end !important; } + .align-content-md-center { + align-content: center !important; } + .align-content-md-between { + align-content: space-between !important; } + .align-content-md-around { + align-content: space-around !important; } + .align-content-md-stretch { + align-content: stretch !important; } + .align-self-md-auto { + align-self: auto !important; } + .align-self-md-start { + align-self: flex-start !important; } + .align-self-md-end { + align-self: flex-end !important; } + .align-self-md-center { + align-self: center !important; } + .align-self-md-baseline { + align-self: baseline !important; } + .align-self-md-stretch { + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; } + .flex-lg-column { + flex-direction: column !important; } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; } + .flex-lg-wrap { + flex-wrap: wrap !important; } + .flex-lg-nowrap { + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .justify-content-lg-start { + justify-content: flex-start !important; } + .justify-content-lg-end { + justify-content: flex-end !important; } + .justify-content-lg-center { + justify-content: center !important; } + .justify-content-lg-between { + justify-content: space-between !important; } + .justify-content-lg-around { + justify-content: space-around !important; } + .align-items-lg-start { + align-items: flex-start !important; } + .align-items-lg-end { + align-items: flex-end !important; } + .align-items-lg-center { + align-items: center !important; } + .align-items-lg-baseline { + align-items: baseline !important; } + .align-items-lg-stretch { + align-items: stretch !important; } + .align-content-lg-start { + align-content: flex-start !important; } + .align-content-lg-end { + align-content: flex-end !important; } + .align-content-lg-center { + align-content: center !important; } + .align-content-lg-between { + align-content: space-between !important; } + .align-content-lg-around { + align-content: space-around !important; } + .align-content-lg-stretch { + align-content: stretch !important; } + .align-self-lg-auto { + align-self: auto !important; } + .align-self-lg-start { + align-self: flex-start !important; } + .align-self-lg-end { + align-self: flex-end !important; } + .align-self-lg-center { + align-self: center !important; } + .align-self-lg-baseline { + align-self: baseline !important; } + .align-self-lg-stretch { + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; } + .flex-xl-column { + flex-direction: column !important; } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; } + .flex-xl-wrap { + flex-wrap: wrap !important; } + .flex-xl-nowrap { + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .justify-content-xl-start { + justify-content: flex-start !important; } + .justify-content-xl-end { + justify-content: flex-end !important; } + .justify-content-xl-center { + justify-content: center !important; } + .justify-content-xl-between { + justify-content: space-between !important; } + .justify-content-xl-around { + justify-content: space-around !important; } + .align-items-xl-start { + align-items: flex-start !important; } + .align-items-xl-end { + align-items: flex-end !important; } + .align-items-xl-center { + align-items: center !important; } + .align-items-xl-baseline { + align-items: baseline !important; } + .align-items-xl-stretch { + align-items: stretch !important; } + .align-content-xl-start { + align-content: flex-start !important; } + .align-content-xl-end { + align-content: flex-end !important; } + .align-content-xl-center { + align-content: center !important; } + .align-content-xl-between { + align-content: space-between !important; } + .align-content-xl-around { + align-content: space-around !important; } + .align-content-xl-stretch { + align-content: stretch !important; } + .align-self-xl-auto { + align-self: auto !important; } + .align-self-xl-start { + align-self: flex-start !important; } + .align-self-xl-end { + align-self: flex-end !important; } + .align-self-xl-center { + align-self: center !important; } + .align-self-xl-baseline { + align-self: baseline !important; } + .align-self-xl-stretch { + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports (position: sticky) { + .sticky-top { + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + clip-path: inset(50%); + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; + clip-path: none; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.m-0 { + margin: 0 !important; } + +.mt-0, +.my-0 { + margin-top: 0 !important; } + +.mr-0, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; } + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; } + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; } + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; } + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.mt-3, +.my-3 { + margin-top: 1rem !important; } + +.mr-3, +.mx-3 { + margin-right: 1rem !important; } + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; } + +.ml-3, +.mx-3 { + margin-left: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; } + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.mt-5, +.my-5 { + margin-top: 3rem !important; } + +.mr-5, +.mx-5 { + margin-right: 3rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; } + +.ml-5, +.mx-5 { + margin-left: 3rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; } + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; } + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; } + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; } + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.pt-3, +.py-3 { + padding-top: 1rem !important; } + +.pr-3, +.px-3 { + padding-right: 1rem !important; } + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; } + +.pl-3, +.px-3 { + padding-left: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.pt-5, +.py-5 { + padding-top: 3rem !important; } + +.pr-5, +.px-5 { + padding-right: 3rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; } + +.pl-5, +.px-5 { + padding-left: 3rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 0.25rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; } + .m-sm-2 { + margin: 0.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; } + .m-sm-3 { + margin: 1rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; } + .m-sm-4 { + margin: 1.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; } + .m-sm-5 { + margin: 3rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 0.25rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; } + .p-sm-2 { + padding: 0.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; } + .p-sm-3 { + padding: 1rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; } + .p-sm-4 { + padding: 1.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; } + .p-sm-5 { + padding: 3rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 0.25rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; } + .m-md-2 { + margin: 0.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; } + .m-md-3 { + margin: 1rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; } + .m-md-4 { + margin: 1.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; } + .m-md-5 { + margin: 3rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 0.25rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; } + .p-md-2 { + padding: 0.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; } + .p-md-3 { + padding: 1rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; } + .p-md-4 { + padding: 1.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; } + .p-md-5 { + padding: 3rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 0.25rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; } + .m-lg-2 { + margin: 0.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; } + .m-lg-3 { + margin: 1rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; } + .m-lg-4 { + margin: 1.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; } + .m-lg-5 { + margin: 3rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 0.25rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; } + .p-lg-2 { + padding: 0.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; } + .p-lg-3 { + padding: 1rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; } + .p-lg-4 { + padding: 1.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; } + .p-lg-5 { + padding: 3rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 0.25rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; } + .m-xl-2 { + margin: 0.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; } + .m-xl-3 { + margin: 1rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; } + .m-xl-4 { + margin: 1.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; } + .m-xl-5 { + margin: 3rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 0.25rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; } + .p-xl-2 { + padding: 0.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; } + .p-xl-3 { + padding: 1rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; } + .p-xl-4 { + padding: 1.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; } + .p-xl-5 { + padding: 3rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.text-justify { + text-align: justify !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light { + font-weight: 300 !important; } + +.font-weight-normal { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #fff !important; } + +.text-primary { + color: #20a8d8 !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #1985ac !important; } + +.text-secondary { + color: #a4b7c1 !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #869fac !important; } + +.text-success { + color: #4dbd74 !important; } + +a.text-success:hover, a.text-success:focus { + color: #3a9d5d !important; } + +.text-info { + color: #63c2de !important; } + +a.text-info:hover, a.text-info:focus { + color: #39b2d5 !important; } + +.text-warning { + color: #ffc107 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #d39e00 !important; } + +.text-danger { + color: #f86c6b !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #f63c3a !important; } + +.text-light { + color: #f0f3f5 !important; } + +a.text-light:hover, a.text-light:focus { + color: #d1dbe1 !important; } + +.text-dark { + color: #29363d !important; } + +a.text-dark:hover, a.text-dark:focus { + color: #151b1f !important; } + +.text-muted { + color: #536c79 !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; } + a:not(.btn) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #000; } + .table { + border-collapse: collapse !important; } + .table td, + .table th { + background-color: #fff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; } } + +.animated { + animation-duration: 1s; } + +.animated.infinite { + animation-iteration-count: infinite; } + +.animated.hinge { + animation-duration: 2s; } + +@keyframes fadeIn { + from { + opacity: 0; } + to { + opacity: 1; } } + +.fadeIn { + animation-name: fadeIn; } + +.ps { + overflow: hidden !important; + -ms-touch-action: auto; + touch-action: auto; + -ms-overflow-style: none; + overflow-anchor: none; } + +.ps__rail-x { + position: absolute; + bottom: 0; + display: none; + height: 15px; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; } + +.ps__rail-y { + position: absolute; + right: 0; + display: none; + width: 15px; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; } + +.ps--active-x > .ps__rail-x, +.ps--active-y > .ps__rail-y { + display: block; + background-color: transparent; } + +.ps:hover > .ps__rail-x, +.ps:hover > .ps__rail-y, +.ps--focus > .ps__rail-x, +.ps--focus > .ps__rail-y, +.ps--scrolling-x > .ps__rail-x, +.ps--scrolling-y > .ps__rail-y { + opacity: .6; } + +.ps__rail-x:hover, +.ps__rail-y:hover, +.ps__rail-x:focus, +.ps__rail-y:focus { + background-color: #eee; + opacity: .9; } + +/* + * Scrollbar thumb styles + */ +.ps__thumb-x { + position: absolute; + bottom: 2px; + height: 6px; + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, height .2s ease-in-out; } + +.ps__thumb-y { + position: absolute; + right: 2px; + width: 6px; + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, width .2s ease-in-out; } + +.ps__rail-x:hover > .ps__thumb-x, +.ps__rail-x:focus > .ps__thumb-x { + height: 11px; + background-color: #999; } + +.ps__rail-y:hover > .ps__thumb-y, +.ps__rail-y:focus > .ps__thumb-y { + width: 11px; + background-color: #999; } + +@supports (-ms-overflow-style: none) { + .ps { + overflow: auto !important; } } + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ps { + overflow: auto !important; } } + +.aside-menu { + z-index: 1019; + width: 250px; + color: #29363d; + background: #fff; + border-left: 1px solid #c2cfd6; } + .aside-menu .nav-tabs { + border-color: #c2cfd6; } + .aside-menu .nav-tabs .nav-link { + padding: 0.75rem 1rem; + color: #151b1e; + border-top: 0; } + .aside-menu .nav-tabs .nav-link.active { + color: #20a8d8; + border-right-color: #c2cfd6; + border-left-color: #c2cfd6; } + .aside-menu .nav-tabs .nav-item:first-child .nav-link { + border-left: 0; } + .aside-menu .tab-content { + position: relative; + overflow-x: hidden; + overflow-y: auto; + border: 0; + border-top: 1px solid #c2cfd6; + -ms-overflow-style: -ms-autohiding-scrollbar; } + .aside-menu .tab-content::-webkit-scrollbar { + width: 10px; + margin-left: -10px; + appearance: none; } + .aside-menu .tab-content::-webkit-scrollbar-track { + background-color: white; + border-right: 1px solid #f2f2f2; + border-left: 1px solid #f2f2f2; } + .aside-menu .tab-content::-webkit-scrollbar-thumb { + height: 50px; + background-color: #e6e6e6; + background-clip: content-box; + border-color: transparent; + border-style: solid; + border-width: 1px 2px; } + .aside-menu .tab-content .tab-pane { + padding: 0; } + +.img-avatar { + border-radius: 50em; } + +.avatar { + position: relative; + display: inline-block; + width: 36px; } + .avatar .img-avatar { + width: 36px; + height: 36px; } + .avatar .avatar-status { + position: absolute; + right: 0; + bottom: 0; + display: block; + width: 10px; + height: 10px; + border: 1px solid #fff; + border-radius: 50em; } + +.avatar.avatar-xs { + position: relative; + display: inline-block; + width: 20px; } + .avatar.avatar-xs .img-avatar { + width: 20px; + height: 20px; } + .avatar.avatar-xs .avatar-status { + position: absolute; + right: 0; + bottom: 0; + display: block; + width: 8px; + height: 8px; + border: 1px solid #fff; + border-radius: 50em; } + +.avatar.avatar-sm { + position: relative; + display: inline-block; + width: 24px; } + .avatar.avatar-sm .img-avatar { + width: 24px; + height: 24px; } + .avatar.avatar-sm .avatar-status { + position: absolute; + right: 0; + bottom: 0; + display: block; + width: 8px; + height: 8px; + border: 1px solid #fff; + border-radius: 50em; } + +.avatar.avatar-lg { + position: relative; + display: inline-block; + width: 72px; } + .avatar.avatar-lg .img-avatar { + width: 72px; + height: 72px; } + .avatar.avatar-lg .avatar-status { + position: absolute; + right: 0; + bottom: 0; + display: block; + width: 12px; + height: 12px; + border: 1px solid #fff; + border-radius: 50em; } + +.avatars-stack .avatar.avatar-xs { + margin-right: -10px; } + +.avatars-stack .avatar { + margin-right: -15px; + transition: margin-left 0.25s, margin-right 0.25s; } + .avatars-stack .avatar:hover { + margin-right: 0; } + +.badge-pill { + border-radius: 10rem; } + +.breadcrumb-menu { + margin-left: auto; } + .breadcrumb-menu::before { + display: none; } + .breadcrumb-menu .btn-group { + vertical-align: top; } + .breadcrumb-menu .btn { + padding: 0 0.75rem; + color: #536c79; + vertical-align: top; + border: 0; } + .breadcrumb-menu .btn:hover, .breadcrumb-menu .btn.active { + color: #151b1e; + background: transparent; } + .breadcrumb-menu .open .btn { + color: #151b1e; + background: transparent; } + .breadcrumb-menu .dropdown-menu { + min-width: 180px; + line-height: 1.5; } + +*[dir="rtl"] .breadcrumb-menu { + margin-right: auto; + margin-left: initial; } + +.breadcrumb { + position: relative; + border-bottom: 1px solid #c2cfd6; } + +.brand-card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + margin-bottom: 1.5rem; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid #c2cfd6; } + +.brand-card-header { + position: relative; + display: flex; + align-items: center; + justify-content: center; + height: 6rem; } + .brand-card-header i { + font-size: 2rem; + color: #fff; } + .brand-card-header .chart-wrapper { + position: absolute; + top: 0; + width: 100%; + height: 100%; } + +.brand-card-body { + display: flex; + flex-direction: row; + padding: 0.75rem 0; + text-align: center; } + .brand-card-body > * { + flex: 1; + padding: 0.1875rem 0; } + .brand-card-body > *:not(:last-child) { + border-right: 1px solid #c2cfd6; } + +*[dir="rtl"] .brand-card-body > *:not(:last-child) { + border-right: 0; + border-left: 1px solid #c2cfd6; } + +.btn-brand { + border: 0; } + .btn-brand i { + display: inline-block; + width: 2.0625rem; + margin: -0.375rem -0.75rem; + line-height: 2.0625rem; + text-align: center; + background-color: rgba(0, 0, 0, 0.2); } + .btn-brand i + span { + margin-left: 1.5rem; } + .btn-brand.btn-lg i, .btn-group-lg > .btn-brand.btn i { + width: 2.64063rem; + margin: -0.5rem -1rem; + line-height: 2.64063rem; } + .btn-brand.btn-lg i + span, .btn-group-lg > .btn-brand.btn i + span { + margin-left: 2rem; } + .btn-brand.btn-sm i, .btn-group-sm > .btn-brand.btn i { + width: 1.64844rem; + margin: -0.25rem -0.5rem; + line-height: 1.64844rem; } + .btn-brand.btn-sm i + span, .btn-group-sm > .btn-brand.btn i + span { + margin-left: 1rem; } + +.btn-facebook { + color: #fff; + background-color: #3b5998; + border-color: #3b5998; } + .btn-facebook:hover { + color: #fff; + background-color: #30497c; + border-color: #2d4373; } + .btn-facebook:focus, .btn-facebook.focus { + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } + .btn-facebook.disabled, .btn-facebook:disabled { + color: #fff; + background-color: #3b5998; + border-color: #3b5998; } + .btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, + .show > .btn-facebook.dropdown-toggle { + color: #fff; + background-color: #2d4373; + border-color: #293e6a; } + .btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, + .show > .btn-facebook.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.5); } + +.btn-twitter { + color: #fff; + background-color: #00aced; + border-color: #00aced; } + .btn-twitter:hover { + color: #fff; + background-color: #0090c7; + border-color: #0087ba; } + .btn-twitter:focus, .btn-twitter.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } + .btn-twitter.disabled, .btn-twitter:disabled { + color: #fff; + background-color: #00aced; + border-color: #00aced; } + .btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active, + .show > .btn-twitter.dropdown-toggle { + color: #fff; + background-color: #0087ba; + border-color: #007ead; } + .btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, + .show > .btn-twitter.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 172, 237, 0.5); } + +.btn-linkedin { + color: #fff; + background-color: #4875b4; + border-color: #4875b4; } + .btn-linkedin:hover { + color: #fff; + background-color: #3d6399; + border-color: #395d90; } + .btn-linkedin:focus, .btn-linkedin.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } + .btn-linkedin.disabled, .btn-linkedin:disabled { + color: #fff; + background-color: #4875b4; + border-color: #4875b4; } + .btn-linkedin:not(:disabled):not(.disabled):active, .btn-linkedin:not(:disabled):not(.disabled).active, + .show > .btn-linkedin.dropdown-toggle { + color: #fff; + background-color: #395d90; + border-color: #365786; } + .btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, + .show > .btn-linkedin.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 117, 180, 0.5); } + +.btn-google-plus { + color: #fff; + background-color: #d34836; + border-color: #d34836; } + .btn-google-plus:hover { + color: #fff; + background-color: #ba3929; + border-color: #b03626; } + .btn-google-plus:focus, .btn-google-plus.focus { + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } + .btn-google-plus.disabled, .btn-google-plus:disabled { + color: #fff; + background-color: #d34836; + border-color: #d34836; } + .btn-google-plus:not(:disabled):not(.disabled):active, .btn-google-plus:not(:disabled):not(.disabled).active, + .show > .btn-google-plus.dropdown-toggle { + color: #fff; + background-color: #b03626; + border-color: #a53324; } + .btn-google-plus:not(:disabled):not(.disabled):active:focus, .btn-google-plus:not(:disabled):not(.disabled).active:focus, + .show > .btn-google-plus.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(211, 72, 54, 0.5); } + +.btn-flickr { + color: #fff; + background-color: #ff0084; + border-color: #ff0084; } + .btn-flickr:hover { + color: #fff; + background-color: #d90070; + border-color: #cc006a; } + .btn-flickr:focus, .btn-flickr.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } + .btn-flickr.disabled, .btn-flickr:disabled { + color: #fff; + background-color: #ff0084; + border-color: #ff0084; } + .btn-flickr:not(:disabled):not(.disabled):active, .btn-flickr:not(:disabled):not(.disabled).active, + .show > .btn-flickr.dropdown-toggle { + color: #fff; + background-color: #cc006a; + border-color: #bf0063; } + .btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus, + .show > .btn-flickr.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 0, 132, 0.5); } + +.btn-tumblr { + color: #fff; + background-color: #32506d; + border-color: #32506d; } + .btn-tumblr:hover { + color: #fff; + background-color: #263d53; + border-color: #22364a; } + .btn-tumblr:focus, .btn-tumblr.focus { + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } + .btn-tumblr.disabled, .btn-tumblr:disabled { + color: #fff; + background-color: #32506d; + border-color: #32506d; } + .btn-tumblr:not(:disabled):not(.disabled):active, .btn-tumblr:not(:disabled):not(.disabled).active, + .show > .btn-tumblr.dropdown-toggle { + color: #fff; + background-color: #22364a; + border-color: #1e3041; } + .btn-tumblr:not(:disabled):not(.disabled):active:focus, .btn-tumblr:not(:disabled):not(.disabled).active:focus, + .show > .btn-tumblr.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(50, 80, 109, 0.5); } + +.btn-xing { + color: #fff; + background-color: #026466; + border-color: #026466; } + .btn-xing:hover { + color: #fff; + background-color: #013f40; + border-color: #013334; } + .btn-xing:focus, .btn-xing.focus { + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } + .btn-xing.disabled, .btn-xing:disabled { + color: #fff; + background-color: #026466; + border-color: #026466; } + .btn-xing:not(:disabled):not(.disabled):active, .btn-xing:not(:disabled):not(.disabled).active, + .show > .btn-xing.dropdown-toggle { + color: #fff; + background-color: #013334; + border-color: #012727; } + .btn-xing:not(:disabled):not(.disabled):active:focus, .btn-xing:not(:disabled):not(.disabled).active:focus, + .show > .btn-xing.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(2, 100, 102, 0.5); } + +.btn-github { + color: #fff; + background-color: #4183c4; + border-color: #4183c4; } + .btn-github:hover { + color: #fff; + background-color: #3570aa; + border-color: #3269a0; } + .btn-github:focus, .btn-github.focus { + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } + .btn-github.disabled, .btn-github:disabled { + color: #fff; + background-color: #4183c4; + border-color: #4183c4; } + .btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active, + .show > .btn-github.dropdown-toggle { + color: #fff; + background-color: #3269a0; + border-color: #2f6397; } + .btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus, + .show > .btn-github.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(65, 131, 196, 0.5); } + +.btn-html5 { + color: #fff; + background-color: #e34f26; + border-color: #e34f26; } + .btn-html5:hover { + color: #fff; + background-color: #c9401a; + border-color: #be3c18; } + .btn-html5:focus, .btn-html5.focus { + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } + .btn-html5.disabled, .btn-html5:disabled { + color: #fff; + background-color: #e34f26; + border-color: #e34f26; } + .btn-html5:not(:disabled):not(.disabled):active, .btn-html5:not(:disabled):not(.disabled).active, + .show > .btn-html5.dropdown-toggle { + color: #fff; + background-color: #be3c18; + border-color: #b23917; } + .btn-html5:not(:disabled):not(.disabled):active:focus, .btn-html5:not(:disabled):not(.disabled).active:focus, + .show > .btn-html5.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(227, 79, 38, 0.5); } + +.btn-openid { + color: #151b1e; + background-color: #f78c40; + border-color: #f78c40; } + .btn-openid:hover { + color: #fff; + background-color: #f5761b; + border-color: #f56f0f; } + .btn-openid:focus, .btn-openid.focus { + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } + .btn-openid.disabled, .btn-openid:disabled { + color: #151b1e; + background-color: #f78c40; + border-color: #f78c40; } + .btn-openid:not(:disabled):not(.disabled):active, .btn-openid:not(:disabled):not(.disabled).active, + .show > .btn-openid.dropdown-toggle { + color: #fff; + background-color: #f56f0f; + border-color: #ed680a; } + .btn-openid:not(:disabled):not(.disabled):active:focus, .btn-openid:not(:disabled):not(.disabled).active:focus, + .show > .btn-openid.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(247, 140, 64, 0.5); } + +.btn-stack-overflow { + color: #fff; + background-color: #fe7a15; + border-color: #fe7a15; } + .btn-stack-overflow:hover { + color: #fff; + background-color: #ec6701; + border-color: #df6101; } + .btn-stack-overflow:focus, .btn-stack-overflow.focus { + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } + .btn-stack-overflow.disabled, .btn-stack-overflow:disabled { + color: #fff; + background-color: #fe7a15; + border-color: #fe7a15; } + .btn-stack-overflow:not(:disabled):not(.disabled):active, .btn-stack-overflow:not(:disabled):not(.disabled).active, + .show > .btn-stack-overflow.dropdown-toggle { + color: #fff; + background-color: #df6101; + border-color: #d25c01; } + .btn-stack-overflow:not(:disabled):not(.disabled):active:focus, .btn-stack-overflow:not(:disabled):not(.disabled).active:focus, + .show > .btn-stack-overflow.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(254, 122, 21, 0.5); } + +.btn-youtube { + color: #fff; + background-color: #b00; + border-color: #b00; } + .btn-youtube:hover { + color: #fff; + background-color: #950000; + border-color: #880000; } + .btn-youtube:focus, .btn-youtube.focus { + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } + .btn-youtube.disabled, .btn-youtube:disabled { + color: #fff; + background-color: #b00; + border-color: #b00; } + .btn-youtube:not(:disabled):not(.disabled):active, .btn-youtube:not(:disabled):not(.disabled).active, + .show > .btn-youtube.dropdown-toggle { + color: #fff; + background-color: #880000; + border-color: #7b0000; } + .btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus, + .show > .btn-youtube.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(187, 0, 0, 0.5); } + +.btn-css3 { + color: #fff; + background-color: #0170ba; + border-color: #0170ba; } + .btn-css3:hover { + color: #fff; + background-color: #015994; + border-color: #015187; } + .btn-css3:focus, .btn-css3.focus { + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } + .btn-css3.disabled, .btn-css3:disabled { + color: #fff; + background-color: #0170ba; + border-color: #0170ba; } + .btn-css3:not(:disabled):not(.disabled):active, .btn-css3:not(:disabled):not(.disabled).active, + .show > .btn-css3.dropdown-toggle { + color: #fff; + background-color: #015187; + border-color: #014a7b; } + .btn-css3:not(:disabled):not(.disabled):active:focus, .btn-css3:not(:disabled):not(.disabled).active:focus, + .show > .btn-css3.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(1, 112, 186, 0.5); } + +.btn-dribbble { + color: #fff; + background-color: #ea4c89; + border-color: #ea4c89; } + .btn-dribbble:hover { + color: #fff; + background-color: #e62a72; + border-color: #e51e6b; } + .btn-dribbble:focus, .btn-dribbble.focus { + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } + .btn-dribbble.disabled, .btn-dribbble:disabled { + color: #fff; + background-color: #ea4c89; + border-color: #ea4c89; } + .btn-dribbble:not(:disabled):not(.disabled):active, .btn-dribbble:not(:disabled):not(.disabled).active, + .show > .btn-dribbble.dropdown-toggle { + color: #fff; + background-color: #e51e6b; + border-color: #dc1a65; } + .btn-dribbble:not(:disabled):not(.disabled):active:focus, .btn-dribbble:not(:disabled):not(.disabled).active:focus, + .show > .btn-dribbble.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(234, 76, 137, 0.5); } + +.btn-instagram { + color: #fff; + background-color: #517fa4; + border-color: #517fa4; } + .btn-instagram:hover { + color: #fff; + background-color: #446b8a; + border-color: #406582; } + .btn-instagram:focus, .btn-instagram.focus { + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } + .btn-instagram.disabled, .btn-instagram:disabled { + color: #fff; + background-color: #517fa4; + border-color: #517fa4; } + .btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active, + .show > .btn-instagram.dropdown-toggle { + color: #fff; + background-color: #406582; + border-color: #3c5e79; } + .btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, + .show > .btn-instagram.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(81, 127, 164, 0.5); } + +.btn-pinterest { + color: #fff; + background-color: #cb2027; + border-color: #cb2027; } + .btn-pinterest:hover { + color: #fff; + background-color: #aa1b21; + border-color: #9f191f; } + .btn-pinterest:focus, .btn-pinterest.focus { + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } + .btn-pinterest.disabled, .btn-pinterest:disabled { + color: #fff; + background-color: #cb2027; + border-color: #cb2027; } + .btn-pinterest:not(:disabled):not(.disabled):active, .btn-pinterest:not(:disabled):not(.disabled).active, + .show > .btn-pinterest.dropdown-toggle { + color: #fff; + background-color: #9f191f; + border-color: #94171c; } + .btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, + .show > .btn-pinterest.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(203, 32, 39, 0.5); } + +.btn-vk { + color: #fff; + background-color: #45668e; + border-color: #45668e; } + .btn-vk:hover { + color: #fff; + background-color: #385474; + border-color: #344d6c; } + .btn-vk:focus, .btn-vk.focus { + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } + .btn-vk.disabled, .btn-vk:disabled { + color: #fff; + background-color: #45668e; + border-color: #45668e; } + .btn-vk:not(:disabled):not(.disabled):active, .btn-vk:not(:disabled):not(.disabled).active, + .show > .btn-vk.dropdown-toggle { + color: #fff; + background-color: #344d6c; + border-color: #304763; } + .btn-vk:not(:disabled):not(.disabled):active:focus, .btn-vk:not(:disabled):not(.disabled).active:focus, + .show > .btn-vk.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(69, 102, 142, 0.5); } + +.btn-yahoo { + color: #fff; + background-color: #400191; + border-color: #400191; } + .btn-yahoo:hover { + color: #fff; + background-color: #2f016b; + border-color: #2a015e; } + .btn-yahoo:focus, .btn-yahoo.focus { + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } + .btn-yahoo.disabled, .btn-yahoo:disabled { + color: #fff; + background-color: #400191; + border-color: #400191; } + .btn-yahoo:not(:disabled):not(.disabled):active, .btn-yahoo:not(:disabled):not(.disabled).active, + .show > .btn-yahoo.dropdown-toggle { + color: #fff; + background-color: #2a015e; + border-color: #240152; } + .btn-yahoo:not(:disabled):not(.disabled):active:focus, .btn-yahoo:not(:disabled):not(.disabled).active:focus, + .show > .btn-yahoo.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(64, 1, 145, 0.5); } + +.btn-behance { + color: #fff; + background-color: #1769ff; + border-color: #1769ff; } + .btn-behance:hover { + color: #fff; + background-color: #0055f0; + border-color: #0050e3; } + .btn-behance:focus, .btn-behance.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } + .btn-behance.disabled, .btn-behance:disabled { + color: #fff; + background-color: #1769ff; + border-color: #1769ff; } + .btn-behance:not(:disabled):not(.disabled):active, .btn-behance:not(:disabled):not(.disabled).active, + .show > .btn-behance.dropdown-toggle { + color: #fff; + background-color: #0050e3; + border-color: #004cd6; } + .btn-behance:not(:disabled):not(.disabled):active:focus, .btn-behance:not(:disabled):not(.disabled).active:focus, + .show > .btn-behance.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 105, 255, 0.5); } + +.btn-dropbox { + color: #fff; + background-color: #007ee5; + border-color: #007ee5; } + .btn-dropbox:hover { + color: #fff; + background-color: #0069bf; + border-color: #0062b2; } + .btn-dropbox:focus, .btn-dropbox.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } + .btn-dropbox.disabled, .btn-dropbox:disabled { + color: #fff; + background-color: #007ee5; + border-color: #007ee5; } + .btn-dropbox:not(:disabled):not(.disabled):active, .btn-dropbox:not(:disabled):not(.disabled).active, + .show > .btn-dropbox.dropdown-toggle { + color: #fff; + background-color: #0062b2; + border-color: #005ba5; } + .btn-dropbox:not(:disabled):not(.disabled):active:focus, .btn-dropbox:not(:disabled):not(.disabled).active:focus, + .show > .btn-dropbox.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 126, 229, 0.5); } + +.btn-reddit { + color: #fff; + background-color: #ff4500; + border-color: #ff4500; } + .btn-reddit:hover { + color: #fff; + background-color: #d93b00; + border-color: #cc3700; } + .btn-reddit:focus, .btn-reddit.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } + .btn-reddit.disabled, .btn-reddit:disabled { + color: #fff; + background-color: #ff4500; + border-color: #ff4500; } + .btn-reddit:not(:disabled):not(.disabled):active, .btn-reddit:not(:disabled):not(.disabled).active, + .show > .btn-reddit.dropdown-toggle { + color: #fff; + background-color: #cc3700; + border-color: #bf3400; } + .btn-reddit:not(:disabled):not(.disabled):active:focus, .btn-reddit:not(:disabled):not(.disabled).active:focus, + .show > .btn-reddit.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.5); } + +.btn-spotify { + color: #fff; + background-color: #7ab800; + border-color: #7ab800; } + .btn-spotify:hover { + color: #fff; + background-color: #619200; + border-color: #588500; } + .btn-spotify:focus, .btn-spotify.focus { + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } + .btn-spotify.disabled, .btn-spotify:disabled { + color: #fff; + background-color: #7ab800; + border-color: #7ab800; } + .btn-spotify:not(:disabled):not(.disabled):active, .btn-spotify:not(:disabled):not(.disabled).active, + .show > .btn-spotify.dropdown-toggle { + color: #fff; + background-color: #588500; + border-color: #507800; } + .btn-spotify:not(:disabled):not(.disabled):active:focus, .btn-spotify:not(:disabled):not(.disabled).active:focus, + .show > .btn-spotify.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(122, 184, 0, 0.5); } + +.btn-vine { + color: #fff; + background-color: #00bf8f; + border-color: #00bf8f; } + .btn-vine:hover { + color: #fff; + background-color: #009972; + border-color: #008c69; } + .btn-vine:focus, .btn-vine.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } + .btn-vine.disabled, .btn-vine:disabled { + color: #fff; + background-color: #00bf8f; + border-color: #00bf8f; } + .btn-vine:not(:disabled):not(.disabled):active, .btn-vine:not(:disabled):not(.disabled).active, + .show > .btn-vine.dropdown-toggle { + color: #fff; + background-color: #008c69; + border-color: #007f5f; } + .btn-vine:not(:disabled):not(.disabled):active:focus, .btn-vine:not(:disabled):not(.disabled).active:focus, + .show > .btn-vine.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 191, 143, 0.5); } + +.btn-foursquare { + color: #fff; + background-color: #1073af; + border-color: #1073af; } + .btn-foursquare:hover { + color: #fff; + background-color: #0d5c8c; + border-color: #0c5480; } + .btn-foursquare:focus, .btn-foursquare.focus { + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } + .btn-foursquare.disabled, .btn-foursquare:disabled { + color: #fff; + background-color: #1073af; + border-color: #1073af; } + .btn-foursquare:not(:disabled):not(.disabled):active, .btn-foursquare:not(:disabled):not(.disabled).active, + .show > .btn-foursquare.dropdown-toggle { + color: #fff; + background-color: #0c5480; + border-color: #0b4d75; } + .btn-foursquare:not(:disabled):not(.disabled):active:focus, .btn-foursquare:not(:disabled):not(.disabled).active:focus, + .show > .btn-foursquare.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(16, 115, 175, 0.5); } + +.btn-vimeo { + color: #151b1e; + background-color: #aad450; + border-color: #aad450; } + .btn-vimeo:hover { + color: #151b1e; + background-color: #9bcc32; + border-color: #93c130; } + .btn-vimeo:focus, .btn-vimeo.focus { + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); } + .btn-vimeo.disabled, .btn-vimeo:disabled { + color: #151b1e; + background-color: #aad450; + border-color: #aad450; } + .btn-vimeo:not(:disabled):not(.disabled):active, .btn-vimeo:not(:disabled):not(.disabled).active, + .show > .btn-vimeo.dropdown-toggle { + color: #151b1e; + background-color: #93c130; + border-color: #8bb72d; } + .btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus, + .show > .btn-vimeo.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(170, 212, 80, 0.5); } + +button { + cursor: pointer; } + +.btn-transparent { + color: #fff; + background-color: transparent; + border-color: transparent; } + +.btn [class^="icon-"], +.btn [class*=" icon-"] { + display: inline-block; + margin-top: -2px; + vertical-align: middle; } + +.callout { + position: relative; + padding: 0 1rem; + margin: 1rem 0; + border-left: 4px solid #c2cfd6; } + .callout .chart-wrapper { + position: absolute; + top: 10px; + left: 50%; + float: right; + width: 50%; } + +.callout-bordered { + border: 1px solid #c2cfd6; + border-left-width: 4px; } + +.callout code { + border-radius: 0.25rem; } + +.callout h4 { + margin-top: 0; + margin-bottom: .25rem; } + +.callout p:last-child { + margin-bottom: 0; } + +.callout + .callout { + margin-top: -0.25rem; } + +.callout-primary { + border-left-color: #20a8d8; } + .callout-primary h4 { + color: #20a8d8; } + +.callout-secondary { + border-left-color: #a4b7c1; } + .callout-secondary h4 { + color: #a4b7c1; } + +.callout-success { + border-left-color: #4dbd74; } + .callout-success h4 { + color: #4dbd74; } + +.callout-info { + border-left-color: #63c2de; } + .callout-info h4 { + color: #63c2de; } + +.callout-warning { + border-left-color: #ffc107; } + .callout-warning h4 { + color: #ffc107; } + +.callout-danger { + border-left-color: #f86c6b; } + .callout-danger h4 { + color: #f86c6b; } + +.callout-light { + border-left-color: #f0f3f5; } + .callout-light h4 { + color: #f0f3f5; } + +.callout-dark { + border-left-color: #29363d; } + .callout-dark h4 { + color: #29363d; } + +*[dir="rtl"] .callout { + border-right: 4px solid #c2cfd6; + border-left: 0; } + *[dir="rtl"] .callout.callout-primary { + border-right-color: #20a8d8; } + *[dir="rtl"] .callout.callout-secondary { + border-right-color: #a4b7c1; } + *[dir="rtl"] .callout.callout-success { + border-right-color: #4dbd74; } + *[dir="rtl"] .callout.callout-info { + border-right-color: #63c2de; } + *[dir="rtl"] .callout.callout-warning { + border-right-color: #ffc107; } + *[dir="rtl"] .callout.callout-danger { + border-right-color: #f86c6b; } + *[dir="rtl"] .callout.callout-light { + border-right-color: #f0f3f5; } + *[dir="rtl"] .callout.callout-dark { + border-right-color: #29363d; } + *[dir="rtl"] .callout .chart-wrapper { + left: 0; + float: left; } + +.card { + margin-bottom: 1.5rem; } + .card.bg-primary { + border-color: #187da0; } + .card.bg-primary .card-header { + background-color: #1e9ecb; + border-color: #187da0; } + .card.bg-secondary { + border-color: #7e99a7; } + .card.bg-secondary .card-header { + background-color: #9bb0bb; + border-color: #7e99a7; } + .card.bg-success { + border-color: #379457; } + .card.bg-success .card-header { + background-color: #44b76c; + border-color: #379457; } + .card.bg-info { + border-color: #2eadd3; } + .card.bg-info .card-header { + background-color: #56bddb; + border-color: #2eadd3; } + .card.bg-warning { + border-color: #c69500; } + .card.bg-warning .card-header { + background-color: #f7b900; + border-color: #c69500; } + .card.bg-danger { + border-color: #f5302e; } + .card.bg-danger .card-header { + background-color: #f75d5c; + border-color: #f5302e; } + .card.bg-light { + border-color: #cad4dc; } + .card.bg-light .card-header { + background-color: #e7ecef; + border-color: #cad4dc; } + .card.bg-dark { + border-color: #0f1417; } + .card.bg-dark .card-header { + background-color: #232e34; + border-color: #0f1417; } + .card.drag, + .card .drag { + cursor: move; } + +.card-placeholder { + background: rgba(0, 0, 0, 0.025); + border: 1px dashed #a4b7c1; } + +.card-header > i { + margin-right: 0.5rem; } + +.card-header .nav-tabs { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + border-bottom: 0; } + .card-header .nav-tabs .nav-item { + border-top: 0; } + .card-header .nav-tabs .nav-link { + padding: 0.75rem 0.625rem; + color: #536c79; + border-top: 0; } + .card-header .nav-tabs .nav-link.active { + color: #151b1e; + background: #fff; } + +.card-header-icon-bg { + display: inline-block; + width: 2.8125rem; + padding: 0.75rem 0; + margin: -0.75rem 1.25rem -0.75rem -1.25rem; + line-height: inherit; + color: #151b1e; + text-align: center; + background: transparent; + border-right: 1px solid #c2cfd6; } + +.card-header-actions { + position: absolute; + top: 0; + right: 0; + display: inline-flex; } + +.card-header-action { + width: 2.8125rem; + padding: 0.75rem 0; + color: #151b1e; + text-align: center; + border-left: 1px solid #c2cfd6; } + .card-header-action:hover { + text-decoration: none; } + +.card-accent-primary { + border-top-color: #20a8d8; + border-top-width: 2px; } + +.card-accent-secondary { + border-top-color: #a4b7c1; + border-top-width: 2px; } + +.card-accent-success { + border-top-color: #4dbd74; + border-top-width: 2px; } + +.card-accent-info { + border-top-color: #63c2de; + border-top-width: 2px; } + +.card-accent-warning { + border-top-color: #ffc107; + border-top-width: 2px; } + +.card-accent-danger { + border-top-color: #f86c6b; + border-top-width: 2px; } + +.card-accent-light { + border-top-color: #f0f3f5; + border-top-width: 2px; } + +.card-accent-dark { + border-top-color: #29363d; + border-top-width: 2px; } + +.card-full { + margin-top: -1rem; + margin-right: -15px; + margin-left: -15px; + border: 0; + border-bottom: 1px solid #c2cfd6; } + +@media (min-width: 576px) { + .card-columns.cols-2 { + column-count: 2; } } + +.chart-wrapper canvas { + width: 100%; } + +base-chart.chart { + display: block; } + +canvas { + user-select: none; } + +.chartjs-tooltip { + position: absolute; + z-index: 1021; + display: flex; + flex-direction: column; + padding: 0.25rem 0.5rem; + color: #fff; + pointer-events: none; + background: rgba(0, 0, 0, 0.7); + border-radius: 0.25rem; + opacity: 0; + transition: all .1s ease; + transform: translate(-50%, 0); } + .chartjs-tooltip .tooltip-header { + margin-bottom: 0.5rem; } + .chartjs-tooltip .tooltip-header-item { + font-size: 0.76563rem; + font-weight: 700; } + .chartjs-tooltip .tooltip-body-item { + display: flex; + align-items: center; + font-size: 0.76563rem; + white-space: nowrap; } + +.chartjs-tooltip-key { + display: inline-block; + width: 0.875rem; + height: 0.875rem; + margin-right: 0.875rem; } + +.dropdown-item { + position: relative; + padding: 10px 20px; + border-bottom: 1px solid #c2cfd6; } + .dropdown-item:last-child { + border-bottom: 0; } + .dropdown-item i { + display: inline-block; + width: 20px; + margin-right: 10px; + margin-left: -10px; + color: #c2cfd6; + text-align: center; } + .dropdown-item .badge { + position: absolute; + right: 10px; + margin-top: 2px; } + +.dropdown-header { + padding: 8px 20px; + background: #f0f3f5; + border-bottom: 1px solid #c2cfd6; } + .dropdown-header .btn { + margin-top: -7px; + color: #536c79; } + .dropdown-header .btn:hover { + color: #151b1e; } + .dropdown-header .btn.pull-right { + margin-right: -20px; } + +.dropdown-menu-lg { + width: 250px; } + +.app-header .navbar-nav .dropdown-menu { + position: absolute; } + +.app-header .navbar-nav .dropdown-menu-right { + right: 0; + left: auto; } + +.app-header .navbar-nav .dropdown-menu-left { + right: auto; + left: 0; } + +.app-footer { + display: flex; + flex-wrap: wrap; + align-items: center; + padding: 0 1rem; + color: #151b1e; + background: #f0f3f5; + border-top: 1px solid #c2cfd6; } + +.row.row-equal { + padding-right: 7.5px; + padding-left: 7.5px; + margin-right: -15px; + margin-left: -15px; } + .row.row-equal [class*="col-"] { + padding-right: 7.5px; + padding-left: 7.5px; } + +.main .container-fluid { + padding: 0 30px; } + +.input-group-prepend, +.input-group-append { + white-space: nowrap; + vertical-align: middle; } + +#loading-bar, +#loading-bar-spinner { + -webkit-pointer-events: none; + pointer-events: none; + -moz-transition: 350ms linear all; + -o-transition: 350ms linear all; + -webkit-transition: 350ms linear all; + transition: 350ms linear all; } + +#loading-bar.ng-enter, +#loading-bar.ng-leave.ng-leave-active, +#loading-bar-spinner.ng-enter, +#loading-bar-spinner.ng-leave.ng-leave-active { + opacity: 0; } + +#loading-bar.ng-enter.ng-enter-active, +#loading-bar.ng-leave, +#loading-bar-spinner.ng-enter.ng-enter-active, +#loading-bar-spinner.ng-leave { + opacity: 1; } + +#loading-bar .bar { + position: fixed; + top: 0; + left: 0; + z-index: 20002; + width: 100%; + height: 2px; + background: #20a8d8; + border-top-right-radius: 1px; + border-bottom-right-radius: 1px; + -moz-transition: width 350ms; + -o-transition: width 350ms; + -webkit-transition: width 350ms; + transition: width 350ms; } + +#loading-bar .peg { + position: absolute; + top: 0; + right: 0; + width: 70px; + height: 2px; + -moz-border-radius: 100%; + -webkit-border-radius: 100%; + border-radius: 100%; + -moz-box-shadow: #29d 1px 0 6px 1px; + -ms-box-shadow: #29d 1px 0 6px 1px; + -webkit-box-shadow: #29d 1px 0 6px 1px; + box-shadow: #29d 1px 0 6px 1px; + opacity: .45; } + +#loading-bar-spinner { + position: fixed; + top: 10px; + left: 10px; + z-index: 10002; + display: block; } + +#loading-bar-spinner .spinner-icon { + width: 14px; + height: 14px; + border: solid 2px transparent; + border-top-color: #29d; + border-left-color: #29d; + border-radius: 50%; + -moz-animation: loading-bar-spinner 400ms linear infinite; + -ms-animation: loading-bar-spinner 400ms linear infinite; + -o-animation: loading-bar-spinner 400ms linear infinite; + -webkit-animation: loading-bar-spinner 400ms linear infinite; + animation: loading-bar-spinner 400ms linear infinite; } + +@-webkit-keyframes loading-bar-spinner { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-moz-keyframes loading-bar-spinner { + 0% { + -moz-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -moz-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-o-keyframes loading-bar-spinner { + 0% { + -o-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -o-transform: rotate(360deg); + transform: rotate(360deg); } } + +@-ms-keyframes loading-bar-spinner { + 0% { + -ms-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -ms-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes loading-bar-spinner { + 0% { + transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + transform: rotate(360deg); + transform: rotate(360deg); } } + +.pace { + -webkit-pointer-events: none; + pointer-events: none; + -moz-user-select: none; + -webkit-user-select: none; + user-select: none; } + +.pace-inactive { + display: none; } + +.pace .pace-progress { + position: fixed; + top: 0; + right: 100%; + z-index: 2000; + width: 100%; + height: 2px; + background: #20a8d8; } + +.modal-primary .modal-content { + border-color: #20a8d8; } + +.modal-primary .modal-header { + color: #fff; + background-color: #20a8d8; } + +.modal-secondary .modal-content { + border-color: #a4b7c1; } + +.modal-secondary .modal-header { + color: #fff; + background-color: #a4b7c1; } + +.modal-success .modal-content { + border-color: #4dbd74; } + +.modal-success .modal-header { + color: #fff; + background-color: #4dbd74; } + +.modal-info .modal-content { + border-color: #63c2de; } + +.modal-info .modal-header { + color: #fff; + background-color: #63c2de; } + +.modal-warning .modal-content { + border-color: #ffc107; } + +.modal-warning .modal-header { + color: #fff; + background-color: #ffc107; } + +.modal-danger .modal-content { + border-color: #f86c6b; } + +.modal-danger .modal-header { + color: #fff; + background-color: #f86c6b; } + +.modal-light .modal-content { + border-color: #f0f3f5; } + +.modal-light .modal-header { + color: #fff; + background-color: #f0f3f5; } + +.modal-dark .modal-content { + border-color: #29363d; } + +.modal-dark .modal-header { + color: #fff; + background-color: #29363d; } + +.nav-tabs .nav-link { + color: #536c79; } + .nav-tabs .nav-link:hover { + cursor: pointer; } + .nav-tabs .nav-link.active { + color: #29363d; + background: #fff; + border-color: #c2cfd6; + border-bottom-color: #fff; } + .nav-tabs .nav-link.active:focus { + background: #fff; + border-color: #c2cfd6; + border-bottom-color: #fff; } + +.tab-content { + margin-top: -1px; + background: #fff; + border: 1px solid #c2cfd6; } + .tab-content .tab-pane { + padding: 1rem; } + +.card-block .tab-content { + margin-top: 0; + border: 0; } + +.nav-fill .nav-link { + background-color: #fff; + border-color: #c2cfd6; } + +.nav-fill .nav-link + .nav-link { + margin-left: -1px; } + +.nav-fill .nav-link.active { + margin-top: -1px; + border-top: 2px solid #20a8d8; } + +*[dir="rtl"] .nav { + padding-right: 0; } + +.app-header { + position: relative; + flex-direction: row; + height: 55px; + padding: 0; + margin: 0; + background-color: #fff; + border-bottom: 1px solid #c2cfd6; } + .app-header .navbar-brand { + display: inline-flex; + align-items: center; + justify-content: center; + width: 155px; + height: 55px; + padding: 0; + margin-right: 0; + background-color: #fff; + border-bottom: 1px solid #c2cfd6; } + .app-header .navbar-brand .navbar-brand-minimized { + display: none; } + .app-header .navbar-toggler { + min-width: 50px; + padding: 0.25rem 0; } + .app-header .navbar-toggler:hover .navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2329363d' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + .app-header .navbar-toggler-icon { + height: 23px; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23536c79' stroke-width='2.25' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } + .app-header .navbar-nav { + flex-direction: row; + align-items: center; } + .app-header .nav-item { + position: relative; + min-width: 50px; + margin: 0; + text-align: center; } + .app-header .nav-item button { + margin: 0 auto; } + .app-header .nav-item .nav-link { + padding-top: 0; + padding-bottom: 0; + background: 0; + border: 0; } + .app-header .nav-item .nav-link .badge { + position: absolute; + top: 50%; + left: 50%; + margin-top: -16px; + margin-left: 0; } + .app-header .nav-item .nav-link > .img-avatar { + height: 35px; + margin: 0 10px; } + .app-header .dropdown-menu { + padding-bottom: 0; + line-height: 1.5; } + .app-header .dropdown-item { + min-width: 180px; } + +.navbar-nav .nav-link { + color: #536c79; } + .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus { + color: #29363d; } + +.navbar-nav .open > .nav-link, .navbar-nav .open > .nav-link:hover, .navbar-nav .open > .nav-link:focus, +.navbar-nav .active > .nav-link, +.navbar-nav .active > .nav-link:hover, +.navbar-nav .active > .nav-link:focus, +.navbar-nav .nav-link.open, +.navbar-nav .nav-link.open:hover, +.navbar-nav .nav-link.open:focus, +.navbar-nav .nav-link.active, +.navbar-nav .nav-link.active:hover, +.navbar-nav .nav-link.active:focus { + color: #29363d; } + +.navbar-divider { + background-color: rgba(0, 0, 0, 0.075); } + +@media (min-width: 992px) { + .brand-minimized .app-header .navbar-brand { + width: 50px; + background-color: #fff; + border-bottom: 1px solid #c2cfd6; } + .brand-minimized .app-header .navbar-brand .navbar-brand-full { + display: none; } + .brand-minimized .app-header .navbar-brand .navbar-brand-minimized { + display: block; } } + +.progress-xs { + height: 4px; } + +.progress-sm { + height: 8px; } + +.progress-white { + background-color: rgba(255, 255, 255, 0.2); } + .progress-white .progress-bar { + background-color: #fff; } + +.progress-group { + display: flex; + flex-flow: row wrap; + margin-bottom: 1rem; } + +.progress-group-prepend { + flex: 0 0 100px; + align-self: center; } + +.progress-group-icon { + margin: 0 1rem 0 0.25rem; + font-size: 1.09375rem; } + +.progress-group-text { + font-size: 0.76563rem; + color: #536c79; } + +.progress-group-header { + display: flex; + flex-basis: 100%; + align-items: flex-end; + margin-bottom: 0.25rem; } + +.progress-group-bars { + flex-grow: 1; + align-self: center; } + .progress-group-bars .progress:not(:last-child) { + margin-bottom: 2px; } + +.progress-group-header + .progress-group-bars { + flex-basis: 100%; } + +.sidebar { + display: flex; + flex-direction: column; + padding: 0; + color: #fff; + background: #29363d; } + .sidebar .sidebar-close { + position: absolute; + right: 0; + display: none; + padding: 0 1rem; + font-size: 24px; + font-weight: 800; + line-height: 55px; + color: #fff; + background: 0; + border: 0; + opacity: .8; } + .sidebar .sidebar-close:hover { + opacity: 1; } + .sidebar .sidebar-header { + flex: 0 0 auto; + padding: 0.75rem 1rem; + text-align: center; + background: rgba(0, 0, 0, 0.2); } + .sidebar .sidebar-form .form-control { + color: #fff; + background: #151b1f; + border: 0; } + .sidebar .sidebar-form .form-control::placeholder { + color: rgba(255, 255, 255, 0.7); } + .sidebar .sidebar-nav { + position: relative; + flex: 1; + overflow-x: hidden; + overflow-y: auto; + width: 200px; } + .sidebar .nav { + width: 200px; + flex-direction: column; + min-height: 100%; + padding: 0; } + .sidebar .nav-title { + padding: 0.75rem 1rem; + font-size: 80%; + font-weight: 700; + color: #c2cfd6; + text-transform: uppercase; } + .sidebar .nav-divider { + height: 10px; } + .sidebar .nav-item { + position: relative; + margin: 0; + transition: background .3s ease-in-out; } + .sidebar .nav-dropdown-items { + max-height: 0; + padding: 0; + margin: 0; + overflow-y: hidden; + transition: max-height .3s ease-in-out; } + .sidebar .nav-dropdown-items .nav-item { + padding: 0; + list-style: none; } + .sidebar .nav-link { + display: block; + padding: 0.75rem 1rem; + color: #fff; + text-decoration: none; + background: transparent; } + .sidebar .nav-link .nav-icon { + display: inline-block; + width: 1.09375rem; + margin: 0 0.5rem 0 0; + font-size: 0.875rem; + color: #536c79; + text-align: center; } + .sidebar .nav-link .badge { + float: right; + margin-top: 2px; } + .sidebar .nav-link.active { + color: #fff; + background: #33444c; } + .sidebar .nav-link.active .nav-icon { + color: #20a8d8; } + .sidebar .nav-link:hover { + color: #fff; + background: #20a8d8; } + .sidebar .nav-link:hover .nav-icon { + color: #fff; } + .sidebar .nav-link:hover.nav-dropdown-toggle::before { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); } + .sidebar .nav-link.nav-link-primary { + background: #20a8d8; } + .sidebar .nav-link.nav-link-primary .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-primary:hover { + background: #1d97c2; } + .sidebar .nav-link.nav-link-primary:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-secondary { + background: #a4b7c1; } + .sidebar .nav-link.nav-link-secondary .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-secondary:hover { + background: #95abb7; } + .sidebar .nav-link.nav-link-secondary:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-success { + background: #4dbd74; } + .sidebar .nav-link.nav-link-success .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-success:hover { + background: #41af67; } + .sidebar .nav-link.nav-link-success:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-info { + background: #63c2de; } + .sidebar .nav-link.nav-link-info .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-info:hover { + background: #4ebada; } + .sidebar .nav-link.nav-link-info:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-warning { + background: #ffc107; } + .sidebar .nav-link.nav-link-warning .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-warning:hover { + background: #edb100; } + .sidebar .nav-link.nav-link-warning:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-danger { + background: #f86c6b; } + .sidebar .nav-link.nav-link-danger .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-danger:hover { + background: #f75453; } + .sidebar .nav-link.nav-link-danger:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-light { + background: #f0f3f5; } + .sidebar .nav-link.nav-link-light .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-light:hover { + background: #e1e7eb; } + .sidebar .nav-link.nav-link-light:hover i { + color: #fff; } + .sidebar .nav-link.nav-link-dark { + background: #29363d; } + .sidebar .nav-link.nav-link-dark .nav-icon { + color: rgba(255, 255, 255, 0.7); } + .sidebar .nav-link.nav-link-dark:hover { + background: #1f292e; } + .sidebar .nav-link.nav-link-dark:hover i { + color: #fff; } + .sidebar .nav-dropdown-toggle { + position: relative; } + .sidebar .nav-dropdown-toggle::before { + position: absolute; + top: 50%; + right: 1rem; + display: block; + width: 8px; + height: 8px; + padding: 0; + margin-top: -4px; + content: ""; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23536c79' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); + background-repeat: no-repeat; + background-position: center; + transition: transform .3s; } + .sidebar .nav-dropdown.open { + background: rgba(0, 0, 0, 0.2); } + .sidebar .nav-dropdown.open > .nav-dropdown-items { + max-height: 1500px; } + .sidebar .nav-dropdown.open .nav-link { + color: #fff; + border-left: 0; } + .sidebar .nav-dropdown.open > .nav-dropdown-toggle::before { + transform: rotate(-90deg); } + .sidebar .nav-dropdown.open .nav-dropdown.open { + border-left: 0; } + .sidebar .nav-label { + display: block; + padding: 0.09375rem 1rem; + color: #c2cfd6; } + .sidebar .nav-label:hover { + color: #fff; + text-decoration: none; } + .sidebar .nav-label .nav-icon { + width: 20px; + margin: -3px 0.5rem 0 0; + font-size: 10px; + color: #536c79; + text-align: center; + vertical-align: middle; } + .sidebar .progress { + background-color: #485f6b !important; } + .sidebar .sidebar-footer { + flex: 0 0 auto; + padding: 0.75rem 1rem; + background: rgba(0, 0, 0, 0.2); } + .sidebar .sidebar-minimizer { + position: relative; + flex: 0 0 50px; + background-color: rgba(0, 0, 0, 0.2); + border: 0; } + .sidebar .sidebar-minimizer::before { + position: absolute; + top: 0; + right: 0; + width: 50px; + height: 50px; + content: ""; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23536c79' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); + background-repeat: no-repeat; + background-position: center; + background-size: 12.5px; + transition: .3s; } + .sidebar .sidebar-minimizer:focus, .sidebar .sidebar-minimizer.focus { + outline: 0; } + .sidebar .sidebar-minimizer:hover { + background-color: rgba(0, 0, 0, 0.3); } + .sidebar .sidebar-minimizer:hover::before { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23fff' d='M9.148 2.352l-4.148 4.148 4.148 4.148q0.148 0.148 0.148 0.352t-0.148 0.352l-1.297 1.297q-0.148 0.148-0.352 0.148t-0.352-0.148l-5.797-5.797q-0.148-0.148-0.148-0.352t0.148-0.352l5.797-5.797q0.148-0.148 0.352-0.148t0.352 0.148l1.297 1.297q0.148 0.148 0.148 0.352t-0.148 0.352z'/%3E%3C/svg%3E"); } + +@media (min-width: 992px) { + .sidebar-compact .sidebar .sidebar-nav { + width: 150px; } + .sidebar-compact .sidebar .nav { + width: 150px; } + .sidebar-compact .sidebar .nav-title { + text-align: center; } + .sidebar-compact .sidebar .nav-item { + width: 150px; + border-left: 0; } + .sidebar-compact .sidebar .nav-link { + text-align: center; } + .sidebar-compact .sidebar .nav-link .nav-icon { + display: block; + width: 100%; + margin: 0.25rem 0; + font-size: 24px; } + .sidebar-compact .sidebar .nav-link .badge { + position: absolute; + top: 18px; + right: 10px; } + .sidebar-compact .sidebar .nav-link.nav-dropdown-toggle::before { + top: 30px; } + .sidebar-minimized .sidebar { + z-index: 1019; } + .sidebar-minimized .sidebar .sidebar-nav { + overflow: visible; + width: 50px; } + .sidebar-minimized .sidebar .nav { + width: 50px; } + .sidebar-minimized .sidebar .nav-divider, + .sidebar-minimized .sidebar .nav-title, + .sidebar-minimized .sidebar .sidebar-footer, + .sidebar-minimized .sidebar .sidebar-form, + .sidebar-minimized .sidebar .sidebar-header { + display: none; } + .sidebar-minimized .sidebar .sidebar-minimizer::before { + width: 100%; + transform: rotate(-180deg); } + .sidebar-minimized .sidebar .nav-item { + width: 50px; + overflow: hidden; } + .sidebar-minimized .sidebar .nav-item:hover { + width: 250px; + overflow: visible; } + .sidebar-minimized .sidebar .nav-item:hover > .nav-link { + background: #20a8d8; } + .sidebar-minimized .sidebar .nav-item:hover > .nav-link .nav-icon { + color: #fff; } + .sidebar-minimized .sidebar .nav-link { + position: relative; + padding-left: 0; + margin: 0; + white-space: nowrap; + border-left: 0; } + .sidebar-minimized .sidebar .nav-link .nav-icon { + display: block; + float: left; + width: 50px; + font-size: 18px; } + .sidebar-minimized .sidebar .nav-link .badge { + position: absolute; + right: 15px; + display: none; } + .sidebar-minimized .sidebar .nav-link:hover { + width: 250px; + background: #20a8d8; } + .sidebar-minimized .sidebar .nav-link:hover .badge { + display: inline; } + .sidebar-minimized .sidebar .nav-link.nav-dropdown-toggle::before { + display: none; } + .sidebar-minimized .sidebar .nav-dropdown-items .nav-item { + width: 200px; } + .sidebar-minimized .sidebar .nav-dropdown-items .nav-item .nav-link { + width: 200px; } + .sidebar-minimized .sidebar .nav > .nav-dropdown > .nav-dropdown-items { + display: none; + max-height: 1000px; + background: #29363d; } + .sidebar-minimized .sidebar .nav > .nav-dropdown:hover { + background: #20a8d8; } + .sidebar-minimized .sidebar .nav > .nav-dropdown:hover > .nav-dropdown-items { + position: absolute; + left: 50px; + display: inline; } } + +*[dir="rtl"] .sidebar .nav-dropdown-toggle::before { + position: absolute; + right: auto; + left: 1rem; + transform: rotate(180deg); } + +*[dir="rtl"] .sidebar .nav-dropdown.open > .nav-dropdown-toggle::before { + transform: rotate(270deg); } + +*[dir="rtl"] .sidebar .nav-link .nav-icon { + margin: 0 0 0 0.5rem; } + +*[dir="rtl"] .sidebar .nav-link .badge { + float: left; + margin-top: 2px; } + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-link { + padding-right: 0; } + *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .nav-icon { + float: right; + padding: 0; + margin: 0; } + *[dir="rtl"] .sidebar-minimized .sidebar .nav-link .badge { + right: auto; + left: 15px; } + +*[dir="rtl"] .sidebar-minimized .sidebar .nav-dropdown:hover > .nav-dropdown-items { + right: 50px; + left: 0; } + +.switch.switch-default { + position: relative; + display: inline-block; + width: 40px; + height: 24px; + vertical-align: top; + cursor: pointer; + background-color: transparent; } + .switch.switch-default .switch-input { + position: absolute; + top: 0; + left: 0; + opacity: 0; } + .switch.switch-default .switch-label { + position: relative; + display: block; + height: inherit; + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + background-color: #fff; + border: 1px solid #c2cfd6; + border-radius: 2px; + transition: opacity background .15s ease-out; } + .switch.switch-default .switch-input:checked ~ .switch-label::before { + opacity: 0; } + .switch.switch-default .switch-input:checked ~ .switch-label::after { + opacity: 1; } + .switch.switch-default .switch-handle { + position: absolute; + top: 2px; + left: 2px; + width: 20px; + height: 20px; + background: #fff; + border: 1px solid #c2cfd6; + border-radius: 1px; + transition: left .15s ease-out; } + .switch.switch-default .switch-input:checked ~ .switch-handle { + left: 18px; } + .switch.switch-default.switch-lg { + width: 48px; + height: 28px; } + .switch.switch-default.switch-lg .switch-label { + font-size: 12px; } + .switch.switch-default.switch-lg .switch-handle { + width: 24px; + height: 24px; } + .switch.switch-default.switch-lg .switch-input:checked ~ .switch-handle { + left: 22px; } + .switch.switch-default.switch-sm { + width: 32px; + height: 20px; } + .switch.switch-default.switch-sm .switch-label { + font-size: 8px; } + .switch.switch-default.switch-sm .switch-handle { + width: 16px; + height: 16px; } + .switch.switch-default.switch-sm .switch-input:checked ~ .switch-handle { + left: 14px; } + .switch.switch-default.switch-xs { + width: 24px; + height: 16px; } + .switch.switch-default.switch-xs .switch-label { + font-size: 7px; } + .switch.switch-default.switch-xs .switch-handle { + width: 12px; + height: 12px; } + .switch.switch-default.switch-xs .switch-input:checked ~ .switch-handle { + left: 10px; } + +.switch.switch-text { + position: relative; + display: inline-block; + width: 48px; + height: 24px; + vertical-align: top; + cursor: pointer; + background-color: transparent; } + .switch.switch-text .switch-input { + position: absolute; + top: 0; + left: 0; + opacity: 0; } + .switch.switch-text .switch-label { + position: relative; + display: block; + height: inherit; + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + background-color: #fff; + border: 1px solid #c2cfd6; + border-radius: 2px; + transition: opacity background .15s ease-out; } + .switch.switch-text .switch-label::before, + .switch.switch-text .switch-label::after { + position: absolute; + top: 50%; + width: 50%; + margin-top: -.5em; + line-height: 1; + text-align: center; + transition: inherit; } + .switch.switch-text .switch-label::before { + right: 1px; + color: #c2cfd6; + content: attr(data-off); } + .switch.switch-text .switch-label::after { + left: 1px; + color: #fff; + content: attr(data-on); + opacity: 0; } + .switch.switch-text .switch-input:checked ~ .switch-label::before { + opacity: 0; } + .switch.switch-text .switch-input:checked ~ .switch-label::after { + opacity: 1; } + .switch.switch-text .switch-handle { + position: absolute; + top: 2px; + left: 2px; + width: 20px; + height: 20px; + background: #fff; + border: 1px solid #c2cfd6; + border-radius: 1px; + transition: left .15s ease-out; } + .switch.switch-text .switch-input:checked ~ .switch-handle { + left: 26px; } + .switch.switch-text.switch-lg { + width: 56px; + height: 28px; } + .switch.switch-text.switch-lg .switch-label { + font-size: 12px; } + .switch.switch-text.switch-lg .switch-handle { + width: 24px; + height: 24px; } + .switch.switch-text.switch-lg .switch-input:checked ~ .switch-handle { + left: 30px; } + .switch.switch-text.switch-sm { + width: 40px; + height: 20px; } + .switch.switch-text.switch-sm .switch-label { + font-size: 8px; } + .switch.switch-text.switch-sm .switch-handle { + width: 16px; + height: 16px; } + .switch.switch-text.switch-sm .switch-input:checked ~ .switch-handle { + left: 22px; } + .switch.switch-text.switch-xs { + width: 32px; + height: 16px; } + .switch.switch-text.switch-xs .switch-label { + font-size: 7px; } + .switch.switch-text.switch-xs .switch-handle { + width: 12px; + height: 12px; } + .switch.switch-text.switch-xs .switch-input:checked ~ .switch-handle { + left: 18px; } + +.switch.switch-icon { + position: relative; + display: inline-block; + width: 48px; + height: 24px; + vertical-align: top; + cursor: pointer; + background-color: transparent; } + .switch.switch-icon .switch-input { + position: absolute; + top: 0; + left: 0; + opacity: 0; } + .switch.switch-icon .switch-label { + position: relative; + display: block; + height: inherit; + font-family: FontAwesome; + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + background-color: #fff; + border: 1px solid #c2cfd6; + border-radius: 2px; + transition: opacity background .15s ease-out; } + .switch.switch-icon .switch-label::before, + .switch.switch-icon .switch-label::after { + position: absolute; + top: 50%; + width: 50%; + margin-top: -.5em; + line-height: 1; + text-align: center; + transition: inherit; } + .switch.switch-icon .switch-label::before { + right: 1px; + color: #c2cfd6; + content: attr(data-off); } + .switch.switch-icon .switch-label::after { + left: 1px; + color: #fff; + content: attr(data-on); + opacity: 0; } + .switch.switch-icon .switch-input:checked ~ .switch-label::before { + opacity: 0; } + .switch.switch-icon .switch-input:checked ~ .switch-label::after { + opacity: 1; } + .switch.switch-icon .switch-handle { + position: absolute; + top: 2px; + left: 2px; + width: 20px; + height: 20px; + background: #fff; + border: 1px solid #c2cfd6; + border-radius: 1px; + transition: left .15s ease-out; } + .switch.switch-icon .switch-input:checked ~ .switch-handle { + left: 26px; } + .switch.switch-icon.switch-lg { + width: 56px; + height: 28px; } + .switch.switch-icon.switch-lg .switch-label { + font-size: 12px; } + .switch.switch-icon.switch-lg .switch-handle { + width: 24px; + height: 24px; } + .switch.switch-icon.switch-lg .switch-input:checked ~ .switch-handle { + left: 30px; } + .switch.switch-icon.switch-sm { + width: 40px; + height: 20px; } + .switch.switch-icon.switch-sm .switch-label { + font-size: 8px; } + .switch.switch-icon.switch-sm .switch-handle { + width: 16px; + height: 16px; } + .switch.switch-icon.switch-sm .switch-input:checked ~ .switch-handle { + left: 22px; } + .switch.switch-icon.switch-xs { + width: 32px; + height: 16px; } + .switch.switch-icon.switch-xs .switch-label { + font-size: 7px; } + .switch.switch-icon.switch-xs .switch-handle { + width: 12px; + height: 12px; } + .switch.switch-icon.switch-xs .switch-input:checked ~ .switch-handle { + left: 18px; } + +.switch.switch-3d { + position: relative; + display: inline-block; + width: 40px; + height: 24px; + vertical-align: top; + cursor: pointer; + background-color: transparent; } + .switch.switch-3d .switch-input { + position: absolute; + top: 0; + left: 0; + opacity: 0; } + .switch.switch-3d .switch-label { + position: relative; + display: block; + height: inherit; + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + background-color: #f0f3f5; + border: 1px solid #c2cfd6; + border-radius: 2px; + transition: opacity background .15s ease-out; } + .switch.switch-3d .switch-input:checked ~ .switch-label::before { + opacity: 0; } + .switch.switch-3d .switch-input:checked ~ .switch-label::after { + opacity: 1; } + .switch.switch-3d .switch-handle { + position: absolute; + top: 0; + left: 0; + width: 24px; + height: 24px; + background: #fff; + border: 1px solid #c2cfd6; + border-radius: 1px; + transition: left .15s ease-out; + border: 0; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); } + .switch.switch-3d .switch-input:checked ~ .switch-handle { + left: 16px; } + .switch.switch-3d.switch-lg { + width: 48px; + height: 28px; } + .switch.switch-3d.switch-lg .switch-label { + font-size: 12px; } + .switch.switch-3d.switch-lg .switch-handle { + width: 28px; + height: 28px; } + .switch.switch-3d.switch-lg .switch-input:checked ~ .switch-handle { + left: 20px; } + .switch.switch-3d.switch-sm { + width: 32px; + height: 20px; } + .switch.switch-3d.switch-sm .switch-label { + font-size: 8px; } + .switch.switch-3d.switch-sm .switch-handle { + width: 20px; + height: 20px; } + .switch.switch-3d.switch-sm .switch-input:checked ~ .switch-handle { + left: 12px; } + .switch.switch-3d.switch-xs { + width: 24px; + height: 16px; } + .switch.switch-3d.switch-xs .switch-label { + font-size: 7px; } + .switch.switch-3d.switch-xs .switch-handle { + width: 16px; + height: 16px; } + .switch.switch-3d.switch-xs .switch-input:checked ~ .switch-handle { + left: 8px; } + +.switch-pill .switch-label, .switch.switch-3d .switch-label, +.switch-pill .switch-handle, .switch.switch-3d .switch-handle { + border-radius: 50em; } + +.switch-pill .switch-label::before, .switch.switch-3d .switch-label::before { + right: 2px; } + +.switch-pill .switch-label::after, .switch.switch-3d .switch-label::after { + left: 2px; } + +.switch-primary > .switch-input:checked ~ .switch-label { + background: #20a8d8; + border-color: #1985ac; } + +.switch-primary > .switch-input:checked ~ .switch-handle { + border-color: #1985ac; } + +.switch-primary-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #20a8d8; } + .switch-primary-outline > .switch-input:checked ~ .switch-label::after { + color: #20a8d8; } + +.switch-primary-outline > .switch-input:checked ~ .switch-handle { + border-color: #20a8d8; } + +.switch-primary-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #20a8d8; } + .switch-primary-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #20a8d8; } + +.switch-primary-outline-alt > .switch-input:checked ~ .switch-handle { + background: #20a8d8; + border-color: #20a8d8; } + +.switch-secondary > .switch-input:checked ~ .switch-label { + background: #a4b7c1; + border-color: #869fac; } + +.switch-secondary > .switch-input:checked ~ .switch-handle { + border-color: #869fac; } + +.switch-secondary-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #a4b7c1; } + .switch-secondary-outline > .switch-input:checked ~ .switch-label::after { + color: #a4b7c1; } + +.switch-secondary-outline > .switch-input:checked ~ .switch-handle { + border-color: #a4b7c1; } + +.switch-secondary-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #a4b7c1; } + .switch-secondary-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #a4b7c1; } + +.switch-secondary-outline-alt > .switch-input:checked ~ .switch-handle { + background: #a4b7c1; + border-color: #a4b7c1; } + +.switch-success > .switch-input:checked ~ .switch-label { + background: #4dbd74; + border-color: #3a9d5d; } + +.switch-success > .switch-input:checked ~ .switch-handle { + border-color: #3a9d5d; } + +.switch-success-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #4dbd74; } + .switch-success-outline > .switch-input:checked ~ .switch-label::after { + color: #4dbd74; } + +.switch-success-outline > .switch-input:checked ~ .switch-handle { + border-color: #4dbd74; } + +.switch-success-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #4dbd74; } + .switch-success-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #4dbd74; } + +.switch-success-outline-alt > .switch-input:checked ~ .switch-handle { + background: #4dbd74; + border-color: #4dbd74; } + +.switch-info > .switch-input:checked ~ .switch-label { + background: #63c2de; + border-color: #39b2d5; } + +.switch-info > .switch-input:checked ~ .switch-handle { + border-color: #39b2d5; } + +.switch-info-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #63c2de; } + .switch-info-outline > .switch-input:checked ~ .switch-label::after { + color: #63c2de; } + +.switch-info-outline > .switch-input:checked ~ .switch-handle { + border-color: #63c2de; } + +.switch-info-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #63c2de; } + .switch-info-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #63c2de; } + +.switch-info-outline-alt > .switch-input:checked ~ .switch-handle { + background: #63c2de; + border-color: #63c2de; } + +.switch-warning > .switch-input:checked ~ .switch-label { + background: #ffc107; + border-color: #d39e00; } + +.switch-warning > .switch-input:checked ~ .switch-handle { + border-color: #d39e00; } + +.switch-warning-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #ffc107; } + .switch-warning-outline > .switch-input:checked ~ .switch-label::after { + color: #ffc107; } + +.switch-warning-outline > .switch-input:checked ~ .switch-handle { + border-color: #ffc107; } + +.switch-warning-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #ffc107; } + .switch-warning-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #ffc107; } + +.switch-warning-outline-alt > .switch-input:checked ~ .switch-handle { + background: #ffc107; + border-color: #ffc107; } + +.switch-danger > .switch-input:checked ~ .switch-label { + background: #f86c6b; + border-color: #f63c3a; } + +.switch-danger > .switch-input:checked ~ .switch-handle { + border-color: #f63c3a; } + +.switch-danger-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #f86c6b; } + .switch-danger-outline > .switch-input:checked ~ .switch-label::after { + color: #f86c6b; } + +.switch-danger-outline > .switch-input:checked ~ .switch-handle { + border-color: #f86c6b; } + +.switch-danger-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #f86c6b; } + .switch-danger-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #f86c6b; } + +.switch-danger-outline-alt > .switch-input:checked ~ .switch-handle { + background: #f86c6b; + border-color: #f86c6b; } + +.switch-light > .switch-input:checked ~ .switch-label { + background: #f0f3f5; + border-color: #d1dbe1; } + +.switch-light > .switch-input:checked ~ .switch-handle { + border-color: #d1dbe1; } + +.switch-light-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #f0f3f5; } + .switch-light-outline > .switch-input:checked ~ .switch-label::after { + color: #f0f3f5; } + +.switch-light-outline > .switch-input:checked ~ .switch-handle { + border-color: #f0f3f5; } + +.switch-light-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #f0f3f5; } + .switch-light-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #f0f3f5; } + +.switch-light-outline-alt > .switch-input:checked ~ .switch-handle { + background: #f0f3f5; + border-color: #f0f3f5; } + +.switch-dark > .switch-input:checked ~ .switch-label { + background: #29363d; + border-color: #151b1f; } + +.switch-dark > .switch-input:checked ~ .switch-handle { + border-color: #151b1f; } + +.switch-dark-outline > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #29363d; } + .switch-dark-outline > .switch-input:checked ~ .switch-label::after { + color: #29363d; } + +.switch-dark-outline > .switch-input:checked ~ .switch-handle { + border-color: #29363d; } + +.switch-dark-outline-alt > .switch-input:checked ~ .switch-label { + background: #fff; + border-color: #29363d; } + .switch-dark-outline-alt > .switch-input:checked ~ .switch-label::after { + color: #29363d; } + +.switch-dark-outline-alt > .switch-input:checked ~ .switch-handle { + background: #29363d; + border-color: #29363d; } + +.table-outline { + border: 1px solid #a4b7c1; } + .table-outline td { + vertical-align: middle; } + +.table-align-middle td { + vertical-align: middle; } + +.table-clear td { + border: 0; } + +@media all and (-ms-high-contrast: none) { + html { + display: flex; + flex-direction: column; } } + +.app, +app-dashboard, +app-root { + display: flex; + flex-direction: column; + min-height: 100vh; } + +.app-header { + flex: 0 0 55px; } + +.app-footer { + flex: 0 0 50px; } + +.app-body { + display: flex; + flex-direction: row; + flex-grow: 1; + overflow-x: hidden; } + .app-body .main { + flex: 1; + min-width: 0; } + .app-body .sidebar { + flex: 0 0 200px; + order: -1; } + .app-body .aside-menu { + flex: 0 0 250px; } + +html:not([dir="rtl"]) .sidebar { + margin-left: -200px; } + +html:not([dir="rtl"]) .aside-menu { + margin-right: -250px; } + +html[dir="rtl"] .sidebar { + margin-right: -200px; } + +html[dir="rtl"] .aside-menu { + margin-left: -250px; } + +@media (min-width: 992px) { + .header-fixed .app-header { + position: fixed; + z-index: 1020; + width: 100%; } + .header-fixed .app-body { + margin-top: 55px; } + .sidebar-fixed .sidebar { + position: fixed; + z-index: 1019; + width: 200px; + height: calc(100vh - 55px); } + .sidebar-compact .sidebar { + flex: 0 0 150px; } + .sidebar-compact.sidebar-fixed .sidebar { + width: 150px; } + .sidebar-compact .sidebar-minimizer { + display: none; } + .sidebar-minimized .sidebar { + flex: 0 0 50px; } + .sidebar-minimized.sidebar-fixed .sidebar { + width: 50px; } + .sidebar-off-canvas .sidebar { + position: fixed; + z-index: 1019; + height: calc(100vh - 55px); } + html:not([dir="rtl"]) .sidebar-compact .sidebar { + margin-left: -150px; } + html:not([dir="rtl"]) .sidebar-minimized .sidebar { + margin-left: -50px; } + html[dir="rtl"] .sidebar-compact .sidebar { + margin-right: -150px; } + html[dir="rtl"] .sidebar-minimized .sidebar { + margin-right: -50px; } + .aside-menu-fixed .aside-menu { + position: fixed; + height: 100%; } + .aside-menu-fixed .aside-menu .tab-content { + height: calc(100vh - 2.375rem - 55px); } + .aside-menu-off-canvas .aside-menu { + position: fixed; + z-index: 1019; + height: calc(100vh - 55px); } + html:not([dir="rtl"]) .aside-menu-fixed .aside-menu, + html:not([dir="rtl"]) .aside-menu-off-canvas .aside-menu { + right: 0; } + html[dir="rtl"] .aside-menu-fixed .aside-menu, + html[dir="rtl"] .aside-menu-off-canvas .aside-menu { + left: 0; } } + +.breadcrumb-fixed .main { + padding-top: 3.875rem; } + +.breadcrumb-fixed .breadcrumb { + position: fixed; + top: 55px; + right: 0; + left: 0; + z-index: 1017; } + +html:not([dir="rtl"]) .sidebar-show .sidebar { + margin-left: 0; } + +@media (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .main, + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed .app-footer { + margin-left: 200px; } + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .main, + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; } + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .main, + html:not([dir="rtl"]) .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } + html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed .breadcrumb { + left: 200px; } + html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; } + html:not([dir="rtl"]) .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; } } + +html:not([dir="rtl"]) .aside-menu-show .aside-menu { + margin-right: 0; } + +@media (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .main, + html:not([dir="rtl"]) .aside-menu-show.aside-menu-fixed .app-footer { + margin-right: 250px; } + html:not([dir="rtl"]) .aside-menu-show.breadcrumb-fixed .breadcrumb { + right: 250px; } } + +html[dir="rtl"] .sidebar-show .sidebar { + margin-right: 0; } + +@media (min-width: 576px) { + html[dir="rtl"] .sidebar-show.sidebar-fixed .main, + html[dir="rtl"] .sidebar-show.sidebar-fixed .app-footer { + margin-right: 200px; } + html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .main, + html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; } + html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .main, + html[dir="rtl"] .sidebar-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } + html[dir="rtl"] .sidebar-show.breadcrumb-fixed .breadcrumb { + right: 200px; } + html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; } + html[dir="rtl"] .sidebar-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; } } + +html[dir="rtl"] .aside-menu-show .aside-menu { + margin-left: 0; } + +@media (min-width: 576px) { + html[dir="rtl"] .aside-menu-show.aside-menu-fixed .main, + html[dir="rtl"] .aside-menu-show.aside-menu-fixed .app-footer { + margin-left: 250px; } + html[dir="rtl"] .aside-menu-show.breadcrumb-fixed .breadcrumb { + left: 250px; } } + +@keyframes opacity { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } + +@media (max-width: 575.98px) { + .sidebar-show .main, + .aside-menu-show .main { + position: relative; } + .sidebar-show .main::before, + .aside-menu-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + animation: opacity 0.25s; } } + +@media (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-sm-show .sidebar { + margin-left: 0; } } + +@media (min-width: 576px) and (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .main, + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed .app-footer { + margin-left: 200px; } + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; } + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, + html:not([dir="rtl"]) .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed .breadcrumb { + left: 200px; } + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; } + html:not([dir="rtl"]) .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; } } + +@media (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-sm-show .aside-menu { + margin-right: 0; } } + +@media (min-width: 576px) and (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .main, + html:not([dir="rtl"]) .aside-menu-sm-show.aside-menu-fixed .app-footer { + margin-right: 250px; } + html:not([dir="rtl"]) .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { + right: 250px; } } + +@media (min-width: 576px) { + html[dir="rtl"] .sidebar-sm-show .sidebar { + margin-right: 0; } } + +@media (min-width: 576px) and (min-width: 576px) { + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .main, + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed .app-footer { + margin-right: 200px; } + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .main, + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; } + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .main, + html[dir="rtl"] .sidebar-sm-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed .breadcrumb { + right: 200px; } + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; } + html[dir="rtl"] .sidebar-sm-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; } } + +@media (min-width: 576px) { + html[dir="rtl"] .aside-menu-sm-show .aside-menu { + margin-left: 0; } } + +@media (min-width: 576px) and (min-width: 576px) { + html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .main, + html[dir="rtl"] .aside-menu-sm-show.aside-menu-fixed .app-footer { + margin-left: 250px; } + html[dir="rtl"] .aside-menu-sm-show.breadcrumb-fixed .breadcrumb { + left: 250px; } } + +@media (min-width: 576px) { + @keyframes opacity { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } } + +@media (min-width: 576px) and (max-width: 575.98px) { + .sidebar-sm-show .main, + .aside-menu-sm-show .main { + position: relative; } + .sidebar-sm-show .main::before, + .aside-menu-sm-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + animation: opacity 0.25s; } } + +@media (min-width: 768px) { + html:not([dir="rtl"]) .sidebar-md-show .sidebar { + margin-left: 0; } } + +@media (min-width: 768px) and (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .main, + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed .app-footer { + margin-left: 200px; } + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .main, + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; } + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, + html:not([dir="rtl"]) .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed .breadcrumb { + left: 200px; } + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; } + html:not([dir="rtl"]) .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; } } + +@media (min-width: 768px) { + html:not([dir="rtl"]) .aside-menu-md-show .aside-menu { + margin-right: 0; } } + +@media (min-width: 768px) and (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .main, + html:not([dir="rtl"]) .aside-menu-md-show.aside-menu-fixed .app-footer { + margin-right: 250px; } + html:not([dir="rtl"]) .aside-menu-md-show.breadcrumb-fixed .breadcrumb { + right: 250px; } } + +@media (min-width: 768px) { + html[dir="rtl"] .sidebar-md-show .sidebar { + margin-right: 0; } } + +@media (min-width: 768px) and (min-width: 576px) { + html[dir="rtl"] .sidebar-md-show.sidebar-fixed .main, + html[dir="rtl"] .sidebar-md-show.sidebar-fixed .app-footer { + margin-right: 200px; } + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .main, + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; } + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .main, + html[dir="rtl"] .sidebar-md-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed .breadcrumb { + right: 200px; } + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; } + html[dir="rtl"] .sidebar-md-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; } } + +@media (min-width: 768px) { + html[dir="rtl"] .aside-menu-md-show .aside-menu { + margin-left: 0; } } + +@media (min-width: 768px) and (min-width: 576px) { + html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .main, + html[dir="rtl"] .aside-menu-md-show.aside-menu-fixed .app-footer { + margin-left: 250px; } + html[dir="rtl"] .aside-menu-md-show.breadcrumb-fixed .breadcrumb { + left: 250px; } } + +@media (min-width: 768px) { + @keyframes opacity { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } } + +@media (min-width: 768px) and (max-width: 575.98px) { + .sidebar-md-show .main, + .aside-menu-md-show .main { + position: relative; } + .sidebar-md-show .main::before, + .aside-menu-md-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + animation: opacity 0.25s; } } + +@media (min-width: 992px) { + html:not([dir="rtl"]) .sidebar-lg-show .sidebar { + margin-left: 0; } } + +@media (min-width: 992px) and (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .main, + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed .app-footer { + margin-left: 200px; } + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; } + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, + html:not([dir="rtl"]) .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed .breadcrumb { + left: 200px; } + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; } + html:not([dir="rtl"]) .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; } } + +@media (min-width: 992px) { + html:not([dir="rtl"]) .aside-menu-lg-show .aside-menu { + margin-right: 0; } } + +@media (min-width: 992px) and (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .main, + html:not([dir="rtl"]) .aside-menu-lg-show.aside-menu-fixed .app-footer { + margin-right: 250px; } + html:not([dir="rtl"]) .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { + right: 250px; } } + +@media (min-width: 992px) { + html[dir="rtl"] .sidebar-lg-show .sidebar { + margin-right: 0; } } + +@media (min-width: 992px) and (min-width: 576px) { + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .main, + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed .app-footer { + margin-right: 200px; } + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .main, + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; } + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .main, + html[dir="rtl"] .sidebar-lg-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed .breadcrumb { + right: 200px; } + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; } + html[dir="rtl"] .sidebar-lg-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; } } + +@media (min-width: 992px) { + html[dir="rtl"] .aside-menu-lg-show .aside-menu { + margin-left: 0; } } + +@media (min-width: 992px) and (min-width: 576px) { + html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .main, + html[dir="rtl"] .aside-menu-lg-show.aside-menu-fixed .app-footer { + margin-left: 250px; } + html[dir="rtl"] .aside-menu-lg-show.breadcrumb-fixed .breadcrumb { + left: 250px; } } + +@media (min-width: 992px) { + @keyframes opacity { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } } + +@media (min-width: 992px) and (max-width: 575.98px) { + .sidebar-lg-show .main, + .aside-menu-lg-show .main { + position: relative; } + .sidebar-lg-show .main::before, + .aside-menu-lg-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + animation: opacity 0.25s; } } + +@media (min-width: 1200px) { + html:not([dir="rtl"]) .sidebar-xl-show .sidebar { + margin-left: 0; } } + +@media (min-width: 1200px) and (min-width: 576px) { + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .main, + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed .app-footer { + margin-left: 200px; } + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { + margin-left: 150px; } + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, + html:not([dir="rtl"]) .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-left: 50px; } + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed .breadcrumb { + left: 200px; } + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + left: 150px; } + html:not([dir="rtl"]) .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + left: 50px; } } + +@media (min-width: 1200px) { + html:not([dir="rtl"]) .aside-menu-xl-show .aside-menu { + margin-right: 0; } } + +@media (min-width: 1200px) and (min-width: 576px) { + html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .main, + html:not([dir="rtl"]) .aside-menu-xl-show.aside-menu-fixed .app-footer { + margin-right: 250px; } + html:not([dir="rtl"]) .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { + right: 250px; } } + +@media (min-width: 1200px) { + html[dir="rtl"] .sidebar-xl-show .sidebar { + margin-right: 0; } } + +@media (min-width: 1200px) and (min-width: 576px) { + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .main, + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed .app-footer { + margin-right: 200px; } + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .main, + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-compact .app-footer { + margin-right: 150px; } + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .main, + html[dir="rtl"] .sidebar-xl-show.sidebar-fixed.sidebar-minimized .app-footer { + margin-right: 50px; } + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed .breadcrumb { + right: 200px; } + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-compact .breadcrumb { + right: 150px; } + html[dir="rtl"] .sidebar-xl-show.breadcrumb-fixed.sidebar-minimized .breadcrumb { + right: 50px; } } + +@media (min-width: 1200px) { + html[dir="rtl"] .aside-menu-xl-show .aside-menu { + margin-left: 0; } } + +@media (min-width: 1200px) and (min-width: 576px) { + html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .main, + html[dir="rtl"] .aside-menu-xl-show.aside-menu-fixed .app-footer { + margin-left: 250px; } + html[dir="rtl"] .aside-menu-xl-show.breadcrumb-fixed .breadcrumb { + left: 250px; } } + +@media (min-width: 1200px) { + @keyframes opacity { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } } + +@media (min-width: 1200px) and (max-width: 575.98px) { + .sidebar-xl-show .main, + .aside-menu-xl-show .main { + position: relative; } + .sidebar-xl-show .main::before, + .aside-menu-xl-show .main::before { + position: absolute; + top: 0; + left: 0; + z-index: 1018; + width: 100%; + height: 100%; + content: ""; + background: rgba(0, 0, 0, 0.7); + animation: opacity 0.25s; } } + +.footer-fixed .app-footer { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1020; + height: 50px; } + +.footer-fixed .app-body { + margin-bottom: 50px; } + +.app-header, +.app-footer, +.sidebar, +.main, +.aside-menu { + transition: margin-left 0.25s, margin-right 0.25s, width 0.25s, flex 0.25s; } + +.sidebar-nav { + transition: width 0.25s; } + +.breadcrumb { + transition: left 0.25s, right 0.25s, width 0.25s; } + +@media (max-width: 991.98px) { + .app-header { + position: fixed; + z-index: 1020; + width: 100%; + text-align: center; + background-color: #fff; + border-bottom: 1px solid #c2cfd6; } + .app-header .navbar-toggler { + color: #536c79; } + .app-header .navbar-brand { + position: absolute; + left: 50%; + margin-left: -77.5px; } + .app-body { + margin-top: 55px; } + .sidebar { + position: fixed; + z-index: 1019; + width: 200px; + height: calc(100vh - 55px); } + .aside-menu { + position: fixed; + right: 0; + height: 100%; } } + +hr.transparent { + border-top: 1px solid transparent; } + +.bg-primary, +.bg-success, +.bg-info, +.bg-warning, +.bg-danger, +.bg-dark { + color: #fff; } + +.bg-facebook { + background-color: #3b5998 !important; } + +a.bg-facebook:hover, a.bg-facebook:focus, +button.bg-facebook:hover, +button.bg-facebook:focus { + background-color: #2d4373 !important; } + +.bg-twitter { + background-color: #00aced !important; } + +a.bg-twitter:hover, a.bg-twitter:focus, +button.bg-twitter:hover, +button.bg-twitter:focus { + background-color: #0087ba !important; } + +.bg-linkedin { + background-color: #4875b4 !important; } + +a.bg-linkedin:hover, a.bg-linkedin:focus, +button.bg-linkedin:hover, +button.bg-linkedin:focus { + background-color: #395d90 !important; } + +.bg-google-plus { + background-color: #d34836 !important; } + +a.bg-google-plus:hover, a.bg-google-plus:focus, +button.bg-google-plus:hover, +button.bg-google-plus:focus { + background-color: #b03626 !important; } + +.bg-flickr { + background-color: #ff0084 !important; } + +a.bg-flickr:hover, a.bg-flickr:focus, +button.bg-flickr:hover, +button.bg-flickr:focus { + background-color: #cc006a !important; } + +.bg-tumblr { + background-color: #32506d !important; } + +a.bg-tumblr:hover, a.bg-tumblr:focus, +button.bg-tumblr:hover, +button.bg-tumblr:focus { + background-color: #22364a !important; } + +.bg-xing { + background-color: #026466 !important; } + +a.bg-xing:hover, a.bg-xing:focus, +button.bg-xing:hover, +button.bg-xing:focus { + background-color: #013334 !important; } + +.bg-github { + background-color: #4183c4 !important; } + +a.bg-github:hover, a.bg-github:focus, +button.bg-github:hover, +button.bg-github:focus { + background-color: #3269a0 !important; } + +.bg-html5 { + background-color: #e34f26 !important; } + +a.bg-html5:hover, a.bg-html5:focus, +button.bg-html5:hover, +button.bg-html5:focus { + background-color: #be3c18 !important; } + +.bg-openid { + background-color: #f78c40 !important; } + +a.bg-openid:hover, a.bg-openid:focus, +button.bg-openid:hover, +button.bg-openid:focus { + background-color: #f56f0f !important; } + +.bg-stack-overflow { + background-color: #fe7a15 !important; } + +a.bg-stack-overflow:hover, a.bg-stack-overflow:focus, +button.bg-stack-overflow:hover, +button.bg-stack-overflow:focus { + background-color: #df6101 !important; } + +.bg-youtube { + background-color: #b00 !important; } + +a.bg-youtube:hover, a.bg-youtube:focus, +button.bg-youtube:hover, +button.bg-youtube:focus { + background-color: #880000 !important; } + +.bg-css3 { + background-color: #0170ba !important; } + +a.bg-css3:hover, a.bg-css3:focus, +button.bg-css3:hover, +button.bg-css3:focus { + background-color: #015187 !important; } + +.bg-dribbble { + background-color: #ea4c89 !important; } + +a.bg-dribbble:hover, a.bg-dribbble:focus, +button.bg-dribbble:hover, +button.bg-dribbble:focus { + background-color: #e51e6b !important; } + +.bg-instagram { + background-color: #517fa4 !important; } + +a.bg-instagram:hover, a.bg-instagram:focus, +button.bg-instagram:hover, +button.bg-instagram:focus { + background-color: #406582 !important; } + +.bg-pinterest { + background-color: #cb2027 !important; } + +a.bg-pinterest:hover, a.bg-pinterest:focus, +button.bg-pinterest:hover, +button.bg-pinterest:focus { + background-color: #9f191f !important; } + +.bg-vk { + background-color: #45668e !important; } + +a.bg-vk:hover, a.bg-vk:focus, +button.bg-vk:hover, +button.bg-vk:focus { + background-color: #344d6c !important; } + +.bg-yahoo { + background-color: #400191 !important; } + +a.bg-yahoo:hover, a.bg-yahoo:focus, +button.bg-yahoo:hover, +button.bg-yahoo:focus { + background-color: #2a015e !important; } + +.bg-behance { + background-color: #1769ff !important; } + +a.bg-behance:hover, a.bg-behance:focus, +button.bg-behance:hover, +button.bg-behance:focus { + background-color: #0050e3 !important; } + +.bg-dropbox { + background-color: #007ee5 !important; } + +a.bg-dropbox:hover, a.bg-dropbox:focus, +button.bg-dropbox:hover, +button.bg-dropbox:focus { + background-color: #0062b2 !important; } + +.bg-reddit { + background-color: #ff4500 !important; } + +a.bg-reddit:hover, a.bg-reddit:focus, +button.bg-reddit:hover, +button.bg-reddit:focus { + background-color: #cc3700 !important; } + +.bg-spotify { + background-color: #7ab800 !important; } + +a.bg-spotify:hover, a.bg-spotify:focus, +button.bg-spotify:hover, +button.bg-spotify:focus { + background-color: #588500 !important; } + +.bg-vine { + background-color: #00bf8f !important; } + +a.bg-vine:hover, a.bg-vine:focus, +button.bg-vine:hover, +button.bg-vine:focus { + background-color: #008c69 !important; } + +.bg-foursquare { + background-color: #1073af !important; } + +a.bg-foursquare:hover, a.bg-foursquare:focus, +button.bg-foursquare:hover, +button.bg-foursquare:focus { + background-color: #0c5480 !important; } + +.bg-vimeo { + background-color: #aad450 !important; } + +a.bg-vimeo:hover, a.bg-vimeo:focus, +button.bg-vimeo:hover, +button.bg-vimeo:focus { + background-color: #93c130 !important; } + +.bg-blue { + background-color: #20a8d8 !important; } + +a.bg-blue:hover, a.bg-blue:focus, +button.bg-blue:hover, +button.bg-blue:focus { + background-color: #1985ac !important; } + +.bg-indigo { + background-color: #6610f2 !important; } + +a.bg-indigo:hover, a.bg-indigo:focus, +button.bg-indigo:hover, +button.bg-indigo:focus { + background-color: #510bc4 !important; } + +.bg-purple { + background-color: #6f42c1 !important; } + +a.bg-purple:hover, a.bg-purple:focus, +button.bg-purple:hover, +button.bg-purple:focus { + background-color: #59339d !important; } + +.bg-pink { + background-color: #e83e8c !important; } + +a.bg-pink:hover, a.bg-pink:focus, +button.bg-pink:hover, +button.bg-pink:focus { + background-color: #d91a72 !important; } + +.bg-red { + background-color: #f86c6b !important; } + +a.bg-red:hover, a.bg-red:focus, +button.bg-red:hover, +button.bg-red:focus { + background-color: #f63c3a !important; } + +.bg-orange { + background-color: #f8cb00 !important; } + +a.bg-orange:hover, a.bg-orange:focus, +button.bg-orange:hover, +button.bg-orange:focus { + background-color: #c5a100 !important; } + +.bg-yellow { + background-color: #ffc107 !important; } + +a.bg-yellow:hover, a.bg-yellow:focus, +button.bg-yellow:hover, +button.bg-yellow:focus { + background-color: #d39e00 !important; } + +.bg-green { + background-color: #4dbd74 !important; } + +a.bg-green:hover, a.bg-green:focus, +button.bg-green:hover, +button.bg-green:focus { + background-color: #3a9d5d !important; } + +.bg-teal { + background-color: #20c997 !important; } + +a.bg-teal:hover, a.bg-teal:focus, +button.bg-teal:hover, +button.bg-teal:focus { + background-color: #199d76 !important; } + +.bg-cyan { + background-color: #17a2b8 !important; } + +a.bg-cyan:hover, a.bg-cyan:focus, +button.bg-cyan:hover, +button.bg-cyan:focus { + background-color: #117a8b !important; } + +.bg-white { + background-color: #fff !important; } + +a.bg-white:hover, a.bg-white:focus, +button.bg-white:hover, +button.bg-white:focus { + background-color: #e6e6e6 !important; } + +.bg-gray { + background-color: #536c79 !important; } + +a.bg-gray:hover, a.bg-gray:focus, +button.bg-gray:hover, +button.bg-gray:focus { + background-color: #3e515b !important; } + +.bg-gray-dark { + background-color: #29363d !important; } + +a.bg-gray-dark:hover, a.bg-gray-dark:focus, +button.bg-gray-dark:hover, +button.bg-gray-dark:focus { + background-color: #151b1f !important; } + +.bg-light-blue { + background-color: #63c2de !important; } + +a.bg-light-blue:hover, a.bg-light-blue:focus, +button.bg-light-blue:hover, +button.bg-light-blue:focus { + background-color: #39b2d5 !important; } + +.bg-gray-100 { + background-color: #f0f3f5 !important; } + +a.bg-gray-100:hover, a.bg-gray-100:focus, +button.bg-gray-100:hover, +button.bg-gray-100:focus { + background-color: #d1dbe1 !important; } + +.bg-gray-200 { + background-color: #c2cfd6 !important; } + +a.bg-gray-200:hover, a.bg-gray-200:focus, +button.bg-gray-200:hover, +button.bg-gray-200:focus { + background-color: #a4b7c2 !important; } + +.bg-gray-300 { + background-color: #a4b7c1 !important; } + +a.bg-gray-300:hover, a.bg-gray-300:focus, +button.bg-gray-300:hover, +button.bg-gray-300:focus { + background-color: #869fac !important; } + +.bg-gray-400 { + background-color: #869fac !important; } + +a.bg-gray-400:hover, a.bg-gray-400:focus, +button.bg-gray-400:hover, +button.bg-gray-400:focus { + background-color: #688797 !important; } + +.bg-gray-500 { + background-color: #678898 !important; } + +a.bg-gray-500:hover, a.bg-gray-500:focus, +button.bg-gray-500:hover, +button.bg-gray-500:focus { + background-color: #526d7a !important; } + +.bg-gray-600 { + background-color: #536c79 !important; } + +a.bg-gray-600:hover, a.bg-gray-600:focus, +button.bg-gray-600:hover, +button.bg-gray-600:focus { + background-color: #3e515b !important; } + +.bg-gray-700 { + background-color: #3e515b !important; } + +a.bg-gray-700:hover, a.bg-gray-700:focus, +button.bg-gray-700:hover, +button.bg-gray-700:focus { + background-color: #29363d !important; } + +.bg-gray-800 { + background-color: #29363d !important; } + +a.bg-gray-800:hover, a.bg-gray-800:focus, +button.bg-gray-800:hover, +button.bg-gray-800:focus { + background-color: #151b1f !important; } + +.bg-gray-900 { + background-color: #151b1e !important; } + +a.bg-gray-900:hover, a.bg-gray-900:focus, +button.bg-gray-900:hover, +button.bg-gray-900:focus { + background-color: black !important; } + +.bg-box { + display: flex; + align-items: center; + justify-content: center; + width: 2.5rem; + height: 2.5rem; } + +.b-a-0 { + border: 0 !important; } + +.b-t-0 { + border-top: 0 !important; } + +.b-r-0 { + border-right: 0 !important; } + +.b-b-0 { + border-bottom: 0 !important; } + +.b-l-0 { + border-left: 0 !important; } + +.b-a-1 { + border: 1px solid #c2cfd6; } + +.b-t-1 { + border-top: 1px solid #c2cfd6; } + +.b-r-1 { + border-right: 1px solid #c2cfd6; } + +.b-b-1 { + border-bottom: 1px solid #c2cfd6; } + +.b-l-1 { + border-left: 1px solid #c2cfd6; } + +.b-a-2 { + border: 2px solid #c2cfd6; } + +.b-t-2 { + border-top: 2px solid #c2cfd6; } + +.b-r-2 { + border-right: 2px solid #c2cfd6; } + +.b-b-2 { + border-bottom: 2px solid #c2cfd6; } + +.b-l-2 { + border-left: 2px solid #c2cfd6; } + +@media (max-width: 575.98px) { + .d-down-none { + display: none !important; } } + +@media (max-width: 767.98px) { + .d-sm-down-none { + display: none !important; } } + +@media (max-width: 991.98px) { + .d-md-down-none { + display: none !important; } } + +@media (max-width: 1199.98px) { + .d-lg-down-none { + display: none !important; } } + +.d-xl-down-none { + display: none !important; } + +body { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + +.font-xs { + font-size: .75rem !important; } + +.font-sm { + font-size: .85rem !important; } + +.font-lg { + font-size: 1rem !important; } + +.font-xl { + font-size: 1.25rem !important; } + +.font-2xl { + font-size: 1.5rem !important; } + +.font-3xl { + font-size: 1.75rem !important; } + +.font-4xl { + font-size: 2rem !important; } + +.font-5xl { + font-size: 2.5rem !important; } + +.text-value { + font-size: 1.3125rem; + font-weight: 700; } + +.text-white .text-muted { + color: rgba(255, 255, 255, 0.6) !important; } + +*[dir="rtl"] { + direction: rtl; + unicode-bidi: embed; } + *[dir="rtl"] body { + text-align: right; } + *[dir="rtl"] .dropdown-item { + text-align: right; } + *[dir="rtl"] .dropdown-item i { + margin-right: -10px; + margin-left: 10px; } + *[dir="rtl"] .dropdown-item .badge { + right: auto; + left: 10px; } + +.app-header .navbar-nav .dropdown-menu-right { + right: auto; } diff --git a/public/scss/style.scss b/src/scss/style.scss similarity index 67% rename from public/scss/style.scss rename to src/scss/style.scss index 2a22a3d..cf8c821 100644 --- a/public/scss/style.scss +++ b/src/scss/style.scss @@ -3,6 +3,8 @@ // Import styles @import "node_modules/@coreui/styles/scss/coreui"; +// Temp fix for reactstrap +@import 'node_modules/@coreui/styles/scss/_dropdown-menu-right.scss'; // If you want to add something do it here @import "custom"; diff --git a/public/scss/vendors/_variables.scss b/src/scss/vendors/_variables.scss similarity index 100% rename from public/scss/vendors/_variables.scss rename to src/scss/vendors/_variables.scss diff --git a/src/scss/vendors/chart.js/chart.css b/src/scss/vendors/chart.js/chart.css new file mode 100644 index 0000000..a9c2343 --- /dev/null +++ b/src/scss/vendors/chart.js/chart.css @@ -0,0 +1,42 @@ +.chart-legend, +.bar-legend, +.line-legend, +.pie-legend, +.radar-legend, +.polararea-legend, +.doughnut-legend { + list-style-type: none; + margin-top: 5px; + text-align: center; + -webkit-padding-start: 0; + -moz-padding-start: 0; + padding-left: 0; } + +.chart-legend li, +.bar-legend li, +.line-legend li, +.pie-legend li, +.radar-legend li, +.polararea-legend li, +.doughnut-legend li { + display: inline-block; + white-space: nowrap; + position: relative; + margin-bottom: 4px; + padding: 2px 8px 2px 28px; + font-size: smaller; + cursor: default; } + +.chart-legend li span, +.bar-legend li span, +.line-legend li span, +.pie-legend li span, +.radar-legend li span, +.polararea-legend li span, +.doughnut-legend li span { + display: block; + position: absolute; + left: 0; + top: 0; + width: 20px; + height: 20px; } diff --git a/src/scss/vendors/chart.js/chart.scss b/src/scss/vendors/chart.js/chart.scss new file mode 100644 index 0000000..7e99cca --- /dev/null +++ b/src/scss/vendors/chart.js/chart.scss @@ -0,0 +1,48 @@ +// Import variables +@import '../variables'; + +.chart-legend, +.bar-legend, +.line-legend, +.pie-legend, +.radar-legend, +.polararea-legend, +.doughnut-legend { + list-style-type: none; + margin-top: 5px; + text-align: center; + -webkit-padding-start: 0; + -moz-padding-start: 0; + padding-left: 0; +} +.chart-legend li, +.bar-legend li, +.line-legend li, +.pie-legend li, +.radar-legend li, +.polararea-legend li, +.doughnut-legend li { + display: inline-block; + white-space: nowrap; + position: relative; + margin-bottom: 4px; + @include border-radius($border-radius); + padding: 2px 8px 2px 28px; + font-size: smaller; + cursor: default; +} +.chart-legend li span, +.bar-legend li span, +.line-legend li span, +.pie-legend li span, +.radar-legend li span, +.polararea-legend li span, +.doughnut-legend li span { + display: block; + position: absolute; + left: 0; + top: 0; + width: 20px; + height: 20px; + @include border-radius($border-radius); +} diff --git a/src/views/Base/Breadcrumbs/Breadcrumbs.js b/src/views/Base/Breadcrumbs/Breadcrumbs.js index 216cae1..87431bc 100644 --- a/src/views/Base/Breadcrumbs/Breadcrumbs.js +++ b/src/views/Base/Breadcrumbs/Breadcrumbs.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, CardFooter, Breadcrumb, BreadcrumbItem } from 'reactstrap'; +import React, { Component } from 'react'; +import { Breadcrumb, BreadcrumbItem, Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class Breadcrumbs extends Component { render() { @@ -10,8 +10,8 @@ class Breadcrumbs extends Component { Breadcrumbs -
- + @@ -40,7 +40,7 @@ class Breadcrumbs extends Component {
- ) + ); } } diff --git a/src/views/Base/Cards/Cards.js b/src/views/Base/Cards/Cards.js index 5638cf3..c4487e7 100644 --- a/src/views/Base/Cards/Cards.js +++ b/src/views/Base/Cards/Cards.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Badge, Row, Col, Card, CardHeader, CardFooter, CardBody, Label, Input} from 'reactstrap'; +import React, { Component } from 'react'; +import { Badge, Card, CardBody, CardFooter, CardHeader, Col, Input, Label, Row } from 'reactstrap'; class Cards extends Component { render() { @@ -45,7 +45,7 @@ class Cards extends Component { Card with switch @@ -239,7 +239,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -249,7 +249,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -259,7 +259,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -269,7 +269,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -279,7 +279,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -289,7 +289,7 @@ class Cards extends Component {

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

-
Someone famous in Source Title
+
Someone famous in Source Title
@@ -359,7 +359,7 @@ class Cards extends Component { - ) + ); } } diff --git a/src/views/Base/Carousels/Carousels.js b/src/views/Base/Carousels/Carousels.js index e4565d9..ad7b4f4 100644 --- a/src/views/Base/Carousels/Carousels.js +++ b/src/views/Base/Carousels/Carousels.js @@ -1,41 +1,29 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - Carousel, - CarouselItem, - CarouselControl, - CarouselIndicators, - CarouselCaption -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Carousel, CarouselCaption, CarouselControl, CarouselIndicators, CarouselItem, Col, Row } from 'reactstrap'; const items = [ { src: 'data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22800%22%20height%3D%22400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20400%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_1607923e7e2%20text%20%7B%20fill%3A%23555%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A40pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_1607923e7e2%22%3E%3Crect%20width%3D%22800%22%20height%3D%22400%22%20fill%3D%22%23777%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22285.9296875%22%20y%3D%22217.75625%22%3EFirst%20slide%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E', altText: 'Slide 1', - caption: 'Slide 1' + caption: 'Slide 1', }, { src: 'data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22800%22%20height%3D%22400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20400%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_15ba800aa20%20text%20%7B%20fill%3A%23444%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A40pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_15ba800aa20%22%3E%3Crect%20width%3D%22800%22%20height%3D%22400%22%20fill%3D%22%23666%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22247.3203125%22%20y%3D%22218.3%22%3ESecond%20slide%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E', altText: 'Slide 2', - caption: 'Slide 2' + caption: 'Slide 2', }, { src: 'data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%22800%22%20height%3D%22400%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20400%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%23holder_15ba800aa21%20text%20%7B%20fill%3A%23333%3Bfont-weight%3Anormal%3Bfont-family%3AHelvetica%2C%20monospace%3Bfont-size%3A40pt%20%7D%20%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22holder_15ba800aa21%22%3E%3Crect%20width%3D%22800%22%20height%3D%22400%22%20fill%3D%22%23555%22%3E%3C%2Frect%3E%3Cg%3E%3Ctext%20x%3D%22277%22%20y%3D%22218.3%22%3EThird%20slide%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E', altText: 'Slide 3', - caption: 'Slide 3' - } + caption: 'Slide 3', + }, ]; - class Carousels extends Component { constructor(props) { super(props); - this.state = {activeIndex: 0}; + this.state = { activeIndex: 0 }; this.next = this.next.bind(this); this.previous = this.previous.bind(this); this.goToIndex = this.goToIndex.bind(this); @@ -54,31 +42,27 @@ class Carousels extends Component { next() { if (this.animating) return; const nextIndex = this.state.activeIndex === items.length - 1 ? 0 : this.state.activeIndex + 1; - this.setState({activeIndex: nextIndex}); + this.setState({ activeIndex: nextIndex }); } previous() { if (this.animating) return; const nextIndex = this.state.activeIndex === 0 ? items.length - 1 : this.state.activeIndex - 1; - this.setState({activeIndex: nextIndex}); + this.setState({ activeIndex: nextIndex }); } goToIndex(newIndex) { if (this.animating) return; - this.setState({activeIndex: newIndex}); + this.setState({ activeIndex: newIndex }); } render() { - const {activeIndex} = this.state; + const { activeIndex } = this.state; const slides = items.map((item) => { return ( - - {item.altText}/ + + {item.altText} ); }); @@ -90,8 +74,8 @@ class Carousels extends Component { onExited={this.onExited} key={item.src} > - {item.altText}/ - + {item.altText} + ); }); @@ -103,8 +87,8 @@ class Carousels extends Component { Carousel -
- + @@ -123,10 +107,10 @@ class Carousels extends Component { - + {slides2} - - + + diff --git a/src/views/Base/Collapses/Collapses.js b/src/views/Base/Collapses/Collapses.js index f68a028..2be7dbd 100644 --- a/src/views/Base/Collapses/Collapses.js +++ b/src/views/Base/Collapses/Collapses.js @@ -1,13 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - CardFooter, - Collapse, Button, Fade -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardFooter, CardHeader, Collapse, Fade } from 'reactstrap'; class Collapses extends Component { @@ -23,32 +15,32 @@ class Collapses extends Component { collapse: false, status: 'Closed', fadeIn: true, - timeout: 300 + timeout: 300, }; } onEntering() { - this.setState({status: 'Opening...'}); + this.setState({ status: 'Opening...' }); } onEntered() { - this.setState({status: 'Opened'}); + this.setState({ status: 'Opened' }); } onExiting() { - this.setState({status: 'Closing...'}); + this.setState({ status: 'Closing...' }); } onExited() { - this.setState({status: 'Closed'}); + this.setState({ status: 'Closed' }); } toggle() { - this.setState({collapse: !this.state.collapse}); + this.setState({ collapse: !this.state.collapse }); } toggleFade() { - this.setState({fadeIn: !this.state.fadeIn}); + this.setState({ fadeIn: !this.state.fadeIn }); } render() { @@ -57,8 +49,8 @@ class Collapses extends Component { Collapse -
- + @@ -91,15 +83,15 @@ class Collapses extends Component { - +
Current state: {this.state.status}
Fade -
- + diff --git a/src/views/Base/Dropdowns/Dropdowns.js b/src/views/Base/Dropdowns/Dropdowns.js index d1f3188..c563545 100644 --- a/src/views/Base/Dropdowns/Dropdowns.js +++ b/src/views/Base/Dropdowns/Dropdowns.js @@ -1,9 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, Col, - Card, CardHeader, CardBody, CardFooter, - Dropdown, DropdownToggle, DropdownMenu, DropdownItem, UncontrolledDropdown -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Col, Dropdown, DropdownItem, DropdownMenu, DropdownToggle, Row, UncontrolledDropdown } from 'reactstrap'; class Dropdowns extends Component { constructor(props) { @@ -11,8 +7,8 @@ class Dropdowns extends Component { this.toggle = this.toggle.bind(this); this.state = { - dropdownOpen: new Array(6).fill(false) - } + dropdownOpen: new Array(6).fill(false), + }; } toggle(i) { @@ -20,7 +16,7 @@ class Dropdowns extends Component { return (index === i ? !element : false); }); this.setState({ - dropdownOpen: newArray + dropdownOpen: newArray, }); } @@ -32,8 +28,8 @@ class Dropdowns extends Component { Dropdowns -
- + @@ -49,7 +45,7 @@ class Dropdowns extends Component { Header Action Another Action - + Another Action @@ -69,7 +65,7 @@ class Dropdowns extends Component { Header Action Another Action - + Another Action @@ -89,7 +85,7 @@ class Dropdowns extends Component { Header Action Another Action - + Another Action @@ -101,7 +97,7 @@ class Dropdowns extends Component { Header Action Another Action - + Another Action @@ -113,7 +109,7 @@ class Dropdowns extends Component { Header Action Another Action - + Another Action @@ -124,21 +120,21 @@ class Dropdowns extends Component { Custom Dropdowns - {this.toggle(5)}}> + {this.toggle(5);}}> {this.toggle(5)}} + onClick={() => {this.toggle(5);}} data-toggle="dropdown" aria-expanded={this.state.dropdownOpen[5]} > Custom Dropdown Content * -
{this.toggle(5)}}>Custom dropdown item 1
-
{this.toggle(5)}}>Custom dropdown item 2
-
{this.toggle(5)}}>Custom dropdown item 3
+
{this.toggle(5);}}>Custom dropdown item 1
+
{this.toggle(5);}}>Custom dropdown item 2
+
{this.toggle(5);}}>Custom dropdown item 3

-
{this.toggle(5)}}>Custom dropdown item 4
+
{this.toggle(5);}}>Custom dropdown item 4
diff --git a/src/views/Base/Forms/Forms.js b/src/views/Base/Forms/Forms.js index 8a9bcd7..76dda4d 100644 --- a/src/views/Base/Forms/Forms.js +++ b/src/views/Base/Forms/Forms.js @@ -1,25 +1,25 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import { - Row, - Col, Button, ButtonDropdown, - DropdownToggle, - DropdownMenu, - DropdownItem, Card, - CardHeader, - CardFooter, CardBody, + CardFooter, + CardHeader, + Col, Collapse, + DropdownItem, + DropdownMenu, + DropdownToggle, Form, FormGroup, FormText, - Label, Input, InputGroup, InputGroupAddon, - InputGroupText + InputGroupText, + Label, + Row, } from 'reactstrap'; class Forms extends Component { @@ -49,7 +49,7 @@ class Forms extends Component { - + @@ -57,7 +57,7 @@ class Forms extends Component { - + @@ -101,7 +101,7 @@ class Forms extends Component { - + @@ -117,33 +117,33 @@ class Forms extends Component { - + - + - + - + - + - + @@ -170,7 +170,7 @@ class Forms extends Component { - + This is a help text @@ -179,7 +179,7 @@ class Forms extends Component { - + Please enter your email @@ -188,7 +188,7 @@ class Forms extends Component { - + Please enter a complex password @@ -197,7 +197,7 @@ class Forms extends Component { - + @@ -206,7 +206,7 @@ class Forms extends Component { + placeholder="Content..." /> @@ -288,15 +288,15 @@ class Forms extends Component { - + - + - + @@ -307,15 +307,15 @@ class Forms extends Component { - + - + - + @@ -324,15 +324,15 @@ class Forms extends Component { - + - + - + @@ -343,15 +343,15 @@ class Forms extends Component { - + - + - + @@ -361,7 +361,7 @@ class Forms extends Component { - + @@ -369,7 +369,7 @@ class Forms extends Component { - + @@ -433,7 +433,7 @@ class Forms extends Component { - + Please enter your password @@ -452,12 +452,12 @@ class Forms extends Component {
- + Please enter your email - + Please enter your password
@@ -475,52 +475,52 @@ class Forms extends Component {
- + - + - + - + - + - + - + - + - + - +
@@ -539,19 +539,19 @@ class Forms extends Component { - + - + - + @@ -572,11 +572,11 @@ class Forms extends Component { - + - + @@ -590,11 +590,11 @@ class Forms extends Component {
- + - +
@@ -617,14 +617,14 @@ class Forms extends Component { - + - + @@ -641,7 +641,7 @@ class Forms extends Component { - + .00 @@ -669,14 +669,14 @@ class Forms extends Component { - + - + @@ -689,7 +689,7 @@ class Forms extends Component { - + @@ -720,34 +720,34 @@ class Forms extends Component { Dropdown - + Action Another Action Something else here - + Separated link - + - + { this.setState({ second: !this.state.second }); }}> Dropdown - + Action Another Action Something else here - + Separated link @@ -763,27 +763,27 @@ class Forms extends Component { toggle={() => { this.setState({ third: !this.state.third }); }}> {/**/} Action - + Action Another Action Something else here - + Separated link - + { this.setState({ fourth: !this.state.fourth }); }}> Dropdown - + Action Another Action Something else here - + Separated link @@ -811,42 +811,42 @@ class Forms extends Component {
- + - + - + - + - + - + - + - + - + - +
@@ -870,42 +870,42 @@ class Forms extends Component {
- + - + - + - + - + - + - + - + - + - +
@@ -933,7 +933,7 @@ class Forms extends Component { Username - + @@ -944,7 +944,7 @@ class Forms extends Component { Email - + @@ -955,7 +955,7 @@ class Forms extends Component { Password - + @@ -977,7 +977,7 @@ class Forms extends Component {
- + @@ -985,7 +985,7 @@ class Forms extends Component { - + @@ -993,7 +993,7 @@ class Forms extends Component { - + @@ -1018,7 +1018,7 @@ class Forms extends Component { - + @@ -1026,7 +1026,7 @@ class Forms extends Component { - + @@ -1034,7 +1034,7 @@ class Forms extends Component { - + @@ -1050,7 +1050,7 @@ class Forms extends Component { Form Elements -
+
@@ -1058,80 +1058,80 @@ class Forms extends Component { - - - -
- - - @ - - - -

Here's some help text

+ + + +
+ + + @ + + + +

Here's some help text

+
+
+ + +
+ + + + .00 + + + Here's more help text +
+
+ + +
+ + + $ + + + + .00 + + +
+
+ + +
+ + + + + + +
+
+ + +
+ + + + + + + +
+
+
+ +
- - - -
- - - - .00 - - - Here's more help text -
-
- - -
- - - $ - - - - .00 - - -
-
- - -
- - - - - - -
-
- - -
- - - - - - - -
-
-
- - -
- - + +
- ) + ); } } diff --git a/src/views/Base/Jumbotrons/Jumbotrons.js b/src/views/Base/Jumbotrons/Jumbotrons.js index 83eaa95..2277d86 100644 --- a/src/views/Base/Jumbotrons/Jumbotrons.js +++ b/src/views/Base/Jumbotrons/Jumbotrons.js @@ -1,13 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - CardFooter, - Jumbotron, Button, Container -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Container, Jumbotron } from 'reactstrap'; class Jumbotrons extends Component { @@ -17,8 +9,8 @@ class Jumbotrons extends Component { Jumbotron -
- + @@ -28,7 +20,7 @@ class Jumbotrons extends Component {

Hello, world!

This is a simple hero unit, a simple Jumbotron-style component for calling extra attention to featured content or information.

-
+

It uses utility classes for typgraphy and spacing to space content out within the larger container.

@@ -38,7 +30,8 @@ class Jumbotrons extends Component { - Jumbotron fluid + Jumbotron + fluid diff --git a/src/views/Base/ListGroups/ListGroups.js b/src/views/Base/ListGroups/ListGroups.js index 0d23f12..3135acc 100644 --- a/src/views/Base/ListGroups/ListGroups.js +++ b/src/views/Base/ListGroups/ListGroups.js @@ -1,14 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - CardFooter, - ListGroup, ListGroupItem, ListGroupItemHeading, ListGroupItemText, - Badge -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Badge, Card, CardBody, CardHeader, Col, ListGroup, ListGroupItem, ListGroupItemHeading, ListGroupItemText, Row } from 'reactstrap'; class ListGroups extends Component { @@ -20,8 +11,8 @@ class ListGroups extends Component { List Group -

- + @@ -47,7 +38,8 @@ class ListGroups extends Component { Cras justo odio 14 Dapibus ac facilisis in 2 - Morbi leo risus 1 + Morbi leo risus 1 @@ -104,7 +96,7 @@ class ListGroups extends Component { Porta ac consectetur ac Vestibulum at eros -

+

diff --git a/src/views/Base/Navbars/Navbars.js b/src/views/Base/Navbars/Navbars.js index 67a268a..7962f7e 100644 --- a/src/views/Base/Navbars/Navbars.js +++ b/src/views/Base/Navbars/Navbars.js @@ -1,21 +1,19 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import { - Row, - Col, Card, - CardHeader, CardBody, + CardHeader, Collapse, - Navbar, - NavbarToggler, - NavbarBrand, + DropdownItem, + DropdownMenu, + DropdownToggle, Nav, + Navbar, + NavbarBrand, + NavbarToggler, NavItem, NavLink, UncontrolledDropdown, - DropdownToggle, - DropdownMenu, - DropdownItem } from 'reactstrap'; class Navbars extends Component { @@ -27,19 +25,19 @@ class Navbars extends Component { this.toggleNavbar = this.toggleNavbar.bind(this); this.state = { isOpen: false, - collapsed: true + collapsed: true, }; } toggle() { this.setState({ - isOpen: !this.state.isOpen + isOpen: !this.state.isOpen, }); } toggleNavbar() { this.setState({ - collapsed: !this.state.collapsed + collapsed: !this.state.collapsed, }); } @@ -49,8 +47,8 @@ class Navbars extends Component { Navbar -

- + @@ -58,7 +56,7 @@ class Navbars extends Component { Bootstrap - + -
+

Link based

diff --git a/src/views/Base/Paginations/Pagnations.js b/src/views/Base/Paginations/Pagnations.js index 41c1251..806072b 100644 --- a/src/views/Base/Paginations/Pagnations.js +++ b/src/views/Base/Paginations/Pagnations.js @@ -1,12 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - Pagination, PaginationItem, PaginationLink -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Pagination, PaginationItem, PaginationLink } from 'reactstrap'; class Paginations extends Component { @@ -16,8 +9,8 @@ class Paginations extends Component { Pagination -
- + @@ -60,7 +53,8 @@ class Paginations extends Component { - Pagination disabled and active states + Pagination + disabled and active states @@ -100,7 +94,8 @@ class Paginations extends Component { - Pagination sizing + Pagination + sizing diff --git a/src/views/Base/Popovers/Popovers.js b/src/views/Base/Popovers/Popovers.js index 3394dc3..5c50a42 100644 --- a/src/views/Base/Popovers/Popovers.js +++ b/src/views/Base/Popovers/Popovers.js @@ -1,12 +1,5 @@ -import React, {Component} from 'react'; -import { - Row, - Col, - Card, - CardHeader, - CardBody, - Button, Popover, PopoverHeader, PopoverBody -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Popover, PopoverBody, PopoverHeader } from 'reactstrap'; class PopoverItem extends Component { constructor(props) { @@ -14,13 +7,13 @@ class PopoverItem extends Component { this.toggle = this.toggle.bind(this); this.state = { - popoverOpen: false + popoverOpen: false, }; } toggle() { this.setState({ - popoverOpen: !this.state.popoverOpen + popoverOpen: !this.state.popoverOpen, }); } @@ -50,27 +43,27 @@ class Popovers extends Component { popovers: [ { placement: 'top', - text: 'Top' + text: 'Top', }, { placement: 'bottom', - text: 'Bottom' + text: 'Bottom', }, { placement: 'left', - text: 'Left' + text: 'Left', }, { placement: 'right', - text: 'Right' - } - ] + text: 'Right', + }, + ], }; } toggle() { this.setState({ - popoverOpen: !this.state.popoverOpen + popoverOpen: !this.state.popoverOpen, }); } @@ -80,8 +73,8 @@ class Popovers extends Component { Popovers -
- + @@ -102,7 +95,7 @@ class Popovers extends Component { list - { this.state.popovers.map((popover, i) => { + {this.state.popovers.map((popover, i) => { return ; })} diff --git a/src/views/Base/ProgressBar/ProgressBar.js b/src/views/Base/ProgressBar/ProgressBar.js index 5aa6574..bf900b7 100644 --- a/src/views/Base/ProgressBar/ProgressBar.js +++ b/src/views/Base/ProgressBar/ProgressBar.js @@ -1,10 +1,5 @@ -import React, {Component} from 'react'; -import { - Card, - CardHeader, - CardBody, - Progress -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Progress } from 'reactstrap'; class ProgressBar extends Component { @@ -14,30 +9,30 @@ class ProgressBar extends Component { Progress -
- +
0%
- +
25%
- +
50%
- +
75%
- +
100%
- +
Multiple bars
- - - - - + + + + +
@@ -47,11 +42,11 @@ class ProgressBar extends Component { color variants - - - - - + + + + + @@ -79,16 +74,16 @@ class ProgressBar extends Component { striped - - - - - + + + + + - - - - + + + + @@ -98,16 +93,16 @@ class ProgressBar extends Component { animated - - - - - + + + + + - - - - + + + + @@ -119,11 +114,11 @@ class ProgressBar extends Component {
Plain
- - - - - + + + + +
With Labels
@@ -147,13 +142,13 @@ class ProgressBar extends Component {
1 of 5
- +
50 of 135
- +
75 of 111
- +
463 of 500
- +
Various (40) of 55
diff --git a/src/views/Base/Switches/Switches.js b/src/views/Base/Switches/Switches.js index d1a90d1..7c60e8c 100644 --- a/src/views/Base/Switches/Switches.js +++ b/src/views/Base/Switches/Switches.js @@ -1,5 +1,5 @@ -import React, {Component} from "react"; -import {Row, Col, Card, CardHeader, CardBody, Label, Input, Table} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Col, Input, Label, Row, Table } from 'reactstrap'; class Switches extends Component { render() { @@ -14,37 +14,37 @@ class Switches extends Component {                     @@ -59,37 +59,37 @@ class Switches extends Component {                     @@ -104,37 +104,37 @@ class Switches extends Component {                     @@ -149,37 +149,37 @@ class Switches extends Component {                     @@ -194,37 +194,37 @@ class Switches extends Component {                     @@ -239,37 +239,37 @@ class Switches extends Component {                     @@ -284,37 +284,37 @@ class Switches extends Component {                     @@ -329,37 +329,37 @@ class Switches extends Component {                     @@ -374,37 +374,37 @@ class Switches extends Component {                     @@ -420,37 +420,37 @@ class Switches extends Component {                     @@ -466,37 +466,37 @@ class Switches extends Component {                     @@ -511,37 +511,37 @@ class Switches extends Component {                     @@ -556,37 +556,37 @@ class Switches extends Component {                     @@ -601,37 +601,37 @@ class Switches extends Component {                     @@ -646,37 +646,37 @@ class Switches extends Component {                     @@ -691,37 +691,37 @@ class Switches extends Component {                     @@ -736,37 +736,37 @@ class Switches extends Component {                     @@ -781,37 +781,37 @@ class Switches extends Component {                     @@ -826,37 +826,37 @@ class Switches extends Component {                     @@ -885,7 +885,7 @@ class Switches extends Component { @@ -900,7 +900,7 @@ class Switches extends Component { @@ -915,7 +915,7 @@ class Switches extends Component { @@ -930,7 +930,7 @@ class Switches extends Component { @@ -948,8 +948,7 @@ class Switches extends Component {
- - ) + ); } } diff --git a/src/views/Base/Tables/Tables.js b/src/views/Base/Tables/Tables.js index 521d0dd..87c7dcb 100644 --- a/src/views/Base/Tables/Tables.js +++ b/src/views/Base/Tables/Tables.js @@ -1,17 +1,5 @@ -import React, {Component} from 'react'; -import { - Badge, - Row, - Col, - Card, - CardHeader, - CardBody, - Table, - Pagination, - PaginationItem, - PaginationLink -} from 'reactstrap'; - +import React, { Component } from 'react'; +import { Badge, Card, CardBody, CardHeader, Col, Pagination, PaginationItem, PaginationLink, Row, Table } from 'reactstrap'; class Tables extends Component { render() { @@ -398,7 +386,7 @@ class Tables extends Component {
- ) + ); } } diff --git a/src/views/Base/Tabs/Tabs.js b/src/views/Base/Tabs/Tabs.js index cb3829b..de7dc3e 100644 --- a/src/views/Base/Tabs/Tabs.js +++ b/src/views/Base/Tabs/Tabs.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Badge, Row, Col, TabContent, TabPane, Nav, NavItem, NavLink} from 'reactstrap'; +import React, { Component } from 'react'; +import { Badge, Col, Nav, NavItem, NavLink, Row, TabContent, TabPane } from 'reactstrap'; import classnames from 'classnames'; class Tabs extends Component { @@ -9,14 +9,14 @@ class Tabs extends Component { this.toggle = this.toggle.bind(this); this.state = { - activeTab: '1' + activeTab: '1', }; } toggle(tab) { if (this.state.activeTab !== tab) { this.setState({ - activeTab: tab + activeTab: tab, }); } } @@ -134,7 +134,7 @@ class Tabs extends Component { className={classnames({ active: this.state.activeTab === '1' })} onClick={() => { this.toggle('1'); }} > - Calculator + Calculator @@ -143,7 +143,7 @@ class Tabs extends Component { onClick={() => { this.toggle('2'); }} > Shopping cart + className={this.state.activeTab === '2' ? '' : 'd-none'}> Shopping cart @@ -151,7 +151,7 @@ class Tabs extends Component { className={classnames({ active: this.state.activeTab === '3' })} onClick={() => { this.toggle('3'); }} > - Charts + Charts @@ -186,7 +186,7 @@ class Tabs extends Component { className={classnames({ active: this.state.activeTab === '1' })} onClick={() => { this.toggle('1'); }} > - Calculator {'\u00A0'} Calculator {'\u00A0'}New @@ -196,7 +196,7 @@ class Tabs extends Component { onClick={() => { this.toggle('2'); }} > Shopping cart {'\u00A0'}29 + className={this.state.activeTab === '2' ? '' : 'd-none'}> Shopping cart {'\u00A0'}29 @@ -204,7 +204,7 @@ class Tabs extends Component { className={classnames({ active: this.state.activeTab === '3' })} onClick={() => { this.toggle('3'); }} > - Charts + Charts @@ -234,7 +234,7 @@ class Tabs extends Component {
- ) + ); } } diff --git a/src/views/Base/Tooltips/Tooltips.js b/src/views/Base/Tooltips/Tooltips.js index 4b71b92..beca27c 100644 --- a/src/views/Base/Tooltips/Tooltips.js +++ b/src/views/Base/Tooltips/Tooltips.js @@ -1,11 +1,5 @@ -import React, {Component} from 'react'; -import { - Card, - CardHeader, - CardBody, - Tooltip, UncontrolledTooltip, - Button -} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Tooltip, UncontrolledTooltip } from 'reactstrap'; class TooltipItem extends React.Component { constructor(props) { @@ -13,13 +7,13 @@ class TooltipItem extends React.Component { this.toggle = this.toggle.bind(this); this.state = { - tooltipOpen: false + tooltipOpen: false, }; } toggle() { this.setState({ - tooltipOpen: !this.state.tooltipOpen + tooltipOpen: !this.state.tooltipOpen, }); } @@ -48,21 +42,21 @@ class Tooltips extends Component { tooltips: [ { placement: 'top', - text: 'Top' + text: 'Top', }, { placement: 'bottom', - text: 'Bottom' + text: 'Bottom', }, { placement: 'left', - text: 'Left' + text: 'Left', }, { placement: 'right', - text: 'Right' - } - ] + text: 'Right', + }, + ], }; } @@ -71,53 +65,56 @@ class Tooltips extends Component { return (index === i ? !element : false); }); this.setState({ - tooltipOpen: newArray + tooltipOpen: newArray, }); } - render() { + render() { return (
Tooltips -
- +

Somewhere in here is a tooltip.

- {this.toggle(0)}}> + {this.toggle(0);}}> Hello world!
- Tooltip disable autohide + Tooltip + disable autohide

Sometimes you need to allow users to select text within a tooltip.

- {this.toggle(1)}}> + {this.toggle(1);}}> Try to select this text!
- Tooltip list + Tooltip + list - { this.state.tooltips.map((tooltip, i) => { + {this.state.tooltips.map((tooltip, i) => { return ; })} - Tooltip uncontrolled + Tooltip + uncontrolled

Somewhere in here is a tooltip.

diff --git a/src/views/Base/index.js b/src/views/Base/index.js new file mode 100644 index 0000000..0daa89b --- /dev/null +++ b/src/views/Base/index.js @@ -0,0 +1,22 @@ +import Breadcrumbs from './Breadcrumbs'; +import Cards from './Cards'; +import Carousels from './Carousels'; +import Collapses from './Collapses'; +import Dropdowns from './Dropdowns'; +import Forms from './Forms'; +import Jumbotrons from './Jumbotrons'; +import ListGroups from './ListGroups'; +import Navbars from './Navbars'; +import Navs from './Navs'; +import Popovers from './Popovers'; +import Paginations from './Paginations'; +import ProgressBar from './ProgressBar'; +import Switches from './Switches'; +import Tables from './Tables'; +import Tabs from './Tabs'; +import Tooltips from './Tooltips'; + +export { + Breadcrumbs, Cards, Carousels, Collapses, Dropdowns, Forms, Jumbotrons, ListGroups, Navbars, Navs, Popovers, ProgressBar, Switches, Tables, Tabs, Tooltips, Paginations +}; + diff --git a/src/views/Buttons/ButtonDropdowns/ButtonDropdowns.js b/src/views/Buttons/ButtonDropdowns/ButtonDropdowns.js index 0f31a03..0720d83 100644 --- a/src/views/Buttons/ButtonDropdowns/ButtonDropdowns.js +++ b/src/views/Buttons/ButtonDropdowns/ButtonDropdowns.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, CardFooter, ButtonDropdown, DropdownToggle, DropdownMenu, DropdownItem, Button } from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, ButtonDropdown, Card, CardBody, CardHeader, Col, DropdownItem, DropdownMenu, DropdownToggle, Row } from 'reactstrap'; class ButtonDropdowns extends Component { @@ -8,14 +8,14 @@ class ButtonDropdowns extends Component { this.toggle = this.toggle.bind(this); this.state = { - dropdownOpen: new Array(16).fill(false) + dropdownOpen: new Array(16).fill(false), }; } toggle(i) { const newArray = this.state.dropdownOpen.map((element, index) => { return (index === i ? !element : false); }); this.setState({ - dropdownOpen: newArray + dropdownOpen: newArray, }); } @@ -27,8 +27,8 @@ class ButtonDropdowns extends Component { Button Dropdown -
- + @@ -61,7 +61,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -73,7 +73,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -85,7 +85,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -97,7 +97,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -109,7 +109,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -121,7 +121,7 @@ class ButtonDropdowns extends Component { Header Action Disabled Action - + Another Action @@ -134,67 +134,67 @@ class ButtonDropdowns extends Component { { this.toggle(7); }}> - + Header Action Disabled Action - + Another Action { this.toggle(8); }}> - + Header Action Disabled Action - + Another Action { this.toggle(9); }}> - + Header Action Disabled Action - + Another Action { this.toggle(10); }}> - + Header Action Disabled Action - + Another Action { this.toggle(11); }}> - + Header Action Disabled Action - + Another Action { this.toggle(12); }}> - + Header Action Disabled Action - + Another Action @@ -235,7 +235,7 @@ class ButtonDropdowns extends Component { { this.toggle(15); }}> - + Dropup @@ -250,7 +250,7 @@ class ButtonDropdowns extends Component {
- ) + ); } } diff --git a/src/views/Buttons/ButtonGroups/ButtonGroups.js b/src/views/Buttons/ButtonGroups/ButtonGroups.js index 66f2cb9..25396cd 100644 --- a/src/views/Buttons/ButtonGroups/ButtonGroups.js +++ b/src/views/Buttons/ButtonGroups/ButtonGroups.js @@ -1,5 +1,22 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, ButtonDropdown, DropdownToggle, DropdownMenu, DropdownItem, Button, ButtonGroup, ButtonToolbar, Input, InputGroup, InputGroupAddon, InputGroupText } from 'reactstrap'; +import React, { Component } from 'react'; +import { + Button, + ButtonDropdown, + ButtonGroup, + ButtonToolbar, + Card, + CardBody, + CardHeader, + Col, + DropdownItem, + DropdownMenu, + DropdownToggle, + Input, + InputGroup, + InputGroupAddon, + InputGroupText, + Row, +} from 'reactstrap'; class ButtonGroups extends Component { @@ -8,14 +25,14 @@ class ButtonGroups extends Component { this.toggle = this.toggle.bind(this); this.state = { - dropdownOpen: new Array(2).fill(false) + dropdownOpen: new Array(2).fill(false), }; } toggle(i) { const newArray = this.state.dropdownOpen.map((element, index) => { return (index === i ? !element : false); }); this.setState({ - dropdownOpen: newArray + dropdownOpen: newArray, }); } @@ -27,8 +44,8 @@ class ButtonGroups extends Component { Button Group -
- + @@ -66,7 +83,8 @@ class ButtonGroups extends Component { - Button Toolbar mix with input groups + Button Toolbar + mix with input groups @@ -105,13 +123,13 @@ class ButtonGroups extends Component { -
+
-
+
@@ -162,7 +180,7 @@ class ButtonGroups extends Component {
- ) + ); } } diff --git a/src/views/Buttons/Buttons/Buttons.js b/src/views/Buttons/Buttons/Buttons.js index aa979c9..fbaaa24 100644 --- a/src/views/Buttons/Buttons/Buttons.js +++ b/src/views/Buttons/Buttons/Buttons.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, Button} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class Buttons extends Component { render() { @@ -207,7 +207,7 @@ class Buttons extends Component {
- ) + ); } } diff --git a/src/views/Buttons/SocialButtons/SocialButtons.js b/src/views/Buttons/SocialButtons/SocialButtons.js index 4826233..c066897 100644 --- a/src/views/Buttons/SocialButtons/SocialButtons.js +++ b/src/views/Buttons/SocialButtons/SocialButtons.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, Button} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class SocialButtons extends Component { render() { @@ -11,7 +11,7 @@ class SocialButtons extends Component { Social Media Button Usage ex. - <button className="btn-facebook"><span> + <button className="btn-facebook"><span> Facebook</span></Button> @@ -112,7 +112,7 @@ class SocialButtons extends Component { Social Media Button Only icons. Usage ex. - <button className="btn-facebook icon"><span> + <button className="btn-facebook icon"><span> Facebook</span></Button> @@ -213,7 +213,7 @@ class SocialButtons extends Component { Social Media Button Only text. Usage ex. - <button className="btn-facebook text"><span> + <button className="btn-facebook text"><span> Facebook</span></Button> @@ -311,7 +311,7 @@ class SocialButtons extends Component {
- ) + ); } } diff --git a/src/views/Buttons/index.js b/src/views/Buttons/index.js new file mode 100644 index 0000000..f2c9e3e --- /dev/null +++ b/src/views/Buttons/index.js @@ -0,0 +1,8 @@ +import ButtonDropdowns from './ButtonDropdowns'; +import ButtonGroups from './ButtonGroups'; +import Buttons from './Buttons'; +import SocialButtons from './SocialButtons'; + +export { + ButtonDropdowns, ButtonGroups, Buttons, SocialButtons +} \ No newline at end of file diff --git a/src/views/Charts/Charts.js b/src/views/Charts/Charts.js index 619c6b8..ef551e3 100644 --- a/src/views/Charts/Charts.js +++ b/src/views/Charts/Charts.js @@ -1,6 +1,6 @@ -import React, {Component} from 'react'; -import {Bar, Doughnut, Line, Pie, Polar, Radar} from 'react-chartjs-2'; -import {CardColumns, Card, CardHeader, CardBody} from 'reactstrap'; +import React, { Component } from 'react'; +import { Bar, Doughnut, Line, Pie, Polar, Radar } from 'react-chartjs-2'; +import { Card, CardBody, CardColumns, CardHeader } from 'reactstrap'; const line = { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], @@ -24,9 +24,9 @@ const line = { pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, - data: [65, 59, 80, 81, 56, 55, 40] - } - ] + data: [65, 59, 80, 81, 56, 55, 40], + }, + ], }; const bar = { @@ -39,30 +39,31 @@ const bar = { borderWidth: 1, hoverBackgroundColor: 'rgba(255,99,132,0.4)', hoverBorderColor: 'rgba(255,99,132,1)', - data: [65, 59, 80, 81, 56, 55, 40] - } - ] + data: [65, 59, 80, 81, 56, 55, 40], + }, + ], }; const doughnut = { labels: [ 'Red', 'Green', - 'Yellow' + 'Yellow', ], - datasets: [{ - data: [300, 50, 100], - backgroundColor: [ - '#FF6384', - '#36A2EB', - '#FFCE56' - ], - hoverBackgroundColor: [ - '#FF6384', - '#36A2EB', - '#FFCE56' - ] - }] + datasets: [ + { + data: [300, 50, 100], + backgroundColor: [ + '#FF6384', + '#36A2EB', + '#FFCE56', + ], + hoverBackgroundColor: [ + '#FF6384', + '#36A2EB', + '#FFCE56', + ], + }], }; const radar = { @@ -76,7 +77,7 @@ const radar = { pointBorderColor: '#fff', pointHoverBackgroundColor: '#fff', pointHoverBorderColor: 'rgba(179,181,198,1)', - data: [65, 59, 90, 81, 56, 55, 40] + data: [65, 59, 90, 81, 56, 55, 40], }, { label: 'My Second dataset', @@ -86,57 +87,59 @@ const radar = { pointBorderColor: '#fff', pointHoverBackgroundColor: '#fff', pointHoverBorderColor: 'rgba(255,99,132,1)', - data: [28, 48, 40, 19, 96, 27, 100] - } - ] + data: [28, 48, 40, 19, 96, 27, 100], + }, + ], }; const pie = { labels: [ 'Red', 'Green', - 'Yellow' + 'Yellow', ], - datasets: [{ - data: [300, 50, 100], - backgroundColor: [ - '#FF6384', - '#36A2EB', - '#FFCE56' - ], - hoverBackgroundColor: [ - '#FF6384', - '#36A2EB', - '#FFCE56' - ] - }] + datasets: [ + { + data: [300, 50, 100], + backgroundColor: [ + '#FF6384', + '#36A2EB', + '#FFCE56', + ], + hoverBackgroundColor: [ + '#FF6384', + '#36A2EB', + '#FFCE56', + ], + }], }; const polar = { - datasets: [{ - data: [ - 11, - 16, - 7, - 3, - 14 - ], - backgroundColor: [ - '#FF6384', - '#4BC0C0', - '#FFCE56', - '#E7E9ED', - '#36A2EB' - ], - label: 'My dataset' // for legend - }], + datasets: [ + { + data: [ + 11, + 16, + 7, + 3, + 14, + ], + backgroundColor: [ + '#FF6384', + '#4BC0C0', + '#FFCE56', + '#E7E9ED', + '#36A2EB', + ], + label: 'My dataset' // for legend + }], labels: [ 'Red', 'Green', 'Yellow', 'Grey', - 'Blue' - ] + 'Blue', + ], }; class Charts extends Component { @@ -147,7 +150,7 @@ class Charts extends Component { Line Chart -
+
docs @@ -155,18 +158,14 @@ class Charts extends Component {
- +
Bar Chart -
+
docs @@ -174,18 +173,14 @@ class Charts extends Component {
- +
Doughnut Chart -
+
docs @@ -193,14 +188,14 @@ class Charts extends Component {
- +
Radar Chart -
+
docs @@ -208,14 +203,14 @@ class Charts extends Component {
- +
Pie Chart -
+
docs @@ -223,14 +218,14 @@ class Charts extends Component {
- +
Polar Area Chart -
+
docs @@ -238,13 +233,13 @@ class Charts extends Component {
- +
- ) + ); } } diff --git a/src/views/Dashboard/Dashboard.js b/src/views/Dashboard/Dashboard.js index 3f4e990..dfcbf97 100644 --- a/src/views/Dashboard/Dashboard.js +++ b/src/views/Dashboard/Dashboard.js @@ -1,27 +1,26 @@ import React, { Component } from 'react'; -import {Bar, Line} from 'react-chartjs-2'; +import { Bar, Line } from 'react-chartjs-2'; import { Badge, - Row, - Col, - Progress, - Dropdown, - DropdownToggle, - DropdownMenu, - DropdownItem, + Button, + ButtonDropdown, + ButtonGroup, + ButtonToolbar, Card, - CardHeader, CardBody, CardFooter, + CardHeader, CardTitle, - Button, - ButtonToolbar, - ButtonGroup, - ButtonDropdown, - Label, - Input, - Table + Col, + Dropdown, + DropdownItem, + DropdownMenu, + DropdownToggle, + Progress, + Row, + Table, } from 'reactstrap'; +import Widget03 from '../../views/Widgets/Widget03' const brandPrimary = '#20a8d8'; const brandSuccess = '#4dbd74'; @@ -37,48 +36,50 @@ const cardChartData1 = { label: 'My First dataset', backgroundColor: brandPrimary, borderColor: 'rgba(255,255,255,.55)', - data: [65, 59, 84, 84, 51, 55, 40] - } + data: [65, 59, 84, 84, 51, 55, 40], + }, ], }; const cardChartOpts1 = { maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - gridLines: { - color: 'transparent', - zeroLineColor: 'transparent' - }, - ticks: { - fontSize: 2, - fontColor: 'transparent', - } + xAxes: [ + { + gridLines: { + color: 'transparent', + zeroLineColor: 'transparent', + }, + ticks: { + fontSize: 2, + fontColor: 'transparent', + }, - }], - yAxes: [{ - display: false, - ticks: { + }], + yAxes: [ + { display: false, - min: Math.min.apply(Math, cardChartData1.datasets[0].data) - 5, - max: Math.max.apply(Math, cardChartData1.datasets[0].data) + 5, - } - }], + ticks: { + display: false, + min: Math.min.apply(Math, cardChartData1.datasets[0].data) - 5, + max: Math.max.apply(Math, cardChartData1.datasets[0].data) + 5, + }, + }], }, elements: { line: { - borderWidth: 1 + borderWidth: 1, }, point: { radius: 4, hitRadius: 10, hoverRadius: 4, }, - } -} + }, +}; // Card Chart 2 const cardChartData2 = { @@ -88,49 +89,51 @@ const cardChartData2 = { label: 'My First dataset', backgroundColor: brandInfo, borderColor: 'rgba(255,255,255,.55)', - data: [1, 18, 9, 17, 34, 22, 11] - } + data: [1, 18, 9, 17, 34, 22, 11], + }, ], }; const cardChartOpts2 = { maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - gridLines: { - color: 'transparent', - zeroLineColor: 'transparent' - }, - ticks: { - fontSize: 2, - fontColor: 'transparent', - } + xAxes: [ + { + gridLines: { + color: 'transparent', + zeroLineColor: 'transparent', + }, + ticks: { + fontSize: 2, + fontColor: 'transparent', + }, - }], - yAxes: [{ - display: false, - ticks: { + }], + yAxes: [ + { display: false, - min: Math.min.apply(Math, cardChartData2.datasets[0].data) - 5, - max: Math.max.apply(Math, cardChartData2.datasets[0].data) + 5, - } - }], + ticks: { + display: false, + min: Math.min.apply(Math, cardChartData2.datasets[0].data) - 5, + max: Math.max.apply(Math, cardChartData2.datasets[0].data) + 5, + }, + }], }, elements: { line: { tension: 0.00001, - borderWidth: 1 + borderWidth: 1, }, point: { radius: 4, hitRadius: 10, hoverRadius: 4, }, - } -} + }, +}; // Card Chart 3 const cardChartData3 = { @@ -140,35 +143,37 @@ const cardChartData3 = { label: 'My First dataset', backgroundColor: 'rgba(255,255,255,.2)', borderColor: 'rgba(255,255,255,.55)', - data: [78, 81, 80, 45, 34, 12, 40] - } + data: [78, 81, 80, 45, 34, 12, 40], + }, ], }; const cardChartOpts3 = { maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - display: false - }], - yAxes: [{ - display: false - }], + xAxes: [ + { + display: false, + }], + yAxes: [ + { + display: false, + }], }, elements: { line: { - borderWidth: 2 + borderWidth: 2, }, point: { radius: 0, hitRadius: 10, hoverRadius: 4, }, - } -} + }, +}; // Card Chart 4 const cardChartData4 = { @@ -178,33 +183,35 @@ const cardChartData4 = { label: 'My First dataset', backgroundColor: 'rgba(255,255,255,.3)', borderColor: 'transparent', - data: [78, 81, 80, 45, 34, 12, 40, 75, 34, 89, 32, 68, 54, 72, 18, 98] - } + data: [78, 81, 80, 45, 34, 12, 40, 75, 34, 89, 32, 68, 54, 72, 18, 98], + }, ], }; const cardChartOpts4 = { maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - display: false, - barPercentage: 0.6, - }], - yAxes: [{ - display: false, - }] - } -} + xAxes: [ + { + display: false, + barPercentage: 0.6, + }], + yAxes: [ + { + display: false, + }], + }, +}; // Social Box Chart const socialBoxData = [ - {data: [65, 59, 84, 84, 51, 55, 40], label: 'facebook'}, - {data: [1, 13, 9, 17, 34, 41, 38], label: 'twitter'}, - {data: [78, 81, 80, 45, 34, 12, 40], label: 'linkedin'}, - {data: [35, 23, 56, 22, 97, 23, 64], label: 'google'} + { data: [65, 59, 84, 84, 51, 55, 40], label: 'facebook' }, + { data: [1, 13, 9, 17, 34, 41, 38], label: 'twitter' }, + { data: [78, 81, 80, 45, 34, 12, 40], label: 'linkedin' }, + { data: [35, 23, 56, 22, 97, 23, 64], label: 'google' }, ]; const makeSocialBoxData = (dataSetNo) => { @@ -219,8 +226,8 @@ const makeSocialBoxData = (dataSetNo) => { borderWidth: 2, data: dataset.data, label: dataset.label, - } - ] + }, + ], }; return () => data; }; @@ -229,52 +236,54 @@ const socialChartOpts = { responsive: true, maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - display: false - }], - yAxes: [{ - display: false - }] + xAxes: [ + { + display: false, + }], + yAxes: [ + { + display: false, + }], }, elements: { point: { radius: 0, hitRadius: 10, hoverRadius: 4, - hoverBorderWidth: 3 - } - } + hoverBorderWidth: 3, + }, + }, }; // sparkline charts const sparkLineChartData = [ { data: [35, 23, 56, 22, 97, 23, 64], - label: 'New Clients' + label: 'New Clients', }, { data: [65, 59, 84, 84, 51, 55, 40], - label: 'Recurring Clients' + label: 'Recurring Clients', }, { data: [35, 23, 56, 22, 97, 23, 64], - label: 'Pageviews' + label: 'Pageviews', }, { data: [65, 59, 84, 84, 51, 55, 40], - label: 'Organic' + label: 'Organic', }, { data: [78, 81, 80, 45, 34, 12, 40], - label: 'CTR' + label: 'CTR', }, { data: [1, 13, 9, 17, 34, 41, 38], - label: 'Bounce Rate' - } + label: 'Bounce Rate', + }, ]; const makeSparkLineData = (dataSetNo, variant) => { @@ -286,8 +295,8 @@ const makeSparkLineData = (dataSetNo, variant) => { backgroundColor: 'transparent', borderColor: variant ? variant : '#c2cfd6', data: dataset.data, - label: dataset.label - } + label: dataset.label, + }, ], }; return () => data; @@ -297,27 +306,29 @@ const sparklineChartOpts = { responsive: true, maintainAspectRatio: true, scales: { - xAxes: [{ - display: false, - }], - yAxes: [{ - display: false, - }] + xAxes: [ + { + display: false, + }], + yAxes: [ + { + display: false, + }], }, elements: { line: { - borderWidth: 2 + borderWidth: 2, }, point: { radius: 0, hitRadius: 10, hoverRadius: 4, hoverBorderWidth: 3, - } + }, }, legend: { - display: false - } + display: false, + }, }; // Main Chart @@ -358,7 +369,7 @@ const mainChart = { borderColor: brandInfo, pointHoverBackgroundColor: '#fff', borderWidth: 2, - data: data1 + data: data1, }, { label: 'My Second dataset', @@ -366,7 +377,7 @@ const mainChart = { borderColor: brandSuccess, pointHoverBackgroundColor: '#fff', borderWidth: 2, - data: data2 + data: data2, }, { label: 'My Third dataset', @@ -375,30 +386,32 @@ const mainChart = { pointHoverBackgroundColor: '#fff', borderWidth: 1, borderDash: [8, 5], - data: data3 - } - ] -} + data: data3, + }, + ], +}; const mainChartOpts = { maintainAspectRatio: false, legend: { - display: false + display: false, }, scales: { - xAxes: [{ - gridLines: { - drawOnChartArea: false, - } - }], - yAxes: [{ - ticks: { - beginAtZero: true, - maxTicksLimit: 5, - stepSize: Math.ceil(250 / 5), - max: 250 - } - }] + xAxes: [ + { + gridLines: { + drawOnChartArea: false, + }, + }], + yAxes: [ + { + ticks: { + beginAtZero: true, + maxTicksLimit: 5, + stepSize: Math.ceil(250 / 5), + max: 250, + }, + }], }, elements: { point: { @@ -406,10 +419,9 @@ const mainChartOpts = { hitRadius: 10, hoverRadius: 4, hoverBorderWidth: 3, - } - } -} - + }, + }, +}; class Dashboard extends Component { constructor(props) { @@ -420,19 +432,19 @@ class Dashboard extends Component { this.state = { dropdownOpen: false, - radioSelected: 2 + radioSelected: 2, }; } toggle() { this.setState({ - dropdownOpen: !this.state.dropdownOpen + dropdownOpen: !this.state.dropdownOpen, }); } onRadioBtnClick(radioSelected) { this.setState({ - radioSelected: radioSelected + radioSelected: radioSelected, }); } @@ -461,8 +473,8 @@ class Dashboard extends Component {

9.823

Members online

-
- +
+
@@ -486,8 +498,8 @@ class Dashboard extends Component {

9.823

Members online

-
- +
+
@@ -511,8 +523,8 @@ class Dashboard extends Component {

9.823

Members online

-
- +
+
@@ -536,8 +548,8 @@ class Dashboard extends Component {

9.823

Members online

-
- +
+
@@ -562,38 +574,38 @@ class Dashboard extends Component { -
- +
+
-
    -
  • + +
    Visits
    29.703 Users (40%) - -
  • -
  • + + +
    Unique
    24.093 Users (20%) - -
  • -
  • + + +
    Pageviews
    78.706 Views (60%) - -
  • -
  • + + +
    New Users
    22.123 Users (80%) - -
  • -
  • + + +
    Bounce Rate
    - Average 40.15% - -
  • -
+ Average Rate (40.15%) + + +
@@ -601,79 +613,73 @@ class Dashboard extends Component { -
- + ({ variant: 'facebook', friends: '89k', feeds: '459' })} >
- + +
+
+ + + +
+
+ +
+ +
+
+
+
+
973k
+
followers
+
+
+
1.792
+
tweets
+
-
    -
  • - 89k - friends -
  • -
  • - 459 - feeds -
  • -
-
- -
- +
+
+ +
+ +
+
+
+
+
500+
+
contacts
+
+
+
292
+
feeds
+
-
    -
  • - 973k - followers -
  • -
  • - 1.792 - tweets -
  • -
- -
- -
- +
+
+ +
+ +
-
    -
  • - 500+ - contacts -
  • -
  • - 292 - feeds -
  • -
-
- - - -
- -
- +
+
+
894
+
followers
+
+
+
92
+
circles
+
-
    -
  • - 894 - followers -
  • -
  • - 92 - circles -
  • -
@@ -682,317 +688,340 @@ class Dashboard extends Component { - Traffic {'&'} Sales + Traffic {' & '} Sales - +
New Clients -
+
9,123
- +
Recurring Clients -
+
22,643
- +
-
-
    -
  • -
    +
    +
    +
    + Monday -
    -
    - - -
    -
  • -
  • -
    - Tuesday -
    -
    - - -
    -
  • -
  • -
    - Wednesday -
    -
    - - -
    -
  • -
  • -
    - Thursday -
    -
    - - -
    -
  • -
  • -
    - Friday -
    -
    - - -
    -
  • -
  • -
    - Saturday -
    -
    - - -
    -
  • -
  • -
    - Sunday -
    -
    - - -
    -
  • -
  • - - New clients -   - Recurring clients -
  • -
+ +
+
+ + +
+
+
+
+ + Tuesday + +
+
+ + +
+
+
+
+ + Wednesday + +
+
+ + +
+
+
+
+ + Thursday + +
+
+ + +
+
+
+
+ + Friday + +
+
+ + +
+
+
+
+ + Saturday + +
+
+ + +
+
+
+
+ + Sunday + +
+
+ + +
+
+
+ + New clients +   + Recurring clients +
- +
Pageviews -
+
78,623
- +
Organic -
+
49,123
- +
-
-
    -
  • - - Male - 43% -
    - +
    +
      +
      +
      + + Male + 43%
      - -
    • - - Female - 37% -
      - +
      +
      -
    • -
    • -
    • - - Organic Search - 191,235 (56%) -
      - +
      +
      +
      + + Female + 37%
      -
    • -
    • - - Facebook - 51,223 (15%) -
      - +
      +
      -
    • -
    • - - Twitter - 37,564 (11%) -
      - +
      +
      +
      + + Organic Search + 191,235 (56%)
      -
    • -
    • - - LinkedIn - 27,319 (8%) -
      - +
      +
      -
    • -
    • +
    • +
      +
      + + Facebook + 51,223 (15%) +
      +
      + +
      +
      +
      +
      + + Twitter + 37,564 (11%) +
      +
      + +
      +
      +
      +
      + + LinkedIn + 27,319 (8%) +
      +
      + +
      +
      +
      - -
    - - - - -
    - CTR -
    - 23% -
    - -
    -
    - - -
    - Bounce Rate -
    - 5% -
    - -
    -
    - -
    -
    -
      -
    • - -
      -
      iMac 4k
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.924 -
      -
      - -
      -
    • -
    • - -
      -
      Samsung Galaxy Edge
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.224 -
      -
      - -
      -
    • -
    • - -
      -
      iPhone 6S
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 1.163 -
      -
      - -
      -
    • -
    • - -
      -
      Premium accounts
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 928 -
      -
      - -
      -
    • -
    • - -
      -
      Spotify Subscriptions
      - Lorem ipsum dolor sit amet -
      -
      -
      Sold this week
      - 893 -
      -
      - -
      -
    • -
    • - -
      -
      Ebook
      - Lorem ipsum dolor sit amet -
      -
      -
      Downloads
      - 121.924 -
      -
      - -
      -
    • -
    • - -
      -
      Photos
      - Lorem ipsum dolor sit amet -
      -
      -
      Uploaded
      - 12.125 -
      -
      - -
      -
    • -
    • - -
    • +
+ {/**/} + {/**/} + {/**/} + {/*
*/} + {/*CTR*/} + {/*
*/} + {/*23%*/} + {/*
*/} + {/**/} + {/*
*/} + {/*
*/} + {/**/} + {/**/} + {/*
*/} + {/*Bounce Rate*/} + {/*
*/} + {/*5%*/} + {/*
*/} + {/**/} + {/*
*/} + {/*
*/} + {/**/} + {/*
*/} + {/*
*/} + {/*
    */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    iMac 4k
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Sold this week
    */} + {/*1.924*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    Samsung Galaxy Edge
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Sold this week
    */} + {/*1.224*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    iPhone 6S
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Sold this week
    */} + {/*1.163*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    Premium accounts
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Sold this week
    */} + {/*928*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    Spotify Subscriptions
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Sold this week
    */} + {/*893*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    Ebook
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Downloads
    */} + {/*121.924*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
    */} + {/*
    Photos
    */} + {/*Lorem ipsum dolor sit amet*/} + {/*
    */} + {/*
    */} + {/*
    Uploaded
    */} + {/*12.125*/} + {/*
    */} + {/*
    */} + {/**/} + {/*
    */} + {/*
  • */} + {/*
  • */} + {/**/} + {/*
  • */} + {/*
*/} + {/**/} -
+
@@ -1008,7 +1037,7 @@ class Dashboard extends Component { @@ -1030,10 +1059,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + @@ -1066,10 +1095,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + @@ -1101,10 +1130,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + @@ -1136,10 +1165,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + @@ -1171,10 +1200,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + @@ -1206,10 +1235,10 @@ class Dashboard extends Component { Jun 11, 2015 - Jul 10, 2015 - + - For using the flags inline with text add the classes .flag-icon and .flag-icon-xx (where xx is the ISO 3166-1-alpha-2 code of a country) to an empty span. If you want to have a squared version flag then add the class flag-icon-squared as well. + For using the flags inline with text add the classes .flag-icon and .flag-icon-xx (where xx is the ISO 3166-1-alpha-2 + code of a country) to an empty span. If you want to have a squared version flag then add the class flag-icon-squared as well. @@ -1015,7 +1015,7 @@ class Flags extends Component { - ) + ); } } diff --git a/src/views/Icons/FontAwesome/FontAwesome.js b/src/views/Icons/FontAwesome/FontAwesome.js index 61462aa..a53478e 100644 --- a/src/views/Icons/FontAwesome/FontAwesome.js +++ b/src/views/Icons/FontAwesome/FontAwesome.js @@ -1,268 +1,267 @@ -import React, {Component} from 'react'; -import {Alert, Row, Col, Card, CardHeader, CardBody} from 'reactstrap'; - +import React, { Component } from 'react'; +import { Alert, Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class FontAwesome extends Component { render() { return (
- + 55 New Icons in 4.7
-
address-book +
address-book -
address-book-o +
address-book-o -
address-card +
address-card -
address-card-o +
address-card-o -
bandcamp +
bandcamp -
bath +
bath -
bathtub (alias) +
bathtub (alias)-
drivers-license (alias) +
drivers-license (alias)-
drivers-license-o (alias) +
drivers-license-o (alias)-
eercast +
eercast -
envelope-open +
envelope-open -
envelope-open-o +
envelope-open-o -
etsy +
etsy -
free-code-camp +
free-code-camp -
grav +
grav -
handshake-o +
handshake-o -
id-badge +
id-badge -
id-card +
id-card -
id-card-o +
id-card-o -
imdb +
imdb -
linode +
linode -
meetup +
meetup -
microchip +
microchip -
podcast +
podcast -
quora +
quora -
ravelry +
ravelry -
s15 (alias) +
s15 (alias)-
shower +
shower -
snowflake-o +
snowflake-o -
superpowers +
superpowers -
telegram +
telegram -
thermometer (alias) +
thermometer (alias)-
thermometer-0 (alias) +
thermometer-0 (alias)-
thermometer-1 (alias) +
thermometer-1 (alias)-
thermometer-2 (alias) +
thermometer-2 (alias)-
thermometer-3 (alias) +
thermometer-3 (alias)-
thermometer-4 (alias) +
thermometer-4 (alias)-
thermometer-empty +
thermometer-empty -
thermometer-full +
thermometer-full -
thermometer-half +
thermometer-half -
thermometer-quarter +
thermometer-quarter -
thermometer-three-quarters +
thermometer-three-quarters -
times-rectangle (alias) +
times-rectangle (alias)-
times-rectangle-o (alias) +
times-rectangle-o (alias)-
user-circle +
user-circle -
user-circle-o +
user-circle-o -
user-o +
user-o -
vcard (alias) +
vcard (alias)-
vcard-o (alias) +
vcard-o (alias)-
window-close +
window-close -
window-close-o +
window-close-o -
window-maximize +
window-maximize -
window-minimize +
window-minimize -
window-restore +
window-restore -
wpexplorer +
wpexplorer - + 20 New Icons in 4.5 -
bluetooth +
bluetooth -
bluetooth-b +
bluetooth-b -
codiepie +
codiepie -
credit-card-alt +
credit-card-alt -
edge +
edge -
fort-awesome +
fort-awesome -
hashtag +
hashtag -
mixcloud +
mixcloud -
modx +
modx -
pause-circle +
pause-circle -
pause-circle-o +
pause-circle-o -
percent +
percent -
product-hunt +
product-hunt -
reddit-alien +
reddit-alien -
scribd +
scribd -
shopping-bag +
shopping-bag -
shopping-basket +
shopping-basket -
stop-circle +
stop-circle -
stop-circle-o +
stop-circle-o -
usb +
usb @@ -276,1591 +275,1591 @@ class FontAwesome extends Component { -
adjust +
adjust -
anchor +
anchor -
archive +
archive -
area-chart +
area-chart -
arrows +
arrows -
arrows-h +
arrows-h -
arrows-v +
arrows-v -
asterisk +
asterisk -
at +
at -
automobile
automobile (alias)
-
balance-scale +
balance-scale -
ban +
ban -
bank (alias) +
bank (alias)-
bar-chart +
bar-chart -
bar-chart-o
bar-chart-o (alias)
-
barcode +
barcode -
bars +
bars -
battery-0 (alias) +
battery-0 (alias)-
battery-1 (alias) +
battery-1 (alias)-
battery-2 (alias) +
battery-2 (alias)-
battery-3 (alias) +
battery-3 (alias)-
battery-4 (alias) +
battery-4 (alias)-
battery-empty +
battery-empty -
battery-full +
battery-full -
battery-half +
battery-half -
battery-quarter +
battery-quarter -
battery-three-quarters +
battery-three-quarters -
bed +
bed -
beer +
beer -
bell +
bell -
bell-o +
bell-o -
bell-slash +
bell-slash -
bell-slash-o +
bell-slash-o -
bicycle +
bicycle -
binoculars +
binoculars -
birthday-cake +
birthday-cake -
bluetooth +
bluetooth -
bluetooth-b +
bluetooth-b -
bolt +
bolt -
bomb +
bomb -
book +
book -
bookmark +
bookmark -
bookmark-o +
bookmark-o -
briefcase +
briefcase -
bug +
bug -
building +
building -
building-o +
building-o -
bullhorn +
bullhorn -
bullseye +
bullseye -
bus +
bus -
cab (alias) +
cab (alias)-
calculator +
calculator -
calendar +
calendar -
calendar-check-o +
calendar-check-o -
calendar-minus-o +
calendar-minus-o -
calendar-o +
calendar-o -
calendar-plus-o +
calendar-plus-o -
calendar-times-o +
calendar-times-o -
camera +
camera -
camera-retro +
camera-retro -
car +
car -
caret-square-o-down +
caret-square-o-down -
caret-square-o-left +
caret-square-o-left -
caret-square-o-right +
caret-square-o-right -
caret-square-o-up +
caret-square-o-up -
cart-arrow-down +
cart-arrow-down -
cart-plus +
cart-plus -
cc +
cc -
certificate +
certificate -
check +
check -
check-circle +
check-circle -
check-circle-o +
check-circle-o -
check-square +
check-square -
check-square-o +
check-square-o -
child +
child -
circle +
circle -
circle-o +
circle-o -
circle-o-notch +
circle-o-notch -
circle-thin +
circle-thin -
clock-o +
clock-o -
clone +
clone -
close (alias) +
close (alias)-
cloud +
cloud -
cloud-download +
cloud-download -
cloud-upload +
cloud-upload -
code +
code -
code-fork +
code-fork -
coffee +
coffee -
cog +
cog -
cogs +
cogs -
comment +
comment -
comment-o +
comment-o -
commenting +
commenting -
commenting-o +
commenting-o -
comments +
comments -
comments-o +
comments-o -
compass +
compass -
copyright +
copyright -
creative-commons +
creative-commons -
credit-card +
credit-card -
credit-card-alt +
credit-card-alt -
crop +
crop -
crosshairs +
crosshairs -
cube +
cube -
cubes +
cubes -
cutlery +
cutlery -
dashboard (alias) +
dashboard (alias)-
database +
database -
desktop +
desktop -
diamond +
diamond -
dot-circle-o +
dot-circle-o -
download +
download -
edit (alias) +
edit (alias)-
ellipsis-h +
ellipsis-h -
ellipsis-v +
ellipsis-v -
envelope +
envelope -
envelope-o +
envelope-o -
envelope-square +
envelope-square -
eraser +
eraser -
exchange +
exchange -
exclamation +
exclamation -
exclamation-circle +
exclamation-circle -
exclamation-triangle +
exclamation-triangle -
external-link +
external-link -
external-link-square +
external-link-square -
eye +
eye -
eye-slash +
eye-slash -
eyedropper +
eyedropper -
fax +
fax -
feed (alias) +
feed (alias)-
female +
female -
fighter-jet +
fighter-jet -
file-archive-o +
file-archive-o -
file-audio-o +
file-audio-o -
file-code-o +
file-code-o -
file-excel-o +
file-excel-o -
file-image-o +
file-image-o -
file-movie-o
file-movie-o (alias)
-
file-pdf-o +
file-pdf-o -
file-photo-o
file-photo-o (alias)
-
file-picture-o (alias) +
file-picture-o (alias)-
file-powerpoint-o +
file-powerpoint-o -
file-sound-o
file-sound-o (alias)
-
file-video-o +
file-video-o -
file-word-o +
file-word-o -
file-zip-o
file-zip-o (alias)
-
film +
film -
filter +
filter -
fire +
fire -
fire-extinguisher +
fire-extinguisher -
flag +
flag -
flag-checkered +
flag-checkered -
flag-o +
flag-o -
flash (alias) +
flash (alias)-
flask +
flask -
folder +
folder -
folder-o +
folder-o -
folder-open +
folder-open -
folder-open-o +
folder-open-o -
frown-o +
frown-o -
futbol-o +
futbol-o -
gamepad +
gamepad -
gavel +
gavel -
gear (alias) +
gear (alias)-
gears (alias) +
gears (alias)-
gift +
gift -
glass +
glass -
globe +
globe -
graduation-cap +
graduation-cap -
group (alias) +
group (alias)-
hand-grab-o
hand-grab-o (alias)
-
hand-lizard-o +
hand-lizard-o -
hand-paper-o +
hand-paper-o -
hand-peace-o +
hand-peace-o -
hand-pointer-o +
hand-pointer-o -
hand-rock-o +
hand-rock-o -
hand-scissors-o +
hand-scissors-o -
hand-spock-o +
hand-spock-o -
hand-stop-o
hand-stop-o (alias)
-
hashtag +
hashtag -
hdd-o +
hdd-o -
headphones +
headphones -
heart +
heart -
heart-o +
heart-o -
heartbeat +
heartbeat -
history +
history -
home +
home -
hotel (alias) +
hotel (alias)-
hourglass +
hourglass -
hourglass-1
hourglass-1 (alias)
-
hourglass-2
hourglass-2 (alias)
-
hourglass-3
hourglass-3 (alias)
-
hourglass-end +
hourglass-end -
hourglass-half +
hourglass-half -
hourglass-o +
hourglass-o -
hourglass-start +
hourglass-start -
i-cursor +
i-cursor -
image (alias) +
image (alias)-
inbox +
inbox -
industry +
industry -
info +
info -
info-circle +
info-circle -
institution
institution (alias)
-
key +
key -
keyboard-o +
keyboard-o -
language +
language -
laptop +
laptop -
leaf +
leaf -
legal (alias) +
legal (alias)-
lemon-o +
lemon-o -
level-down +
level-down -
level-up +
level-up -
life-bouy (alias) +
life-bouy (alias)-
life-buoy (alias) +
life-buoy (alias)-
life-ring +
life-ring -
life-saver
life-saver (alias)
-
lightbulb-o +
lightbulb-o -
line-chart +
line-chart -
location-arrow +
location-arrow -
lock +
lock -
magic +
magic -
magnet +
magnet -
mail-forward
mail-forward (alias)
-
mail-reply
mail-reply (alias)
-
mail-reply-all (alias) +
mail-reply-all (alias)-
male +
male -
map +
map -
map-marker +
map-marker -
map-o +
map-o -
map-pin +
map-pin -
map-signs +
map-signs -
meh-o +
meh-o -
microphone +
microphone -
microphone-slash +
microphone-slash -
minus +
minus -
minus-circle +
minus-circle -
minus-square +
minus-square -
minus-square-o +
minus-square-o -
mobile +
mobile -
mobile-phone
mobile-phone (alias)
-
money +
money -
moon-o +
moon-o -
mortar-board
mortar-board (alias)
-
motorcycle +
motorcycle -
mouse-pointer +
mouse-pointer -
music +
music -
navicon (alias) +
navicon (alias)-
newspaper-o +
newspaper-o -
object-group +
object-group -
object-ungroup +
object-ungroup -
paint-brush +
paint-brush -
paper-plane +
paper-plane -
paper-plane-o +
paper-plane-o -
paw +
paw -
pencil +
pencil -
pencil-square +
pencil-square -
pencil-square-o +
pencil-square-o -
percent +
percent -
phone +
phone -
phone-square +
phone-square -
photo (alias) +
photo (alias)-
picture-o +
picture-o -
pie-chart +
pie-chart -
plane +
plane -
plug +
plug -
plus +
plus -
plus-circle +
plus-circle -
plus-square +
plus-square -
plus-square-o +
plus-square-o -
power-off +
power-off -
print +
print -
puzzle-piece +
puzzle-piece -
qrcode +
qrcode -
question +
question -
question-circle +
question-circle -
quote-left +
quote-left -
quote-right +
quote-right -
random +
random -
recycle +
recycle -
refresh +
refresh -
registered +
registered -
remove (alias) +
remove (alias)-
reorder (alias) +
reorder (alias)-
reply +
reply -
reply-all +
reply-all -
retweet +
retweet -
road +
road -
rocket +
rocket -
rss +
rss -
rss-square +
rss-square -
search +
search -
search-minus +
search-minus -
search-plus +
search-plus -
send (alias) +
send (alias)-
send-o (alias) +
send-o (alias)-
server +
server -
share +
share -
share-alt +
share-alt -
share-alt-square +
share-alt-square -
share-square +
share-square -
share-square-o +
share-square-o -
shield +
shield -
ship +
ship -
shopping-bag +
shopping-bag -
shopping-basket +
shopping-basket -
shopping-cart +
shopping-cart -
sign-in +
sign-in -
sign-out +
sign-out -
signal +
signal -
sitemap +
sitemap -
sliders +
sliders -
smile-o +
smile-o -
soccer-ball-o (alias) +
soccer-ball-o (alias)-
sort +
sort -
sort-alpha-asc +
sort-alpha-asc -
sort-alpha-desc +
sort-alpha-desc -
sort-amount-asc +
sort-amount-asc -
sort-amount-desc +
sort-amount-desc -
sort-asc +
sort-asc -
sort-desc +
sort-desc -
sort-down (alias) +
sort-down (alias)-
sort-numeric-asc +
sort-numeric-asc -
sort-numeric-desc +
sort-numeric-desc -
sort-up (alias) +
sort-up (alias)-
space-shuttle +
space-shuttle -
spinner +
spinner -
spoon +
spoon -
square +
square -
square-o +
square-o -
star +
star -
star-half +
star-half -
star-half-empty (alias) +
star-half-empty (alias)-
star-half-full (alias) +
star-half-full (alias)-
star-half-o +
star-half-o -
star-o +
star-o -
sticky-note +
sticky-note -
sticky-note-o +
sticky-note-o -
street-view +
street-view -
suitcase +
suitcase -
sun-o +
sun-o -
support (alias) +
support (alias)-
tablet +
tablet -
tachometer +
tachometer -
tag +
tag -
tags +
tags -
tasks +
tasks -
taxi +
taxi -
television +
television -
terminal +
terminal -
thumb-tack +
thumb-tack -
thumbs-down +
thumbs-down -
thumbs-o-down +
thumbs-o-down -
thumbs-o-up +
thumbs-o-up -
thumbs-up +
thumbs-up -
ticket +
ticket -
times +
times -
times-circle +
times-circle -
times-circle-o +
times-circle-o -
tint +
tint -
toggle-down
toggle-down (alias)
-
toggle-left
toggle-left (alias)
-
toggle-off +
toggle-off -
toggle-on +
toggle-on -
toggle-right
toggle-right (alias)
-
toggle-up (alias) +
toggle-up (alias)-
trademark +
trademark -
trash +
trash -
trash-o +
trash-o -
tree +
tree -
trophy +
trophy -
truck +
truck -
tty +
tty -
tv (alias) +
tv (alias)-
umbrella +
umbrella -
university +
university -
unlock +
unlock -
unlock-alt +
unlock-alt -
unsorted (alias) +
unsorted (alias)-
upload +
upload -
user +
user -
user-plus +
user-plus -
user-secret +
user-secret -
user-times +
user-times -
users +
users -
video-camera +
video-camera -
volume-down +
volume-down -
volume-off +
volume-off -
volume-up +
volume-up -
warning (alias) +
warning (alias)-
wheelchair +
wheelchair -
wifi +
wifi -
wrench +
wrench @@ -1874,73 +1873,73 @@ class FontAwesome extends Component { -
hand-grab-o
hand-grab-o (alias)
-
hand-lizard-o +
hand-lizard-o -
hand-o-down +
hand-o-down -
hand-o-left +
hand-o-left -
hand-o-right +
hand-o-right -
hand-o-up +
hand-o-up -
hand-paper-o +
hand-paper-o -
hand-peace-o +
hand-peace-o -
hand-pointer-o +
hand-pointer-o -
hand-rock-o +
hand-rock-o -
hand-scissors-o +
hand-scissors-o -
hand-spock-o +
hand-spock-o -
hand-stop-o
hand-stop-o (alias)
-
thumbs-down +
thumbs-down -
thumbs-o-down +
thumbs-o-down -
thumbs-o-up +
thumbs-o-up -
thumbs-up +
thumbs-up @@ -1954,72 +1953,72 @@ class FontAwesome extends Component { -
ambulance +
ambulance -
automobile
automobile (alias)
-
bicycle +
bicycle -
bus +
bus -
cab (alias) +
cab (alias)-
car +
car -
fighter-jet +
fighter-jet -
motorcycle +
motorcycle -
plane +
plane -
rocket +
rocket -
ship +
ship -
space-shuttle +
space-shuttle -
subway +
subway -
taxi +
taxi -
train +
train -
truck +
truck -
wheelchair +
wheelchair @@ -2032,59 +2031,59 @@ class FontAwesome extends Component { -
genderless +
genderless -
intersex (alias) +
intersex (alias)-
mars +
mars -
mars-double +
mars-double -
mars-stroke +
mars-stroke -
mars-stroke-h +
mars-stroke-h -
mars-stroke-v +
mars-stroke-v -
mercury +
mercury -
neuter +
neuter -
transgender +
transgender -
transgender-alt +
transgender-alt -
venus +
venus -
venus-double +
venus-double -
venus-mars +
venus-mars @@ -2097,78 +2096,78 @@ class FontAwesome extends Component { -
file +
file -
file-archive-o +
file-archive-o -
file-audio-o +
file-audio-o -
file-code-o +
file-code-o -
file-excel-o +
file-excel-o -
file-image-o +
file-image-o -
file-movie-o
file-movie-o (alias)
-
file-o +
file-o -
file-pdf-o +
file-pdf-o -
file-photo-o
file-photo-o (alias)
-
file-picture-o (alias) +
file-picture-o (alias)-
file-powerpoint-o +
file-powerpoint-o -
file-sound-o
file-sound-o (alias)
-
file-text +
file-text -
file-text-o +
file-text-o -
file-video-o +
file-video-o -
file-word-o +
file-word-o -
file-zip-o
file-zip-o (alias) @@ -2190,23 +2189,23 @@ class FontAwesome extends Component {
-
circle-o-notch +
circle-o-notch -
cog +
cog -
gear (alias) +
gear (alias)-
refresh +
refresh -
spinner +
spinner @@ -2219,47 +2218,47 @@ class FontAwesome extends Component { -
check-square +
check-square -
check-square-o +
check-square-o -
circle +
circle -
circle-o +
circle-o -
dot-circle-o +
dot-circle-o -
minus-square +
minus-square -
minus-square-o +
minus-square-o -
plus-square +
plus-square -
plus-square-o +
plus-square-o -
square +
square -
square-o +
square-o @@ -2272,51 +2271,51 @@ class FontAwesome extends Component { -
cc-amex +
cc-amex -
cc-diners-club +
cc-diners-club -
cc-discover +
cc-discover -
cc-jcb +
cc-jcb -
cc-mastercard +
cc-mastercard -
cc-paypal +
cc-paypal -
cc-stripe +
cc-stripe -
cc-visa +
cc-visa -
credit-card +
credit-card -
credit-card-alt +
credit-card-alt -
google-wallet +
google-wallet -
paypal +
paypal @@ -2329,24 +2328,24 @@ class FontAwesome extends Component { -
area-chart +
area-chart -
bar-chart +
bar-chart -
bar-chart-o
bar-chart-o (alias)
-
line-chart +
line-chart -
pie-chart +
pie-chart @@ -2359,108 +2358,108 @@ class FontAwesome extends Component { -
bitcoin (alias) +
bitcoin (alias)-
btc +
btc -
cny (alias) +
cny (alias)-
dollar (alias) +
dollar (alias)-
eur +
eur -
euro (alias) +
euro (alias)-
gbp +
gbp -
gg +
gg -
gg-circle +
gg-circle -
ils +
ils -
inr +
inr -
jpy +
jpy -
krw +
krw -
money +
money -
rmb (alias) +
rmb (alias)-
rouble (alias) +
rouble (alias)-
rub +
rub -
ruble (alias) +
ruble (alias)-
rupee (alias) +
rupee (alias)-
shekel (alias) +
shekel (alias)-
sheqel (alias) +
sheqel (alias)-
try +
try -
turkish-lira
turkish-lira (alias)
-
usd +
usd -
won (alias) +
won (alias)-
yen (alias) +
yen (alias) @@ -2473,201 +2472,201 @@ class FontAwesome extends Component { -
align-center +
align-center -
align-justify +
align-justify -
align-left +
align-left -
align-right +
align-right -
bold +
bold -
chain (alias) +
chain (alias)-
chain-broken +
chain-broken -
clipboard +
clipboard -
columns +
columns -
copy (alias) +
copy (alias)-
cut (alias) +
cut (alias)-
dedent (alias) +
dedent (alias)-
eraser +
eraser -
file +
file -
file-o +
file-o -
file-text +
file-text -
file-text-o +
file-text-o -
files-o +
files-o -
floppy-o +
floppy-o -
font +
font -
header +
header -
indent +
indent -
italic +
italic -
link +
link -
list +
list -
list-alt +
list-alt -
list-ol +
list-ol -
list-ul +
list-ul -
outdent +
outdent -
paperclip +
paperclip -
paragraph +
paragraph -
paste (alias) +
paste (alias)-
repeat +
repeat -
rotate-left
rotate-left (alias)
-
rotate-right
rotate-right (alias)
-
save (alias) +
save (alias)-
scissors +
scissors -
strikethrough +
strikethrough -
subscript +
subscript -
superscript +
superscript -
table +
table -
text-height +
text-height -
text-width +
text-width -
th +
th -
th-large +
th-large -
th-list +
th-list -
underline +
underline -
undo +
undo -
unlink (alias) +
unlink (alias) @@ -2680,218 +2679,218 @@ class FontAwesome extends Component { -
angle-double-down +
angle-double-down -
angle-double-left +
angle-double-left -
angle-double-right +
angle-double-right -
angle-double-up +
angle-double-up -
angle-down +
angle-down -
angle-left +
angle-left -
angle-right +
angle-right -
angle-up +
angle-up -
arrow-circle-down +
arrow-circle-down -
arrow-circle-left +
arrow-circle-left -
arrow-circle-o-down +
arrow-circle-o-down -
arrow-circle-o-left +
arrow-circle-o-left -
arrow-circle-o-right +
arrow-circle-o-right -
arrow-circle-o-up +
arrow-circle-o-up -
arrow-circle-right +
arrow-circle-right -
arrow-circle-up +
arrow-circle-up -
arrow-down +
arrow-down -
arrow-left +
arrow-left -
arrow-right +
arrow-right -
arrow-up +
arrow-up -
arrows +
arrows -
arrows-alt +
arrows-alt -
arrows-h +
arrows-h -
arrows-v +
arrows-v -
caret-down +
caret-down -
caret-left +
caret-left -
caret-right +
caret-right -
caret-square-o-down +
caret-square-o-down -
caret-square-o-left +
caret-square-o-left -
caret-square-o-right +
caret-square-o-right -
caret-square-o-up +
caret-square-o-up -
caret-up +
caret-up -
chevron-circle-down +
chevron-circle-down -
chevron-circle-left +
chevron-circle-left -
chevron-circle-right +
chevron-circle-right -
chevron-circle-up +
chevron-circle-up -
chevron-down +
chevron-down -
chevron-left +
chevron-left -
chevron-right +
chevron-right -
chevron-up +
chevron-up -
exchange +
exchange -
hand-o-down +
hand-o-down -
hand-o-left +
hand-o-left -
hand-o-right +
hand-o-right -
hand-o-up +
hand-o-up -
long-arrow-down +
long-arrow-down -
long-arrow-left +
long-arrow-left -
long-arrow-right +
long-arrow-right -
long-arrow-up +
long-arrow-up -
toggle-down
toggle-down (alias)
-
toggle-left
toggle-left (alias)
-
toggle-right
toggle-right (alias)
-
toggle-up (alias) +
toggle-up (alias) @@ -2904,87 +2903,87 @@ class FontAwesome extends Component { -
arrows-alt +
arrows-alt -
backward +
backward -
compress +
compress -
eject +
eject -
expand +
expand -
fast-backward +
fast-backward -
fast-forward +
fast-forward -
forward +
forward -
pause +
pause -
pause-circle +
pause-circle -
pause-circle-o +
pause-circle-o -
play +
play -
play-circle +
play-circle -
play-circle-o +
play-circle-o -
random +
random -
step-backward +
step-backward -
step-forward +
step-forward -
stop +
stop -
stop-circle +
stop-circle -
stop-circle-o +
stop-circle-o -
youtube-play +
youtube-play @@ -3005,629 +3004,629 @@ class FontAwesome extends Component { -
500px +
500px -
adn +
adn -
amazon +
amazon -
android +
android -
angellist +
angellist -
apple +
apple -
behance +
behance -
behance-square +
behance-square -
bitbucket +
bitbucket -
bitbucket-square +
bitbucket-square -
bitcoin (alias) +
bitcoin (alias)-
black-tie +
black-tie -
bluetooth +
bluetooth -
bluetooth-b +
bluetooth-b -
btc +
btc -
buysellads +
buysellads -
cc-amex +
cc-amex -
cc-diners-club +
cc-diners-club -
cc-discover +
cc-discover -
cc-jcb +
cc-jcb -
cc-mastercard +
cc-mastercard -
cc-paypal +
cc-paypal -
cc-stripe +
cc-stripe -
cc-visa +
cc-visa -
chrome +
chrome -
codepen +
codepen -
codiepie +
codiepie -
connectdevelop +
connectdevelop -
contao +
contao -
css3 +
css3 -
dashcube +
dashcube -
delicious +
delicious -
deviantart +
deviantart -
digg +
digg -
dribbble +
dribbble -
dropbox +
dropbox -
drupal +
drupal -
edge +
edge -
empire +
empire -
expeditedssl +
expeditedssl -
facebook +
facebook -
facebook-f
facebook-f (alias)
-
facebook-official +
facebook-official -
facebook-square +
facebook-square -
firefox +
firefox -
flickr +
flickr -
fonticons +
fonticons -
fort-awesome +
fort-awesome -
forumbee +
forumbee -
foursquare +
foursquare -
ge (alias) +
ge (alias)-
get-pocket +
get-pocket -
gg +
gg -
gg-circle +
gg-circle -
git +
git -
git-square +
git-square -
github +
github -
github-alt +
github-alt -
github-square +
github-square -
gittip (alias) +
gittip (alias)-
google +
google -
google-plus +
google-plus -
google-plus-square +
google-plus-square -
google-wallet +
google-wallet -
gratipay +
gratipay -
hacker-news +
hacker-news -
houzz +
houzz -
html5 +
html5 -
instagram +
instagram -
internet-explorer +
internet-explorer -
ioxhost +
ioxhost -
joomla +
joomla -
jsfiddle +
jsfiddle -
lastfm +
lastfm -
lastfm-square +
lastfm-square -
leanpub +
leanpub -
linkedin +
linkedin -
linkedin-square +
linkedin-square -
linux +
linux -
maxcdn +
maxcdn -
meanpath +
meanpath -
medium +
medium -
mixcloud +
mixcloud -
modx +
modx -
odnoklassniki +
odnoklassniki -
odnoklassniki-square +
odnoklassniki-square -
opencart +
opencart -
openid +
openid -
opera +
opera -
optin-monster +
optin-monster -
pagelines +
pagelines -
paypal +
paypal -
pied-piper +
pied-piper -
pied-piper-alt +
pied-piper-alt -
pinterest +
pinterest -
pinterest-p +
pinterest-p -
pinterest-square +
pinterest-square -
product-hunt +
product-hunt -
qq +
qq -
ra (alias) +
ra (alias)-
rebel +
rebel -
reddit +
reddit -
reddit-alien +
reddit-alien -
reddit-square +
reddit-square -
renren +
renren -
safari +
safari -
scribd +
scribd -
sellsy +
sellsy -
share-alt +
share-alt -
share-alt-square +
share-alt-square -
shirtsinbulk +
shirtsinbulk -
simplybuilt +
simplybuilt -
skyatlas +
skyatlas -
skype +
skype -
slack +
slack -
slideshare +
slideshare -
soundcloud +
soundcloud -
spotify +
spotify -
stack-exchange +
stack-exchange -
stack-overflow +
stack-overflow -
steam +
steam -
steam-square +
steam-square -
stumbleupon +
stumbleupon -
stumbleupon-circle +
stumbleupon-circle -
tencent-weibo +
tencent-weibo -
trello +
trello -
tripadvisor +
tripadvisor -
tumblr +
tumblr -
tumblr-square +
tumblr-square -
twitch +
twitch -
twitter +
twitter -
twitter-square +
twitter-square -
usb +
usb -
viacoin +
viacoin -
vimeo +
vimeo -
vimeo-square +
vimeo-square -
vine +
vine -
vk +
vk -
wechat (alias) +
wechat (alias)-
weibo +
weibo -
weixin +
weixin -
whatsapp +
whatsapp -
wikipedia-w +
wikipedia-w -
windows +
windows -
wordpress +
wordpress -
xing +
xing -
xing-square +
xing-square -
y-combinator +
y-combinator -
y-combinator-square
y-combinator-square (alias)
-
yahoo +
yahoo -
yc (alias) +
yc (alias)-
yc-square (alias) +
yc-square (alias)-
yelp +
yelp -
youtube +
youtube -
youtube-play +
youtube-play -
youtube-square +
youtube-square @@ -3648,47 +3647,47 @@ class FontAwesome extends Component { -
ambulance +
ambulance -
h-square +
h-square -
heart +
heart -
heart-o +
heart-o -
heartbeat +
heartbeat -
hospital-o +
hospital-o -
medkit +
medkit -
plus-square +
plus-square -
stethoscope +
stethoscope -
user-md +
user-md -
wheelchair +
wheelchair @@ -3696,7 +3695,7 @@ class FontAwesome extends Component { - ) + ); } } diff --git a/src/views/Icons/SimpleLineIcons/SimpleLineIcons.js b/src/views/Icons/SimpleLineIcons/SimpleLineIcons.js index 0b1efbf..b8b56ce 100644 --- a/src/views/Icons/SimpleLineIcons/SimpleLineIcons.js +++ b/src/views/Icons/SimpleLineIcons/SimpleLineIcons.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody} from 'reactstrap'; +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class SimpleLineIcons extends Component { render() { @@ -748,7 +748,7 @@ class SimpleLineIcons extends Component { - ) + ); } } diff --git a/src/views/Icons/index.js b/src/views/Icons/index.js new file mode 100644 index 0000000..f7581a8 --- /dev/null +++ b/src/views/Icons/index.js @@ -0,0 +1,7 @@ +import Flags from './Flags'; +import FontAwesome from './FontAwesome'; +import SimpleLineIcons from './SimpleLineIcons'; + +export { + Flags, FontAwesome, SimpleLineIcons +}; diff --git a/src/views/Notifications/Alerts/Alerts.js b/src/views/Notifications/Alerts/Alerts.js index 5dfd6c5..41b0e42 100644 --- a/src/views/Notifications/Alerts/Alerts.js +++ b/src/views/Notifications/Alerts/Alerts.js @@ -1,12 +1,12 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, Alert} from 'reactstrap'; +import React, { Component } from 'react'; +import { Alert, Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class Alerts extends Component { constructor(props) { super(props); this.state = { - visible: true + visible: true, }; this.onDismiss = this.onDismiss.bind(this); @@ -24,8 +24,8 @@ class Alerts extends Component { Alerts -
- + @@ -61,7 +61,8 @@ class Alerts extends Component {
- Alerts use .alert-link to provide links + Alerts + use .alert-link to provide links @@ -96,7 +97,8 @@ class Alerts extends Component { - Alerts additional content + Alerts + additional content @@ -117,7 +119,8 @@ class Alerts extends Component { - Alerts dismissing + Alerts + dismissing @@ -128,7 +131,7 @@ class Alerts extends Component { - ) + ); } } diff --git a/src/views/Notifications/Badges/Badges.js b/src/views/Notifications/Badges/Badges.js index 9ead757..c4375ff 100644 --- a/src/views/Notifications/Badges/Badges.js +++ b/src/views/Notifications/Badges/Badges.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody, CardFooter, Badge, Button} from 'reactstrap'; +import React, { Component } from 'react'; +import { Badge, Button, Card, CardBody, CardFooter, CardHeader, Col, Row } from 'reactstrap'; class Badges extends Component { render() { @@ -10,8 +10,8 @@ class Badges extends Component { Badges -
- + @@ -26,7 +26,7 @@ class Badges extends Component { @@ -34,7 +34,8 @@ class Badges extends Component {
- Badges contextual variations + Badges + contextual variations Primary @@ -49,7 +50,8 @@ class Badges extends Component { - Badges pill badges + Badges + pill badges Primary @@ -64,7 +66,8 @@ class Badges extends Component { - Badges links + Badges + links Primary @@ -80,7 +83,7 @@ class Badges extends Component { - ) + ); } } diff --git a/src/views/Notifications/Modals/Modals.js b/src/views/Notifications/Modals/Modals.js index f722e77..c8e7bc5 100644 --- a/src/views/Notifications/Modals/Modals.js +++ b/src/views/Notifications/Modals/Modals.js @@ -1,6 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Button, Modal, ModalHeader, ModalBody, ModalFooter, Card, CardHeader, CardBody} from 'reactstrap'; - +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardHeader, Col, Modal, ModalBody, ModalFooter, ModalHeader, Row } from 'reactstrap'; class Modals extends Component { @@ -14,7 +13,7 @@ class Modals extends Component { success: false, warning: false, danger: false, - info: false + info: false, }; this.toggle = this.toggle.bind(this); @@ -29,49 +28,49 @@ class Modals extends Component { toggle() { this.setState({ - modal: !this.state.modal + modal: !this.state.modal, }); } toggleLarge() { this.setState({ - large: !this.state.large + large: !this.state.large, }); } toggleSmall() { this.setState({ - small: !this.state.small + small: !this.state.small, }); } togglePrimary() { this.setState({ - primary: !this.state.primary + primary: !this.state.primary, }); } toggleSuccess() { this.setState({ - success: !this.state.success + success: !this.state.success, }); } toggleWarning() { this.setState({ - warning: !this.state.warning + warning: !this.state.warning, }); } toggleDanger() { this.setState({ - danger: !this.state.danger + danger: !this.state.danger, }); } toggleInfo() { this.setState({ - info: !this.state.info + info: !this.state.info, }); } @@ -135,7 +134,7 @@ class Modals extends Component { -
+
- ) + ); } } diff --git a/src/views/Notifications/index.js b/src/views/Notifications/index.js new file mode 100644 index 0000000..daf9d6e --- /dev/null +++ b/src/views/Notifications/index.js @@ -0,0 +1,7 @@ +import Alerts from './Alerts'; +import Badges from './Badges'; +import Modals from './Modals'; + +export { + Alerts, Badges, Modals +}; diff --git a/src/views/Pages/Login/Login.js b/src/views/Pages/Login/Login.js index 58368ad..38af6fc 100644 --- a/src/views/Pages/Login/Login.js +++ b/src/views/Pages/Login/Login.js @@ -1,6 +1,5 @@ -import React, {Component} from 'react'; -import {Container, Row, Col, CardGroup, Card, CardBody, Button, Input, InputGroup, InputGroupAddon, InputGroupText} from 'reactstrap'; - +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardGroup, Col, Container, Input, InputGroup, InputGroupAddon, InputGroupText, Row } from 'reactstrap'; class Login extends Component { render() { @@ -20,7 +19,7 @@ class Login extends Component { - + @@ -28,7 +27,7 @@ class Login extends Component { - +
diff --git a/src/views/Pages/Page404/Page404.js b/src/views/Pages/Page404/Page404.js index f2c0f97..6df0070 100644 --- a/src/views/Pages/Page404/Page404.js +++ b/src/views/Pages/Page404/Page404.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Container, Row, Col, Button, Input, InputGroupAddon, InputGroup, InputGroupText} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Col, Container, Input, InputGroup, InputGroupAddon, InputGroupText, Row } from 'reactstrap'; class Page404 extends Component { render() { @@ -19,7 +19,7 @@ class Page404 extends Component { - + diff --git a/src/views/Pages/Page500/Page500.js b/src/views/Pages/Page500/Page500.js index 149cefe..24e51d4 100644 --- a/src/views/Pages/Page500/Page500.js +++ b/src/views/Pages/Page500/Page500.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Container, Row, Col, Button, Input, InputGroup, InputGroupAddon, InputGroupText} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Col, Container, Input, InputGroup, InputGroupAddon, InputGroupText, Row } from 'reactstrap'; class Page500 extends Component { render() { diff --git a/src/views/Pages/Register/Register.js b/src/views/Pages/Register/Register.js index 7509bfa..2aba3a7 100644 --- a/src/views/Pages/Register/Register.js +++ b/src/views/Pages/Register/Register.js @@ -1,5 +1,5 @@ -import React, {Component} from 'react'; -import {Container, Row, Col, Card, CardBody, CardFooter, Button, Input, InputGroup, InputGroupAddon, InputGroupText} from 'reactstrap'; +import React, { Component } from 'react'; +import { Button, Card, CardBody, CardFooter, Col, Container, Input, InputGroup, InputGroupAddon, InputGroupText, Row } from 'reactstrap'; class Register extends Component { render() { @@ -18,13 +18,13 @@ class Register extends Component { - + @ - + @@ -32,7 +32,7 @@ class Register extends Component { - + @@ -40,7 +40,7 @@ class Register extends Component { - + diff --git a/src/views/Pages/index.js b/src/views/Pages/index.js new file mode 100644 index 0000000..e90b2c7 --- /dev/null +++ b/src/views/Pages/index.js @@ -0,0 +1,8 @@ +import Login from './Login'; +import Page404 from './Page404'; +import Page500 from './Page500'; +import Register from './Register'; + +export { + Login, Page404, Page500, Register +}; \ No newline at end of file diff --git a/src/views/Theme/Colors/Colors.js b/src/views/Theme/Colors/Colors.js index 1401e9a..8857024 100644 --- a/src/views/Theme/Colors/Colors.js +++ b/src/views/Theme/Colors/Colors.js @@ -1,4 +1,4 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; class Colors extends Component { render() { @@ -97,7 +97,7 @@ class Colors extends Component { - ) + ); } } diff --git a/src/views/Theme/Typography/Typography.js b/src/views/Theme/Typography/Typography.js index 9a6a66c..658f70e 100644 --- a/src/views/Theme/Typography/Typography.js +++ b/src/views/Theme/Typography/Typography.js @@ -1,4 +1,4 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; class Typography extends Component { render() { @@ -12,48 +12,48 @@ class Typography extends Component {

Documentation and examples for Bootstrap typography, including global settings, headings, body text, lists, and more.

- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1043,7 +1072,7 @@ class Dashboard extends Component {
- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1079,7 +1108,7 @@ class Dashboard extends Component {
- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1114,7 +1143,7 @@ class Dashboard extends Component {
- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1149,7 +1178,7 @@ class Dashboard extends Component {
- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1184,7 +1213,7 @@ class Dashboard extends Component {
- admin@bootstrapmaster.com + admin@bootstrapmaster.com
- +
Last login
@@ -1223,7 +1252,7 @@ class Dashboard extends Component { - ) + ); } } diff --git a/src/views/Icons/Flags/Flags.js b/src/views/Icons/Flags/Flags.js index a0be326..05613c2 100644 --- a/src/views/Icons/Flags/Flags.js +++ b/src/views/Icons/Flags/Flags.js @@ -1,6 +1,5 @@ -import React, {Component} from 'react'; -import {Row, Col, Card, CardHeader, CardBody} from 'reactstrap'; - +import React, { Component } from 'react'; +import { Card, CardBody, CardHeader, Col, Row } from 'reactstrap'; class Flags extends Component { render() { @@ -13,7 +12,8 @@ class Flags extends Component {
- - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
HeadingExample
HeadingExample
-

<h1></h1>

-
h1. Bootstrap heading
-

<h2></h2>

-
h2. Bootstrap heading
-

<h3></h3>

-
h3. Bootstrap heading
-

<h4></h4>

-
h4. Bootstrap heading
-

<h5></h5>

-
h5. Bootstrap heading
-

<h6></h6>

-
h6. Bootstrap heading
+

<h1></h1>

+
h1. Bootstrap heading
+

<h2></h2>

+
h2. Bootstrap heading
+

<h3></h3>

+
h3. Bootstrap heading
+

<h4></h4>

+
h4. Bootstrap heading
+

<h5></h5>

+
h5. Bootstrap heading
+

<h6></h6>

+
h6. Bootstrap heading
@@ -63,7 +63,8 @@ class Typography extends Component { Headings
-

.h1 through .h6 classes are also available, for when you want to match the font styling of a heading but cannot use the associated HTML element.

+

.h1 through .h6 classes are also available, for when you + want to match the font styling of a heading but cannot use the associated HTML element.

h1. Bootstrap heading

h2. Bootstrap heading

@@ -79,22 +80,23 @@ class Typography extends Component { Display headings
-

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using a display heading—a larger, slightly more opinionated heading style.

+

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using + a display heading—a larger, slightly more opinionated heading style.

- - - - - - - - - - - - + + + + + + + + + + + +
Display 1
Display 2
Display 3
Display 4
Display 1
Display 2
Display 3
Display 4
@@ -105,14 +107,21 @@ class Typography extends Component { Inline text elements
-

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using a display heading—a larger, slightly more opinionated heading style.

+

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using + a display heading—a larger, slightly more opinionated heading style.

You can use the mark tag to highlight text.

-

This line of text is meant to be treated as deleted text.

+

+ This line of text is meant to be treated as deleted text. +

This line of text is meant to be treated as no longer accurate.

-

This line of text is meant to be treated as an addition to the document.

+

+ This line of text is meant to be treated as an addition to the document. +

This line of text will render as underlined

-

This line of text is meant to be treated as fine print.

+

+ This line of text is meant to be treated as fine print. +

This line rendered as bold text.

This line rendered as italicized text.

@@ -123,7 +132,8 @@ class Typography extends Component { Description list alignment
-

Align terms and descriptions horizontally by using our grid system’s predefined classes (or semantic mixins). For longer terms, you can optionally add a .text-truncate class to truncate the text with an ellipsis.

+

Align terms and descriptions horizontally by using our grid system’s predefined classes (or semantic mixins). For longer terms, you can + optionally add a .text-truncate class to truncate the text with an ellipsis.

Description lists
@@ -153,7 +163,7 @@ class Typography extends Component {
- ) + ); } } diff --git a/src/views/Theme/index.js b/src/views/Theme/index.js new file mode 100644 index 0000000..0c540f1 --- /dev/null +++ b/src/views/Theme/index.js @@ -0,0 +1,6 @@ +import Colors from './Colors'; +import Typography from './Typography'; + +export { + Colors, Typography, +}; \ No newline at end of file diff --git a/src/views/Widgets/Widget01.js b/src/views/Widgets/Widget01.js index 730b719..bc4b384 100644 --- a/src/views/Widgets/Widget01.js +++ b/src/views/Widgets/Widget01.js @@ -1,8 +1,8 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import {Card, CardBody, Progress} from 'reactstrap'; +import { Card, CardBody, Progress } from 'reactstrap'; import classNames from 'classnames'; -import {mapToCssModules} from 'reactstrap/lib/utils'; +import { mapToCssModules } from 'reactstrap/lib/utils'; const propTypes = { header: PropTypes.string, @@ -13,7 +13,7 @@ const propTypes = { children: PropTypes.node, className: PropTypes.string, cssModule: PropTypes.object, - variant: PropTypes.string + variant: PropTypes.string, }; const defaultProps = { @@ -21,39 +21,39 @@ const defaultProps = { mainText: 'Lorem ipsum...', smallText: 'Lorem ipsum dolor sit amet enim.', // color: '', - value: "25", - variant: "" + value: '25', + variant: '', }; class Widget01 extends Component { render() { - const {className, cssModule, header, mainText, smallText, color, value, children, variant, ...attributes} = this.props; + const { className, cssModule, header, mainText, smallText, color, value, children, variant, ...attributes } = this.props; // demo purposes only - const progress = {style: "", color: color, value: value}; - const card = {style: "", bgColor: ""}; + const progress = { style: '', color: color, value: value }; + const card = { style: '', bgColor: '' }; - if (variant === "inverse") { - progress.style = "progress-white"; - progress.color = ""; - card.style = "text-white"; + if (variant === 'inverse') { + progress.style = 'progress-white'; + progress.color = ''; + card.style = 'text-white'; card.bgColor = 'bg-' + color; } const classes = mapToCssModules(classNames(className, card.style, card.bgColor), cssModule); - progress.style = classNames("progress-xs my-3", progress.style); + progress.style = classNames('progress-xs my-3', progress.style); return ( - + -
{ header }
-
{ mainText }
- - { smallText } +
{header}
+
{mainText}
+ + {smallText}
{children}
- ) + ); } } diff --git a/src/views/Widgets/Widget02.js b/src/views/Widgets/Widget02.js index 544d550..7326b34 100644 --- a/src/views/Widgets/Widget02.js +++ b/src/views/Widgets/Widget02.js @@ -1,8 +1,8 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import {Card, CardBody, CardFooter} from 'reactstrap'; +import { Card, CardBody, CardFooter } from 'reactstrap'; import classNames from 'classnames'; -import {mapToCssModules} from 'reactstrap/lib/utils'; +import { mapToCssModules } from 'reactstrap/lib/utils'; const propTypes = { header: PropTypes.string, @@ -14,35 +14,36 @@ const propTypes = { link: PropTypes.string, children: PropTypes.node, className: PropTypes.string, - cssModule: PropTypes.object + cssModule: PropTypes.object, }; const defaultProps = { header: '$1,999.50', mainText: 'Income', - icon: "fa fa-cogs", + icon: 'fa fa-cogs', color: 'primary', - variant: "0", - link: "#" + variant: '0', + link: '#', }; class Widget02 extends Component { render() { - const {className, cssModule, header, mainText, icon, color, footer, link, children, variant, ...attributes} = this.props; + const { className, cssModule, header, mainText, icon, color, footer, link, children, variant, ...attributes } = this.props; // demo purposes only - const padding = (variant === '0' ? {card: "p-3", icon: "p-3", lead: "mt-2"} : ( variant === "1" ? { - card: "p-0", icon: "p-4", lead: "pt-3" } : {card: "p-0", icon: "p-4 px-5", lead: "pt-3"})); + const padding = (variant === '0' ? { card: 'p-3', icon: 'p-3', lead: 'mt-2' } : (variant === '1' ? { + card: 'p-0', icon: 'p-4', lead: 'pt-3', + } : { card: 'p-0', icon: 'p-4 px-5', lead: 'pt-3' })); - const card = {style: "clearfix", color: color, icon: icon, classes: ""}; + const card = { style: 'clearfix', color: color, icon: icon, classes: '' }; card.classes = mapToCssModules(classNames(className, card.style, padding.card), cssModule); - const lead = {style: "h5 mb-0", color: color, classes: ""}; + const lead = { style: 'h5 mb-0', color: color, classes: '' }; lead.classes = classNames(lead.style, 'text-' + card.color, padding.lead); const blockIcon = function (icon) { - const classes = classNames(icon, 'bg-' + card.color, padding.icon, "font-2xl mr-3 float-left"); - return (); + const classes = classNames(icon, 'bg-' + card.color, padding.icon, 'font-2xl mr-3 float-left'); + return (); }; const cardFooter = function () { @@ -58,14 +59,14 @@ class Widget02 extends Component { return ( - - { blockIcon(card.icon) } -
{ header }
-
{ mainText }
+ + {blockIcon(card.icon)} +
{header}
+
{mainText}
- { cardFooter() } + {cardFooter()}
- ) + ); } } diff --git a/src/views/Widgets/Widget03.js b/src/views/Widgets/Widget03.js index 7ec49c0..1158076 100644 --- a/src/views/Widgets/Widget03.js +++ b/src/views/Widgets/Widget03.js @@ -1,51 +1,59 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; -import {mapToCssModules} from 'reactstrap/lib/utils'; +import { mapToCssModules } from 'reactstrap/lib/utils'; const propTypes = { + children: PropTypes.node, className: PropTypes.string, cssModule: PropTypes.object, - dataBox: PropTypes.func + dataBox: PropTypes.func, }; const defaultProps = { - dataBox: () => ({variant: "facebook", friends: "-", feeds: "-"}) + dataBox: () => ({ variant: 'facebook', friends: '-', feeds: '-' }), }; class Widget03 extends Component { render() { - const {className, cssModule, dataBox, ...attributes} = this.props; + const { children, className, cssModule, dataBox, ...attributes } = this.props; // demo purposes only const data = dataBox(); const variant = data.variant; if (!variant || ['facebook', 'twitter', 'linkedin', 'google-plus'].indexOf(variant) < 0) { - return ( null ); + return (null); } - const icon = "fa fa-" + variant; + const back = 'bg-' + variant; + const icon = 'fa fa-' + variant; const keys = Object.keys(data); const vals = Object.values(data); - const classes = mapToCssModules(classNames("social-box", className, variant), cssModule); + const classCard = 'brand-card'; + const classCardHeader = classNames(`${classCard}-header`, back); + const classCardBody = classNames(`${classCard}-body`); + const classes = mapToCssModules(classNames(classCard, className), cssModule); return (
- -
    -
  • - {vals[1]} - {keys[1]} -
  • -
  • - {vals[2]} - {keys[2]} -
  • -
+
+ + {children} +
+
+
+
{vals[1]}
+
{keys[1]}
+
+
+
{vals[2]}
+
{keys[2]}
+
+
- ) + ); } } diff --git a/src/views/Widgets/Widget04.js b/src/views/Widgets/Widget04.js index 304c20b..0f76743 100644 --- a/src/views/Widgets/Widget04.js +++ b/src/views/Widgets/Widget04.js @@ -1,8 +1,8 @@ -import React, {Component} from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import {Card, CardBody, Progress} from 'reactstrap'; +import { Card, CardBody, Progress } from 'reactstrap'; import classNames from 'classnames'; -import {mapToCssModules} from 'reactstrap/lib/utils'; +import { mapToCssModules } from 'reactstrap/lib/utils'; const propTypes = { header: PropTypes.string, @@ -12,48 +12,48 @@ const propTypes = { children: PropTypes.node, className: PropTypes.string, cssModule: PropTypes.object, - invert: PropTypes.bool + invert: PropTypes.bool, }; const defaultProps = { header: '87.500', - icon: "icon-people", + icon: 'icon-people', color: 'info', - value: "25", - children: "Visitors", - invert: false + value: '25', + children: 'Visitors', + invert: false, }; class Widget04 extends Component { render() { - const {className, cssModule, header, icon, color, value, children, invert, ...attributes} = this.props; + const { className, cssModule, header, icon, color, value, children, invert, ...attributes } = this.props; // demo purposes only - const progress = {style: "", color: color, value: value}; - const card = {style: "", bgColor: "", icon: icon}; + const progress = { style: '', color: color, value: value }; + const card = { style: '', bgColor: '', icon: icon }; if (invert) { - progress.style = "progress-white"; - progress.color = ""; - card.style = "text-white"; + progress.style = 'progress-white'; + progress.color = ''; + card.style = 'text-white'; card.bgColor = 'bg-' + color; } const classes = mapToCssModules(classNames(className, card.style, card.bgColor), cssModule); - progress.style = classNames("progress-xs mt-3 mb-0", progress.style); + progress.style = classNames('progress-xs mt-3 mb-0', progress.style); return ( - +
- +
-
{ header }
- { children } - +
{header}
+ {children} +
- ) + ); } } diff --git a/src/views/Widgets/Widgets.js b/src/views/Widgets/Widgets.js index 172b89c..2bddcbe 100644 --- a/src/views/Widgets/Widgets.js +++ b/src/views/Widgets/Widgets.js @@ -1,9 +1,63 @@ -import React, {Component} from 'react'; -import {Row, Col, CardGroup} from 'reactstrap'; +import React, { Component } from 'react'; +import { CardGroup, Col, Row } from 'reactstrap'; import Widget01 from './Widget01'; import Widget02 from './Widget02'; import Widget03 from './Widget03'; import Widget04 from './Widget04'; +import { Line } from 'react-chartjs-2'; + + +// Brand Card Chart +const makeSocialBoxData = (dataSetNo) => { + const socialBoxData = [ + { data: [65, 59, 84, 84, 51, 55, 40], label: 'facebook' }, + { data: [1, 13, 9, 17, 34, 41, 38], label: 'twitter' }, + { data: [78, 81, 80, 45, 34, 12, 40], label: 'linkedin' }, + { data: [35, 23, 56, 22, 97, 23, 64], label: 'google' }, + ]; + + const dataset = socialBoxData[dataSetNo]; + const data = { + labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], + datasets: [ + { + backgroundColor: 'rgba(255,255,255,.1)', + borderColor: 'rgba(255,255,255,.55)', + pointHoverBackgroundColor: '#fff', + borderWidth: 2, + data: dataset.data, + label: dataset.label, + }, + ], + }; + return () => data; +}; + +const socialChartOpts = { + responsive: true, + maintainAspectRatio: false, + legend: { + display: false, + }, + scales: { + xAxes: [ + { + display: false, + }], + yAxes: [ + { + display: false, + }], + }, + elements: { + point: { + radius: 0, + hitRadius: 10, + hoverRadius: 4, + hoverBorderWidth: 3, + }, + }, +}; class Widgets extends Component { render() { @@ -11,10 +65,10 @@ class Widgets extends Component {
- + - + @@ -23,13 +77,13 @@ class Widgets extends Component { + smallText="This is your final warning..." /> - + - + @@ -38,73 +92,81 @@ class Widgets extends Component { + smallText="This is your final warning..." /> - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - ({variant: "facebook", friends : "89k", feeds: "459"})}/> + ({ variant: 'facebook', friends: '89k', feeds: '459' })} > +
+ +
+
- ({variant: "twitter", followers : "973k", tweets: "1.792"})}/> + ({ variant: 'twitter', followers: '973k', tweets: '1.792' })} /> - ({variant: "linkedin", contacts : "500+", feeds: "292"})}/> + ({ variant: 'linkedin', contacts: '500+', feeds: '292' })} > +
+ +
+
- ({variant: "google-plus", followers : "894", circles: "92"})}/> + ({ variant: 'google-plus', followers: '894', circles: '92' })} />
@@ -155,7 +217,7 @@ class Widgets extends Component {
- ) + ); } } diff --git a/src/views/index.js b/src/views/index.js new file mode 100644 index 0000000..7ad09c6 --- /dev/null +++ b/src/views/index.js @@ -0,0 +1,68 @@ +import { + Breadcrumbs, + Cards, + Carousels, + Collapses, + Dropdowns, + Forms, + Jumbotrons, + ListGroups, + Navbars, + Navs, + Paginations, + Popovers, + ProgressBar, + Switches, + Tables, + Tabs, + Tooltips, +} from './Base'; + +import { ButtonDropdowns, ButtonGroups, Buttons, SocialButtons } from './Buttons'; +import Charts from './Charts'; +import Dashboard from './Dashboard'; +import { Flags, FontAwesome, SimpleLineIcons } from './Icons'; +import { Alerts, Badges, Modals } from './Notifications'; +import { Login, Page404, Page500, Register } from './Pages'; +import { Colors, Typography } from './Theme'; +import Widgets from './Widgets'; + +export { + Badges, + Typography, + Colors, + Page404, + Page500, + Register, + Login, + Modals, + Alerts, + Flags, + SimpleLineIcons, + FontAwesome, + ButtonDropdowns, + ButtonGroups, + SocialButtons, + Buttons, + Tooltips, + Tabs, + Tables, + Charts, + Dashboard, + Widgets, + Jumbotrons, + Switches, + ProgressBar, + Popovers, + Navs, + Navbars, + ListGroups, + Forms, + Dropdowns, + Collapses, + Carousels, + Cards, + Breadcrumbs, + Paginations, +}; + diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 5d342c3..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,112 +0,0 @@ -const webpack = require('webpack'); -const path = require('path'); -const ExtractTextPlugin = require('extract-text-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const CopyWebpackPlugin = require('copy-webpack-plugin'); - -const extractCSS = new ExtractTextPlugin('[name].fonts.css'); -const extractSCSS = new ExtractTextPlugin('[name].styles.css'); - -const BUILD_DIR = path.resolve(__dirname, 'build'); -const SRC_DIR = path.resolve(__dirname, 'src'); - -console.log('BUILD_DIR', BUILD_DIR); -console.log('SRC_DIR', SRC_DIR); - -module.exports = (env = {}) => { - return { - entry: { - index: [SRC_DIR + '/index.js'] - }, - output: { - path: BUILD_DIR, - filename: '[name].bundle.js' - }, - // watch: true, - devtool: env.prod ? 'source-map' : 'cheap-module-eval-source-map', - devServer: { - contentBase: BUILD_DIR, - // port: 9001, - compress: true, - hot: true, - open: true - }, - module: { - rules: [ - { - test: /\.(js|jsx)$/, - exclude: /node_modules/, - use: { - loader: 'babel-loader', - options: { - cacheDirectory: true, - presets: ['react', 'env'] - } - } - }, - { - test: /\.html$/, - loader: 'html-loader' - }, - { - test: /\.(scss)$/, - use: ['css-hot-loader'].concat(extractSCSS.extract({ - fallback: 'style-loader', - use: [ - { - loader: 'css-loader', - options: {alias: {'../img': '../public/img'}} - }, - { - loader: 'sass-loader' - } - ] - })) - }, - { - test: /\.css$/, - use: extractCSS.extract({ - fallback: 'style-loader', - use: 'css-loader' - }) - }, - { - test: /\.(png|jpg|jpeg|gif|ico)$/, - use: [ - { - // loader: 'url-loader' - loader: 'file-loader', - options: { - name: './img/[name].[hash].[ext]' - } - } - ] - }, - { - test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/, - loader: 'file-loader', - options: { - name: './fonts/[name].[hash].[ext]' - } - }] - }, - plugins: [ - new webpack.HotModuleReplacementPlugin(), - new webpack.optimize.UglifyJsPlugin({sourceMap: true}), - new webpack.NamedModulesPlugin(), - extractCSS, - extractSCSS, - new HtmlWebpackPlugin( - { - inject: true, - template: './public/index.html' - } - ), - new CopyWebpackPlugin([ - {from: './public/img', to: 'img'} - ], - {copyUnmodified: false} - ) - ] - } -}; \ No newline at end of file