From 12f367054805ff593a0e1061c9763b4115ca4a57 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 20:34:16 +0100 Subject: [PATCH 01/16] Fixed error in js --- front/src/utils/time.js | 2 +- front/stats.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 front/stats.json diff --git a/front/src/utils/time.js b/front/src/utils/time.js index 028131cf4..ca3edbdea 100644 --- a/front/src/utils/time.js +++ b/front/src/utils/time.js @@ -16,7 +16,7 @@ export default { durationFormatted (v) { let duration = parseInt(v) if (duration % 1 !== 0) { - return time.parse(0) + return this.parse(0) } duration = Math.round(duration) return this.parse(duration) diff --git a/front/stats.json b/front/stats.json new file mode 100644 index 000000000..e69de29bb From ba68246e0d6fb10f36563b6cb9e37115685a8680 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 21:45:12 +0100 Subject: [PATCH 02/16] Load translations separately to reduce bandwidth usage --- .gitignore | 1 + front/package.json | 5 +++-- front/scripts/i18n-compile.sh | 8 ++++++-- front/src/App.vue | 5 ++--- front/src/components/Footer.vue | 11 ++++++++++- front/src/main.js | 3 +-- front/vue.config.js | 6 ++++++ front/yarn.lock | 21 ++++++++++++++++++++- 8 files changed, 49 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 44459f0f8..e62b1ce62 100644 --- a/.gitignore +++ b/.gitignore @@ -93,5 +93,6 @@ po/*.po docs/swagger _build front/src/translations.json +front/src/translations/*.json front/locales/en_US/LC_MESSAGES/app.po *.prof diff --git a/front/package.json b/front/package.json index 23894600e..61a80bee8 100644 --- a/front/package.json +++ b/front/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "serve": "scripts/i18n-compile.sh && vue-cli-service serve --port ${VUE_PORT:-8000} --host ${VUE_HOST:-0.0.0.0}", + "serve": "vue-cli-service serve --port ${VUE_PORT:-8000} --host ${VUE_HOST:-0.0.0.0}", "build": "scripts/i18n-compile.sh && vue-cli-service build", "lint": "vue-cli-service lint", "i18n-extract": "scripts/i18n-extract.sh", @@ -49,7 +49,8 @@ "node-sass": "^4.9.3", "sass-loader": "^7.1.0", "sinon": "^6.1.5", - "vue-template-compiler": "^2.5.17" + "vue-template-compiler": "^2.5.17", + "webpack-bundle-size-analyzer": "^3.0.0" }, "eslintConfig": { "root": true, diff --git a/front/scripts/i18n-compile.sh b/front/scripts/i18n-compile.sh index 955913393..a5713df83 100755 --- a/front/scripts/i18n-compile.sh +++ b/front/scripts/i18n-compile.sh @@ -1,3 +1,7 @@ #!/bin/bash -eux -locales=$(tail -n +2 src/locales.js | sed -e 's/export default //' | jq '.locales[].code' | xargs echo) -find locales -name '*.po' | xargs $(yarn bin)/gettext-compile --output src/translations.json +locales=$(tail -n +2 src/locales.js | sed -e 's/export default //' | jq '.locales[].code' | grep -v 'en_US' | xargs echo) +for locale in $locales; do + find "locales/$locale" -name '*.po' | $(yarn bin)/gettext-compile locales/$locale/LC_MESSAGES/app.po --output src/translations/$locale.json +done + +# find locales -name '*.po' | xargs $(yarn bin)/gettext-compile --output src/translations.json diff --git a/front/src/App.vue b/front/src/App.vue index 6e6f45ff6..39e80f784 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -61,13 +61,12 @@ import {mapState} from 'vuex' import { WebSocketBridge } from 'django-channels' import GlobalEvents from '@/components/utils/global-events' -import translations from '@/translations' - import Sidebar from '@/components/Sidebar' import AppFooter from '@/components/Footer' import Raven from '@/components/Raven' import ServiceMessages from '@/components/ServiceMessages' +import locales from './locales' import PlaylistModal from '@/components/playlists/PlaylistModal' import ShortcutsModal from '@/components/ShortcutsModal' @@ -139,7 +138,7 @@ export default { }, autodetectLanguage () { let userLanguage = navigator.language || navigator.userLanguage - let available = _.keys(translations) + let available = locales.locales.map(e => { return e.code }) let matching = available.filter((a) => { return userLanguage.replace('-', '_') === a }) diff --git a/front/src/components/Footer.vue b/front/src/components/Footer.vue index e0fa2d4bb..a0543e1e3 100644 --- a/front/src/components/Footer.vue +++ b/front/src/components/Footer.vue @@ -20,7 +20,7 @@
-
@@ -60,7 +60,9 @@ diff --git a/front/src/main.js b/front/src/main.js index 7390a6998..4cd38a6be 100644 --- a/front/src/main.js +++ b/front/src/main.js @@ -22,12 +22,9 @@ import globals from '@/components/globals' // eslint-disable-line sync(store, router) window.$ = window.jQuery = require('jquery') - -// this is absolutely dirty but at the moment, semantic UI does not -// play really nice with webpack and I want to get rid of Google Fonts -// require('./semantic/semantic.css') -require('semantic-ui-css/semantic.js') +require('./semantic.js') require('masonry-layout') + let availableLanguages = (function () { let l = {} locales.locales.forEach(c => { diff --git a/front/src/semantic.js b/front/src/semantic.js new file mode 100644 index 000000000..8e091af0d --- /dev/null +++ b/front/src/semantic.js @@ -0,0 +1,24 @@ +require('semantic-ui-css/components/accordion.min.js') +require('semantic-ui-css/components/api.min.js') +require('semantic-ui-css/components/checkbox.min.js') +require('semantic-ui-css/components/colorize.min.js') +require('semantic-ui-css/components/dimmer.min.js') +require('semantic-ui-css/components/dropdown.min.js') +require('semantic-ui-css/components/embed.min.js') +require('semantic-ui-css/components/form.min.js') +require('semantic-ui-css/components/modal.min.js') +require('semantic-ui-css/components/nag.min.js') +require('semantic-ui-css/components/popup.min.js') +require('semantic-ui-css/components/progress.min.js') +require('semantic-ui-css/components/rating.min.js') +require('semantic-ui-css/components/search.min.js') +require('semantic-ui-css/components/shape.min.js') +require('semantic-ui-css/components/sidebar.min.js') +require('semantic-ui-css/components/site.min.js') +require('semantic-ui-css/components/state.min.js') +require('semantic-ui-css/components/sticky.min.js') +require('semantic-ui-css/components/tab.min.js') +require('semantic-ui-css/components/transition.min.js') +require('semantic-ui-css/components/video.min.js') +require('semantic-ui-css/components/visibility.min.js') +require('semantic-ui-css/components/visit.min.js') diff --git a/front/src/semantic/semantic.css b/front/src/semantic/semantic.css deleted file mode 100755 index a6b276359..000000000 --- a/front/src/semantic/semantic.css +++ /dev/null @@ -1,39268 +0,0 @@ -/* -* # Semantic UI - 2.3.0 -* https://github.com/Semantic-Org/Semantic-UI -* http://www.semantic-ui.com/ -* -* Copyright 2014 Contributors -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ -/* @import url('https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin'); */ -/*! -* # Semantic UI 2.3.0 - Reset -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Reset -*******************************/ - -/* Border-Box */ - -*, -*:before, -*:after { - -webkit-box-sizing: inherit; - box-sizing: inherit; -} - -html { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -/* iPad Input Shadows */ - -input[type="text"], -input[type="email"], -input[type="search"], -input[type="password"] { - -webkit-appearance: none; - -moz-appearance: none; - /* mobile firefox too! */ -} - -/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ - -/* Document - ========================================================================== */ - -/** -* 1. Correct the line height in all browsers. -* 2. Prevent adjustments of font size after orientation changes in -* IE on Windows Phone and in iOS. -*/ - -html { - line-height: 1.15; - /* 1 */ - -ms-text-size-adjust: 100%; - /* 2 */ - -webkit-text-size-adjust: 100%; - /* 2 */ -} - -/* Sections - ========================================================================== */ - -/** -* Remove the margin in all browsers (opinionated). -*/ - -body { - margin: 0; -} - -/** -* Add the correct display in IE 9-. -*/ - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -/** -* Correct the font size and margin on `h1` elements within `section` and -* `article` contexts in Chrome, Firefox, and Safari. -*/ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -* 1. Add the correct display in IE. -*/ - -figcaption, -figure, -main { - /* 1 */ - display: block; -} - -/** -* Add the correct margin in IE 8. -*/ - -figure { - margin: 1em 40px; -} - -/** -* 1. Add the correct box sizing in Firefox. -* 2. Show the overflow in Edge and IE. -*/ - -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - /* 1 */ - height: 0; - /* 1 */ - overflow: visible; - /* 2 */ -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ - -pre { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ - -/** -* 1. Remove the gray background on active links in IE 10. -* 2. Remove gaps in links underline in iOS 8+ and Safari 8+. -*/ - -a { - background-color: transparent; - /* 1 */ - -webkit-text-decoration-skip: objects; - /* 2 */ -} - -/** -* 1. Remove the bottom border in Chrome 57- and Firefox 39-. -* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. -*/ - -abbr[title] { - border-bottom: none; - /* 1 */ - text-decoration: underline; - /* 2 */ - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - /* 2 */ -} - -/** -* Prevent the duplicate application of `bolder` by the next rule in Safari 6. -*/ - -b, -strong { - font-weight: inherit; -} - -/** -* Add the correct font weight in Chrome, Edge, and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/** -* 1. Correct the inheritance and scaling of font size in all browsers. -* 2. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp { - font-family: monospace, monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/** -* Add the correct font style in Android 4.3-. -*/ - -dfn { - font-style: italic; -} - -/** -* Add the correct background and color in IE 9-. -*/ - -mark { - background-color: #ff0; - color: #000; -} - -/** -* Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/** -* Prevent `sub` and `sup` elements from affecting the line height in -* all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -*/ - -audio, -video { - display: inline-block; -} - -/** -* Add the correct display in iOS 4-7. -*/ - -audio:not([controls]) { - display: none; - height: 0; -} - -/** -* Remove the border on images inside links in IE 10-. -*/ - -img { - border-style: none; -} - -/** -* Hide the overflow in IE. -*/ - -svg:not(:root) { - overflow: hidden; -} - -/* Forms - ========================================================================== */ - -/** -* 1. Change the font styles in all browsers (opinionated). -* 2. Remove the margin in Firefox and Safari. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - /* 1 */ - font-size: 100%; - /* 1 */ - line-height: 1.15; - /* 1 */ - margin: 0; - /* 2 */ -} - -/** -* Show the overflow in IE. -* 1. Show the overflow in Edge. -*/ - -button, -input { - /* 1 */ - overflow: visible; -} - -/** -* Remove the inheritance of text transform in Edge, Firefox, and IE. -* 1. Remove the inheritance of text transform in Firefox. -*/ - -button, -select { - /* 1 */ - text-transform: none; -} - -/** -* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` -* controls in Android 4. -* 2. Correct the inability to style clickable types in iOS and Safari. -*/ - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; - /* 2 */ -} - -/** -* Remove the inner border and padding in Firefox. -*/ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** -* Restore the focus styles unset by the previous rule. -*/ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** -* Correct the padding in Firefox. -*/ - -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -/** -* 1. Correct the text wrapping in Edge and IE. -* 2. Correct the color inheritance from `fieldset` elements in IE. -* 3. Remove the padding so developers are not caught out when they zero out -* `fieldset` elements in all browsers. -*/ - -legend { - -webkit-box-sizing: border-box; - box-sizing: border-box; - /* 1 */ - color: inherit; - /* 2 */ - display: table; - /* 1 */ - max-width: 100%; - /* 1 */ - padding: 0; - /* 3 */ - white-space: normal; - /* 1 */ -} - -/** -* 1. Add the correct display in IE 9-. -* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. -*/ - -progress { - display: inline-block; - /* 1 */ - vertical-align: baseline; - /* 2 */ -} - -/** -* Remove the default vertical scrollbar in IE. -*/ - -textarea { - overflow: auto; -} - -/** -* 1. Add the correct box sizing in IE 10-. -* 2. Remove the padding in IE 10-. -*/ - -[type="checkbox"], -[type="radio"] { - -webkit-box-sizing: border-box; - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** -* Correct the cursor style of increment and decrement buttons in Chrome. -*/ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** -* 1. Correct the odd appearance in Chrome and Safari. -* 2. Correct the outline style in Safari. -*/ - -[type="search"] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/** -* Remove the inner padding and cancel buttons in Chrome and Safari on macOS. -*/ - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** -* 1. Correct the inability to style clickable types in iOS and Safari. -* 2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* Interactive - ========================================================================== */ - -/* -* Add the correct display in IE 9-. -* 1. Add the correct display in Edge, IE, and Firefox. -*/ - -details, -menu { - display: block; -} - -/* -* Add the correct display in all browsers. -*/ - -summary { - display: list-item; -} - -/* Scripting - ========================================================================== */ - -/** -* Add the correct display in IE 9-. -*/ - -canvas { - display: inline-block; -} - -/** -* Add the correct display in IE. -*/ - -template { - display: none; -} - -/* Hidden - ========================================================================== */ - -/** -* Add the correct display in IE 10-. -*/ - -[hidden] { - display: none; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Site -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Page -*******************************/ - -html, -body { - height: 100%; -} - -html { - font-size: 14px; -} - -body { - margin: 0px; - padding: 0px; - overflow-x: hidden; - min-width: 320px; - background: #FFFFFF; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 14px; - line-height: 1.4285em; - color: rgba(0, 0, 0, 0.87); - font-smoothing: antialiased; -} - -/******************************* - Headers -*******************************/ - -h1, -h2, -h3, -h4, -h5 { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - line-height: 1.28571429em; - margin: calc(2rem - 0.14285714em ) 0em 1rem; - font-weight: bold; - padding: 0em; -} - -h1 { - min-height: 1rem; - font-size: 2rem; -} - -h2 { - font-size: 1.71428571rem; -} - -h3 { - font-size: 1.28571429rem; -} - -h4 { - font-size: 1.07142857rem; -} - -h5 { - font-size: 1rem; -} - -h1:first-child, -h2:first-child, -h3:first-child, -h4:first-child, -h5:first-child { - margin-top: 0em; -} - -h1:last-child, -h2:last-child, -h3:last-child, -h4:last-child, -h5:last-child { - margin-bottom: 0em; -} - -/******************************* - Text -*******************************/ - -p { - margin: 0em 0em 1em; - line-height: 1.4285em; -} - -p:first-child { - margin-top: 0em; -} - -p:last-child { - margin-bottom: 0em; -} - -/*------------------- - Links ---------------------*/ - -a { - color: #4183C4; - text-decoration: none; -} - -a:hover { - color: #1e70bf; - text-decoration: none; -} - -/******************************* - Scrollbars -*******************************/ - -/******************************* - Highlighting -*******************************/ - -/* Site */ - -::-webkit-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -::-moz-selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -::selection { - background-color: #CCE2FF; - color: rgba(0, 0, 0, 0.87); -} - -/* Form */ - -textarea::-webkit-selection, -input::-webkit-selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -textarea::-moz-selection, -input::-moz-selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -textarea::selection, -input::selection { - background-color: rgba(100, 100, 100, 0.4); - color: rgba(0, 0, 0, 0.87); -} - -/* Force Simple Scrollbars */ - -body ::-webkit-scrollbar { - -webkit-appearance: none; - width: 10px; - height: 10px; -} - -body ::-webkit-scrollbar-track { - background: rgba(0, 0, 0, 0.1); - border-radius: 0px; -} - -body ::-webkit-scrollbar-thumb { - cursor: pointer; - border-radius: 5px; - background: rgba(0, 0, 0, 0.25); - -webkit-transition: color 0.2s ease; - transition: color 0.2s ease; -} - -body ::-webkit-scrollbar-thumb:window-inactive { - background: rgba(0, 0, 0, 0.15); -} - -body ::-webkit-scrollbar-thumb:hover { - background: rgba(128, 135, 139, 0.8); -} - -/* Inverted UI */ - -body .ui.inverted::-webkit-scrollbar-track { - background: rgba(255, 255, 255, 0.1); -} - -body .ui.inverted::-webkit-scrollbar-thumb { - background: rgba(255, 255, 255, 0.25); -} - -body .ui.inverted::-webkit-scrollbar-thumb:window-inactive { - background: rgba(255, 255, 255, 0.15); -} - -body .ui.inverted::-webkit-scrollbar-thumb:hover { - background: rgba(255, 255, 255, 0.35); -} - -/******************************* - Global Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Button -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Button -*******************************/ - -.ui.button { - cursor: pointer; - display: inline-block; - min-height: 1em; - outline: none; - border: none; - vertical-align: baseline; - background: #E0E1E2 none; - color: rgba(0, 0, 0, 0.6); - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - margin: 0em 0.25em 0em 0em; - padding: 0.78571429em 1.5em 0.78571429em; - text-transform: none; - text-shadow: none; - font-weight: bold; - line-height: 1em; - font-style: normal; - text-align: center; - text-decoration: none; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease; - transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - will-change: ''; - -webkit-tap-highlight-color: transparent; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.button:hover { - background-color: #CACBCD; - background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - color: rgba(0, 0, 0, 0.8); -} - -.ui.button:hover .icon { - opacity: 0.85; -} - -/*-------------- - Focus ----------------*/ - -.ui.button:focus { - background-color: #CACBCD; - color: rgba(0, 0, 0, 0.8); - background-image: '' !important; - -webkit-box-shadow: '' !important; - box-shadow: '' !important; -} - -.ui.button:focus .icon { - opacity: 0.85; -} - -/*-------------- - Down ----------------*/ - -.ui.button:active, -.ui.active.button:active { - background-color: #BABBBC; - background-image: ''; - color: rgba(0, 0, 0, 0.9); - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, none; - box-shadow: 0px 0px 0px 1px transparent inset, none; -} - -/*-------------- - Active ----------------*/ - -.ui.active.button { - background-color: #C0C1C2; - background-image: none; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset; - box-shadow: 0px 0px 0px 1px transparent inset; - color: rgba(0, 0, 0, 0.95); -} - -.ui.active.button:hover { - background-color: #C0C1C2; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -.ui.active.button:active { - background-color: #C0C1C2; - background-image: none; -} - -/*-------------- - Loading ----------------*/ - -/* Specificity hack */ - -.ui.loading.loading.loading.loading.loading.loading.button { - position: relative; - cursor: default; - text-shadow: none !important; - color: transparent !important; - opacity: 1; - pointer-events: auto; - -webkit-transition: all 0s linear, opacity 0.1s ease; - transition: all 0s linear, opacity 0.1s ease; -} - -.ui.loading.button:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.15); -} - -.ui.loading.button:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #FFFFFF transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -.ui.labeled.icon.loading.button .icon { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} - -@-webkit-keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes button-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.ui.basic.loading.button:not(.inverted):before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.basic.loading.button:not(.inverted):after { - border-top-color: #767676; -} - -/*------------------- - Disabled ---------------------*/ - -.ui.buttons .disabled.button, -.ui.disabled.button, -.ui.button:disabled, -.ui.disabled.button:hover, -.ui.disabled.active.button { - cursor: default; - opacity: 0.45 !important; - background-image: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - pointer-events: none !important; -} - -/* Basic Group With Disabled */ - -.ui.basic.buttons .ui.disabled.button { - border-color: rgba(34, 36, 38, 0.5); -} - -/******************************* - Types -*******************************/ - -/*------------------- - Animated ---------------------*/ - -.ui.animated.button { - position: relative; - overflow: hidden; - padding-right: 0em !important; - vertical-align: middle; - z-index: 1; -} - -.ui.animated.button .content { - will-change: transform, opacity; -} - -.ui.animated.button .visible.content { - position: relative; - margin-right: 1.5em; -} - -.ui.animated.button .hidden.content { - position: absolute; - width: 100%; -} - -/* Horizontal */ - -.ui.animated.button .visible.content, -.ui.animated.button .hidden.content { - -webkit-transition: right 0.3s ease 0s; - transition: right 0.3s ease 0s; -} - -.ui.animated.button .visible.content { - left: auto; - right: 0%; -} - -.ui.animated.button .hidden.content { - top: 50%; - left: auto; - right: -100%; - margin-top: -0.5em; -} - -.ui.animated.button:focus .visible.content, -.ui.animated.button:hover .visible.content { - left: auto; - right: 200%; -} - -.ui.animated.button:focus .hidden.content, -.ui.animated.button:hover .hidden.content { - left: auto; - right: 0%; -} - -/* Vertical */ - -.ui.vertical.animated.button .visible.content, -.ui.vertical.animated.button .hidden.content { - -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease; - transition: top 0.3s ease, -webkit-transform 0.3s ease; - transition: top 0.3s ease, transform 0.3s ease; - transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; -} - -.ui.vertical.animated.button .visible.content { - -webkit-transform: translateY(0%); - transform: translateY(0%); - right: auto; -} - -.ui.vertical.animated.button .hidden.content { - top: -50%; - left: 0%; - right: auto; -} - -.ui.vertical.animated.button:focus .visible.content, -.ui.vertical.animated.button:hover .visible.content { - -webkit-transform: translateY(200%); - transform: translateY(200%); - right: auto; -} - -.ui.vertical.animated.button:focus .hidden.content, -.ui.vertical.animated.button:hover .hidden.content { - top: 50%; - right: auto; -} - -/* Fade */ - -.ui.fade.animated.button .visible.content, -.ui.fade.animated.button .hidden.content { - -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease; - transition: opacity 0.3s ease, -webkit-transform 0.3s ease; - transition: opacity 0.3s ease, transform 0.3s ease; - transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease; -} - -.ui.fade.animated.button .visible.content { - left: auto; - right: auto; - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} - -.ui.fade.animated.button .hidden.content { - opacity: 0; - left: 0%; - right: auto; - -webkit-transform: scale(1.5); - transform: scale(1.5); -} - -.ui.fade.animated.button:focus .visible.content, -.ui.fade.animated.button:hover .visible.content { - left: auto; - right: auto; - opacity: 0; - -webkit-transform: scale(0.75); - transform: scale(0.75); -} - -.ui.fade.animated.button:focus .hidden.content, -.ui.fade.animated.button:hover .hidden.content { - left: 0%; - right: auto; - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.button { - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - background: transparent none; - color: #FFFFFF; - text-shadow: none !important; -} - -/* Group */ - -.ui.inverted.buttons .button { - margin: 0px 0px 0px -2px; -} - -.ui.inverted.buttons .button:first-child { - margin-left: 0em; -} - -.ui.inverted.vertical.buttons .button { - margin: 0px 0px -2px 0px; -} - -.ui.inverted.vertical.buttons .button:first-child { - margin-top: 0em; -} - -/* States */ - -/* Hover */ - -.ui.inverted.button:hover { - background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/* Active / Focus */ - -.ui.inverted.button:focus, -.ui.inverted.button.active { - background: #FFFFFF; - -webkit-box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - box-shadow: 0px 0px 0px 2px #FFFFFF inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/* Active Focus */ - -.ui.inverted.button.active:focus { - background: #DCDDDE; - -webkit-box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; - box-shadow: 0px 0px 0px 2px #DCDDDE inset !important; - color: rgba(0, 0, 0, 0.8); -} - -/*------------------- - Labeled Button ---------------------*/ - -.ui.labeled.button:not(.icon) { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - background: none !important; - padding: 0px !important; - border: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.ui.labeled.button > .button { - margin: 0px; -} - -.ui.labeled.button > .label { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0px 0px 0px -1px !important; - padding: ''; - font-size: 1em; - border-color: rgba(34, 36, 38, 0.15); -} - -/* Tag */ - -.ui.labeled.button > .tag.label:before { - width: 1.85em; - height: 1.85em; -} - -/* Right */ - -.ui.labeled.button:not([class*="left labeled"]) > .button { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.button:not([class*="left labeled"]) > .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -/* Left Side */ - -.ui[class*="left labeled"].button > .button { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="left labeled"].button > .label { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -/*------------------- - Social ---------------------*/ - -/* Facebook */ - -.ui.facebook.button { - background-color: #3B5998; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.facebook.button:hover { - background-color: #304d8a; - color: #FFFFFF; - text-shadow: none; -} - -.ui.facebook.button:active { - background-color: #2d4373; - color: #FFFFFF; - text-shadow: none; -} - -/* Twitter */ - -.ui.twitter.button { - background-color: #55ACEE; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.twitter.button:hover { - background-color: #35a2f4; - color: #FFFFFF; - text-shadow: none; -} - -.ui.twitter.button:active { - background-color: #2795e9; - color: #FFFFFF; - text-shadow: none; -} - -/* Google Plus */ - -.ui.google.plus.button { - background-color: #DD4B39; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.google.plus.button:hover { - background-color: #e0321c; - color: #FFFFFF; - text-shadow: none; -} - -.ui.google.plus.button:active { - background-color: #c23321; - color: #FFFFFF; - text-shadow: none; -} - -/* Linked In */ - -.ui.linkedin.button { - background-color: #1F88BE; - color: #FFFFFF; - text-shadow: none; -} - -.ui.linkedin.button:hover { - background-color: #147baf; - color: #FFFFFF; - text-shadow: none; -} - -.ui.linkedin.button:active { - background-color: #186992; - color: #FFFFFF; - text-shadow: none; -} - -/* YouTube */ - -.ui.youtube.button { - background-color: #FF0000; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.youtube.button:hover { - background-color: #e60000; - color: #FFFFFF; - text-shadow: none; -} - -.ui.youtube.button:active { - background-color: #cc0000; - color: #FFFFFF; - text-shadow: none; -} - -/* Instagram */ - -.ui.instagram.button { - background-color: #49769C; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.instagram.button:hover { - background-color: #3d698e; - color: #FFFFFF; - text-shadow: none; -} - -.ui.instagram.button:active { - background-color: #395c79; - color: #FFFFFF; - text-shadow: none; -} - -/* Pinterest */ - -.ui.pinterest.button { - background-color: #BD081C; - color: #FFFFFF; - text-shadow: none; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.pinterest.button:hover { - background-color: #ac0013; - color: #FFFFFF; - text-shadow: none; -} - -.ui.pinterest.button:active { - background-color: #8c0615; - color: #FFFFFF; - text-shadow: none; -} - -/* VK */ - -.ui.vk.button { - background-color: #4D7198; - color: #FFFFFF; - background-image: none; - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.vk.button:hover { - background-color: #41648a; - color: #FFFFFF; -} - -.ui.vk.button:active { - background-color: #3c5876; - color: #FFFFFF; -} - -/*-------------- - Icon ----------------*/ - -.ui.button > .icon:not(.button) { - height: 0.85714286em; - opacity: 0.8; - margin: 0em 0.42857143em 0em -0.21428571em; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; - vertical-align: ''; - color: ''; -} - -.ui.button:not(.icon) > .icon:not(.button):not(.dropdown) { - margin: 0em 0.42857143em 0em -0.21428571em; -} - -.ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) { - margin: 0em -0.21428571em 0em 0.42857143em; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Floated ---------------------*/ - -.ui[class*="left floated"].buttons, -.ui[class*="left floated"].button { - float: left; - margin-left: 0em; - margin-right: 0.25em; -} - -.ui[class*="right floated"].buttons, -.ui[class*="right floated"].button { - float: right; - margin-right: 0em; - margin-left: 0.25em; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.buttons .button, -.ui.compact.button { - padding: 0.58928571em 1.125em 0.58928571em; -} - -.ui.compact.icon.buttons .button, -.ui.compact.icon.button { - padding: 0.58928571em 0.58928571em 0.58928571em; -} - -.ui.compact.labeled.icon.buttons .button, -.ui.compact.labeled.icon.button { - padding: 0.58928571em 3.69642857em 0.58928571em; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.buttons .button, -.ui.mini.buttons .or, -.ui.mini.button { - font-size: 0.78571429rem; -} - -.ui.tiny.buttons .button, -.ui.tiny.buttons .or, -.ui.tiny.button { - font-size: 0.85714286rem; -} - -.ui.small.buttons .button, -.ui.small.buttons .or, -.ui.small.button { - font-size: 0.92857143rem; -} - -.ui.buttons .button, -.ui.buttons .or, -.ui.button { - font-size: 1rem; -} - -.ui.large.buttons .button, -.ui.large.buttons .or, -.ui.large.button { - font-size: 1.14285714rem; -} - -.ui.big.buttons .button, -.ui.big.buttons .or, -.ui.big.button { - font-size: 1.28571429rem; -} - -.ui.huge.buttons .button, -.ui.huge.buttons .or, -.ui.huge.button { - font-size: 1.42857143rem; -} - -.ui.massive.buttons .button, -.ui.massive.buttons .or, -.ui.massive.button { - font-size: 1.71428571rem; -} - -/*-------------- - Icon Only ----------------*/ - -.ui.icon.buttons .button, -.ui.icon.button { - padding: 0.78571429em 0.78571429em 0.78571429em; -} - -.ui.icon.buttons .button > .icon, -.ui.icon.button > .icon { - opacity: 0.9; - margin: 0em !important; - vertical-align: top; -} - -/*------------------- - Basic ---------------------*/ - -.ui.basic.buttons .button, -.ui.basic.button { - background: transparent none !important; - color: rgba(0, 0, 0, 0.6) !important; - font-weight: normal; - border-radius: 0.28571429rem; - text-transform: none; - text-shadow: none !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons { - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; -} - -.ui.basic.buttons .button { - border-radius: 0em; -} - -.ui.basic.buttons .button:hover, -.ui.basic.button:hover { - background: #FFFFFF !important; - color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .button:focus, -.ui.basic.button:focus { - background: #FFFFFF !important; - color: rgba(0, 0, 0, 0.8) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .button:active, -.ui.basic.button:active { - background: #F8F8F8 !important; - color: rgba(0, 0, 0, 0.9) !important; - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.basic.buttons .active.button, -.ui.basic.active.button { - background: rgba(0, 0, 0, 0.05) !important; - -webkit-box-shadow: '' !important; - box-shadow: '' !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.basic.buttons .active.button:hover, -.ui.basic.active.button:hover { - background-color: rgba(0, 0, 0, 0.05); -} - -/* Vertical */ - -.ui.basic.buttons .button:hover { - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset; -} - -.ui.basic.buttons .button:active { - -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; - box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset; -} - -.ui.basic.buttons .active.button { - -webkit-box-shadow: '' !important; - box-shadow: '' !important; -} - -/* Standard Basic Inverted */ - -.ui.basic.inverted.buttons .button, -.ui.basic.inverted.button { - background-color: transparent !important; - color: #F9FAFB !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; -} - -.ui.basic.inverted.buttons .button:hover, -.ui.basic.inverted.button:hover { - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:focus, -.ui.basic.inverted.button:focus { - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -.ui.basic.inverted.buttons .button:active, -.ui.basic.inverted.button:active { - background-color: rgba(255, 255, 255, 0.08) !important; - color: #FFFFFF !important; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important; -} - -.ui.basic.inverted.buttons .active.button, -.ui.basic.inverted.active.button { - background-color: rgba(255, 255, 255, 0.08); - color: #FFFFFF; - text-shadow: none; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset; -} - -.ui.basic.inverted.buttons .active.button:hover, -.ui.basic.inverted.active.button:hover { - background-color: rgba(255, 255, 255, 0.15); - -webkit-box-shadow: 0px 0px 0px 2px #ffffff inset !important; - box-shadow: 0px 0px 0px 2px #ffffff inset !important; -} - -/* Basic Group */ - -.ui.basic.buttons .button { - border-left: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.basic.vertical.buttons .button { - border-left: none; -} - -.ui.basic.vertical.buttons .button { - border-left-width: 0px; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.basic.vertical.buttons .button:first-child { - border-top-width: 0px; -} - -/*-------------- - Labeled Icon ----------------*/ - -.ui.labeled.icon.buttons .button, -.ui.labeled.icon.button { - position: relative; - padding-left: 4.07142857em !important; - padding-right: 1.5em !important; -} - -/* Left Labeled */ - -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - position: absolute; - height: 100%; - line-height: 1; - border-radius: 0px; - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; - text-align: center; - margin: 0em; - width: 2.57142857em; - background-color: rgba(0, 0, 0, 0.05); - color: ''; - -webkit-box-shadow: -1px 0px 0px 0px transparent inset; - box-shadow: -1px 0px 0px 0px transparent inset; -} - -/* Left Labeled */ - -.ui.labeled.icon.buttons > .button > .icon, -.ui.labeled.icon.button > .icon { - top: 0em; - left: 0em; -} - -/* Right Labeled */ - -.ui[class*="right labeled"].icon.button { - padding-right: 4.07142857em !important; - padding-left: 1.5em !important; -} - -.ui[class*="right labeled"].icon.button > .icon { - left: auto; - right: 0em; - border-radius: 0px; - border-top-right-radius: inherit; - border-bottom-right-radius: inherit; - -webkit-box-shadow: 1px 0px 0px 0px transparent inset; - box-shadow: 1px 0px 0px 0px transparent inset; -} - -.ui.labeled.icon.buttons > .button > .icon:before, -.ui.labeled.icon.button > .icon:before, -.ui.labeled.icon.buttons > .button > .icon:after, -.ui.labeled.icon.button > .icon:after { - display: block; - position: absolute; - width: 100%; - top: 50%; - text-align: center; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} - -.ui.labeled.icon.buttons .button > .icon { - border-radius: 0em; -} - -.ui.labeled.icon.buttons .button:first-child > .icon { - border-top-left-radius: 0.28571429rem; - border-bottom-left-radius: 0.28571429rem; -} - -.ui.labeled.icon.buttons .button:last-child > .icon { - border-top-right-radius: 0.28571429rem; - border-bottom-right-radius: 0.28571429rem; -} - -.ui.vertical.labeled.icon.buttons .button:first-child > .icon { - border-radius: 0em; - border-top-left-radius: 0.28571429rem; -} - -.ui.vertical.labeled.icon.buttons .button:last-child > .icon { - border-radius: 0em; - border-bottom-left-radius: 0.28571429rem; -} - -/* Fluid Labeled */ - -.ui.fluid[class*="left labeled"].icon.button, -.ui.fluid[class*="right labeled"].icon.button { - padding-left: 1.5em !important; - padding-right: 1.5em !important; -} - -/*-------------- - Toggle ----------------*/ - -/* Toggle (Modifies active state to give affordances) */ - -.ui.toggle.buttons .active.button, -.ui.buttons .button.toggle.active, -.ui.button.toggle.active { - background-color: #21BA45 !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - text-shadow: none; - color: #FFFFFF !important; -} - -.ui.button.toggle.active:hover { - background-color: #16ab39 !important; - text-shadow: none; - color: #FFFFFF !important; -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.button { - border-radius: 10em; -} - -.ui.circular.button > .icon { - width: 1em; - vertical-align: baseline; -} - -/*------------------- - Or Buttons ---------------------*/ - -.ui.buttons .or { - position: relative; - width: 0.3em; - height: 2.57142857em; - z-index: 3; -} - -.ui.buttons .or:before { - position: absolute; - text-align: center; - border-radius: 500rem; - content: 'or'; - top: 50%; - left: 50%; - background-color: #FFFFFF; - text-shadow: none; - margin-top: -0.89285714em; - margin-left: -0.89285714em; - width: 1.78571429em; - height: 1.78571429em; - line-height: 1.78571429em; - color: rgba(0, 0, 0, 0.4); - font-style: normal; - font-weight: bold; - -webkit-box-shadow: 0px 0px 0px 1px transparent inset; - box-shadow: 0px 0px 0px 1px transparent inset; -} - -.ui.buttons .or[data-text]:before { - content: attr(data-text); -} - -/* Fluid Or */ - -.ui.fluid.buttons .or { - width: 0em !important; -} - -.ui.fluid.buttons .or:after { - display: none; -} - -/*------------------- - Attached ---------------------*/ - -/* Singular */ - -.ui.attached.button { - position: relative; - display: block; - margin: 0em; - border-radius: 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important; -} - -/* Top / Bottom */ - -.ui.attached.top.button { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.attached.bottom.button { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Left / Right */ - -.ui.left.attached.button { - display: inline-block; - border-left: none; - text-align: right; - padding-right: 0.75em; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui.right.attached.button { - display: inline-block; - text-align: left; - padding-left: 0.75em; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -/* Plural */ - -.ui.attached.buttons { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - border-radius: 0em; - width: auto !important; - z-index: 2; - margin-left: -1px; - margin-right: -1px; -} - -.ui.attached.buttons .button { - margin: 0em; -} - -.ui.attached.buttons .button:first-child { - border-radius: 0em; -} - -.ui.attached.buttons .button:last-child { - border-radius: 0em; -} - -/* Top / Bottom */ - -.ui[class*="top attached"].buttons { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui[class*="top attached"].buttons .button:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui[class*="top attached"].buttons .button:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui[class*="bottom attached"].buttons { - margin-top: -1px; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].buttons .button:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui[class*="bottom attached"].buttons .button:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/* Left / Right */ - -.ui[class*="left attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 0em; - margin-left: -1px; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui[class*="left attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui[class*="left attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0.28571429rem 0em; -} - -.ui[class*="right attached"].buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-left: 0em; - margin-right: -1px; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui[class*="right attached"].buttons .button:first-child { - margin-left: -1px; - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui[class*="right attached"].buttons .button:last-child { - margin-left: -1px; - border-radius: 0em 0em 0em 0.28571429rem; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.buttons, -.ui.fluid.button { - width: 100%; -} - -.ui.fluid.button { - display: block; -} - -.ui.two.buttons { - width: 100%; -} - -.ui.two.buttons > .button { - width: 50%; -} - -.ui.three.buttons { - width: 100%; -} - -.ui.three.buttons > .button { - width: 33.333%; -} - -.ui.four.buttons { - width: 100%; -} - -.ui.four.buttons > .button { - width: 25%; -} - -.ui.five.buttons { - width: 100%; -} - -.ui.five.buttons > .button { - width: 20%; -} - -.ui.six.buttons { - width: 100%; -} - -.ui.six.buttons > .button { - width: 16.666%; -} - -.ui.seven.buttons { - width: 100%; -} - -.ui.seven.buttons > .button { - width: 14.285%; -} - -.ui.eight.buttons { - width: 100%; -} - -.ui.eight.buttons > .button { - width: 12.500%; -} - -.ui.nine.buttons { - width: 100%; -} - -.ui.nine.buttons > .button { - width: 11.11%; -} - -.ui.ten.buttons { - width: 100%; -} - -.ui.ten.buttons > .button { - width: 10%; -} - -.ui.eleven.buttons { - width: 100%; -} - -.ui.eleven.buttons > .button { - width: 9.09%; -} - -.ui.twelve.buttons { - width: 100%; -} - -.ui.twelve.buttons > .button { - width: 8.3333%; -} - -/* Fluid Vertical Buttons */ - -.ui.fluid.vertical.buttons, -.ui.fluid.vertical.buttons > .button { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: auto; -} - -.ui.two.vertical.buttons > .button { - height: 50%; -} - -.ui.three.vertical.buttons > .button { - height: 33.333%; -} - -.ui.four.vertical.buttons > .button { - height: 25%; -} - -.ui.five.vertical.buttons > .button { - height: 20%; -} - -.ui.six.vertical.buttons > .button { - height: 16.666%; -} - -.ui.seven.vertical.buttons > .button { - height: 14.285%; -} - -.ui.eight.vertical.buttons > .button { - height: 12.500%; -} - -.ui.nine.vertical.buttons > .button { - height: 11.11%; -} - -.ui.ten.vertical.buttons > .button { - height: 10%; -} - -.ui.eleven.vertical.buttons > .button { - height: 9.09%; -} - -.ui.twelve.vertical.buttons > .button { - height: 8.3333%; -} - -/*------------------- - Colors ---------------------*/ - -/*--- Black ---*/ - -.ui.black.buttons .button, -.ui.black.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.black.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.black.buttons .button:hover, -.ui.black.button:hover { - background-color: #27292a; - color: #FFFFFF; - text-shadow: none; -} - -.ui.black.buttons .button:focus, -.ui.black.button:focus { - background-color: #2f3032; - color: #FFFFFF; - text-shadow: none; -} - -.ui.black.buttons .button:active, -.ui.black.button:active { - background-color: #343637; - color: #FFFFFF; - text-shadow: none; -} - -.ui.black.buttons .active.button, -.ui.black.buttons .active.button:active, -.ui.black.active.button, -.ui.black.button .active.button:active { - background-color: #0f0f10; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.black.buttons .button, -.ui.basic.black.button { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; -} - -.ui.basic.black.buttons .button:hover, -.ui.basic.black.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; -} - -.ui.basic.black.buttons .button:focus, -.ui.basic.black.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2f3032 inset !important; - box-shadow: 0px 0px 0px 1px #2f3032 inset !important; - color: #27292a !important; -} - -.ui.basic.black.buttons .active.button, -.ui.basic.black.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; - box-shadow: 0px 0px 0px 1px #0f0f10 inset !important; - color: #343637 !important; -} - -.ui.basic.black.buttons .button:active, -.ui.basic.black.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; -} - -.ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.black.buttons .button, -.ui.inverted.black.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - color: #FFFFFF; -} - -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover, -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus, -.ui.inverted.black.buttons .button.active, -.ui.inverted.black.button.active, -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.black.buttons .button:hover, -.ui.inverted.black.button:hover { - background-color: #000000; -} - -.ui.inverted.black.buttons .button:focus, -.ui.inverted.black.button:focus { - background-color: #000000; -} - -.ui.inverted.black.buttons .active.button, -.ui.inverted.black.active.button { - background-color: #000000; -} - -.ui.inverted.black.buttons .button:active, -.ui.inverted.black.button:active { - background-color: #000000; -} - -/* Inverted Basic */ - -.ui.inverted.black.basic.buttons .button, -.ui.inverted.black.buttons .basic.button, -.ui.inverted.black.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:hover, -.ui.inverted.black.buttons .basic.button:hover, -.ui.inverted.black.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.buttons .button:focus, -.ui.inverted.black.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #545454 !important; -} - -.ui.inverted.black.basic.buttons .active.button, -.ui.inverted.black.buttons .basic.active.button, -.ui.inverted.black.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.black.basic.buttons .button:active, -.ui.inverted.black.buttons .basic.button:active, -.ui.inverted.black.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #000000 inset !important; - box-shadow: 0px 0px 0px 2px #000000 inset !important; - color: #FFFFFF !important; -} - -/*--- Grey ---*/ - -.ui.grey.buttons .button, -.ui.grey.button { - background-color: #767676; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.grey.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.grey.buttons .button:hover, -.ui.grey.button:hover { - background-color: #838383; - color: #FFFFFF; - text-shadow: none; -} - -.ui.grey.buttons .button:focus, -.ui.grey.button:focus { - background-color: #8a8a8a; - color: #FFFFFF; - text-shadow: none; -} - -.ui.grey.buttons .button:active, -.ui.grey.button:active { - background-color: #909090; - color: #FFFFFF; - text-shadow: none; -} - -.ui.grey.buttons .active.button, -.ui.grey.buttons .active.button:active, -.ui.grey.active.button, -.ui.grey.button .active.button:active { - background-color: #696969; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.grey.buttons .button, -.ui.basic.grey.button { - -webkit-box-shadow: 0px 0px 0px 1px #767676 inset !important; - box-shadow: 0px 0px 0px 1px #767676 inset !important; - color: #767676 !important; -} - -.ui.basic.grey.buttons .button:hover, -.ui.basic.grey.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #838383 inset !important; - box-shadow: 0px 0px 0px 1px #838383 inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .button:focus, -.ui.basic.grey.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - box-shadow: 0px 0px 0px 1px #8a8a8a inset !important; - color: #838383 !important; -} - -.ui.basic.grey.buttons .active.button, -.ui.basic.grey.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #696969 inset !important; - box-shadow: 0px 0px 0px 1px #696969 inset !important; - color: #909090 !important; -} - -.ui.basic.grey.buttons .button:active, -.ui.basic.grey.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #909090 inset !important; - box-shadow: 0px 0px 0px 1px #909090 inset !important; - color: #909090 !important; -} - -.ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.grey.buttons .button, -.ui.inverted.grey.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important; - color: #FFFFFF; -} - -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover, -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus, -.ui.inverted.grey.buttons .button.active, -.ui.inverted.grey.button.active, -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.grey.buttons .button:hover, -.ui.inverted.grey.button:hover { - background-color: #cfd0d2; -} - -.ui.inverted.grey.buttons .button:focus, -.ui.inverted.grey.button:focus { - background-color: #c7c9cb; -} - -.ui.inverted.grey.buttons .active.button, -.ui.inverted.grey.active.button { - background-color: #cfd0d2; -} - -.ui.inverted.grey.buttons .button:active, -.ui.inverted.grey.button:active { - background-color: #c2c4c5; -} - -/* Inverted Basic */ - -.ui.inverted.grey.basic.buttons .button, -.ui.inverted.grey.buttons .basic.button, -.ui.inverted.grey.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:hover, -.ui.inverted.grey.buttons .basic.button:hover, -.ui.inverted.grey.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.buttons .button:focus, -.ui.inverted.grey.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - box-shadow: 0px 0px 0px 2px #c7c9cb inset !important; - color: #DCDDDE !important; -} - -.ui.inverted.grey.basic.buttons .active.button, -.ui.inverted.grey.buttons .basic.active.button, -.ui.inverted.grey.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.grey.basic.buttons .button:active, -.ui.inverted.grey.buttons .basic.button:active, -.ui.inverted.grey.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important; - color: #FFFFFF !important; -} - -/*--- Brown ---*/ - -.ui.brown.buttons .button, -.ui.brown.button { - background-color: #A5673F; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.brown.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.brown.buttons .button:hover, -.ui.brown.button:hover { - background-color: #975b33; - color: #FFFFFF; - text-shadow: none; -} - -.ui.brown.buttons .button:focus, -.ui.brown.button:focus { - background-color: #90532b; - color: #FFFFFF; - text-shadow: none; -} - -.ui.brown.buttons .button:active, -.ui.brown.button:active { - background-color: #805031; - color: #FFFFFF; - text-shadow: none; -} - -.ui.brown.buttons .active.button, -.ui.brown.buttons .active.button:active, -.ui.brown.active.button, -.ui.brown.button .active.button:active { - background-color: #995a31; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.brown.buttons .button, -.ui.basic.brown.button { - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset !important; - box-shadow: 0px 0px 0px 1px #A5673F inset !important; - color: #A5673F !important; -} - -.ui.basic.brown.buttons .button:hover, -.ui.basic.brown.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #975b33 inset !important; - box-shadow: 0px 0px 0px 1px #975b33 inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .button:focus, -.ui.basic.brown.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #90532b inset !important; - box-shadow: 0px 0px 0px 1px #90532b inset !important; - color: #975b33 !important; -} - -.ui.basic.brown.buttons .active.button, -.ui.basic.brown.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #995a31 inset !important; - box-shadow: 0px 0px 0px 1px #995a31 inset !important; - color: #805031 !important; -} - -.ui.basic.brown.buttons .button:active, -.ui.basic.brown.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #805031 inset !important; - box-shadow: 0px 0px 0px 1px #805031 inset !important; - color: #805031 !important; -} - -.ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.brown.buttons .button, -.ui.inverted.brown.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D67C1C inset !important; - box-shadow: 0px 0px 0px 2px #D67C1C inset !important; - color: #D67C1C; -} - -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover, -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus, -.ui.inverted.brown.buttons .button.active, -.ui.inverted.brown.button.active, -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.brown.buttons .button:hover, -.ui.inverted.brown.button:hover { - background-color: #c86f11; -} - -.ui.inverted.brown.buttons .button:focus, -.ui.inverted.brown.button:focus { - background-color: #c16808; -} - -.ui.inverted.brown.buttons .active.button, -.ui.inverted.brown.active.button { - background-color: #cc6f0d; -} - -.ui.inverted.brown.buttons .button:active, -.ui.inverted.brown.button:active { - background-color: #a96216; -} - -/* Inverted Basic */ - -.ui.inverted.brown.basic.buttons .button, -.ui.inverted.brown.buttons .basic.button, -.ui.inverted.brown.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.brown.basic.buttons .button:hover, -.ui.inverted.brown.buttons .basic.button:hover, -.ui.inverted.brown.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - box-shadow: 0px 0px 0px 2px #c86f11 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.buttons .button:focus, -.ui.inverted.brown.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #c16808 inset !important; - box-shadow: 0px 0px 0px 2px #c16808 inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .active.button, -.ui.inverted.brown.buttons .basic.active.button, -.ui.inverted.brown.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - box-shadow: 0px 0px 0px 2px #cc6f0d inset !important; - color: #D67C1C !important; -} - -.ui.inverted.brown.basic.buttons .button:active, -.ui.inverted.brown.buttons .basic.button:active, -.ui.inverted.brown.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #a96216 inset !important; - box-shadow: 0px 0px 0px 2px #a96216 inset !important; - color: #D67C1C !important; -} - -/*--- Blue ---*/ - -.ui.blue.buttons .button, -.ui.blue.button { - background-color: #2185D0; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.blue.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.blue.buttons .button:hover, -.ui.blue.button:hover { - background-color: #1678c2; - color: #FFFFFF; - text-shadow: none; -} - -.ui.blue.buttons .button:focus, -.ui.blue.button:focus { - background-color: #0d71bb; - color: #FFFFFF; - text-shadow: none; -} - -.ui.blue.buttons .button:active, -.ui.blue.button:active { - background-color: #1a69a4; - color: #FFFFFF; - text-shadow: none; -} - -.ui.blue.buttons .active.button, -.ui.blue.buttons .active.button:active, -.ui.blue.active.button, -.ui.blue.button .active.button:active { - background-color: #1279c6; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.blue.buttons .button, -.ui.basic.blue.button { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; -} - -.ui.basic.blue.buttons .button:hover, -.ui.basic.blue.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .button:focus, -.ui.basic.blue.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; -} - -.ui.basic.blue.buttons .active.button, -.ui.basic.blue.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; -} - -.ui.basic.blue.buttons .button:active, -.ui.basic.blue.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; -} - -.ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.blue.buttons .button, -.ui.inverted.blue.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - box-shadow: 0px 0px 0px 2px #54C8FF inset !important; - color: #54C8FF; -} - -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover, -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus, -.ui.inverted.blue.buttons .button.active, -.ui.inverted.blue.button.active, -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.blue.buttons .button:hover, -.ui.inverted.blue.button:hover { - background-color: #3ac0ff; -} - -.ui.inverted.blue.buttons .button:focus, -.ui.inverted.blue.button:focus { - background-color: #2bbbff; -} - -.ui.inverted.blue.buttons .active.button, -.ui.inverted.blue.active.button { - background-color: #3ac0ff; -} - -.ui.inverted.blue.buttons .button:active, -.ui.inverted.blue.button:active { - background-color: #21b8ff; -} - -/* Inverted Basic */ - -.ui.inverted.blue.basic.buttons .button, -.ui.inverted.blue.buttons .basic.button, -.ui.inverted.blue.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.blue.basic.buttons .button:hover, -.ui.inverted.blue.buttons .basic.button:hover, -.ui.inverted.blue.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.buttons .button:focus, -.ui.inverted.blue.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - box-shadow: 0px 0px 0px 2px #2bbbff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .active.button, -.ui.inverted.blue.buttons .basic.active.button, -.ui.inverted.blue.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - box-shadow: 0px 0px 0px 2px #3ac0ff inset !important; - color: #54C8FF !important; -} - -.ui.inverted.blue.basic.buttons .button:active, -.ui.inverted.blue.buttons .basic.button:active, -.ui.inverted.blue.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - box-shadow: 0px 0px 0px 2px #21b8ff inset !important; - color: #54C8FF !important; -} - -/*--- Green ---*/ - -.ui.green.buttons .button, -.ui.green.button { - background-color: #21BA45; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.green.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.green.buttons .button:hover, -.ui.green.button:hover { - background-color: #16ab39; - color: #FFFFFF; - text-shadow: none; -} - -.ui.green.buttons .button:focus, -.ui.green.button:focus { - background-color: #0ea432; - color: #FFFFFF; - text-shadow: none; -} - -.ui.green.buttons .button:active, -.ui.green.button:active { - background-color: #198f35; - color: #FFFFFF; - text-shadow: none; -} - -.ui.green.buttons .active.button, -.ui.green.buttons .active.button:active, -.ui.green.active.button, -.ui.green.button .active.button:active { - background-color: #13ae38; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.green.buttons .button, -.ui.basic.green.button { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.green.buttons .button:hover, -.ui.basic.green.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .button:focus, -.ui.basic.green.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.green.buttons .active.button, -.ui.basic.green.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.green.buttons .button:active, -.ui.basic.green.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.green.buttons .button, -.ui.inverted.green.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; - box-shadow: 0px 0px 0px 2px #2ECC40 inset !important; - color: #2ECC40; -} - -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover, -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus, -.ui.inverted.green.buttons .button.active, -.ui.inverted.green.button.active, -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.green.buttons .button:hover, -.ui.inverted.green.button:hover { - background-color: #22be34; -} - -.ui.inverted.green.buttons .button:focus, -.ui.inverted.green.button:focus { - background-color: #19b82b; -} - -.ui.inverted.green.buttons .active.button, -.ui.inverted.green.active.button { - background-color: #1fc231; -} - -.ui.inverted.green.buttons .button:active, -.ui.inverted.green.button:active { - background-color: #25a233; -} - -/* Inverted Basic */ - -.ui.inverted.green.basic.buttons .button, -.ui.inverted.green.buttons .basic.button, -.ui.inverted.green.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.green.basic.buttons .button:hover, -.ui.inverted.green.buttons .basic.button:hover, -.ui.inverted.green.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #22be34 inset !important; - box-shadow: 0px 0px 0px 2px #22be34 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.buttons .button:focus, -.ui.inverted.green.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #19b82b inset !important; - box-shadow: 0px 0px 0px 2px #19b82b inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .active.button, -.ui.inverted.green.buttons .basic.active.button, -.ui.inverted.green.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - box-shadow: 0px 0px 0px 2px #1fc231 inset !important; - color: #2ECC40 !important; -} - -.ui.inverted.green.basic.buttons .button:active, -.ui.inverted.green.buttons .basic.button:active, -.ui.inverted.green.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #25a233 inset !important; - box-shadow: 0px 0px 0px 2px #25a233 inset !important; - color: #2ECC40 !important; -} - -/*--- Orange ---*/ - -.ui.orange.buttons .button, -.ui.orange.button { - background-color: #F2711C; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.orange.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.orange.buttons .button:hover, -.ui.orange.button:hover { - background-color: #f26202; - color: #FFFFFF; - text-shadow: none; -} - -.ui.orange.buttons .button:focus, -.ui.orange.button:focus { - background-color: #e55b00; - color: #FFFFFF; - text-shadow: none; -} - -.ui.orange.buttons .button:active, -.ui.orange.button:active { - background-color: #cf590c; - color: #FFFFFF; - text-shadow: none; -} - -.ui.orange.buttons .active.button, -.ui.orange.buttons .active.button:active, -.ui.orange.active.button, -.ui.orange.button .active.button:active { - background-color: #f56100; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.orange.buttons .button, -.ui.basic.orange.button { - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset !important; - box-shadow: 0px 0px 0px 1px #F2711C inset !important; - color: #F2711C !important; -} - -.ui.basic.orange.buttons .button:hover, -.ui.basic.orange.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f26202 inset !important; - box-shadow: 0px 0px 0px 1px #f26202 inset !important; - color: #f26202 !important; -} - -.ui.basic.orange.buttons .button:focus, -.ui.basic.orange.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e55b00 inset !important; - box-shadow: 0px 0px 0px 1px #e55b00 inset !important; - color: #f26202 !important; -} - -.ui.basic.orange.buttons .active.button, -.ui.basic.orange.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #f56100 inset !important; - box-shadow: 0px 0px 0px 1px #f56100 inset !important; - color: #cf590c !important; -} - -.ui.basic.orange.buttons .button:active, -.ui.basic.orange.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cf590c inset !important; - box-shadow: 0px 0px 0px 1px #cf590c inset !important; - color: #cf590c !important; -} - -.ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.orange.buttons .button, -.ui.inverted.orange.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF851B inset !important; - box-shadow: 0px 0px 0px 2px #FF851B inset !important; - color: #FF851B; -} - -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover, -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus, -.ui.inverted.orange.buttons .button.active, -.ui.inverted.orange.button.active, -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.orange.buttons .button:hover, -.ui.inverted.orange.button:hover { - background-color: #ff7701; -} - -.ui.inverted.orange.buttons .button:focus, -.ui.inverted.orange.button:focus { - background-color: #f17000; -} - -.ui.inverted.orange.buttons .active.button, -.ui.inverted.orange.active.button { - background-color: #ff7701; -} - -.ui.inverted.orange.buttons .button:active, -.ui.inverted.orange.button:active { - background-color: #e76b00; -} - -/* Inverted Basic */ - -.ui.inverted.orange.basic.buttons .button, -.ui.inverted.orange.buttons .basic.button, -.ui.inverted.orange.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.orange.basic.buttons .button:hover, -.ui.inverted.orange.buttons .basic.button:hover, -.ui.inverted.orange.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.buttons .button:focus, -.ui.inverted.orange.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f17000 inset !important; - box-shadow: 0px 0px 0px 2px #f17000 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .active.button, -.ui.inverted.orange.buttons .basic.active.button, -.ui.inverted.orange.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - box-shadow: 0px 0px 0px 2px #ff7701 inset !important; - color: #FF851B !important; -} - -.ui.inverted.orange.basic.buttons .button:active, -.ui.inverted.orange.buttons .basic.button:active, -.ui.inverted.orange.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - box-shadow: 0px 0px 0px 2px #e76b00 inset !important; - color: #FF851B !important; -} - -/*--- Pink ---*/ - -.ui.pink.buttons .button, -.ui.pink.button { - background-color: #E03997; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.pink.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.pink.buttons .button:hover, -.ui.pink.button:hover { - background-color: #e61a8d; - color: #FFFFFF; - text-shadow: none; -} - -.ui.pink.buttons .button:focus, -.ui.pink.button:focus { - background-color: #e10f85; - color: #FFFFFF; - text-shadow: none; -} - -.ui.pink.buttons .button:active, -.ui.pink.button:active { - background-color: #c71f7e; - color: #FFFFFF; - text-shadow: none; -} - -.ui.pink.buttons .active.button, -.ui.pink.buttons .active.button:active, -.ui.pink.active.button, -.ui.pink.button .active.button:active { - background-color: #ea158d; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.pink.buttons .button, -.ui.basic.pink.button { - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset !important; - box-shadow: 0px 0px 0px 1px #E03997 inset !important; - color: #E03997 !important; -} - -.ui.basic.pink.buttons .button:hover, -.ui.basic.pink.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - box-shadow: 0px 0px 0px 1px #e61a8d inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .button:focus, -.ui.basic.pink.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - box-shadow: 0px 0px 0px 1px #e10f85 inset !important; - color: #e61a8d !important; -} - -.ui.basic.pink.buttons .active.button, -.ui.basic.pink.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ea158d inset !important; - box-shadow: 0px 0px 0px 1px #ea158d inset !important; - color: #c71f7e !important; -} - -.ui.basic.pink.buttons .button:active, -.ui.basic.pink.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - box-shadow: 0px 0px 0px 1px #c71f7e inset !important; - color: #c71f7e !important; -} - -.ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.pink.buttons .button, -.ui.inverted.pink.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; - box-shadow: 0px 0px 0px 2px #FF8EDF inset !important; - color: #FF8EDF; -} - -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover, -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus, -.ui.inverted.pink.buttons .button.active, -.ui.inverted.pink.button.active, -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.pink.buttons .button:hover, -.ui.inverted.pink.button:hover { - background-color: #ff74d8; -} - -.ui.inverted.pink.buttons .button:focus, -.ui.inverted.pink.button:focus { - background-color: #ff65d3; -} - -.ui.inverted.pink.buttons .active.button, -.ui.inverted.pink.active.button { - background-color: #ff74d8; -} - -.ui.inverted.pink.buttons .button:active, -.ui.inverted.pink.button:active { - background-color: #ff5bd1; -} - -/* Inverted Basic */ - -.ui.inverted.pink.basic.buttons .button, -.ui.inverted.pink.buttons .basic.button, -.ui.inverted.pink.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.pink.basic.buttons .button:hover, -.ui.inverted.pink.buttons .basic.button:hover, -.ui.inverted.pink.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.buttons .button:focus, -.ui.inverted.pink.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - box-shadow: 0px 0px 0px 2px #ff65d3 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .active.button, -.ui.inverted.pink.buttons .basic.active.button, -.ui.inverted.pink.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - box-shadow: 0px 0px 0px 2px #ff74d8 inset !important; - color: #FF8EDF !important; -} - -.ui.inverted.pink.basic.buttons .button:active, -.ui.inverted.pink.buttons .basic.button:active, -.ui.inverted.pink.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important; - color: #FF8EDF !important; -} - -/*--- Violet ---*/ - -.ui.violet.buttons .button, -.ui.violet.button { - background-color: #6435C9; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.violet.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.violet.buttons .button:hover, -.ui.violet.button:hover { - background-color: #5829bb; - color: #FFFFFF; - text-shadow: none; -} - -.ui.violet.buttons .button:focus, -.ui.violet.button:focus { - background-color: #4f20b5; - color: #FFFFFF; - text-shadow: none; -} - -.ui.violet.buttons .button:active, -.ui.violet.button:active { - background-color: #502aa1; - color: #FFFFFF; - text-shadow: none; -} - -.ui.violet.buttons .active.button, -.ui.violet.buttons .active.button:active, -.ui.violet.active.button, -.ui.violet.button .active.button:active { - background-color: #5626bf; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.violet.buttons .button, -.ui.basic.violet.button { - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - box-shadow: 0px 0px 0px 1px #6435C9 inset !important; - color: #6435C9 !important; -} - -.ui.basic.violet.buttons .button:hover, -.ui.basic.violet.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5829bb inset !important; - box-shadow: 0px 0px 0px 1px #5829bb inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .button:focus, -.ui.basic.violet.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - box-shadow: 0px 0px 0px 1px #4f20b5 inset !important; - color: #5829bb !important; -} - -.ui.basic.violet.buttons .active.button, -.ui.basic.violet.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #5626bf inset !important; - box-shadow: 0px 0px 0px 1px #5626bf inset !important; - color: #502aa1 !important; -} - -.ui.basic.violet.buttons .button:active, -.ui.basic.violet.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - box-shadow: 0px 0px 0px 1px #502aa1 inset !important; - color: #502aa1 !important; -} - -.ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.violet.buttons .button, -.ui.inverted.violet.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #A291FB inset !important; - box-shadow: 0px 0px 0px 2px #A291FB inset !important; - color: #A291FB; -} - -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover, -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus, -.ui.inverted.violet.buttons .button.active, -.ui.inverted.violet.button.active, -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.violet.buttons .button:hover, -.ui.inverted.violet.button:hover { - background-color: #8a73ff; -} - -.ui.inverted.violet.buttons .button:focus, -.ui.inverted.violet.button:focus { - background-color: #7d64ff; -} - -.ui.inverted.violet.buttons .active.button, -.ui.inverted.violet.active.button { - background-color: #8a73ff; -} - -.ui.inverted.violet.buttons .button:active, -.ui.inverted.violet.button:active { - background-color: #7860f9; -} - -/* Inverted Basic */ - -.ui.inverted.violet.basic.buttons .button, -.ui.inverted.violet.buttons .basic.button, -.ui.inverted.violet.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.violet.basic.buttons .button:hover, -.ui.inverted.violet.buttons .basic.button:hover, -.ui.inverted.violet.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.buttons .button:focus, -.ui.inverted.violet.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - box-shadow: 0px 0px 0px 2px #7d64ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .active.button, -.ui.inverted.violet.buttons .basic.active.button, -.ui.inverted.violet.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - box-shadow: 0px 0px 0px 2px #8a73ff inset !important; - color: #A291FB !important; -} - -.ui.inverted.violet.basic.buttons .button:active, -.ui.inverted.violet.buttons .basic.button:active, -.ui.inverted.violet.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - box-shadow: 0px 0px 0px 2px #7860f9 inset !important; - color: #A291FB !important; -} - -/*--- Purple ---*/ - -.ui.purple.buttons .button, -.ui.purple.button { - background-color: #A333C8; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.purple.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.purple.buttons .button:hover, -.ui.purple.button:hover { - background-color: #9627ba; - color: #FFFFFF; - text-shadow: none; -} - -.ui.purple.buttons .button:focus, -.ui.purple.button:focus { - background-color: #8f1eb4; - color: #FFFFFF; - text-shadow: none; -} - -.ui.purple.buttons .button:active, -.ui.purple.button:active { - background-color: #82299f; - color: #FFFFFF; - text-shadow: none; -} - -.ui.purple.buttons .active.button, -.ui.purple.buttons .active.button:active, -.ui.purple.active.button, -.ui.purple.button .active.button:active { - background-color: #9724be; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.purple.buttons .button, -.ui.basic.purple.button { - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - box-shadow: 0px 0px 0px 1px #A333C8 inset !important; - color: #A333C8 !important; -} - -.ui.basic.purple.buttons .button:hover, -.ui.basic.purple.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9627ba inset !important; - box-shadow: 0px 0px 0px 1px #9627ba inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .button:focus, -.ui.basic.purple.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important; - color: #9627ba !important; -} - -.ui.basic.purple.buttons .active.button, -.ui.basic.purple.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #9724be inset !important; - box-shadow: 0px 0px 0px 1px #9724be inset !important; - color: #82299f !important; -} - -.ui.basic.purple.buttons .button:active, -.ui.basic.purple.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #82299f inset !important; - box-shadow: 0px 0px 0px 1px #82299f inset !important; - color: #82299f !important; -} - -.ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.purple.buttons .button, -.ui.inverted.purple.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #DC73FF inset !important; - box-shadow: 0px 0px 0px 2px #DC73FF inset !important; - color: #DC73FF; -} - -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover, -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus, -.ui.inverted.purple.buttons .button.active, -.ui.inverted.purple.button.active, -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.purple.buttons .button:hover, -.ui.inverted.purple.button:hover { - background-color: #d65aff; -} - -.ui.inverted.purple.buttons .button:focus, -.ui.inverted.purple.button:focus { - background-color: #d24aff; -} - -.ui.inverted.purple.buttons .active.button, -.ui.inverted.purple.active.button { - background-color: #d65aff; -} - -.ui.inverted.purple.buttons .button:active, -.ui.inverted.purple.button:active { - background-color: #cf40ff; -} - -/* Inverted Basic */ - -.ui.inverted.purple.basic.buttons .button, -.ui.inverted.purple.buttons .basic.button, -.ui.inverted.purple.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.purple.basic.buttons .button:hover, -.ui.inverted.purple.buttons .basic.button:hover, -.ui.inverted.purple.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.buttons .button:focus, -.ui.inverted.purple.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #d24aff inset !important; - box-shadow: 0px 0px 0px 2px #d24aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .active.button, -.ui.inverted.purple.buttons .basic.active.button, -.ui.inverted.purple.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #d65aff inset !important; - box-shadow: 0px 0px 0px 2px #d65aff inset !important; - color: #DC73FF !important; -} - -.ui.inverted.purple.basic.buttons .button:active, -.ui.inverted.purple.buttons .basic.button:active, -.ui.inverted.purple.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - box-shadow: 0px 0px 0px 2px #cf40ff inset !important; - color: #DC73FF !important; -} - -/*--- Red ---*/ - -.ui.red.buttons .button, -.ui.red.button { - background-color: #DB2828; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.red.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.red.buttons .button:hover, -.ui.red.button:hover { - background-color: #d01919; - color: #FFFFFF; - text-shadow: none; -} - -.ui.red.buttons .button:focus, -.ui.red.button:focus { - background-color: #ca1010; - color: #FFFFFF; - text-shadow: none; -} - -.ui.red.buttons .button:active, -.ui.red.button:active { - background-color: #b21e1e; - color: #FFFFFF; - text-shadow: none; -} - -.ui.red.buttons .active.button, -.ui.red.buttons .active.button:active, -.ui.red.active.button, -.ui.red.button .active.button:active { - background-color: #d41515; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.red.buttons .button, -.ui.basic.red.button { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.red.buttons .button:hover, -.ui.basic.red.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .button:focus, -.ui.basic.red.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.red.buttons .active.button, -.ui.basic.red.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.red.buttons .button:active, -.ui.basic.red.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.red.buttons .button, -.ui.inverted.red.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FF695E inset !important; - box-shadow: 0px 0px 0px 2px #FF695E inset !important; - color: #FF695E; -} - -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover, -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus, -.ui.inverted.red.buttons .button.active, -.ui.inverted.red.button.active, -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.inverted.red.buttons .button:hover, -.ui.inverted.red.button:hover { - background-color: #ff5144; -} - -.ui.inverted.red.buttons .button:focus, -.ui.inverted.red.button:focus { - background-color: #ff4335; -} - -.ui.inverted.red.buttons .active.button, -.ui.inverted.red.active.button { - background-color: #ff5144; -} - -.ui.inverted.red.buttons .button:active, -.ui.inverted.red.button:active { - background-color: #ff392b; -} - -/* Inverted Basic */ - -.ui.inverted.red.basic.buttons .button, -.ui.inverted.red.buttons .basic.button, -.ui.inverted.red.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.red.basic.buttons .button:hover, -.ui.inverted.red.buttons .basic.button:hover, -.ui.inverted.red.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.buttons .button:focus, -.ui.inverted.red.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - box-shadow: 0px 0px 0px 2px #ff4335 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .active.button, -.ui.inverted.red.buttons .basic.active.button, -.ui.inverted.red.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - box-shadow: 0px 0px 0px 2px #ff5144 inset !important; - color: #FF695E !important; -} - -.ui.inverted.red.basic.buttons .button:active, -.ui.inverted.red.buttons .basic.button:active, -.ui.inverted.red.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ff392b inset !important; - box-shadow: 0px 0px 0px 2px #ff392b inset !important; - color: #FF695E !important; -} - -/*--- Teal ---*/ - -.ui.teal.buttons .button, -.ui.teal.button { - background-color: #00B5AD; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.teal.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.teal.buttons .button:hover, -.ui.teal.button:hover { - background-color: #009c95; - color: #FFFFFF; - text-shadow: none; -} - -.ui.teal.buttons .button:focus, -.ui.teal.button:focus { - background-color: #008c86; - color: #FFFFFF; - text-shadow: none; -} - -.ui.teal.buttons .button:active, -.ui.teal.button:active { - background-color: #00827c; - color: #FFFFFF; - text-shadow: none; -} - -.ui.teal.buttons .active.button, -.ui.teal.buttons .active.button:active, -.ui.teal.active.button, -.ui.teal.button .active.button:active { - background-color: #009c95; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.teal.buttons .button, -.ui.basic.teal.button { - -webkit-box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - box-shadow: 0px 0px 0px 1px #00B5AD inset !important; - color: #00B5AD !important; -} - -.ui.basic.teal.buttons .button:hover, -.ui.basic.teal.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .button:focus, -.ui.basic.teal.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #008c86 inset !important; - box-shadow: 0px 0px 0px 1px #008c86 inset !important; - color: #009c95 !important; -} - -.ui.basic.teal.buttons .active.button, -.ui.basic.teal.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #009c95 inset !important; - box-shadow: 0px 0px 0px 1px #009c95 inset !important; - color: #00827c !important; -} - -.ui.basic.teal.buttons .button:active, -.ui.basic.teal.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #00827c inset !important; - box-shadow: 0px 0px 0px 1px #00827c inset !important; - color: #00827c !important; -} - -.ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.teal.buttons .button, -.ui.inverted.teal.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; - box-shadow: 0px 0px 0px 2px #6DFFFF inset !important; - color: #6DFFFF; -} - -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover, -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus, -.ui.inverted.teal.buttons .button.active, -.ui.inverted.teal.button.active, -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.teal.buttons .button:hover, -.ui.inverted.teal.button:hover { - background-color: #54ffff; -} - -.ui.inverted.teal.buttons .button:focus, -.ui.inverted.teal.button:focus { - background-color: #44ffff; -} - -.ui.inverted.teal.buttons .active.button, -.ui.inverted.teal.active.button { - background-color: #54ffff; -} - -.ui.inverted.teal.buttons .button:active, -.ui.inverted.teal.button:active { - background-color: #3affff; -} - -/* Inverted Basic */ - -.ui.inverted.teal.basic.buttons .button, -.ui.inverted.teal.buttons .basic.button, -.ui.inverted.teal.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:hover, -.ui.inverted.teal.buttons .basic.button:hover, -.ui.inverted.teal.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.buttons .button:focus, -.ui.inverted.teal.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #44ffff inset !important; - box-shadow: 0px 0px 0px 2px #44ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .active.button, -.ui.inverted.teal.buttons .basic.active.button, -.ui.inverted.teal.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #54ffff inset !important; - box-shadow: 0px 0px 0px 2px #54ffff inset !important; - color: #6DFFFF !important; -} - -.ui.inverted.teal.basic.buttons .button:active, -.ui.inverted.teal.buttons .basic.button:active, -.ui.inverted.teal.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #3affff inset !important; - box-shadow: 0px 0px 0px 2px #3affff inset !important; - color: #6DFFFF !important; -} - -/*--- Olive ---*/ - -.ui.olive.buttons .button, -.ui.olive.button { - background-color: #B5CC18; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.olive.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.olive.buttons .button:hover, -.ui.olive.button:hover { - background-color: #a7bd0d; - color: #FFFFFF; - text-shadow: none; -} - -.ui.olive.buttons .button:focus, -.ui.olive.button:focus { - background-color: #a0b605; - color: #FFFFFF; - text-shadow: none; -} - -.ui.olive.buttons .button:active, -.ui.olive.button:active { - background-color: #8d9e13; - color: #FFFFFF; - text-shadow: none; -} - -.ui.olive.buttons .active.button, -.ui.olive.buttons .active.button:active, -.ui.olive.active.button, -.ui.olive.button .active.button:active { - background-color: #aac109; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.olive.buttons .button, -.ui.basic.olive.button { - -webkit-box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - box-shadow: 0px 0px 0px 1px #B5CC18 inset !important; - color: #B5CC18 !important; -} - -.ui.basic.olive.buttons .button:hover, -.ui.basic.olive.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - box-shadow: 0px 0px 0px 1px #a7bd0d inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .button:focus, -.ui.basic.olive.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - box-shadow: 0px 0px 0px 1px #a0b605 inset !important; - color: #a7bd0d !important; -} - -.ui.basic.olive.buttons .active.button, -.ui.basic.olive.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #aac109 inset !important; - box-shadow: 0px 0px 0px 1px #aac109 inset !important; - color: #8d9e13 !important; -} - -.ui.basic.olive.buttons .button:active, -.ui.basic.olive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - box-shadow: 0px 0px 0px 1px #8d9e13 inset !important; - color: #8d9e13 !important; -} - -.ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.olive.buttons .button, -.ui.inverted.olive.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #D9E778 inset !important; - box-shadow: 0px 0px 0px 2px #D9E778 inset !important; - color: #D9E778; -} - -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover, -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus, -.ui.inverted.olive.buttons .button.active, -.ui.inverted.olive.button.active, -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.olive.buttons .button:hover, -.ui.inverted.olive.button:hover { - background-color: #d8ea5c; -} - -.ui.inverted.olive.buttons .button:focus, -.ui.inverted.olive.button:focus { - background-color: #daef47; -} - -.ui.inverted.olive.buttons .active.button, -.ui.inverted.olive.active.button { - background-color: #daed59; -} - -.ui.inverted.olive.buttons .button:active, -.ui.inverted.olive.button:active { - background-color: #cddf4d; -} - -/* Inverted Basic */ - -.ui.inverted.olive.basic.buttons .button, -.ui.inverted.olive.buttons .basic.button, -.ui.inverted.olive.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.olive.basic.buttons .button:hover, -.ui.inverted.olive.buttons .basic.button:hover, -.ui.inverted.olive.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - box-shadow: 0px 0px 0px 2px #d8ea5c inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.buttons .button:focus, -.ui.inverted.olive.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #daef47 inset !important; - box-shadow: 0px 0px 0px 2px #daef47 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .active.button, -.ui.inverted.olive.buttons .basic.active.button, -.ui.inverted.olive.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #daed59 inset !important; - box-shadow: 0px 0px 0px 2px #daed59 inset !important; - color: #D9E778 !important; -} - -.ui.inverted.olive.basic.buttons .button:active, -.ui.inverted.olive.buttons .basic.button:active, -.ui.inverted.olive.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - box-shadow: 0px 0px 0px 2px #cddf4d inset !important; - color: #D9E778 !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.buttons .button, -.ui.yellow.button { - background-color: #FBBD08; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.yellow.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.yellow.buttons .button:hover, -.ui.yellow.button:hover { - background-color: #eaae00; - color: #FFFFFF; - text-shadow: none; -} - -.ui.yellow.buttons .button:focus, -.ui.yellow.button:focus { - background-color: #daa300; - color: #FFFFFF; - text-shadow: none; -} - -.ui.yellow.buttons .button:active, -.ui.yellow.button:active { - background-color: #cd9903; - color: #FFFFFF; - text-shadow: none; -} - -.ui.yellow.buttons .active.button, -.ui.yellow.buttons .active.button:active, -.ui.yellow.active.button, -.ui.yellow.button .active.button:active { - background-color: #eaae00; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.yellow.buttons .button, -.ui.basic.yellow.button { - -webkit-box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - box-shadow: 0px 0px 0px 1px #FBBD08 inset !important; - color: #FBBD08 !important; -} - -.ui.basic.yellow.buttons .button:hover, -.ui.basic.yellow.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .button:focus, -.ui.basic.yellow.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #daa300 inset !important; - box-shadow: 0px 0px 0px 1px #daa300 inset !important; - color: #eaae00 !important; -} - -.ui.basic.yellow.buttons .active.button, -.ui.basic.yellow.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - box-shadow: 0px 0px 0px 1px #eaae00 inset !important; - color: #cd9903 !important; -} - -.ui.basic.yellow.buttons .button:active, -.ui.basic.yellow.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - box-shadow: 0px 0px 0px 1px #cd9903 inset !important; - color: #cd9903 !important; -} - -.ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) { - margin-left: -1px; -} - -/* Inverted */ - -.ui.inverted.yellow.buttons .button, -.ui.inverted.yellow.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px #FFE21F inset !important; - box-shadow: 0px 0px 0px 2px #FFE21F inset !important; - color: #FFE21F; -} - -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover, -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus, -.ui.inverted.yellow.buttons .button.active, -.ui.inverted.yellow.button.active, -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: rgba(0, 0, 0, 0.6); -} - -.ui.inverted.yellow.buttons .button:hover, -.ui.inverted.yellow.button:hover { - background-color: #ffdf05; -} - -.ui.inverted.yellow.buttons .button:focus, -.ui.inverted.yellow.button:focus { - background-color: #f5d500; -} - -.ui.inverted.yellow.buttons .active.button, -.ui.inverted.yellow.active.button { - background-color: #ffdf05; -} - -.ui.inverted.yellow.buttons .button:active, -.ui.inverted.yellow.button:active { - background-color: #ebcd00; -} - -/* Inverted Basic */ - -.ui.inverted.yellow.basic.buttons .button, -.ui.inverted.yellow.buttons .basic.button, -.ui.inverted.yellow.basic.button { - background-color: transparent; - -webkit-box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important; - color: #FFFFFF !important; -} - -.ui.inverted.yellow.basic.buttons .button:hover, -.ui.inverted.yellow.buttons .basic.button:hover, -.ui.inverted.yellow.basic.button:hover { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.buttons .button:focus, -.ui.inverted.yellow.basic.button:focus { - -webkit-box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - box-shadow: 0px 0px 0px 2px #f5d500 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .active.button, -.ui.inverted.yellow.buttons .basic.active.button, -.ui.inverted.yellow.basic.active.button { - -webkit-box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - box-shadow: 0px 0px 0px 2px #ffdf05 inset !important; - color: #FFE21F !important; -} - -.ui.inverted.yellow.basic.buttons .button:active, -.ui.inverted.yellow.buttons .basic.button:active, -.ui.inverted.yellow.basic.button:active { - -webkit-box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - box-shadow: 0px 0px 0px 2px #ebcd00 inset !important; - color: #FFE21F !important; -} - -/*------------------- - Primary ---------------------*/ - -/*--- Standard ---*/ - -.ui.primary.buttons .button, -.ui.primary.button { - background-color: #2185D0; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.primary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.primary.buttons .button:hover, -.ui.primary.button:hover { - background-color: #1678c2; - color: #FFFFFF; - text-shadow: none; -} - -.ui.primary.buttons .button:focus, -.ui.primary.button:focus { - background-color: #0d71bb; - color: #FFFFFF; - text-shadow: none; -} - -.ui.primary.buttons .button:active, -.ui.primary.button:active { - background-color: #1a69a4; - color: #FFFFFF; - text-shadow: none; -} - -.ui.primary.buttons .active.button, -.ui.primary.buttons .active.button:active, -.ui.primary.active.button, -.ui.primary.button .active.button:active { - background-color: #1279c6; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.primary.buttons .button, -.ui.basic.primary.button { - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - box-shadow: 0px 0px 0px 1px #2185D0 inset !important; - color: #2185D0 !important; -} - -.ui.basic.primary.buttons .button:hover, -.ui.basic.primary.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - box-shadow: 0px 0px 0px 1px #1678c2 inset !important; - color: #1678c2 !important; -} - -.ui.basic.primary.buttons .button:focus, -.ui.basic.primary.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - box-shadow: 0px 0px 0px 1px #0d71bb inset !important; - color: #1678c2 !important; -} - -.ui.basic.primary.buttons .active.button, -.ui.basic.primary.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - box-shadow: 0px 0px 0px 1px #1279c6 inset !important; - color: #1a69a4 !important; -} - -.ui.basic.primary.buttons .button:active, -.ui.basic.primary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - box-shadow: 0px 0px 0px 1px #1a69a4 inset !important; - color: #1a69a4 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*------------------- - Secondary ---------------------*/ - -/* Standard */ - -.ui.secondary.buttons .button, -.ui.secondary.button { - background-color: #1B1C1D; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.secondary.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.secondary.buttons .button:hover, -.ui.secondary.button:hover { - background-color: #27292a; - color: #FFFFFF; - text-shadow: none; -} - -.ui.secondary.buttons .button:focus, -.ui.secondary.button:focus { - background-color: #2e3032; - color: #FFFFFF; - text-shadow: none; -} - -.ui.secondary.buttons .button:active, -.ui.secondary.button:active { - background-color: #343637; - color: #FFFFFF; - text-shadow: none; -} - -.ui.secondary.buttons .active.button, -.ui.secondary.buttons .active.button:active, -.ui.secondary.active.button, -.ui.secondary.button .active.button:active { - background-color: #27292a; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.secondary.buttons .button, -.ui.basic.secondary.button { - -webkit-box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - box-shadow: 0px 0px 0px 1px #1B1C1D inset !important; - color: #1B1C1D !important; -} - -.ui.basic.secondary.buttons .button:hover, -.ui.basic.secondary.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #27292a !important; -} - -.ui.basic.secondary.buttons .button:focus, -.ui.basic.secondary.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #2e3032 inset !important; - box-shadow: 0px 0px 0px 1px #2e3032 inset !important; - color: #27292a !important; -} - -.ui.basic.secondary.buttons .active.button, -.ui.basic.secondary.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #27292a inset !important; - box-shadow: 0px 0px 0px 1px #27292a inset !important; - color: #343637 !important; -} - -.ui.basic.secondary.buttons .button:active, -.ui.basic.secondary.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #343637 inset !important; - box-shadow: 0px 0px 0px 1px #343637 inset !important; - color: #343637 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*--------------- - Positive -----------------*/ - -/* Standard */ - -.ui.positive.buttons .button, -.ui.positive.button { - background-color: #21BA45; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.positive.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.positive.buttons .button:hover, -.ui.positive.button:hover { - background-color: #16ab39; - color: #FFFFFF; - text-shadow: none; -} - -.ui.positive.buttons .button:focus, -.ui.positive.button:focus { - background-color: #0ea432; - color: #FFFFFF; - text-shadow: none; -} - -.ui.positive.buttons .button:active, -.ui.positive.button:active { - background-color: #198f35; - color: #FFFFFF; - text-shadow: none; -} - -.ui.positive.buttons .active.button, -.ui.positive.buttons .active.button:active, -.ui.positive.active.button, -.ui.positive.button .active.button:active { - background-color: #13ae38; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.positive.buttons .button, -.ui.basic.positive.button { - -webkit-box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - box-shadow: 0px 0px 0px 1px #21BA45 inset !important; - color: #21BA45 !important; -} - -.ui.basic.positive.buttons .button:hover, -.ui.basic.positive.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - box-shadow: 0px 0px 0px 1px #16ab39 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .button:focus, -.ui.basic.positive.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - box-shadow: 0px 0px 0px 1px #0ea432 inset !important; - color: #16ab39 !important; -} - -.ui.basic.positive.buttons .active.button, -.ui.basic.positive.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - box-shadow: 0px 0px 0px 1px #13ae38 inset !important; - color: #198f35 !important; -} - -.ui.basic.positive.buttons .button:active, -.ui.basic.positive.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #198f35 inset !important; - box-shadow: 0px 0px 0px 1px #198f35 inset !important; - color: #198f35 !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/*--------------- - Negative -----------------*/ - -/* Standard */ - -.ui.negative.buttons .button, -.ui.negative.button { - background-color: #DB2828; - color: #FFFFFF; - text-shadow: none; - background-image: none; -} - -.ui.negative.button { - -webkit-box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.negative.buttons .button:hover, -.ui.negative.button:hover { - background-color: #d01919; - color: #FFFFFF; - text-shadow: none; -} - -.ui.negative.buttons .button:focus, -.ui.negative.button:focus { - background-color: #ca1010; - color: #FFFFFF; - text-shadow: none; -} - -.ui.negative.buttons .button:active, -.ui.negative.button:active { - background-color: #b21e1e; - color: #FFFFFF; - text-shadow: none; -} - -.ui.negative.buttons .active.button, -.ui.negative.buttons .active.button:active, -.ui.negative.active.button, -.ui.negative.button .active.button:active { - background-color: #d41515; - color: #FFFFFF; - text-shadow: none; -} - -/* Basic */ - -.ui.basic.negative.buttons .button, -.ui.basic.negative.button { - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - box-shadow: 0px 0px 0px 1px #DB2828 inset !important; - color: #DB2828 !important; -} - -.ui.basic.negative.buttons .button:hover, -.ui.basic.negative.button:hover { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d01919 inset !important; - box-shadow: 0px 0px 0px 1px #d01919 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .button:focus, -.ui.basic.negative.button:focus { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - box-shadow: 0px 0px 0px 1px #ca1010 inset !important; - color: #d01919 !important; -} - -.ui.basic.negative.buttons .active.button, -.ui.basic.negative.active.button { - background: transparent !important; - -webkit-box-shadow: 0px 0px 0px 1px #d41515 inset !important; - box-shadow: 0px 0px 0px 1px #d41515 inset !important; - color: #b21e1e !important; -} - -.ui.basic.negative.buttons .button:active, -.ui.basic.negative.button:active { - -webkit-box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - box-shadow: 0px 0px 0px 1px #b21e1e inset !important; - color: #b21e1e !important; -} - -.ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) { - margin-left: -1px; -} - -/******************************* - Groups -*******************************/ - -.ui.buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - font-size: 0em; - vertical-align: baseline; - margin: 0em 0.25em 0em 0em; -} - -.ui.buttons:not(.basic):not(.inverted) { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Clearfix */ - -.ui.buttons:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/* Standard Group */ - -.ui.buttons .button { - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - margin: 0em; - border-radius: 0em; - margin: 0px 0px 0px 0px; -} - -.ui.buttons > .ui.button:not(.basic):not(.inverted), -.ui.buttons:not(.basic):not(.inverted) > .button { - -webkit-box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset; -} - -.ui.buttons .button:first-child { - border-left: none; - margin-left: 0em; - border-top-left-radius: 0.28571429rem; - border-bottom-left-radius: 0.28571429rem; -} - -.ui.buttons .button:last-child { - border-top-right-radius: 0.28571429rem; - border-bottom-right-radius: 0.28571429rem; -} - -/* Vertical Style */ - -.ui.vertical.buttons { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -.ui.vertical.buttons .button { - display: block; - float: none; - width: 100%; - margin: 0px 0px 0px 0px; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0em; -} - -.ui.vertical.buttons .button:first-child { - border-top-left-radius: 0.28571429rem; - border-top-right-radius: 0.28571429rem; -} - -.ui.vertical.buttons .button:last-child { - margin-bottom: 0px; - border-bottom-left-radius: 0.28571429rem; - border-bottom-right-radius: 0.28571429rem; -} - -.ui.vertical.buttons .button:only-child { - border-radius: 0.28571429rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Container -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Container -*******************************/ - -/* All Sizes */ - -.ui.container { - display: block; - max-width: 100% !important; -} - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui.container { - width: auto !important; - margin-left: 1em !important; - margin-right: 1em !important; - } - - .ui.grid.container { - width: auto !important; - } - - .ui.relaxed.grid.container { - width: auto !important; - } - - .ui.very.relaxed.grid.container { - width: auto !important; - } -} - -/* Tablet */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.container { - width: 723px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 723px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 723px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 723px + 5rem ) !important; - } -} - -/* Small Monitor */ - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.container { - width: 933px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 933px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 933px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 933px + 5rem ) !important; - } -} - -/* Large Monitor */ - -@media only screen and (min-width: 1200px) { - .ui.container { - width: 1127px; - margin-left: auto !important; - margin-right: auto !important; - } - - .ui.grid.container { - width: calc( 1127px + 2rem ) !important; - } - - .ui.relaxed.grid.container { - width: calc( 1127px + 3rem ) !important; - } - - .ui.very.relaxed.grid.container { - width: calc( 1127px + 5rem ) !important; - } -} - -/******************************* - Types -*******************************/ - -/* Text Container */ - -.ui.text.container { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - max-width: 700px !important; - line-height: 1.5; -} - -.ui.text.container { - font-size: 1.14285714rem; -} - -/* Fluid */ - -.ui.fluid.container { - width: 100%; -} - -/******************************* - Variations -*******************************/ - -.ui[class*="left aligned"].container { - text-align: left; -} - -.ui[class*="center aligned"].container { - text-align: center; -} - -.ui[class*="right aligned"].container { - text-align: right; -} - -.ui.justified.container { - text-align: justify; - -webkit-hyphens: auto; - -ms-hyphens: auto; - hyphens: auto; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Divider -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Divider -*******************************/ - -.ui.divider { - margin: 1rem 0rem; - line-height: 1; - height: 0em; - font-weight: bold; - text-transform: uppercase; - letter-spacing: 0.05em; - color: rgba(0, 0, 0, 0.85); - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/*-------------- - Basic ----------------*/ - -.ui.divider:not(.vertical):not(.horizontal) { - border-top: 1px solid rgba(34, 36, 38, 0.15); - border-bottom: 1px solid rgba(255, 255, 255, 0.1); -} - -/*-------------- - Coupling ----------------*/ - -/* Allow divider between each column row */ - -.ui.grid > .column + .divider, -.ui.grid > .row > .column + .divider { - left: auto; -} - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.divider { - display: table; - white-space: nowrap; - height: auto; - margin: ''; - line-height: 1; - text-align: center; -} - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; -} - -.ui.horizontal.divider:before { - background-position: right 1em top 50%; -} - -.ui.horizontal.divider:after { - background-position: left 1em top 50%; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.divider { - position: absolute; - z-index: 2; - top: 50%; - left: 50%; - margin: 0rem; - padding: 0em; - width: auto; - height: 50%; - line-height: 0em; - text-align: center; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); -} - -.ui.vertical.divider:before, -.ui.vertical.divider:after { - position: absolute; - left: 50%; - content: ''; - z-index: 3; - border-left: 1px solid rgba(34, 36, 38, 0.15); - border-right: 1px solid rgba(255, 255, 255, 0.1); - width: 0%; - height: calc(100% - 1rem ); -} - -.ui.vertical.divider:before { - top: -100%; -} - -.ui.vertical.divider:after { - top: auto; - bottom: 0px; -} - -/* Inside grid */ - -@media only screen and (max-width: 767px) { - .ui.stackable.grid .ui.vertical.divider, - .ui.grid .stackable.row .ui.vertical.divider { - display: table; - white-space: nowrap; - height: auto; - margin: ''; - overflow: hidden; - line-height: 1; - text-align: center; - position: static; - top: 0; - left: 0; - -webkit-transform: none; - transform: none; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - position: static; - left: 0; - border-left: none; - border-right: none; - content: ''; - display: table-cell; - position: relative; - top: 50%; - width: 50%; - background-repeat: no-repeat; - } - - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before { - background-position: right 1em top 50%; - } - - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-position: left 1em top 50%; - } -} - -/*-------------- - Icon ----------------*/ - -.ui.divider > .icon { - margin: 0rem; - font-size: 1rem; - height: 1em; - vertical-align: middle; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.divider { - border-color: transparent !important; -} - -.ui.hidden.divider:before, -.ui.hidden.divider:after { - display: none; -} - -/*-------------- - Inverted ----------------*/ - -.ui.divider.inverted, -.ui.vertical.inverted.divider, -.ui.horizontal.inverted.divider { - color: #FFFFFF; -} - -.ui.divider.inverted, -.ui.divider.inverted:after, -.ui.divider.inverted:before { - border-top-color: rgba(34, 36, 38, 0.15) !important; - border-left-color: rgba(34, 36, 38, 0.15) !important; - border-bottom-color: rgba(255, 255, 255, 0.15) !important; - border-right-color: rgba(255, 255, 255, 0.15) !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.divider { - margin: 0em; -} - -/*-------------- - Clearing ----------------*/ - -.ui.clearing.divider { - clear: both; -} - -/*-------------- - Section ----------------*/ - -.ui.section.divider { - margin-top: 2rem; - margin-bottom: 2rem; -} - -/*-------------- - Sizes ----------------*/ - -.ui.divider { - font-size: 1rem; -} - -/******************************* - Theme Overrides -*******************************/ - -.ui.horizontal.divider:before, -.ui.horizontal.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); -} - -@media only screen and (max-width: 767px) { - .ui.stackable.grid .ui.vertical.divider:before, - .ui.grid .stackable.row .ui.vertical.divider:before, - .ui.stackable.grid .ui.vertical.divider:after, - .ui.grid .stackable.row .ui.vertical.divider:after { - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC'); - } -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Flag -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Flag -*******************************/ - -i.flag:not(.icon) { - display: inline-block; - width: 16px; - height: 11px; - line-height: 11px; - vertical-align: baseline; - margin: 0em 0.5em 0em 0em; - text-decoration: inherit; - speak: none; - font-smoothing: antialiased; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -/* Sprite */ - -i.flag:not(.icon):before { - display: inline-block; - content: ''; - background: url("./themes/default/assets/images/flags.png") no-repeat -108px -1976px; - width: 16px; - height: 11px; -} - -/* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */ - -/******************************* - Theme Overrides -*******************************/ - -i.flag.ad:before, -i.flag.andorra:before { - background-position: 0px 0px; -} - -i.flag.ae:before, -i.flag.united.arab.emirates:before, -i.flag.uae:before { - background-position: 0px -26px; -} - -i.flag.af:before, -i.flag.afghanistan:before { - background-position: 0px -52px; -} - -i.flag.ag:before, -i.flag.antigua:before { - background-position: 0px -78px; -} - -i.flag.ai:before, -i.flag.anguilla:before { - background-position: 0px -104px; -} - -i.flag.al:before, -i.flag.albania:before { - background-position: 0px -130px; -} - -i.flag.am:before, -i.flag.armenia:before { - background-position: 0px -156px; -} - -i.flag.an:before, -i.flag.netherlands.antilles:before { - background-position: 0px -182px; -} - -i.flag.ao:before, -i.flag.angola:before { - background-position: 0px -208px; -} - -i.flag.ar:before, -i.flag.argentina:before { - background-position: 0px -234px; -} - -i.flag.as:before, -i.flag.american.samoa:before { - background-position: 0px -260px; -} - -i.flag.at:before, -i.flag.austria:before { - background-position: 0px -286px; -} - -i.flag.au:before, -i.flag.australia:before { - background-position: 0px -312px; -} - -i.flag.aw:before, -i.flag.aruba:before { - background-position: 0px -338px; -} - -i.flag.ax:before, -i.flag.aland.islands:before { - background-position: 0px -364px; -} - -i.flag.az:before, -i.flag.azerbaijan:before { - background-position: 0px -390px; -} - -i.flag.ba:before, -i.flag.bosnia:before { - background-position: 0px -416px; -} - -i.flag.bb:before, -i.flag.barbados:before { - background-position: 0px -442px; -} - -i.flag.bd:before, -i.flag.bangladesh:before { - background-position: 0px -468px; -} - -i.flag.be:before, -i.flag.belgium:before { - background-position: 0px -494px; -} - -i.flag.bf:before, -i.flag.burkina.faso:before { - background-position: 0px -520px; -} - -i.flag.bg:before, -i.flag.bulgaria:before { - background-position: 0px -546px; -} - -i.flag.bh:before, -i.flag.bahrain:before { - background-position: 0px -572px; -} - -i.flag.bi:before, -i.flag.burundi:before { - background-position: 0px -598px; -} - -i.flag.bj:before, -i.flag.benin:before { - background-position: 0px -624px; -} - -i.flag.bm:before, -i.flag.bermuda:before { - background-position: 0px -650px; -} - -i.flag.bn:before, -i.flag.brunei:before { - background-position: 0px -676px; -} - -i.flag.bo:before, -i.flag.bolivia:before { - background-position: 0px -702px; -} - -i.flag.br:before, -i.flag.brazil:before { - background-position: 0px -728px; -} - -i.flag.bs:before, -i.flag.bahamas:before { - background-position: 0px -754px; -} - -i.flag.bt:before, -i.flag.bhutan:before { - background-position: 0px -780px; -} - -i.flag.bv:before, -i.flag.bouvet.island:before { - background-position: 0px -806px; -} - -i.flag.bw:before, -i.flag.botswana:before { - background-position: 0px -832px; -} - -i.flag.by:before, -i.flag.belarus:before { - background-position: 0px -858px; -} - -i.flag.bz:before, -i.flag.belize:before { - background-position: 0px -884px; -} - -i.flag.ca:before, -i.flag.canada:before { - background-position: 0px -910px; -} - -i.flag.cc:before, -i.flag.cocos.islands:before { - background-position: 0px -962px; -} - -i.flag.cd:before, -i.flag.congo:before { - background-position: 0px -988px; -} - -i.flag.cf:before, -i.flag.central.african.republic:before { - background-position: 0px -1014px; -} - -i.flag.cg:before, -i.flag.congo.brazzaville:before { - background-position: 0px -1040px; -} - -i.flag.ch:before, -i.flag.switzerland:before { - background-position: 0px -1066px; -} - -i.flag.ci:before, -i.flag.cote.divoire:before { - background-position: 0px -1092px; -} - -i.flag.ck:before, -i.flag.cook.islands:before { - background-position: 0px -1118px; -} - -i.flag.cl:before, -i.flag.chile:before { - background-position: 0px -1144px; -} - -i.flag.cm:before, -i.flag.cameroon:before { - background-position: 0px -1170px; -} - -i.flag.cn:before, -i.flag.china:before { - background-position: 0px -1196px; -} - -i.flag.co:before, -i.flag.colombia:before { - background-position: 0px -1222px; -} - -i.flag.cr:before, -i.flag.costa.rica:before { - background-position: 0px -1248px; -} - -i.flag.cs:before, -i.flag.serbia:before { - background-position: 0px -1274px; -} - -i.flag.cu:before, -i.flag.cuba:before { - background-position: 0px -1300px; -} - -i.flag.cv:before, -i.flag.cape.verde:before { - background-position: 0px -1326px; -} - -i.flag.cx:before, -i.flag.christmas.island:before { - background-position: 0px -1352px; -} - -i.flag.cy:before, -i.flag.cyprus:before { - background-position: 0px -1378px; -} - -i.flag.cz:before, -i.flag.czech.republic:before { - background-position: 0px -1404px; -} - -i.flag.de:before, -i.flag.germany:before { - background-position: 0px -1430px; -} - -i.flag.dj:before, -i.flag.djibouti:before { - background-position: 0px -1456px; -} - -i.flag.dk:before, -i.flag.denmark:before { - background-position: 0px -1482px; -} - -i.flag.dm:before, -i.flag.dominica:before { - background-position: 0px -1508px; -} - -i.flag.do:before, -i.flag.dominican.republic:before { - background-position: 0px -1534px; -} - -i.flag.dz:before, -i.flag.algeria:before { - background-position: 0px -1560px; -} - -i.flag.ec:before, -i.flag.ecuador:before { - background-position: 0px -1586px; -} - -i.flag.ee:before, -i.flag.estonia:before { - background-position: 0px -1612px; -} - -i.flag.eg:before, -i.flag.egypt:before { - background-position: 0px -1638px; -} - -i.flag.eh:before, -i.flag.western.sahara:before { - background-position: 0px -1664px; -} - -i.flag.gb.eng:before, -i.flag.england:before { - background-position: 0px -1690px; -} - -i.flag.er:before, -i.flag.eritrea:before { - background-position: 0px -1716px; -} - -i.flag.es:before, -i.flag.spain:before { - background-position: 0px -1742px; -} - -i.flag.et:before, -i.flag.ethiopia:before { - background-position: 0px -1768px; -} - -i.flag.eu:before, -i.flag.european.union:before { - background-position: 0px -1794px; -} - -i.flag.fi:before, -i.flag.finland:before { - background-position: 0px -1846px; -} - -i.flag.fj:before, -i.flag.fiji:before { - background-position: 0px -1872px; -} - -i.flag.fk:before, -i.flag.falkland.islands:before { - background-position: 0px -1898px; -} - -i.flag.fm:before, -i.flag.micronesia:before { - background-position: 0px -1924px; -} - -i.flag.fo:before, -i.flag.faroe.islands:before { - background-position: 0px -1950px; -} - -i.flag.fr:before, -i.flag.france:before { - background-position: 0px -1976px; -} - -i.flag.ga:before, -i.flag.gabon:before { - background-position: -36px 0px; -} - -i.flag.gb:before, -i.flag.united.kingdom:before { - background-position: -36px -26px; -} - -i.flag.gd:before, -i.flag.grenada:before { - background-position: -36px -52px; -} - -i.flag.ge:before, -i.flag.georgia:before { - background-position: -36px -78px; -} - -i.flag.gf:before, -i.flag.french.guiana:before { - background-position: -36px -104px; -} - -i.flag.gh:before, -i.flag.ghana:before { - background-position: -36px -130px; -} - -i.flag.gi:before, -i.flag.gibraltar:before { - background-position: -36px -156px; -} - -i.flag.gl:before, -i.flag.greenland:before { - background-position: -36px -182px; -} - -i.flag.gm:before, -i.flag.gambia:before { - background-position: -36px -208px; -} - -i.flag.gn:before, -i.flag.guinea:before { - background-position: -36px -234px; -} - -i.flag.gp:before, -i.flag.guadeloupe:before { - background-position: -36px -260px; -} - -i.flag.gq:before, -i.flag.equatorial.guinea:before { - background-position: -36px -286px; -} - -i.flag.gr:before, -i.flag.greece:before { - background-position: -36px -312px; -} - -i.flag.gs:before, -i.flag.sandwich.islands:before { - background-position: -36px -338px; -} - -i.flag.gt:before, -i.flag.guatemala:before { - background-position: -36px -364px; -} - -i.flag.gu:before, -i.flag.guam:before { - background-position: -36px -390px; -} - -i.flag.gw:before, -i.flag.guinea-bissau:before { - background-position: -36px -416px; -} - -i.flag.gy:before, -i.flag.guyana:before { - background-position: -36px -442px; -} - -i.flag.hk:before, -i.flag.hong.kong:before { - background-position: -36px -468px; -} - -i.flag.hm:before, -i.flag.heard.island:before { - background-position: -36px -494px; -} - -i.flag.hn:before, -i.flag.honduras:before { - background-position: -36px -520px; -} - -i.flag.hr:before, -i.flag.croatia:before { - background-position: -36px -546px; -} - -i.flag.ht:before, -i.flag.haiti:before { - background-position: -36px -572px; -} - -i.flag.hu:before, -i.flag.hungary:before { - background-position: -36px -598px; -} - -i.flag.id:before, -i.flag.indonesia:before { - background-position: -36px -624px; -} - -i.flag.ie:before, -i.flag.ireland:before { - background-position: -36px -650px; -} - -i.flag.il:before, -i.flag.israel:before { - background-position: -36px -676px; -} - -i.flag.in:before, -i.flag.india:before { - background-position: -36px -702px; -} - -i.flag.io:before, -i.flag.indian.ocean.territory:before { - background-position: -36px -728px; -} - -i.flag.iq:before, -i.flag.iraq:before { - background-position: -36px -754px; -} - -i.flag.ir:before, -i.flag.iran:before { - background-position: -36px -780px; -} - -i.flag.is:before, -i.flag.iceland:before { - background-position: -36px -806px; -} - -i.flag.it:before, -i.flag.italy:before { - background-position: -36px -832px; -} - -i.flag.jm:before, -i.flag.jamaica:before { - background-position: -36px -858px; -} - -i.flag.jo:before, -i.flag.jordan:before { - background-position: -36px -884px; -} - -i.flag.jp:before, -i.flag.japan:before { - background-position: -36px -910px; -} - -i.flag.ke:before, -i.flag.kenya:before { - background-position: -36px -936px; -} - -i.flag.kg:before, -i.flag.kyrgyzstan:before { - background-position: -36px -962px; -} - -i.flag.kh:before, -i.flag.cambodia:before { - background-position: -36px -988px; -} - -i.flag.ki:before, -i.flag.kiribati:before { - background-position: -36px -1014px; -} - -i.flag.km:before, -i.flag.comoros:before { - background-position: -36px -1040px; -} - -i.flag.kn:before, -i.flag.saint.kitts.and.nevis:before { - background-position: -36px -1066px; -} - -i.flag.kp:before, -i.flag.north.korea:before { - background-position: -36px -1092px; -} - -i.flag.kr:before, -i.flag.south.korea:before { - background-position: -36px -1118px; -} - -i.flag.kw:before, -i.flag.kuwait:before { - background-position: -36px -1144px; -} - -i.flag.ky:before, -i.flag.cayman.islands:before { - background-position: -36px -1170px; -} - -i.flag.kz:before, -i.flag.kazakhstan:before { - background-position: -36px -1196px; -} - -i.flag.la:before, -i.flag.laos:before { - background-position: -36px -1222px; -} - -i.flag.lb:before, -i.flag.lebanon:before { - background-position: -36px -1248px; -} - -i.flag.lc:before, -i.flag.saint.lucia:before { - background-position: -36px -1274px; -} - -i.flag.li:before, -i.flag.liechtenstein:before { - background-position: -36px -1300px; -} - -i.flag.lk:before, -i.flag.sri.lanka:before { - background-position: -36px -1326px; -} - -i.flag.lr:before, -i.flag.liberia:before { - background-position: -36px -1352px; -} - -i.flag.ls:before, -i.flag.lesotho:before { - background-position: -36px -1378px; -} - -i.flag.lt:before, -i.flag.lithuania:before { - background-position: -36px -1404px; -} - -i.flag.lu:before, -i.flag.luxembourg:before { - background-position: -36px -1430px; -} - -i.flag.lv:before, -i.flag.latvia:before { - background-position: -36px -1456px; -} - -i.flag.ly:before, -i.flag.libya:before { - background-position: -36px -1482px; -} - -i.flag.ma:before, -i.flag.morocco:before { - background-position: -36px -1508px; -} - -i.flag.mc:before, -i.flag.monaco:before { - background-position: -36px -1534px; -} - -i.flag.md:before, -i.flag.moldova:before { - background-position: -36px -1560px; -} - -i.flag.me:before, -i.flag.montenegro:before { - background-position: -36px -1586px; -} - -i.flag.mg:before, -i.flag.madagascar:before { - background-position: -36px -1613px; -} - -i.flag.mh:before, -i.flag.marshall.islands:before { - background-position: -36px -1639px; -} - -i.flag.mk:before, -i.flag.macedonia:before { - background-position: -36px -1665px; -} - -i.flag.ml:before, -i.flag.mali:before { - background-position: -36px -1691px; -} - -i.flag.mm:before, -i.flag.myanmar:before, -i.flag.burma:before { - background-position: -73px -1821px; -} - -i.flag.mn:before, -i.flag.mongolia:before { - background-position: -36px -1743px; -} - -i.flag.mo:before, -i.flag.macau:before { - background-position: -36px -1769px; -} - -i.flag.mp:before, -i.flag.northern.mariana.islands:before { - background-position: -36px -1795px; -} - -i.flag.mq:before, -i.flag.martinique:before { - background-position: -36px -1821px; -} - -i.flag.mr:before, -i.flag.mauritania:before { - background-position: -36px -1847px; -} - -i.flag.ms:before, -i.flag.montserrat:before { - background-position: -36px -1873px; -} - -i.flag.mt:before, -i.flag.malta:before { - background-position: -36px -1899px; -} - -i.flag.mu:before, -i.flag.mauritius:before { - background-position: -36px -1925px; -} - -i.flag.mv:before, -i.flag.maldives:before { - background-position: -36px -1951px; -} - -i.flag.mw:before, -i.flag.malawi:before { - background-position: -36px -1977px; -} - -i.flag.mx:before, -i.flag.mexico:before { - background-position: -72px 0px; -} - -i.flag.my:before, -i.flag.malaysia:before { - background-position: -72px -26px; -} - -i.flag.mz:before, -i.flag.mozambique:before { - background-position: -72px -52px; -} - -i.flag.na:before, -i.flag.namibia:before { - background-position: -72px -78px; -} - -i.flag.nc:before, -i.flag.new.caledonia:before { - background-position: -72px -104px; -} - -i.flag.ne:before, -i.flag.niger:before { - background-position: -72px -130px; -} - -i.flag.nf:before, -i.flag.norfolk.island:before { - background-position: -72px -156px; -} - -i.flag.ng:before, -i.flag.nigeria:before { - background-position: -72px -182px; -} - -i.flag.ni:before, -i.flag.nicaragua:before { - background-position: -72px -208px; -} - -i.flag.nl:before, -i.flag.netherlands:before { - background-position: -72px -234px; -} - -i.flag.no:before, -i.flag.norway:before { - background-position: -72px -260px; -} - -i.flag.np:before, -i.flag.nepal:before { - background-position: -72px -286px; -} - -i.flag.nr:before, -i.flag.nauru:before { - background-position: -72px -312px; -} - -i.flag.nu:before, -i.flag.niue:before { - background-position: -72px -338px; -} - -i.flag.nz:before, -i.flag.new.zealand:before { - background-position: -72px -364px; -} - -i.flag.om:before, -i.flag.oman:before { - background-position: -72px -390px; -} - -i.flag.pa:before, -i.flag.panama:before { - background-position: -72px -416px; -} - -i.flag.pe:before, -i.flag.peru:before { - background-position: -72px -442px; -} - -i.flag.pf:before, -i.flag.french.polynesia:before { - background-position: -72px -468px; -} - -i.flag.pg:before, -i.flag.new.guinea:before { - background-position: -72px -494px; -} - -i.flag.ph:before, -i.flag.philippines:before { - background-position: -72px -520px; -} - -i.flag.pk:before, -i.flag.pakistan:before { - background-position: -72px -546px; -} - -i.flag.pl:before, -i.flag.poland:before { - background-position: -72px -572px; -} - -i.flag.pm:before, -i.flag.saint.pierre:before { - background-position: -72px -598px; -} - -i.flag.pn:before, -i.flag.pitcairn.islands:before { - background-position: -72px -624px; -} - -i.flag.pr:before, -i.flag.puerto.rico:before { - background-position: -72px -650px; -} - -i.flag.ps:before, -i.flag.palestine:before { - background-position: -72px -676px; -} - -i.flag.pt:before, -i.flag.portugal:before { - background-position: -72px -702px; -} - -i.flag.pw:before, -i.flag.palau:before { - background-position: -72px -728px; -} - -i.flag.py:before, -i.flag.paraguay:before { - background-position: -72px -754px; -} - -i.flag.qa:before, -i.flag.qatar:before { - background-position: -72px -780px; -} - -i.flag.re:before, -i.flag.reunion:before { - background-position: -72px -806px; -} - -i.flag.ro:before, -i.flag.romania:before { - background-position: -72px -832px; -} - -i.flag.rs:before, -i.flag.serbia:before { - background-position: -72px -858px; -} - -i.flag.ru:before, -i.flag.russia:before { - background-position: -72px -884px; -} - -i.flag.rw:before, -i.flag.rwanda:before { - background-position: -72px -910px; -} - -i.flag.sa:before, -i.flag.saudi.arabia:before { - background-position: -72px -936px; -} - -i.flag.sb:before, -i.flag.solomon.islands:before { - background-position: -72px -962px; -} - -i.flag.sc:before, -i.flag.seychelles:before { - background-position: -72px -988px; -} - -i.flag.gb.sct:before, -i.flag.scotland:before { - background-position: -72px -1014px; -} - -i.flag.sd:before, -i.flag.sudan:before { - background-position: -72px -1040px; -} - -i.flag.se:before, -i.flag.sweden:before { - background-position: -72px -1066px; -} - -i.flag.sg:before, -i.flag.singapore:before { - background-position: -72px -1092px; -} - -i.flag.sh:before, -i.flag.saint.helena:before { - background-position: -72px -1118px; -} - -i.flag.si:before, -i.flag.slovenia:before { - background-position: -72px -1144px; -} - -i.flag.sj:before, -i.flag.svalbard:before, -i.flag.jan.mayen:before { - background-position: -72px -1170px; -} - -i.flag.sk:before, -i.flag.slovakia:before { - background-position: -72px -1196px; -} - -i.flag.sl:before, -i.flag.sierra.leone:before { - background-position: -72px -1222px; -} - -i.flag.sm:before, -i.flag.san.marino:before { - background-position: -72px -1248px; -} - -i.flag.sn:before, -i.flag.senegal:before { - background-position: -72px -1274px; -} - -i.flag.so:before, -i.flag.somalia:before { - background-position: -72px -1300px; -} - -i.flag.sr:before, -i.flag.suriname:before { - background-position: -72px -1326px; -} - -i.flag.st:before, -i.flag.sao.tome:before { - background-position: -72px -1352px; -} - -i.flag.sv:before, -i.flag.el.salvador:before { - background-position: -72px -1378px; -} - -i.flag.sy:before, -i.flag.syria:before { - background-position: -72px -1404px; -} - -i.flag.sz:before, -i.flag.swaziland:before { - background-position: -72px -1430px; -} - -i.flag.tc:before, -i.flag.caicos.islands:before { - background-position: -72px -1456px; -} - -i.flag.td:before, -i.flag.chad:before { - background-position: -72px -1482px; -} - -i.flag.tf:before, -i.flag.french.territories:before { - background-position: -72px -1508px; -} - -i.flag.tg:before, -i.flag.togo:before { - background-position: -72px -1534px; -} - -i.flag.th:before, -i.flag.thailand:before { - background-position: -72px -1560px; -} - -i.flag.tj:before, -i.flag.tajikistan:before { - background-position: -72px -1586px; -} - -i.flag.tk:before, -i.flag.tokelau:before { - background-position: -72px -1612px; -} - -i.flag.tl:before, -i.flag.timorleste:before { - background-position: -72px -1638px; -} - -i.flag.tm:before, -i.flag.turkmenistan:before { - background-position: -72px -1664px; -} - -i.flag.tn:before, -i.flag.tunisia:before { - background-position: -72px -1690px; -} - -i.flag.to:before, -i.flag.tonga:before { - background-position: -72px -1716px; -} - -i.flag.tr:before, -i.flag.turkey:before { - background-position: -72px -1742px; -} - -i.flag.tt:before, -i.flag.trinidad:before { - background-position: -72px -1768px; -} - -i.flag.tv:before, -i.flag.tuvalu:before { - background-position: -72px -1794px; -} - -i.flag.tw:before, -i.flag.taiwan:before { - background-position: -72px -1820px; -} - -i.flag.tz:before, -i.flag.tanzania:before { - background-position: -72px -1846px; -} - -i.flag.ua:before, -i.flag.ukraine:before { - background-position: -72px -1872px; -} - -i.flag.ug:before, -i.flag.uganda:before { - background-position: -72px -1898px; -} - -i.flag.um:before, -i.flag.us.minor.islands:before { - background-position: -72px -1924px; -} - -i.flag.us:before, -i.flag.america:before, -i.flag.united.states:before { - background-position: -72px -1950px; -} - -i.flag.uy:before, -i.flag.uruguay:before { - background-position: -72px -1976px; -} - -i.flag.uz:before, -i.flag.uzbekistan:before { - background-position: -108px 0px; -} - -i.flag.va:before, -i.flag.vatican.city:before { - background-position: -108px -26px; -} - -i.flag.vc:before, -i.flag.saint.vincent:before { - background-position: -108px -52px; -} - -i.flag.ve:before, -i.flag.venezuela:before { - background-position: -108px -78px; -} - -i.flag.vg:before, -i.flag.british.virgin.islands:before { - background-position: -108px -104px; -} - -i.flag.vi:before, -i.flag.us.virgin.islands:before { - background-position: -108px -130px; -} - -i.flag.vn:before, -i.flag.vietnam:before { - background-position: -108px -156px; -} - -i.flag.vu:before, -i.flag.vanuatu:before { - background-position: -108px -182px; -} - -i.flag.gb.wls:before, -i.flag.wales:before { - background-position: -108px -208px; -} - -i.flag.wf:before, -i.flag.wallis.and.futuna:before { - background-position: -108px -234px; -} - -i.flag.ws:before, -i.flag.samoa:before { - background-position: -108px -260px; -} - -i.flag.ye:before, -i.flag.yemen:before { - background-position: -108px -286px; -} - -i.flag.yt:before, -i.flag.mayotte:before { - background-position: -108px -312px; -} - -i.flag.za:before, -i.flag.south.africa:before { - background-position: -108px -338px; -} - -i.flag.zm:before, -i.flag.zambia:before { - background-position: -108px -364px; -} - -i.flag.zw:before, -i.flag.zimbabwe:before { - background-position: -108px -390px; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Header -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Header -*******************************/ - -/* Standard */ - -.ui.header { - border: none; - margin: calc(2rem - 0.14285714em ) 0em 1rem; - padding: 0em 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - line-height: 1.28571429em; - text-transform: none; - color: rgba(0, 0, 0, 0.87); -} - -.ui.header:first-child { - margin-top: -0.14285714em; -} - -.ui.header:last-child { - margin-bottom: 0em; -} - -/*-------------- - Sub Header ----------------*/ - -.ui.header .sub.header { - display: block; - font-weight: normal; - padding: 0em; - margin: 0em; - font-size: 1rem; - line-height: 1.2em; - color: rgba(0, 0, 0, 0.6); -} - -/*-------------- - Icon ----------------*/ - -.ui.header > .icon { - display: table-cell; - opacity: 1; - font-size: 1.5em; - padding-top: 0em; - vertical-align: middle; -} - -/* With Text Node */ - -.ui.header .icon:only-child { - display: inline-block; - padding: 0em; - margin-right: 0.75rem; -} - -/*------------------- - Image ---------------------*/ - -.ui.header > .image:not(.icon), -.ui.header > img { - display: inline-block; - margin-top: 0.14285714em; - width: 2.5em; - height: auto; - vertical-align: middle; -} - -.ui.header > .image:not(.icon):only-child, -.ui.header > img:only-child { - margin-right: 0.75rem; -} - -/*-------------- - Content ----------------*/ - -.ui.header .content { - display: inline-block; - vertical-align: top; -} - -/* After Image */ - -.ui.header > img + .content, -.ui.header > .image + .content { - padding-left: 0.75rem; - vertical-align: middle; -} - -/* After Icon */ - -.ui.header > .icon + .content { - padding-left: 0.75rem; - display: table-cell; - vertical-align: middle; -} - -/*-------------- -Loose Coupling ----------------*/ - -.ui.header .ui.label { - font-size: ''; - margin-left: 0.5rem; - vertical-align: middle; -} - -/* Positioning */ - -.ui.header + p { - margin-top: 0em; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Page ----------------*/ - -h1.ui.header { - font-size: 2rem; -} - -h2.ui.header { - font-size: 1.71428571rem; -} - -h3.ui.header { - font-size: 1.28571429rem; -} - -h4.ui.header { - font-size: 1.07142857rem; -} - -h5.ui.header { - font-size: 1rem; -} - -/* Sub Header */ - -h1.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h2.ui.header .sub.header { - font-size: 1.14285714rem; -} - -h3.ui.header .sub.header { - font-size: 1rem; -} - -h4.ui.header .sub.header { - font-size: 1rem; -} - -h5.ui.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- -Content Heading ----------------*/ - -.ui.huge.header { - min-height: 1em; - font-size: 2em; -} - -.ui.large.header { - font-size: 1.71428571em; -} - -.ui.medium.header { - font-size: 1.28571429em; -} - -.ui.small.header { - font-size: 1.07142857em; -} - -.ui.tiny.header { - font-size: 1em; -} - -/* Sub Header */ - -.ui.huge.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.large.header .sub.header { - font-size: 1.14285714rem; -} - -.ui.header .sub.header { - font-size: 1rem; -} - -.ui.small.header .sub.header { - font-size: 1rem; -} - -.ui.tiny.header .sub.header { - font-size: 0.92857143rem; -} - -/*-------------- - Sub Heading ----------------*/ - -.ui.sub.header { - padding: 0em; - margin-bottom: 0.14285714rem; - font-weight: bold; - font-size: 0.85714286em; - text-transform: uppercase; - color: ''; -} - -.ui.small.sub.header { - font-size: 0.78571429em; -} - -.ui.sub.header { - font-size: 0.85714286em; -} - -.ui.large.sub.header { - font-size: 0.92857143em; -} - -.ui.huge.sub.header { - font-size: 1em; -} - -/*------------------- - Icon ---------------------*/ - -.ui.icon.header { - display: inline-block; - text-align: center; - margin: 2rem 0em 1rem; -} - -.ui.icon.header:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.icon.header:first-child { - margin-top: 0em; -} - -.ui.icon.header .icon { - float: none; - display: block; - width: auto; - height: auto; - line-height: 1; - padding: 0em; - font-size: 3em; - margin: 0em auto 0.5rem; - opacity: 1; -} - -.ui.icon.header .content { - display: block; - padding: 0em; -} - -.ui.icon.header .circular.icon { - font-size: 2em; -} - -.ui.icon.header .square.icon { - font-size: 2em; -} - -.ui.block.icon.header .icon { - margin-bottom: 0em; -} - -.ui.icon.header.aligned { - margin-left: auto; - margin-right: auto; - display: block; -} - -/******************************* - States -*******************************/ - -.ui.disabled.header { - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.header { - color: #FFFFFF; -} - -.ui.inverted.header .sub.header { - color: rgba(255, 255, 255, 0.8); -} - -.ui.inverted.attached.header { - background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - -webkit-box-shadow: none; - box-shadow: none; - border-color: transparent; -} - -.ui.inverted.block.header { - background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.inverted.block.header { - border-bottom: none; -} - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.header { - color: #DB2828 !important; -} - -a.ui.red.header:hover { - color: #d01919 !important; -} - -.ui.red.dividing.header { - border-bottom: 2px solid #DB2828; -} - -/* Inverted */ - -.ui.inverted.red.header { - color: #FF695E !important; -} - -a.ui.inverted.red.header:hover { - color: #ff5144 !important; -} - -/*--- Orange ---*/ - -.ui.orange.header { - color: #F2711C !important; -} - -a.ui.orange.header:hover { - color: #f26202 !important; -} - -.ui.orange.dividing.header { - border-bottom: 2px solid #F2711C; -} - -/* Inverted */ - -.ui.inverted.orange.header { - color: #FF851B !important; -} - -a.ui.inverted.orange.header:hover { - color: #ff7701 !important; -} - -/*--- Olive ---*/ - -.ui.olive.header { - color: #B5CC18 !important; -} - -a.ui.olive.header:hover { - color: #a7bd0d !important; -} - -.ui.olive.dividing.header { - border-bottom: 2px solid #B5CC18; -} - -/* Inverted */ - -.ui.inverted.olive.header { - color: #D9E778 !important; -} - -a.ui.inverted.olive.header:hover { - color: #d8ea5c !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.header { - color: #FBBD08 !important; -} - -a.ui.yellow.header:hover { - color: #eaae00 !important; -} - -.ui.yellow.dividing.header { - border-bottom: 2px solid #FBBD08; -} - -/* Inverted */ - -.ui.inverted.yellow.header { - color: #FFE21F !important; -} - -a.ui.inverted.yellow.header:hover { - color: #ffdf05 !important; -} - -/*--- Green ---*/ - -.ui.green.header { - color: #21BA45 !important; -} - -a.ui.green.header:hover { - color: #16ab39 !important; -} - -.ui.green.dividing.header { - border-bottom: 2px solid #21BA45; -} - -/* Inverted */ - -.ui.inverted.green.header { - color: #2ECC40 !important; -} - -a.ui.inverted.green.header:hover { - color: #22be34 !important; -} - -/*--- Teal ---*/ - -.ui.teal.header { - color: #00B5AD !important; -} - -a.ui.teal.header:hover { - color: #009c95 !important; -} - -.ui.teal.dividing.header { - border-bottom: 2px solid #00B5AD; -} - -/* Inverted */ - -.ui.inverted.teal.header { - color: #6DFFFF !important; -} - -a.ui.inverted.teal.header:hover { - color: #54ffff !important; -} - -/*--- Blue ---*/ - -.ui.blue.header { - color: #2185D0 !important; -} - -a.ui.blue.header:hover { - color: #1678c2 !important; -} - -.ui.blue.dividing.header { - border-bottom: 2px solid #2185D0; -} - -/* Inverted */ - -.ui.inverted.blue.header { - color: #54C8FF !important; -} - -a.ui.inverted.blue.header:hover { - color: #3ac0ff !important; -} - -/*--- Violet ---*/ - -.ui.violet.header { - color: #6435C9 !important; -} - -a.ui.violet.header:hover { - color: #5829bb !important; -} - -.ui.violet.dividing.header { - border-bottom: 2px solid #6435C9; -} - -/* Inverted */ - -.ui.inverted.violet.header { - color: #A291FB !important; -} - -a.ui.inverted.violet.header:hover { - color: #8a73ff !important; -} - -/*--- Purple ---*/ - -.ui.purple.header { - color: #A333C8 !important; -} - -a.ui.purple.header:hover { - color: #9627ba !important; -} - -.ui.purple.dividing.header { - border-bottom: 2px solid #A333C8; -} - -/* Inverted */ - -.ui.inverted.purple.header { - color: #DC73FF !important; -} - -a.ui.inverted.purple.header:hover { - color: #d65aff !important; -} - -/*--- Pink ---*/ - -.ui.pink.header { - color: #E03997 !important; -} - -a.ui.pink.header:hover { - color: #e61a8d !important; -} - -.ui.pink.dividing.header { - border-bottom: 2px solid #E03997; -} - -/* Inverted */ - -.ui.inverted.pink.header { - color: #FF8EDF !important; -} - -a.ui.inverted.pink.header:hover { - color: #ff74d8 !important; -} - -/*--- Brown ---*/ - -.ui.brown.header { - color: #A5673F !important; -} - -a.ui.brown.header:hover { - color: #975b33 !important; -} - -.ui.brown.dividing.header { - border-bottom: 2px solid #A5673F; -} - -/* Inverted */ - -.ui.inverted.brown.header { - color: #D67C1C !important; -} - -a.ui.inverted.brown.header:hover { - color: #c86f11 !important; -} - -/*--- Grey ---*/ - -.ui.grey.header { - color: #767676 !important; -} - -a.ui.grey.header:hover { - color: #838383 !important; -} - -.ui.grey.dividing.header { - border-bottom: 2px solid #767676; -} - -/* Inverted */ - -.ui.inverted.grey.header { - color: #DCDDDE !important; -} - -a.ui.inverted.grey.header:hover { - color: #cfd0d2 !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui.left.aligned.header { - text-align: left; -} - -.ui.right.aligned.header { - text-align: right; -} - -.ui.centered.header, -.ui.center.aligned.header { - text-align: center; -} - -.ui.justified.header { - text-align: justify; -} - -.ui.justified.header:after { - display: inline-block; - content: ''; - width: 100%; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.header, -.ui[class*="left floated"].header { - float: left; - margin-top: 0em; - margin-right: 0.5em; -} - -.ui[class*="right floated"].header { - float: right; - margin-top: 0em; - margin-left: 0.5em; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.header { - padding: 0em; -} - -/*------------------- - Dividing ---------------------*/ - -.ui.dividing.header { - padding-bottom: 0.21428571rem; - border-bottom: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.dividing.header .sub.header { - padding-bottom: 0.21428571rem; -} - -.ui.dividing.header .icon { - margin-bottom: 0em; -} - -.ui.inverted.dividing.header { - border-bottom-color: rgba(255, 255, 255, 0.1); -} - -/*------------------- - Block ---------------------*/ - -.ui.block.header { - background: #F3F4F5; - padding: 0.78571429rem 1rem; - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid #D4D4D5; - border-radius: 0.28571429rem; -} - -.ui.tiny.block.header { - font-size: 0.85714286rem; -} - -.ui.small.block.header { - font-size: 0.92857143rem; -} - -.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1rem; -} - -.ui.large.block.header { - font-size: 1.14285714rem; -} - -.ui.huge.block.header { - font-size: 1.42857143rem; -} - -/*------------------- - Attached ---------------------*/ - -.ui.attached.header { - background: #FFFFFF; - padding: 0.78571429rem 1rem; - margin-left: -1px; - margin-right: -1px; - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid #D4D4D5; -} - -.ui.attached.block.header { - background: #F3F4F5; -} - -.ui.attached:not(.top):not(.bottom).header { - margin-top: 0em; - margin-bottom: 0em; - border-top: none; - border-radius: 0em; -} - -.ui.top.attached.header { - margin-bottom: 0em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.bottom.attached.header { - margin-top: 0em; - border-top: none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Attached Sizes */ - -.ui.tiny.attached.header { - font-size: 0.85714286em; -} - -.ui.small.attached.header { - font-size: 0.92857143em; -} - -.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1em; -} - -.ui.large.attached.header { - font-size: 1.14285714em; -} - -.ui.huge.attached.header { - font-size: 1.42857143em; -} - -/*------------------- - Sizing ---------------------*/ - -.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { - font-size: 1.28571429em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Icon -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Icon -*******************************/ - -@font-face { - font-family: 'Icons'; - src: url("./themes/default/assets/fonts/icons.eot"); - src: url("./themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("./themes/default/assets/fonts/icons.woff2") format('woff2'), url("./themes/default/assets/fonts/icons.woff") format('woff'), url("./themes/default/assets/fonts/icons.ttf") format('truetype'), url("./themes/default/assets/fonts/icons.svg#icons") format('svg'); - font-style: normal; - font-weight: normal; - font-variant: normal; - text-decoration: inherit; - text-transform: none; -} - -i.icon { - display: inline-block; - opacity: 1; - margin: 0em 0.25rem 0em 0em; - width: 1.18em; - height: 1em; - font-family: 'Icons'; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - text-align: center; - speak: none; - font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -i.icon:before { - background: none !important; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Loading ----------------*/ - -i.icon.loading { - height: 1em; - line-height: 1; - -webkit-animation: icon-loading 2s linear infinite; - animation: icon-loading 2s linear infinite; -} - -@-webkit-keyframes icon-loading { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes icon-loading { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - States -*******************************/ - -i.icon.hover { - opacity: 1 !important; -} - -i.icon.active { - opacity: 1 !important; -} - -i.emphasized.icon { - opacity: 1 !important; -} - -i.disabled.icon { - opacity: 0.45 !important; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Fitted ---------------------*/ - -i.fitted.icon { - width: auto; - margin: 0em; -} - -/*------------------- - Link ---------------------*/ - -i.link.icon, -i.link.icons { - cursor: pointer; - opacity: 0.8; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -i.link.icon:hover, -i.link.icons:hover { - opacity: 1 !important; -} - -/*------------------- - Circular ---------------------*/ - -i.circular.icon { - border-radius: 500em !important; - line-height: 1 !important; - padding: 0.5em 0.5em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - width: 2em !important; - height: 2em !important; -} - -i.circular.inverted.icon { - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/*------------------- - Flipped ---------------------*/ - -i.flipped.icon, -i.horizontally.flipped.icon { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); -} - -i.vertically.flipped.icon { - -webkit-transform: scale(1, -1); - transform: scale(1, -1); -} - -/*------------------- - Rotated ---------------------*/ - -i.rotated.icon, -i.right.rotated.icon, -i.clockwise.rotated.icon { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} - -i.left.rotated.icon, -i.counterclockwise.rotated.icon { - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); -} - -/*------------------- - Bordered ---------------------*/ - -i.bordered.icon { - line-height: 1; - vertical-align: baseline; - width: 2em; - height: 2em; - padding: 0.5em 0.41em !important; - -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; - box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset; -} - -i.bordered.inverted.icon { - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/*------------------- - Inverted ---------------------*/ - -/* Inverted Shapes */ - -i.inverted.bordered.icon, -i.inverted.circular.icon { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -i.inverted.icon { - color: #FFFFFF; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -i.red.icon { - color: #DB2828 !important; -} - -i.inverted.red.icon { - color: #FF695E !important; -} - -i.inverted.bordered.red.icon, -i.inverted.circular.red.icon { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -i.orange.icon { - color: #F2711C !important; -} - -i.inverted.orange.icon { - color: #FF851B !important; -} - -i.inverted.bordered.orange.icon, -i.inverted.circular.orange.icon { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -i.yellow.icon { - color: #FBBD08 !important; -} - -i.inverted.yellow.icon { - color: #FFE21F !important; -} - -i.inverted.bordered.yellow.icon, -i.inverted.circular.yellow.icon { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -i.olive.icon { - color: #B5CC18 !important; -} - -i.inverted.olive.icon { - color: #D9E778 !important; -} - -i.inverted.bordered.olive.icon, -i.inverted.circular.olive.icon { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -i.green.icon { - color: #21BA45 !important; -} - -i.inverted.green.icon { - color: #2ECC40 !important; -} - -i.inverted.bordered.green.icon, -i.inverted.circular.green.icon { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -i.teal.icon { - color: #00B5AD !important; -} - -i.inverted.teal.icon { - color: #6DFFFF !important; -} - -i.inverted.bordered.teal.icon, -i.inverted.circular.teal.icon { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -i.blue.icon { - color: #2185D0 !important; -} - -i.inverted.blue.icon { - color: #54C8FF !important; -} - -i.inverted.bordered.blue.icon, -i.inverted.circular.blue.icon { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -i.violet.icon { - color: #6435C9 !important; -} - -i.inverted.violet.icon { - color: #A291FB !important; -} - -i.inverted.bordered.violet.icon, -i.inverted.circular.violet.icon { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -i.purple.icon { - color: #A333C8 !important; -} - -i.inverted.purple.icon { - color: #DC73FF !important; -} - -i.inverted.bordered.purple.icon, -i.inverted.circular.purple.icon { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -i.pink.icon { - color: #E03997 !important; -} - -i.inverted.pink.icon { - color: #FF8EDF !important; -} - -i.inverted.bordered.pink.icon, -i.inverted.circular.pink.icon { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -i.brown.icon { - color: #A5673F !important; -} - -i.inverted.brown.icon { - color: #D67C1C !important; -} - -i.inverted.bordered.brown.icon, -i.inverted.circular.brown.icon { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -i.grey.icon { - color: #767676 !important; -} - -i.inverted.grey.icon { - color: #DCDDDE !important; -} - -i.inverted.bordered.grey.icon, -i.inverted.circular.grey.icon { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -i.black.icon { - color: #1B1C1D !important; -} - -i.inverted.black.icon { - color: #545454 !important; -} - -i.inverted.bordered.black.icon, -i.inverted.circular.black.icon { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*------------------- - Sizes ---------------------*/ - -i.mini.icon, -i.mini.icons { - line-height: 1; - font-size: 0.4em; -} - -i.tiny.icon, -i.tiny.icons { - line-height: 1; - font-size: 0.5em; -} - -i.small.icon, -i.small.icons { - line-height: 1; - font-size: 0.75em; -} - -i.icon, -i.icons { - font-size: 1em; -} - -i.large.icon, -i.large.icons { - line-height: 1; - vertical-align: middle; - font-size: 1.5em; -} - -i.big.icon, -i.big.icons { - line-height: 1; - vertical-align: middle; - font-size: 2em; -} - -i.huge.icon, -i.huge.icons { - line-height: 1; - vertical-align: middle; - font-size: 4em; -} - -i.massive.icon, -i.massive.icons { - line-height: 1; - vertical-align: middle; - font-size: 8em; -} - -/******************************* - Groups -*******************************/ - -i.icons { - display: inline-block; - position: relative; - line-height: 1; -} - -i.icons .icon { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - margin: 0em; - margin: 0; -} - -i.icons .icon:first-child { - position: static; - width: auto; - height: auto; - vertical-align: top; - -webkit-transform: none; - transform: none; - margin-right: 0.25rem; -} - -/* Corner Icon */ - -i.icons .corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; - -webkit-transform: none; - transform: none; - font-size: 0.45em; - text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF; -} - -i.icons .top.right.corner.icon { - top: 0; - left: auto; - right: 0; - bottom: auto; -} - -i.icons .top.left.corner.icon { - top: 0; - left: 0; - right: auto; - bottom: auto; -} - -i.icons .bottom.left.corner.icon { - top: auto; - left: 0; - right: auto; - bottom: 0; -} - -i.icons .bottom.right.corner.icon { - top: auto; - left: auto; - right: 0; - bottom: 0; -} - -i.icons .inverted.corner.icon { - text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D; -} - -/* -* Font Awesome 5.0.6 by @fontawesome - http://fontawesome.io - @fontawesome -* License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License) -*/ - -/******************************* - -Semantic-UI integration of font-awesome : - -///class names are separated -i.icon.circle => i.icon.circle -i.icon.circle-o => i.icon.circle.outline - -//abbreviation are replaced by full letters: -i.icon.ellipsis-h => i.icon.ellipsis.horizontal -i.icon.ellipsis-v => i.icon.ellipsis.vertical -.alpha => .i.icon.alphabet -.asc => .i.icon.ascending -.desc => .i.icon.descending -.alt =>.alternate - -ASCII order is conserved for easier maintenance. - -Icons that only have one style 'outline', 'square' etc do not require this class -for instance `lemon icon` not `lemon outline icon` since there is only one lemon - -*******************************/ - -/******************************* - Icons -*******************************/ - -/* Accessibility */ - -i.icon.american.sign.language.interpreting:before { - content: "\f2a3"; -} - -i.icon.assistive.listening.systems:before { - content: "\f2a2"; -} - -i.icon.audio.description:before { - content: "\f29e"; -} - -i.icon.blind:before { - content: "\f29d"; -} - -i.icon.braille:before { - content: "\f2a1"; -} - -i.icon.closed.captioning.outline:before { - content: "\f327"; -} - -i.icon.closed.captioning:before { - content: "\f20a"; -} - -i.icon.deaf:before { - content: "\f2a4"; -} - -i.icon.low.vision:before { - content: "\f2a8"; -} - -i.icon.phone.volume:before { - content: "\f2a0"; -} - -i.icon.question.circle.outline:before { - content: "\f628"; -} - -i.icon.question.circle:before { - content: "\f059"; -} - -i.icon.sign.language:before { - content: "\f2a7"; -} - -i.icon.tty:before { - content: "\f1e4"; -} - -i.icon.universal.access:before { - content: "\f29a"; -} - -i.icon.wheelchair:before { - content: "\f193"; -} - -/* Arrows */ - -i.icon.angle.double.down:before { - content: "\f103"; -} - -i.icon.angle.double.left:before { - content: "\f100"; -} - -i.icon.angle.double.right:before { - content: "\f101"; -} - -i.icon.angle.double.up:before { - content: "\f102"; -} - -i.icon.angle.down:before { - content: "\f107"; -} - -i.icon.angle.left:before { - content: "\f104"; -} - -i.icon.angle.right:before { - content: "\f105"; -} - -i.icon.angle.up:before { - content: "\f106"; -} - -i.icon.arrow.alternate.circle.down.outline:before { - content: "\f608"; -} - -i.icon.arrow.alternate.circle.down:before { - content: "\f358"; -} - -i.icon.arrow.alternate.circle.left.outline:before { - content: "\f605"; -} - -i.icon.arrow.alternate.circle.left:before { - content: "\f359"; -} - -i.icon.arrow.alternate.circle.right.outline:before { - content: "\f304"; -} - -i.icon.arrow.alternate.circle.right:before { - content: "\f35a"; -} - -i.icon.arrow.alternate.circle.up.outline:before { - content: "\f305"; -} - -i.icon.arrow.alternate.circle.up:before { - content: "\f35b"; -} - -i.icon.arrow.circle.down:before { - content: "\f0ab"; -} - -i.icon.arrow.circle.left:before { - content: "\f0a8"; -} - -i.icon.arrow.circle.right:before { - content: "\f0a9"; -} - -i.icon.arrow.circle.up:before { - content: "\f0aa"; -} - -i.icon.arrow.down:before { - content: "\f063"; -} - -i.icon.arrow.left:before { - content: "\f060"; -} - -i.icon.arrow.right:before { - content: "\f061"; -} - -i.icon.arrow.up:before { - content: "\f062"; -} - -i.icon.arrows.alternate.horizontal:before { - content: "\f337"; -} - -i.icon.arrows.alternate.vertical:before { - content: "\f338"; -} - -i.icon.arrows.alternate:before { - content: "\f0b2"; -} - -i.icon.caret.down:before { - content: "\f0d7"; -} - -i.icon.caret.left:before { - content: "\f0d9"; -} - -i.icon.caret.right:before { - content: "\f0da"; -} - -i.icon.caret.square.down.outline:before { - content: "\f316"; -} - -i.icon.caret.square.down:before { - content: "\f150"; -} - -i.icon.caret.square.left.outline:before { - content: "\f317"; -} - -i.icon.caret.square.left:before { - content: "\f191"; -} - -i.icon.caret.square.right.outline:before { - content: "\f318"; -} - -i.icon.caret.square.right:before { - content: "\f152"; -} - -i.icon.caret.square.up.outline:before { - content: "\f319"; -} - -i.icon.caret.square.up:before { - content: "\f151"; -} - -i.icon.caret.up:before { - content: "\f0d8"; -} - -i.icon.cart.arrow.down:before { - content: "\f218"; -} - -i.icon.chart.line:before { - content: "\f201"; -} - -i.icon.chevron.circle.down:before { - content: "\f13a"; -} - -i.icon.chevron.circle.left:before { - content: "\f137"; -} - -i.icon.chevron.circle.right:before { - content: "\f138"; -} - -i.icon.chevron.circle.up:before { - content: "\f139"; -} - -i.icon.chevron.down:before { - content: "\f078"; -} - -i.icon.chevron.left:before { - content: "\f053"; -} - -i.icon.chevron.right:before { - content: "\f054"; -} - -i.icon.chevron.up:before { - content: "\f077"; -} - -i.icon.cloud.download.alternate:before { - content: "\f600"; -} - -i.icon.cloud.upload.alternate:before { - content: "\f601"; -} - -i.icon.download:before { - content: "\f019"; -} - -i.icon.exchange.alternate:before { - content: "\f362"; -} - -i.icon.expand.arrows.alternate:before { - content: "\f31e"; -} - -i.icon.external.link.alternate:before { - content: "\f35d"; -} - -i.icon.external.link.square.alternate:before { - content: "\f360"; -} - -i.icon.hand.point.down.outline:before { - content: "\f602"; -} - -i.icon.hand.point.down:before { - content: "\f0a7"; -} - -i.icon.hand.point.left.outline:before { - content: "\f361"; -} - -i.icon.hand.point.left:before { - content: "\f0a5"; -} - -i.icon.hand.point.right.outline:before { - content: "\f362"; -} - -i.icon.hand.point.right:before { - content: "\f0a4"; -} - -i.icon.hand.point.up.outline:before { - content: "\f363"; -} - -i.icon.hand.point.up:before { - content: "\f0a6"; -} - -i.icon.hand.pointer.outline:before { - content: "\f364"; -} - -i.icon.hand.pointer:before { - content: "\f25a"; -} - -i.icon.history:before { - content: "\f1da"; -} - -i.icon.level.down.alternate:before { - content: "\f3be"; -} - -i.icon.level.up.alternate:before { - content: "\f3bf"; -} - -i.icon.location.arrow:before { - content: "\f124"; -} - -i.icon.long.arrow.alternate.down:before { - content: "\f309"; -} - -i.icon.long.arrow.alternate.left:before { - content: "\f30a"; -} - -i.icon.long.arrow.alternate.right:before { - content: "\f30b"; -} - -i.icon.long.arrow.alternate.up:before { - content: "\f30c"; -} - -i.icon.mouse.pointer:before { - content: "\f245"; -} - -i.icon.play:before { - content: "\f04b"; -} - -i.icon.random:before { - content: "\f074"; -} - -i.icon.recycle:before { - content: "\f1b8"; -} - -i.icon.redo.alternate:before { - content: "\f2f9"; -} - -i.icon.redo:before { - content: "\f01e"; -} - -i.icon.reply.all:before { - content: "\f122"; -} - -i.icon.reply:before { - content: "\f3e5"; -} - -i.icon.retweet:before { - content: "\f079"; -} - -i.icon.share.square.outline:before { - content: "\f631"; -} - -i.icon.share.square:before { - content: "\f14d"; -} - -i.icon.share:before { - content: "\f064"; -} - -i.icon.sign.in.alternate:before { - content: "\f2f6"; -} - -i.icon.sign.out.alternate:before { - content: "\f2f5"; -} - -i.icon.sort.alphabet.down:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.up:before { - content: "\f15e"; -} - -i.icon.sort.amount.down:before { - content: "\f160"; -} - -i.icon.sort.amount.up:before { - content: "\f161"; -} - -i.icon.sort.down:before { - content: "\f0dd"; -} - -i.icon.sort.numeric.down:before { - content: "\f162"; -} - -i.icon.sort.numeric.up:before { - content: "\f163"; -} - -i.icon.sort.up:before { - content: "\f0de"; -} - -i.icon.sort:before { - content: "\f0dc"; -} - -i.icon.sync.alternate:before { - content: "\f2f1"; -} - -i.icon.sync:before { - content: "\f021"; -} - -i.icon.text.height:before { - content: "\f034"; -} - -i.icon.text.width:before { - content: "\f035"; -} - -i.icon.undo.alternate:before { - content: "\f2ea"; -} - -i.icon.undo:before { - content: "\f0e2"; -} - -i.icon.upload:before { - content: "\f093"; -} - -/* Audio & Video */ - -i.icon.backward:before { - content: "\f04a"; -} - -i.icon.circle.outline:before { - content: "\f323"; -} - -i.icon.circle:before { - content: "\f111"; -} - -i.icon.compress:before { - content: "\f066"; -} - -i.icon.eject:before { - content: "\f052"; -} - -i.icon.expand:before { - content: "\f065"; -} - -i.icon.fast.backward:before { - content: "\f049"; -} - -i.icon.fast.forward:before { - content: "\f050"; -} - -i.icon.file.audio.outline:before { - content: "\f342"; -} - -i.icon.file.audio:before { - content: "\f1c7"; -} - -i.icon.file.video.outline:before { - content: "\f348"; -} - -i.icon.file.video:before { - content: "\f1c8"; -} - -i.icon.film:before { - content: "\f008"; -} - -i.icon.forward:before { - content: "\f04e"; -} - -i.icon.headphones:before { - content: "\f025"; -} - -i.icon.microphone.slash:before { - content: "\f131"; -} - -i.icon.microphone:before { - content: "\f130"; -} - -i.icon.music:before { - content: "\f001"; -} - -i.icon.pause.circle.outline:before { - content: "\f625"; -} - -i.icon.pause.circle:before { - content: "\f28b"; -} - -i.icon.pause:before { - content: "\f04c"; -} - -i.icon.play.circle.outline:before { - content: "\f626"; -} - -i.icon.play.circle:before { - content: "\f144"; -} - -i.icon.podcast:before { - content: "\f2ce"; -} - -i.icon.rss.square:before { - content: "\f143"; -} - -i.icon.rss:before { - content: "\f09e"; -} - -i.icon.step.backward:before { - content: "\f048"; -} - -i.icon.step.forward:before { - content: "\f051"; -} - -i.icon.stop.circle.outline:before { - content: "\f636"; -} - -i.icon.stop.circle:before { - content: "\f28d"; -} - -i.icon.stop:before { - content: "\f04d"; -} - -i.icon.video:before { - content: "\f03d"; -} - -i.icon.volume.down:before { - content: "\f027"; -} - -i.icon.volume.off:before { - content: "\f026"; -} - -i.icon.volume.up:before { - content: "\f028"; -} - -/* Business */ - -i.icon.address.book.outline:before { - content: "\f300"; -} - -i.icon.address.book:before { - content: "\f2b9"; -} - -i.icon.address.card.outline:before { - content: "\f301"; -} - -i.icon.address.card:before { - content: "\f2bb"; -} - -i.icon.archive:before { - content: "\f187"; -} - -i.icon.balance.scale:before { - content: "\f24e"; -} - -i.icon.birthday.cake:before { - content: "\f1fd"; -} - -i.icon.book:before { - content: "\f02d"; -} - -i.icon.briefcase:before { - content: "\f0b1"; -} - -i.icon.building.outline:before { - content: "\f603"; -} - -i.icon.building:before { - content: "\f1ad"; -} - -i.icon.bullhorn:before { - content: "\f0a1"; -} - -i.icon.calculator:before { - content: "\f1ec"; -} - -i.icon.calendar.alternate.outline:before { - content: "\f310"; -} - -i.icon.calendar.alternate:before { - content: "\f073"; -} - -i.icon.calendar.outline:before { - content: "\f315"; -} - -i.icon.calendar:before { - content: "\f133"; -} - -i.icon.certificate:before { - content: "\f0a3"; -} - -i.icon.chart.area:before { - content: "\f1fe"; -} - -i.icon.chart.bar.outline:before { - content: "\f320"; -} - -i.icon.chart.bar:before { - content: "\f080"; -} - -i.icon.chart.pie:before { - content: "\f200"; -} - -i.icon.clipboard.outline:before { - content: "\f324"; -} - -i.icon.clipboard:before { - content: "\f328"; -} - -i.icon.coffee:before { - content: "\f0f4"; -} - -i.icon.columns:before { - content: "\f0db"; -} - -i.icon.compass.outline:before { - content: "\f331"; -} - -i.icon.compass:before { - content: "\f14e"; -} - -i.icon.copy.outline:before { - content: "\f332"; -} - -i.icon.copy:before { - content: "\f0c5"; -} - -i.icon.copyright.outline:before { - content: "\f333"; -} - -i.icon.copyright:before { - content: "\f1f9"; -} - -i.icon.cut:before { - content: "\f0c4"; -} - -i.icon.edit.outline:before { - content: "\f336"; -} - -i.icon.edit:before { - content: "\f044"; -} - -i.icon.envelope.open.outline:before { - content: "\f337"; -} - -i.icon.envelope.open:before { - content: "\f2b6"; -} - -i.icon.envelope.outline:before { - content: "\f338"; -} - -i.icon.envelope.square:before { - content: "\f199"; -} - -i.icon.envelope:before { - content: "\f0e0"; -} - -i.icon.eraser:before { - content: "\f12d"; -} - -i.icon.fax:before { - content: "\f1ac"; -} - -i.icon.file.alternate.outline:before { - content: "\f340"; -} - -i.icon.file.alternate:before { - content: "\f15c"; -} - -i.icon.file.outline:before { - content: "\f350"; -} - -i.icon.file:before { - content: "\f15b"; -} - -i.icon.folder.open.outline:before { - content: "\f352"; -} - -i.icon.folder.open:before { - content: "\f07c"; -} - -i.icon.folder.outline:before { - content: "\f353"; -} - -i.icon.folder:before { - content: "\f07b"; -} - -i.icon.globe:before { - content: "\f0ac"; -} - -i.icon.industry:before { - content: "\f275"; -} - -i.icon.paperclip:before { - content: "\f0c6"; -} - -i.icon.paste:before { - content: "\f0ea"; -} - -i.icon.pen.square:before { - content: "\f14b"; -} - -i.icon.pencil.alternate:before { - content: "\f303"; -} - -i.icon.percent:before { - content: "\f295"; -} - -i.icon.phone.square:before { - content: "\f098"; -} - -i.icon.phone:before { - content: "\f095"; -} - -i.icon.registered.outline:before { - content: "\f629"; -} - -i.icon.registered:before { - content: "\f25d"; -} - -i.icon.save.outline:before { - content: "\f630"; -} - -i.icon.save:before { - content: "\f0c7"; -} - -i.icon.sitemap:before { - content: "\f0e8"; -} - -i.icon.sticky.note.outline:before { - content: "\f635"; -} - -i.icon.sticky.note:before { - content: "\f249"; -} - -i.icon.suitcase:before { - content: "\f0f2"; -} - -i.icon.table:before { - content: "\f0ce"; -} - -i.icon.tag:before { - content: "\f02b"; -} - -i.icon.tags:before { - content: "\f02c"; -} - -i.icon.tasks:before { - content: "\f0ae"; -} - -i.icon.thumbtack:before { - content: "\f08d"; -} - -i.icon.trademark:before { - content: "\f25c"; -} - -/* Chess */ - -i.icon.chess:before { - content: "\f439"; -} - -i.icon.chess.bishop:before { - content: "\f43a"; -} - -i.icon.chess.board:before { - content: "\f43c"; -} - -i.icon.chess.king:before { - content: "\f43f"; -} - -i.icon.chess.knight:before { - content: "\f441"; -} - -i.icon.chess.pawn:before { - content: "\f443"; -} - -i.icon.chess.queen:before { - content: "\f445"; -} - -i.icon.chess.rock:before { - content: "\f447"; -} - -i.icon.square.full:before { - content: "\f45c"; -} - -/* Code */ - -i.icon.barcode:before { - content: "\f02a"; -} - -i.icon.bath:before { - content: "\f2cd"; -} - -i.icon.bug:before { - content: "\f188"; -} - -i.icon.code:before { - content: "\f121"; -} - -i.icon.code.branch:before { - content: "\f126"; -} - -i.icon.file.code.outline:before { - content: "\f343"; -} - -i.icon.file.code:before { - content: "\f1c9"; -} - -i.icon.filter:before { - content: "\f0b0"; -} - -i.icon.fire.extinguisher:before { - content: "\f134"; -} - -i.icon.keyboard.outline:before { - content: "\f377"; -} - -i.icon.keyboard:before { - content: "\f11c"; -} - -i.icon.microchip:before { - content: "\f2db"; -} - -i.icon.qrcode:before { - content: "\f029"; -} - -i.icon.shield.alternate:before { - content: "\f3ed"; -} - -i.icon.terminal:before { - content: "\f120"; -} - -i.icon.user.secret:before { - content: "\f21b"; -} - -i.icon.window.close.outline:before { - content: "\f642"; -} - -i.icon.window.close:before { - content: "\f410"; -} - -i.icon.window.maximize.outline:before { - content: "\f644"; -} - -i.icon.window.maximize:before { - content: "\f2d0"; -} - -i.icon.window.minimize.outline:before { - content: "\f643"; -} - -i.icon.window.minimize:before { - content: "\f2d1"; -} - -i.icon.window.restore.outline:before { - content: "\f416"; -} - -i.icon.window.restore:before { - content: "\f2d2"; -} - -/* Communication */ - -i.icon.at:before { - content: "\f1fa"; -} - -i.icon.bell.outline:before { - content: "\f307"; -} - -i.icon.bell.slash.outline:before { - content: "\f306"; -} - -i.icon.bell.slash:before { - content: "\f1f6"; -} - -i.icon.bell:before { - content: "\f0f3"; -} - -i.icon.comment.alternate.outline:before { - content: "\f604"; -} - -i.icon.comment.alternate:before { - content: "\f27a"; -} - -i.icon.comment.outline:before { - content: "\f329"; -} - -i.icon.comment:before { - content: "\f075"; -} - -i.icon.comments.outline:before { - content: "\f330"; -} - -i.icon.comments:before { - content: "\f086"; -} - -i.icon.inbox:before { - content: "\f01c"; -} - -i.icon.language:before { - content: "\f1ab"; -} - -i.icon.mobile.alternate:before { - content: "\f3cd"; -} - -i.icon.mobile:before { - content: "\f10b"; -} - -i.icon.paper.plane.outline:before { - content: "\f390"; -} - -i.icon.paper.plane:before { - content: "\f1d8"; -} - -i.icon.wifi:before { - content: "\f1eb"; -} - -/* Computers */ - -i.icon.desktop:before { - content: "\f108"; -} - -i.icon.hdd.outline:before { - content: "\f611"; -} - -i.icon.hdd:before { - content: "\f0a0"; -} - -i.icon.laptop:before { - content: "\f109"; -} - -i.icon.plug:before { - content: "\f1e6"; -} - -i.icon.power.off:before { - content: "\f011"; -} - -i.icon.print:before { - content: "\f02f"; -} - -i.icon.server:before { - content: "\f233"; -} - -i.icon.tablet.alternate:before { - content: "\f3fa"; -} - -i.icon.tablet:before { - content: "\f10a"; -} - -i.icon.tv:before { - content: "\f26c"; -} - -/* Currency */ - -i.icon.dollar.sign:before { - content: "\f155"; -} - -i.icon.euro.sign:before { - content: "\f153"; -} - -i.icon.lira.sign:before { - content: "\f195"; -} - -i.icon.money.bill.alternate.outline:before { - content: "\f623"; -} - -i.icon.money.bill.alternate:before { - content: "\f3d1"; -} - -i.icon.pound.sign:before { - content: "\f154"; -} - -i.icon.ruble.sign:before { - content: "\f158"; -} - -i.icon.rupee.sign:before { - content: "\f156"; -} - -i.icon.shekel.sign:before { - content: "\f20b"; -} - -i.icon.won.sign:before { - content: "\f159"; -} - -i.icon.yen.sign:before { - content: "\f157"; -} - -/* Date & Time */ - -i.icon.calendar.check.outline:before { - content: "\f311"; -} - -i.icon.calendar.check:before { - content: "\f274"; -} - -i.icon.calendar.minus.outline:before { - content: "\f312"; -} - -i.icon.calendar.minus:before { - content: "\f272"; -} - -i.icon.calendar.plus.outline:before { - content: "\f313"; -} - -i.icon.calendar.plus:before { - content: "\f271"; -} - -i.icon.calendar.times.outline:before { - content: "\f314"; -} - -i.icon.calendar.times:before { - content: "\f273"; -} - -i.icon.clock.outline:before { - content: "\f325"; -} - -i.icon.clock:before { - content: "\f017"; -} - -i.icon.hourglass.end:before { - content: "\f253"; -} - -i.icon.hourglass.half:before { - content: "\f252"; -} - -i.icon.hourglass.outline:before { - content: "\f614"; -} - -i.icon.hourglass.start:before { - content: "\f251"; -} - -i.icon.hourglass:before { - content: "\f254"; -} - -i.icon.stopwatch:before { - content: "\f2f2"; -} - -/* Design */ - -i.icon.adjust:before { - content: "\f042"; -} - -i.icon.clone.outline:before { - content: "\f326"; -} - -i.icon.clone:before { - content: "\f24d"; -} - -i.icon.crop:before { - content: "\f125"; -} - -i.icon.crosshairs:before { - content: "\f05b"; -} - -i.icon.eye.dropper:before { - content: "\f1fb"; -} - -i.icon.eye.slash.outline:before { - content: "\f339"; -} - -i.icon.eye.slash:before { - content: "\f070"; -} - -i.icon.eye:before { - content: "\f06e"; -} - -i.icon.object.group.outline:before { - content: "\f624"; -} - -i.icon.object.group:before { - content: "\f247"; -} - -i.icon.object.ungroup.outline:before { - content: "\f389"; -} - -i.icon.object.ungroup:before { - content: "\f248"; -} - -i.icon.paint.brush:before { - content: "\f1fc"; -} - -i.icon.tint:before { - content: "\f043"; -} - -/* Editors */ - -i.icon.align.center:before { - content: "\f037"; -} - -i.icon.align.justify:before { - content: "\f039"; -} - -i.icon.align.left:before { - content: "\f036"; -} - -i.icon.align.right:before { - content: "\f038"; -} - -i.icon.bold:before { - content: "\f032"; -} - -i.icon.font:before { - content: "\f031"; -} - -i.icon.heading:before { - content: "\f1dc"; -} - -i.icon.i.cursor:before { - content: "\f246"; -} - -i.icon.indent:before { - content: "\f03c"; -} - -i.icon.italic:before { - content: "\f033"; -} - -i.icon.link:before { - content: "\f0c1"; -} - -i.icon.list.alternate.outline:before { - content: "\f381"; -} - -i.icon.list.alternate:before { - content: "\f022"; -} - -i.icon.ordered.list:before { - content: "\f0cb"; -} - -i.icon.unordered.list:before { - content: "\f0ca"; -} - -i.icon.list:before { - content: "\f03a"; -} - -i.icon.outdent:before { - content: "\f03b"; -} - -i.icon.paragraph:before { - content: "\f1dd"; -} - -i.icon.quote.left:before { - content: "\f10d"; -} - -i.icon.quote.right:before { - content: "\f10e"; -} - -i.icon.strikethrough:before { - content: "\f0cc"; -} - -i.icon.subscript:before { - content: "\f12c"; -} - -i.icon.superscript:before { - content: "\f12b"; -} - -i.icon.th.large:before { - content: "\f009"; -} - -i.icon.th.list:before { - content: "\f00b"; -} - -i.icon.th:before { - content: "\f00a"; -} - -i.icon.trash.alternate.outline:before { - content: "\f640"; -} - -i.icon.trash.alternate:before { - content: "\f2ed"; -} - -i.icon.trash:before { - content: "\f1f8"; -} - -i.icon.underline:before { - content: "\f0cd"; -} - -i.icon.unlink:before { - content: "\f127"; -} - -/* Files */ - -i.icon.file.archive.outline:before { - content: "\f341"; -} - -i.icon.file.archive:before { - content: "\f1c6"; -} - -i.icon.file.excel.outline:before { - content: "\f344"; -} - -i.icon.file.excel:before { - content: "\f1c3"; -} - -i.icon.file.image.outline:before { - content: "\f617"; -} - -i.icon.file.image:before { - content: "\f1c5"; -} - -i.icon.file.pdf.outline:before { - content: "\f346"; -} - -i.icon.file.pdf:before { - content: "\f1c1"; -} - -i.icon.file.powerpoint.outline:before { - content: "\f347"; -} - -i.icon.file.powerpoint:before { - content: "\f1c4"; -} - -i.icon.file.word.outline:before { - content: "\f349"; -} - -i.icon.file.word:before { - content: "\f1c2"; -} - -/* Genders */ - -i.icon.genderless:before { - content: "\f22d"; -} - -i.icon.mars.double:before { - content: "\f227"; -} - -i.icon.mars.stroke.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.stroke.vertical:before { - content: "\f22a"; -} - -i.icon.mars.stroke:before { - content: "\f229"; -} - -i.icon.mars:before { - content: "\f222"; -} - -i.icon.mercury:before { - content: "\f223"; -} - -i.icon.neuter:before { - content: "\f22c"; -} - -i.icon.transgender.alternate:before { - content: "\f225"; -} - -i.icon.transgender:before { - content: "\f224"; -} - -i.icon.venus.double:before { - content: "\f226"; -} - -i.icon.venus.mars:before { - content: "\f228"; -} - -i.icon.venus:before { - content: "\f221"; -} - -/* Hands */ - -i.icon.hand.lizard.outline:before { - content: "\f357"; -} - -i.icon.hand.lizard:before { - content: "\f258"; -} - -i.icon.hand.paper.outline:before { - content: "\f358"; -} - -i.icon.hand.paper:before { - content: "\f256"; -} - -i.icon.hand.peace.outline:before { - content: "\f359"; -} - -i.icon.hand.peace:before { - content: "\f25b"; -} - -i.icon.hand.rock.outline:before { - content: "\f365"; -} - -i.icon.hand.rock:before { - content: "\f255"; -} - -i.icon.hand.scissors.outline:before { - content: "\f366"; -} - -i.icon.hand.scissors:before { - content: "\f257"; -} - -i.icon.hand.spock.outline:before { - content: "\f367"; -} - -i.icon.hand.spock:before { - content: "\f259"; -} - -i.icon.handshake.outline:before { - content: "\f610"; -} - -i.icon.handshake:before { - content: "\f2b5"; -} - -i.icon.thumbs.down.outline:before { - content: "\f406"; -} - -i.icon.thumbs.down:before { - content: "\f165"; -} - -i.icon.thumbs.up.outline:before { - content: "\f638"; -} - -i.icon.thumbs.up:before { - content: "\f164"; -} - -/* Health */ - -i.icon.ambulance:before { - content: "\f0f9"; -} - -i.icon.h.square:before { - content: "\f0fd"; -} - -i.icon.heart.outline:before { - content: "\f612"; -} - -i.icon.heart:before { - content: "\f004"; -} - -i.icon.heartbeat:before { - content: "\f21e"; -} - -i.icon.hospital.outline:before { - content: "\f613"; -} - -i.icon.hospital:before { - content: "\f0f8"; -} - -i.icon.medkit:before { - content: "\f0fa"; -} - -i.icon.plus.square.outline:before { - content: "\f627"; -} - -i.icon.plus.square:before { - content: "\f0fe"; -} - -i.icon.stethoscope:before { - content: "\f0f1"; -} - -i.icon.user.doctor:before { - content: "\f0f0"; -} - -/* Images */ - -i.icon.bolt:before { - content: "\f0e7"; -} - -i.icon.camera.retro:before { - content: "\f083"; -} - -i.icon.camera:before { - content: "\f030"; -} - -i.icon.id.badge.outline:before { - content: "\f615"; -} - -i.icon.id.badge:before { - content: "\f2c1"; -} - -i.icon.id.card.outline:before { - content: "\f616"; -} - -i.icon.id.card:before { - content: "\f2c2"; -} - -i.icon.image.outline:before { - content: "\f617"; -} - -i.icon.image:before { - content: "\f03e"; -} - -i.icon.images.outline:before { - content: "\f376"; -} - -i.icon.images:before { - content: "\f302"; -} - -i.icon.sliders.horizontal:before { - content: "\f1de"; -} - -/* Interfaces */ - -i.icon.ban:before { - content: "\f05e"; -} - -i.icon.bars:before { - content: "\f0c9"; -} - -i.icon.beer:before { - content: "\f0fc"; -} - -i.icon.bullseye:before { - content: "\f140"; -} - -i.icon.check.circle.outline:before { - content: "\f321"; -} - -i.icon.check.circle:before { - content: "\f058"; -} - -i.icon.check.square.outline:before { - content: "\f322"; -} - -i.icon.check.square:before { - content: "\f14a"; -} - -i.icon.check:before { - content: "\f00c"; -} - -i.icon.cloud:before { - content: "\f0c2"; -} - -i.icon.cog:before { - content: "\f013"; -} - -i.icon.cogs:before { - content: "\f085"; -} - -i.icon.database:before { - content: "\f1c0"; -} - -i.icon.dot.circle.outline:before { - content: "\f335"; -} - -i.icon.dot.circle:before { - content: "\f192"; -} - -i.icon.ellipsis.horizontal:before { - content: "\f141"; -} - -i.icon.ellipsis.vertical:before { - content: "\f142"; -} - -i.icon.exclamation.circle:before { - content: "\f06a"; -} - -i.icon.exclamation.triangle:before { - content: "\f071"; -} - -i.icon.exclamation:before { - content: "\f12a"; -} - -i.icon.flag.checkered:before { - content: "\f11e"; -} - -i.icon.flag.outline:before { - content: "\f351"; -} - -i.icon.flag:before { - content: "\f024"; -} - -i.icon.frown.outline:before { - content: "\f354"; -} - -i.icon.frown:before { - content: "\f119"; -} - -i.icon.hashtag:before { - content: "\f292"; -} - -i.icon.home:before { - content: "\f015"; -} - -i.icon.info.circle:before { - content: "\f05a"; -} - -i.icon.info:before { - content: "\f129"; -} - -i.icon.magic:before { - content: "\f0d0"; -} - -i.icon.meh.outline:before { - content: "\f621"; -} - -i.icon.meh:before { - content: "\f11a"; -} - -i.icon.minus.circle:before { - content: "\f056"; -} - -i.icon.minus.square.outline:before { - content: "\f622"; -} - -i.icon.minus.square:before { - content: "\f146"; -} - -i.icon.minus:before { - content: "\f068"; -} - -i.icon.plus.circle:before { - content: "\f055"; -} - -i.icon.plus:before { - content: "\f067"; -} - -i.icon.question:before { - content: "\f128"; -} - -i.icon.search.minus:before { - content: "\f010"; -} - -i.icon.search.plus:before { - content: "\f00e"; -} - -i.icon.search:before { - content: "\f002"; -} - -i.icon.share.alternate.square:before { - content: "\f1e1"; -} - -i.icon.share.alternate:before { - content: "\f1e0"; -} - -i.icon.shield:before { - content: "\f3ed"; -} - -i.icon.signal:before { - content: "\f012"; -} - -i.icon.smile.outline:before { - content: "\f398"; -} - -i.icon.smile:before { - content: "\f118"; -} - -i.icon.star.half.outline:before { - content: "\f401"; -} - -i.icon.star.half:before { - content: "\f089"; -} - -i.icon.star.outline:before { - content: "\f634"; -} - -i.icon.star:before { - content: "\f005"; -} - -i.icon.times.circle.outline:before { - content: "\f639"; -} - -i.icon.times.circle:before { - content: "\f057"; -} - -i.icon.times:before { - content: "\f00d"; -} - -i.icon.toggle.off:before { - content: "\f204"; -} - -i.icon.toggle.on:before { - content: "\f205"; -} - -i.icon.trophy:before { - content: "\f091"; -} - -i.icon.user.circle.outline:before { - content: "\f606"; -} - -i.icon.user.circle:before { - content: "\f2bd"; -} - -i.icon.user.outline:before { - content: "\f641"; -} - -i.icon.user:before { - content: "\f007"; -} - -/* Maps */ - -i.icon.anchor:before { - content: "\f13d"; -} - -i.icon.bed:before { - content: "\f236"; -} - -i.icon.bicycle:before { - content: "\f206"; -} - -i.icon.binoculars:before { - content: "\f1e5"; -} - -i.icon.bomb:before { - content: "\f1e2"; -} - -i.icon.bookmark.outline:before { - content: "\f308"; -} - -i.icon.bookmark:before { - content: "\f02e"; -} - -i.icon.car:before { - content: "\f1b9"; -} - -i.icon.fighter.jet:before { - content: "\f0fb"; -} - -i.icon.fire:before { - content: "\f06d"; -} - -i.icon.flask:before { - content: "\f0c3"; -} - -i.icon.gamepad:before { - content: "\f11b"; -} - -i.icon.gavel:before { - content: "\f0e3"; -} - -i.icon.gift:before { - content: "\f06b"; -} - -i.icon.glass.martini:before { - content: "\f000"; -} - -i.icon.graduation.cap:before { - content: "\f19d"; -} - -i.icon.key:before { - content: "\f084"; -} - -i.icon.leaf:before { - content: "\f06c"; -} - -i.icon.lemon.outline:before { - content: "\f618"; -} - -i.icon.lemon:before { - content: "\f094"; -} - -i.icon.life.ring.outline:before { - content: "\f619"; -} - -i.icon.life.ring:before { - content: "\f1cd"; -} - -i.icon.lightbulb.outline:before { - content: "\f620"; -} - -i.icon.lightbulb:before { - content: "\f0eb"; -} - -i.icon.magnet:before { - content: "\f076"; -} - -i.icon.male:before { - content: "\f183"; -} - -i.icon.map.marker.alternate:before { - content: "\f3c5"; -} - -i.icon.map.marker:before { - content: "\f041"; -} - -i.icon.map.outline:before { - content: "\f382"; -} - -i.icon.map.pin:before { - content: "\f276"; -} - -i.icon.map.signs:before { - content: "\f277"; -} - -i.icon.map:before { - content: "\f279"; -} - -i.icon.motorcycle:before { - content: "\f21c"; -} - -i.icon.newspaper.outline:before { - content: "\f387"; -} - -i.icon.newspaper:before { - content: "\f1ea"; -} - -i.icon.paw:before { - content: "\f1b0"; -} - -i.icon.plane:before { - content: "\f072"; -} - -i.icon.road:before { - content: "\f018"; -} - -i.icon.rocket:before { - content: "\f135"; -} - -i.icon.ship:before { - content: "\f21a"; -} - -i.icon.shopping.bag:before { - content: "\f290"; -} - -i.icon.shopping.basket:before { - content: "\f291"; -} - -i.icon.shopping.cart:before { - content: "\f07a"; -} - -i.icon.shower:before { - content: "\f2cc"; -} - -i.icon.street.view:before { - content: "\f21d"; -} - -i.icon.subway:before { - content: "\f239"; -} - -i.icon.taxi:before { - content: "\f1ba"; -} - -i.icon.ticket.alternate:before { - content: "\f3ff"; -} - -i.icon.train:before { - content: "\f238"; -} - -i.icon.tree:before { - content: "\f1bb"; -} - -i.icon.truck:before { - content: "\f0d1"; -} - -i.icon.umbrella:before { - content: "\f0e9"; -} - -i.icon.university:before { - content: "\f19c"; -} - -i.icon.utensil.spoon:before { - content: "\f2e5"; -} - -i.icon.utensils:before { - content: "\f2e7"; -} - -i.icon.wrench:before { - content: "\f0ad"; -} - -/* Objects */ - -i.icon.bus:before { - content: "\f207"; -} - -i.icon.cube:before { - content: "\f1b2"; -} - -i.icon.cubes:before { - content: "\f1b3"; -} - -i.icon.futbol.outline:before { - content: "\f633"; -} - -i.icon.futbol:before { - content: "\f1e3"; -} - -i.icon.gem.outline:before { - content: "\f356"; -} - -i.icon.gem:before { - content: "\f3a5"; -} - -i.icon.lock.open:before { - content: "\f3c1"; -} - -i.icon.lock:before { - content: "\f023"; -} - -i.icon.moon.outline:before { - content: "\f386"; -} - -i.icon.moon:before { - content: "\f186"; -} - -i.icon.puzzle:before { - content: "\f12e"; -} - -i.icon.snowflake.outline:before { - content: "\f632"; -} - -i.icon.snowflake:before { - content: "\f2dc"; -} - -i.icon.space.shuttle:before { - content: "\f197"; -} - -i.icon.sun.outline:before { - content: "\f637"; -} - -i.icon.sun:before { - content: "\f185"; -} - -i.icon.tachometer.alternate:before { - content: "\f3fd"; -} - -i.icon.unlock.alternate:before { - content: "\f13e"; -} - -i.icon.unlock:before { - content: "\f09c"; -} - -/* Payments & Shopping */ - -i.icon.cart.plus:before { - content: "\f217"; -} - -i.icon.credit.card.outline:before { - content: "\f334"; -} - -i.icon.credit.card:before { - content: "\f09d"; -} - -/* Shapes */ - -i.icon.square.outline:before { - content: "\f400"; -} - -i.icon.square:before { - content: "\f0c8"; -} - -/* Spinners */ - -i.icon.asterisk:before { - content: "\f069"; -} - -i.icon.circle.notch:before { - content: "\f1ce"; -} - -i.icon.spinner:before { - content: "\f110"; -} - -/* Sports */ - -i.icon.baseball.ball:before { - content: "\f433"; -} - -i.icon.basketball.ball:before { - content: "\f434"; -} - -i.icon.bowling.ball:before { - content: "\f436"; -} - -i.icon.football.ball:before { - content: "\f44e"; -} - -i.icon.golf.ball:before { - content: "\f450"; -} - -i.icon.hockey.puck:before { - content: "\f453"; -} - -i.icon.quidditch:before { - content: "\f458"; -} - -i.icon.table.tennis:before { - content: "\f45d"; -} - -i.icon.volleyball.ball:before { - content: "\f45f"; -} - -/* Status */ - -i.icon.battery.empty:before { - content: "\f244"; -} - -i.icon.battery.full:before { - content: "\f240"; -} - -i.icon.battery.half:before { - content: "\f242"; -} - -i.icon.battery.quarter:before { - content: "\f243"; -} - -i.icon.battery.three.quarters:before { - content: "\f241"; -} - -i.icon.thermometer.empty:before { - content: "\f2cb"; -} - -i.icon.thermometer.full:before { - content: "\f2c7"; -} - -i.icon.thermometer.half:before { - content: "\f2c9"; -} - -i.icon.thermometer.quarter:before { - content: "\f2ca"; -} - -i.icon.thermometer.three.quarters:before { - content: "\f2c8"; -} - -/* Users & People */ - -i.icon.child:before { - content: "\f1ae"; -} - -i.icon.female:before { - content: "\f182"; -} - -i.icon.user.circle.outline:before { - content: "\f410"; -} - -i.icon.user.plus:before { - content: "\f234"; -} - -i.icon.user.times:before { - content: "\f235"; -} - -i.icon.users:before { - content: "\f0c0"; -} - -/* Brands */ - -i.icon.\35 00px:before { - content: "\f26e"; -} - -i.icon.accessible.icon:before { - content: "\f368"; -} - -i.icon.accusoft:before { - content: "\f369"; -} - -i.icon.adn:before { - content: "\f170"; -} - -i.icon.adversal:before { - content: "\f36a"; -} - -i.icon.affiliatetheme:before { - content: "\f36b"; -} - -i.icon.algolia:before { - content: "\f36c"; -} - -i.icon.amazon.pay:before { - content: "\f42c"; -} - -i.icon.amazon:before { - content: "\f270"; -} - -i.icon.amilia:before { - content: "\f36d"; -} - -i.icon.android:before { - content: "\f17b"; -} - -i.icon.angellist:before { - content: "\f209"; -} - -i.icon.angrycreative:before { - content: "\f36e"; -} - -i.icon.angular:before { - content: "\f420"; -} - -i.icon.app.store.ios:before { - content: "\f370"; -} - -i.icon.app.store:before { - content: "\f36f"; -} - -i.icon.apper:before { - content: "\f371"; -} - -i.icon.apple.pay:before { - content: "\f609"; -} - -i.icon.apple:before { - content: "\f179"; -} - -i.icon.asymmetrik:before { - content: "\f372"; -} - -i.icon.audible:before { - content: "\f373"; -} - -i.icon.autoprefixer:before { - content: "\f41c"; -} - -i.icon.avianex:before { - content: "\f374"; -} - -i.icon.aviato:before { - content: "\f421"; -} - -i.icon.aws:before { - content: "\f375"; -} - -i.icon.bandcamp:before { - content: "\f2d5"; -} - -i.icon.behance.square:before { - content: "\f1b5"; -} - -i.icon.behance:before { - content: "\f1b4"; -} - -i.icon.bimobject:before { - content: "\f378"; -} - -i.icon.bitbucket:before { - content: "\f171"; -} - -i.icon.bitcoin:before { - content: "\f379"; -} - -i.icon.bity:before { - content: "\f37a"; -} - -i.icon.black.tie:before { - content: "\f27e"; -} - -i.icon.blackberry:before { - content: "\f37b"; -} - -i.icon.blogger.b:before { - content: "\f37d"; -} - -i.icon.blogger:before { - content: "\f37c"; -} - -i.icon.bluetooth.b:before { - content: "\f294"; -} - -i.icon.bluetooth:before { - content: "\f293"; -} - -i.icon.btc:before { - content: "\f15a"; -} - -i.icon.buromobelexperte:before { - content: "\f37f"; -} - -i.icon.buysellads:before { - content: "\f20d"; -} - -i.icon.credit.card.amazon.pay:before { - content: "\f42d"; -} - -i.icon.credit.card.american.express:before { - content: "\f1f3"; -} - -i.icon.credit.card.apple.pay:before { - content: "\f607"; -} - -i.icon.credit.card.diners.club:before { - content: "\f24c"; -} - -i.icon.credit.card.discover:before { - content: "\f1f2"; -} - -i.icon.credit.card.jcb:before { - content: "\f24b"; -} - -i.icon.credit.card.mastercard:before { - content: "\f1f1"; -} - -i.icon.credit.card.paypal:before { - content: "\f1f4"; -} - -i.icon.credit.card.stripe:before { - content: "\f1f5"; -} - -i.icon.credit.card.visa:before { - content: "\f1f0"; -} - -i.icon.centercode:before { - content: "\f380"; -} - -i.icon.chrome:before { - content: "\f268"; -} - -i.icon.cloudscale:before { - content: "\f383"; -} - -i.icon.cloudsmith:before { - content: "\f384"; -} - -i.icon.cloudversify:before { - content: "\f385"; -} - -i.icon.codepen:before { - content: "\f1cb"; -} - -i.icon.codiepie:before { - content: "\f284"; -} - -i.icon.connectdevelop:before { - content: "\f20e"; -} - -i.icon.contao:before { - content: "\f26d"; -} - -i.icon.cpanel:before { - content: "\f388"; -} - -i.icon.creative.commons:before { - content: "\f25e"; -} - -i.icon.css3.alternate:before { - content: "\f38b"; -} - -i.icon.css3:before { - content: "\f13c"; -} - -i.icon.cuttlefish:before { - content: "\f38c"; -} - -i.icon.d.and.d:before { - content: "\f38d"; -} - -i.icon.dashcube:before { - content: "\f210"; -} - -i.icon.delicious:before { - content: "\f1a5"; -} - -i.icon.deploydog:before { - content: "\f38e"; -} - -i.icon.deskpro:before { - content: "\f38f"; -} - -i.icon.deviantart:before { - content: "\f1bd"; -} - -i.icon.digg:before { - content: "\f1a6"; -} - -i.icon.digital.ocean:before { - content: "\f391"; -} - -i.icon.discord:before { - content: "\f392"; -} - -i.icon.discourse:before { - content: "\f393"; -} - -i.icon.dochub:before { - content: "\f394"; -} - -i.icon.docker:before { - content: "\f395"; -} - -i.icon.draft2digital:before { - content: "\f396"; -} - -i.icon.dribbble.square:before { - content: "\f397"; -} - -i.icon.dribbble:before { - content: "\f17d"; -} - -i.icon.dropbox:before { - content: "\f16b"; -} - -i.icon.drupal:before { - content: "\f1a9"; -} - -i.icon.dyalog:before { - content: "\f399"; -} - -i.icon.earlybirds:before { - content: "\f39a"; -} - -i.icon.edge:before { - content: "\f282"; -} - -i.icon.elementor:before { - content: "\f430"; -} - -i.icon.ember:before { - content: "\f423"; -} - -i.icon.empire:before { - content: "\f1d1"; -} - -i.icon.envira:before { - content: "\f299"; -} - -i.icon.erlang:before { - content: "\f39d"; -} - -i.icon.ethereum:before { - content: "\f42e"; -} - -i.icon.etsy:before { - content: "\f2d7"; -} - -i.icon.expeditedssl:before { - content: "\f23e"; -} - -i.icon.facebook.f:before { - content: "\f39e"; -} - -i.icon.facebook.messenger:before { - content: "\f39f"; -} - -i.icon.facebook.square:before { - content: "\f082"; -} - -i.icon.facebook:before { - content: "\f09a"; -} - -i.icon.firefox:before { - content: "\f269"; -} - -i.icon.first.order:before { - content: "\f2b0"; -} - -i.icon.firstdraft:before { - content: "\f3a1"; -} - -i.icon.flickr:before { - content: "\f16e"; -} - -i.icon.flipboard:before { - content: "\f44d"; -} - -i.icon.fly:before { - content: "\f417"; -} - -i.icon.font.awesome.alternate:before { - content: "\f35c"; -} - -i.icon.font.awesome.flag:before { - content: "\f425"; -} - -i.icon.font.awesome:before { - content: "\f2b4"; -} - -i.icon.fonticons.fi:before { - content: "\f3a2"; -} - -i.icon.fonticons:before { - content: "\f280"; -} - -i.icon.fort.awesome.alternate:before { - content: "\f3a3"; -} - -i.icon.fort.awesome:before { - content: "\f286"; -} - -i.icon.forumbee:before { - content: "\f211"; -} - -i.icon.foursquare:before { - content: "\f180"; -} - -i.icon.free.code.camp:before { - content: "\f2c5"; -} - -i.icon.freebsd:before { - content: "\f3a4"; -} - -i.icon.get.pocket:before { - content: "\f265"; -} - -i.icon.gg.circle:before { - content: "\f261"; -} - -i.icon.gg:before { - content: "\f260"; -} - -i.icon.git.square:before { - content: "\f1d2"; -} - -i.icon.git:before { - content: "\f1d3"; -} - -i.icon.github.alternate:before { - content: "\f113"; -} - -i.icon.github.square:before { - content: "\f092"; -} - -i.icon.github:before { - content: "\f09b"; -} - -i.icon.gitkraken:before { - content: "\f3a6"; -} - -i.icon.gitlab:before { - content: "\f296"; -} - -i.icon.gitter:before { - content: "\f426"; -} - -i.icon.glide.g:before { - content: "\f2a6"; -} - -i.icon.glide:before { - content: "\f2a5"; -} - -i.icon.gofore:before { - content: "\f3a7"; -} - -i.icon.goodreads.g:before { - content: "\f3a9"; -} - -i.icon.goodreads:before { - content: "\f3a8"; -} - -i.icon.google.drive:before { - content: "\f3aa"; -} - -i.icon.google.play:before { - content: "\f3ab"; -} - -i.icon.google.plus.g:before { - content: "\f0d5"; -} - -i.icon.google.plus.square:before { - content: "\f0d4"; -} - -i.icon.google.plus:before { - content: "\f2b3"; -} - -i.icon.google.wallet:before { - content: "\f1ee"; -} - -i.icon.google:before { - content: "\f1a0"; -} - -i.icon.gratipay:before { - content: "\f184"; -} - -i.icon.grav:before { - content: "\f2d6"; -} - -i.icon.gripfire:before { - content: "\f3ac"; -} - -i.icon.grunt:before { - content: "\f3ad"; -} - -i.icon.gulp:before { - content: "\f3ae"; -} - -i.icon.hacker.news.square:before { - content: "\f3af"; -} - -i.icon.hacker.news:before { - content: "\f1d4"; -} - -i.icon.hips:before { - content: "\f452"; -} - -i.icon.hire.a.helper:before { - content: "\f3b0"; -} - -i.icon.hooli:before { - content: "\f427"; -} - -i.icon.hotjar:before { - content: "\f3b1"; -} - -i.icon.houzz:before { - content: "\f27c"; -} - -i.icon.html5:before { - content: "\f13b"; -} - -i.icon.hubspot:before { - content: "\f3b2"; -} - -i.icon.imdb:before { - content: "\f2d8"; -} - -i.icon.instagram:before { - content: "\f16d"; -} - -i.icon.internet.explorer:before { - content: "\f26b"; -} - -i.icon.ioxhost:before { - content: "\f208"; -} - -i.icon.itunes.note:before { - content: "\f3b5"; -} - -i.icon.itunes:before { - content: "\f3b4"; -} - -i.icon.jenkins:before { - content: "\f3b6"; -} - -i.icon.joget:before { - content: "\f3b7"; -} - -i.icon.joomla:before { - content: "\f1aa"; -} - -i.icon.js.square:before { - content: "\f3b9"; -} - -i.icon.js:before { - content: "\f3b8"; -} - -i.icon.jsfiddle:before { - content: "\f1cc"; -} - -i.icon.keycdn:before { - content: "\f3ba"; -} - -i.icon.kickstarter.k:before { - content: "\f3bc"; -} - -i.icon.kickstarter:before { - content: "\f3bb"; -} - -i.icon.korvue:before { - content: "\f42f"; -} - -i.icon.laravel:before { - content: "\f3bd"; -} - -i.icon.lastfm.square:before { - content: "\f203"; -} - -i.icon.lastfm:before { - content: "\f202"; -} - -i.icon.leanpub:before { - content: "\f212"; -} - -i.icon.less:before { - content: "\f41d"; -} - -i.icon.line:before { - content: "\f3c0"; -} - -i.icon.linkedin.in:before { - content: "\f0e1"; -} - -i.icon.linkedin:before { - content: "\f08c"; -} - -i.icon.linode:before { - content: "\f2b8"; -} - -i.icon.linux:before { - content: "\f17c"; -} - -i.icon.lyft:before { - content: "\f3c3"; -} - -i.icon.magento:before { - content: "\f3c4"; -} - -i.icon.maxcdn:before { - content: "\f136"; -} - -i.icon.medapps:before { - content: "\f3c6"; -} - -i.icon.medium.m:before { - content: "\f3c7"; -} - -i.icon.medium:before { - content: "\f23a"; -} - -i.icon.medrt:before { - content: "\f3c8"; -} - -i.icon.meetup:before { - content: "\f2e0"; -} - -i.icon.microsoft:before { - content: "\f3ca"; -} - -i.icon.mix:before { - content: "\f3cb"; -} - -i.icon.mixcloud:before { - content: "\f289"; -} - -i.icon.mizuni:before { - content: "\f3cc"; -} - -i.icon.modx:before { - content: "\f285"; -} - -i.icon.monero:before { - content: "\f3d0"; -} - -i.icon.napster:before { - content: "\f3d2"; -} - -i.icon.nintendo.switch:before { - content: "\f418"; -} - -i.icon.node.js:before { - content: "\f3d3"; -} - -i.icon.node:before { - content: "\f419"; -} - -i.icon.npm:before { - content: "\f3d4"; -} - -i.icon.ns8:before { - content: "\f3d5"; -} - -i.icon.nutritionix:before { - content: "\f3d6"; -} - -i.icon.odnoklassniki.square:before { - content: "\f264"; -} - -i.icon.odnoklassniki:before { - content: "\f263"; -} - -i.icon.opencart:before { - content: "\f23d"; -} - -i.icon.openid:before { - content: "\f19b"; -} - -i.icon.opera:before { - content: "\f26a"; -} - -i.icon.optin.monster:before { - content: "\f23c"; -} - -i.icon.osi:before { - content: "\f41a"; -} - -i.icon.page4:before { - content: "\f3d7"; -} - -i.icon.pagelines:before { - content: "\f18c"; -} - -i.icon.palfed:before { - content: "\f3d8"; -} - -i.icon.patreon:before { - content: "\f3d9"; -} - -i.icon.paypal:before { - content: "\f1ed"; -} - -i.icon.periscope:before { - content: "\f3da"; -} - -i.icon.phabricator:before { - content: "\f3db"; -} - -i.icon.phoenix.framework:before { - content: "\f3dc"; -} - -i.icon.php:before { - content: "\f457"; -} - -i.icon.pied.piper.alternate:before { - content: "\f1a8"; -} - -i.icon.pied.piper.pp:before { - content: "\f1a7"; -} - -i.icon.pied.piper:before { - content: "\f2ae"; -} - -i.icon.pinterest.p:before { - content: "\f231"; -} - -i.icon.pinterest.square:before { - content: "\f0d3"; -} - -i.icon.pinterest:before { - content: "\f0d2"; -} - -i.icon.playstation:before { - content: "\f3df"; -} - -i.icon.product.hunt:before { - content: "\f288"; -} - -i.icon.pushed:before { - content: "\f3e1"; -} - -i.icon.python:before { - content: "\f3e2"; -} - -i.icon.qq:before { - content: "\f1d6"; -} - -i.icon.quinscape:before { - content: "\f459"; -} - -i.icon.quora:before { - content: "\f2c4"; -} - -i.icon.ravelry:before { - content: "\f2d9"; -} - -i.icon.react:before { - content: "\f41b"; -} - -i.icon.rebel:before { - content: "\f1d0"; -} - -i.icon.redriver:before { - content: "\f3e3"; -} - -i.icon.reddit.alien:before { - content: "\f281"; -} - -i.icon.reddit.square:before { - content: "\f1a2"; -} - -i.icon.reddit:before { - content: "\f1a1"; -} - -i.icon.rendact:before { - content: "\f3e4"; -} - -i.icon.renren:before { - content: "\f18b"; -} - -i.icon.replyd:before { - content: "\f3e6"; -} - -i.icon.resolving:before { - content: "\f3e7"; -} - -i.icon.rocketchat:before { - content: "\f3e8"; -} - -i.icon.rockrms:before { - content: "\f3e9"; -} - -i.icon.safari:before { - content: "\f267"; -} - -i.icon.sass:before { - content: "\f41e"; -} - -i.icon.schlix:before { - content: "\f3ea"; -} - -i.icon.scribd:before { - content: "\f28a"; -} - -i.icon.searchengin:before { - content: "\f3eb"; -} - -i.icon.sellcast:before { - content: "\f2da"; -} - -i.icon.sellsy:before { - content: "\f213"; -} - -i.icon.servicestack:before { - content: "\f3ec"; -} - -i.icon.shirtsinbulk:before { - content: "\f214"; -} - -i.icon.simplybuilt:before { - content: "\f215"; -} - -i.icon.sistrix:before { - content: "\f3ee"; -} - -i.icon.skyatlas:before { - content: "\f216"; -} - -i.icon.skype:before { - content: "\f17e"; -} - -i.icon.slack.hash:before { - content: "\f3ef"; -} - -i.icon.slack:before { - content: "\f198"; -} - -i.icon.slideshare:before { - content: "\f1e7"; -} - -i.icon.snapchat.ghost:before { - content: "\f2ac"; -} - -i.icon.snapchat.square:before { - content: "\f2ad"; -} - -i.icon.snapchat:before { - content: "\f2ab"; -} - -i.icon.soundcloud:before { - content: "\f1be"; -} - -i.icon.speakap:before { - content: "\f3f3"; -} - -i.icon.spotify:before { - content: "\f1bc"; -} - -i.icon.stack.exchange:before { - content: "\f18d"; -} - -i.icon.stack.overflow:before { - content: "\f16c"; -} - -i.icon.staylinked:before { - content: "\f3f5"; -} - -i.icon.steam.square:before { - content: "\f1b7"; -} - -i.icon.steam.symbol:before { - content: "\f3f6"; -} - -i.icon.steam:before { - content: "\f1b6"; -} - -i.icon.sticker.mule:before { - content: "\f3f7"; -} - -i.icon.strava:before { - content: "\f428"; -} - -i.icon.stripe.s:before { - content: "\f42a"; -} - -i.icon.stripe:before { - content: "\f429"; -} - -i.icon.studiovinari:before { - content: "\f3f8"; -} - -i.icon.stumbleupon.circle:before { - content: "\f1a3"; -} - -i.icon.stumbleupon:before { - content: "\f1a4"; -} - -i.icon.superpowers:before { - content: "\f2dd"; -} - -i.icon.supple:before { - content: "\f3f9"; -} - -i.icon.telegram.plane:before { - content: "\f3fe"; -} - -i.icon.telegram:before { - content: "\f2c6"; -} - -i.icon.tencent.weibo:before { - content: "\f1d5"; -} - -i.icon.themeisle:before { - content: "\f2b2"; -} - -i.icon.trello:before { - content: "\f181"; -} - -i.icon.tripadvisor:before { - content: "\f262"; -} - -i.icon.tumblr.square:before { - content: "\f174"; -} - -i.icon.tumblr:before { - content: "\f173"; -} - -i.icon.twitch:before { - content: "\f1e8"; -} - -i.icon.twitter.square:before { - content: "\f081"; -} - -i.icon.twitter:before { - content: "\f099"; -} - -i.icon.typo3:before { - content: "\f42b"; -} - -i.icon.uber:before { - content: "\f402"; -} - -i.icon.uikit:before { - content: "\f403"; -} - -i.icon.uniregistry:before { - content: "\f404"; -} - -i.icon.untappd:before { - content: "\f405"; -} - -i.icon.usb:before { - content: "\f287"; -} - -i.icon.ussunnah:before { - content: "\f407"; -} - -i.icon.vaadin:before { - content: "\f408"; -} - -i.icon.viacoin:before { - content: "\f237"; -} - -i.icon.viadeo.square:before { - content: "\f2aa"; -} - -i.icon.viadeo:before { - content: "\f2a9"; -} - -i.icon.viber:before { - content: "\f409"; -} - -i.icon.vimeo.square:before { - content: "\f194"; -} - -i.icon.vimeo.v:before { - content: "\f27d"; -} - -i.icon.vimeo:before { - content: "\f40a"; -} - -i.icon.vine:before { - content: "\f1ca"; -} - -i.icon.vk:before { - content: "\f189"; -} - -i.icon.vnv:before { - content: "\f40b"; -} - -i.icon.vuejs:before { - content: "\f41f"; -} - -i.icon.weibo:before { - content: "\f18a"; -} - -i.icon.weixin:before { - content: "\f1d7"; -} - -i.icon.whatsapp.square:before { - content: "\f40c"; -} - -i.icon.whatsapp:before { - content: "\f232"; -} - -i.icon.whmcs:before { - content: "\f40d"; -} - -i.icon.wikipedia.w:before { - content: "\f266"; -} - -i.icon.windows:before { - content: "\f17a"; -} - -i.icon.wordpress.simple:before { - content: "\f411"; -} - -i.icon.wordpress:before { - content: "\f19a"; -} - -i.icon.wpbeginner:before { - content: "\f297"; -} - -i.icon.wpexplorer:before { - content: "\f2de"; -} - -i.icon.wpforms:before { - content: "\f298"; -} - -i.icon.xbox:before { - content: "\f412"; -} - -i.icon.xing.square:before { - content: "\f169"; -} - -i.icon.xing:before { - content: "\f168"; -} - -i.icon.y.combinator:before { - content: "\f23b"; -} - -i.icon.yahoo:before { - content: "\f19e"; -} - -i.icon.yandex.international:before { - content: "\f414"; -} - -i.icon.yandex:before { - content: "\f413"; -} - -i.icon.yelp:before { - content: "\f1e9"; -} - -i.icon.yoast:before { - content: "\f2b1"; -} - -i.icon.youtube.square:before { - content: "\f431"; -} - -i.icon.youtube:before { - content: "\f167"; -} - -/* Aliases */ - -i.icon.add.circle:before { - content: "\f055"; -} - -i.icon.add.square:before { - content: "\f0fe"; -} - -i.icon.add.to.calendar:before { - content: "\f271"; -} - -i.icon.add.to.cart:before { - content: "\f217"; -} - -i.icon.add.user:before { - content: "\f234"; -} - -i.icon.add:before { - content: "\f067"; -} - -i.icon.alarm.mute:before { - content: "\f1f6"; -} - -i.icon.alarm:before { - content: "\f0f3"; -} - -i.icon.ald:before { - content: "\f2a2"; -} - -i.icon.als:before { - content: "\f2a2"; -} - -i.icon.american.express.card:before { - content: "\f1f3"; -} - -i.icon.american.express:before { - content: "\f1f3"; -} - -i.icon.amex:before { - content: "\f1f3"; -} - -i.icon.announcement:before { - content: "\f0a1"; -} - -i.icon.area.chart:before { - content: "\f1fe"; -} - -i.icon.area.graph:before { - content: "\f1fe"; -} - -i.icon.arrow.down.cart:before { - content: "\f218"; -} - -i.icon.asexual:before { - content: "\f22d"; -} - -i.icon.asl.interpreting:before { - content: "\f2a3"; -} - -i.icon.asl:before { - content: "\f2a3"; -} - -i.icon.assistive.listening.devices:before { - content: "\f2a2"; -} - -i.icon.attach:before { - content: "\f0c6"; -} - -i.icon.attention:before { - content: "\f06a"; -} - -i.icon.balance:before { - content: "\f24e"; -} - -i.icon.bar.chart:before { - content: "\f080"; -} - -i.icon.bar.graph:before { - content: "\f080"; -} - -i.icon.bar:before { - content: "\f0fc"; -} - -i.icon.bathtub:before { - content: "\f2cd"; -} - -i.icon.battery.four:before { - content: "\f240"; -} - -i.icon.battery.high:before { - content: "\f241"; -} - -i.icon.battery.low:before { - content: "\f243"; -} - -i.icon.battery.medium:before { - content: "\f242"; -} - -i.icon.battery.one:before { - content: "\f243"; -} - -i.icon.battery.three:before { - content: "\f241"; -} - -i.icon.battery.two:before { - content: "\f242"; -} - -i.icon.battery.zero:before { - content: "\f244"; -} - -i.icon.birthday:before { - content: "\f1fd"; -} - -i.icon.block.layout:before { - content: "\f009"; -} - -i.icon.bluetooth.alternative:before { - content: "\f294"; -} - -i.icon.broken.chain:before { - content: "\f127"; -} - -i.icon.browser:before { - content: "\f022"; -} - -i.icon.call.square:before { - content: "\f098"; -} - -i.icon.call:before { - content: "\f095"; -} - -i.icon.cancel:before { - content: "\f00d"; -} - -i.icon.cart:before { - content: "\f07a"; -} - -i.icon.cc:before { - content: "\f20a"; -} - -i.icon.chain:before { - content: "\f0c1"; -} - -i.icon.chat:before { - content: "\f075"; -} - -i.icon.checked.calendar:before { - content: "\f274"; -} - -i.icon.checkmark:before { - content: "\f00c"; -} - -i.icon.circle.notched:before { - content: "\f1ce"; -} - -i.icon.close:before { - content: "\f00d"; -} - -i.icon.cny:before { - content: "\f157"; -} - -i.icon.cocktail:before { - content: "\f000"; -} - -i.icon.commenting:before { - content: "\f27a"; -} - -i.icon.computer:before { - content: "\f108"; -} - -i.icon.configure:before { - content: "\f0ad"; -} - -i.icon.content:before { - content: "\f0c9"; -} - -i.icon.deafness:before { - content: "\f2a4"; -} - -i.icon.delete.calendar:before { - content: "\f273"; -} - -i.icon.delete:before { - content: "\f00d"; -} - -i.icon.detective:before { - content: "\f21b"; -} - -i.icon.diners.club.card:before { - content: "\f24c"; -} - -i.icon.diners.club:before { - content: "\f24c"; -} - -i.icon.discover.card:before { - content: "\f1f2"; -} - -i.icon.discover:before { - content: "\f1f2"; -} - -i.icon.discussions:before { - content: "\f086"; -} - -i.icon.doctor:before { - content: "\f0f0"; -} - -i.icon.dollar:before { - content: "\f155"; -} - -i.icon.dont:before { - content: "\f05e"; -} - -i.icon.dribble:before { - content: "\f17d"; -} - -i.icon.drivers.license:before { - content: "\f2c2"; -} - -i.icon.dropdown:before { - content: "\f0d7"; -} - -i.icon.eercast:before { - content: "\f2da"; -} - -i.icon.emergency:before { - content: "\f0f9"; -} - -i.icon.envira.gallery:before { - content: "\f299"; -} - -i.icon.erase:before { - content: "\f12d"; -} - -i.icon.eur:before { - content: "\f153"; -} - -i.icon.euro:before { - content: "\f153"; -} - -i.icon.eyedropper:before { - content: "\f1fb"; -} - -i.icon.fa:before { - content: "\f2b4"; -} - -i.icon.factory:before { - content: "\f275"; -} - -i.icon.favorite:before { - content: "\f005"; -} - -i.icon.feed:before { - content: "\f09e"; -} - -i.icon.female.homosexual:before { - content: "\f226"; -} - -i.icon.file.text:before { - content: "\f15c"; -} - -i.icon.find:before { - content: "\f1e5"; -} - -i.icon.first.aid:before { - content: "\f0fa"; -} - -i.icon.five.hundred.pixels:before { - content: "\f26e"; -} - -i.icon.fork:before { - content: "\f126"; -} - -i.icon.game:before { - content: "\f11b"; -} - -i.icon.gay:before { - content: "\f227"; -} - -i.icon.gbp:before { - content: "\f154"; -} - -i.icon.gittip:before { - content: "\f184"; -} - -i.icon.google.plus.circle:before { - content: "\f2b3"; -} - -i.icon.google.plus.official:before { - content: "\f2b3"; -} - -i.icon.grab:before { - content: "\f255"; -} - -i.icon.graduation:before { - content: "\f19d"; -} - -i.icon.grid.layout:before { - content: "\f00a"; -} - -i.icon.group:before { - content: "\f0c0"; -} - -i.icon.h:before { - content: "\f0fd"; -} - -i.icon.hand.victory:before { - content: "\f25b"; -} - -i.icon.handicap:before { - content: "\f193"; -} - -i.icon.hard.of.hearing:before { - content: "\f2a4"; -} - -i.icon.header:before { - content: "\f1dc"; -} - -i.icon.help.circle:before { - content: "\f059"; -} - -i.icon.help:before { - content: "\f128"; -} - -i.icon.heterosexual:before { - content: "\f228"; -} - -i.icon.hide:before { - content: "\f070"; -} - -i.icon.hotel:before { - content: "\f236"; -} - -i.icon.hourglass.four:before { - content: "\f254"; -} - -i.icon.hourglass.full:before { - content: "\f254"; -} - -i.icon.hourglass.one:before { - content: "\f251"; -} - -i.icon.hourglass.three:before { - content: "\f253"; -} - -i.icon.hourglass.two:before { - content: "\f252"; -} - -i.icon.idea:before { - content: "\f0eb"; -} - -i.icon.ils:before { - content: "\f20b"; -} - -i.icon.in.cart:before { - content: "\f218"; -} - -i.icon.inr:before { - content: "\f156"; -} - -i.icon.intergender:before { - content: "\f224"; -} - -i.icon.intersex:before { - content: "\f224"; -} - -i.icon.japan.credit.bureau.card:before { - content: "\f24b"; -} - -i.icon.japan.credit.bureau:before { - content: "\f24b"; -} - -i.icon.jcb:before { - content: "\f24b"; -} - -i.icon.jpy:before { - content: "\f157"; -} - -i.icon.krw:before { - content: "\f159"; -} - -i.icon.lab:before { - content: "\f0c3"; -} - -i.icon.law:before { - content: "\f24e"; -} - -i.icon.legal:before { - content: "\f0e3"; -} - -i.icon.lesbian:before { - content: "\f226"; -} - -i.icon.lightning:before { - content: "\f0e7"; -} - -i.icon.like:before { - content: "\f004"; -} - -i.icon.line.chart:before { - content: "\f201"; -} - -i.icon.line.graph:before { - content: "\f201"; -} - -i.icon.linkedin.square:before { - content: "\f08c"; -} - -i.icon.linkify:before { - content: "\f0c1"; -} - -i.icon.lira:before { - content: "\f195"; -} - -i.icon.list.layout:before { - content: "\f00b"; -} - -i.icon.magnify:before { - content: "\f00e"; -} - -i.icon.mail.forward:before { - content: "\f064"; -} - -i.icon.mail.square:before { - content: "\f199"; -} - -i.icon.mail:before { - content: "\f0e0"; -} - -i.icon.male.homosexual:before { - content: "\f227"; -} - -i.icon.man:before { - content: "\f222"; -} - -i.icon.marker:before { - content: "\f041"; -} - -i.icon.mars.alternate:before { - content: "\f229"; -} - -i.icon.mars.horizontal:before { - content: "\f22b"; -} - -i.icon.mars.vertical:before { - content: "\f22a"; -} - -i.icon.mastercard.card:before { - content: "\f1f1"; -} - -i.icon.mastercard:before { - content: "\f1f1"; -} - -i.icon.maximize:before { - content: "\f0b2"; -} - -i.icon.microsoft.edge:before { - content: "\f282"; -} - -i.icon.military:before { - content: "\f0fb"; -} - -i.icon.minimize:before { - content: "\f066"; -} - -i.icon.ms.edge:before { - content: "\f282"; -} - -i.icon.mute:before { - content: "\f131"; -} - -i.icon.new.pied.piper:before { - content: "\f2ae"; -} - -i.icon.non.binary.transgender:before { - content: "\f223"; -} - -i.icon.numbered.list:before { - content: "\f0cb"; -} - -i.icon.optinmonster:before { - content: "\f23c"; -} - -i.icon.options:before { - content: "\f1de"; -} - -i.icon.other.gender.horizontal:before { - content: "\f22b"; -} - -i.icon.other.gender.vertical:before { - content: "\f22a"; -} - -i.icon.other.gender:before { - content: "\f229"; -} - -i.icon.payment:before { - content: "\f09d"; -} - -i.icon.paypal.card:before { - content: "\f1f4"; -} - -i.icon.pencil.square:before { - content: "\f14b"; -} - -i.icon.photo:before { - content: "\f030"; -} - -i.icon.picture:before { - content: "\f03e"; -} - -i.icon.pie.chart:before { - content: "\f200"; -} - -i.icon.pie.graph:before { - content: "\f200"; -} - -i.icon.pied.piper.hat:before { - content: "\f2ae"; -} - -i.icon.pin:before { - content: "\f08d"; -} - -i.icon.plus.cart:before { - content: "\f217"; -} - -i.icon.pocket:before { - content: "\f265"; -} - -i.icon.point:before { - content: "\f041"; -} - -i.icon.pointing.down:before { - content: "\f0a7"; -} - -i.icon.pointing.left:before { - content: "\f0a5"; -} - -i.icon.pointing.right:before { - content: "\f0a4"; -} - -i.icon.pointing.up:before { - content: "\f0a6"; -} - -i.icon.pound:before { - content: "\f154"; -} - -i.icon.power.cord:before { - content: "\f1e6"; -} - -i.icon.power:before { - content: "\f011"; -} - -i.icon.privacy:before { - content: "\f084"; -} - -i.icon.r.circle:before { - content: "\f25d"; -} - -i.icon.rain:before { - content: "\f0e9"; -} - -i.icon.record:before { - content: "\f03d"; -} - -i.icon.refresh:before { - content: "\f021"; -} - -i.icon.remove.circle:before { - content: "\f057"; -} - -i.icon.remove.from.calendar:before { - content: "\f272"; -} - -i.icon.remove.user:before { - content: "\f235"; -} - -i.icon.remove:before { - content: "\f00d"; -} - -i.icon.repeat:before { - content: "\f01e"; -} - -i.icon.rmb:before { - content: "\f157"; -} - -i.icon.rouble:before { - content: "\f158"; -} - -i.icon.rub:before { - content: "\f158"; -} - -i.icon.ruble:before { - content: "\f158"; -} - -i.icon.rupee:before { - content: "\f156"; -} - -i.icon.s15:before { - content: "\f2cd"; -} - -i.icon.selected.radio:before { - content: "\f192"; -} - -i.icon.send:before { - content: "\f1d8"; -} - -i.icon.setting:before { - content: "\f013"; -} - -i.icon.settings:before { - content: "\f085"; -} - -i.icon.shekel:before { - content: "\f20b"; -} - -i.icon.sheqel:before { - content: "\f20b"; -} - -i.icon.shipping:before { - content: "\f0d1"; -} - -i.icon.shop:before { - content: "\f07a"; -} - -i.icon.shuffle:before { - content: "\f074"; -} - -i.icon.shutdown:before { - content: "\f011"; -} - -i.icon.sidebar:before { - content: "\f0c9"; -} - -i.icon.signing:before { - content: "\f2a7"; -} - -i.icon.signup:before { - content: "\f044"; -} - -i.icon.sliders:before { - content: "\f1de"; -} - -i.icon.soccer:before { - content: "\f1e3"; -} - -i.icon.sort.alphabet.ascending:before { - content: "\f15d"; -} - -i.icon.sort.alphabet.descending:before { - content: "\f15e"; -} - -i.icon.sort.ascending:before { - content: "\f0de"; -} - -i.icon.sort.content.ascending:before { - content: "\f160"; -} - -i.icon.sort.content.descending:before { - content: "\f161"; -} - -i.icon.sort.descending:before { - content: "\f0dd"; -} - -i.icon.sort.numeric.ascending:before { - content: "\f162"; -} - -i.icon.sort.numeric.descending:before { - content: "\f163"; -} - -i.icon.sound:before { - content: "\f025"; -} - -i.icon.spy:before { - content: "\f21b"; -} - -i.icon.stripe.card:before { - content: "\f1f5"; -} - -i.icon.student:before { - content: "\f19d"; -} - -i.icon.talk:before { - content: "\f27a"; -} - -i.icon.target:before { - content: "\f140"; -} - -i.icon.teletype:before { - content: "\f1e4"; -} - -i.icon.television:before { - content: "\f26c"; -} - -i.icon.text.cursor:before { - content: "\f246"; -} - -i.icon.text.telephone:before { - content: "\f1e4"; -} - -i.icon.theme.isle:before { - content: "\f2b2"; -} - -i.icon.theme:before { - content: "\f043"; -} - -i.icon.thermometer:before { - content: "\f2c7"; -} - -i.icon.thumb.tack:before { - content: "\f08d"; -} - -i.icon.time:before { - content: "\f017"; -} - -i.icon.tm:before { - content: "\f25c"; -} - -i.icon.toggle.down:before { - content: "\f150"; -} - -i.icon.toggle.left:before { - content: "\f191"; -} - -i.icon.toggle.right:before { - content: "\f152"; -} - -i.icon.toggle.up:before { - content: "\f151"; -} - -i.icon.translate:before { - content: "\f1ab"; -} - -i.icon.travel:before { - content: "\f0b1"; -} - -i.icon.treatment:before { - content: "\f0f1"; -} - -i.icon.triangle.down:before { - content: "\f0d7"; -} - -i.icon.triangle.left:before { - content: "\f0d9"; -} - -i.icon.triangle.right:before { - content: "\f0da"; -} - -i.icon.triangle.up:before { - content: "\f0d8"; -} - -i.icon.try:before { - content: "\f195"; -} - -i.icon.unhide:before { - content: "\f06e"; -} - -i.icon.unlinkify:before { - content: "\f127"; -} - -i.icon.unmute:before { - content: "\f130"; -} - -i.icon.usd:before { - content: "\f155"; -} - -i.icon.user.cancel:before { - content: "\f235"; -} - -i.icon.user.close:before { - content: "\f235"; -} - -i.icon.user.delete:before { - content: "\f235"; -} - -i.icon.user.x:before { - content: "\f235"; -} - -i.icon.vcard:before { - content: "\f2bb"; -} - -i.icon.video.camera:before { - content: "\f03d"; -} - -i.icon.video.play:before { - content: "\f144"; -} - -i.icon.visa.card:before { - content: "\f1f0"; -} - -i.icon.visa:before { - content: "\f1f0"; -} - -i.icon.volume.control.phone:before { - content: "\f2a0"; -} - -i.icon.wait:before { - content: "\f017"; -} - -i.icon.warning.circle:before { - content: "\f06a"; -} - -i.icon.warning.sign:before { - content: "\f071"; -} - -i.icon.warning:before { - content: "\f12a"; -} - -i.icon.wechat:before { - content: "\f1d7"; -} - -i.icon.wi-fi:before { - content: "\f1eb"; -} - -i.icon.wikipedia:before { - content: "\f266"; -} - -i.icon.winner:before { - content: "\f091"; -} - -i.icon.wizard:before { - content: "\f0d0"; -} - -i.icon.woman:before { - content: "\f221"; -} - -i.icon.won:before { - content: "\f159"; -} - -i.icon.wordpress.beginner:before { - content: "\f297"; -} - -i.icon.wordpress.forms:before { - content: "\f298"; -} - -i.icon.world:before { - content: "\f0ac"; -} - -i.icon.write.square:before { - content: "\f14b"; -} - -i.icon.x:before { - content: "\f00d"; -} - -i.icon.yc:before { - content: "\f23b"; -} - -i.icon.ycombinator:before { - content: "\f23b"; -} - -i.icon.yen:before { - content: "\f157"; -} - -i.icon.zip:before { - content: "\f187"; -} - -i.icon.zoom.in:before { - content: "\f00e"; -} - -i.icon.zoom.out:before { - content: "\f010"; -} - -i.icon.zoom:before { - content: "\f00e"; -} - -/* - Icons which where removed in FontAwesome 5 - (Added the classes but pointed them to another icon which matches or is similar for compatibility reasons) -*/ - -i.icon.bitbucket.square:before { - content: "\f171"; -} - -i.icon.checkmark.box:before { - content: "\f14a"; -} - -i.icon.circle.thin:before { - content: "\f111"; -} - -i.icon.cloud.download:before { - content: "\f381"; -} - -i.icon.cloud.upload:before { - content: "\f382"; -} - -i.icon.compose:before { - content: "\f303"; -} - -i.icon.conversation:before { - content: "\f086"; -} - -i.icon.credit.card.alternative:before { - content: "\f09d"; -} - -i.icon.currency:before { - content: "\f3d1"; -} - -i.icon.dashboard:before { - content: "\f3fd"; -} - -i.icon.diamond:before { - content: "\f3a5"; -} - -i.icon.disk.outline:before { - content: "\f369"; -} - -i.icon.disk:before { - content: "\f0a0"; -} - -i.icon.exchange:before { - content: "\f362"; -} - -i.icon.external.share:before { - content: "\f14d"; -} - -i.icon.external.square:before { - content: "\f360"; -} - -i.icon.external:before { - content: "\f35d"; -} - -i.icon.facebook.official:before { - content: "\f082"; -} - -i.icon.food:before { - content: "\f2e7"; -} - -i.icon.heart.empty:before { - content: "\f004"; -} - -i.icon.hourglass.zero:before { - content: "\f253"; -} - -i.icon.level.down:before { - content: "\f3be"; -} - -i.icon.level.up:before { - content: "\f3bf"; -} - -i.icon.log.out:before { - content: "\f2f5"; -} - -i.icon.meanpath:before { - content: "\f0c8"; -} - -i.icon.money:before { - content: "\f3d1"; -} - -i.icon.move:before { - content: "\f0b2"; -} - -i.icon.pencil:before { - content: "\f303"; -} - -i.icon.protect:before { - content: "\f023"; -} - -i.icon.radio:before { - content: "\f192"; -} - -i.icon.remove.bookmark:before { - content: "\f02e"; -} - -i.icon.resize.horizontal:before { - content: "\f337"; -} - -i.icon.resize.vertical:before { - content: "\f338"; -} - -i.icon.sign.in:before { - content: "\f2f6"; -} - -i.icon.sign.out:before { - content: "\f2f5"; -} - -i.icon.spoon:before { - content: "\f2e5"; -} - -i.icon.star.empty:before { - content: "\f089"; -} - -i.icon.star.half.empty:before { - content: "\f089"; -} - -i.icon.star.half.full:before { - content: "\f089"; -} - -i.icon.ticket:before { - content: "\f3ff"; -} - -i.icon.times.rectangle:before { - content: "\f410"; -} - -i.icon.write:before { - content: "\f303"; -} - -i.icon.youtube.play:before { - content: "\f167"; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Image -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Image -*******************************/ - -.ui.image { - position: relative; - display: inline-block; - vertical-align: middle; - max-width: 100%; - background-color: transparent; -} - -img.ui.image { - display: block; -} - -.ui.image svg, -.ui.image img { - display: block; - max-width: 100%; - height: auto; -} - -/******************************* - States -*******************************/ - -.ui.hidden.images, -.ui.hidden.image { - display: none; -} - -.ui.hidden.transition.images, -.ui.hidden.transition.image { - display: block; - visibility: hidden; -} - -.ui.images > .hidden.transition { - display: inline-block; - visibility: hidden; -} - -.ui.disabled.images, -.ui.disabled.image { - cursor: default; - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Inline ----------------*/ - -.ui.inline.image, -.ui.inline.image svg, -.ui.inline.image img { - display: inline-block; -} - -/*------------------ - Vertical Aligned --------------------*/ - -.ui.top.aligned.images .image, -.ui.top.aligned.image, -.ui.top.aligned.image svg, -.ui.top.aligned.image img { - display: inline-block; - vertical-align: top; -} - -.ui.middle.aligned.images .image, -.ui.middle.aligned.image, -.ui.middle.aligned.image svg, -.ui.middle.aligned.image img { - display: inline-block; - vertical-align: middle; -} - -.ui.bottom.aligned.images .image, -.ui.bottom.aligned.image, -.ui.bottom.aligned.image svg, -.ui.bottom.aligned.image img { - display: inline-block; - vertical-align: bottom; -} - -/*-------------- - Rounded ----------------*/ - -.ui.rounded.images .image, -.ui.rounded.image, -.ui.rounded.images .image > *, -.ui.rounded.image > * { - border-radius: 0.3125em; -} - -/*-------------- - Bordered ----------------*/ - -.ui.bordered.images .image, -.ui.bordered.images img, -.ui.bordered.images svg, -.ui.bordered.image img, -.ui.bordered.image svg, -img.ui.bordered.image { - border: 1px solid rgba(0, 0, 0, 0.1); -} - -/*-------------- - Circular ----------------*/ - -.ui.circular.images, -.ui.circular.image { - overflow: hidden; -} - -.ui.circular.images .image, -.ui.circular.image, -.ui.circular.images .image > *, -.ui.circular.image > * { - border-radius: 500rem; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.images, -.ui.fluid.image, -.ui.fluid.images img, -.ui.fluid.images svg, -.ui.fluid.image svg, -.ui.fluid.image img { - display: block; - width: 100%; - height: auto; -} - -/*-------------- - Avatar ----------------*/ - -.ui.avatar.images .image, -.ui.avatar.images img, -.ui.avatar.images svg, -.ui.avatar.image img, -.ui.avatar.image svg, -.ui.avatar.image { - margin-right: 0.25em; - display: inline-block; - width: 2em; - height: 2em; - border-radius: 500rem; -} - -/*------------------- - Spaced ---------------------*/ - -.ui.spaced.image { - display: inline-block !important; - margin-left: 0.5em; - margin-right: 0.5em; -} - -.ui[class*="left spaced"].image { - margin-left: 0.5em; - margin-right: 0em; -} - -.ui[class*="right spaced"].image { - margin-left: 0em; - margin-right: 0.5em; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.image, -.ui.floated.images { - float: left; - margin-right: 1em; - margin-bottom: 1em; -} - -.ui.right.floated.images, -.ui.right.floated.image { - float: right; - margin-right: 0em; - margin-bottom: 1em; - margin-left: 1em; -} - -.ui.floated.images:last-child, -.ui.floated.image:last-child { - margin-bottom: 0em; -} - -.ui.centered.images, -.ui.centered.image { - margin-left: auto; - margin-right: auto; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.images .image, -.ui.mini.images img, -.ui.mini.images svg, -.ui.mini.image { - width: 35px; - height: auto; - font-size: 0.78571429rem; -} - -.ui.tiny.images .image, -.ui.tiny.images img, -.ui.tiny.images svg, -.ui.tiny.image { - width: 80px; - height: auto; - font-size: 0.85714286rem; -} - -.ui.small.images .image, -.ui.small.images img, -.ui.small.images svg, -.ui.small.image { - width: 150px; - height: auto; - font-size: 0.92857143rem; -} - -.ui.medium.images .image, -.ui.medium.images img, -.ui.medium.images svg, -.ui.medium.image { - width: 300px; - height: auto; - font-size: 1rem; -} - -.ui.large.images .image, -.ui.large.images img, -.ui.large.images svg, -.ui.large.image { - width: 450px; - height: auto; - font-size: 1.14285714rem; -} - -.ui.big.images .image, -.ui.big.images img, -.ui.big.images svg, -.ui.big.image { - width: 600px; - height: auto; - font-size: 1.28571429rem; -} - -.ui.huge.images .image, -.ui.huge.images img, -.ui.huge.images svg, -.ui.huge.image { - width: 800px; - height: auto; - font-size: 1.42857143rem; -} - -.ui.massive.images .image, -.ui.massive.images img, -.ui.massive.images svg, -.ui.massive.image { - width: 960px; - height: auto; - font-size: 1.71428571rem; -} - -/******************************* - Groups -*******************************/ - -.ui.images { - font-size: 0em; - margin: 0em -0.25rem 0rem; -} - -.ui.images .image, -.ui.images img, -.ui.images svg { - display: inline-block; - margin: 0em 0.25rem 0.5rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Input -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------------- - Inputs ----------------------*/ - -.ui.input { - position: relative; - font-weight: normal; - font-style: normal; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - color: rgba(0, 0, 0, 0.87); -} - -.ui.input > input { - margin: 0em; - max-width: 100%; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - text-align: left; - line-height: 1.21428571em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - padding: 0.67857143em 1em; - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); - border-radius: 0.28571429rem; - -webkit-transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: box-shadow 0.1s ease, border-color 0.1s ease; - transition: box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - -webkit-box-shadow: none; - box-shadow: none; -} - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ - -.ui.input > input::-webkit-input-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -.ui.input > input::-moz-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -.ui.input > input:-ms-input-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -/******************************* - States -*******************************/ - -/*-------------------- - Disabled ----------------------*/ - -.ui.disabled.input, -.ui.input:not(.disabled) input[disabled] { - opacity: 0.45; -} - -.ui.disabled.input > input, -.ui.input:not(.disabled) input[disabled] { - pointer-events: none; -} - -/*-------------------- - Active ----------------------*/ - -.ui.input > input:active, -.ui.input.down input { - border-color: rgba(0, 0, 0, 0.3); - background: #FAFAFA; - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.loading.input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.loading.input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/*-------------------- - Focus ----------------------*/ - -.ui.input.focus > input, -.ui.input > input:focus { - border-color: #85B7D9; - background: #FFFFFF; - color: rgba(0, 0, 0, 0.8); - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.input.focus > input::-webkit-input-placeholder, -.ui.input > input:focus::-webkit-input-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -.ui.input.focus > input::-moz-placeholder, -.ui.input > input:focus::-moz-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -.ui.input.focus > input:-ms-input-placeholder, -.ui.input > input:focus:-ms-input-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -/*-------------------- - Error ----------------------*/ - -.ui.input.error > input { - background-color: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Error Placeholder */ - -.ui.input.error > input::-webkit-input-placeholder { - color: #e7bdbc; -} - -.ui.input.error > input::-moz-placeholder { - color: #e7bdbc; -} - -.ui.input.error > input:-ms-input-placeholder { - color: #e7bdbc !important; -} - -/* Focused Error Placeholder */ - -.ui.input.error > input:focus::-webkit-input-placeholder { - color: #da9796; -} - -.ui.input.error > input:focus::-moz-placeholder { - color: #da9796; -} - -.ui.input.error > input:focus:-ms-input-placeholder { - color: #da9796 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Transparent ----------------------*/ - -.ui.transparent.input > input { - border-color: transparent !important; - background-color: transparent !important; - padding: 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-radius: 0px !important; -} - -/* Transparent Icon */ - -.ui.transparent.icon.input > i.icon { - width: 1.1em; -} - -.ui.transparent.icon.input > input { - padding-left: 0em !important; - padding-right: 2em !important; -} - -.ui.transparent[class*="left icon"].input > input { - padding-left: 2em !important; - padding-right: 0em !important; -} - -/* Transparent Inverted */ - -.ui.transparent.inverted.input { - color: #FFFFFF; -} - -.ui.transparent.inverted.input > input { - color: inherit; -} - -.ui.transparent.inverted.input > input::-webkit-input-placeholder { - color: rgba(255, 255, 255, 0.5); -} - -.ui.transparent.inverted.input > input::-moz-placeholder { - color: rgba(255, 255, 255, 0.5); -} - -.ui.transparent.inverted.input > input:-ms-input-placeholder { - color: rgba(255, 255, 255, 0.5); -} - -/*-------------------- - Icon ----------------------*/ - -.ui.icon.input > i.icon { - cursor: default; - position: absolute; - line-height: 1; - text-align: center; - top: 0px; - right: 0px; - margin: 0em; - height: 100%; - width: 2.67142857em; - opacity: 0.5; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -webkit-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; -} - -.ui.icon.input > i.icon:not(.link) { - pointer-events: none; -} - -.ui.icon.input > input { - padding-right: 2.67142857em !important; -} - -.ui.icon.input > i.icon:before, -.ui.icon.input > i.icon:after { - left: 0; - position: absolute; - text-align: center; - top: 50%; - width: 100%; - margin-top: -0.5em; -} - -.ui.icon.input > i.link.icon { - cursor: pointer; -} - -.ui.icon.input > i.circular.icon { - top: 0.35em; - right: 0.5em; -} - -/* Left Icon Input */ - -.ui[class*="left icon"].input > i.icon { - right: auto; - left: 1px; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui[class*="left icon"].input > i.circular.icon { - right: auto; - left: 0.5em; -} - -.ui[class*="left icon"].input > input { - padding-left: 2.67142857em !important; - padding-right: 1em !important; -} - -/* Focus */ - -.ui.icon.input > input:focus ~ i.icon { - opacity: 1; -} - -/*-------------------- - Labeled ----------------------*/ - -/* Adjacent Label */ - -.ui.labeled.input > .label { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - margin: 0; - font-size: 1em; -} - -.ui.labeled.input > .label:not(.corner) { - padding-top: 0.78571429em; - padding-bottom: 0.78571429em; -} - -/* Regular Label on Left */ - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; - border-left-color: transparent; -} - -.ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus { - border-left-color: #85B7D9; -} - -/* Regular Label on Right */ - -.ui[class*="right labeled"].input > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui[class*="right labeled"].input > input + .label { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} - -.ui[class*="right labeled"].input > input:focus { - border-right-color: #85B7D9 !important; -} - -/* Corner Label */ - -.ui.labeled.input .corner.label { - top: 1px; - right: 1px; - font-size: 0.64285714em; - border-radius: 0em 0.28571429rem 0em 0em; -} - -/* Spacing with corner label */ - -.ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input { - padding-right: 2.5em !important; -} - -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input { - padding-right: 3.25em !important; -} - -.ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon { - margin-right: 1.25em; -} - -/* Left Labeled */ - -.ui[class*="left corner labeled"].labeled.input > input { - padding-left: 2.5em !important; -} - -.ui[class*="left corner labeled"].icon.input > input { - padding-left: 3.25em !important; -} - -.ui[class*="left corner labeled"].icon.input > .icon { - margin-left: 1.25em; -} - -/* Corner Label Position */ - -.ui.input > .ui.corner.label { - top: 1px; - right: 1px; -} - -.ui.input > .ui.left.corner.label { - right: auto; - left: 1px; -} - -/*-------------------- - Action ----------------------*/ - -.ui.action.input > .button, -.ui.action.input > .buttons { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; -} - -.ui.action.input > .button, -.ui.action.input > .buttons > .button { - padding-top: 0.78571429em; - padding-bottom: 0.78571429em; - margin: 0; -} - -/* Button on Right */ - -.ui.action.input:not([class*="left action"]) > input { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; - border-right-color: transparent !important; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child), -.ui.action.input:not([class*="left action"]) > .button:not(:first-child), -.ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button { - border-radius: 0px; -} - -.ui.action.input:not([class*="left action"]) > .dropdown:last-child, -.ui.action.input:not([class*="left action"]) > .button:last-child, -.ui.action.input:not([class*="left action"]) > .buttons:last-child > .button { - border-radius: 0px 0.28571429rem 0.28571429rem 0px; -} - -/* Input Focus */ - -.ui.action.input:not([class*="left action"]) > input:focus { - border-right-color: #85B7D9 !important; -} - -/* Button on Left */ - -.ui[class*="left action"].input > input { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; - border-left-color: transparent !important; -} - -.ui[class*="left action"].input > .dropdown, -.ui[class*="left action"].input > .button, -.ui[class*="left action"].input > .buttons > .button { - border-radius: 0px; -} - -.ui[class*="left action"].input > .dropdown:first-child, -.ui[class*="left action"].input > .button:first-child, -.ui[class*="left action"].input > .buttons:first-child > .button { - border-radius: 0.28571429rem 0px 0px 0.28571429rem; -} - -/* Input Focus */ - -.ui[class*="left action"].input > input:focus { - border-left-color: #85B7D9 !important; -} - -/*-------------------- - Inverted ----------------------*/ - -/* Standard */ - -.ui.inverted.input > input { - border: none; -} - -/*-------------------- - Fluid ----------------------*/ - -.ui.fluid.input { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -.ui.fluid.input > input { - width: 0px !important; -} - -/*-------------------- - Size ----------------------*/ - -.ui.mini.input { - font-size: 0.78571429em; -} - -.ui.small.input { - font-size: 0.92857143em; -} - -.ui.input { - font-size: 1em; -} - -.ui.large.input { - font-size: 1.14285714em; -} - -.ui.big.input { - font-size: 1.28571429em; -} - -.ui.huge.input { - font-size: 1.42857143em; -} - -.ui.massive.input { - font-size: 1.71428571em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Label -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Label -*******************************/ - -.ui.label { - display: inline-block; - line-height: 1; - vertical-align: baseline; - margin: 0em 0.14285714em; - background-color: #E8E8E8; - background-image: none; - padding: 0.5833em 0.833em; - color: rgba(0, 0, 0, 0.6); - text-transform: none; - font-weight: bold; - border: 0px solid transparent; - border-radius: 0.28571429rem; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -.ui.label:first-child { - margin-left: 0em; -} - -.ui.label:last-child { - margin-right: 0em; -} - -/* Link */ - -a.ui.label { - cursor: pointer; -} - -/* Inside Link */ - -.ui.label > a { - cursor: pointer; - color: inherit; - opacity: 0.5; - -webkit-transition: 0.1s opacity ease; - transition: 0.1s opacity ease; -} - -.ui.label > a:hover { - opacity: 1; -} - -/* Image */ - -.ui.label > img { - width: auto !important; - vertical-align: middle; - height: 2.1666em !important; -} - -/* Icon */ - -.ui.label > .icon { - width: auto; - margin: 0em 0.75em 0em 0em; -} - -/* Detail */ - -.ui.label > .detail { - display: inline-block; - vertical-align: top; - font-weight: bold; - margin-left: 1em; - opacity: 0.8; -} - -.ui.label > .detail .icon { - margin: 0em 0.25em 0em 0em; -} - -/* Removable label */ - -.ui.label > .close.icon, -.ui.label > .delete.icon { - cursor: pointer; - margin-right: 0em; - margin-left: 0.5em; - font-size: 0.92857143em; - opacity: 0.5; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -.ui.label > .delete.icon:hover { - opacity: 1; -} - -/*------------------- - Group ---------------------*/ - -.ui.labels > .label { - margin: 0em 0.5em 0.5em 0em; -} - -/*------------------- - Coupling ---------------------*/ - -.ui.header > .ui.label { - margin-top: -0.29165em; -} - -/* Remove border radius on attached segment */ - -.ui.attached.segment > .ui.top.left.attached.label, -.ui.bottom.attached.segment > .ui.top.left.attached.label { - border-top-left-radius: 0; -} - -.ui.attached.segment > .ui.top.right.attached.label, -.ui.bottom.attached.segment > .ui.top.right.attached.label { - border-top-right-radius: 0; -} - -.ui.top.attached.segment > .ui.bottom.left.attached.label { - border-bottom-left-radius: 0; -} - -.ui.top.attached.segment > .ui.bottom.right.attached.label { - border-bottom-right-radius: 0; -} - -/* Padding on next content after a label */ - -.ui.top.attached.label:first-child + :not(.attached), -.ui.top.attached.label + [class*="right floated"] + * { - margin-top: 2rem !important; -} - -.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) { - margin-top: 0em; - margin-bottom: 2rem !important; -} - -/******************************* - Types -*******************************/ - -.ui.image.label { - width: auto !important; - margin-top: 0em; - margin-bottom: 0em; - max-width: 9999px; - vertical-align: baseline; - text-transform: none; - background: #E8E8E8; - padding: 0.5833em 0.833em 0.5833em 0.5em; - border-radius: 0.28571429rem; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.image.label img { - display: inline-block; - vertical-align: top; - height: 2.1666em; - margin: -0.5833em 0.5em -0.5833em -0.5em; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui.image.label .detail { - background: rgba(0, 0, 0, 0.1); - margin: -0.5833em -0.833em -0.5833em 0.5em; - padding: 0.5833em 0.833em; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -/*------------------- - Tag ---------------------*/ - -.ui.tag.labels .label, -.ui.tag.label { - margin-left: 1em; - position: relative; - padding-left: 1.5em; - padding-right: 1.5em; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - -webkit-transition: none; - transition: none; -} - -.ui.tag.labels .label:before, -.ui.tag.label:before { - position: absolute; - -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg); - transform: translateY(-50%) translateX(50%) rotate(-45deg); - top: 50%; - right: 100%; - content: ''; - background-color: inherit; - background-image: none; - width: 1.56em; - height: 1.56em; - -webkit-transition: none; - transition: none; -} - -.ui.tag.labels .label:after, -.ui.tag.label:after { - position: absolute; - content: ''; - top: 50%; - left: -0.25em; - margin-top: -0.25em; - background-color: #FFFFFF !important; - width: 0.5em; - height: 0.5em; - -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); - box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3); - border-radius: 500rem; -} - -/*------------------- - Corner Label ---------------------*/ - -.ui.corner.label { - position: absolute; - top: 0em; - right: 0em; - margin: 0em; - padding: 0em; - text-align: center; - border-color: #E8E8E8; - width: 4em; - height: 4em; - z-index: 1; - -webkit-transition: border-color 0.1s ease; - transition: border-color 0.1s ease; -} - -/* Icon Label */ - -.ui.corner.label { - background-color: transparent !important; -} - -.ui.corner.label:after { - position: absolute; - content: ""; - right: 0em; - top: 0em; - z-index: -1; - width: 0em; - height: 0em; - background-color: transparent !important; - border-top: 0em solid transparent; - border-right: 4em solid transparent; - border-bottom: 4em solid transparent; - border-left: 0em solid transparent; - border-right-color: inherit; - -webkit-transition: border-color 0.1s ease; - transition: border-color 0.1s ease; -} - -.ui.corner.label .icon { - cursor: default; - position: relative; - top: 0.64285714em; - left: 0.78571429em; - font-size: 1.14285714em; - margin: 0em; -} - -/* Left Corner */ - -.ui.left.corner.label, -.ui.left.corner.label:after { - right: auto; - left: 0em; -} - -.ui.left.corner.label:after { - border-top: 4em solid transparent; - border-right: 4em solid transparent; - border-bottom: 0em solid transparent; - border-left: 0em solid transparent; - border-top-color: inherit; -} - -.ui.left.corner.label .icon { - left: -0.78571429em; -} - -/* Segment */ - -.ui.segment > .ui.corner.label { - top: -1px; - right: -1px; -} - -.ui.segment > .ui.left.corner.label { - right: auto; - left: -1px; -} - -/*------------------- - Ribbon ---------------------*/ - -.ui.ribbon.label { - position: relative; - margin: 0em; - min-width: -webkit-max-content; - min-width: -moz-max-content; - min-width: max-content; - border-radius: 0em 0.28571429rem 0.28571429rem 0em; - border-color: rgba(0, 0, 0, 0.15); -} - -.ui.ribbon.label:after { - position: absolute; - content: ''; - top: 100%; - left: 0%; - background-color: transparent !important; - border-style: solid; - border-width: 0em 1.2em 1.2em 0em; - border-color: transparent; - border-right-color: inherit; - width: 0em; - height: 0em; -} - -/* Positioning */ - -.ui.ribbon.label { - left: calc( -1rem - 1.2em ); - margin-right: -1.2em; - padding-left: calc( 1rem + 1.2em ); - padding-right: 1.2em; -} - -.ui[class*="right ribbon"].label { - left: calc(100% + 1rem + 1.2em ); - padding-left: 1.2em; - padding-right: calc( 1rem + 1.2em ); -} - -/* Right Ribbon */ - -.ui[class*="right ribbon"].label { - text-align: left; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -.ui[class*="right ribbon"].label:after { - left: auto; - right: 0%; - border-style: solid; - border-width: 1.2em 1.2em 0em 0em; - border-color: transparent; - border-top-color: inherit; -} - -/* Inside Table */ - -.ui.image > .ribbon.label, -.ui.card .image > .ribbon.label { - position: absolute; - top: 1rem; -} - -.ui.card .image > .ui.ribbon.label, -.ui.image > .ui.ribbon.label { - left: calc( 0.05rem - 1.2em ); -} - -.ui.card .image > .ui[class*="right ribbon"].label, -.ui.image > .ui[class*="right ribbon"].label { - left: calc(100% + -0.05rem + 1.2em ); - padding-left: 0.833em; -} - -/* Inside Table */ - -.ui.table td > .ui.ribbon.label { - left: calc( -0.78571429em - 1.2em ); -} - -.ui.table td > .ui[class*="right ribbon"].label { - left: calc(100% + 0.78571429em + 1.2em ); - padding-left: 0.833em; -} - -/*------------------- - Attached ---------------------*/ - -.ui[class*="top attached"].label, -.ui.attached.label { - width: 100%; - position: absolute; - margin: 0em; - top: 0em; - left: 0em; - padding: 0.75em 1em; - border-radius: 0.21428571rem 0.21428571rem 0em 0em; -} - -.ui[class*="bottom attached"].label { - top: auto; - bottom: 0em; - border-radius: 0em 0em 0.21428571rem 0.21428571rem; -} - -.ui[class*="top left attached"].label { - width: auto; - margin-top: 0em !important; - border-radius: 0.21428571rem 0em 0.28571429rem 0em; -} - -.ui[class*="top right attached"].label { - width: auto; - left: auto; - right: 0em; - border-radius: 0em 0.21428571rem 0em 0.28571429rem; -} - -.ui[class*="bottom left attached"].label { - width: auto; - top: auto; - bottom: 0em; - border-radius: 0em 0.28571429rem 0em 0.21428571rem; -} - -.ui[class*="bottom right attached"].label { - top: auto; - bottom: 0em; - left: auto; - right: 0em; - width: auto; - border-radius: 0.28571429rem 0em 0.21428571rem 0em; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.label.disabled { - opacity: 0.5; -} - -/*------------------- - Hover ---------------------*/ - -a.ui.labels .label:hover, -a.ui.label:hover { - background-color: #E0E0E0; - border-color: #E0E0E0; - background-image: none; - color: rgba(0, 0, 0, 0.8); -} - -.ui.labels a.label:hover:before, -a.ui.label:hover:before { - color: rgba(0, 0, 0, 0.8); -} - -/*------------------- - Active ---------------------*/ - -.ui.active.label { - background-color: #D0D0D0; - border-color: #D0D0D0; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -.ui.active.label:before { - background-color: #D0D0D0; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -/*------------------- - Active Hover ---------------------*/ - -a.ui.labels .active.label:hover, -a.ui.active.label:hover { - background-color: #C8C8C8; - border-color: #C8C8C8; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -.ui.labels a.active.label:ActiveHover:before, -a.ui.active.label:ActiveHover:before { - background-color: #C8C8C8; - background-image: none; - color: rgba(0, 0, 0, 0.95); -} - -/*------------------- - Visible ---------------------*/ - -.ui.labels.visible .label, -.ui.label.visible:not(.dropdown) { - display: inline-block !important; -} - -/*------------------- - Hidden ---------------------*/ - -.ui.labels.hidden .label, -.ui.label.hidden { - display: none !important; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Colors ---------------------*/ - -/*--- Red ---*/ - -.ui.red.labels .label, -.ui.red.label { - background-color: #DB2828 !important; - border-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.red.labels .label:hover, -a.ui.red.label:hover { - background-color: #d01919 !important; - border-color: #d01919 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.red.corner.label, -.ui.red.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.red.ribbon.label { - border-color: #b21e1e !important; -} - -/* Basic */ - -.ui.basic.red.label { - background-color: #FFFFFF !important; - color: #DB2828 !important; - border-color: #DB2828 !important; -} - -.ui.basic.red.labels a.label:hover, -a.ui.basic.red.label:hover { - background-color: #FFFFFF !important; - color: #d01919 !important; - border-color: #d01919 !important; -} - -/*--- Orange ---*/ - -.ui.orange.labels .label, -.ui.orange.label { - background-color: #F2711C !important; - border-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.orange.labels .label:hover, -a.ui.orange.label:hover { - background-color: #f26202 !important; - border-color: #f26202 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.orange.corner.label, -.ui.orange.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.orange.ribbon.label { - border-color: #cf590c !important; -} - -/* Basic */ - -.ui.basic.orange.label { - background-color: #FFFFFF !important; - color: #F2711C !important; - border-color: #F2711C !important; -} - -.ui.basic.orange.labels a.label:hover, -a.ui.basic.orange.label:hover { - background-color: #FFFFFF !important; - color: #f26202 !important; - border-color: #f26202 !important; -} - -/*--- Yellow ---*/ - -.ui.yellow.labels .label, -.ui.yellow.label { - background-color: #FBBD08 !important; - border-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.yellow.labels .label:hover, -a.ui.yellow.label:hover { - background-color: #eaae00 !important; - border-color: #eaae00 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.yellow.corner.label, -.ui.yellow.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.yellow.ribbon.label { - border-color: #cd9903 !important; -} - -/* Basic */ - -.ui.basic.yellow.label { - background-color: #FFFFFF !important; - color: #FBBD08 !important; - border-color: #FBBD08 !important; -} - -.ui.basic.yellow.labels a.label:hover, -a.ui.basic.yellow.label:hover { - background-color: #FFFFFF !important; - color: #eaae00 !important; - border-color: #eaae00 !important; -} - -/*--- Olive ---*/ - -.ui.olive.labels .label, -.ui.olive.label { - background-color: #B5CC18 !important; - border-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.olive.labels .label:hover, -a.ui.olive.label:hover { - background-color: #a7bd0d !important; - border-color: #a7bd0d !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.olive.corner.label, -.ui.olive.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.olive.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.olive.label { - background-color: #FFFFFF !important; - color: #B5CC18 !important; - border-color: #B5CC18 !important; -} - -.ui.basic.olive.labels a.label:hover, -a.ui.basic.olive.label:hover { - background-color: #FFFFFF !important; - color: #a7bd0d !important; - border-color: #a7bd0d !important; -} - -/*--- Green ---*/ - -.ui.green.labels .label, -.ui.green.label { - background-color: #21BA45 !important; - border-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.green.labels .label:hover, -a.ui.green.label:hover { - background-color: #16ab39 !important; - border-color: #16ab39 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.green.corner.label, -.ui.green.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.green.ribbon.label { - border-color: #198f35 !important; -} - -/* Basic */ - -.ui.basic.green.label { - background-color: #FFFFFF !important; - color: #21BA45 !important; - border-color: #21BA45 !important; -} - -.ui.basic.green.labels a.label:hover, -a.ui.basic.green.label:hover { - background-color: #FFFFFF !important; - color: #16ab39 !important; - border-color: #16ab39 !important; -} - -/*--- Teal ---*/ - -.ui.teal.labels .label, -.ui.teal.label { - background-color: #00B5AD !important; - border-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.teal.labels .label:hover, -a.ui.teal.label:hover { - background-color: #009c95 !important; - border-color: #009c95 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.teal.corner.label, -.ui.teal.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.teal.ribbon.label { - border-color: #00827c !important; -} - -/* Basic */ - -.ui.basic.teal.label { - background-color: #FFFFFF !important; - color: #00B5AD !important; - border-color: #00B5AD !important; -} - -.ui.basic.teal.labels a.label:hover, -a.ui.basic.teal.label:hover { - background-color: #FFFFFF !important; - color: #009c95 !important; - border-color: #009c95 !important; -} - -/*--- Blue ---*/ - -.ui.blue.labels .label, -.ui.blue.label { - background-color: #2185D0 !important; - border-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.blue.labels .label:hover, -a.ui.blue.label:hover { - background-color: #1678c2 !important; - border-color: #1678c2 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.blue.corner.label, -.ui.blue.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.blue.ribbon.label { - border-color: #1a69a4 !important; -} - -/* Basic */ - -.ui.basic.blue.label { - background-color: #FFFFFF !important; - color: #2185D0 !important; - border-color: #2185D0 !important; -} - -.ui.basic.blue.labels a.label:hover, -a.ui.basic.blue.label:hover { - background-color: #FFFFFF !important; - color: #1678c2 !important; - border-color: #1678c2 !important; -} - -/*--- Violet ---*/ - -.ui.violet.labels .label, -.ui.violet.label { - background-color: #6435C9 !important; - border-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.violet.labels .label:hover, -a.ui.violet.label:hover { - background-color: #5829bb !important; - border-color: #5829bb !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.violet.corner.label, -.ui.violet.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.violet.ribbon.label { - border-color: #502aa1 !important; -} - -/* Basic */ - -.ui.basic.violet.label { - background-color: #FFFFFF !important; - color: #6435C9 !important; - border-color: #6435C9 !important; -} - -.ui.basic.violet.labels a.label:hover, -a.ui.basic.violet.label:hover { - background-color: #FFFFFF !important; - color: #5829bb !important; - border-color: #5829bb !important; -} - -/*--- Purple ---*/ - -.ui.purple.labels .label, -.ui.purple.label { - background-color: #A333C8 !important; - border-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.purple.labels .label:hover, -a.ui.purple.label:hover { - background-color: #9627ba !important; - border-color: #9627ba !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.purple.corner.label, -.ui.purple.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.purple.ribbon.label { - border-color: #82299f !important; -} - -/* Basic */ - -.ui.basic.purple.label { - background-color: #FFFFFF !important; - color: #A333C8 !important; - border-color: #A333C8 !important; -} - -.ui.basic.purple.labels a.label:hover, -a.ui.basic.purple.label:hover { - background-color: #FFFFFF !important; - color: #9627ba !important; - border-color: #9627ba !important; -} - -/*--- Pink ---*/ - -.ui.pink.labels .label, -.ui.pink.label { - background-color: #E03997 !important; - border-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.pink.labels .label:hover, -a.ui.pink.label:hover { - background-color: #e61a8d !important; - border-color: #e61a8d !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.pink.corner.label, -.ui.pink.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.pink.ribbon.label { - border-color: #c71f7e !important; -} - -/* Basic */ - -.ui.basic.pink.label { - background-color: #FFFFFF !important; - color: #E03997 !important; - border-color: #E03997 !important; -} - -.ui.basic.pink.labels a.label:hover, -a.ui.basic.pink.label:hover { - background-color: #FFFFFF !important; - color: #e61a8d !important; - border-color: #e61a8d !important; -} - -/*--- Brown ---*/ - -.ui.brown.labels .label, -.ui.brown.label { - background-color: #A5673F !important; - border-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.brown.labels .label:hover, -a.ui.brown.label:hover { - background-color: #975b33 !important; - border-color: #975b33 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.brown.corner.label, -.ui.brown.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.brown.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.brown.label { - background-color: #FFFFFF !important; - color: #A5673F !important; - border-color: #A5673F !important; -} - -.ui.basic.brown.labels a.label:hover, -a.ui.basic.brown.label:hover { - background-color: #FFFFFF !important; - color: #975b33 !important; - border-color: #975b33 !important; -} - -/*--- Grey ---*/ - -.ui.grey.labels .label, -.ui.grey.label { - background-color: #767676 !important; - border-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.grey.labels .label:hover, -a.ui.grey.label:hover { - background-color: #838383 !important; - border-color: #838383 !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.grey.corner.label, -.ui.grey.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.grey.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.grey.label { - background-color: #FFFFFF !important; - color: #767676 !important; - border-color: #767676 !important; -} - -.ui.basic.grey.labels a.label:hover, -a.ui.basic.grey.label:hover { - background-color: #FFFFFF !important; - color: #838383 !important; - border-color: #838383 !important; -} - -/*--- Black ---*/ - -.ui.black.labels .label, -.ui.black.label { - background-color: #1B1C1D !important; - border-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/* Link */ - -.ui.black.labels .label:hover, -a.ui.black.label:hover { - background-color: #27292a !important; - border-color: #27292a !important; - color: #FFFFFF !important; -} - -/* Corner */ - -.ui.black.corner.label, -.ui.black.corner.label:hover { - background-color: transparent !important; -} - -/* Ribbon */ - -.ui.black.ribbon.label { - border-color: #805031 !important; -} - -/* Basic */ - -.ui.basic.black.label { - background-color: #FFFFFF !important; - color: #1B1C1D !important; - border-color: #1B1C1D !important; -} - -.ui.basic.black.labels a.label:hover, -a.ui.basic.black.label:hover { - background-color: #FFFFFF !important; - color: #27292a !important; - border-color: #27292a !important; -} - -/*------------------- - Basic ---------------------*/ - -.ui.basic.label { - background: none #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Link */ - -a.ui.basic.label:hover { - text-decoration: none; - background: none #FFFFFF; - color: #1e70bf; - -webkit-box-shadow: 1px solid rgba(34, 36, 38, 0.15); - box-shadow: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Pointing */ - -.ui.basic.pointing.label:before { - border-color: inherit; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.label.fluid, -.ui.fluid.labels > .label { - width: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.labels .label, -.ui.inverted.label { - color: rgba(255, 255, 255, 0.9) !important; -} - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.labels .label, -.ui.horizontal.label { - margin: 0em 0.5em 0em 0em; - padding: 0.4em 0.833em; - min-width: 3em; - text-align: center; -} - -/*------------------- - Circular ---------------------*/ - -.ui.circular.labels .label, -.ui.circular.label { - min-width: 2em; - min-height: 2em; - padding: 0.5em !important; - line-height: 1em; - text-align: center; - border-radius: 500rem; -} - -.ui.empty.circular.labels .label, -.ui.empty.circular.label { - min-width: 0em; - min-height: 0em; - overflow: hidden; - width: 0.5em; - height: 0.5em; - vertical-align: baseline; -} - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.label { - position: relative; -} - -.ui.attached.pointing.label { - position: absolute; -} - -.ui.pointing.label:before { - background-color: inherit; - background-image: inherit; - border-width: none; - border-style: solid; - border-color: inherit; -} - -/* Arrow */ - -.ui.pointing.label:before { - position: absolute; - content: ''; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - background-image: none; - z-index: 2; - width: 0.6666em; - height: 0.6666em; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -/*--- Above ---*/ - -.ui.pointing.label, -.ui[class*="pointing above"].label { - margin-top: 1em; -} - -.ui.pointing.label:before, -.ui[class*="pointing above"].label:before { - border-width: 1px 0px 0px 1px; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 0%; - left: 50%; -} - -/*--- Below ---*/ - -.ui[class*="bottom pointing"].label, -.ui[class*="pointing below"].label { - margin-top: 0em; - margin-bottom: 1em; -} - -.ui[class*="bottom pointing"].label:before, -.ui[class*="pointing below"].label:before { - border-width: 0px 1px 1px 0px; - top: auto; - right: auto; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - top: 100%; - left: 50%; -} - -/*--- Left ---*/ - -.ui[class*="left pointing"].label { - margin-top: 0em; - margin-left: 0.6666em; -} - -.ui[class*="left pointing"].label:before { - border-width: 0px 0px 1px 1px; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/*--- Right ---*/ - -.ui[class*="right pointing"].label { - margin-top: 0em; - margin-right: 0.6666em; -} - -.ui[class*="right pointing"].label:before { - border-width: 1px 1px 0px 0px; - -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg); - transform: translateX(50%) translateY(-50%) rotate(45deg); - top: 50%; - right: 0%; - bottom: auto; - left: auto; -} - -/* Basic Pointing */ - -/*--- Above ---*/ - -.ui.basic.pointing.label:before, -.ui.basic[class*="pointing above"].label:before { - margin-top: -1px; -} - -/*--- Below ---*/ - -.ui.basic[class*="bottom pointing"].label:before, -.ui.basic[class*="pointing below"].label:before { - bottom: auto; - top: 100%; - margin-top: 1px; -} - -/*--- Left ---*/ - -.ui.basic[class*="left pointing"].label:before { - top: 50%; - left: -1px; -} - -/*--- Right ---*/ - -.ui.basic[class*="right pointing"].label:before { - top: 50%; - right: -1px; -} - -/*------------------ - Floating Label --------------------*/ - -.ui.floating.label { - position: absolute; - z-index: 100; - top: -1em; - left: 100%; - margin: 0em 0em 0em -1.5em !important; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.labels .label, -.ui.mini.label { - font-size: 0.64285714rem; -} - -.ui.tiny.labels .label, -.ui.tiny.label { - font-size: 0.71428571rem; -} - -.ui.small.labels .label, -.ui.small.label { - font-size: 0.78571429rem; -} - -.ui.labels .label, -.ui.label { - font-size: 0.85714286rem; -} - -.ui.large.labels .label, -.ui.large.label { - font-size: 1rem; -} - -.ui.big.labels .label, -.ui.big.label { - font-size: 1.28571429rem; -} - -.ui.huge.labels .label, -.ui.huge.label { - font-size: 1.42857143rem; -} - -.ui.massive.labels .label, -.ui.massive.label { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - List -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - List -*******************************/ - -ul.ui.list, -ol.ui.list, -.ui.list { - list-style-type: none; - margin: 1em 0em; - padding: 0em 0em; -} - -ul.ui.list:first-child, -ol.ui.list:first-child, -.ui.list:first-child { - margin-top: 0em; - padding-top: 0em; -} - -ul.ui.list:last-child, -ol.ui.list:last-child, -.ui.list:last-child { - margin-bottom: 0em; - padding-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* List Item */ - -ul.ui.list li, -ol.ui.list li, -.ui.list > .item, -.ui.list .list > .item { - display: list-item; - table-layout: fixed; - list-style-type: none; - list-style-position: outside; - padding: 0.21428571em 0em; - line-height: 1.14285714em; -} - -ul.ui.list > li:first-child:after, -ol.ui.list > li:first-child:after, -.ui.list > .list > .item, -.ui.list > .item:after { - content: ''; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -ul.ui.list li:first-child, -ol.ui.list li:first-child, -.ui.list .list > .item:first-child, -.ui.list > .item:first-child { - padding-top: 0em; -} - -ul.ui.list li:last-child, -ol.ui.list li:last-child, -.ui.list .list > .item:last-child, -.ui.list > .item:last-child { - padding-bottom: 0em; -} - -/* Child List */ - -ul.ui.list ul, -ol.ui.list ol, -.ui.list .list { - clear: both; - margin: 0em; - padding: 0.75em 0em 0.25em 0.5em; -} - -/* Child Item */ - -ul.ui.list ul li, -ol.ui.list ol li, -.ui.list .list > .item { - padding: 0.14285714em 0em; - line-height: inherit; -} - -/* Icon */ - -.ui.list .list > .item > i.icon, -.ui.list > .item > i.icon { - display: table-cell; - margin: 0em; - padding-top: 0em; - padding-right: 0.28571429em; - vertical-align: top; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.list .list > .item > i.icon:only-child, -.ui.list > .item > i.icon:only-child { - display: inline-block; - vertical-align: top; -} - -/* Image */ - -.ui.list .list > .item > .image, -.ui.list > .item > .image { - display: table-cell; - background-color: transparent; - margin: 0em; - vertical-align: top; -} - -.ui.list .list > .item > .image:not(:only-child):not(img), -.ui.list > .item > .image:not(:only-child):not(img) { - padding-right: 0.5em; -} - -.ui.list .list > .item > .image img, -.ui.list > .item > .image img { - vertical-align: top; -} - -.ui.list .list > .item > img.image, -.ui.list .list > .item > .image:only-child, -.ui.list > .item > img.image, -.ui.list > .item > .image:only-child { - display: inline-block; -} - -/* Content */ - -.ui.list .list > .item > .content, -.ui.list > .item > .content { - line-height: 1.14285714em; -} - -.ui.list .list > .item > .image + .content, -.ui.list .list > .item > .icon + .content, -.ui.list > .item > .image + .content, -.ui.list > .item > .icon + .content { - display: table-cell; - padding: 0em 0em 0em 0.5em; - vertical-align: top; -} - -.ui.list .list > .item > img.image + .content, -.ui.list > .item > img.image + .content { - display: inline-block; -} - -.ui.list .list > .item > .content > .list, -.ui.list > .item > .content > .list { - margin-left: 0em; - padding-left: 0em; -} - -/* Header */ - -.ui.list .list > .item .header, -.ui.list > .item .header { - display: block; - margin: 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - color: rgba(0, 0, 0, 0.87); -} - -/* Description */ - -.ui.list .list > .item .description, -.ui.list > .item .description { - display: block; - color: rgba(0, 0, 0, 0.7); -} - -/* Child Link */ - -.ui.list > .item a, -.ui.list .list > .item a { - cursor: pointer; -} - -/* Linking Item */ - -.ui.list .list > a.item, -.ui.list > a.item { - cursor: pointer; - color: #4183C4; -} - -.ui.list .list > a.item:hover, -.ui.list > a.item:hover { - color: #1e70bf; -} - -/* Linked Item Icons */ - -.ui.list .list > a.item i.icon, -.ui.list > a.item i.icon { - color: rgba(0, 0, 0, 0.4); -} - -/* Header Link */ - -.ui.list .list > .item a.header, -.ui.list > .item a.header { - cursor: pointer; - color: #4183C4 !important; -} - -.ui.list .list > .item a.header:hover, -.ui.list > .item a.header:hover { - color: #1e70bf !important; -} - -/* Floated Content */ - -.ui[class*="left floated"].list { - float: left; -} - -.ui[class*="right floated"].list { - float: right; -} - -.ui.list .list > .item [class*="left floated"], -.ui.list > .item [class*="left floated"] { - float: left; - margin: 0em 1em 0em 0em; -} - -.ui.list .list > .item [class*="right floated"], -.ui.list > .item [class*="right floated"] { - float: right; - margin: 0em 0em 0em 1em; -} - -/******************************* - Coupling -*******************************/ - -.ui.menu .ui.list > .item, -.ui.menu .ui.list .list > .item { - display: list-item; - table-layout: fixed; - background-color: transparent; - list-style-type: none; - list-style-position: outside; - padding: 0.21428571em 0em; - line-height: 1.14285714em; -} - -.ui.menu .ui.list .list > .item:before, -.ui.menu .ui.list > .item:before { - border: none; - background: none; -} - -.ui.menu .ui.list .list > .item:first-child, -.ui.menu .ui.list > .item:first-child { - padding-top: 0em; -} - -.ui.menu .ui.list .list > .item:last-child, -.ui.menu .ui.list > .item:last-child { - padding-bottom: 0em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Horizontal ---------------------*/ - -.ui.horizontal.list { - display: inline-block; - font-size: 0em; -} - -.ui.horizontal.list > .item { - display: inline-block; - margin-left: 1em; - font-size: 1rem; -} - -.ui.horizontal.list:not(.celled) > .item:first-child { - margin-left: 0em !important; - padding-left: 0em !important; -} - -.ui.horizontal.list .list { - padding-left: 0em; - padding-bottom: 0em; -} - -.ui.horizontal.list > .item > .image, -.ui.horizontal.list .list > .item > .image, -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list .list > .item > .icon, -.ui.horizontal.list > .item > .content, -.ui.horizontal.list .list > .item > .content { - vertical-align: middle; -} - -/* Padding on all elements */ - -.ui.horizontal.list > .item:first-child, -.ui.horizontal.list > .item:last-child { - padding-top: 0.21428571em; - padding-bottom: 0.21428571em; -} - -/* Horizontal List */ - -.ui.horizontal.list > .item > i.icon { - margin: 0em; - padding: 0em 0.25em 0em 0em; -} - -.ui.horizontal.list > .item > .icon, -.ui.horizontal.list > .item > .icon + .content { - float: none; - display: inline-block; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -.ui.list .list > .disabled.item, -.ui.list > .disabled.item { - pointer-events: none; - color: rgba(40, 40, 40, 0.3) !important; -} - -.ui.inverted.list .list > .disabled.item, -.ui.inverted.list > .disabled.item { - color: rgba(225, 225, 225, 0.3) !important; -} - -/*------------------- - Hover ---------------------*/ - -.ui.list .list > a.item:hover .icon, -.ui.list > a.item:hover .icon { - color: rgba(0, 0, 0, 0.87); -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.list .list > a.item > .icon, -.ui.inverted.list > a.item > .icon { - color: rgba(255, 255, 255, 0.7); -} - -.ui.inverted.list .list > .item .header, -.ui.inverted.list > .item .header { - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.list .list > .item .description, -.ui.inverted.list > .item .description { - color: rgba(255, 255, 255, 0.7); -} - -/* Item Link */ - -.ui.inverted.list .list > a.item, -.ui.inverted.list > a.item { - cursor: pointer; - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.list .list > a.item:hover, -.ui.inverted.list > a.item:hover { - color: #1e70bf; -} - -/* Linking Content */ - -.ui.inverted.list .item a:not(.ui) { - color: rgba(255, 255, 255, 0.9) !important; -} - -.ui.inverted.list .item a:not(.ui):hover { - color: #1e70bf !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui.list[class*="top aligned"] .image, -.ui.list[class*="top aligned"] .content, -.ui.list [class*="top aligned"] { - vertical-align: top !important; -} - -.ui.list[class*="middle aligned"] .image, -.ui.list[class*="middle aligned"] .content, -.ui.list [class*="middle aligned"] { - vertical-align: middle !important; -} - -.ui.list[class*="bottom aligned"] .image, -.ui.list[class*="bottom aligned"] .content, -.ui.list [class*="bottom aligned"] { - vertical-align: bottom !important; -} - -/*------------------- - Link ---------------------*/ - -.ui.link.list .item, -.ui.link.list a.item, -.ui.link.list .item a:not(.ui) { - color: rgba(0, 0, 0, 0.4); - -webkit-transition: 0.1s color ease; - transition: 0.1s color ease; -} - -.ui.link.list.list a.item:hover, -.ui.link.list.list .item a:not(.ui):hover { - color: rgba(0, 0, 0, 0.8); -} - -.ui.link.list.list a.item:active, -.ui.link.list.list .item a:not(.ui):active { - color: rgba(0, 0, 0, 0.9); -} - -.ui.link.list.list .active.item, -.ui.link.list.list .active.item a:not(.ui) { - color: rgba(0, 0, 0, 0.95); -} - -/* Inverted */ - -.ui.inverted.link.list .item, -.ui.inverted.link.list a.item, -.ui.inverted.link.list .item a:not(.ui) { - color: rgba(255, 255, 255, 0.5); -} - -.ui.inverted.link.list.list a.item:hover, -.ui.inverted.link.list.list .item a:not(.ui):hover { - color: #ffffff; -} - -.ui.inverted.link.list.list a.item:active, -.ui.inverted.link.list.list .item a:not(.ui):active { - color: #ffffff; -} - -.ui.inverted.link.list.list a.active.item, -.ui.inverted.link.list.list .active.item a:not(.ui) { - color: #ffffff; -} - -/*------------------- - Selection ---------------------*/ - -.ui.selection.list .list > .item, -.ui.selection.list > .item { - cursor: pointer; - background: transparent; - padding: 0.5em 0.5em; - margin: 0em; - color: rgba(0, 0, 0, 0.4); - border-radius: 0.5em; - -webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; - transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease; -} - -.ui.selection.list .list > .item:last-child, -.ui.selection.list > .item:last-child { - margin-bottom: 0em; -} - -.ui.selection.list.list > .item:hover, -.ui.selection.list > .item:hover { - background: rgba(0, 0, 0, 0.03); - color: rgba(0, 0, 0, 0.8); -} - -.ui.selection.list .list > .item:active, -.ui.selection.list > .item:active { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.9); -} - -.ui.selection.list .list > .item.active, -.ui.selection.list > .item.active { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/* Inverted */ - -.ui.inverted.selection.list > .item, -.ui.inverted.selection.list > .item { - background: transparent; - color: rgba(255, 255, 255, 0.5); -} - -.ui.inverted.selection.list > .item:hover, -.ui.inverted.selection.list > .item:hover { - background: rgba(255, 255, 255, 0.02); - color: #ffffff; -} - -.ui.inverted.selection.list > .item:active, -.ui.inverted.selection.list > .item:active { - background: rgba(255, 255, 255, 0.08); - color: #ffffff; -} - -.ui.inverted.selection.list > .item.active, -.ui.inverted.selection.list > .item.active { - background: rgba(255, 255, 255, 0.08); - color: #ffffff; -} - -/* Celled / Divided Selection List */ - -.ui.celled.selection.list .list > .item, -.ui.divided.selection.list .list > .item, -.ui.celled.selection.list > .item, -.ui.divided.selection.list > .item { - border-radius: 0em; -} - -/*------------------- - Animated ---------------------*/ - -.ui.animated.list > .item { - -webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; - transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s; -} - -.ui.animated.list:not(.horizontal) > .item:hover { - padding-left: 1em; -} - -/*------------------- - Fitted ---------------------*/ - -.ui.fitted.list:not(.selection) .list > .item, -.ui.fitted.list:not(.selection) > .item { - padding-left: 0em; - padding-right: 0em; -} - -.ui.fitted.selection.list .list > .item, -.ui.fitted.selection.list > .item { - margin-left: -0.5em; - margin-right: -0.5em; -} - -/*------------------- - Bulleted ---------------------*/ - -ul.ui.list, -.ui.bulleted.list { - margin-left: 1.25rem; -} - -ul.ui.list li, -.ui.bulleted.list .list > .item, -.ui.bulleted.list > .item { - position: relative; -} - -ul.ui.list li:before, -.ui.bulleted.list .list > .item:before, -.ui.bulleted.list > .item:before { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - pointer-events: none; - position: absolute; - top: auto; - left: auto; - font-weight: normal; - margin-left: -1.25rem; - content: '•'; - opacity: 1; - color: inherit; - vertical-align: top; -} - -ul.ui.list li:before, -.ui.bulleted.list .list > a.item:before, -.ui.bulleted.list > a.item:before { - color: rgba(0, 0, 0, 0.87); -} - -ul.ui.list ul, -.ui.bulleted.list .list { - padding-left: 1.25rem; -} - -/* Horizontal Bulleted */ - -ul.ui.horizontal.bulleted.list, -.ui.horizontal.bulleted.list { - margin-left: 0em; -} - -ul.ui.horizontal.bulleted.list li, -.ui.horizontal.bulleted.list > .item { - margin-left: 1.75rem; -} - -ul.ui.horizontal.bulleted.list li:first-child, -.ui.horizontal.bulleted.list > .item:first-child { - margin-left: 0em; -} - -ul.ui.horizontal.bulleted.list li::before, -.ui.horizontal.bulleted.list > .item::before { - color: rgba(0, 0, 0, 0.87); -} - -ul.ui.horizontal.bulleted.list li:first-child::before, -.ui.horizontal.bulleted.list > .item:first-child::before { - display: none; -} - -/*------------------- - Ordered ---------------------*/ - -ol.ui.list, -.ui.ordered.list, -.ui.ordered.list .list, -ol.ui.list ol { - counter-reset: ordered; - margin-left: 1.25rem; - list-style-type: none; -} - -ol.ui.list li, -.ui.ordered.list .list > .item, -.ui.ordered.list > .item { - list-style-type: none; - position: relative; -} - -ol.ui.list li:before, -.ui.ordered.list .list > .item:before, -.ui.ordered.list > .item:before { - position: absolute; - top: auto; - left: auto; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - pointer-events: none; - margin-left: -1.25rem; - counter-increment: ordered; - content: counters(ordered, ".") " "; - text-align: right; - color: rgba(0, 0, 0, 0.87); - vertical-align: middle; - opacity: 0.8; -} - -ol.ui.inverted.list li:before, -.ui.ordered.inverted.list .list > .item:before, -.ui.ordered.inverted.list > .item:before { - color: rgba(255, 255, 255, 0.7); -} - -/* Value */ - -.ui.ordered.list > .list > .item[data-value], -.ui.ordered.list > .item[data-value] { - content: attr(data-value); -} - -ol.ui.list li[value]:before { - content: attr(value); -} - -/* Child Lists */ - -ol.ui.list ol, -.ui.ordered.list .list { - margin-left: 1em; -} - -ol.ui.list ol li:before, -.ui.ordered.list .list > .item:before { - margin-left: -2em; -} - -/* Horizontal Ordered */ - -ol.ui.horizontal.list, -.ui.ordered.horizontal.list { - margin-left: 0em; -} - -ol.ui.horizontal.list li:before, -.ui.ordered.horizontal.list .list > .item:before, -.ui.ordered.horizontal.list > .item:before { - position: static; - margin: 0em 0.5em 0em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.list > .item { - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.divided.list .list > .item { - border-top: none; -} - -.ui.divided.list .item .list > .item { - border-top: none; -} - -.ui.divided.list .list > .item:first-child, -.ui.divided.list > .item:first-child { - border-top: none; -} - -/* Sub Menu */ - -.ui.divided.list:not(.horizontal) .list > .item:first-child { - border-top-width: 1px; -} - -/* Divided bulleted */ - -.ui.divided.bulleted.list:not(.horizontal), -.ui.divided.bulleted.list .list { - margin-left: 0em; - padding-left: 0em; -} - -.ui.divided.bulleted.list > .item:not(.horizontal) { - padding-left: 1.25rem; -} - -/* Divided Ordered */ - -.ui.divided.ordered.list { - margin-left: 0em; -} - -.ui.divided.ordered.list .list > .item, -.ui.divided.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.divided.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; -} - -.ui.divided.ordered.list .item .list > .item { - padding-left: 1em; -} - -/* Divided Selection */ - -.ui.divided.selection.list .list > .item, -.ui.divided.selection.list > .item { - margin: 0em; - border-radius: 0em; -} - -/* Divided horizontal */ - -.ui.divided.horizontal.list { - margin-left: 0em; -} - -.ui.divided.horizontal.list > .item:not(:first-child) { - padding-left: 0.5em; -} - -.ui.divided.horizontal.list > .item:not(:last-child) { - padding-right: 0.5em; -} - -.ui.divided.horizontal.list > .item { - border-top: none; - border-left: 1px solid rgba(34, 36, 38, 0.15); - margin: 0em; - line-height: 0.6; -} - -.ui.horizontal.divided.list > .item:first-child { - border-left: none; -} - -/* Inverted */ - -.ui.divided.inverted.list > .item, -.ui.divided.inverted.list > .list, -.ui.divided.inverted.horizontal.list > .item { - border-color: rgba(255, 255, 255, 0.1); -} - -/*------------------- - Celled ---------------------*/ - -.ui.celled.list > .item, -.ui.celled.list > .list { - border-top: 1px solid rgba(34, 36, 38, 0.15); - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.celled.list > .item:last-child { - border-bottom: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Padding on all elements */ - -.ui.celled.list > .item:first-child, -.ui.celled.list > .item:last-child { - padding-top: 0.21428571em; - padding-bottom: 0.21428571em; -} - -/* Sub Menu */ - -.ui.celled.list .item .list > .item { - border-width: 0px; -} - -.ui.celled.list .list > .item:first-child { - border-top-width: 0px; -} - -/* Celled Bulleted */ - -.ui.celled.bulleted.list { - margin-left: 0em; -} - -.ui.celled.bulleted.list .list > .item, -.ui.celled.bulleted.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.bulleted.list .item .list { - margin-left: -1.25rem; - margin-right: -1.25rem; - padding-bottom: 0.21428571em; -} - -/* Celled Ordered */ - -.ui.celled.ordered.list { - margin-left: 0em; -} - -.ui.celled.ordered.list .list > .item, -.ui.celled.ordered.list > .item { - padding-left: 1.25rem; -} - -.ui.celled.ordered.list .item .list { - margin-left: 0em; - margin-right: 0em; - padding-bottom: 0.21428571em; -} - -.ui.celled.ordered.list .list > .item { - padding-left: 1em; -} - -/* Celled Horizontal */ - -.ui.horizontal.celled.list { - margin-left: 0em; -} - -.ui.horizontal.celled.list .list > .item, -.ui.horizontal.celled.list > .item { - border-top: none; - border-left: 1px solid rgba(34, 36, 38, 0.15); - margin: 0em; - padding-left: 0.5em; - padding-right: 0.5em; - line-height: 0.6; -} - -.ui.horizontal.celled.list .list > .item:last-child, -.ui.horizontal.celled.list > .item:last-child { - border-bottom: none; - border-right: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Inverted */ - -.ui.celled.inverted.list > .item, -.ui.celled.inverted.list > .list { - border-color: 1px solid rgba(255, 255, 255, 0.1); -} - -.ui.celled.inverted.horizontal.list .list > .item, -.ui.celled.inverted.horizontal.list > .item { - border-color: 1px solid rgba(255, 255, 255, 0.1); -} - -/*------------------- - Relaxed ---------------------*/ - -.ui.relaxed.list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.42857143em; -} - -.ui.relaxed.list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.42857143em; -} - -.ui.horizontal.relaxed.list .list > .item:not(:first-child), -.ui.horizontal.relaxed.list > .item:not(:first-child) { - padding-left: 1rem; -} - -.ui.horizontal.relaxed.list .list > .item:not(:last-child), -.ui.horizontal.relaxed.list > .item:not(:last-child) { - padding-right: 1rem; -} - -/* Very Relaxed */ - -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:first-child) { - padding-top: 0.85714286em; -} - -.ui[class*="very relaxed"].list:not(.horizontal) > .item:not(:last-child) { - padding-bottom: 0.85714286em; -} - -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:first-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:first-child) { - padding-left: 1.5rem; -} - -.ui.horizontal[class*="very relaxed"].list .list > .item:not(:last-child), -.ui.horizontal[class*="very relaxed"].list > .item:not(:last-child) { - padding-right: 1.5rem; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.list { - font-size: 0.78571429em; -} - -.ui.tiny.list { - font-size: 0.85714286em; -} - -.ui.small.list { - font-size: 0.92857143em; -} - -.ui.list { - font-size: 1em; -} - -.ui.large.list { - font-size: 1.14285714em; -} - -.ui.big.list { - font-size: 1.28571429em; -} - -.ui.huge.list { - font-size: 1.42857143em; -} - -.ui.massive.list { - font-size: 1.71428571em; -} - -.ui.mini.horizontal.list .list > .item, -.ui.mini.horizontal.list > .item { - font-size: 0.78571429rem; -} - -.ui.tiny.horizontal.list .list > .item, -.ui.tiny.horizontal.list > .item { - font-size: 0.85714286rem; -} - -.ui.small.horizontal.list .list > .item, -.ui.small.horizontal.list > .item { - font-size: 0.92857143rem; -} - -.ui.horizontal.list .list > .item, -.ui.horizontal.list > .item { - font-size: 1rem; -} - -.ui.large.horizontal.list .list > .item, -.ui.large.horizontal.list > .item { - font-size: 1.14285714rem; -} - -.ui.big.horizontal.list .list > .item, -.ui.big.horizontal.list > .item { - font-size: 1.28571429rem; -} - -.ui.huge.horizontal.list .list > .item, -.ui.huge.horizontal.list > .item { - font-size: 1.42857143rem; -} - -.ui.massive.horizontal.list .list > .item, -.ui.massive.horizontal.list > .item { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Loader -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Loader -*******************************/ - -/* Standard Size */ - -.ui.loader { - display: none; - position: absolute; - top: 50%; - left: 50%; - margin: 0px; - text-align: center; - z-index: 1000; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -/* Static Shape */ - -.ui.loader:before { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -/* Active Shape */ - -.ui.loader:after { - position: absolute; - content: ''; - top: 0%; - left: 50%; - width: 100%; - height: 100%; - -webkit-animation: loader 0.6s linear; - animation: loader 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/* Active Animation */ - -@-webkit-keyframes loader { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes loader { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/* Sizes */ - -.ui.mini.loader:before, -.ui.mini.loader:after { - width: 1rem; - height: 1rem; - margin: 0em 0em 0em -0.5rem; -} - -.ui.tiny.loader:before, -.ui.tiny.loader:after { - width: 1.14285714rem; - height: 1.14285714rem; - margin: 0em 0em 0em -0.57142857rem; -} - -.ui.small.loader:before, -.ui.small.loader:after { - width: 1.71428571rem; - height: 1.71428571rem; - margin: 0em 0em 0em -0.85714286rem; -} - -.ui.loader:before, -.ui.loader:after { - width: 2.28571429rem; - height: 2.28571429rem; - margin: 0em 0em 0em -1.14285714rem; -} - -.ui.large.loader:before, -.ui.large.loader:after { - width: 3.42857143rem; - height: 3.42857143rem; - margin: 0em 0em 0em -1.71428571rem; -} - -.ui.big.loader:before, -.ui.big.loader:after { - width: 3.71428571rem; - height: 3.71428571rem; - margin: 0em 0em 0em -1.85714286rem; -} - -.ui.huge.loader:before, -.ui.huge.loader:after { - width: 4.14285714rem; - height: 4.14285714rem; - margin: 0em 0em 0em -2.07142857rem; -} - -.ui.massive.loader:before, -.ui.massive.loader:after { - width: 4.57142857rem; - height: 4.57142857rem; - margin: 0em 0em 0em -2.28571429rem; -} - -/*------------------- - Coupling ---------------------*/ - -/* Show inside active dimmer */ - -.ui.dimmer .loader { - display: block; -} - -/* Black Dimmer */ - -.ui.dimmer .ui.loader { - color: rgba(255, 255, 255, 0.9); -} - -.ui.dimmer .ui.loader:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.dimmer .ui.loader:after { - border-color: #FFFFFF transparent transparent; -} - -/* White Dimmer (Inverted) */ - -.ui.inverted.dimmer .ui.loader { - color: rgba(0, 0, 0, 0.87); -} - -.ui.inverted.dimmer .ui.loader:before { - border-color: rgba(0, 0, 0, 0.1); -} - -.ui.inverted.dimmer .ui.loader:after { - border-color: #767676 transparent transparent; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Text ---------------------*/ - -.ui.text.loader { - width: auto !important; - height: auto !important; - text-align: center; - font-style: normal; -} - -/******************************* - States -*******************************/ - -.ui.indeterminate.loader:after { - animation-direction: reverse; - -webkit-animation-duration: 1.2s; - animation-duration: 1.2s; -} - -.ui.loader.active, -.ui.loader.visible { - display: block; -} - -.ui.loader.disabled, -.ui.loader.hidden { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Sizes ---------------------*/ - -/* Loader */ - -.ui.inverted.dimmer .ui.mini.loader, -.ui.mini.loader { - width: 1rem; - height: 1rem; - font-size: 0.78571429em; -} - -.ui.inverted.dimmer .ui.tiny.loader, -.ui.tiny.loader { - width: 1.14285714rem; - height: 1.14285714rem; - font-size: 0.85714286em; -} - -.ui.inverted.dimmer .ui.small.loader, -.ui.small.loader { - width: 1.71428571rem; - height: 1.71428571rem; - font-size: 0.92857143em; -} - -.ui.inverted.dimmer .ui.loader, -.ui.loader { - width: 2.28571429rem; - height: 2.28571429rem; - font-size: 1em; -} - -.ui.inverted.dimmer .ui.large.loader, -.ui.large.loader { - width: 3.42857143rem; - height: 3.42857143rem; - font-size: 1.14285714em; -} - -.ui.inverted.dimmer .ui.big.loader, -.ui.big.loader { - width: 3.71428571rem; - height: 3.71428571rem; - font-size: 1.28571429em; -} - -.ui.inverted.dimmer .ui.huge.loader, -.ui.huge.loader { - width: 4.14285714rem; - height: 4.14285714rem; - font-size: 1.42857143em; -} - -.ui.inverted.dimmer .ui.massive.loader, -.ui.massive.loader { - width: 4.57142857rem; - height: 4.57142857rem; - font-size: 1.71428571em; -} - -/* Text Loader */ - -.ui.mini.text.loader { - min-width: 1rem; - padding-top: 1.78571429rem; -} - -.ui.tiny.text.loader { - min-width: 1.14285714rem; - padding-top: 1.92857143rem; -} - -.ui.small.text.loader { - min-width: 1.71428571rem; - padding-top: 2.5rem; -} - -.ui.text.loader { - min-width: 2.28571429rem; - padding-top: 3.07142857rem; -} - -.ui.large.text.loader { - min-width: 3.42857143rem; - padding-top: 4.21428571rem; -} - -.ui.big.text.loader { - min-width: 3.71428571rem; - padding-top: 4.5rem; -} - -.ui.huge.text.loader { - min-width: 4.14285714rem; - padding-top: 4.92857143rem; -} - -.ui.massive.text.loader { - min-width: 4.57142857rem; - padding-top: 5.35714286rem; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.loader { - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.loader:before { - border-color: rgba(255, 255, 255, 0.15); -} - -.ui.inverted.loader:after { - border-top-color: #FFFFFF; -} - -/*------------------- - Inline ---------------------*/ - -.ui.inline.loader { - position: relative; - vertical-align: middle; - margin: 0em; - left: 0em; - top: 0em; - -webkit-transform: none; - transform: none; -} - -.ui.inline.loader.active, -.ui.inline.loader.visible { - display: inline-block; -} - -/* Centered Inline */ - -.ui.centered.inline.loader.active, -.ui.centered.inline.loader.visible { - display: block; - margin-left: auto; - margin-right: auto; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Rail -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Rails -*******************************/ - -.ui.rail { - position: absolute; - top: 0%; - width: 300px; - height: 100%; -} - -.ui.left.rail { - left: auto; - right: 100%; - padding: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -.ui.right.rail { - left: 100%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Internal ----------------*/ - -.ui.left.internal.rail { - left: 0%; - right: auto; - padding: 0em 0em 0em 2rem; - margin: 0em 0em 0em 2rem; -} - -.ui.right.internal.rail { - left: auto; - right: 0%; - padding: 0em 2rem 0em 0em; - margin: 0em 2rem 0em 0em; -} - -/*-------------- - Dividing ----------------*/ - -.ui.dividing.rail { - width: 302.5px; -} - -.ui.left.dividing.rail { - padding: 0em 2.5rem 0em 0em; - margin: 0em 2.5rem 0em 0em; - border-right: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.right.dividing.rail { - border-left: 1px solid rgba(34, 36, 38, 0.15); - padding: 0em 0em 0em 2.5rem; - margin: 0em 0em 0em 2.5rem; -} - -/*-------------- - Distance ----------------*/ - -.ui.close.rail { - width: calc( 300px + 1em ); -} - -.ui.close.left.rail { - padding: 0em 1em 0em 0em; - margin: 0em 1em 0em 0em; -} - -.ui.close.right.rail { - padding: 0em 0em 0em 1em; - margin: 0em 0em 0em 1em; -} - -.ui.very.close.rail { - width: calc( 300px + 0.5em ); -} - -.ui.very.close.left.rail { - padding: 0em 0.5em 0em 0em; - margin: 0em 0.5em 0em 0em; -} - -.ui.very.close.right.rail { - padding: 0em 0em 0em 0.5em; - margin: 0em 0em 0em 0.5em; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.left.rail, -.ui.attached.right.rail { - padding: 0em; - margin: 0em; -} - -/*-------------- - Sizing ----------------*/ - -.ui.mini.rail { - font-size: 0.78571429rem; -} - -.ui.tiny.rail { - font-size: 0.85714286rem; -} - -.ui.small.rail { - font-size: 0.92857143rem; -} - -.ui.rail { - font-size: 1rem; -} - -.ui.large.rail { - font-size: 1.14285714rem; -} - -.ui.big.rail { - font-size: 1.28571429rem; -} - -.ui.huge.rail { - font-size: 1.42857143rem; -} - -.ui.massive.rail { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Reveal -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Reveal -*******************************/ - -.ui.reveal { - display: inherit; - position: relative !important; - font-size: 0em !important; -} - -.ui.reveal > .visible.content { - position: absolute !important; - top: 0em !important; - left: 0em !important; - z-index: 3 !important; - -webkit-transition: all 0.5s ease 0.1s; - transition: all 0.5s ease 0.1s; -} - -.ui.reveal > .hidden.content { - position: relative !important; - z-index: 2 !important; -} - -/* Make sure hovered element is on top of other reveal */ - -.ui.active.reveal .visible.content, -.ui.reveal:hover .visible.content { - z-index: 4 !important; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Slide ----------------*/ - -.ui.slide.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.slide.reveal > .content { - display: block; - width: 100%; - float: left; - margin: 0em; - -webkit-transition: -webkit-transform 0.5s ease 0.1s; - transition: -webkit-transform 0.5s ease 0.1s; - transition: transform 0.5s ease 0.1s; - transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s; -} - -.ui.slide.reveal > .visible.content { - position: relative !important; -} - -.ui.slide.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; - -webkit-transform: translateX(100%) !important; - transform: translateX(100%) !important; -} - -.ui.slide.active.reveal > .visible.content, -.ui.slide.reveal:hover > .visible.content { - -webkit-transform: translateX(-100%) !important; - transform: translateX(-100%) !important; -} - -.ui.slide.active.reveal > .hidden.content, -.ui.slide.reveal:hover > .hidden.content { - -webkit-transform: translateX(0%) !important; - transform: translateX(0%) !important; -} - -.ui.slide.right.reveal > .visible.content { - -webkit-transform: translateX(0%) !important; - transform: translateX(0%) !important; -} - -.ui.slide.right.reveal > .hidden.content { - -webkit-transform: translateX(-100%) !important; - transform: translateX(-100%) !important; -} - -.ui.slide.right.active.reveal > .visible.content, -.ui.slide.right.reveal:hover > .visible.content { - -webkit-transform: translateX(100%) !important; - transform: translateX(100%) !important; -} - -.ui.slide.right.active.reveal > .hidden.content, -.ui.slide.right.reveal:hover > .hidden.content { - -webkit-transform: translateX(0%) !important; - transform: translateX(0%) !important; -} - -.ui.slide.up.reveal > .hidden.content { - -webkit-transform: translateY(100%) !important; - transform: translateY(100%) !important; -} - -.ui.slide.up.active.reveal > .visible.content, -.ui.slide.up.reveal:hover > .visible.content { - -webkit-transform: translateY(-100%) !important; - transform: translateY(-100%) !important; -} - -.ui.slide.up.active.reveal > .hidden.content, -.ui.slide.up.reveal:hover > .hidden.content { - -webkit-transform: translateY(0%) !important; - transform: translateY(0%) !important; -} - -.ui.slide.down.reveal > .hidden.content { - -webkit-transform: translateY(-100%) !important; - transform: translateY(-100%) !important; -} - -.ui.slide.down.active.reveal > .visible.content, -.ui.slide.down.reveal:hover > .visible.content { - -webkit-transform: translateY(100%) !important; - transform: translateY(100%) !important; -} - -.ui.slide.down.active.reveal > .hidden.content, -.ui.slide.down.reveal:hover > .hidden.content { - -webkit-transform: translateY(0%) !important; - transform: translateY(0%) !important; -} - -/*-------------- - Fade ----------------*/ - -.ui.fade.reveal > .visible.content { - opacity: 1; -} - -.ui.fade.active.reveal > .visible.content, -.ui.fade.reveal:hover > .visible.content { - opacity: 0; -} - -/*-------------- - Move ----------------*/ - -.ui.move.reveal { - position: relative !important; - overflow: hidden !important; - white-space: nowrap; -} - -.ui.move.reveal > .content { - display: block; - float: left; - margin: 0em; - -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; - transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; - transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; - transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s; -} - -.ui.move.reveal > .visible.content { - position: relative !important; -} - -.ui.move.reveal > .hidden.content { - position: absolute !important; - left: 0% !important; - width: 100% !important; -} - -.ui.move.active.reveal > .visible.content, -.ui.move.reveal:hover > .visible.content { - -webkit-transform: translateX(-100%) !important; - transform: translateX(-100%) !important; -} - -.ui.move.right.active.reveal > .visible.content, -.ui.move.right.reveal:hover > .visible.content { - -webkit-transform: translateX(100%) !important; - transform: translateX(100%) !important; -} - -.ui.move.up.active.reveal > .visible.content, -.ui.move.up.reveal:hover > .visible.content { - -webkit-transform: translateY(-100%) !important; - transform: translateY(-100%) !important; -} - -.ui.move.down.active.reveal > .visible.content, -.ui.move.down.reveal:hover > .visible.content { - -webkit-transform: translateY(100%) !important; - transform: translateY(100%) !important; -} - -/*-------------- - Rotate ----------------*/ - -.ui.rotate.reveal > .visible.content { - -webkit-transition-duration: 0.5s; - transition-duration: 0.5s; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); -} - -.ui.rotate.reveal > .visible.content, -.ui.rotate.right.reveal > .visible.content { - -webkit-transform-origin: bottom right; - transform-origin: bottom right; -} - -.ui.rotate.active.reveal > .visible.content, -.ui.rotate.reveal:hover > .visible.content, -.ui.rotate.right.active.reveal > .visible.content, -.ui.rotate.right.reveal:hover > .visible.content { - -webkit-transform: rotate(110deg); - transform: rotate(110deg); -} - -.ui.rotate.left.reveal > .visible.content { - -webkit-transform-origin: bottom left; - transform-origin: bottom left; -} - -.ui.rotate.left.active.reveal > .visible.content, -.ui.rotate.left.reveal:hover > .visible.content { - -webkit-transform: rotate(-110deg); - transform: rotate(-110deg); -} - -/******************************* - States -*******************************/ - -.ui.disabled.reveal:hover > .visible.visible.content { - position: static !important; - display: block !important; - opacity: 1 !important; - top: 0 !important; - left: 0 !important; - right: auto !important; - bottom: auto !important; - -webkit-transform: none !important; - transform: none !important; -} - -.ui.disabled.reveal:hover > .hidden.hidden.content { - display: none !important; -} - -/******************************* - Coupling -*******************************/ - -.ui.reveal > .ui.ribbon.label { - z-index: 5; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.reveal { - overflow: visible; -} - -/*-------------- - Instant ----------------*/ - -.ui.instant.reveal > .content { - -webkit-transition-delay: 0s !important; - transition-delay: 0s !important; -} - -/*-------------- - Sizing ----------------*/ - -.ui.reveal > .content { - font-size: 1rem !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Segment -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Segment -*******************************/ - -.ui.segment { - position: relative; - background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - margin: 1rem 0em; - padding: 1em 1em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.segment:first-child { - margin-top: 0em; -} - -.ui.segment:last-child { - margin-bottom: 0em; -} - -/* Vertical */ - -.ui.vertical.segment { - margin: 0em; - padding-left: 0em; - padding-right: 0em; - background: none transparent; - border-radius: 0px; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - border-bottom: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.vertical.segment:last-child { - border-bottom: none; -} - -/*------------------- - Loose Coupling ---------------------*/ - -/* Header */ - -.ui.inverted.segment > .ui.header { - color: #FFFFFF; -} - -/* Label */ - -.ui[class*="bottom attached"].segment > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui[class*="top attached"].segment > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label { - border-top-left-radius: 0em; - border-top-right-radius: 0em; -} - -.ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label { - border-bottom-left-radius: 0em; - border-bottom-right-radius: 0em; -} - -/* Grid */ - -.ui.page.grid.segment, -.ui.grid > .row > .ui.segment.column, -.ui.grid > .ui.segment.column { - padding-top: 2em; - padding-bottom: 2em; -} - -.ui.grid.segment { - margin: 1rem 0em; - border-radius: 0.28571429rem; -} - -/* Table */ - -.ui.basic.table.segment { - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); -} - -.ui[class*="very basic"].table.segment { - padding: 1em 1em; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Piled ---------------------*/ - -.ui.piled.segments, -.ui.piled.segment { - margin: 3em 0em; - -webkit-box-shadow: ''; - box-shadow: ''; - z-index: auto; -} - -.ui.piled.segment:first-child { - margin-top: 0em; -} - -.ui.piled.segment:last-child { - margin-bottom: 0em; -} - -.ui.piled.segments:after, -.ui.piled.segments:before, -.ui.piled.segment:after, -.ui.piled.segment:before { - background-color: #FFFFFF; - visibility: visible; - content: ''; - display: block; - height: 100%; - left: 0px; - position: absolute; - width: 100%; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: ''; - box-shadow: ''; -} - -.ui.piled.segments:before, -.ui.piled.segment:before { - -webkit-transform: rotate(-1.2deg); - transform: rotate(-1.2deg); - top: 0; - z-index: -2; -} - -.ui.piled.segments:after, -.ui.piled.segment:after { - -webkit-transform: rotate(1.2deg); - transform: rotate(1.2deg); - top: 0; - z-index: -1; -} - -/* Piled Attached */ - -.ui[class*="top attached"].piled.segment { - margin-top: 3em; - margin-bottom: 0em; -} - -.ui.piled.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -.ui.piled.segment[class*="bottom attached"] { - margin-top: 0em; - margin-bottom: 3em; -} - -.ui.piled.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Stacked ---------------------*/ - -.ui.stacked.segment { - padding-bottom: 1.4em; -} - -.ui.stacked.segments:before, -.ui.stacked.segments:after, -.ui.stacked.segment:before, -.ui.stacked.segment:after { - content: ''; - position: absolute; - bottom: -3px; - left: 0%; - border-top: 1px solid rgba(34, 36, 38, 0.15); - background: rgba(0, 0, 0, 0.03); - width: 100%; - height: 6px; - visibility: visible; -} - -.ui.stacked.segments:before, -.ui.stacked.segment:before { - display: none; -} - -/* Add additional page */ - -.ui.tall.stacked.segments:before, -.ui.tall.stacked.segment:before { - display: block; - bottom: 0px; -} - -/* Inverted */ - -.ui.stacked.inverted.segments:before, -.ui.stacked.inverted.segments:after, -.ui.stacked.inverted.segment:before, -.ui.stacked.inverted.segment:after { - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(34, 36, 38, 0.35); -} - -/*------------------- - Padded ---------------------*/ - -.ui.padded.segment { - padding: 1.5em; -} - -.ui[class*="very padded"].segment { - padding: 3em; -} - -/* Padded vertical */ - -.ui.padded.segment.vertical.segment, -.ui[class*="very padded"].vertical.segment { - padding-left: 0px; - padding-right: 0px; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.segment { - display: table; -} - -/* Compact Group */ - -.ui.compact.segments { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; -} - -.ui.compact.segments .segment, -.ui.segments .compact.segment { - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} - -/*------------------- - Circular ---------------------*/ - -.ui.circular.segment { - display: table-cell; - padding: 2em; - text-align: center; - vertical-align: middle; - border-radius: 500em; -} - -/*------------------- - Raised ---------------------*/ - -.ui.raised.segments, -.ui.raised.segment { - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/******************************* - Groups -*******************************/ - -/* Group */ - -.ui.segments { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - margin: 1rem 0em; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; -} - -.ui.segments:first-child { - margin-top: 0em; -} - -.ui.segments:last-child { - margin-bottom: 0em; -} - -/* Nested Segment */ - -.ui.segments > .segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em; - width: auto; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.segments:not(.horizontal) > .segment:first-child { - border-top: none; - margin-top: 0em; - bottom: 0px; - margin-bottom: 0em; - top: 0px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Bottom */ - -.ui.segments:not(.horizontal) > .segment:last-child { - top: 0px; - bottom: 0px; - margin-top: 0em; - margin-bottom: 0em; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Only */ - -.ui.segments:not(.horizontal) > .segment:only-child { - border-radius: 0.28571429rem; -} - -/* Nested Group */ - -.ui.segments > .ui.segments { - border-top: 1px solid rgba(34, 36, 38, 0.15); - margin: 1rem 1rem; -} - -.ui.segments > .segments:first-child { - border-top: none; -} - -.ui.segments > .segment + .segments:not(.horizontal) { - margin-top: 0em; -} - -/* Horizontal Group */ - -.ui.horizontal.segments { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - background-color: transparent; - border-radius: 0px; - padding: 0em; - background-color: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - margin: 1rem 0em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Nested Horizontal Group */ - -.ui.segments > .horizontal.segments { - margin: 0em; - background-color: transparent; - border-radius: 0px; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Horizontal Segment */ - -.ui.horizontal.segments > .segment { - -webkit-box-flex: 1; - flex: 1 1 auto; - -ms-flex: 1 1 0px; - /* Solves #2550 MS Flex */ - margin: 0em; - min-width: 0px; - background-color: transparent; - border-radius: 0px; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -/* Border Fixes */ - -.ui.segments > .horizontal.segments:first-child { - border-top: none; -} - -.ui.horizontal.segments > .segment:first-child { - border-left: none; -} - -/******************************* - States -*******************************/ - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.segment { - opacity: 0.45; - color: rgba(40, 40, 40, 0.3); -} - -/*-------------- - Loading ----------------*/ - -.ui.loading.segment { - position: relative; - cursor: default; - pointer-events: none; - text-shadow: none !important; - color: transparent !important; - -webkit-transition: all 0s linear; - transition: all 0s linear; -} - -.ui.loading.segment:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: rgba(255, 255, 255, 0.8); - width: 100%; - height: 100%; - border-radius: 0.28571429rem; - z-index: 100; -} - -.ui.loading.segment:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -1.5em 0em 0em -1.5em; - width: 3em; - height: 3em; - -webkit-animation: segment-spin 0.6s linear; - animation: segment-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@-webkit-keyframes segment-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes segment-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Basic ---------------------*/ - -.ui.basic.segment { - background: none transparent; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - border-radius: 0px; -} - -/*------------------- - Clearing ---------------------*/ - -.ui.clearing.segment:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.segment:not(.inverted) { - border-top: 2px solid #DB2828 !important; -} - -.ui.inverted.red.segment { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -.ui.orange.segment:not(.inverted) { - border-top: 2px solid #F2711C !important; -} - -.ui.inverted.orange.segment { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -.ui.yellow.segment:not(.inverted) { - border-top: 2px solid #FBBD08 !important; -} - -.ui.inverted.yellow.segment { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -.ui.olive.segment:not(.inverted) { - border-top: 2px solid #B5CC18 !important; -} - -.ui.inverted.olive.segment { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -.ui.green.segment:not(.inverted) { - border-top: 2px solid #21BA45 !important; -} - -.ui.inverted.green.segment { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -.ui.teal.segment:not(.inverted) { - border-top: 2px solid #00B5AD !important; -} - -.ui.inverted.teal.segment { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -.ui.blue.segment:not(.inverted) { - border-top: 2px solid #2185D0 !important; -} - -.ui.inverted.blue.segment { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -.ui.violet.segment:not(.inverted) { - border-top: 2px solid #6435C9 !important; -} - -.ui.inverted.violet.segment { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -.ui.purple.segment:not(.inverted) { - border-top: 2px solid #A333C8 !important; -} - -.ui.inverted.purple.segment { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -.ui.pink.segment:not(.inverted) { - border-top: 2px solid #E03997 !important; -} - -.ui.inverted.pink.segment { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -.ui.brown.segment:not(.inverted) { - border-top: 2px solid #A5673F !important; -} - -.ui.inverted.brown.segment { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -.ui.grey.segment:not(.inverted) { - border-top: 2px solid #767676 !important; -} - -.ui.inverted.grey.segment { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -.ui.black.segment:not(.inverted) { - border-top: 2px solid #1B1C1D !important; -} - -.ui.inverted.black.segment { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*------------------- - Aligned ---------------------*/ - -.ui[class*="left aligned"].segment { - text-align: left; -} - -.ui[class*="right aligned"].segment { - text-align: right; -} - -.ui[class*="center aligned"].segment { - text-align: center; -} - -/*------------------- - Floated ---------------------*/ - -.ui.floated.segment, -.ui[class*="left floated"].segment { - float: left; - margin-right: 1em; -} - -.ui[class*="right floated"].segment { - float: right; - margin-left: 1em; -} - -/*------------------- - Inverted ---------------------*/ - -.ui.inverted.segment { - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.inverted.segment, -.ui.primary.inverted.segment { - background: #1B1C1D; - color: rgba(255, 255, 255, 0.9); -} - -/* Nested */ - -.ui.inverted.segment .segment { - color: rgba(0, 0, 0, 0.87); -} - -.ui.inverted.segment .inverted.segment { - color: rgba(255, 255, 255, 0.9); -} - -/* Attached */ - -.ui.inverted.attached.segment { - border-color: #555555; -} - -/*------------------- - Emphasis ---------------------*/ - -/* Secondary */ - -.ui.secondary.segment { - background: #F3F4F5; - color: rgba(0, 0, 0, 0.6); -} - -.ui.secondary.inverted.segment { - background: #4c4f52 -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2))); - background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); - background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%); - color: rgba(255, 255, 255, 0.8); -} - -/* Tertiary */ - -.ui.tertiary.segment { - background: #DCDDDE; - color: rgba(0, 0, 0, 0.6); -} - -.ui.tertiary.inverted.segment { - background: #717579 -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.35)), to(rgba(255, 255, 255, 0.35))); - background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%); - background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%); - color: rgba(255, 255, 255, 0.8); -} - -/*------------------- - Attached ---------------------*/ - -/* Middle */ - -.ui.attached.segment { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid #D4D4D5; -} - -.ui.attached:not(.message) + .ui.attached.segment:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].segment { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.segment[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui.segment[class*="bottom attached"] { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.segment[class*="bottom attached"]:last-child { - margin-bottom: 0em; -} - -/*------------------- - Size ---------------------*/ - -.ui.mini.segments .segment, -.ui.mini.segment { - font-size: 0.78571429rem; -} - -.ui.tiny.segments .segment, -.ui.tiny.segment { - font-size: 0.85714286rem; -} - -.ui.small.segments .segment, -.ui.small.segment { - font-size: 0.92857143rem; -} - -.ui.segments .segment, -.ui.segment { - font-size: 1rem; -} - -.ui.large.segments .segment, -.ui.large.segment { - font-size: 1.14285714rem; -} - -.ui.big.segments .segment, -.ui.big.segment { - font-size: 1.28571429rem; -} - -.ui.huge.segments .segment, -.ui.huge.segment { - font-size: 1.42857143rem; -} - -.ui.massive.segments .segment, -.ui.massive.segment { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Step -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Plural -*******************************/ - -.ui.steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - margin: 1em 0em; - background: ''; - -webkit-box-shadow: none; - box-shadow: none; - line-height: 1.14285714em; - border-radius: 0.28571429rem; - border: 1px solid rgba(34, 36, 38, 0.15); -} - -/* First Steps */ - -.ui.steps:first-child { - margin-top: 0em; -} - -/* Last Steps */ - -.ui.steps:last-child { - margin-bottom: 0em; -} - -/******************************* - Singular -*******************************/ - -.ui.steps .step { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - vertical-align: middle; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin: 0em 0em; - padding: 1.14285714em 2em; - background: #FFFFFF; - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0em; - border: none; - border-right: 1px solid rgba(34, 36, 38, 0.15); - -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; -} - -/* Arrow */ - -.ui.steps .step:after { - display: none; - position: absolute; - z-index: 2; - content: ''; - top: 50%; - right: 0%; - border: medium none; - background-color: #FFFFFF; - width: 1.14285714em; - height: 1.14285714em; - border-style: solid; - border-color: rgba(34, 36, 38, 0.15); - border-width: 0px 1px 1px 0px; - -webkit-transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease; - transition: background-color 0.1s ease, opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; - -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg); - transform: translateY(-50%) translateX(50%) rotate(-45deg); -} - -/* First Step */ - -.ui.steps .step:first-child { - padding-left: 2em; - border-radius: 0.28571429rem 0em 0em 0.28571429rem; -} - -/* Last Step */ - -.ui.steps .step:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.steps .step:last-child { - border-right: none; - margin-right: 0em; -} - -/* Only Step */ - -.ui.steps .step:only-child { - border-radius: 0.28571429rem; -} - -/******************************* - Content -*******************************/ - -/* Title */ - -.ui.steps .step .title { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1.14285714em; - font-weight: bold; -} - -.ui.steps .step > .title { - width: 100%; -} - -/* Description */ - -.ui.steps .step .description { - font-weight: normal; - font-size: 0.92857143em; - color: rgba(0, 0, 0, 0.87); -} - -.ui.steps .step > .description { - width: 100%; -} - -.ui.steps .step .title ~ .description { - margin-top: 0.25em; -} - -/* Icon */ - -.ui.steps .step > .icon { - line-height: 1; - font-size: 2.5em; - margin: 0em 1rem 0em 0em; -} - -.ui.steps .step > .icon, -.ui.steps .step > .icon ~ .content { - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -ms-flex-item-align: middle; - align-self: middle; -} - -.ui.steps .step > .icon ~ .content { - -webkit-box-flex: 1 0 auto; - -ms-flex-positive: 1 0 auto; - flex-grow: 1 0 auto; -} - -/* Horizontal Icon */ - -.ui.steps:not(.vertical) .step > .icon { - width: auto; -} - -/* Link */ - -.ui.steps .link.step, -.ui.steps a.step { - cursor: pointer; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Ordered ----------------*/ - -.ui.ordered.steps { - counter-reset: ordered; -} - -.ui.ordered.steps .step:before { - display: block; - position: static; - text-align: center; - content: counters(ordered, "."); - -ms-flex-item-align: middle; - align-self: middle; - margin-right: 1rem; - font-size: 2.5em; - counter-increment: ordered; - font-family: inherit; - font-weight: bold; -} - -.ui.ordered.steps .step > * { - display: block; - -ms-flex-item-align: middle; - align-self: middle; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - overflow: visible; -} - -.ui.vertical.steps .step { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - border-radius: 0em; - padding: 1.14285714em 2em; - border-right: none; - border-bottom: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.vertical.steps .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.vertical.steps .step:last-child { - border-bottom: none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.vertical.steps .step:only-child { - border-radius: 0.28571429rem; -} - -/* Arrow */ - -.ui.vertical.steps .step:after { - display: none; -} - -.ui.vertical.steps .step:after { - top: 50%; - right: 0%; - border-width: 0px 1px 1px 0px; -} - -.ui.vertical.steps .step:after { - display: none; -} - -.ui.vertical.steps .active.step:after { - display: block; -} - -.ui.vertical.steps .step:last-child:after { - display: none; -} - -.ui.vertical.steps .active.step:last-child:after { - display: block; -} - -/*--------------- - Responsive -----------------*/ - -/* Mobile (Default) */ - -@media only screen and (max-width: 767px) { - .ui.steps:not(.unstackable) { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - .ui.steps:not(.unstackable) .step { - width: 100% !important; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } - - .ui.steps:not(.unstackable) .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - } - - .ui.steps:not(.unstackable) .step:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - } - - /* Arrow */ - - .ui.steps:not(.unstackable) .step:after { - display: none !important; - } - - /* Content */ - - .ui.steps:not(.unstackable) .step .content { - text-align: center; - } - - /* Icon */ - - .ui.steps:not(.unstackable) .step > .icon, - .ui.ordered.steps:not(.unstackable) .step:before { - margin: 0em 0em 1rem 0em; - } -} - -/******************************* - States -*******************************/ - -/* Link Hover */ - -.ui.steps .link.step:hover::after, -.ui.steps .link.step:hover, -.ui.steps a.step:hover::after, -.ui.steps a.step:hover { - background: #F9FAFB; - color: rgba(0, 0, 0, 0.8); -} - -/* Link Down */ - -.ui.steps .link.step:active::after, -.ui.steps .link.step:active, -.ui.steps a.step:active::after, -.ui.steps a.step:active { - background: #F3F4F5; - color: rgba(0, 0, 0, 0.9); -} - -/* Active */ - -.ui.steps .step.active { - cursor: auto; - background: #F3F4F5; -} - -.ui.steps .step.active:after { - background: #F3F4F5; -} - -.ui.steps .step.active .title { - color: #4183C4; -} - -.ui.ordered.steps .step.active:before, -.ui.steps .active.step .icon { - color: rgba(0, 0, 0, 0.85); -} - -/* Active Arrow */ - -.ui.steps .step:after { - display: block; -} - -.ui.steps .active.step:after { - display: block; -} - -.ui.steps .step:last-child:after { - display: none; -} - -.ui.steps .active.step:last-child:after { - display: none; -} - -/* Active Hover */ - -.ui.steps .link.active.step:hover::after, -.ui.steps .link.active.step:hover, -.ui.steps a.active.step:hover::after, -.ui.steps a.active.step:hover { - cursor: pointer; - background: #DCDDDE; - color: rgba(0, 0, 0, 0.87); -} - -/* Completed */ - -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - color: #21BA45; -} - -/* Disabled */ - -.ui.steps .disabled.step { - cursor: auto; - background: #FFFFFF; - pointer-events: none; -} - -.ui.steps .disabled.step, -.ui.steps .disabled.step .title, -.ui.steps .disabled.step .description { - color: rgba(40, 40, 40, 0.3); -} - -.ui.steps .disabled.step:after { - background: #FFFFFF; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -/* Tablet Or Below */ - -@media only screen and (max-width: 991px) { - .ui[class*="tablet stackable"].steps { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - overflow: visible; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - /* Steps */ - - .ui[class*="tablet stackable"].steps .step { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - border-radius: 0em; - padding: 1.14285714em 2em; - } - - .ui[class*="tablet stackable"].steps .step:first-child { - padding: 1.14285714em 2em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - } - - .ui[class*="tablet stackable"].steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - } - - /* Arrow */ - - .ui[class*="tablet stackable"].steps .step:after { - display: none !important; - } - - /* Content */ - - .ui[class*="tablet stackable"].steps .step .content { - text-align: center; - } - - /* Icon */ - - .ui[class*="tablet stackable"].steps .step > .icon, - .ui[class*="tablet stackable"].ordered.steps .step:before { - margin: 0em 0em 1rem 0em; - } -} - -/*-------------- - Fluid ----------------*/ - -/* Fluid */ - -.ui.fluid.steps { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; -} - -/*-------------- - Attached ----------------*/ - -/* Top */ - -.ui.attached.steps { - width: calc(100% + 2px ) !important; - margin: 0em -1px 0; - max-width: calc(100% + 2px ); - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.attached.steps .step:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui.attached.steps .step:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -/* Bottom */ - -.ui.bottom.attached.steps { - margin: 0 -1px 0em; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.bottom.attached.steps .step:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui.bottom.attached.steps .step:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/*------------------- - Evenly Divided ---------------------*/ - -.ui.one.steps, -.ui.two.steps, -.ui.three.steps, -.ui.four.steps, -.ui.five.steps, -.ui.six.steps, -.ui.seven.steps, -.ui.eight.steps { - width: 100%; -} - -.ui.one.steps > .step, -.ui.two.steps > .step, -.ui.three.steps > .step, -.ui.four.steps > .step, -.ui.five.steps > .step, -.ui.six.steps > .step, -.ui.seven.steps > .step, -.ui.eight.steps > .step { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} - -.ui.one.steps > .step { - width: 100%; -} - -.ui.two.steps > .step { - width: 50%; -} - -.ui.three.steps > .step { - width: 33.333%; -} - -.ui.four.steps > .step { - width: 25%; -} - -.ui.five.steps > .step { - width: 20%; -} - -.ui.six.steps > .step { - width: 16.666%; -} - -.ui.seven.steps > .step { - width: 14.285%; -} - -.ui.eight.steps > .step { - width: 12.500%; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.steps .step, -.ui.mini.step { - font-size: 0.78571429rem; -} - -.ui.tiny.steps .step, -.ui.tiny.step { - font-size: 0.85714286rem; -} - -.ui.small.steps .step, -.ui.small.step { - font-size: 0.92857143rem; -} - -.ui.steps .step, -.ui.step { - font-size: 1rem; -} - -.ui.large.steps .step, -.ui.large.step { - font-size: 1.14285714rem; -} - -.ui.big.steps .step, -.ui.big.step { - font-size: 1.28571429rem; -} - -.ui.huge.steps .step, -.ui.huge.step { - font-size: 1.42857143rem; -} - -.ui.massive.steps .step, -.ui.massive.step { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Step'; - src: url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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) format('woff'); -} - -.ui.steps .step.completed > .icon:before, -.ui.ordered.steps .step.completed:before { - font-family: 'Step'; - content: '\e800'; - /* '' */ -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Breadcrumb -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Breadcrumb -*******************************/ - -.ui.breadcrumb { - line-height: 1; - display: inline-block; - margin: 0em 0em; - vertical-align: middle; -} - -.ui.breadcrumb:first-child { - margin-top: 0em; -} - -.ui.breadcrumb:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Divider */ - -.ui.breadcrumb .divider { - display: inline-block; - opacity: 0.7; - margin: 0em 0.21428571rem 0em; - font-size: 0.92857143em; - color: rgba(0, 0, 0, 0.4); - vertical-align: baseline; -} - -/* Link */ - -.ui.breadcrumb a { - color: #4183C4; -} - -.ui.breadcrumb a:hover { - color: #1e70bf; -} - -/* Icon Divider */ - -.ui.breadcrumb .icon.divider { - font-size: 0.85714286em; - vertical-align: baseline; -} - -/* Section */ - -.ui.breadcrumb a.section { - cursor: pointer; -} - -.ui.breadcrumb .section { - display: inline-block; - margin: 0em; - padding: 0em; -} - -/* Loose Coupling */ - -.ui.breadcrumb.segment { - display: inline-block; - padding: 0.78571429em 1em; -} - -/******************************* - States -*******************************/ - -.ui.breadcrumb .active.section { - font-weight: bold; -} - -/******************************* - Variations -*******************************/ - -.ui.mini.breadcrumb { - font-size: 0.78571429rem; -} - -.ui.tiny.breadcrumb { - font-size: 0.85714286rem; -} - -.ui.small.breadcrumb { - font-size: 0.92857143rem; -} - -.ui.breadcrumb { - font-size: 1rem; -} - -.ui.large.breadcrumb { - font-size: 1.14285714rem; -} - -.ui.big.breadcrumb { - font-size: 1.28571429rem; -} - -.ui.huge.breadcrumb { - font-size: 1.42857143rem; -} - -.ui.massive.breadcrumb { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Form -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Elements -*******************************/ - -/*-------------------- - Form ----------------------*/ - -.ui.form { - position: relative; - max-width: 100%; -} - -/*-------------------- - Content ----------------------*/ - -.ui.form > p { - margin: 1em 0em; -} - -/*-------------------- - Field ----------------------*/ - -.ui.form .field { - clear: both; - margin: 0em 0em 1em; -} - -.ui.form .field:last-child, -.ui.form .fields:last-child .field { - margin-bottom: 0em; -} - -.ui.form .fields .field { - clear: both; - margin: 0em; -} - -/*-------------------- - Labels ----------------------*/ - -.ui.form .field > label { - display: block; - margin: 0em 0em 0.28571429rem 0em; - color: rgba(0, 0, 0, 0.87); - font-size: 0.92857143em; - font-weight: bold; - text-transform: none; -} - -/*-------------------- - Standard Inputs ----------------------*/ - -.ui.form textarea, -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - width: 100%; - vertical-align: top; -} - -/* Set max height on unusual input */ - -.ui.form ::-webkit-datetime-edit, -.ui.form ::-webkit-inner-spin-button { - height: 1.21428571em; -} - -.ui.form input:not([type]), -.ui.form input[type="date"], -.ui.form input[type="datetime-local"], -.ui.form input[type="email"], -.ui.form input[type="number"], -.ui.form input[type="password"], -.ui.form input[type="search"], -.ui.form input[type="tel"], -.ui.form input[type="time"], -.ui.form input[type="text"], -.ui.form input[type="file"], -.ui.form input[type="url"] { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - margin: 0em; - outline: none; - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - line-height: 1.21428571em; - padding: 0.67857143em 1em; - font-size: 1em; - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); - border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: color 0.1s ease, border-color 0.1s ease; - transition: color 0.1s ease, border-color 0.1s ease; -} - -/* Text Area */ - -.ui.form textarea { - margin: 0em; - -webkit-appearance: none; - tap-highlight-color: rgba(255, 255, 255, 0); - padding: 0.78571429em 1em; - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - outline: none; - color: rgba(0, 0, 0, 0.87); - border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: color 0.1s ease, border-color 0.1s ease; - transition: color 0.1s ease, border-color 0.1s ease; - font-size: 1em; - line-height: 1.2857; - resize: vertical; -} - -.ui.form textarea:not([rows]) { - height: 12em; - min-height: 8em; - max-height: 24em; -} - -.ui.form textarea, -.ui.form input[type="checkbox"] { - vertical-align: top; -} - -/*-------------------------- - Input w/ attached Button ----------------------------*/ - -.ui.form input.attached { - width: auto; -} - -/*-------------------- - Basic Select ----------------------*/ - -.ui.form select { - display: block; - height: auto; - width: 100%; - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em transparent inset; - padding: 0.62em 1em; - color: rgba(0, 0, 0, 0.87); - -webkit-transition: color 0.1s ease, border-color 0.1s ease; - transition: color 0.1s ease, border-color 0.1s ease; -} - -/*-------------------- - Dropdown ----------------------*/ - -/* Block */ - -.ui.form .field > .selection.dropdown { - width: 100%; -} - -.ui.form .field > .selection.dropdown > .dropdown.icon { - float: right; -} - -/* Inline */ - -.ui.form .inline.fields .field > .selection.dropdown, -.ui.form .inline.field > .selection.dropdown { - width: auto; -} - -.ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon, -.ui.form .inline.field > .selection.dropdown > .dropdown.icon { - float: none; -} - -/*-------------------- - UI Input ----------------------*/ - -/* Block */ - -.ui.form .field .ui.input, -.ui.form .fields .field .ui.input, -.ui.form .wide.field .ui.input { - width: 100%; -} - -/* Inline */ - -.ui.form .inline.fields .field:not(.wide) .ui.input, -.ui.form .inline.field:not(.wide) .ui.input { - width: auto; - vertical-align: middle; -} - -/* Auto Input */ - -.ui.form .fields .field .ui.input input, -.ui.form .field .ui.input input { - width: auto; -} - -/* Full Width Input */ - -.ui.form .ten.fields .ui.input input, -.ui.form .nine.fields .ui.input input, -.ui.form .eight.fields .ui.input input, -.ui.form .seven.fields .ui.input input, -.ui.form .six.fields .ui.input input, -.ui.form .five.fields .ui.input input, -.ui.form .four.fields .ui.input input, -.ui.form .three.fields .ui.input input, -.ui.form .two.fields .ui.input input, -.ui.form .wide.field .ui.input input { - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - width: 0px; -} - -/*-------------------- - Types of Messages ----------------------*/ - -.ui.form .success.message, -.ui.form .warning.message, -.ui.form .error.message { - display: none; -} - -/* Assumptions */ - -.ui.form .message:first-child { - margin-top: 0px; -} - -/*-------------------- - Validation Prompt ----------------------*/ - -.ui.form .field .prompt.label { - white-space: normal; - background: #FFFFFF !important; - border: 1px solid #E0B4B4 !important; - color: #9F3A38 !important; -} - -.ui.form .inline.fields .field .prompt, -.ui.form .inline.field .prompt { - vertical-align: top; - margin: -0.25em 0em -0.5em 0.5em; -} - -.ui.form .inline.fields .field .prompt:before, -.ui.form .inline.field .prompt:before { - border-width: 0px 0px 1px 1px; - bottom: auto; - right: auto; - top: 50%; - left: 0em; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Autofilled ----------------------*/ - -.ui.form .field.field input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #E5DFA1 !important; -} - -/* Focus */ - -.ui.form .field.field input:-webkit-autofill:focus { - -webkit-box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFFF0 inset !important; - border-color: #D5C315 !important; -} - -/* Error */ - -.ui.form .error.error input:-webkit-autofill { - -webkit-box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - box-shadow: 0px 0px 0px 100px #FFFAF0 inset !important; - border-color: #E0B4B4 !important; -} - -/*-------------------- - Placeholder ----------------------*/ - -/* browsers require these rules separate */ - -.ui.form ::-webkit-input-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -.ui.form :-ms-input-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -.ui.form ::-moz-placeholder { - color: rgba(191, 191, 191, 0.87); -} - -.ui.form :focus::-webkit-input-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -.ui.form :focus:-ms-input-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -.ui.form :focus::-moz-placeholder { - color: rgba(115, 115, 115, 0.87); -} - -/* Error Placeholder */ - -.ui.form .error ::-webkit-input-placeholder { - color: #e7bdbc; -} - -.ui.form .error :-ms-input-placeholder { - color: #e7bdbc !important; -} - -.ui.form .error ::-moz-placeholder { - color: #e7bdbc; -} - -.ui.form .error :focus::-webkit-input-placeholder { - color: #da9796; -} - -.ui.form .error :focus:-ms-input-placeholder { - color: #da9796 !important; -} - -.ui.form .error :focus::-moz-placeholder { - color: #da9796; -} - -/*-------------------- - Focus ----------------------*/ - -.ui.form input:not([type]):focus, -.ui.form input[type="date"]:focus, -.ui.form input[type="datetime-local"]:focus, -.ui.form input[type="email"]:focus, -.ui.form input[type="number"]:focus, -.ui.form input[type="password"]:focus, -.ui.form input[type="search"]:focus, -.ui.form input[type="tel"]:focus, -.ui.form input[type="time"]:focus, -.ui.form input[type="text"]:focus, -.ui.form input[type="file"]:focus, -.ui.form input[type="url"]:focus { - color: rgba(0, 0, 0, 0.95); - border-color: #85B7D9; - border-radius: 0.28571429rem; - background: #FFFFFF; - -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; -} - -.ui.form textarea:focus { - color: rgba(0, 0, 0, 0.95); - border-color: #85B7D9; - border-radius: 0.28571429rem; - background: #FFFFFF; - -webkit-box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset; - -webkit-appearance: none; -} - -/*-------------------- - Success ----------------------*/ - -/* On Form */ - -.ui.form.success .success.message:not(:empty) { - display: block; -} - -.ui.form.success .compact.success.message:not(:empty) { - display: inline-block; -} - -.ui.form.success .icon.success.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -/*-------------------- - Warning ----------------------*/ - -/* On Form */ - -.ui.form.warning .warning.message:not(:empty) { - display: block; -} - -.ui.form.warning .compact.warning.message:not(:empty) { - display: inline-block; -} - -.ui.form.warning .icon.warning.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -/*-------------------- - Error ----------------------*/ - -/* On Form */ - -.ui.form.error .error.message:not(:empty) { - display: block; -} - -.ui.form.error .compact.error.message:not(:empty) { - display: inline-block; -} - -.ui.form.error .icon.error.message:not(:empty) { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -/* On Field(s) */ - -.ui.form .fields.error .field label, -.ui.form .field.error label, -.ui.form .fields.error .field .input, -.ui.form .field.error .input { - color: #9F3A38; -} - -.ui.form .fields.error .field .corner.label, -.ui.form .field.error .corner.label { - border-color: #9F3A38; - color: #FFFFFF; -} - -.ui.form .fields.error .field textarea, -.ui.form .fields.error .field select, -.ui.form .fields.error .field input:not([type]), -.ui.form .fields.error .field input[type="date"], -.ui.form .fields.error .field input[type="datetime-local"], -.ui.form .fields.error .field input[type="email"], -.ui.form .fields.error .field input[type="number"], -.ui.form .fields.error .field input[type="password"], -.ui.form .fields.error .field input[type="search"], -.ui.form .fields.error .field input[type="tel"], -.ui.form .fields.error .field input[type="time"], -.ui.form .fields.error .field input[type="text"], -.ui.form .fields.error .field input[type="file"], -.ui.form .fields.error .field input[type="url"], -.ui.form .field.error textarea, -.ui.form .field.error select, -.ui.form .field.error input:not([type]), -.ui.form .field.error input[type="date"], -.ui.form .field.error input[type="datetime-local"], -.ui.form .field.error input[type="email"], -.ui.form .field.error input[type="number"], -.ui.form .field.error input[type="password"], -.ui.form .field.error input[type="search"], -.ui.form .field.error input[type="tel"], -.ui.form .field.error input[type="time"], -.ui.form .field.error input[type="text"], -.ui.form .field.error input[type="file"], -.ui.form .field.error input[type="url"] { - background: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - border-radius: ''; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.form .field.error textarea:focus, -.ui.form .field.error select:focus, -.ui.form .field.error input:not([type]):focus, -.ui.form .field.error input[type="date"]:focus, -.ui.form .field.error input[type="datetime-local"]:focus, -.ui.form .field.error input[type="email"]:focus, -.ui.form .field.error input[type="number"]:focus, -.ui.form .field.error input[type="password"]:focus, -.ui.form .field.error input[type="search"]:focus, -.ui.form .field.error input[type="tel"]:focus, -.ui.form .field.error input[type="time"]:focus, -.ui.form .field.error input[type="text"]:focus, -.ui.form .field.error input[type="file"]:focus, -.ui.form .field.error input[type="url"]:focus { - background: #FFF6F6; - border-color: #E0B4B4; - color: #9F3A38; - -webkit-appearance: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Preserve Native Select Stylings */ - -.ui.form .field.error select { - -webkit-appearance: menulist-button; -} - -/*------------------ - Dropdown Error ---------------------*/ - -.ui.form .fields.error .field .ui.dropdown, -.ui.form .fields.error .field .ui.dropdown .item, -.ui.form .field.error .ui.dropdown, -.ui.form .field.error .ui.dropdown .text, -.ui.form .field.error .ui.dropdown .item { - background: #FFF6F6; - color: #9F3A38; -} - -.ui.form .fields.error .field .ui.dropdown, -.ui.form .field.error .ui.dropdown { - border-color: #E0B4B4 !important; -} - -.ui.form .fields.error .field .ui.dropdown:hover, -.ui.form .field.error .ui.dropdown:hover { - border-color: #E0B4B4 !important; -} - -.ui.form .fields.error .field .ui.dropdown:hover .menu, -.ui.form .field.error .ui.dropdown:hover .menu { - border-color: #E0B4B4; -} - -.ui.form .fields.error .field .ui.multiple.selection.dropdown > .label, -.ui.form .field.error .ui.multiple.selection.dropdown > .label { - background-color: #EACBCB; - color: #9F3A38; -} - -/* Hover */ - -.ui.form .fields.error .field .ui.dropdown .menu .item:hover, -.ui.form .field.error .ui.dropdown .menu .item:hover { - background-color: #FBE7E7; -} - -/* Selected */ - -.ui.form .fields.error .field .ui.dropdown .menu .selected.item, -.ui.form .field.error .ui.dropdown .menu .selected.item { - background-color: #FBE7E7; -} - -/* Active */ - -.ui.form .fields.error .field .ui.dropdown .menu .active.item, -.ui.form .field.error .ui.dropdown .menu .active.item { - background-color: #FDCFCF !important; -} - -/*-------------------- - Checkbox Error ----------------------*/ - -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box { - color: #9F3A38; -} - -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) label:before, -.ui.form .fields.error .field .checkbox:not(.toggle):not(.slider) .box:before, -.ui.form .field.error .checkbox:not(.toggle):not(.slider) .box:before { - background: #FFF6F6; - border-color: #E0B4B4; -} - -.ui.form .fields.error .field .checkbox label:after, -.ui.form .field.error .checkbox label:after, -.ui.form .fields.error .field .checkbox .box:after, -.ui.form .field.error .checkbox .box:after { - color: #9F3A38; -} - -/*-------------------- - Disabled ----------------------*/ - -.ui.form .disabled.fields .field, -.ui.form .disabled.field, -.ui.form .field :disabled { - pointer-events: none; - opacity: 0.45; -} - -.ui.form .field.disabled > label, -.ui.form .fields.disabled > label { - opacity: 0.45; -} - -.ui.form .field.disabled :disabled { - opacity: 1; -} - -/*-------------- - Loading ----------------*/ - -.ui.loading.form { - position: relative; - cursor: default; - pointer-events: none; -} - -.ui.loading.form:before { - position: absolute; - content: ''; - top: 0%; - left: 0%; - background: rgba(255, 255, 255, 0.8); - width: 100%; - height: 100%; - z-index: 100; -} - -.ui.loading.form:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -1.5em 0em 0em -1.5em; - width: 3em; - height: 3em; - -webkit-animation: form-spin 0.6s linear; - animation: form-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1); - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - visibility: visible; - z-index: 101; -} - -@-webkit-keyframes form-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes form-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/******************************* - Element Types -*******************************/ - -/*-------------------- - Required Field ----------------------*/ - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after, -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - margin: -0.2em 0em 0em 0.2em; - content: '*'; - color: #DB2828; -} - -.ui.form .required.fields:not(.grouped) > .field > label:after, -.ui.form .required.fields.grouped > label:after, -.ui.form .required.field > label:after { - display: inline-block; - vertical-align: top; -} - -.ui.form .required.fields:not(.grouped) > .field > .checkbox:after, -.ui.form .required.field > .checkbox:after { - position: absolute; - top: 0%; - left: 100%; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Inverted Colors ----------------------*/ - -.ui.inverted.form label, -.ui.form .inverted.segment label, -.ui.form .inverted.segment .ui.checkbox label, -.ui.form .inverted.segment .ui.checkbox .box, -.ui.inverted.form .ui.checkbox label, -.ui.inverted.form .ui.checkbox .box, -.ui.inverted.form .inline.fields > label, -.ui.inverted.form .inline.fields .field > label, -.ui.inverted.form .inline.fields .field > p, -.ui.inverted.form .inline.field > label, -.ui.inverted.form .inline.field > p { - color: rgba(255, 255, 255, 0.9); -} - -/* Inverted Field */ - -.ui.inverted.form input:not([type]), -.ui.inverted.form input[type="date"], -.ui.inverted.form input[type="datetime-local"], -.ui.inverted.form input[type="email"], -.ui.inverted.form input[type="number"], -.ui.inverted.form input[type="password"], -.ui.inverted.form input[type="search"], -.ui.inverted.form input[type="tel"], -.ui.inverted.form input[type="time"], -.ui.inverted.form input[type="text"], -.ui.inverted.form input[type="file"], -.ui.inverted.form input[type="url"] { - background: #FFFFFF; - border-color: rgba(255, 255, 255, 0.1); - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; -} - -/*-------------------- - Field Groups ----------------------*/ - -/* Grouped Vertically */ - -.ui.form .grouped.fields { - display: block; - margin: 0em 0em 1em; -} - -.ui.form .grouped.fields:last-child { - margin-bottom: 0em; -} - -.ui.form .grouped.fields > label { - margin: 0em 0em 0.28571429rem 0em; - color: rgba(0, 0, 0, 0.87); - font-size: 0.92857143em; - font-weight: bold; - text-transform: none; -} - -.ui.form .grouped.fields .field, -.ui.form .grouped.inline.fields .field { - display: block; - margin: 0.5em 0em; - padding: 0em; -} - -/*-------------------- - Fields ----------------------*/ - -/* Split fields */ - -.ui.form .fields { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - margin: 0em -0.5em 1em; -} - -.ui.form .fields > .field { - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.form .fields > .field:first-child { - border-left: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Other Combinations */ - -.ui.form .two.fields > .fields, -.ui.form .two.fields > .field { - width: 50%; -} - -.ui.form .three.fields > .fields, -.ui.form .three.fields > .field { - width: 33.33333333%; -} - -.ui.form .four.fields > .fields, -.ui.form .four.fields > .field { - width: 25%; -} - -.ui.form .five.fields > .fields, -.ui.form .five.fields > .field { - width: 20%; -} - -.ui.form .six.fields > .fields, -.ui.form .six.fields > .field { - width: 16.66666667%; -} - -.ui.form .seven.fields > .fields, -.ui.form .seven.fields > .field { - width: 14.28571429%; -} - -.ui.form .eight.fields > .fields, -.ui.form .eight.fields > .field { - width: 12.5%; -} - -.ui.form .nine.fields > .fields, -.ui.form .nine.fields > .field { - width: 11.11111111%; -} - -.ui.form .ten.fields > .fields, -.ui.form .ten.fields > .field { - width: 10%; -} - -/* Swap to full width on mobile */ - -@media only screen and (max-width: 767px) { - .ui.form .fields { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .ui[class*="equal width"].form:not(.unstackable) .fields > .field, - .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field { - width: 100% !important; - margin: 0em 0em 1em; - } -} - -/* Sizing Combinations */ - -.ui.form .fields .wide.field { - width: 6.25%; - padding-left: 0.5em; - padding-right: 0.5em; -} - -.ui.form .one.wide.field { - width: 6.25% !important; -} - -.ui.form .two.wide.field { - width: 12.5% !important; -} - -.ui.form .three.wide.field { - width: 18.75% !important; -} - -.ui.form .four.wide.field { - width: 25% !important; -} - -.ui.form .five.wide.field { - width: 31.25% !important; -} - -.ui.form .six.wide.field { - width: 37.5% !important; -} - -.ui.form .seven.wide.field { - width: 43.75% !important; -} - -.ui.form .eight.wide.field { - width: 50% !important; -} - -.ui.form .nine.wide.field { - width: 56.25% !important; -} - -.ui.form .ten.wide.field { - width: 62.5% !important; -} - -.ui.form .eleven.wide.field { - width: 68.75% !important; -} - -.ui.form .twelve.wide.field { - width: 75% !important; -} - -.ui.form .thirteen.wide.field { - width: 81.25% !important; -} - -.ui.form .fourteen.wide.field { - width: 87.5% !important; -} - -.ui.form .fifteen.wide.field { - width: 93.75% !important; -} - -.ui.form .sixteen.wide.field { - width: 100% !important; -} - -/* Swap to full width on mobile */ - -@media only screen and (max-width: 767px) { - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields, - .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field, - .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field { - width: 100% !important; - } - - .ui.form .fields { - margin-bottom: 0em; - } -} - -/*-------------------- - Equal Width ----------------------*/ - -.ui[class*="equal width"].form .fields > .field, -.ui.form [class*="equal width"].fields > .field { - width: 100%; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; -} - -/*-------------------- - Inline Fields ----------------------*/ - -.ui.form .inline.fields { - margin: 0em 0em 1em; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.form .inline.fields .field { - margin: 0em; - padding: 0em 1em 0em 0em; -} - -/* Inline Label */ - -.ui.form .inline.fields > label, -.ui.form .inline.fields .field > label, -.ui.form .inline.fields .field > p, -.ui.form .inline.field > label, -.ui.form .inline.field > p { - display: inline-block; - width: auto; - margin-top: 0em; - margin-bottom: 0em; - vertical-align: baseline; - font-size: 0.92857143em; - font-weight: bold; - color: rgba(0, 0, 0, 0.87); - text-transform: none; -} - -/* Grouped Inline Label */ - -.ui.form .inline.fields > label { - margin: 0.035714em 1em 0em 0em; -} - -/* Inline Input */ - -.ui.form .inline.fields .field > input, -.ui.form .inline.fields .field > select, -.ui.form .inline.field > input, -.ui.form .inline.field > select { - display: inline-block; - width: auto; - margin-top: 0em; - margin-bottom: 0em; - vertical-align: middle; - font-size: 1em; -} - -/* Label */ - -.ui.form .inline.fields .field > :first-child, -.ui.form .inline.field > :first-child { - margin: 0em 0.85714286em 0em 0em; -} - -.ui.form .inline.fields .field > :only-child, -.ui.form .inline.field > :only-child { - margin: 0em; -} - -/* Wide */ - -.ui.form .inline.fields .wide.field { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.form .inline.fields .wide.field > input, -.ui.form .inline.fields .wide.field > select { - width: 100%; -} - -/*-------------------- - Sizes ----------------------*/ - -.ui.mini.form { - font-size: 0.78571429rem; -} - -.ui.tiny.form { - font-size: 0.85714286rem; -} - -.ui.small.form { - font-size: 0.92857143rem; -} - -.ui.form { - font-size: 1rem; -} - -.ui.large.form { - font-size: 1.14285714rem; -} - -.ui.big.form { - font-size: 1.28571429rem; -} - -.ui.huge.form { - font-size: 1.42857143rem; -} - -.ui.massive.form { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Grid -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -.ui.grid { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - padding: 0em; -} - -/*---------------------- - Remove Gutters ------------------------*/ - -.ui.grid { - margin-top: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; - margin-right: -1rem; -} - -.ui.relaxed.grid { - margin-left: -1.5rem; - margin-right: -1.5rem; -} - -.ui[class*="very relaxed"].grid { - margin-left: -2.5rem; - margin-right: -2.5rem; -} - -/* Preserve Rows Spacing on Consecutive Grids */ - -.ui.grid + .grid { - margin-top: 1rem; -} - -/*------------------- - Columns ---------------------*/ - -/* Standard 16 column */ - -.ui.grid > .column:not(.row), -.ui.grid > .row > .column { - position: relative; - display: inline-block; - width: 6.25%; - padding-left: 1rem; - padding-right: 1rem; - vertical-align: top; -} - -.ui.grid > * { - padding-left: 1rem; - padding-right: 1rem; -} - -/*------------------- - Rows ---------------------*/ - -.ui.grid > .row { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: inherit; - -ms-flex-pack: inherit; - justify-content: inherit; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100% !important; - padding: 0rem; - padding-top: 1rem; - padding-bottom: 1rem; -} - -/*------------------- - Columns ---------------------*/ - -/* Vertical padding when no rows */ - -.ui.grid > .column:not(.row) { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.ui.grid > .row > .column { - margin-top: 0em; - margin-bottom: 0em; -} - -/*------------------- - Content ---------------------*/ - -.ui.grid > .row > img, -.ui.grid > .row > .column > img { - max-width: 100%; -} - -/*------------------- - Loose Coupling ---------------------*/ - -/* Collapse Margin on Consecutive Grid */ - -.ui.grid > .ui.grid:first-child { - margin-top: 0em; -} - -.ui.grid > .ui.grid:last-child { - margin-bottom: 0em; -} - -/* Segment inside Aligned Grid */ - -.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached), -.ui.aligned.grid .column > .segment:not(.compact):not(.attached) { - width: 100%; -} - -/* Align Dividers with Gutter */ - -.ui.grid .row + .ui.divider { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - margin: 1rem 1rem; -} - -.ui.grid .column + .ui.vertical.divider { - height: calc(50% - 1rem ); -} - -/* Remove Border on Last Horizontal Segment */ - -.ui.grid > .row > .column:last-child > .horizontal.segment, -.ui.grid > .column:last-child > .horizontal.segment { - -webkit-box-shadow: none; - box-shadow: none; -} - -/******************************* - Variations -*******************************/ - -/*----------------------- - Page Grid --------------------------*/ - -@media only screen and (max-width: 767px) { - .ui.page.grid { - width: auto; - padding-left: 0em; - padding-right: 0em; - margin-left: 0em; - margin-right: 0em; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 2em; - padding-right: 2em; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 3%; - padding-right: 3%; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 15%; - padding-right: 15%; - } -} - -@media only screen and (min-width: 1920px) { - .ui.page.grid { - width: auto; - margin-left: 0em; - margin-right: 0em; - padding-left: 23%; - padding-right: 23%; - } -} - -/*------------------- - Column Count ---------------------*/ - -/* Assume full width with one column */ - -.ui.grid > .column:only-child, -.ui.grid > .row > .column:only-child { - width: 100%; -} - -/* Grid Based */ - -.ui[class*="one column"].grid > .row > .column, -.ui[class*="one column"].grid > .column:not(.row) { - width: 100%; -} - -.ui[class*="two column"].grid > .row > .column, -.ui[class*="two column"].grid > .column:not(.row) { - width: 50%; -} - -.ui[class*="three column"].grid > .row > .column, -.ui[class*="three column"].grid > .column:not(.row) { - width: 33.33333333%; -} - -.ui[class*="four column"].grid > .row > .column, -.ui[class*="four column"].grid > .column:not(.row) { - width: 25%; -} - -.ui[class*="five column"].grid > .row > .column, -.ui[class*="five column"].grid > .column:not(.row) { - width: 20%; -} - -.ui[class*="six column"].grid > .row > .column, -.ui[class*="six column"].grid > .column:not(.row) { - width: 16.66666667%; -} - -.ui[class*="seven column"].grid > .row > .column, -.ui[class*="seven column"].grid > .column:not(.row) { - width: 14.28571429%; -} - -.ui[class*="eight column"].grid > .row > .column, -.ui[class*="eight column"].grid > .column:not(.row) { - width: 12.5%; -} - -.ui[class*="nine column"].grid > .row > .column, -.ui[class*="nine column"].grid > .column:not(.row) { - width: 11.11111111%; -} - -.ui[class*="ten column"].grid > .row > .column, -.ui[class*="ten column"].grid > .column:not(.row) { - width: 10%; -} - -.ui[class*="eleven column"].grid > .row > .column, -.ui[class*="eleven column"].grid > .column:not(.row) { - width: 9.09090909%; -} - -.ui[class*="twelve column"].grid > .row > .column, -.ui[class*="twelve column"].grid > .column:not(.row) { - width: 8.33333333%; -} - -.ui[class*="thirteen column"].grid > .row > .column, -.ui[class*="thirteen column"].grid > .column:not(.row) { - width: 7.69230769%; -} - -.ui[class*="fourteen column"].grid > .row > .column, -.ui[class*="fourteen column"].grid > .column:not(.row) { - width: 7.14285714%; -} - -.ui[class*="fifteen column"].grid > .row > .column, -.ui[class*="fifteen column"].grid > .column:not(.row) { - width: 6.66666667%; -} - -.ui[class*="sixteen column"].grid > .row > .column, -.ui[class*="sixteen column"].grid > .column:not(.row) { - width: 6.25%; -} - -/* Row Based Overrides */ - -.ui.grid > [class*="one column"].row > .column { - width: 100% !important; -} - -.ui.grid > [class*="two column"].row > .column { - width: 50% !important; -} - -.ui.grid > [class*="three column"].row > .column { - width: 33.33333333% !important; -} - -.ui.grid > [class*="four column"].row > .column { - width: 25% !important; -} - -.ui.grid > [class*="five column"].row > .column { - width: 20% !important; -} - -.ui.grid > [class*="six column"].row > .column { - width: 16.66666667% !important; -} - -.ui.grid > [class*="seven column"].row > .column { - width: 14.28571429% !important; -} - -.ui.grid > [class*="eight column"].row > .column { - width: 12.5% !important; -} - -.ui.grid > [class*="nine column"].row > .column { - width: 11.11111111% !important; -} - -.ui.grid > [class*="ten column"].row > .column { - width: 10% !important; -} - -.ui.grid > [class*="eleven column"].row > .column { - width: 9.09090909% !important; -} - -.ui.grid > [class*="twelve column"].row > .column { - width: 8.33333333% !important; -} - -.ui.grid > [class*="thirteen column"].row > .column { - width: 7.69230769% !important; -} - -.ui.grid > [class*="fourteen column"].row > .column { - width: 7.14285714% !important; -} - -.ui.grid > [class*="fifteen column"].row > .column { - width: 6.66666667% !important; -} - -.ui.grid > [class*="sixteen column"].row > .column { - width: 6.25% !important; -} - -/* Celled Page */ - -.ui.celled.page.grid { - -webkit-box-shadow: none; - box-shadow: none; -} - -/*------------------- - Column Width ---------------------*/ - -/* Sizing Combinations */ - -.ui.grid > .row > [class*="one wide"].column, -.ui.grid > .column.row > [class*="one wide"].column, -.ui.grid > [class*="one wide"].column, -.ui.column.grid > [class*="one wide"].column { - width: 6.25% !important; -} - -.ui.grid > .row > [class*="two wide"].column, -.ui.grid > .column.row > [class*="two wide"].column, -.ui.grid > [class*="two wide"].column, -.ui.column.grid > [class*="two wide"].column { - width: 12.5% !important; -} - -.ui.grid > .row > [class*="three wide"].column, -.ui.grid > .column.row > [class*="three wide"].column, -.ui.grid > [class*="three wide"].column, -.ui.column.grid > [class*="three wide"].column { - width: 18.75% !important; -} - -.ui.grid > .row > [class*="four wide"].column, -.ui.grid > .column.row > [class*="four wide"].column, -.ui.grid > [class*="four wide"].column, -.ui.column.grid > [class*="four wide"].column { - width: 25% !important; -} - -.ui.grid > .row > [class*="five wide"].column, -.ui.grid > .column.row > [class*="five wide"].column, -.ui.grid > [class*="five wide"].column, -.ui.column.grid > [class*="five wide"].column { - width: 31.25% !important; -} - -.ui.grid > .row > [class*="six wide"].column, -.ui.grid > .column.row > [class*="six wide"].column, -.ui.grid > [class*="six wide"].column, -.ui.column.grid > [class*="six wide"].column { - width: 37.5% !important; -} - -.ui.grid > .row > [class*="seven wide"].column, -.ui.grid > .column.row > [class*="seven wide"].column, -.ui.grid > [class*="seven wide"].column, -.ui.column.grid > [class*="seven wide"].column { - width: 43.75% !important; -} - -.ui.grid > .row > [class*="eight wide"].column, -.ui.grid > .column.row > [class*="eight wide"].column, -.ui.grid > [class*="eight wide"].column, -.ui.column.grid > [class*="eight wide"].column { - width: 50% !important; -} - -.ui.grid > .row > [class*="nine wide"].column, -.ui.grid > .column.row > [class*="nine wide"].column, -.ui.grid > [class*="nine wide"].column, -.ui.column.grid > [class*="nine wide"].column { - width: 56.25% !important; -} - -.ui.grid > .row > [class*="ten wide"].column, -.ui.grid > .column.row > [class*="ten wide"].column, -.ui.grid > [class*="ten wide"].column, -.ui.column.grid > [class*="ten wide"].column { - width: 62.5% !important; -} - -.ui.grid > .row > [class*="eleven wide"].column, -.ui.grid > .column.row > [class*="eleven wide"].column, -.ui.grid > [class*="eleven wide"].column, -.ui.column.grid > [class*="eleven wide"].column { - width: 68.75% !important; -} - -.ui.grid > .row > [class*="twelve wide"].column, -.ui.grid > .column.row > [class*="twelve wide"].column, -.ui.grid > [class*="twelve wide"].column, -.ui.column.grid > [class*="twelve wide"].column { - width: 75% !important; -} - -.ui.grid > .row > [class*="thirteen wide"].column, -.ui.grid > .column.row > [class*="thirteen wide"].column, -.ui.grid > [class*="thirteen wide"].column, -.ui.column.grid > [class*="thirteen wide"].column { - width: 81.25% !important; -} - -.ui.grid > .row > [class*="fourteen wide"].column, -.ui.grid > .column.row > [class*="fourteen wide"].column, -.ui.grid > [class*="fourteen wide"].column, -.ui.column.grid > [class*="fourteen wide"].column { - width: 87.5% !important; -} - -.ui.grid > .row > [class*="fifteen wide"].column, -.ui.grid > .column.row > [class*="fifteen wide"].column, -.ui.grid > [class*="fifteen wide"].column, -.ui.column.grid > [class*="fifteen wide"].column { - width: 93.75% !important; -} - -.ui.grid > .row > [class*="sixteen wide"].column, -.ui.grid > .column.row > [class*="sixteen wide"].column, -.ui.grid > [class*="sixteen wide"].column, -.ui.column.grid > [class*="sixteen wide"].column { - width: 100% !important; -} - -/*---------------------- - Width per Device ------------------------*/ - -/* Mobile Sizing Combinations */ - -@media only screen and (min-width: 320px) and (max-width: 767px) { - .ui.grid > .row > [class*="one wide mobile"].column, - .ui.grid > .column.row > [class*="one wide mobile"].column, - .ui.grid > [class*="one wide mobile"].column, - .ui.column.grid > [class*="one wide mobile"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide mobile"].column, - .ui.grid > .column.row > [class*="two wide mobile"].column, - .ui.grid > [class*="two wide mobile"].column, - .ui.column.grid > [class*="two wide mobile"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide mobile"].column, - .ui.grid > .column.row > [class*="three wide mobile"].column, - .ui.grid > [class*="three wide mobile"].column, - .ui.column.grid > [class*="three wide mobile"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide mobile"].column, - .ui.grid > .column.row > [class*="four wide mobile"].column, - .ui.grid > [class*="four wide mobile"].column, - .ui.column.grid > [class*="four wide mobile"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide mobile"].column, - .ui.grid > .column.row > [class*="five wide mobile"].column, - .ui.grid > [class*="five wide mobile"].column, - .ui.column.grid > [class*="five wide mobile"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide mobile"].column, - .ui.grid > .column.row > [class*="six wide mobile"].column, - .ui.grid > [class*="six wide mobile"].column, - .ui.column.grid > [class*="six wide mobile"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide mobile"].column, - .ui.grid > .column.row > [class*="seven wide mobile"].column, - .ui.grid > [class*="seven wide mobile"].column, - .ui.column.grid > [class*="seven wide mobile"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide mobile"].column, - .ui.grid > .column.row > [class*="eight wide mobile"].column, - .ui.grid > [class*="eight wide mobile"].column, - .ui.column.grid > [class*="eight wide mobile"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide mobile"].column, - .ui.grid > .column.row > [class*="nine wide mobile"].column, - .ui.grid > [class*="nine wide mobile"].column, - .ui.column.grid > [class*="nine wide mobile"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide mobile"].column, - .ui.grid > .column.row > [class*="ten wide mobile"].column, - .ui.grid > [class*="ten wide mobile"].column, - .ui.column.grid > [class*="ten wide mobile"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide mobile"].column, - .ui.grid > .column.row > [class*="eleven wide mobile"].column, - .ui.grid > [class*="eleven wide mobile"].column, - .ui.column.grid > [class*="eleven wide mobile"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide mobile"].column, - .ui.grid > .column.row > [class*="twelve wide mobile"].column, - .ui.grid > [class*="twelve wide mobile"].column, - .ui.column.grid > [class*="twelve wide mobile"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide mobile"].column, - .ui.grid > .column.row > [class*="thirteen wide mobile"].column, - .ui.grid > [class*="thirteen wide mobile"].column, - .ui.column.grid > [class*="thirteen wide mobile"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide mobile"].column, - .ui.grid > .column.row > [class*="fourteen wide mobile"].column, - .ui.grid > [class*="fourteen wide mobile"].column, - .ui.column.grid > [class*="fourteen wide mobile"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide mobile"].column, - .ui.grid > .column.row > [class*="fifteen wide mobile"].column, - .ui.grid > [class*="fifteen wide mobile"].column, - .ui.column.grid > [class*="fifteen wide mobile"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide mobile"].column, - .ui.grid > .column.row > [class*="sixteen wide mobile"].column, - .ui.grid > [class*="sixteen wide mobile"].column, - .ui.column.grid > [class*="sixteen wide mobile"].column { - width: 100% !important; - } -} - -/* Tablet Sizing Combinations */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.grid > .row > [class*="one wide tablet"].column, - .ui.grid > .column.row > [class*="one wide tablet"].column, - .ui.grid > [class*="one wide tablet"].column, - .ui.column.grid > [class*="one wide tablet"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide tablet"].column, - .ui.grid > .column.row > [class*="two wide tablet"].column, - .ui.grid > [class*="two wide tablet"].column, - .ui.column.grid > [class*="two wide tablet"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide tablet"].column, - .ui.grid > .column.row > [class*="three wide tablet"].column, - .ui.grid > [class*="three wide tablet"].column, - .ui.column.grid > [class*="three wide tablet"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide tablet"].column, - .ui.grid > .column.row > [class*="four wide tablet"].column, - .ui.grid > [class*="four wide tablet"].column, - .ui.column.grid > [class*="four wide tablet"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide tablet"].column, - .ui.grid > .column.row > [class*="five wide tablet"].column, - .ui.grid > [class*="five wide tablet"].column, - .ui.column.grid > [class*="five wide tablet"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide tablet"].column, - .ui.grid > .column.row > [class*="six wide tablet"].column, - .ui.grid > [class*="six wide tablet"].column, - .ui.column.grid > [class*="six wide tablet"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide tablet"].column, - .ui.grid > .column.row > [class*="seven wide tablet"].column, - .ui.grid > [class*="seven wide tablet"].column, - .ui.column.grid > [class*="seven wide tablet"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide tablet"].column, - .ui.grid > .column.row > [class*="eight wide tablet"].column, - .ui.grid > [class*="eight wide tablet"].column, - .ui.column.grid > [class*="eight wide tablet"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide tablet"].column, - .ui.grid > .column.row > [class*="nine wide tablet"].column, - .ui.grid > [class*="nine wide tablet"].column, - .ui.column.grid > [class*="nine wide tablet"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide tablet"].column, - .ui.grid > .column.row > [class*="ten wide tablet"].column, - .ui.grid > [class*="ten wide tablet"].column, - .ui.column.grid > [class*="ten wide tablet"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide tablet"].column, - .ui.grid > .column.row > [class*="eleven wide tablet"].column, - .ui.grid > [class*="eleven wide tablet"].column, - .ui.column.grid > [class*="eleven wide tablet"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide tablet"].column, - .ui.grid > .column.row > [class*="twelve wide tablet"].column, - .ui.grid > [class*="twelve wide tablet"].column, - .ui.column.grid > [class*="twelve wide tablet"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide tablet"].column, - .ui.grid > .column.row > [class*="thirteen wide tablet"].column, - .ui.grid > [class*="thirteen wide tablet"].column, - .ui.column.grid > [class*="thirteen wide tablet"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide tablet"].column, - .ui.grid > .column.row > [class*="fourteen wide tablet"].column, - .ui.grid > [class*="fourteen wide tablet"].column, - .ui.column.grid > [class*="fourteen wide tablet"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide tablet"].column, - .ui.grid > .column.row > [class*="fifteen wide tablet"].column, - .ui.grid > [class*="fifteen wide tablet"].column, - .ui.column.grid > [class*="fifteen wide tablet"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide tablet"].column, - .ui.grid > .column.row > [class*="sixteen wide tablet"].column, - .ui.grid > [class*="sixteen wide tablet"].column, - .ui.column.grid > [class*="sixteen wide tablet"].column { - width: 100% !important; - } -} - -/* Computer/Desktop Sizing Combinations */ - -@media only screen and (min-width: 992px) { - .ui.grid > .row > [class*="one wide computer"].column, - .ui.grid > .column.row > [class*="one wide computer"].column, - .ui.grid > [class*="one wide computer"].column, - .ui.column.grid > [class*="one wide computer"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide computer"].column, - .ui.grid > .column.row > [class*="two wide computer"].column, - .ui.grid > [class*="two wide computer"].column, - .ui.column.grid > [class*="two wide computer"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide computer"].column, - .ui.grid > .column.row > [class*="three wide computer"].column, - .ui.grid > [class*="three wide computer"].column, - .ui.column.grid > [class*="three wide computer"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide computer"].column, - .ui.grid > .column.row > [class*="four wide computer"].column, - .ui.grid > [class*="four wide computer"].column, - .ui.column.grid > [class*="four wide computer"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide computer"].column, - .ui.grid > .column.row > [class*="five wide computer"].column, - .ui.grid > [class*="five wide computer"].column, - .ui.column.grid > [class*="five wide computer"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide computer"].column, - .ui.grid > .column.row > [class*="six wide computer"].column, - .ui.grid > [class*="six wide computer"].column, - .ui.column.grid > [class*="six wide computer"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide computer"].column, - .ui.grid > .column.row > [class*="seven wide computer"].column, - .ui.grid > [class*="seven wide computer"].column, - .ui.column.grid > [class*="seven wide computer"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide computer"].column, - .ui.grid > .column.row > [class*="eight wide computer"].column, - .ui.grid > [class*="eight wide computer"].column, - .ui.column.grid > [class*="eight wide computer"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide computer"].column, - .ui.grid > .column.row > [class*="nine wide computer"].column, - .ui.grid > [class*="nine wide computer"].column, - .ui.column.grid > [class*="nine wide computer"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide computer"].column, - .ui.grid > .column.row > [class*="ten wide computer"].column, - .ui.grid > [class*="ten wide computer"].column, - .ui.column.grid > [class*="ten wide computer"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide computer"].column, - .ui.grid > .column.row > [class*="eleven wide computer"].column, - .ui.grid > [class*="eleven wide computer"].column, - .ui.column.grid > [class*="eleven wide computer"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide computer"].column, - .ui.grid > .column.row > [class*="twelve wide computer"].column, - .ui.grid > [class*="twelve wide computer"].column, - .ui.column.grid > [class*="twelve wide computer"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide computer"].column, - .ui.grid > .column.row > [class*="thirteen wide computer"].column, - .ui.grid > [class*="thirteen wide computer"].column, - .ui.column.grid > [class*="thirteen wide computer"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide computer"].column, - .ui.grid > .column.row > [class*="fourteen wide computer"].column, - .ui.grid > [class*="fourteen wide computer"].column, - .ui.column.grid > [class*="fourteen wide computer"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide computer"].column, - .ui.grid > .column.row > [class*="fifteen wide computer"].column, - .ui.grid > [class*="fifteen wide computer"].column, - .ui.column.grid > [class*="fifteen wide computer"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide computer"].column, - .ui.grid > .column.row > [class*="sixteen wide computer"].column, - .ui.grid > [class*="sixteen wide computer"].column, - .ui.column.grid > [class*="sixteen wide computer"].column { - width: 100% !important; - } -} - -/* Large Monitor Sizing Combinations */ - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui.grid > .row > [class*="one wide large screen"].column, - .ui.grid > .column.row > [class*="one wide large screen"].column, - .ui.grid > [class*="one wide large screen"].column, - .ui.column.grid > [class*="one wide large screen"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide large screen"].column, - .ui.grid > .column.row > [class*="two wide large screen"].column, - .ui.grid > [class*="two wide large screen"].column, - .ui.column.grid > [class*="two wide large screen"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide large screen"].column, - .ui.grid > .column.row > [class*="three wide large screen"].column, - .ui.grid > [class*="three wide large screen"].column, - .ui.column.grid > [class*="three wide large screen"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide large screen"].column, - .ui.grid > .column.row > [class*="four wide large screen"].column, - .ui.grid > [class*="four wide large screen"].column, - .ui.column.grid > [class*="four wide large screen"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide large screen"].column, - .ui.grid > .column.row > [class*="five wide large screen"].column, - .ui.grid > [class*="five wide large screen"].column, - .ui.column.grid > [class*="five wide large screen"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide large screen"].column, - .ui.grid > .column.row > [class*="six wide large screen"].column, - .ui.grid > [class*="six wide large screen"].column, - .ui.column.grid > [class*="six wide large screen"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide large screen"].column, - .ui.grid > .column.row > [class*="seven wide large screen"].column, - .ui.grid > [class*="seven wide large screen"].column, - .ui.column.grid > [class*="seven wide large screen"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide large screen"].column, - .ui.grid > .column.row > [class*="eight wide large screen"].column, - .ui.grid > [class*="eight wide large screen"].column, - .ui.column.grid > [class*="eight wide large screen"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide large screen"].column, - .ui.grid > .column.row > [class*="nine wide large screen"].column, - .ui.grid > [class*="nine wide large screen"].column, - .ui.column.grid > [class*="nine wide large screen"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide large screen"].column, - .ui.grid > .column.row > [class*="ten wide large screen"].column, - .ui.grid > [class*="ten wide large screen"].column, - .ui.column.grid > [class*="ten wide large screen"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide large screen"].column, - .ui.grid > .column.row > [class*="eleven wide large screen"].column, - .ui.grid > [class*="eleven wide large screen"].column, - .ui.column.grid > [class*="eleven wide large screen"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide large screen"].column, - .ui.grid > .column.row > [class*="twelve wide large screen"].column, - .ui.grid > [class*="twelve wide large screen"].column, - .ui.column.grid > [class*="twelve wide large screen"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide large screen"].column, - .ui.grid > .column.row > [class*="thirteen wide large screen"].column, - .ui.grid > [class*="thirteen wide large screen"].column, - .ui.column.grid > [class*="thirteen wide large screen"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide large screen"].column, - .ui.grid > .column.row > [class*="fourteen wide large screen"].column, - .ui.grid > [class*="fourteen wide large screen"].column, - .ui.column.grid > [class*="fourteen wide large screen"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide large screen"].column, - .ui.grid > .column.row > [class*="fifteen wide large screen"].column, - .ui.grid > [class*="fifteen wide large screen"].column, - .ui.column.grid > [class*="fifteen wide large screen"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide large screen"].column, - .ui.grid > .column.row > [class*="sixteen wide large screen"].column, - .ui.grid > [class*="sixteen wide large screen"].column, - .ui.column.grid > [class*="sixteen wide large screen"].column { - width: 100% !important; - } -} - -/* Widescreen Sizing Combinations */ - -@media only screen and (min-width: 1920px) { - .ui.grid > .row > [class*="one wide widescreen"].column, - .ui.grid > .column.row > [class*="one wide widescreen"].column, - .ui.grid > [class*="one wide widescreen"].column, - .ui.column.grid > [class*="one wide widescreen"].column { - width: 6.25% !important; - } - - .ui.grid > .row > [class*="two wide widescreen"].column, - .ui.grid > .column.row > [class*="two wide widescreen"].column, - .ui.grid > [class*="two wide widescreen"].column, - .ui.column.grid > [class*="two wide widescreen"].column { - width: 12.5% !important; - } - - .ui.grid > .row > [class*="three wide widescreen"].column, - .ui.grid > .column.row > [class*="three wide widescreen"].column, - .ui.grid > [class*="three wide widescreen"].column, - .ui.column.grid > [class*="three wide widescreen"].column { - width: 18.75% !important; - } - - .ui.grid > .row > [class*="four wide widescreen"].column, - .ui.grid > .column.row > [class*="four wide widescreen"].column, - .ui.grid > [class*="four wide widescreen"].column, - .ui.column.grid > [class*="four wide widescreen"].column { - width: 25% !important; - } - - .ui.grid > .row > [class*="five wide widescreen"].column, - .ui.grid > .column.row > [class*="five wide widescreen"].column, - .ui.grid > [class*="five wide widescreen"].column, - .ui.column.grid > [class*="five wide widescreen"].column { - width: 31.25% !important; - } - - .ui.grid > .row > [class*="six wide widescreen"].column, - .ui.grid > .column.row > [class*="six wide widescreen"].column, - .ui.grid > [class*="six wide widescreen"].column, - .ui.column.grid > [class*="six wide widescreen"].column { - width: 37.5% !important; - } - - .ui.grid > .row > [class*="seven wide widescreen"].column, - .ui.grid > .column.row > [class*="seven wide widescreen"].column, - .ui.grid > [class*="seven wide widescreen"].column, - .ui.column.grid > [class*="seven wide widescreen"].column { - width: 43.75% !important; - } - - .ui.grid > .row > [class*="eight wide widescreen"].column, - .ui.grid > .column.row > [class*="eight wide widescreen"].column, - .ui.grid > [class*="eight wide widescreen"].column, - .ui.column.grid > [class*="eight wide widescreen"].column { - width: 50% !important; - } - - .ui.grid > .row > [class*="nine wide widescreen"].column, - .ui.grid > .column.row > [class*="nine wide widescreen"].column, - .ui.grid > [class*="nine wide widescreen"].column, - .ui.column.grid > [class*="nine wide widescreen"].column { - width: 56.25% !important; - } - - .ui.grid > .row > [class*="ten wide widescreen"].column, - .ui.grid > .column.row > [class*="ten wide widescreen"].column, - .ui.grid > [class*="ten wide widescreen"].column, - .ui.column.grid > [class*="ten wide widescreen"].column { - width: 62.5% !important; - } - - .ui.grid > .row > [class*="eleven wide widescreen"].column, - .ui.grid > .column.row > [class*="eleven wide widescreen"].column, - .ui.grid > [class*="eleven wide widescreen"].column, - .ui.column.grid > [class*="eleven wide widescreen"].column { - width: 68.75% !important; - } - - .ui.grid > .row > [class*="twelve wide widescreen"].column, - .ui.grid > .column.row > [class*="twelve wide widescreen"].column, - .ui.grid > [class*="twelve wide widescreen"].column, - .ui.column.grid > [class*="twelve wide widescreen"].column { - width: 75% !important; - } - - .ui.grid > .row > [class*="thirteen wide widescreen"].column, - .ui.grid > .column.row > [class*="thirteen wide widescreen"].column, - .ui.grid > [class*="thirteen wide widescreen"].column, - .ui.column.grid > [class*="thirteen wide widescreen"].column { - width: 81.25% !important; - } - - .ui.grid > .row > [class*="fourteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fourteen wide widescreen"].column, - .ui.grid > [class*="fourteen wide widescreen"].column, - .ui.column.grid > [class*="fourteen wide widescreen"].column { - width: 87.5% !important; - } - - .ui.grid > .row > [class*="fifteen wide widescreen"].column, - .ui.grid > .column.row > [class*="fifteen wide widescreen"].column, - .ui.grid > [class*="fifteen wide widescreen"].column, - .ui.column.grid > [class*="fifteen wide widescreen"].column { - width: 93.75% !important; - } - - .ui.grid > .row > [class*="sixteen wide widescreen"].column, - .ui.grid > .column.row > [class*="sixteen wide widescreen"].column, - .ui.grid > [class*="sixteen wide widescreen"].column, - .ui.column.grid > [class*="sixteen wide widescreen"].column { - width: 100% !important; - } -} - -/*---------------------- - Centered ------------------------*/ - -.ui.centered.grid, -.ui.centered.grid > .row, -.ui.grid > .centered.row { - text-align: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row), -.ui.centered.grid > .row > .column:not(.aligned):not(.justified), -.ui.grid .centered.row > .column:not(.aligned):not(.justified) { - text-align: left; -} - -.ui.grid > .centered.column, -.ui.grid > .row > .centered.column { - display: block; - margin-left: auto; - margin-right: auto; -} - -/*---------------------- - Relaxed ------------------------*/ - -.ui.relaxed.grid > .column:not(.row), -.ui.relaxed.grid > .row > .column, -.ui.grid > .relaxed.row > .column { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -.ui[class*="very relaxed"].grid > .column:not(.row), -.ui[class*="very relaxed"].grid > .row > .column, -.ui.grid > [class*="very relaxed"].row > .column { - padding-left: 2.5rem; - padding-right: 2.5rem; -} - -/* Coupling with UI Divider */ - -.ui.relaxed.grid .row + .ui.divider, -.ui.grid .relaxed.row + .ui.divider { - margin-left: 1.5rem; - margin-right: 1.5rem; -} - -.ui[class*="very relaxed"].grid .row + .ui.divider, -.ui.grid [class*="very relaxed"].row + .ui.divider { - margin-left: 2.5rem; - margin-right: 2.5rem; -} - -/*---------------------- - Padded ------------------------*/ - -.ui.padded.grid:not(.vertically):not(.horizontally) { - margin: 0em !important; -} - -[class*="horizontally padded"].ui.grid { - margin-left: 0em !important; - margin-right: 0em !important; -} - -[class*="vertically padded"].ui.grid { - margin-top: 0em !important; - margin-bottom: 0em !important; -} - -/*---------------------- - "Floated" ------------------------*/ - -.ui.grid [class*="left floated"].column { - margin-right: auto; -} - -.ui.grid [class*="right floated"].column { - margin-left: auto; -} - -/*---------------------- - Divided ------------------------*/ - -.ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); -} - -/* Swap from padding to margin on columns to have dividers align */ - -.ui[class*="vertically divided"].grid > .column:not(.row), -.ui[class*="vertically divided"].grid > .row > .column { - margin-top: 1rem; - margin-bottom: 1rem; - padding-top: 0rem; - padding-bottom: 0rem; -} - -.ui[class*="vertically divided"].grid > .row { - margin-top: 0em; - margin-bottom: 0em; -} - -/* No divider on first column on row */ - -.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child, -.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* No space on top of first row */ - -.ui[class*="vertically divided"].grid > .row:first-child > .column { - margin-top: 0em; -} - -/* Divided Row */ - -.ui.grid > .divided.row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); -} - -.ui.grid > .divided.row > .column:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Vertically Divided */ - -.ui[class*="vertically divided"].grid > .row { - position: relative; -} - -.ui[class*="vertically divided"].grid > .row:before { - position: absolute; - content: ""; - top: 0em; - left: 0px; - width: calc(100% - 2rem ); - height: 1px; - margin: 0% 1rem; - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); -} - -/* Padded Horizontally Divided */ - -[class*="horizontally padded"].ui.divided.grid, -.ui.padded.divided.grid:not(.vertically):not(.horizontally) { - width: 100%; -} - -/* First Row Vertically Divided */ - -.ui[class*="vertically divided"].grid > .row:first-child:before { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Inverted Divided */ - -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row), -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1); - box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1); -} - -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child, -.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.inverted[class*="vertically divided"].grid > .row:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); - box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1); -} - -/* Relaxed */ - -.ui.relaxed[class*="vertically divided"].grid > .row:before { - margin-left: 1.5rem; - margin-right: 1.5rem; - width: calc(100% - 3rem ); -} - -.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before { - margin-left: 5rem; - margin-right: 5rem; - width: calc(100% - 5rem ); -} - -/*---------------------- - Celled ------------------------*/ - -.ui.celled.grid { - width: 100%; - margin: 1em 0em; - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5; -} - -.ui.celled.grid > .row { - width: 100% !important; - margin: 0em; - padding: 0em; - -webkit-box-shadow: 0px -1px 0px 0px #D4D4D5; - box-shadow: 0px -1px 0px 0px #D4D4D5; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #D4D4D5; -} - -.ui.celled.grid > .column:first-child, -.ui.celled.grid > .row > .column:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.celled.grid > .column:not(.row), -.ui.celled.grid > .row > .column { - padding: 1em; -} - -.ui.relaxed.celled.grid > .column:not(.row), -.ui.relaxed.celled.grid > .row > .column { - padding: 1.5em; -} - -.ui[class*="very relaxed"].celled.grid > .column:not(.row), -.ui[class*="very relaxed"].celled.grid > .row > .column { - padding: 2em; -} - -/* Internally Celled */ - -.ui[class*="internally celled"].grid { - -webkit-box-shadow: none; - box-shadow: none; - margin: 0em; -} - -.ui[class*="internally celled"].grid > .row:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui[class*="internally celled"].grid > .row > .column:first-child { - -webkit-box-shadow: none; - box-shadow: none; -} - -/*---------------------- - Vertically Aligned ------------------------*/ - -/* Top Aligned */ - -.ui[class*="top aligned"].grid > .column:not(.row), -.ui[class*="top aligned"].grid > .row > .column, -.ui.grid > [class*="top aligned"].row > .column, -.ui.grid > [class*="top aligned"].column:not(.row), -.ui.grid > .row > [class*="top aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: top; - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -/* Middle Aligned */ - -.ui[class*="middle aligned"].grid > .column:not(.row), -.ui[class*="middle aligned"].grid > .row > .column, -.ui.grid > [class*="middle aligned"].row > .column, -.ui.grid > [class*="middle aligned"].column:not(.row), -.ui.grid > .row > [class*="middle aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: middle; - -ms-flex-item-align: center !important; - align-self: center !important; -} - -/* Bottom Aligned */ - -.ui[class*="bottom aligned"].grid > .column:not(.row), -.ui[class*="bottom aligned"].grid > .row > .column, -.ui.grid > [class*="bottom aligned"].row > .column, -.ui.grid > [class*="bottom aligned"].column:not(.row), -.ui.grid > .row > [class*="bottom aligned"].column { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - vertical-align: bottom; - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -/* Stretched */ - -.ui.stretched.grid > .row > .column, -.ui.stretched.grid > .column, -.ui.grid > .stretched.row > .column, -.ui.grid > .stretched.column:not(.row), -.ui.grid > .row > .stretched.column { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -.ui.stretched.grid > .row > .column > *, -.ui.stretched.grid > .column > *, -.ui.grid > .stretched.row > .column > *, -.ui.grid > .stretched.column:not(.row) > *, -.ui.grid > .row > .stretched.column > * { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -/*---------------------- - Horizontally Centered ------------------------*/ - -/* Left Aligned */ - -.ui[class*="left aligned"].grid > .column, -.ui[class*="left aligned"].grid > .row > .column, -.ui.grid > [class*="left aligned"].row > .column, -.ui.grid > [class*="left aligned"].column.column, -.ui.grid > .row > [class*="left aligned"].column.column { - text-align: left; - -ms-flex-item-align: inherit; - align-self: inherit; -} - -/* Center Aligned */ - -.ui[class*="center aligned"].grid > .column, -.ui[class*="center aligned"].grid > .row > .column, -.ui.grid > [class*="center aligned"].row > .column, -.ui.grid > [class*="center aligned"].column.column, -.ui.grid > .row > [class*="center aligned"].column.column { - text-align: center; - -ms-flex-item-align: inherit; - align-self: inherit; -} - -.ui[class*="center aligned"].grid { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -/* Right Aligned */ - -.ui[class*="right aligned"].grid > .column, -.ui[class*="right aligned"].grid > .row > .column, -.ui.grid > [class*="right aligned"].row > .column, -.ui.grid > [class*="right aligned"].column.column, -.ui.grid > .row > [class*="right aligned"].column.column { - text-align: right; - -ms-flex-item-align: inherit; - align-self: inherit; -} - -/* Justified */ - -.ui.justified.grid > .column, -.ui.justified.grid > .row > .column, -.ui.grid > .justified.row > .column, -.ui.grid > .justified.column.column, -.ui.grid > .row > .justified.column.column { - text-align: justify; - -webkit-hyphens: auto; - -ms-hyphens: auto; - hyphens: auto; -} - -/*---------------------- - Colored ------------------------*/ - -.ui.grid > .row > .red.column, -.ui.grid > .row > .orange.column, -.ui.grid > .row > .yellow.column, -.ui.grid > .row > .olive.column, -.ui.grid > .row > .green.column, -.ui.grid > .row > .teal.column, -.ui.grid > .row > .blue.column, -.ui.grid > .row > .violet.column, -.ui.grid > .row > .purple.column, -.ui.grid > .row > .pink.column, -.ui.grid > .row > .brown.column, -.ui.grid > .row > .grey.column, -.ui.grid > .row > .black.column { - margin-top: -1rem; - margin-bottom: -1rem; - padding-top: 1rem; - padding-bottom: 1rem; -} - -/* Red */ - -.ui.grid > .red.row, -.ui.grid > .red.column, -.ui.grid > .row > .red.column { - background-color: #DB2828 !important; - color: #FFFFFF; -} - -/* Orange */ - -.ui.grid > .orange.row, -.ui.grid > .orange.column, -.ui.grid > .row > .orange.column { - background-color: #F2711C !important; - color: #FFFFFF; -} - -/* Yellow */ - -.ui.grid > .yellow.row, -.ui.grid > .yellow.column, -.ui.grid > .row > .yellow.column { - background-color: #FBBD08 !important; - color: #FFFFFF; -} - -/* Olive */ - -.ui.grid > .olive.row, -.ui.grid > .olive.column, -.ui.grid > .row > .olive.column { - background-color: #B5CC18 !important; - color: #FFFFFF; -} - -/* Green */ - -.ui.grid > .green.row, -.ui.grid > .green.column, -.ui.grid > .row > .green.column { - background-color: #21BA45 !important; - color: #FFFFFF; -} - -/* Teal */ - -.ui.grid > .teal.row, -.ui.grid > .teal.column, -.ui.grid > .row > .teal.column { - background-color: #00B5AD !important; - color: #FFFFFF; -} - -/* Blue */ - -.ui.grid > .blue.row, -.ui.grid > .blue.column, -.ui.grid > .row > .blue.column { - background-color: #2185D0 !important; - color: #FFFFFF; -} - -/* Violet */ - -.ui.grid > .violet.row, -.ui.grid > .violet.column, -.ui.grid > .row > .violet.column { - background-color: #6435C9 !important; - color: #FFFFFF; -} - -/* Purple */ - -.ui.grid > .purple.row, -.ui.grid > .purple.column, -.ui.grid > .row > .purple.column { - background-color: #A333C8 !important; - color: #FFFFFF; -} - -/* Pink */ - -.ui.grid > .pink.row, -.ui.grid > .pink.column, -.ui.grid > .row > .pink.column { - background-color: #E03997 !important; - color: #FFFFFF; -} - -/* Brown */ - -.ui.grid > .brown.row, -.ui.grid > .brown.column, -.ui.grid > .row > .brown.column { - background-color: #A5673F !important; - color: #FFFFFF; -} - -/* Grey */ - -.ui.grid > .grey.row, -.ui.grid > .grey.column, -.ui.grid > .row > .grey.column { - background-color: #767676 !important; - color: #FFFFFF; -} - -/* Black */ - -.ui.grid > .black.row, -.ui.grid > .black.column, -.ui.grid > .row > .black.column { - background-color: #1B1C1D !important; - color: #FFFFFF; -} - -/*---------------------- - Equal Width ------------------------*/ - -.ui[class*="equal width"].grid > .column:not(.row), -.ui[class*="equal width"].grid > .row > .column, -.ui.grid > [class*="equal width"].row > .column { - display: inline-block; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -.ui[class*="equal width"].grid > .wide.column, -.ui[class*="equal width"].grid > .row > .wide.column, -.ui.grid > [class*="equal width"].row > .wide.column { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; -} - -/*---------------------- - Reverse ------------------------*/ - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui[class*="mobile reversed"].grid, - .ui[class*="mobile reversed"].grid > .row, - .ui.grid > [class*="mobile reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } - - .ui[class*="mobile vertically reversed"].grid, - .ui.stackable[class*="mobile reversed"] { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #D4D4D5; - } - - .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } -} - -/* Tablet */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui[class*="tablet reversed"].grid, - .ui[class*="tablet reversed"].grid > .row, - .ui.grid > [class*="tablet reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } - - .ui[class*="tablet vertically reversed"].grid { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #D4D4D5; - } - - .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } -} - -/* Computer */ - -@media only screen and (min-width: 992px) { - .ui[class*="computer reversed"].grid, - .ui[class*="computer reversed"].grid > .row, - .ui.grid > [class*="computer reversed"].row { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } - - .ui[class*="computer vertically reversed"].grid { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - /* Divided Reversed */ - - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child, - .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Vertically Divided Reversed */ - - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before { - -webkit-box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, 0.15); - } - - .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before { - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Celled Reversed */ - - .ui[class*="computer reversed"].celled.grid > .row > .column:first-child { - -webkit-box-shadow: -1px 0px 0px 0px #D4D4D5; - box-shadow: -1px 0px 0px 0px #D4D4D5; - } - - .ui[class*="computer reversed"].celled.grid > .row > .column:last-child { - -webkit-box-shadow: none; - box-shadow: none; - } -} - -/*------------------- - Doubling ---------------------*/ - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.doubling.grid { - width: auto; - } - - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - display: inline-block !important; - padding-top: 1rem !important; - padding-bottom: 1rem !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - margin: 0em; - } - - .ui[class*="two column"].doubling.grid > .row > .column, - .ui[class*="two column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling.row.row > .column { - width: 100% !important; - } - - .ui[class*="three column"].doubling.grid > .row > .column, - .ui[class*="three column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling.row.row > .column { - width: 50% !important; - } - - .ui[class*="four column"].doubling.grid > .row > .column, - .ui[class*="four column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling.row.row > .column { - width: 50% !important; - } - - .ui[class*="five column"].doubling.grid > .row > .column, - .ui[class*="five column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="six column"].doubling.grid > .row > .column, - .ui[class*="six column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="seven column"].doubling.grid > .row > .column, - .ui[class*="seven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling.row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="eight column"].doubling.grid > .row > .column, - .ui[class*="eight column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling.row.row > .column { - width: 25% !important; - } - - .ui[class*="nine column"].doubling.grid > .row > .column, - .ui[class*="nine column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling.row.row > .column { - width: 25% !important; - } - - .ui[class*="ten column"].doubling.grid > .row > .column, - .ui[class*="ten column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling.row.row > .column { - width: 20% !important; - } - - .ui[class*="eleven column"].doubling.grid > .row > .column, - .ui[class*="eleven column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling.row.row > .column { - width: 20% !important; - } - - .ui[class*="twelve column"].doubling.grid > .row > .column, - .ui[class*="twelve column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling.row.row > .column { - width: 16.66666667% !important; - } - - .ui[class*="thirteen column"].doubling.grid > .row > .column, - .ui[class*="thirteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling.row.row > .column { - width: 16.66666667% !important; - } - - .ui[class*="fourteen column"].doubling.grid > .row > .column, - .ui[class*="fourteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling.row.row > .column { - width: 14.28571429% !important; - } - - .ui[class*="fifteen column"].doubling.grid > .row > .column, - .ui[class*="fifteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling.row.row > .column { - width: 14.28571429% !important; - } - - .ui[class*="sixteen column"].doubling.grid > .row > .column, - .ui[class*="sixteen column"].doubling.grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling.row.row > .column { - width: 12.5% !important; - } -} - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.grid > .doubling.row, - .ui.doubling.grid > .row { - margin: 0em !important; - padding: 0em !important; - } - - .ui.grid > .doubling.row > .column, - .ui.doubling.grid > .row > .column { - padding-top: 1rem !important; - padding-bottom: 1rem !important; - margin: 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column { - width: 100% !important; - } - - .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column { - width: 50% !important; - } - - .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column { - width: 33.33333333% !important; - } - - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } - - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } - - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column, - .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row), - .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column { - width: 25% !important; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.grid { - width: auto; - margin-left: 0em !important; - margin-right: 0em !important; - } - - .ui.stackable.grid > .row > .wide.column, - .ui.stackable.grid > .wide.column, - .ui.stackable.grid > .column.grid > .column, - .ui.stackable.grid > .column.row > .column, - .ui.stackable.grid > .row > .column, - .ui.stackable.grid > .column:not(.row), - .ui.grid > .stackable.stackable.row > .column { - width: 100% !important; - margin: 0em 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - padding: 1rem 1rem !important; - } - - .ui.stackable.grid:not(.vertically) > .row { - margin: 0em; - padding: 0em; - } - - /* Coupling */ - - .ui.container > .ui.stackable.grid > .column, - .ui.container > .ui.stackable.grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } - - /* Don't pad inside segment or nested grid */ - - .ui.grid .ui.stackable.grid, - .ui.segment:not(.vertical) .ui.stackable.page.grid { - margin-left: -1rem !important; - margin-right: -1rem !important; - } - - /* Divided Stackable */ - - .ui.stackable.divided.grid > .row:first-child > .column:first-child, - .ui.stackable.celled.grid > .row:first-child > .column:first-child, - .ui.stackable.divided.grid > .column:not(.row):first-child, - .ui.stackable.celled.grid > .column:not(.row):first-child { - border-top: none !important; - } - - .ui.inverted.stackable.celled.grid > .column:not(.row), - .ui.inverted.stackable.divided.grid > .column:not(.row), - .ui.inverted.stackable.celled.grid > .row > .column, - .ui.inverted.stackable.divided.grid > .row > .column { - border-top: 1px solid rgba(255, 255, 255, 0.1); - } - - .ui.stackable.celled.grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.celled.grid > .row > .column, - .ui.stackable.divided:not(.vertically).grid > .row > .column { - border-top: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none !important; - box-shadow: none !important; - padding-top: 2rem !important; - padding-bottom: 2rem !important; - } - - .ui.stackable.celled.grid > .row { - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - .ui.stackable.divided:not(.vertically).grid > .column:not(.row), - .ui.stackable.divided:not(.vertically).grid > .row > .column { - padding-left: 0em !important; - padding-right: 0em !important; - } -} - -/*---------------------- - Only (Device) ------------------------*/ - -/* These include arbitrary class repetitions for forced specificity */ - -/* Mobile Only Hide */ - -@media only screen and (max-width: 767px) { - .ui[class*="tablet only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="computer only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Tablet Only Hide */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui[class*="mobile only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) { - display: none !important; - } - - .ui[class*="computer only"].grid.grid.grid:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet), - .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet), - .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Computer Only Hide */ - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="large screen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Large Screen Only Hide */ - -@media only screen and (min-width: 1200px) and (max-width: 1919px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="widescreen only"].grid.grid.grid:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile), - .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile), - .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) { - display: none !important; - } -} - -/* Widescreen Only Hide */ - -@media only screen and (min-width: 1920px) { - .ui[class*="mobile only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer), - .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) { - display: none !important; - } - - .ui[class*="tablet only"].grid.grid.grid:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer), - .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer), - .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) { - display: none !important; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/* -* # Semantic - Menu -* http://github.com/semantic-org/semantic-ui/ -* -* -* Copyright 2015 Contributor -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 1rem 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - background: #FFFFFF; - font-weight: normal; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - min-height: 2.85714286em; -} - -.ui.menu:after { - content: ''; - display: block; - height: 0px; - clear: both; - visibility: hidden; -} - -.ui.menu:first-child { - margin-top: 0rem; -} - -.ui.menu:last-child { - margin-bottom: 0rem; -} - -/*-------------- - Sub-Menu ----------------*/ - -.ui.menu .menu { - margin: 0em; -} - -.ui.menu:not(.vertical) > .menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -/*-------------- - Item ----------------*/ - -.ui.menu:not(.vertical) .item { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.menu .item { - position: relative; - vertical-align: middle; - line-height: 1; - text-decoration: none; - -webkit-tap-highlight-color: transparent; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background: none; - padding: 0.92857143em 1.14285714em; - text-transform: none; - color: rgba(0, 0, 0, 0.87); - font-weight: normal; - -webkit-transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease; - transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease; -} - -.ui.menu > .item:first-child { - border-radius: 0.28571429rem 0px 0px 0.28571429rem; -} - -/* Border */ - -.ui.menu .item:before { - position: absolute; - content: ''; - top: 0%; - right: 0px; - height: 100%; - width: 1px; - background: rgba(34, 36, 38, 0.1); -} - -/*-------------- - Text Content ----------------*/ - -.ui.menu .text.item > *, -.ui.menu .item > a:not(.ui), -.ui.menu .item > p:only-child { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; - line-height: 1.3; -} - -.ui.menu .item > p:first-child { - margin-top: 0; -} - -.ui.menu .item > p:last-child { - margin-bottom: 0; -} - -/*-------------- - Icons ----------------*/ - -.ui.menu .item > i.icon { - opacity: 0.9; - float: none; - margin: 0em 0.35714286em 0em 0em; -} - -/*-------------- - Button ----------------*/ - -.ui.menu:not(.vertical) .item > .button { - position: relative; - top: 0em; - margin: -0.5em 0em; - padding-bottom: 0.78571429em; - padding-top: 0.78571429em; - font-size: 1em; -} - -/*---------------- -Grid / Container ------------------*/ - -.ui.menu > .grid, -.ui.menu > .container { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: inherit; - -ms-flex-align: inherit; - align-items: inherit; - -webkit-box-orient: inherit; - -webkit-box-direction: inherit; - -ms-flex-direction: inherit; - flex-direction: inherit; -} - -/*-------------- - Inputs ----------------*/ - -.ui.menu .item > .input { - width: 100%; -} - -.ui.menu:not(.vertical) .item > .input { - position: relative; - top: 0em; - margin: -0.5em 0em; -} - -.ui.menu .item > .input input { - font-size: 1em; - padding-top: 0.57142857em; - padding-bottom: 0.57142857em; -} - -/*-------------- - Header ----------------*/ - -.ui.menu .header.item, -.ui.vertical.menu .header.item { - margin: 0em; - background: ''; - text-transform: normal; - font-weight: bold; -} - -.ui.vertical.menu .item > .header:not(.ui) { - margin: 0em 0em 0.5em; - font-size: 1em; - font-weight: bold; -} - -/*-------------- - Dropdowns ----------------*/ - -/* Dropdown Icon */ - -.ui.menu .item > i.dropdown.icon { - padding: 0em; - float: right; - margin: 0em 0em 0em 1em; -} - -/* Menu */ - -.ui.menu .dropdown.item .menu { - min-width: calc(100% - 1px); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - background: #FFFFFF; - margin: 0em 0px 0px; - -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08); - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -/* Menu Items */ - -.ui.menu .ui.dropdown .menu > .item { - margin: 0; - text-align: left; - font-size: 1em !important; - padding: 0.78571429em 1.14285714em !important; - background: transparent !important; - color: rgba(0, 0, 0, 0.87) !important; - text-transform: none !important; - font-weight: normal !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - -webkit-transition: none !important; - transition: none !important; -} - -.ui.menu .ui.dropdown .menu > .item:hover { - background: rgba(0, 0, 0, 0.05) !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.menu .ui.dropdown .menu > .selected.item { - background: rgba(0, 0, 0, 0.05) !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.menu .ui.dropdown .menu > .active.item { - background: rgba(0, 0, 0, 0.03) !important; - font-weight: bold !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.menu .ui.dropdown.item .menu .item:not(.filtered) { - display: block; -} - -.ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) { - display: inline-block; - font-size: 1em !important; - float: none; - margin: 0em 0.75em 0em 0em; -} - -/* Secondary */ - -.ui.secondary.menu .dropdown.item > .menu, -.ui.text.menu .dropdown.item > .menu { - border-radius: 0.28571429rem; - margin-top: 0.35714286em; -} - -/* Pointing */ - -.ui.menu .pointing.dropdown.item .menu { - margin-top: 0.75em; -} - -/* Inverted */ - -.ui.inverted.menu .search.dropdown.item > .search, -.ui.inverted.menu .search.dropdown.item > .text { - color: rgba(255, 255, 255, 0.9); -} - -/* Vertical */ - -.ui.vertical.menu .dropdown.item > .icon { - float: right; - content: "\f0da"; - margin-left: 1em; -} - -.ui.vertical.menu .dropdown.item .menu { - left: 100%; - min-width: 0; - margin: 0em 0em 0em 0em; - -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0.28571429rem 0.28571429rem 0.28571429rem; -} - -.ui.vertical.menu .dropdown.item.upward .menu { - bottom: 0; -} - -.ui.vertical.menu .dropdown.item:not(.upward) .menu { - top: 0; -} - -.ui.vertical.menu .active.dropdown.item { - border-top-right-radius: 0em; - border-bottom-right-radius: 0em; -} - -.ui.vertical.menu .dropdown.active.item { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Evenly Divided */ - -.ui.item.menu .dropdown .menu .item { - width: 100%; -} - -/*-------------- - Labels ----------------*/ - -.ui.menu .item > .label { - background: #999999; - color: #FFFFFF; - margin-left: 1em; - padding: 0.3em 0.78571429em; -} - -.ui.vertical.menu .item > .label { - background: #999999; - color: #FFFFFF; - margin-top: -0.15em; - margin-bottom: -0.15em; - padding: 0.3em 0.78571429em; -} - -.ui.menu .item > .floating.label { - padding: 0.3em 0.78571429em; -} - -/*-------------- - Images ----------------*/ - -.ui.menu .item > img:not(.ui) { - display: inline-block; - vertical-align: middle; - margin: -0.3em 0em; - width: 2.5em; -} - -.ui.vertical.menu .item > img:not(.ui):only-child { - display: block; - max-width: 100%; - width: auto; -} - -/******************************* - Coupling -*******************************/ - -/*-------------- - List ----------------*/ - -/* Menu divider shouldnt apply */ - -.ui.menu .list .item:before { - background: none !important; -} - -/*-------------- - Sidebar ----------------*/ - -/* Show vertical dividers below last */ - -.ui.vertical.sidebar.menu > .item:first-child:before { - display: block !important; -} - -.ui.vertical.sidebar.menu > .item::before { - top: auto; - bottom: 0px; -} - -/*-------------- - Container ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.menu > .ui.container { - width: 100% !important; - margin-left: 0em !important; - margin-right: 0em !important; - } -} - -@media only screen and (min-width: 768px) { - .ui.menu:not(.secondary):not(.text):not(.tabular):not(.borderless) > .container > .item:not(.right):not(.borderless):first-child { - border-left: 1px solid rgba(34, 36, 38, 0.1); - } -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.link.menu .item:hover, -.ui.menu .dropdown.item:hover, -.ui.menu .link.item:hover, -.ui.menu a.item:hover { - cursor: pointer; - background: rgba(0, 0, 0, 0.03); - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Pressed ----------------*/ - -.ui.link.menu .item:active, -.ui.menu .link.item:active, -.ui.menu a.item:active { - background: rgba(0, 0, 0, 0.03); - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Active ----------------*/ - -.ui.menu .active.item { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); - font-weight: normal; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.menu .active.item > i.icon { - opacity: 1; -} - -/*-------------- - Active Hover ----------------*/ - -.ui.menu .active.item:hover, -.ui.vertical.menu .active.item:hover { - background-color: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Disabled ----------------*/ - -.ui.menu .item.disabled, -.ui.menu .item.disabled:hover { - cursor: default; - background-color: transparent !important; - color: rgba(40, 40, 40, 0.3); -} - -/******************************* - Types -*******************************/ - -/*------------------ -Floated Menu / Item --------------------*/ - -/* Left Floated */ - -.ui.menu:not(.vertical) .left.item, -.ui.menu:not(.vertical) .left.menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin-right: auto !important; -} - -/* Right Floated */ - -.ui.menu:not(.vertical) .right.item, -.ui.menu:not(.vertical) .right.menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin-left: auto !important; -} - -/* Swapped Borders */ - -.ui.menu .right.item::before, -.ui.menu .right.menu > .item::before { - right: auto; - left: 0; -} - -/*-------------- - Vertical ----------------*/ - -.ui.vertical.menu { - display: block; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15); -} - -/*--- Item ---*/ - -.ui.vertical.menu .item { - display: block; - background: none; - border-top: none; - border-right: none; -} - -.ui.vertical.menu > .item:first-child { - border-radius: 0.28571429rem 0.28571429rem 0px 0px; -} - -.ui.vertical.menu > .item:last-child { - border-radius: 0px 0px 0.28571429rem 0.28571429rem; -} - -/*--- Label ---*/ - -.ui.vertical.menu .item > .label { - float: right; - text-align: center; -} - -/*--- Icon ---*/ - -.ui.vertical.menu .item > i.icon { - width: 1.18em; - float: right; - margin: 0em 0em 0em 0.5em; -} - -.ui.vertical.menu .item > .label + i.icon { - float: none; - margin: 0em 0.5em 0em 0em; -} - -/*--- Border ---*/ - -.ui.vertical.menu .item:before { - position: absolute; - content: ''; - top: 0%; - left: 0px; - width: 100%; - height: 1px; - background: rgba(34, 36, 38, 0.1); -} - -.ui.vertical.menu .item:first-child:before { - display: none !important; -} - -/*--- Sub Menu ---*/ - -.ui.vertical.menu .item > .menu { - margin: 0.5em -1.14285714em 0em; -} - -.ui.vertical.menu .menu .item { - background: none; - padding: 0.5em 1.33333333em; - font-size: 0.85714286em; - color: rgba(0, 0, 0, 0.5); -} - -.ui.vertical.menu .item .menu a.item:hover, -.ui.vertical.menu .item .menu .link.item:hover { - color: rgba(0, 0, 0, 0.85); -} - -.ui.vertical.menu .menu .item:before { - display: none; -} - -/* Vertical Active */ - -.ui.vertical.menu .active.item { - background: rgba(0, 0, 0, 0.05); - border-radius: 0em; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.vertical.menu > .active.item:first-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.vertical.menu > .active.item:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.vertical.menu > .active.item:only-child { - border-radius: 0.28571429rem; -} - -.ui.vertical.menu .active.item .menu .active.item { - border-left: none; -} - -.ui.vertical.menu .item .menu .active.item { - background-color: transparent; - font-weight: bold; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Tabular ----------------*/ - -.ui.tabular.menu { - border-radius: 0em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border: none; - background: none transparent; - border-bottom: 1px solid #D4D4D5; -} - -.ui.tabular.fluid.menu { - width: calc(100% + 2px ) !important; -} - -.ui.tabular.menu .item { - background: transparent; - border-bottom: none; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-top: 2px solid transparent; - padding: 0.92857143em 1.42857143em; - color: rgba(0, 0, 0, 0.87); -} - -.ui.tabular.menu .item:before { - display: none; -} - -/* Hover */ - -.ui.tabular.menu .item:hover { - background-color: transparent; - color: rgba(0, 0, 0, 0.8); -} - -/* Active */ - -.ui.tabular.menu .active.item { - background: none #FFFFFF; - color: rgba(0, 0, 0, 0.95); - border-top-width: 1px; - border-color: #D4D4D5; - font-weight: bold; - margin-bottom: -1px; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0.28571429rem 0.28571429rem 0px 0px !important; -} - -/* Coupling with segment for attachment */ - -.ui.tabular.menu + .attached:not(.top).segment, -.ui.tabular.menu + .attached:not(.top).segment + .attached:not(.top).segment { - border-top: none; - margin-left: 0px; - margin-top: 0px; - margin-right: 0px; - width: 100%; -} - -.top.attached.segment + .ui.bottom.tabular.menu { - position: relative; - width: calc(100% + 2px ); - left: -1px; -} - -/* Bottom Vertical Tabular */ - -.ui.bottom.tabular.menu { - background: none transparent; - border-radius: 0em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-bottom: none; - border-top: 1px solid #D4D4D5; -} - -.ui.bottom.tabular.menu .item { - background: none; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: none; -} - -.ui.bottom.tabular.menu .active.item { - background: none #FFFFFF; - color: rgba(0, 0, 0, 0.95); - border-color: #D4D4D5; - margin: -1px 0px 0px 0px; - border-radius: 0px 0px 0.28571429rem 0.28571429rem !important; -} - -/* Vertical Tabular (Left) */ - -.ui.vertical.tabular.menu { - background: none transparent; - border-radius: 0em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-bottom: none; - border-right: 1px solid #D4D4D5; -} - -.ui.vertical.tabular.menu .item { - background: none; - border-left: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: 1px solid transparent; - border-right: none; -} - -.ui.vertical.tabular.menu .active.item { - background: none #FFFFFF; - color: rgba(0, 0, 0, 0.95); - border-color: #D4D4D5; - margin: 0px -1px 0px 0px; - border-radius: 0.28571429rem 0px 0px 0.28571429rem !important; -} - -/* Vertical Right Tabular */ - -.ui.vertical.right.tabular.menu { - background: none transparent; - border-radius: 0em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-bottom: none; - border-right: none; - border-left: 1px solid #D4D4D5; -} - -.ui.vertical.right.tabular.menu .item { - background: none; - border-right: 1px solid transparent; - border-bottom: 1px solid transparent; - border-top: 1px solid transparent; - border-left: none; -} - -.ui.vertical.right.tabular.menu .active.item { - background: none #FFFFFF; - color: rgba(0, 0, 0, 0.95); - border-color: #D4D4D5; - margin: 0px 0px 0px -1px; - border-radius: 0px 0.28571429rem 0.28571429rem 0px !important; -} - -/* Dropdown */ - -.ui.tabular.menu .active.dropdown.item { - margin-bottom: 0px; - border-left: 1px solid transparent; - border-right: 1px solid transparent; - border-top: 2px solid transparent; - border-bottom: none; -} - -/*-------------- - Pagination ----------------*/ - -.ui.pagination.menu { - margin: 0em; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} - -.ui.pagination.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.pagination.menu .item:last-child:before { - display: none; -} - -.ui.pagination.menu .item { - min-width: 3em; - text-align: center; -} - -.ui.pagination.menu .icon.item i.icon { - vertical-align: top; -} - -/* Active */ - -.ui.pagination.menu .active.item { - border-top: none; - padding-top: 0.92857143em; - background-color: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); - -webkit-box-shadow: none; - box-shadow: none; -} - -/*-------------- - Secondary ----------------*/ - -.ui.secondary.menu { - background: none; - margin-left: -0.35714286em; - margin-right: -0.35714286em; - border-radius: 0em; - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Item */ - -.ui.secondary.menu .item { - -ms-flex-item-align: center; - align-self: center; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - padding: 0.78571429em 0.92857143em; - margin: 0em 0.35714286em; - background: none; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; - border-radius: 0.28571429rem; -} - -/* No Divider */ - -.ui.secondary.menu .item:before { - display: none !important; -} - -/* Header */ - -.ui.secondary.menu .header.item { - border-radius: 0em; - border-right: none; - background: none transparent; -} - -/* Image */ - -.ui.secondary.menu .item > img:not(.ui) { - margin: 0em; -} - -/* Hover */ - -.ui.secondary.menu .dropdown.item:hover, -.ui.secondary.menu .link.item:hover, -.ui.secondary.menu a.item:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/* Active */ - -.ui.secondary.menu .active.item { - -webkit-box-shadow: none; - box-shadow: none; - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); - border-radius: 0.28571429rem; -} - -/* Active Hover */ - -.ui.secondary.menu .active.item:hover { - -webkit-box-shadow: none; - box-shadow: none; - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/* Inverted */ - -.ui.secondary.inverted.menu .link.item, -.ui.secondary.inverted.menu a.item { - color: rgba(255, 255, 255, 0.7) !important; -} - -.ui.secondary.inverted.menu .dropdown.item:hover, -.ui.secondary.inverted.menu .link.item:hover, -.ui.secondary.inverted.menu a.item:hover { - background: rgba(255, 255, 255, 0.08); - color: #ffffff !important; -} - -.ui.secondary.inverted.menu .active.item { - background: rgba(255, 255, 255, 0.15); - color: #ffffff !important; -} - -/* Fix item margins */ - -.ui.secondary.item.menu { - margin-left: 0em; - margin-right: 0em; -} - -.ui.secondary.item.menu .item:last-child { - margin-right: 0em; -} - -.ui.secondary.attached.menu { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Sub Menu */ - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu { - margin: 0em -0.92857143em; -} - -.ui.vertical.secondary.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 1.33333333em; -} - -/*--------------------- - Secondary Vertical ------------------------*/ - -.ui.secondary.vertical.menu > .item { - border: none; - margin: 0em 0em 0.35714286em; - border-radius: 0.28571429rem !important; -} - -.ui.secondary.vertical.menu > .header.item { - border-radius: 0em; -} - -/* Sub Menu */ - -.ui.vertical.secondary.menu .item > .menu .item { - background-color: transparent; -} - -/* Inverted */ - -.ui.secondary.inverted.menu { - background-color: transparent; -} - -/*--------------------- - Secondary Pointing ------------------------*/ - -.ui.secondary.pointing.menu { - margin-left: 0em; - margin-right: 0em; - border-bottom: 2px solid rgba(34, 36, 38, 0.15); -} - -.ui.secondary.pointing.menu .item { - border-bottom-color: transparent; - border-bottom-style: solid; - border-radius: 0em; - -ms-flex-item-align: end; - align-self: flex-end; - margin: 0em 0em -2px; - padding: 0.85714286em 1.14285714em; - border-bottom-width: 2px; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -/* Item Types */ - -.ui.secondary.pointing.menu .header.item { - color: rgba(0, 0, 0, 0.85) !important; -} - -.ui.secondary.pointing.menu .text.item { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.ui.secondary.pointing.menu .item:after { - display: none; -} - -/* Hover */ - -.ui.secondary.pointing.menu .dropdown.item:hover, -.ui.secondary.pointing.menu .link.item:hover, -.ui.secondary.pointing.menu a.item:hover { - background-color: transparent; - color: rgba(0, 0, 0, 0.87); -} - -/* Pressed */ - -.ui.secondary.pointing.menu .dropdown.item:active, -.ui.secondary.pointing.menu .link.item:active, -.ui.secondary.pointing.menu a.item:active { - background-color: transparent; - border-color: rgba(34, 36, 38, 0.15); -} - -/* Active */ - -.ui.secondary.pointing.menu .active.item { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - border-color: #1B1C1D; - font-weight: bold; - color: rgba(0, 0, 0, 0.95); -} - -/* Active Hover */ - -.ui.secondary.pointing.menu .active.item:hover { - border-color: #1B1C1D; - color: rgba(0, 0, 0, 0.95); -} - -/* Active Dropdown */ - -.ui.secondary.pointing.menu .active.dropdown.item { - border-color: transparent; -} - -/* Vertical Pointing */ - -.ui.secondary.vertical.pointing.menu { - border-bottom-width: 0px; - border-right-width: 2px; - border-right-style: solid; - border-right-color: rgba(34, 36, 38, 0.15); -} - -.ui.secondary.vertical.pointing.menu .item { - border-bottom: none; - border-right-style: solid; - border-right-color: transparent; - border-radius: 0em !important; - margin: 0em -2px 0em 0em; - border-right-width: 2px; -} - -/* Vertical Active */ - -.ui.secondary.vertical.pointing.menu .active.item { - border-color: #1B1C1D; -} - -/* Inverted */ - -.ui.secondary.inverted.pointing.menu { - border-color: rgba(255, 255, 255, 0.1); -} - -.ui.secondary.inverted.pointing.menu { - border-width: 2px; - border-color: rgba(34, 36, 38, 0.15); -} - -.ui.secondary.inverted.pointing.menu .item { - color: rgba(255, 255, 255, 0.9); -} - -.ui.secondary.inverted.pointing.menu .header.item { - color: #FFFFFF !important; -} - -/* Hover */ - -.ui.secondary.inverted.pointing.menu .link.item:hover, -.ui.secondary.inverted.pointing.menu a.item:hover { - color: rgba(0, 0, 0, 0.95); -} - -/* Active */ - -.ui.secondary.inverted.pointing.menu .active.item { - border-color: #FFFFFF; - color: #ffffff; -} - -/*-------------- - Text Menu ----------------*/ - -.ui.text.menu { - background: none transparent; - border-radius: 0px; - -webkit-box-shadow: none; - box-shadow: none; - border: none; - margin: 1em -0.5em; -} - -.ui.text.menu .item { - border-radius: 0px; - -webkit-box-shadow: none; - box-shadow: none; - -ms-flex-item-align: center; - align-self: center; - margin: 0em 0em; - padding: 0.35714286em 0.5em; - font-weight: normal; - color: rgba(0, 0, 0, 0.6); - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -/* Border */ - -.ui.text.menu .item:before, -.ui.text.menu .menu .item:before { - display: none !important; -} - -/* Header */ - -.ui.text.menu .header.item { - background-color: transparent; - opacity: 1; - color: rgba(0, 0, 0, 0.85); - font-size: 0.92857143em; - text-transform: uppercase; - font-weight: bold; -} - -/* Image */ - -.ui.text.menu .item > img:not(.ui) { - margin: 0em; -} - -/*--- fluid text ---*/ - -.ui.text.item.menu .item { - margin: 0em; -} - -/*--- vertical text ---*/ - -.ui.vertical.text.menu { - margin: 1em 0em; -} - -.ui.vertical.text.menu:first-child { - margin-top: 0rem; -} - -.ui.vertical.text.menu:last-child { - margin-bottom: 0rem; -} - -.ui.vertical.text.menu .item { - margin: 0.57142857em 0em; - padding-left: 0em; - padding-right: 0em; -} - -.ui.vertical.text.menu .item > i.icon { - float: none; - margin: 0em 0.35714286em 0em 0em; -} - -.ui.vertical.text.menu .header.item { - margin: 0.57142857em 0em 0.71428571em; -} - -/* Vertical Sub Menu */ - -.ui.vertical.text.menu .item:not(.dropdown) > .menu { - margin: 0em; -} - -.ui.vertical.text.menu .item:not(.dropdown) > .menu > .item { - margin: 0em; - padding: 0.5em 0em; -} - -/*--- hover ---*/ - -.ui.text.menu .item:hover { - opacity: 1; - background-color: transparent; -} - -/*--- active ---*/ - -.ui.text.menu .active.item { - background-color: transparent; - border: none; - -webkit-box-shadow: none; - box-shadow: none; - font-weight: normal; - color: rgba(0, 0, 0, 0.95); -} - -/*--- active hover ---*/ - -.ui.text.menu .active.item:hover { - background-color: transparent; -} - -/* Disable Bariations */ - -.ui.text.pointing.menu .active.item:after { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.text.attached.menu { - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Inverted */ - -.ui.inverted.text.menu, -.ui.inverted.text.menu .item, -.ui.inverted.text.menu .item:hover, -.ui.inverted.text.menu .active.item { - background-color: transparent !important; -} - -/* Fluid */ - -.ui.fluid.text.menu { - margin-left: 0em; - margin-right: 0em; -} - -/*-------------- - Icon Only ----------------*/ - -/* Vertical Menu */ - -.ui.vertical.icon.menu { - display: inline-block; - width: auto; -} - -/* Item */ - -.ui.icon.menu .item { - height: auto; - text-align: center; - color: #1B1C1D; -} - -/* Icon */ - -.ui.icon.menu .item > .icon:not(.dropdown) { - margin: 0; - opacity: 1; -} - -/* Icon Gylph */ - -.ui.icon.menu .icon:before { - opacity: 1; -} - -/* (x) Item Icon */ - -.ui.menu .icon.item > .icon { - width: auto; - margin: 0em auto; -} - -/* Vertical Icon */ - -.ui.vertical.icon.menu .item > .icon:not(.dropdown) { - display: block; - opacity: 1; - margin: 0em auto; - float: none; -} - -/* Inverted */ - -.ui.inverted.icon.menu .item { - color: #FFFFFF; -} - -/*-------------- - Labeled Icon ----------------*/ - -/* Menu */ - -.ui.labeled.icon.menu { - text-align: center; -} - -/* Item */ - -.ui.labeled.icon.menu .item { - min-width: 6em; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -/* Icon */ - -.ui.labeled.icon.menu .item > .icon:not(.dropdown) { - height: 1em; - display: block; - font-size: 1.71428571em !important; - margin: 0em auto 0.5rem !important; -} - -/* Fluid */ - -.ui.fluid.labeled.icon.menu > .item { - min-width: 0em; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.menu { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - .ui.stackable.menu .item { - width: 100% !important; - } - - .ui.stackable.menu .item:before { - position: absolute; - content: ''; - top: auto; - bottom: 0px; - left: 0px; - width: 100%; - height: 1px; - background: rgba(34, 36, 38, 0.1); - } - - .ui.stackable.menu .left.menu, - .ui.stackable.menu .left.item { - margin-right: 0 !important; - } - - .ui.stackable.menu .right.menu, - .ui.stackable.menu .right.item { - margin-left: 0 !important; - } - - .ui.stackable.menu .right.menu, - .ui.stackable.menu .left.menu { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } -} - -/*-------------- - Colors ----------------*/ - -/*--- Standard Colors ---*/ - -.ui.menu .red.active.item, -.ui.red.menu .active.item { - border-color: #DB2828 !important; - color: #DB2828 !important; -} - -.ui.menu .orange.active.item, -.ui.orange.menu .active.item { - border-color: #F2711C !important; - color: #F2711C !important; -} - -.ui.menu .yellow.active.item, -.ui.yellow.menu .active.item { - border-color: #FBBD08 !important; - color: #FBBD08 !important; -} - -.ui.menu .olive.active.item, -.ui.olive.menu .active.item { - border-color: #B5CC18 !important; - color: #B5CC18 !important; -} - -.ui.menu .green.active.item, -.ui.green.menu .active.item { - border-color: #21BA45 !important; - color: #21BA45 !important; -} - -.ui.menu .teal.active.item, -.ui.teal.menu .active.item { - border-color: #00B5AD !important; - color: #00B5AD !important; -} - -.ui.menu .blue.active.item, -.ui.blue.menu .active.item { - border-color: #2185D0 !important; - color: #2185D0 !important; -} - -.ui.menu .violet.active.item, -.ui.violet.menu .active.item { - border-color: #6435C9 !important; - color: #6435C9 !important; -} - -.ui.menu .purple.active.item, -.ui.purple.menu .active.item { - border-color: #A333C8 !important; - color: #A333C8 !important; -} - -.ui.menu .pink.active.item, -.ui.pink.menu .active.item { - border-color: #E03997 !important; - color: #E03997 !important; -} - -.ui.menu .brown.active.item, -.ui.brown.menu .active.item { - border-color: #A5673F !important; - color: #A5673F !important; -} - -.ui.menu .grey.active.item, -.ui.grey.menu .active.item { - border-color: #767676 !important; - color: #767676 !important; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.menu { - border: 0px solid transparent; - background: #1B1C1D; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Menu Item */ - -.ui.inverted.menu .item, -.ui.inverted.menu .item > a:not(.ui) { - background: transparent; - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.menu .item.menu { - background: transparent; -} - -/*--- Border ---*/ - -.ui.inverted.menu .item:before { - background: rgba(255, 255, 255, 0.08); -} - -.ui.vertical.inverted.menu .item:before { - background: rgba(255, 255, 255, 0.08); -} - -/* Sub Menu */ - -.ui.vertical.inverted.menu .menu .item, -.ui.vertical.inverted.menu .menu .item a:not(.ui) { - color: rgba(255, 255, 255, 0.5); -} - -/* Header */ - -.ui.inverted.menu .header.item { - margin: 0em; - background: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Disabled */ - -.ui.inverted.menu .item.disabled, -.ui.inverted.menu .item.disabled:hover { - color: rgba(225, 225, 225, 0.3); -} - -/*--- Hover ---*/ - -.ui.link.inverted.menu .item:hover, -.ui.inverted.menu .dropdown.item:hover, -.ui.inverted.menu .link.item:hover, -.ui.inverted.menu a.item:hover { - background: rgba(255, 255, 255, 0.08); - color: #ffffff; -} - -.ui.vertical.inverted.menu .item .menu a.item:hover, -.ui.vertical.inverted.menu .item .menu .link.item:hover { - background: transparent; - color: #ffffff; -} - -/*--- Pressed ---*/ - -.ui.inverted.menu a.item:active, -.ui.inverted.menu .link.item:active { - background: rgba(255, 255, 255, 0.08); - color: #ffffff; -} - -/*--- Active ---*/ - -.ui.inverted.menu .active.item { - background: rgba(255, 255, 255, 0.15); - color: #ffffff !important; -} - -.ui.inverted.vertical.menu .item .menu .active.item { - background: transparent; - color: #FFFFFF; -} - -.ui.inverted.pointing.menu .active.item:after { - background: #3D3E3F !important; - margin: 0em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border: none !important; -} - -/*--- Active Hover ---*/ - -.ui.inverted.menu .active.item:hover { - background: rgba(255, 255, 255, 0.15); - color: #FFFFFF !important; -} - -.ui.inverted.pointing.menu .active.item:hover:after { - background: #3D3E3F !important; -} - -/*-------------- - Floated ----------------*/ - -.ui.floated.menu { - float: left; - margin: 0rem 0.5rem 0rem 0rem; -} - -.ui.floated.menu .item:last-child:before { - display: none; -} - -.ui.right.floated.menu { - float: right; - margin: 0rem 0rem 0rem 0.5rem; -} - -/*-------------- - Inverted ----------------*/ - -/* Red */ - -.ui.inverted.menu .red.active.item, -.ui.inverted.red.menu { - background-color: #DB2828; -} - -.ui.inverted.red.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.red.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Orange */ - -.ui.inverted.menu .orange.active.item, -.ui.inverted.orange.menu { - background-color: #F2711C; -} - -.ui.inverted.orange.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.orange.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Yellow */ - -.ui.inverted.menu .yellow.active.item, -.ui.inverted.yellow.menu { - background-color: #FBBD08; -} - -.ui.inverted.yellow.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.yellow.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Olive */ - -.ui.inverted.menu .olive.active.item, -.ui.inverted.olive.menu { - background-color: #B5CC18; -} - -.ui.inverted.olive.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.olive.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Green */ - -.ui.inverted.menu .green.active.item, -.ui.inverted.green.menu { - background-color: #21BA45; -} - -.ui.inverted.green.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.green.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Teal */ - -.ui.inverted.menu .teal.active.item, -.ui.inverted.teal.menu { - background-color: #00B5AD; -} - -.ui.inverted.teal.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.teal.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Blue */ - -.ui.inverted.menu .blue.active.item, -.ui.inverted.blue.menu { - background-color: #2185D0; -} - -.ui.inverted.blue.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.blue.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Violet */ - -.ui.inverted.menu .violet.active.item, -.ui.inverted.violet.menu { - background-color: #6435C9; -} - -.ui.inverted.violet.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.violet.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Purple */ - -.ui.inverted.menu .purple.active.item, -.ui.inverted.purple.menu { - background-color: #A333C8; -} - -.ui.inverted.purple.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.purple.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Pink */ - -.ui.inverted.menu .pink.active.item, -.ui.inverted.pink.menu { - background-color: #E03997; -} - -.ui.inverted.pink.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.pink.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Brown */ - -.ui.inverted.menu .brown.active.item, -.ui.inverted.brown.menu { - background-color: #A5673F; -} - -.ui.inverted.brown.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.brown.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/* Grey */ - -.ui.inverted.menu .grey.active.item, -.ui.inverted.grey.menu { - background-color: #767676; -} - -.ui.inverted.grey.menu .item:before { - background-color: rgba(34, 36, 38, 0.1); -} - -.ui.inverted.grey.menu .active.item { - background-color: rgba(0, 0, 0, 0.1) !important; -} - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.menu .item, -.ui.fitted.menu .item .menu .item, -.ui.menu .fitted.item { - padding: 0em; -} - -.ui.horizontally.fitted.menu .item, -.ui.horizontally.fitted.menu .item .menu .item, -.ui.menu .horizontally.fitted.item { - padding-top: 0.92857143em; - padding-bottom: 0.92857143em; -} - -.ui.vertically.fitted.menu .item, -.ui.vertically.fitted.menu .item .menu .item, -.ui.menu .vertically.fitted.item { - padding-left: 1.14285714em; - padding-right: 1.14285714em; -} - -/*-------------- - Borderless ----------------*/ - -.ui.borderless.menu .item:before, -.ui.borderless.menu .item .menu .item:before, -.ui.menu .borderless.item:before { - background: none !important; -} - -/*------------------- - Compact ---------------------*/ - -.ui.compact.menu { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin: 0em; - vertical-align: middle; -} - -.ui.compact.vertical.menu { - display: inline-block; -} - -.ui.compact.menu .item:last-child { - border-radius: 0em 0.28571429rem 0.28571429rem 0em; -} - -.ui.compact.menu .item:last-child:before { - display: none; -} - -.ui.compact.vertical.menu { - width: auto !important; -} - -.ui.compact.vertical.menu .item:last-child::before { - display: block; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.menu.fluid, -.ui.vertical.menu.fluid { - width: 100% !important; -} - -/*------------------- - Evenly Sized ---------------------*/ - -.ui.item.menu, -.ui.item.menu .item { - width: 100%; - padding-left: 0em !important; - padding-right: 0em !important; - margin-left: 0em !important; - margin-right: 0em !important; - text-align: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.ui.attached.item.menu { - margin: 0em -1px !important; -} - -.ui.item.menu .item:last-child:before { - display: none; -} - -.ui.menu.two.item .item { - width: 50%; -} - -.ui.menu.three.item .item { - width: 33.333%; -} - -.ui.menu.four.item .item { - width: 25%; -} - -.ui.menu.five.item .item { - width: 20%; -} - -.ui.menu.six.item .item { - width: 16.666%; -} - -.ui.menu.seven.item .item { - width: 14.285%; -} - -.ui.menu.eight.item .item { - width: 12.500%; -} - -.ui.menu.nine.item .item { - width: 11.11%; -} - -.ui.menu.ten.item .item { - width: 10.0%; -} - -.ui.menu.eleven.item .item { - width: 9.09%; -} - -.ui.menu.twelve.item .item { - width: 8.333%; -} - -/*-------------- - Fixed ----------------*/ - -.ui.menu.fixed { - position: fixed; - z-index: 101; - margin: 0em; - width: 100%; -} - -.ui.menu.fixed, -.ui.menu.fixed .item:first-child, -.ui.menu.fixed .item:last-child { - border-radius: 0px !important; -} - -.ui.fixed.menu, -.ui[class*="top fixed"].menu { - top: 0px; - left: 0px; - right: auto; - bottom: auto; -} - -.ui[class*="top fixed"].menu { - border-top: none; - border-left: none; - border-right: none; -} - -.ui[class*="right fixed"].menu { - border-top: none; - border-bottom: none; - border-right: none; - top: 0px; - right: 0px; - left: auto; - bottom: auto; - width: auto; - height: 100%; -} - -.ui[class*="bottom fixed"].menu { - border-bottom: none; - border-left: none; - border-right: none; - bottom: 0px; - left: 0px; - top: auto; - right: auto; -} - -.ui[class*="left fixed"].menu { - border-top: none; - border-bottom: none; - border-left: none; - top: 0px; - left: 0px; - right: auto; - bottom: auto; - width: auto; - height: 100%; -} - -/* Coupling with Grid */ - -.ui.fixed.menu + .ui.grid { - padding-top: 2.75rem; -} - -/*------------------- - Pointing ---------------------*/ - -.ui.pointing.menu .item:after { - visibility: hidden; - position: absolute; - content: ''; - top: 100%; - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - background: none; - margin: 0.5px 0em 0em; - width: 0.57142857em; - height: 0.57142857em; - border: none; - border-bottom: 1px solid #D4D4D5; - border-right: 1px solid #D4D4D5; - z-index: 2; - -webkit-transition: background 0.1s ease; - transition: background 0.1s ease; -} - -.ui.vertical.pointing.menu .item:after { - position: absolute; - top: 50%; - right: 0%; - bottom: auto; - left: auto; - -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg); - transform: translateX(50%) translateY(-50%) rotate(45deg); - margin: 0em -0.5px 0em 0em; - border: none; - border-top: 1px solid #D4D4D5; - border-right: 1px solid #D4D4D5; -} - -/* Active */ - -.ui.pointing.menu .active.item:after { - visibility: visible; -} - -.ui.pointing.menu .active.dropdown.item:after { - visibility: hidden; -} - -/* Don't double up pointers */ - -.ui.pointing.menu .dropdown.active.item:after, -.ui.pointing.menu .active.item .menu .active.item:after { - display: none; -} - -/* Colors */ - -.ui.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.pointing.menu .active.item:after { - background-color: #F2F2F2; -} - -.ui.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .active.item:hover:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .active.item:after { - background-color: #F2F2F2; -} - -.ui.vertical.pointing.menu .menu .active.item:after { - background-color: #FFFFFF; -} - -/*-------------- - Attached ----------------*/ - -/* Middle */ - -.ui.attached.menu { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.attached + .ui.attached.menu:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].menu { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1rem; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.menu[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].menu { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].menu:last-child { - margin-bottom: 0em; -} - -/* Attached Menu Item */ - -.ui.top.attached.menu > .item:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui.bottom.attached.menu > .item:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -/* Tabular Attached */ - -.ui.attached.menu:not(.tabular) { - border: 1px solid #D4D4D5; -} - -.ui.attached.inverted.menu { - border: none; -} - -.ui.attached.tabular.menu { - margin-left: 0; - margin-right: 0; - width: 100%; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ - -.ui.mini.menu { - font-size: 0.78571429rem; -} - -.ui.mini.vertical.menu { - width: 9rem; -} - -/* Tiny */ - -.ui.tiny.menu { - font-size: 0.85714286rem; -} - -.ui.tiny.vertical.menu { - width: 11rem; -} - -/* Small */ - -.ui.small.menu { - font-size: 0.92857143rem; -} - -.ui.small.vertical.menu { - width: 13rem; -} - -/* Medium */ - -.ui.menu { - font-size: 1rem; -} - -.ui.vertical.menu { - width: 15rem; -} - -/* Large */ - -.ui.large.menu { - font-size: 1.07142857rem; -} - -.ui.large.vertical.menu { - width: 18rem; -} - -/* Huge */ - -.ui.huge.menu { - font-size: 1.21428571rem; -} - -.ui.huge.vertical.menu { - width: 22rem; -} - -/* Big */ - -.ui.big.menu { - font-size: 1.14285714rem; -} - -.ui.big.vertical.menu { - width: 20rem; -} - -/* Massive */ - -.ui.massive.menu { - font-size: 1.28571429rem; -} - -.ui.massive.vertical.menu { - width: 25rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Message -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Message -*******************************/ - -.ui.message { - position: relative; - min-height: 1em; - margin: 1em 0em; - background: #F8F8F9; - padding: 1em 1.5em; - line-height: 1.4285em; - color: rgba(0, 0, 0, 0.87); - -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease; - transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.message:first-child { - margin-top: 0em; -} - -.ui.message:last-child { - margin-bottom: 0em; -} - -/*-------------- - Content ----------------*/ - -/* Header */ - -.ui.message .header { - display: block; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - margin: -0.14285714em 0em 0rem 0em; -} - -/* Default font size */ - -.ui.message .header:not(.ui) { - font-size: 1.14285714em; -} - -/* Paragraph */ - -.ui.message p { - opacity: 0.85; - margin: 0.75em 0em; -} - -.ui.message p:first-child { - margin-top: 0em; -} - -.ui.message p:last-child { - margin-bottom: 0em; -} - -.ui.message .header + p { - margin-top: 0.25em; -} - -/* List */ - -.ui.message .list:not(.ui) { - text-align: left; - padding: 0em; - opacity: 0.85; - list-style-position: inside; - margin: 0.5em 0em 0em; -} - -.ui.message .list:not(.ui):first-child { - margin-top: 0em; -} - -.ui.message .list:not(.ui):last-child { - margin-bottom: 0em; -} - -.ui.message .list:not(.ui) li { - position: relative; - list-style-type: none; - margin: 0em 0em 0.3em 1em; - padding: 0em; -} - -.ui.message .list:not(.ui) li:before { - position: absolute; - content: '•'; - left: -1em; - height: 100%; - vertical-align: baseline; -} - -.ui.message .list:not(.ui) li:last-child { - margin-bottom: 0em; -} - -/* Icon */ - -.ui.message > .icon { - margin-right: 0.6em; -} - -/* Close Icon */ - -.ui.message > .close.icon { - cursor: pointer; - position: absolute; - margin: 0em; - top: 0.78575em; - right: 0.5em; - opacity: 0.7; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -.ui.message > .close.icon:hover { - opacity: 1; -} - -/* First / Last Element */ - -.ui.message > :first-child { - margin-top: 0em; -} - -.ui.message > :last-child { - margin-bottom: 0em; -} - -/******************************* - Coupling -*******************************/ - -.ui.dropdown .menu > .message { - margin: 0px -1px; -} - -/******************************* - States -*******************************/ - -/*-------------- - Visible ----------------*/ - -.ui.visible.visible.visible.visible.message { - display: block; -} - -.ui.icon.visible.visible.visible.visible.message { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -/*-------------- - Hidden ----------------*/ - -.ui.hidden.hidden.hidden.hidden.message { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Compact ----------------*/ - -.ui.compact.message { - display: inline-block; -} - -.ui.compact.icon.message { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; -} - -/*-------------- - Attached ----------------*/ - -.ui.attached.message { - margin-bottom: -1px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset; - margin-left: -1px; - margin-right: -1px; -} - -.ui.attached + .ui.attached.message:not(.top):not(.bottom) { - margin-top: -1px; - border-radius: 0em; -} - -.ui.bottom.attached.message { - margin-top: -1px; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15); - box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15); -} - -.ui.bottom.attached.message:not(:last-child) { - margin-bottom: 1em; -} - -.ui.attached.icon.message { - width: auto; -} - -/*-------------- - Icon ----------------*/ - -.ui.icon.message { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.ui.icon.message > .icon:not(.close) { - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - line-height: 1; - vertical-align: middle; - font-size: 3em; - opacity: 0.8; -} - -.ui.icon.message > .content { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - vertical-align: middle; -} - -.ui.icon.message .icon:not(.close) + .content { - padding-left: 0rem; -} - -.ui.icon.message .circular.icon { - width: 1em; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.message { - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*-------------- - Colors ----------------*/ - -.ui.black.message { - background-color: #1B1C1D; - color: rgba(255, 255, 255, 0.9); -} - -/*-------------- - Types ----------------*/ - -/* Positive */ - -.ui.positive.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.positive.message, -.ui.attached.positive.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.positive.message .header { - color: #1A531B; -} - -/* Negative */ - -.ui.negative.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.negative.message, -.ui.attached.negative.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.negative.message .header { - color: #912D2B; -} - -/* Info */ - -.ui.info.message { - background-color: #F8FFFF; - color: #276F86; -} - -.ui.info.message, -.ui.attached.info.message { - -webkit-box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A9D5DE inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.info.message .header { - color: #0E566C; -} - -/* Warning */ - -.ui.warning.message { - background-color: #FFFAF3; - color: #573A08; -} - -.ui.warning.message, -.ui.attached.warning.message { - -webkit-box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #C9BA9B inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.warning.message .header { - color: #794B02; -} - -/* Error */ - -.ui.error.message { - background-color: #FFF6F6; - color: #9F3A38; -} - -.ui.error.message, -.ui.attached.error.message { - -webkit-box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E0B4B4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.error.message .header { - color: #912D2B; -} - -/* Success */ - -.ui.success.message { - background-color: #FCFFF5; - color: #2C662D; -} - -.ui.success.message, -.ui.attached.success.message { - -webkit-box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A3C293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.success.message .header { - color: #1A531B; -} - -/* Colors */ - -.ui.inverted.message, -.ui.black.message { - background-color: #1B1C1D; - color: rgba(255, 255, 255, 0.9); -} - -.ui.red.message { - background-color: #FFE8E6; - color: #DB2828; - -webkit-box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #DB2828 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.red.message .header { - color: #c82121; -} - -.ui.orange.message { - background-color: #FFEDDE; - color: #F2711C; - -webkit-box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #F2711C inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.orange.message .header { - color: #e7640d; -} - -.ui.yellow.message { - background-color: #FFF8DB; - color: #B58105; - -webkit-box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #B58105 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.yellow.message .header { - color: #9c6f04; -} - -.ui.olive.message { - background-color: #FBFDEF; - color: #8ABC1E; - -webkit-box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #8ABC1E inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.olive.message .header { - color: #7aa61a; -} - -.ui.green.message { - background-color: #E5F9E7; - color: #1EBC30; - -webkit-box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #1EBC30 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.green.message .header { - color: #1aa62a; -} - -.ui.teal.message { - background-color: #E1F7F7; - color: #10A3A3; - -webkit-box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #10A3A3 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.teal.message .header { - color: #0e8c8c; -} - -.ui.blue.message { - background-color: #DFF0FF; - color: #2185D0; - -webkit-box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #2185D0 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.blue.message .header { - color: #1e77ba; -} - -.ui.violet.message { - background-color: #EAE7FF; - color: #6435C9; - -webkit-box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #6435C9 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.violet.message .header { - color: #5a30b5; -} - -.ui.purple.message { - background-color: #F6E7FF; - color: #A333C8; - -webkit-box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A333C8 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.purple.message .header { - color: #922eb4; -} - -.ui.pink.message { - background-color: #FFE3FB; - color: #E03997; - -webkit-box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #E03997 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.pink.message .header { - color: #dd238b; -} - -.ui.brown.message { - background-color: #F1E2D3; - color: #A5673F; - -webkit-box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); - box-shadow: 0px 0px 0px 1px #A5673F inset, 0px 0px 0px 0px rgba(0, 0, 0, 0); -} - -.ui.brown.message .header { - color: #935b38; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.message { - font-size: 0.78571429em; -} - -.ui.tiny.message { - font-size: 0.85714286em; -} - -.ui.small.message { - font-size: 0.92857143em; -} - -.ui.message { - font-size: 1em; -} - -.ui.large.message { - font-size: 1.14285714em; -} - -.ui.big.message { - font-size: 1.28571429em; -} - -.ui.huge.message { - font-size: 1.42857143em; -} - -.ui.massive.message { - font-size: 1.71428571em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Table -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Table -*******************************/ - -/* Prototype */ - -.ui.table { - width: 100%; - background: #FFFFFF; - margin: 1em 0em; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0.28571429rem; - text-align: left; - color: rgba(0, 0, 0, 0.87); - border-collapse: separate; - border-spacing: 0px; -} - -.ui.table:first-child { - margin-top: 0em; -} - -.ui.table:last-child { - margin-bottom: 0em; -} - -/******************************* - Parts -*******************************/ - -/* Table Content */ - -.ui.table th, -.ui.table td { - -webkit-transition: background 0.1s ease, color 0.1s ease; - transition: background 0.1s ease, color 0.1s ease; -} - -/* Headers */ - -.ui.table thead { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.table thead th { - cursor: auto; - background: #F9FAFB; - text-align: inherit; - color: rgba(0, 0, 0, 0.87); - padding: 0.92857143em 0.78571429em; - vertical-align: inherit; - font-style: none; - font-weight: bold; - text-transform: none; - border-bottom: 1px solid rgba(34, 36, 38, 0.1); - border-left: none; -} - -.ui.table thead tr > th:first-child { - border-left: none; -} - -.ui.table thead tr:first-child > th:first-child { - border-radius: 0.28571429rem 0em 0em 0em; -} - -.ui.table thead tr:first-child > th:last-child { - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui.table thead tr:first-child > th:only-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Footer */ - -.ui.table tfoot { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.table tfoot th { - cursor: auto; - border-top: 1px solid rgba(34, 36, 38, 0.15); - background: #F9FAFB; - text-align: inherit; - color: rgba(0, 0, 0, 0.87); - padding: 0.78571429em 0.78571429em; - vertical-align: middle; - font-style: normal; - font-weight: normal; - text-transform: none; -} - -.ui.table tfoot tr > th:first-child { - border-left: none; -} - -.ui.table tfoot tr:first-child > th:first-child { - border-radius: 0em 0em 0em 0.28571429rem; -} - -.ui.table tfoot tr:first-child > th:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -.ui.table tfoot tr:first-child > th:only-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/* Table Row */ - -.ui.table tr td { - border-top: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.table tr:first-child td { - border-top: none; -} - -/* Repeated tbody */ - -.ui.table tbody + tbody tr:first-child td { - border-top: 1px solid rgba(34, 36, 38, 0.1); -} - -/* Table Cells */ - -.ui.table td { - padding: 0.78571429em 0.78571429em; - text-align: inherit; -} - -/* Icons */ - -.ui.table > .icon { - vertical-align: baseline; -} - -.ui.table > .icon:only-child { - margin: 0em; -} - -/* Table Segment */ - -.ui.table.segment { - padding: 0em; -} - -.ui.table.segment:after { - display: none; -} - -.ui.table.segment.stacked:after { - display: block; -} - -/* Responsive */ - -@media only screen and (max-width: 767px) { - .ui.table:not(.unstackable) { - width: 100%; - } - - .ui.table:not(.unstackable) tbody, - .ui.table:not(.unstackable) tr, - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - width: auto !important; - display: block !important; - } - - .ui.table:not(.unstackable) { - padding: 0em; - } - - .ui.table:not(.unstackable) thead { - display: block; - } - - .ui.table:not(.unstackable) tfoot { - display: block; - } - - .ui.table:not(.unstackable) tr { - padding-top: 1em; - padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui.table:not(.unstackable) tr > th, - .ui.table:not(.unstackable) tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - .ui.table:not(.unstackable) th:first-child, - .ui.table:not(.unstackable) td:first-child { - font-weight: bold; - } - - /* Definition Table */ - - .ui.definition.table:not(.unstackable) thead th:first-child { - -webkit-box-shadow: none !important; - box-shadow: none !important; - } -} - -/******************************* - Coupling -*******************************/ - -/* UI Image */ - -.ui.table th .image, -.ui.table th .image img, -.ui.table td .image, -.ui.table td .image img { - max-width: none; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Complex ----------------*/ - -.ui.structured.table { - border-collapse: collapse; -} - -.ui.structured.table thead th { - border-left: none; - border-right: none; -} - -.ui.structured.sortable.table thead th { - border-left: 1px solid rgba(34, 36, 38, 0.15); - border-right: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.structured.basic.table th { - border-left: none; - border-right: none; -} - -.ui.structured.celled.table tr th, -.ui.structured.celled.table tr td { - border-left: 1px solid rgba(34, 36, 38, 0.1); - border-right: 1px solid rgba(34, 36, 38, 0.1); -} - -/*-------------- - Definition ----------------*/ - -.ui.definition.table thead:not(.full-width) th:first-child { - pointer-events: none; - background: transparent; - font-weight: normal; - color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: -1px -1px 0px 1px #FFFFFF; - box-shadow: -1px -1px 0px 1px #FFFFFF; -} - -.ui.definition.table tfoot:not(.full-width) th:first-child { - pointer-events: none; - background: transparent; - font-weight: rgba(0, 0, 0, 0.4); - color: normal; - -webkit-box-shadow: 1px 1px 0px 1px #FFFFFF; - box-shadow: 1px 1px 0px 1px #FFFFFF; -} - -/* Remove Border */ - -.ui.celled.definition.table thead:not(.full-width) th:first-child { - -webkit-box-shadow: 0px -1px 0px 1px #FFFFFF; - box-shadow: 0px -1px 0px 1px #FFFFFF; -} - -.ui.celled.definition.table tfoot:not(.full-width) th:first-child { - -webkit-box-shadow: 0px 1px 0px 1px #FFFFFF; - box-shadow: 0px 1px 0px 1px #FFFFFF; -} - -/* Highlight Defining Column */ - -.ui.definition.table tr td:first-child:not(.ignored), -.ui.definition.table tr td.definition { - background: rgba(0, 0, 0, 0.03); - font-weight: bold; - color: rgba(0, 0, 0, 0.95); - text-transform: ''; - -webkit-box-shadow: ''; - box-shadow: ''; - text-align: ''; - font-size: 1em; - padding-left: ''; - padding-right: ''; -} - -/* Fix 2nd Column */ - -.ui.definition.table thead:not(.full-width) th:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.definition.table tfoot:not(.full-width) th:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.definition.table td:nth-child(2) { - border-left: 1px solid rgba(34, 36, 38, 0.15); -} - -/******************************* - States -*******************************/ - -/*-------------- - Positive ----------------*/ - -.ui.table tr.positive, -.ui.table td.positive { - -webkit-box-shadow: 0px 0px 0px #A3C293 inset; - box-shadow: 0px 0px 0px #A3C293 inset; -} - -.ui.table tr.positive, -.ui.table td.positive { - background: #FCFFF5 !important; - color: #2C662D !important; -} - -/*-------------- - Negative ----------------*/ - -.ui.table tr.negative, -.ui.table td.negative { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.negative, -.ui.table td.negative { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Error ----------------*/ - -.ui.table tr.error, -.ui.table td.error { - -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset; - box-shadow: 0px 0px 0px #E0B4B4 inset; -} - -.ui.table tr.error, -.ui.table td.error { - background: #FFF6F6 !important; - color: #9F3A38 !important; -} - -/*-------------- - Warning ----------------*/ - -.ui.table tr.warning, -.ui.table td.warning { - -webkit-box-shadow: 0px 0px 0px #C9BA9B inset; - box-shadow: 0px 0px 0px #C9BA9B inset; -} - -.ui.table tr.warning, -.ui.table td.warning { - background: #FFFAF3 !important; - color: #573A08 !important; -} - -/*-------------- - Active ----------------*/ - -.ui.table tr.active, -.ui.table td.active { - -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; - box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset; -} - -.ui.table tr.active, -.ui.table td.active { - background: #E0E0E0 !important; - color: rgba(0, 0, 0, 0.87) !important; -} - -/*-------------- - Disabled ----------------*/ - -.ui.table tr.disabled td, -.ui.table tr td.disabled, -.ui.table tr.disabled:hover, -.ui.table tr:hover td.disabled { - pointer-events: none; - color: rgba(40, 40, 40, 0.3); -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Stackable ----------------*/ - -@media only screen and (max-width: 991px) { - .ui[class*="tablet stackable"].table, - .ui[class*="tablet stackable"].table tbody, - .ui[class*="tablet stackable"].table tr, - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - width: 100% !important; - display: block !important; - } - - .ui[class*="tablet stackable"].table { - padding: 0em; - } - - .ui[class*="tablet stackable"].table thead { - display: block; - } - - .ui[class*="tablet stackable"].table tfoot { - display: block; - } - - .ui[class*="tablet stackable"].table tr { - padding-top: 1em; - padding-bottom: 1em; - -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important; - } - - .ui[class*="tablet stackable"].table tr > th, - .ui[class*="tablet stackable"].table tr > td { - background: none; - border: none !important; - padding: 0.25em 0.75em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - /* Definition Table */ - - .ui.definition[class*="tablet stackable"].table thead th:first-child { - -webkit-box-shadow: none !important; - box-shadow: none !important; - } -} - -/*-------------- -Text Alignment ----------------*/ - -.ui.table[class*="left aligned"], -.ui.table [class*="left aligned"] { - text-align: left; -} - -.ui.table[class*="center aligned"], -.ui.table [class*="center aligned"] { - text-align: center; -} - -.ui.table[class*="right aligned"], -.ui.table [class*="right aligned"] { - text-align: right; -} - -/*------------------ -Vertical Alignment -------------------*/ - -.ui.table[class*="top aligned"], -.ui.table [class*="top aligned"] { - vertical-align: top; -} - -.ui.table[class*="middle aligned"], -.ui.table [class*="middle aligned"] { - vertical-align: middle; -} - -.ui.table[class*="bottom aligned"], -.ui.table [class*="bottom aligned"] { - vertical-align: bottom; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.table th.collapsing, -.ui.table td.collapsing { - width: 1px; - white-space: nowrap; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.table { - table-layout: fixed; -} - -.ui.fixed.table th, -.ui.fixed.table td { - overflow: hidden; - text-overflow: ellipsis; -} - -/*-------------- - Selectable ----------------*/ - -.ui.selectable.table tbody tr:hover, -.ui.table tbody tr td.selectable:hover { - background: rgba(0, 0, 0, 0.05) !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.selectable.inverted.table tbody tr:hover, -.ui.inverted.table tbody tr td.selectable:hover { - background: rgba(255, 255, 255, 0.08) !important; - color: #ffffff !important; -} - -/* Selectable Cell Link */ - -.ui.table tbody tr td.selectable { - padding: 0em; -} - -.ui.table tbody tr td.selectable > a:not(.ui) { - display: block; - color: inherit; - padding: 0.78571429em 0.78571429em; -} - -/* Other States */ - -.ui.selectable.table tr.error:hover, -.ui.table tr td.selectable.error:hover, -.ui.selectable.table tr:hover td.error { - background: #ffe7e7 !important; - color: #943634 !important; -} - -.ui.selectable.table tr.warning:hover, -.ui.table tr td.selectable.warning:hover, -.ui.selectable.table tr:hover td.warning { - background: #fff4e4 !important; - color: #493107 !important; -} - -.ui.selectable.table tr.active:hover, -.ui.table tr td.selectable.active:hover, -.ui.selectable.table tr:hover td.active { - background: #E0E0E0 !important; - color: rgba(0, 0, 0, 0.87) !important; -} - -.ui.selectable.table tr.positive:hover, -.ui.table tr td.selectable.positive:hover, -.ui.selectable.table tr:hover td.positive { - background: #f7ffe6 !important; - color: #275b28 !important; -} - -.ui.selectable.table tr.negative:hover, -.ui.table tr td.selectable.negative:hover, -.ui.selectable.table tr:hover td.negative { - background: #ffe7e7 !important; - color: #943634 !important; -} - -/*------------------- - Attached ---------------------*/ - -/* Middle */ - -.ui.attached.table { - top: 0px; - bottom: 0px; - border-radius: 0px; - margin: 0em -1px; - width: calc(100% + 2px ); - max-width: calc(100% + 2px ); - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid #D4D4D5; -} - -.ui.attached + .ui.attached.table:not(.top) { - border-top: none; -} - -/* Top */ - -.ui[class*="top attached"].table { - bottom: 0px; - margin-bottom: 0em; - top: 0px; - margin-top: 1em; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.table[class*="top attached"]:first-child { - margin-top: 0em; -} - -/* Bottom */ - -.ui[class*="bottom attached"].table { - bottom: 0px; - margin-top: 0em; - top: 0px; - margin-bottom: 1em; - -webkit-box-shadow: none, none; - box-shadow: none, none; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui[class*="bottom attached"].table:last-child { - margin-bottom: 0em; -} - -/*-------------- - Striped ----------------*/ - -/* Table Striping */ - -.ui.striped.table > tr:nth-child(2n), -.ui.striped.table tbody tr:nth-child(2n) { - background-color: rgba(0, 0, 50, 0.02); -} - -/* Stripes */ - -.ui.inverted.striped.table > tr:nth-child(2n), -.ui.inverted.striped.table tbody tr:nth-child(2n) { - background-color: rgba(255, 255, 255, 0.05); -} - -/* Allow striped active hover */ - -.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover { - background: #EFEFEF !important; - color: rgba(0, 0, 0, 0.95) !important; -} - -/*-------------- - Single Line ----------------*/ - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -.ui.table[class*="single line"], -.ui.table [class*="single line"] { - white-space: nowrap; -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.table { - border-top: 0.2em solid #DB2828; -} - -.ui.inverted.red.table { - background-color: #DB2828 !important; - color: #FFFFFF !important; -} - -/* Orange */ - -.ui.orange.table { - border-top: 0.2em solid #F2711C; -} - -.ui.inverted.orange.table { - background-color: #F2711C !important; - color: #FFFFFF !important; -} - -/* Yellow */ - -.ui.yellow.table { - border-top: 0.2em solid #FBBD08; -} - -.ui.inverted.yellow.table { - background-color: #FBBD08 !important; - color: #FFFFFF !important; -} - -/* Olive */ - -.ui.olive.table { - border-top: 0.2em solid #B5CC18; -} - -.ui.inverted.olive.table { - background-color: #B5CC18 !important; - color: #FFFFFF !important; -} - -/* Green */ - -.ui.green.table { - border-top: 0.2em solid #21BA45; -} - -.ui.inverted.green.table { - background-color: #21BA45 !important; - color: #FFFFFF !important; -} - -/* Teal */ - -.ui.teal.table { - border-top: 0.2em solid #00B5AD; -} - -.ui.inverted.teal.table { - background-color: #00B5AD !important; - color: #FFFFFF !important; -} - -/* Blue */ - -.ui.blue.table { - border-top: 0.2em solid #2185D0; -} - -.ui.inverted.blue.table { - background-color: #2185D0 !important; - color: #FFFFFF !important; -} - -/* Violet */ - -.ui.violet.table { - border-top: 0.2em solid #6435C9; -} - -.ui.inverted.violet.table { - background-color: #6435C9 !important; - color: #FFFFFF !important; -} - -/* Purple */ - -.ui.purple.table { - border-top: 0.2em solid #A333C8; -} - -.ui.inverted.purple.table { - background-color: #A333C8 !important; - color: #FFFFFF !important; -} - -/* Pink */ - -.ui.pink.table { - border-top: 0.2em solid #E03997; -} - -.ui.inverted.pink.table { - background-color: #E03997 !important; - color: #FFFFFF !important; -} - -/* Brown */ - -.ui.brown.table { - border-top: 0.2em solid #A5673F; -} - -.ui.inverted.brown.table { - background-color: #A5673F !important; - color: #FFFFFF !important; -} - -/* Grey */ - -.ui.grey.table { - border-top: 0.2em solid #767676; -} - -.ui.inverted.grey.table { - background-color: #767676 !important; - color: #FFFFFF !important; -} - -/* Black */ - -.ui.black.table { - border-top: 0.2em solid #1B1C1D; -} - -.ui.inverted.black.table { - background-color: #1B1C1D !important; - color: #FFFFFF !important; -} - -/*-------------- - Column Count ----------------*/ - -/* Grid Based */ - -.ui.one.column.table td { - width: 100%; -} - -.ui.two.column.table td { - width: 50%; -} - -.ui.three.column.table td { - width: 33.33333333%; -} - -.ui.four.column.table td { - width: 25%; -} - -.ui.five.column.table td { - width: 20%; -} - -.ui.six.column.table td { - width: 16.66666667%; -} - -.ui.seven.column.table td { - width: 14.28571429%; -} - -.ui.eight.column.table td { - width: 12.5%; -} - -.ui.nine.column.table td { - width: 11.11111111%; -} - -.ui.ten.column.table td { - width: 10%; -} - -.ui.eleven.column.table td { - width: 9.09090909%; -} - -.ui.twelve.column.table td { - width: 8.33333333%; -} - -.ui.thirteen.column.table td { - width: 7.69230769%; -} - -.ui.fourteen.column.table td { - width: 7.14285714%; -} - -.ui.fifteen.column.table td { - width: 6.66666667%; -} - -.ui.sixteen.column.table td { - width: 6.25%; -} - -/* Column Width */ - -.ui.table th.one.wide, -.ui.table td.one.wide { - width: 6.25%; -} - -.ui.table th.two.wide, -.ui.table td.two.wide { - width: 12.5%; -} - -.ui.table th.three.wide, -.ui.table td.three.wide { - width: 18.75%; -} - -.ui.table th.four.wide, -.ui.table td.four.wide { - width: 25%; -} - -.ui.table th.five.wide, -.ui.table td.five.wide { - width: 31.25%; -} - -.ui.table th.six.wide, -.ui.table td.six.wide { - width: 37.5%; -} - -.ui.table th.seven.wide, -.ui.table td.seven.wide { - width: 43.75%; -} - -.ui.table th.eight.wide, -.ui.table td.eight.wide { - width: 50%; -} - -.ui.table th.nine.wide, -.ui.table td.nine.wide { - width: 56.25%; -} - -.ui.table th.ten.wide, -.ui.table td.ten.wide { - width: 62.5%; -} - -.ui.table th.eleven.wide, -.ui.table td.eleven.wide { - width: 68.75%; -} - -.ui.table th.twelve.wide, -.ui.table td.twelve.wide { - width: 75%; -} - -.ui.table th.thirteen.wide, -.ui.table td.thirteen.wide { - width: 81.25%; -} - -.ui.table th.fourteen.wide, -.ui.table td.fourteen.wide { - width: 87.5%; -} - -.ui.table th.fifteen.wide, -.ui.table td.fifteen.wide { - width: 93.75%; -} - -.ui.table th.sixteen.wide, -.ui.table td.sixteen.wide { - width: 100%; -} - -/*-------------- - Sortable ----------------*/ - -.ui.sortable.table thead th { - cursor: pointer; - white-space: nowrap; - border-left: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); -} - -.ui.sortable.table thead th:first-child { - border-left: none; -} - -.ui.sortable.table thead th.sorted, -.ui.sortable.table thead th.sorted:hover { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.ui.sortable.table thead th:after { - display: none; - font-style: normal; - font-weight: normal; - text-decoration: inherit; - content: ''; - height: 1em; - width: auto; - opacity: 0.8; - margin: 0em 0em 0em 0.5em; - font-family: 'Icons'; -} - -.ui.sortable.table thead th.ascending:after { - content: '\f0d8'; -} - -.ui.sortable.table thead th.descending:after { - content: '\f0d7'; -} - -/* Hover */ - -.ui.sortable.table th.disabled:hover { - cursor: auto; - color: rgba(40, 40, 40, 0.3); -} - -.ui.sortable.table thead th:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.8); -} - -/* Sorted */ - -.ui.sortable.table thead th.sorted { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -.ui.sortable.table thead th.sorted:after { - display: inline-block; -} - -/* Sorted Hover */ - -.ui.sortable.table thead th.sorted:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); -} - -/* Inverted */ - -.ui.inverted.sortable.table thead th.sorted { - background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - color: #ffffff; -} - -.ui.inverted.sortable.table thead th:hover { - background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - color: #ffffff; -} - -.ui.inverted.sortable.table thead th { - border-left-color: transparent; - border-right-color: transparent; -} - -/*-------------- - Inverted ----------------*/ - -/* Text Color */ - -.ui.inverted.table { - background: #333333; - color: rgba(255, 255, 255, 0.9); - border: none; -} - -.ui.inverted.table th { - background-color: rgba(0, 0, 0, 0.15); - border-color: rgba(255, 255, 255, 0.1) !important; - color: rgba(255, 255, 255, 0.9) !important; -} - -.ui.inverted.table tr td { - border-color: rgba(255, 255, 255, 0.1) !important; -} - -.ui.inverted.table tr.disabled td, -.ui.inverted.table tr td.disabled, -.ui.inverted.table tr.disabled:hover td, -.ui.inverted.table tr:hover td.disabled { - pointer-events: none; - color: rgba(225, 225, 225, 0.3); -} - -/* Definition */ - -.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, -.ui.inverted.definition.table thead:not(.full-width) th:first-child { - background: #FFFFFF; -} - -.ui.inverted.definition.table tr td:first-child { - background: rgba(255, 255, 255, 0.02); - color: #ffffff; -} - -/*-------------- - Collapsing ----------------*/ - -.ui.collapsing.table { - width: auto; -} - -/*-------------- - Basic ----------------*/ - -.ui.basic.table { - background: transparent; - border: 1px solid rgba(34, 36, 38, 0.15); - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.basic.table thead, -.ui.basic.table tfoot { - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.basic.table th { - background: transparent; - border-left: none; -} - -.ui.basic.table tbody tr { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); -} - -.ui.basic.table td { - background: transparent; -} - -.ui.basic.striped.table tbody tr:nth-child(2n) { - background-color: rgba(0, 0, 0, 0.05) !important; -} - -/* Very Basic */ - -.ui[class*="very basic"].table { - border: none; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td { - padding: ''; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child { - padding-left: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child, -.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child { - padding-right: 0em; -} - -.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th { - padding-top: 0em; -} - -/*-------------- - Celled ----------------*/ - -.ui.celled.table tr th, -.ui.celled.table tr td { - border-left: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.celled.table tr th:first-child, -.ui.celled.table tr td:first-child { - border-left: none; -} - -/*-------------- - Padded ----------------*/ - -.ui.padded.table th { - padding-left: 1em; - padding-right: 1em; -} - -.ui.padded.table th, -.ui.padded.table td { - padding: 1em 1em; -} - -/* Very */ - -.ui[class*="very padded"].table th { - padding-left: 1.5em; - padding-right: 1.5em; -} - -.ui[class*="very padded"].table td { - padding: 1.5em 1.5em; -} - -/*-------------- - Compact ----------------*/ - -.ui.compact.table th { - padding-left: 0.7em; - padding-right: 0.7em; -} - -.ui.compact.table td { - padding: 0.5em 0.7em; -} - -/* Very */ - -.ui[class*="very compact"].table th { - padding-left: 0.6em; - padding-right: 0.6em; -} - -.ui[class*="very compact"].table td { - padding: 0.4em 0.6em; -} - -/*-------------- - Sizes ----------------*/ - -/* Small */ - -.ui.small.table { - font-size: 0.9em; -} - -/* Standard */ - -.ui.table { - font-size: 1em; -} - -/* Large */ - -.ui.large.table { - font-size: 1.1em; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Ad -* http://github.com/semantic-org/semantic-ui/ -* -* -* Copyright 2013 Contributors -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Advertisement -*******************************/ - -.ui.ad { - display: block; - overflow: hidden; - margin: 1em 0em; -} - -.ui.ad:first-child { - margin: 0em; -} - -.ui.ad:last-child { - margin: 0em; -} - -.ui.ad iframe { - margin: 0em; - padding: 0em; - border: none; - overflow: hidden; -} - -/*-------------- - Common ----------------*/ - -/* Leaderboard */ - -.ui.leaderboard.ad { - width: 728px; - height: 90px; -} - -/* Medium Rectangle */ - -.ui[class*="medium rectangle"].ad { - width: 300px; - height: 250px; -} - -/* Large Rectangle */ - -.ui[class*="large rectangle"].ad { - width: 336px; - height: 280px; -} - -/* Half Page */ - -.ui[class*="half page"].ad { - width: 300px; - height: 600px; -} - -/*-------------- - Square ----------------*/ - -/* Square */ - -.ui.square.ad { - width: 250px; - height: 250px; -} - -/* Small Square */ - -.ui[class*="small square"].ad { - width: 200px; - height: 200px; -} - -/*-------------- - Rectangle ----------------*/ - -/* Small Rectangle */ - -.ui[class*="small rectangle"].ad { - width: 180px; - height: 150px; -} - -/* Vertical Rectangle */ - -.ui[class*="vertical rectangle"].ad { - width: 240px; - height: 400px; -} - -/*-------------- - Button ----------------*/ - -.ui.button.ad { - width: 120px; - height: 90px; -} - -.ui[class*="square button"].ad { - width: 125px; - height: 125px; -} - -.ui[class*="small button"].ad { - width: 120px; - height: 60px; -} - -/*-------------- - Skyscrapers ----------------*/ - -/* Skyscraper */ - -.ui.skyscraper.ad { - width: 120px; - height: 600px; -} - -/* Wide Skyscraper */ - -.ui[class*="wide skyscraper"].ad { - width: 160px; -} - -/*-------------- - Banners ----------------*/ - -/* Banner */ - -.ui.banner.ad { - width: 468px; - height: 60px; -} - -/* Vertical Banner */ - -.ui[class*="vertical banner"].ad { - width: 120px; - height: 240px; -} - -/* Top Banner */ - -.ui[class*="top banner"].ad { - width: 930px; - height: 180px; -} - -/* Half Banner */ - -.ui[class*="half banner"].ad { - width: 234px; - height: 60px; -} - -/*-------------- - Boards ----------------*/ - -/* Leaderboard */ - -.ui[class*="large leaderboard"].ad { - width: 970px; - height: 90px; -} - -/* Billboard */ - -.ui.billboard.ad { - width: 970px; - height: 250px; -} - -/*-------------- - Panorama ----------------*/ - -/* Panorama */ - -.ui.panorama.ad { - width: 980px; - height: 120px; -} - -/*-------------- - Netboard ----------------*/ - -/* Netboard */ - -.ui.netboard.ad { - width: 580px; - height: 400px; -} - -/*-------------- - Mobile ----------------*/ - -/* Large Mobile Banner */ - -.ui[class*="large mobile banner"].ad { - width: 320px; - height: 100px; -} - -/* Mobile Leaderboard */ - -.ui[class*="mobile leaderboard"].ad { - width: 320px; - height: 50px; -} - -/******************************* - Types -*******************************/ - -/* Mobile Sizes */ - -.ui.mobile.ad { - display: none; -} - -@media only screen and (max-width: 767px) { - .ui.mobile.ad { - display: block; - } -} - -/******************************* - Variations -*******************************/ - -.ui.centered.ad { - margin-left: auto; - margin-right: auto; -} - -.ui.test.ad { - position: relative; - background: #545454; -} - -.ui.test.ad:after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - text-align: center; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - content: 'Ad'; - color: #FFFFFF; - font-size: 1em; - font-weight: bold; -} - -.ui.mobile.test.ad:after { - font-size: 0.85714286em; -} - -.ui.test.ad[data-text]:after { - content: attr(data-text); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Item -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------- - Card ----------------*/ - -.ui.cards > .card, -.ui.card { - max-width: 100%; - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - width: 290px; - min-height: 0px; - background: #FFFFFF; - padding: 0em; - border: none; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 1px 3px 0px #D4D4D5, 0px 0px 0px 1px #D4D4D5; - -webkit-transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; - transition: box-shadow 0.1s ease, transform 0.1s ease; - transition: box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease; - z-index: ''; -} - -.ui.card { - margin: 1em 0em; -} - -.ui.cards > .card a, -.ui.card a { - cursor: pointer; -} - -.ui.card:first-child { - margin-top: 0em; -} - -.ui.card:last-child { - margin-bottom: 0em; -} - -/*-------------- - Cards ----------------*/ - -.ui.cards { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: -0.875em -0.5em; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.ui.cards > .card { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 0.875em 0.5em; - float: none; -} - -/* Clearing */ - -.ui.cards:after, -.ui.card:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -/* Consecutive Card Groups Preserve Row Spacing */ - -.ui.cards ~ .ui.cards { - margin-top: 0.875em; -} - -/*-------------- - Rounded Edges ----------------*/ - -.ui.cards > .card > :first-child, -.ui.card > :first-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em !important; - border-top: none !important; -} - -.ui.cards > .card > :last-child, -.ui.card > :last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; -} - -.ui.cards > .card > :only-child, -.ui.card > :only-child { - border-radius: 0.28571429rem !important; -} - -/*-------------- - Images ----------------*/ - -.ui.cards > .card > .image, -.ui.card > .image { - position: relative; - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding: 0em; - background: rgba(0, 0, 0, 0.05); -} - -.ui.cards > .card > .image > img, -.ui.card > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: inherit; -} - -.ui.cards > .card > .image:not(.ui) > img, -.ui.card > .image:not(.ui) > img { - border: none; -} - -/*-------------- - Content ----------------*/ - -.ui.cards > .card > .content, -.ui.card > .content { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - border: none; - border-top: 1px solid rgba(34, 36, 38, 0.1); - background: none; - margin: 0em; - padding: 1em 1em; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 1em; - border-radius: 0em; -} - -.ui.cards > .card > .content:after, -.ui.card > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.cards > .card > .content > .header, -.ui.card > .content > .header { - display: block; - margin: ''; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - color: rgba(0, 0, 0, 0.85); -} - -/* Default Header Size */ - -.ui.cards > .card > .content > .header:not(.ui), -.ui.card > .content > .header:not(.ui) { - font-weight: bold; - font-size: 1.28571429em; - margin-top: -0.21425em; - line-height: 1.28571429em; -} - -.ui.cards > .card > .content > .meta + .description, -.ui.cards > .card > .content > .header + .description, -.ui.card > .content > .meta + .description, -.ui.card > .content > .header + .description { - margin-top: 0.5em; -} - -/*---------------- -Floated Content ------------------*/ - -.ui.cards > .card [class*="left floated"], -.ui.card [class*="left floated"] { - float: left; -} - -.ui.cards > .card [class*="right floated"], -.ui.card [class*="right floated"] { - float: right; -} - -/*-------------- - Aligned ----------------*/ - -.ui.cards > .card [class*="left aligned"], -.ui.card [class*="left aligned"] { - text-align: left; -} - -.ui.cards > .card [class*="center aligned"], -.ui.card [class*="center aligned"] { - text-align: center; -} - -.ui.cards > .card [class*="right aligned"], -.ui.card [class*="right aligned"] { - text-align: right; -} - -/*-------------- - Content Image ----------------*/ - -.ui.cards > .card .content img, -.ui.card .content img { - display: inline-block; - vertical-align: middle; - width: ''; -} - -.ui.cards > .card img.avatar, -.ui.cards > .card .avatar img, -.ui.card img.avatar, -.ui.card .avatar img { - width: 2em; - height: 2em; - border-radius: 500rem; -} - -/*-------------- - Description ----------------*/ - -.ui.cards > .card > .content > .description, -.ui.card > .content > .description { - clear: both; - color: rgba(0, 0, 0, 0.68); -} - -/*-------------- - Paragraph ----------------*/ - -.ui.cards > .card > .content p, -.ui.card > .content p { - margin: 0em 0em 0.5em; -} - -.ui.cards > .card > .content p:last-child, -.ui.card > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.cards > .card .meta, -.ui.card .meta { - font-size: 1em; - color: rgba(0, 0, 0, 0.4); -} - -.ui.cards > .card .meta *, -.ui.card .meta * { - margin-right: 0.3em; -} - -.ui.cards > .card .meta :last-child, -.ui.card .meta :last-child { - margin-right: 0em; -} - -.ui.cards > .card .meta [class*="right floated"], -.ui.card .meta [class*="right floated"] { - margin-right: 0em; - margin-left: 0.3em; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ - -.ui.cards > .card > .content a:not(.ui), -.ui.card > .content a:not(.ui) { - color: ''; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content a:not(.ui):hover, -.ui.card > .content a:not(.ui):hover { - color: ''; -} - -/* Header */ - -.ui.cards > .card > .content > a.header, -.ui.card > .content > a.header { - color: rgba(0, 0, 0, 0.85); -} - -.ui.cards > .card > .content > a.header:hover, -.ui.card > .content > a.header:hover { - color: #1e70bf; -} - -/* Meta */ - -.ui.cards > .card .meta > a:not(.ui), -.ui.card .meta > a:not(.ui) { - color: rgba(0, 0, 0, 0.4); -} - -.ui.cards > .card .meta > a:not(.ui):hover, -.ui.card .meta > a:not(.ui):hover { - color: rgba(0, 0, 0, 0.87); -} - -/*-------------- - Buttons ----------------*/ - -.ui.cards > .card > .buttons, -.ui.card > .buttons, -.ui.cards > .card > .button, -.ui.card > .button { - margin: 0px -1px; - width: calc(100% + 2px ); -} - -/*-------------- - Dimmer ----------------*/ - -.ui.cards > .card .dimmer, -.ui.card .dimmer { - background-color: ''; - z-index: 10; -} - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ - -.ui.cards > .card > .content .star.icon, -.ui.card > .content .star.icon { - cursor: pointer; - opacity: 0.75; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content .star.icon:hover, -.ui.card > .content .star.icon:hover { - opacity: 1; - color: #FFB70A; -} - -.ui.cards > .card > .content .active.star.icon, -.ui.card > .content .active.star.icon { - color: #FFE623; -} - -/*-----Like----- */ - -/* Icon */ - -.ui.cards > .card > .content .like.icon, -.ui.card > .content .like.icon { - cursor: pointer; - opacity: 0.75; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.cards > .card > .content .like.icon:hover, -.ui.card > .content .like.icon:hover { - opacity: 1; - color: #FF2733; -} - -.ui.cards > .card > .content .active.like.icon, -.ui.card > .content .active.like.icon { - color: #FF2733; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.cards > .card > .extra, -.ui.card > .extra { - max-width: 100%; - min-height: 0em !important; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - border-top: 1px solid rgba(0, 0, 0, 0.05) !important; - position: static; - background: none; - width: auto; - margin: 0em 0em; - padding: 0.75em 1em; - top: 0em; - left: 0em; - color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.cards > .card > .extra a:not(.ui), -.ui.card > .extra a:not(.ui) { - color: rgba(0, 0, 0, 0.4); -} - -.ui.cards > .card > .extra a:not(.ui):hover, -.ui.card > .extra a:not(.ui):hover { - color: #1e70bf; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Raised ---------------------*/ - -.ui.raised.cards > .card, -.ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -.ui.raised.cards a.card:hover, -.ui.link.cards .raised.card:hover, -a.ui.raised.card:hover, -.ui.link.raised.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.15), 0px 2px 10px 0px rgba(34, 36, 38, 0.25); -} - -.ui.raised.cards > .card, -.ui.raised.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -/*------------------- - Centered ---------------------*/ - -.ui.centered.cards { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.ui.centered.card { - margin-left: auto; - margin-right: auto; -} - -/*------------------- - Fluid ---------------------*/ - -.ui.fluid.card { - width: 100%; - max-width: 9999px; -} - -/*------------------- - Link ---------------------*/ - -.ui.cards a.card, -.ui.link.cards .card, -a.ui.card, -.ui.link.card { - -webkit-transform: none; - transform: none; -} - -.ui.cards a.card:hover, -.ui.link.cards .card:hover, -a.ui.card:hover, -.ui.link.card:hover { - cursor: pointer; - z-index: 5; - background: #FFFFFF; - border: none; - -webkit-box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; - box-shadow: 0px 1px 3px 0px #BCBDBD, 0px 0px 0px 1px #D4D4D5; - -webkit-transform: translateY(-3px); - transform: translateY(-3px); -} - -/*------------------- - Colors ---------------------*/ - -/* Red */ - -.ui.red.cards > .card, -.ui.cards > .red.card, -.ui.red.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #DB2828, 0px 1px 3px 0px #D4D4D5; -} - -.ui.red.cards > .card:hover, -.ui.cards > .red.card:hover, -.ui.red.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #d01919, 0px 1px 3px 0px #BCBDBD; -} - -/* Orange */ - -.ui.orange.cards > .card, -.ui.cards > .orange.card, -.ui.orange.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #F2711C, 0px 1px 3px 0px #D4D4D5; -} - -.ui.orange.cards > .card:hover, -.ui.cards > .orange.card:hover, -.ui.orange.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #f26202, 0px 1px 3px 0px #BCBDBD; -} - -/* Yellow */ - -.ui.yellow.cards > .card, -.ui.cards > .yellow.card, -.ui.yellow.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #FBBD08, 0px 1px 3px 0px #D4D4D5; -} - -.ui.yellow.cards > .card:hover, -.ui.cards > .yellow.card:hover, -.ui.yellow.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #eaae00, 0px 1px 3px 0px #BCBDBD; -} - -/* Olive */ - -.ui.olive.cards > .card, -.ui.cards > .olive.card, -.ui.olive.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #B5CC18, 0px 1px 3px 0px #D4D4D5; -} - -.ui.olive.cards > .card:hover, -.ui.cards > .olive.card:hover, -.ui.olive.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #a7bd0d, 0px 1px 3px 0px #BCBDBD; -} - -/* Green */ - -.ui.green.cards > .card, -.ui.cards > .green.card, -.ui.green.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #21BA45, 0px 1px 3px 0px #D4D4D5; -} - -.ui.green.cards > .card:hover, -.ui.cards > .green.card:hover, -.ui.green.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #16ab39, 0px 1px 3px 0px #BCBDBD; -} - -/* Teal */ - -.ui.teal.cards > .card, -.ui.cards > .teal.card, -.ui.teal.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #00B5AD, 0px 1px 3px 0px #D4D4D5; -} - -.ui.teal.cards > .card:hover, -.ui.cards > .teal.card:hover, -.ui.teal.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #009c95, 0px 1px 3px 0px #BCBDBD; -} - -/* Blue */ - -.ui.blue.cards > .card, -.ui.cards > .blue.card, -.ui.blue.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #2185D0, 0px 1px 3px 0px #D4D4D5; -} - -.ui.blue.cards > .card:hover, -.ui.cards > .blue.card:hover, -.ui.blue.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1678c2, 0px 1px 3px 0px #BCBDBD; -} - -/* Violet */ - -.ui.violet.cards > .card, -.ui.cards > .violet.card, -.ui.violet.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #6435C9, 0px 1px 3px 0px #D4D4D5; -} - -.ui.violet.cards > .card:hover, -.ui.cards > .violet.card:hover, -.ui.violet.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #5829bb, 0px 1px 3px 0px #BCBDBD; -} - -/* Purple */ - -.ui.purple.cards > .card, -.ui.cards > .purple.card, -.ui.purple.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A333C8, 0px 1px 3px 0px #D4D4D5; -} - -.ui.purple.cards > .card:hover, -.ui.cards > .purple.card:hover, -.ui.purple.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #9627ba, 0px 1px 3px 0px #BCBDBD; -} - -/* Pink */ - -.ui.pink.cards > .card, -.ui.cards > .pink.card, -.ui.pink.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #E03997, 0px 1px 3px 0px #D4D4D5; -} - -.ui.pink.cards > .card:hover, -.ui.cards > .pink.card:hover, -.ui.pink.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #e61a8d, 0px 1px 3px 0px #BCBDBD; -} - -/* Brown */ - -.ui.brown.cards > .card, -.ui.cards > .brown.card, -.ui.brown.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #A5673F, 0px 1px 3px 0px #D4D4D5; -} - -.ui.brown.cards > .card:hover, -.ui.cards > .brown.card:hover, -.ui.brown.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #975b33, 0px 1px 3px 0px #BCBDBD; -} - -/* Grey */ - -.ui.grey.cards > .card, -.ui.cards > .grey.card, -.ui.grey.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #767676, 0px 1px 3px 0px #D4D4D5; -} - -.ui.grey.cards > .card:hover, -.ui.cards > .grey.card:hover, -.ui.grey.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #838383, 0px 1px 3px 0px #BCBDBD; -} - -/* Black */ - -.ui.black.cards > .card, -.ui.cards > .black.card, -.ui.black.card { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #1B1C1D, 0px 1px 3px 0px #D4D4D5; -} - -.ui.black.cards > .card:hover, -.ui.cards > .black.card:hover, -.ui.black.card:hover { - -webkit-box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; - box-shadow: 0px 0px 0px 1px #D4D4D5, 0px 2px 0px 0px #27292a, 0px 1px 3px 0px #BCBDBD; -} - -/*-------------- - Card Count ----------------*/ - -.ui.one.cards { - margin-left: 0em; - margin-right: 0em; -} - -.ui.one.cards > .card { - width: 100%; -} - -.ui.two.cards { - margin-left: -1em; - margin-right: -1em; -} - -.ui.two.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; -} - -.ui.three.cards { - margin-left: -1em; - margin-right: -1em; -} - -.ui.three.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; -} - -.ui.four.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.four.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.five.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.five.cards > .card { - width: calc( 20% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.six.cards { - margin-left: -0.75em; - margin-right: -0.75em; -} - -.ui.six.cards > .card { - width: calc( 16.66666667% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; -} - -.ui.seven.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.seven.cards > .card { - width: calc( 14.28571429% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; -} - -.ui.eight.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.eight.cards > .card { - width: calc( 12.5% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; - font-size: 11px; -} - -.ui.nine.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.nine.cards > .card { - width: calc( 11.11111111% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; - font-size: 10px; -} - -.ui.ten.cards { - margin-left: -0.5em; - margin-right: -0.5em; -} - -.ui.ten.cards > .card { - width: calc( 10% - 1em ); - margin-left: 0.5em; - margin-right: 0.5em; -} - -/*------------------- - Doubling ---------------------*/ - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .ui.three.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.three.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.four.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.four.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.five.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.five.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.six.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.six.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.seven.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.seven.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.nine.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.nine.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.ten.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.ten.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } -} - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.two.doubling.cards { - margin-left: 0em; - margin-right: 0em; - } - - .ui.two.doubling.cards > .card { - width: 100%; - margin-left: 0em; - margin-right: 0em; - } - - .ui.three.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.three.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.four.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.four.doubling.cards > .card { - width: calc( 50% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.five.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.five.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.six.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.six.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -1em; - margin-right: -1em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 33.33333333% - 2em ); - margin-left: 1em; - margin-right: 1em; - } - - .ui.eight.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.eight.doubling.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } - - .ui.nine.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.nine.doubling.cards > .card { - width: calc( 25% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } - - .ui.ten.doubling.cards { - margin-left: -0.75em; - margin-right: -0.75em; - } - - .ui.ten.doubling.cards > .card { - width: calc( 20% - 1.5em ); - margin-left: 0.75em; - margin-right: 0.75em; - } -} - -/*------------------- - Stackable ---------------------*/ - -@media only screen and (max-width: 767px) { - .ui.stackable.cards { - display: block !important; - } - - .ui.stackable.cards .card:first-child { - margin-top: 0em !important; - } - - .ui.stackable.cards > .card { - display: block !important; - height: auto !important; - margin: 1em 1em; - padding: 0 !important; - width: calc( 100% - 2em ) !important; - } -} - -/*-------------- - Size ----------------*/ - -.ui.cards > .card { - font-size: 1em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Comment -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------- - Comments ----------------*/ - -.ui.comments { - margin: 1.5em 0em; - max-width: 650px; -} - -.ui.comments:first-child { - margin-top: 0em; -} - -.ui.comments:last-child { - margin-bottom: 0em; -} - -/*-------------- - Comment ----------------*/ - -.ui.comments .comment { - position: relative; - background: none; - margin: 0.5em 0em 0em; - padding: 0.5em 0em 0em; - border: none; - border-top: none; - line-height: 1.2; -} - -.ui.comments .comment:first-child { - margin-top: 0em; - padding-top: 0em; -} - -/*-------------------- - Nested Comments ----------------------*/ - -.ui.comments .comment .comments { - margin: 0em 0em 0.5em 0.5em; - padding: 1em 0em 1em 1em; -} - -.ui.comments .comment .comments:before { - position: absolute; - top: 0px; - left: 0px; -} - -.ui.comments .comment .comments .comment { - border: none; - border-top: none; - background: none; -} - -/*-------------- - Avatar ----------------*/ - -.ui.comments .comment .avatar { - display: block; - width: 2.5em; - height: auto; - float: left; - margin: 0.2em 0em 0em; -} - -.ui.comments .comment img.avatar, -.ui.comments .comment .avatar img { - display: block; - margin: 0em auto; - width: 100%; - height: 100%; - border-radius: 0.25rem; -} - -/*-------------- - Content ----------------*/ - -.ui.comments .comment > .content { - display: block; -} - -/* If there is an avatar move content over */ - -.ui.comments .comment > .avatar ~ .content { - margin-left: 3.5em; -} - -/*-------------- - Author ----------------*/ - -.ui.comments .comment .author { - font-size: 1em; - color: rgba(0, 0, 0, 0.87); - font-weight: bold; -} - -.ui.comments .comment a.author { - cursor: pointer; -} - -.ui.comments .comment a.author:hover { - color: #1e70bf; -} - -/*-------------- - Metadata ----------------*/ - -.ui.comments .comment .metadata { - display: inline-block; - margin-left: 0.5em; - color: rgba(0, 0, 0, 0.4); - font-size: 0.875em; -} - -.ui.comments .comment .metadata > * { - display: inline-block; - margin: 0em 0.5em 0em 0em; -} - -.ui.comments .comment .metadata > :last-child { - margin-right: 0em; -} - -/*-------------------- - Comment Text ----------------------*/ - -.ui.comments .comment .text { - margin: 0.25em 0em 0.5em; - font-size: 1em; - word-wrap: break-word; - color: rgba(0, 0, 0, 0.87); - line-height: 1.3; -} - -/*-------------------- - User Actions ----------------------*/ - -.ui.comments .comment .actions { - font-size: 0.875em; -} - -.ui.comments .comment .actions a { - cursor: pointer; - display: inline-block; - margin: 0em 0.75em 0em 0em; - color: rgba(0, 0, 0, 0.4); -} - -.ui.comments .comment .actions a:last-child { - margin-right: 0em; -} - -.ui.comments .comment .actions a.active, -.ui.comments .comment .actions a:hover { - color: rgba(0, 0, 0, 0.8); -} - -/*-------------------- - Reply Form ----------------------*/ - -.ui.comments > .reply.form { - margin-top: 1em; -} - -.ui.comments .comment .reply.form { - width: 100%; - margin-top: 1em; -} - -.ui.comments .reply.form textarea { - font-size: 1em; - height: 12em; -} - -/******************************* - State -*******************************/ - -.ui.collapsed.comments, -.ui.comments .collapsed.comments, -.ui.comments .collapsed.comment { - display: none; -} - -/******************************* - Variations -*******************************/ - -/*-------------------- - Threaded ----------------------*/ - -.ui.threaded.comments .comment .comments { - margin: -1.5em 0 -1em 1.25em; - padding: 3em 0em 2em 2.25em; - -webkit-box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px 0px 0px rgba(34, 36, 38, 0.15); -} - -/*-------------------- - Minimal ----------------------*/ - -.ui.minimal.comments .comment .actions { - opacity: 0; - position: absolute; - top: 0px; - right: 0px; - left: auto; - -webkit-transition: opacity 0.2s ease; - transition: opacity 0.2s ease; - -webkit-transition-delay: 0.1s; - transition-delay: 0.1s; -} - -.ui.minimal.comments .comment > .content:hover > .actions { - opacity: 1; -} - -/*------------------- - Sizes ---------------------*/ - -.ui.mini.comments { - font-size: 0.78571429rem; -} - -.ui.tiny.comments { - font-size: 0.85714286rem; -} - -.ui.small.comments { - font-size: 0.92857143rem; -} - -.ui.comments { - font-size: 1rem; -} - -.ui.large.comments { - font-size: 1.14285714rem; -} - -.ui.big.comments { - font-size: 1.28571429rem; -} - -.ui.huge.comments { - font-size: 1.42857143rem; -} - -.ui.massive.comments { - font-size: 1.71428571rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Feed -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Activity Feed -*******************************/ - -.ui.feed { - margin: 1em 0em; -} - -.ui.feed:first-child { - margin-top: 0em; -} - -.ui.feed:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/* Event */ - -.ui.feed > .event { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - width: 100%; - padding: 0.21428571rem 0em; - margin: 0em; - background: none; - border-top: none; -} - -.ui.feed > .event:first-child { - border-top: 0px; - padding-top: 0em; -} - -.ui.feed > .event:last-child { - padding-bottom: 0em; -} - -/* Event Label */ - -.ui.feed > .event > .label { - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 2.5em; - height: auto; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: left; -} - -.ui.feed > .event > .label .icon { - opacity: 1; - font-size: 1.5em; - width: 100%; - padding: 0.25em; - background: none; - border: none; - border-radius: none; - color: rgba(0, 0, 0, 0.6); -} - -.ui.feed > .event > .label img { - width: 100%; - height: auto; - border-radius: 500rem; -} - -.ui.feed > .event > .label + .content { - margin: 0.5em 0em 0.35714286em 1.14285714em; -} - -/*-------------- - Content ----------------*/ - -/* Content */ - -.ui.feed > .event > .content { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: left; - word-wrap: break-word; -} - -.ui.feed > .event:last-child > .content { - padding-bottom: 0em; -} - -/* Link */ - -.ui.feed > .event > .content a { - cursor: pointer; -} - -/*-------------- - Date ----------------*/ - -.ui.feed > .event > .content .date { - margin: -0.5rem 0em 0em; - padding: 0em; - font-weight: normal; - font-size: 1em; - font-style: normal; - color: rgba(0, 0, 0, 0.4); -} - -/*-------------- - Summary ----------------*/ - -.ui.feed > .event > .content .summary { - margin: 0em; - font-size: 1em; - font-weight: bold; - color: rgba(0, 0, 0, 0.87); -} - -/* Summary Image */ - -.ui.feed > .event > .content .summary img { - display: inline-block; - width: auto; - height: 10em; - margin: -0.25em 0.25em 0em 0em; - border-radius: 0.25em; - vertical-align: middle; -} - -/*-------------- - User ----------------*/ - -.ui.feed > .event > .content .user { - display: inline-block; - font-weight: bold; - margin-right: 0em; - vertical-align: baseline; -} - -.ui.feed > .event > .content .user img { - margin: -0.25em 0.25em 0em 0em; - width: auto; - height: 10em; - vertical-align: middle; -} - -/*-------------- - Inline Date ----------------*/ - -/* Date inside Summary */ - -.ui.feed > .event > .content .summary > .date { - display: inline-block; - float: none; - font-weight: normal; - font-size: 0.85714286em; - font-style: normal; - margin: 0em 0em 0em 0.5em; - padding: 0em; - color: rgba(0, 0, 0, 0.4); -} - -/*-------------- - Extra Summary ----------------*/ - -.ui.feed > .event > .content .extra { - margin: 0.5em 0em 0em; - background: none; - padding: 0em; - color: rgba(0, 0, 0, 0.87); -} - -/* Images */ - -.ui.feed > .event > .content .extra.images img { - display: inline-block; - margin: 0em 0.25em 0em 0em; - width: 6em; -} - -/* Text */ - -.ui.feed > .event > .content .extra.text { - padding: 0em; - border-left: none; - font-size: 1em; - max-width: 500px; - line-height: 1.4285em; -} - -/*-------------- - Meta ----------------*/ - -.ui.feed > .event > .content .meta { - display: inline-block; - font-size: 0.85714286em; - margin: 0.5em 0em 0em; - background: none; - border: none; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0em; - color: rgba(0, 0, 0, 0.6); -} - -.ui.feed > .event > .content .meta > * { - position: relative; - margin-left: 0.75em; -} - -.ui.feed > .event > .content .meta > *:after { - content: ''; - color: rgba(0, 0, 0, 0.2); - top: 0em; - left: -1em; - opacity: 1; - position: absolute; - vertical-align: top; -} - -.ui.feed > .event > .content .meta .like { - color: ''; - -webkit-transition: 0.2s color ease; - transition: 0.2s color ease; -} - -.ui.feed > .event > .content .meta .like:hover .icon { - color: #FF2733; -} - -.ui.feed > .event > .content .meta .active.like .icon { - color: #EF404A; -} - -/* First element */ - -.ui.feed > .event > .content .meta > :first-child { - margin-left: 0em; -} - -.ui.feed > .event > .content .meta > :first-child::after { - display: none; -} - -/* Action */ - -.ui.feed > .event > .content .meta a, -.ui.feed > .event > .content .meta > .icon { - cursor: pointer; - opacity: 1; - color: rgba(0, 0, 0, 0.5); - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.feed > .event > .content .meta a:hover, -.ui.feed > .event > .content .meta a:hover .icon, -.ui.feed > .event > .content .meta > .icon:hover { - color: rgba(0, 0, 0, 0.95); -} - -/******************************* - Variations -*******************************/ - -.ui.small.feed { - font-size: 0.92857143rem; -} - -.ui.feed { - font-size: 1rem; -} - -.ui.large.feed { - font-size: 1.14285714rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Item -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Standard -*******************************/ - -/*-------------- - Item ----------------*/ - -.ui.items > .item { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 1em 0em; - width: 100%; - min-height: 0px; - background: transparent; - padding: 0em; - border: none; - border-radius: 0rem; - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: -webkit-box-shadow 0.1s ease; - transition: -webkit-box-shadow 0.1s ease; - transition: box-shadow 0.1s ease; - transition: box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease; - z-index: ''; -} - -.ui.items > .item a { - cursor: pointer; -} - -/*-------------- - Items ----------------*/ - -.ui.items { - margin: 1.5em 0em; -} - -.ui.items:first-child { - margin-top: 0em !important; -} - -.ui.items:last-child { - margin-bottom: 0em !important; -} - -/*-------------- - Item ----------------*/ - -.ui.items > .item:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item:first-child { - margin-top: 0em; -} - -.ui.items > .item:last-child { - margin-bottom: 0em; -} - -/*-------------- - Images ----------------*/ - -.ui.items > .item > .image { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - display: block; - float: none; - margin: 0em; - padding: 0em; - max-height: ''; - -ms-flex-item-align: top; - align-self: top; -} - -.ui.items > .item > .image > img { - display: block; - width: 100%; - height: auto; - border-radius: 0.125rem; - border: none; -} - -.ui.items > .item > .image:only-child > img { - border-radius: 0rem; -} - -/*-------------- - Content ----------------*/ - -.ui.items > .item > .content { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - background: none; - margin: 0em; - padding: 0em; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 1em; - border: none; - border-radius: 0em; -} - -.ui.items > .item > .content:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.items > .item > .image + .content { - min-width: 0; - width: auto; - display: block; - margin-left: 0em; - -ms-flex-item-align: top; - align-self: top; - padding-left: 1.5em; -} - -.ui.items > .item > .content > .header { - display: inline-block; - margin: -0.21425em 0em 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - color: rgba(0, 0, 0, 0.85); -} - -/* Default Header Size */ - -.ui.items > .item > .content > .header:not(.ui) { - font-size: 1.28571429em; -} - -/*-------------- - Floated ----------------*/ - -.ui.items > .item [class*="left floated"] { - float: left; -} - -.ui.items > .item [class*="right floated"] { - float: right; -} - -/*-------------- - Content Image ----------------*/ - -.ui.items > .item .content img { - -ms-flex-item-align: middle; - align-self: middle; - width: ''; -} - -.ui.items > .item img.avatar, -.ui.items > .item .avatar img { - width: ''; - height: ''; - border-radius: 500rem; -} - -/*-------------- - Description ----------------*/ - -.ui.items > .item > .content > .description { - margin-top: 0.6em; - max-width: auto; - font-size: 1em; - line-height: 1.4285em; - color: rgba(0, 0, 0, 0.87); -} - -/*-------------- - Paragraph ----------------*/ - -.ui.items > .item > .content p { - margin: 0em 0em 0.5em; -} - -.ui.items > .item > .content p:last-child { - margin-bottom: 0em; -} - -/*-------------- - Meta ----------------*/ - -.ui.items > .item .meta { - margin: 0.5em 0em 0.5em; - font-size: 1em; - line-height: 1em; - color: rgba(0, 0, 0, 0.6); -} - -.ui.items > .item .meta * { - margin-right: 0.3em; -} - -.ui.items > .item .meta :last-child { - margin-right: 0em; -} - -.ui.items > .item .meta [class*="right floated"] { - margin-right: 0em; - margin-left: 0.3em; -} - -/*-------------- - Links ----------------*/ - -/* Generic */ - -.ui.items > .item > .content a:not(.ui) { - color: ''; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.items > .item > .content a:not(.ui):hover { - color: ''; -} - -/* Header */ - -.ui.items > .item > .content > a.header { - color: rgba(0, 0, 0, 0.85); -} - -.ui.items > .item > .content > a.header:hover { - color: #1e70bf; -} - -/* Meta */ - -.ui.items > .item .meta > a:not(.ui) { - color: rgba(0, 0, 0, 0.4); -} - -.ui.items > .item .meta > a:not(.ui):hover { - color: rgba(0, 0, 0, 0.87); -} - -/*-------------- - Labels ----------------*/ - -/*-----Star----- */ - -/* Icon */ - -.ui.items > .item > .content .favorite.icon { - cursor: pointer; - opacity: 0.75; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.items > .item > .content .favorite.icon:hover { - opacity: 1; - color: #FFB70A; -} - -.ui.items > .item > .content .active.favorite.icon { - color: #FFE623; -} - -/*-----Like----- */ - -/* Icon */ - -.ui.items > .item > .content .like.icon { - cursor: pointer; - opacity: 0.75; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -.ui.items > .item > .content .like.icon:hover { - opacity: 1; - color: #FF2733; -} - -.ui.items > .item > .content .active.like.icon { - color: #FF2733; -} - -/*---------------- - Extra Content ------------------*/ - -.ui.items > .item .extra { - display: block; - position: relative; - background: none; - margin: 0.5rem 0em 0em; - width: 100%; - padding: 0em 0em 0em; - top: 0em; - left: 0em; - color: rgba(0, 0, 0, 0.4); - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; - border-top: none; -} - -.ui.items > .item .extra > * { - margin: 0.25rem 0.5rem 0.25rem 0em; -} - -.ui.items > .item .extra > [class*="right floated"] { - margin: 0.25rem 0em 0.25rem 0.5rem; -} - -.ui.items > .item .extra:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -/******************************* - Responsive -*******************************/ - -/* Default Image Width */ - -.ui.items > .item > .image:not(.ui) { - width: 175px; -} - -/* Tablet Only */ - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ui.items > .item { - margin: 1em 0em; - } - - .ui.items > .item > .image:not(.ui) { - width: 150px; - } - - .ui.items > .item > .image + .content { - display: block; - padding: 0em 0em 0em 1em; - } -} - -/* Mobile Only */ - -@media only screen and (max-width: 767px) { - .ui.items:not(.unstackable) > .item { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 2em 0em; - } - - .ui.items:not(.unstackable) > .item > .image { - display: block; - margin-left: auto; - margin-right: auto; - } - - .ui.items:not(.unstackable) > .item > .image, - .ui.items:not(.unstackable) > .item > .image > img { - max-width: 100% !important; - width: auto !important; - max-height: 250px !important; - } - - .ui.items:not(.unstackable) > .item > .image + .content { - display: block; - padding: 1.5em 0em 0em; - } -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Aligned ---------------------*/ - -.ui.items > .item > .image + [class*="top aligned"].content { - -ms-flex-item-align: start; - align-self: flex-start; -} - -.ui.items > .item > .image + [class*="middle aligned"].content { - -ms-flex-item-align: center; - align-self: center; -} - -.ui.items > .item > .image + [class*="bottom aligned"].content { - -ms-flex-item-align: end; - align-self: flex-end; -} - -/*-------------- - Relaxed ----------------*/ - -.ui.relaxed.items > .item { - margin: 1.5em 0em; -} - -.ui[class*="very relaxed"].items > .item { - margin: 2em 0em; -} - -/*------------------- - Divided ---------------------*/ - -.ui.divided.items > .item { - border-top: 1px solid rgba(34, 36, 38, 0.15); - margin: 0em; - padding: 1em 0em; -} - -.ui.divided.items > .item:first-child { - border-top: none; - margin-top: 0em !important; - padding-top: 0em !important; -} - -.ui.divided.items > .item:last-child { - margin-bottom: 0em !important; - padding-bottom: 0em !important; -} - -/* Relaxed Divided */ - -.ui.relaxed.divided.items > .item { - margin: 0em; - padding: 1.5em 0em; -} - -.ui[class*="very relaxed"].divided.items > .item { - margin: 0em; - padding: 2em 0em; -} - -/*------------------- - Link ---------------------*/ - -.ui.items a.item:hover, -.ui.link.items > .item:hover { - cursor: pointer; -} - -.ui.items a.item:hover .content .header, -.ui.link.items > .item:hover .content .header { - color: #1e70bf; -} - -/*-------------- - Size ----------------*/ - -.ui.items > .item { - font-size: 1em; -} - -/*--------------- - Unstackable -----------------*/ - -@media only screen and (max-width: 767px) { - .ui.unstackable.items > .item > .image, - .ui.unstackable.items > .item > .image > img { - width: 125px !important; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Statistic -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Statistic -*******************************/ - -/* Standalone */ - -.ui.statistic { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 1em 0em; - max-width: auto; -} - -.ui.statistic + .ui.statistic { - margin: 0em 0em 0em 1.5em; -} - -.ui.statistic:first-child { - margin-top: 0em; -} - -.ui.statistic:last-child { - margin-bottom: 0em; -} - -/******************************* - Group -*******************************/ - -/* Grouped */ - -.ui.statistics { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.ui.statistics > .statistic { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 0em 1.5em 2em; - max-width: auto; -} - -.ui.statistics { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 1em -1.5em -2em; -} - -/* Clearing */ - -.ui.statistics:after { - display: block; - content: ' '; - height: 0px; - clear: both; - overflow: hidden; - visibility: hidden; -} - -.ui.statistics:first-child { - margin-top: 0em; -} - -.ui.statistics:last-child { - margin-bottom: 0em; -} - -/******************************* - Content -*******************************/ - -/*-------------- - Value ----------------*/ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 4rem; - font-weight: normal; - line-height: 1em; - color: #1B1C1D; - text-transform: uppercase; - text-align: center; -} - -/*-------------- - Label ----------------*/ - -.ui.statistics .statistic > .label, -.ui.statistic > .label { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1em; - font-weight: bold; - color: rgba(0, 0, 0, 0.87); - text-transform: uppercase; - text-align: center; -} - -/* Top Label */ - -.ui.statistics .statistic > .label ~ .value, -.ui.statistic > .label ~ .value { - margin-top: 0rem; -} - -/* Bottom Label */ - -.ui.statistics .statistic > .value ~ .label, -.ui.statistic > .value ~ .label { - margin-top: 0rem; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Icon Value ----------------*/ - -.ui.statistics .statistic > .value .icon, -.ui.statistic > .value .icon { - opacity: 1; - width: auto; - margin: 0em; -} - -/*-------------- - Text Value ----------------*/ - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - line-height: 1em; - min-height: 2em; - font-weight: bold; - text-align: center; -} - -.ui.statistics .statistic > .text.value + .label, -.ui.statistic > .text.value + .label { - text-align: center; -} - -/*-------------- - Image Value ----------------*/ - -.ui.statistics .statistic > .value img, -.ui.statistic > .value img { - max-height: 3rem; - vertical-align: baseline; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Count ----------------*/ - -.ui.ten.statistics { - margin: 0em 0em -2em; -} - -.ui.ten.statistics .statistic { - min-width: 10%; - margin: 0em 0em 2em; -} - -.ui.nine.statistics { - margin: 0em 0em -2em; -} - -.ui.nine.statistics .statistic { - min-width: 11.11111111%; - margin: 0em 0em 2em; -} - -.ui.eight.statistics { - margin: 0em 0em -2em; -} - -.ui.eight.statistics .statistic { - min-width: 12.5%; - margin: 0em 0em 2em; -} - -.ui.seven.statistics { - margin: 0em 0em -2em; -} - -.ui.seven.statistics .statistic { - min-width: 14.28571429%; - margin: 0em 0em 2em; -} - -.ui.six.statistics { - margin: 0em 0em -2em; -} - -.ui.six.statistics .statistic { - min-width: 16.66666667%; - margin: 0em 0em 2em; -} - -.ui.five.statistics { - margin: 0em 0em -2em; -} - -.ui.five.statistics .statistic { - min-width: 20%; - margin: 0em 0em 2em; -} - -.ui.four.statistics { - margin: 0em 0em -2em; -} - -.ui.four.statistics .statistic { - min-width: 25%; - margin: 0em 0em 2em; -} - -.ui.three.statistics { - margin: 0em 0em -2em; -} - -.ui.three.statistics .statistic { - min-width: 33.33333333%; - margin: 0em 0em 2em; -} - -.ui.two.statistics { - margin: 0em 0em -2em; -} - -.ui.two.statistics .statistic { - min-width: 50%; - margin: 0em 0em 2em; -} - -.ui.one.statistics { - margin: 0em 0em -2em; -} - -.ui.one.statistics .statistic { - min-width: 100%; - margin: 0em 0em 2em; -} - -/*-------------- - Horizontal ----------------*/ - -.ui.horizontal.statistic { - -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; -} - -.ui.horizontal.statistics { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin: 0em; - max-width: none; -} - -.ui.horizontal.statistics .statistic { - -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; - max-width: none; - margin: 1em 0em; -} - -.ui.horizontal.statistic > .text.value, -.ui.horizontal.statistics > .statistic > .text.value { - min-height: 0em !important; -} - -.ui.horizontal.statistics .statistic > .value .icon, -.ui.horizontal.statistic > .value .icon { - width: 1.18em; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - display: inline-block; - vertical-align: middle; -} - -.ui.horizontal.statistics .statistic > .label, -.ui.horizontal.statistic > .label { - display: inline-block; - vertical-align: middle; - margin: 0em 0em 0em 0.75em; -} - -/*-------------- - Colors ----------------*/ - -.ui.red.statistics .statistic > .value, -.ui.statistics .red.statistic > .value, -.ui.red.statistic > .value { - color: #DB2828; -} - -.ui.orange.statistics .statistic > .value, -.ui.statistics .orange.statistic > .value, -.ui.orange.statistic > .value { - color: #F2711C; -} - -.ui.yellow.statistics .statistic > .value, -.ui.statistics .yellow.statistic > .value, -.ui.yellow.statistic > .value { - color: #FBBD08; -} - -.ui.olive.statistics .statistic > .value, -.ui.statistics .olive.statistic > .value, -.ui.olive.statistic > .value { - color: #B5CC18; -} - -.ui.green.statistics .statistic > .value, -.ui.statistics .green.statistic > .value, -.ui.green.statistic > .value { - color: #21BA45; -} - -.ui.teal.statistics .statistic > .value, -.ui.statistics .teal.statistic > .value, -.ui.teal.statistic > .value { - color: #00B5AD; -} - -.ui.blue.statistics .statistic > .value, -.ui.statistics .blue.statistic > .value, -.ui.blue.statistic > .value { - color: #2185D0; -} - -.ui.violet.statistics .statistic > .value, -.ui.statistics .violet.statistic > .value, -.ui.violet.statistic > .value { - color: #6435C9; -} - -.ui.purple.statistics .statistic > .value, -.ui.statistics .purple.statistic > .value, -.ui.purple.statistic > .value { - color: #A333C8; -} - -.ui.pink.statistics .statistic > .value, -.ui.statistics .pink.statistic > .value, -.ui.pink.statistic > .value { - color: #E03997; -} - -.ui.brown.statistics .statistic > .value, -.ui.statistics .brown.statistic > .value, -.ui.brown.statistic > .value { - color: #A5673F; -} - -.ui.grey.statistics .statistic > .value, -.ui.statistics .grey.statistic > .value, -.ui.grey.statistic > .value { - color: #767676; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.statistics .statistic > .value, -.ui.inverted.statistic .value { - color: #FFFFFF; -} - -.ui.inverted.statistics .statistic > .label, -.ui.inverted.statistic .label { - color: rgba(255, 255, 255, 0.9); -} - -.ui.inverted.red.statistics .statistic > .value, -.ui.statistics .inverted.red.statistic > .value, -.ui.inverted.red.statistic > .value { - color: #FF695E; -} - -.ui.inverted.orange.statistics .statistic > .value, -.ui.statistics .inverted.orange.statistic > .value, -.ui.inverted.orange.statistic > .value { - color: #FF851B; -} - -.ui.inverted.yellow.statistics .statistic > .value, -.ui.statistics .inverted.yellow.statistic > .value, -.ui.inverted.yellow.statistic > .value { - color: #FFE21F; -} - -.ui.inverted.olive.statistics .statistic > .value, -.ui.statistics .inverted.olive.statistic > .value, -.ui.inverted.olive.statistic > .value { - color: #D9E778; -} - -.ui.inverted.green.statistics .statistic > .value, -.ui.statistics .inverted.green.statistic > .value, -.ui.inverted.green.statistic > .value { - color: #2ECC40; -} - -.ui.inverted.teal.statistics .statistic > .value, -.ui.statistics .inverted.teal.statistic > .value, -.ui.inverted.teal.statistic > .value { - color: #6DFFFF; -} - -.ui.inverted.blue.statistics .statistic > .value, -.ui.statistics .inverted.blue.statistic > .value, -.ui.inverted.blue.statistic > .value { - color: #54C8FF; -} - -.ui.inverted.violet.statistics .statistic > .value, -.ui.statistics .inverted.violet.statistic > .value, -.ui.inverted.violet.statistic > .value { - color: #A291FB; -} - -.ui.inverted.purple.statistics .statistic > .value, -.ui.statistics .inverted.purple.statistic > .value, -.ui.inverted.purple.statistic > .value { - color: #DC73FF; -} - -.ui.inverted.pink.statistics .statistic > .value, -.ui.statistics .inverted.pink.statistic > .value, -.ui.inverted.pink.statistic > .value { - color: #FF8EDF; -} - -.ui.inverted.brown.statistics .statistic > .value, -.ui.statistics .inverted.brown.statistic > .value, -.ui.inverted.brown.statistic > .value { - color: #D67C1C; -} - -.ui.inverted.grey.statistics .statistic > .value, -.ui.statistics .inverted.grey.statistic > .value, -.ui.inverted.grey.statistic > .value { - color: #DCDDDE; -} - -/*-------------- - Floated ----------------*/ - -.ui[class*="left floated"].statistic { - float: left; - margin: 0em 2em 1em 0em; -} - -.ui[class*="right floated"].statistic { - float: right; - margin: 0em 0em 1em 2em; -} - -.ui.floated.statistic:last-child { - margin-bottom: 0em; -} - -/*-------------- - Sizes ----------------*/ - -/* Mini */ - -.ui.mini.statistics .statistic > .value, -.ui.mini.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.horizontal.statistics .statistic > .value, -.ui.mini.horizontal.statistic > .value { - font-size: 1.5rem !important; -} - -.ui.mini.statistics .statistic > .text.value, -.ui.mini.statistic > .text.value { - font-size: 1rem !important; -} - -/* Tiny */ - -.ui.tiny.statistics .statistic > .value, -.ui.tiny.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.horizontal.statistics .statistic > .value, -.ui.tiny.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.tiny.statistics .statistic > .text.value, -.ui.tiny.statistic > .text.value { - font-size: 1rem !important; -} - -/* Small */ - -.ui.small.statistics .statistic > .value, -.ui.small.statistic > .value { - font-size: 3rem !important; -} - -.ui.small.horizontal.statistics .statistic > .value, -.ui.small.horizontal.statistic > .value { - font-size: 2rem !important; -} - -.ui.small.statistics .statistic > .text.value, -.ui.small.statistic > .text.value { - font-size: 1rem !important; -} - -/* Medium */ - -.ui.statistics .statistic > .value, -.ui.statistic > .value { - font-size: 4rem !important; -} - -.ui.horizontal.statistics .statistic > .value, -.ui.horizontal.statistic > .value { - font-size: 3rem !important; -} - -.ui.statistics .statistic > .text.value, -.ui.statistic > .text.value { - font-size: 2rem !important; -} - -/* Large */ - -.ui.large.statistics .statistic > .value, -.ui.large.statistic > .value { - font-size: 5rem !important; -} - -.ui.large.horizontal.statistics .statistic > .value, -.ui.large.horizontal.statistic > .value { - font-size: 4rem !important; -} - -.ui.large.statistics .statistic > .text.value, -.ui.large.statistic > .text.value { - font-size: 2.5rem !important; -} - -/* Huge */ - -.ui.huge.statistics .statistic > .value, -.ui.huge.statistic > .value { - font-size: 6rem !important; -} - -.ui.huge.horizontal.statistics .statistic > .value, -.ui.huge.horizontal.statistic > .value { - font-size: 5rem !important; -} - -.ui.huge.statistics .statistic > .text.value, -.ui.huge.statistic > .text.value { - font-size: 2.5rem !important; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Variable Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Accordion -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Accordion -*******************************/ - -.ui.accordion, -.ui.accordion .accordion { - max-width: 100%; -} - -.ui.accordion .accordion { - margin: 1em 0em 0em; - padding: 0em; -} - -/* Title */ - -.ui.accordion .title, -.ui.accordion .accordion .title { - cursor: pointer; -} - -/* Default Styling */ - -.ui.accordion .title:not(.ui) { - padding: 0.5em 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1em; - color: rgba(0, 0, 0, 0.87); -} - -/* Content */ - -.ui.accordion .title ~ .content, -.ui.accordion .accordion .title ~ .content { - display: none; -} - -/* Default Styling */ - -.ui.accordion:not(.styled) .title ~ .content:not(.ui), -.ui.accordion:not(.styled) .accordion .title ~ .content:not(.ui) { - margin: ''; - padding: 0.5em 0em 1em; -} - -.ui.accordion:not(.styled) .title ~ .content:not(.ui):last-child { - padding-bottom: 0em; -} - -/* Arrow */ - -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - display: inline-block; - float: none; - opacity: 1; - width: 1.25em; - height: 1em; - margin: 0em 0.25rem 0em 0rem; - padding: 0em; - font-size: 1em; - -webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease; - transition: opacity 0.1s ease, -webkit-transform 0.1s ease; - transition: transform 0.1s ease, opacity 0.1s ease; - transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease; - vertical-align: baseline; - -webkit-transform: none; - transform: none; -} - -/*-------------- - Coupling ----------------*/ - -/* Menu */ - -.ui.accordion.menu .item .title { - display: block; - padding: 0em; -} - -.ui.accordion.menu .item .title > .dropdown.icon { - float: right; - margin: 0.21425em 0em 0em 1em; - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} - -/* Header */ - -.ui.accordion .ui.header .dropdown.icon { - font-size: 1em; - margin: 0em 0.25rem 0em 0rem; -} - -/******************************* - States -*******************************/ - -.ui.accordion .active.title .dropdown.icon, -.ui.accordion .accordion .active.title .dropdown.icon { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} - -.ui.accordion.menu .item .active.title > .dropdown.icon { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} - -/******************************* - Types -*******************************/ - -/*-------------- - Styled ----------------*/ - -.ui.styled.accordion { - width: 600px; -} - -.ui.styled.accordion, -.ui.styled.accordion .accordion { - border-radius: 0.28571429rem; - background: #FFFFFF; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15); -} - -.ui.styled.accordion .title, -.ui.styled.accordion .accordion .title { - margin: 0em; - padding: 0.75em 1em; - color: rgba(0, 0, 0, 0.4); - font-weight: bold; - border-top: 1px solid rgba(34, 36, 38, 0.15); - -webkit-transition: background 0.1s ease, color 0.1s ease; - transition: background 0.1s ease, color 0.1s ease; -} - -.ui.styled.accordion > .title:first-child, -.ui.styled.accordion .accordion .title:first-child { - border-top: none; -} - -/* Content */ - -.ui.styled.accordion .content, -.ui.styled.accordion .accordion .content { - margin: 0em; - padding: 0.5em 1em 1.5em; -} - -.ui.styled.accordion .accordion .content { - padding: 0em; - padding: 0.5em 1em 1.5em; -} - -/* Hover */ - -.ui.styled.accordion .title:hover, -.ui.styled.accordion .active.title, -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: rgba(0, 0, 0, 0.87); -} - -.ui.styled.accordion .accordion .title:hover, -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: rgba(0, 0, 0, 0.87); -} - -/* Active */ - -.ui.styled.accordion .active.title { - background: transparent; - color: rgba(0, 0, 0, 0.95); -} - -.ui.styled.accordion .accordion .active.title { - background: transparent; - color: rgba(0, 0, 0, 0.95); -} - -/******************************* - States -*******************************/ - -/*-------------- - Active ----------------*/ - -.ui.accordion .active.content, -.ui.accordion .accordion .active.content { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.accordion, -.ui.fluid.accordion .accordion { - width: 100%; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.accordion .title:not(.ui) { - color: rgba(255, 255, 255, 0.9); -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Accordion'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfOIKAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zryj6HgAAAFwAAAAyGhlYWT/0IhHAAACOAAAADZoaGVhApkB5wAAAnAAAAAkaG10eAJuABIAAAKUAAAAGGxvY2EAjABWAAACrAAAAA5tYXhwAAgAFgAAArwAAAAgbmFtZfC1n04AAALcAAABPHBvc3QAAwAAAAAEGAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQASAEkAtwFuABMAADc0PwE2FzYXFh0BFAcGJwYvASY1EgaABQgHBQYGBQcIBYAG2wcGfwcBAQcECf8IBAcBAQd/BgYAAAAAAQAAAEkApQFuABMAADcRNDc2MzIfARYVFA8BBiMiJyY1AAUGBwgFgAYGgAUIBwYFWwEACAUGBoAFCAcFgAYGBQcAAAABAAAAAQAAqWYls18PPPUACwIAAAAAAM/9o+4AAAAAz/2j7gAAAAAAtwFuAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAC3AAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAC3ABIAtwAAAAAAAAAKABQAHgBCAGQAAAABAAAABgAUAAEAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAASwAAoAAAAABGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAS0AAAEtFpovuE9TLzIAAAIkAAAAYAAAAGAIIweQY21hcAAAAoQAAABMAAAATA984gpnYXNwAAAC0AAAAAgAAAAIAAAAEGhlYWQAAALYAAAANgAAADb/0IhHaGhlYQAAAxAAAAAkAAAAJAKZAedobXR4AAADNAAAABgAAAAYAm4AEm1heHAAAANMAAAABgAAAAYABlAAbmFtZQAAA1QAAAE8AAABPPC1n05wb3N0AAAEkAAAACAAAAAgAAMAAAEABAQAAQEBB3JhdGluZwABAgABADr4HAL4GwP4GAQeCgAZU/+Lix4KABlT/4uLDAeLa/iU+HQFHQAAAHkPHQAAAH4RHQAAAAkdAAABJBIABwEBBw0PERQZHnJhdGluZ3JhdGluZ3UwdTF1MjB1RjBEOXVGMERBAAACAYkABAAGAQEEBwoNVp38lA78lA78lA77lA773Z33bxWLkI2Qj44I9xT3FAWOj5CNkIuQi4+JjoePiI2Gi4YIi/uUBYuGiYeHiIiHh4mGi4aLho2Ijwj7FPcUBYeOiY+LkAgO+92L5hWL95QFi5CNkI6Oj4+PjZCLkIuQiY6HCPcU+xQFj4iNhouGi4aJh4eICPsU+xQFiIeGiYaLhouHjYePiI6Jj4uQCA74lBT4lBWLDAoAAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDZ//3//wAB/+MPKwADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAEAADfYOJZfDzz1AAsCAAAAAADP/aPuAAAAAM/9o+4AAAAAALcBbgAAAAgAAgAAAAAAAAABAAAB4P/gAAACAAAAAAAAtwABAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAEAAAAAtwASALcAAAAAUAAABgAAAAAADgCuAAEAAAAAAAEADAAAAAEAAAAAAAIADgBAAAEAAAAAAAMADAAiAAEAAAAAAAQADABOAAEAAAAAAAUAFgAMAAEAAAAAAAYABgAuAAEAAAAAAAoANABaAAMAAQQJAAEADAAAAAMAAQQJAAIADgBAAAMAAQQJAAMADAAiAAMAAQQJAAQADABOAAMAAQQJAAUAFgAMAAMAAQQJAAYADAA0AAMAAQQJAAoANABaAHIAYQB0AGkAbgBnAFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAGEAdABpAG4AZ3JhdGluZwByAGEAdABpAG4AZwBSAGUAZwB1AGwAYQByAHIAYQB0AGkAbgBnAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff'); - font-weight: normal; - font-style: normal; -} - -/* Dropdown Icon */ - -.ui.accordion .title .dropdown.icon, -.ui.accordion .accordion .title .dropdown.icon { - font-family: Accordion; - line-height: 1; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.accordion .title .dropdown.icon:before, -.ui.accordion .accordion .title .dropdown.icon:before { - content: '\f0da' ; -} - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Checkbox -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Checkbox -*******************************/ - -/*-------------- - Content ----------------*/ - -.ui.checkbox { - position: relative; - display: inline-block; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - outline: none; - vertical-align: baseline; - font-style: normal; - min-height: 17px; - font-size: 1rem; - line-height: 17px; - min-width: 17px; -} - -/* HTML Checkbox */ - -.ui.checkbox input[type="checkbox"], -.ui.checkbox input[type="radio"] { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - opacity: 0 !important; - outline: none; - z-index: 3; - width: 17px; - height: 17px; -} - -/*-------------- - Box ----------------*/ - -.ui.checkbox .box, -.ui.checkbox label { - cursor: auto; - position: relative; - display: block; - padding-left: 1.85714em; - outline: none; - font-size: 1em; -} - -.ui.checkbox .box:before, -.ui.checkbox label:before { - position: absolute; - top: 0px; - left: 0px; - width: 17px; - height: 17px; - content: ''; - background: #FFFFFF; - border-radius: 0.21428571rem; - -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - border: 1px solid #D4D4D5; -} - -/*-------------- - Checkmark ----------------*/ - -.ui.checkbox .box:after, -.ui.checkbox label:after { - position: absolute; - font-size: 14px; - top: 0px; - left: 0px; - width: 17px; - height: 17px; - text-align: center; - opacity: 0; - color: rgba(0, 0, 0, 0.87); - -webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease; - transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; -} - -/*-------------- - Label ----------------*/ - -/* Inside */ - -.ui.checkbox label, -.ui.checkbox + label { - color: rgba(0, 0, 0, 0.87); - -webkit-transition: color 0.1s ease; - transition: color 0.1s ease; -} - -/* Outside */ - -.ui.checkbox + label { - vertical-align: middle; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.checkbox .box:hover::before, -.ui.checkbox label:hover::before { - background: #FFFFFF; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox label:hover, -.ui.checkbox + label:hover { - color: rgba(0, 0, 0, 0.8); -} - -/*-------------- - Down ----------------*/ - -.ui.checkbox .box:active::before, -.ui.checkbox label:active::before { - background: #F9FAFB; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox .box:active::after, -.ui.checkbox label:active::after { - color: rgba(0, 0, 0, 0.95); -} - -.ui.checkbox input:active ~ label { - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Focus ----------------*/ - -.ui.checkbox input:focus ~ .box:before, -.ui.checkbox input:focus ~ label:before { - background: #FFFFFF; - border-color: #96C8DA; -} - -.ui.checkbox input:focus ~ .box:after, -.ui.checkbox input:focus ~ label:after { - color: rgba(0, 0, 0, 0.95); -} - -.ui.checkbox input:focus ~ label { - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Active ----------------*/ - -.ui.checkbox input:checked ~ .box:before, -.ui.checkbox input:checked ~ label:before { - background: #FFFFFF; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - opacity: 1; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Indeterminate ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:before { - background: #FFFFFF; - border-color: rgba(34, 36, 38, 0.35); -} - -.ui.checkbox input:not([type=radio]):indeterminate ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate ~ label:after { - opacity: 1; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Active Focus ----------------*/ - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before, -.ui.checkbox input:checked:focus ~ .box:before, -.ui.checkbox input:checked:focus ~ label:before { - background: #FFFFFF; - border-color: #96C8DA; -} - -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after, -.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after, -.ui.checkbox input:checked:focus ~ .box:after, -.ui.checkbox input:checked:focus ~ label:after { - color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Read-Only ----------------*/ - -.ui.read-only.checkbox, -.ui.read-only.checkbox label { - cursor: default; -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.checkbox .box:after, -.ui.disabled.checkbox label, -.ui.checkbox input[disabled] ~ .box:after, -.ui.checkbox input[disabled] ~ label { - cursor: default !important; - opacity: 0.5; - color: #000000; -} - -/*-------------- - Hidden ----------------*/ - -/* Initialized checkbox moves input below element -to prevent manually triggering */ - -.ui.checkbox input.hidden { - z-index: -1; -} - -/* Selectable Label */ - -.ui.checkbox input.hidden + label { - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Radio ----------------*/ - -.ui.radio.checkbox { - min-height: 15px; -} - -.ui.radio.checkbox .box, -.ui.radio.checkbox label { - padding-left: 1.85714em; -} - -/* Box */ - -.ui.radio.checkbox .box:before, -.ui.radio.checkbox label:before { - content: ''; - -webkit-transform: none; - transform: none; - width: 15px; - height: 15px; - border-radius: 500rem; - top: 1px; - left: 0px; -} - -/* Bullet */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - border: none; - content: '' !important; - width: 15px; - height: 15px; - line-height: 15px; -} - -/* Radio Checkbox */ - -.ui.radio.checkbox .box:after, -.ui.radio.checkbox label:after { - top: 1px; - left: 0px; - width: 15px; - height: 15px; - border-radius: 500rem; - -webkit-transform: scale(0.46666667); - transform: scale(0.46666667); - background-color: rgba(0, 0, 0, 0.87); -} - -/* Focus */ - -.ui.radio.checkbox input:focus ~ .box:before, -.ui.radio.checkbox input:focus ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:focus ~ .box:after, -.ui.radio.checkbox input:focus ~ label:after { - background-color: rgba(0, 0, 0, 0.95); -} - -/* Indeterminate */ - -.ui.radio.checkbox input:indeterminate ~ .box:after, -.ui.radio.checkbox input:indeterminate ~ label:after { - opacity: 0; -} - -/* Active */ - -.ui.radio.checkbox input:checked ~ .box:before, -.ui.radio.checkbox input:checked ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:checked ~ .box:after, -.ui.radio.checkbox input:checked ~ label:after { - background-color: rgba(0, 0, 0, 0.95); -} - -/* Active Focus */ - -.ui.radio.checkbox input:focus:checked ~ .box:before, -.ui.radio.checkbox input:focus:checked ~ label:before { - background-color: #FFFFFF; -} - -.ui.radio.checkbox input:focus:checked ~ .box:after, -.ui.radio.checkbox input:focus:checked ~ label:after { - background-color: rgba(0, 0, 0, 0.95); -} - -/*-------------- - Slider ----------------*/ - -.ui.slider.checkbox { - min-height: 1.25rem; -} - -/* Input */ - -.ui.slider.checkbox input { - width: 3.5rem; - height: 1.25rem; -} - -/* Label */ - -.ui.slider.checkbox .box, -.ui.slider.checkbox label { - padding-left: 4.5rem; - line-height: 1rem; - color: rgba(0, 0, 0, 0.4); -} - -/* Line */ - -.ui.slider.checkbox .box:before, -.ui.slider.checkbox label:before { - display: block; - position: absolute; - content: ''; - border: none !important; - left: 0em; - z-index: 1; - top: 0.4rem; - background-color: rgba(0, 0, 0, 0.05); - width: 3.5rem; - height: 0.21428571rem; - -webkit-transform: none; - transform: none; - border-radius: 500rem; - -webkit-transition: background 0.3s ease; - transition: background 0.3s ease; -} - -/* Handle */ - -.ui.slider.checkbox .box:after, -.ui.slider.checkbox label:after { - background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - border: none; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - width: 1.5rem; - height: 1.5rem; - top: -0.25rem; - left: 0em; - -webkit-transform: none; - transform: none; - border-radius: 500rem; - -webkit-transition: left 0.3s ease; - transition: left 0.3s ease; -} - -/* Focus */ - -.ui.slider.checkbox input:focus ~ .box:before, -.ui.slider.checkbox input:focus ~ label:before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Hover */ - -.ui.slider.checkbox .box:hover, -.ui.slider.checkbox label:hover { - color: rgba(0, 0, 0, 0.8); -} - -.ui.slider.checkbox .box:hover::before, -.ui.slider.checkbox label:hover::before { - background: rgba(0, 0, 0, 0.15); -} - -/* Active */ - -.ui.slider.checkbox input:checked ~ .box, -.ui.slider.checkbox input:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.slider.checkbox input:checked ~ .box:before, -.ui.slider.checkbox input:checked ~ label:before { - background-color: #545454 !important; -} - -.ui.slider.checkbox input:checked ~ .box:after, -.ui.slider.checkbox input:checked ~ label:after { - left: 2rem; -} - -/* Active Focus */ - -.ui.slider.checkbox input:focus:checked ~ .box, -.ui.slider.checkbox input:focus:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.slider.checkbox input:focus:checked ~ .box:before, -.ui.slider.checkbox input:focus:checked ~ label:before { - background-color: #000000 !important; -} - -/*-------------- - Toggle ----------------*/ - -.ui.toggle.checkbox { - min-height: 1.5rem; -} - -/* Input */ - -.ui.toggle.checkbox input { - width: 3.5rem; - height: 1.5rem; -} - -/* Label */ - -.ui.toggle.checkbox .box, -.ui.toggle.checkbox label { - min-height: 1.5rem; - padding-left: 4.5rem; - color: rgba(0, 0, 0, 0.87); -} - -.ui.toggle.checkbox label { - padding-top: 0.15em; -} - -/* Switch */ - -.ui.toggle.checkbox .box:before, -.ui.toggle.checkbox label:before { - display: block; - position: absolute; - content: ''; - z-index: 1; - -webkit-transform: none; - transform: none; - border: none; - top: 0rem; - background: rgba(0, 0, 0, 0.05); - -webkit-box-shadow: none; - box-shadow: none; - width: 3.5rem; - height: 1.5rem; - border-radius: 500rem; -} - -/* Handle */ - -.ui.toggle.checkbox .box:after, -.ui.toggle.checkbox label:after { - background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05))); - background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - background: #FFFFFF linear-gradient(transparent, rgba(0, 0, 0, 0.05)); - position: absolute; - content: '' !important; - opacity: 1; - z-index: 2; - border: none; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - width: 1.5rem; - height: 1.5rem; - top: 0rem; - left: 0em; - border-radius: 500rem; - -webkit-transition: background 0.3s ease, left 0.3s ease; - transition: background 0.3s ease, left 0.3s ease; -} - -.ui.toggle.checkbox input ~ .box:after, -.ui.toggle.checkbox input ~ label:after { - left: -0.05rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -/* Focus */ - -.ui.toggle.checkbox input:focus ~ .box:before, -.ui.toggle.checkbox input:focus ~ label:before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Hover */ - -.ui.toggle.checkbox .box:hover::before, -.ui.toggle.checkbox label:hover::before { - background-color: rgba(0, 0, 0, 0.15); - border: none; -} - -/* Active */ - -.ui.toggle.checkbox input:checked ~ .box, -.ui.toggle.checkbox input:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.toggle.checkbox input:checked ~ .box:before, -.ui.toggle.checkbox input:checked ~ label:before { - background-color: #2185D0 !important; -} - -.ui.toggle.checkbox input:checked ~ .box:after, -.ui.toggle.checkbox input:checked ~ label:after { - left: 2.15rem; - -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -/* Active Focus */ - -.ui.toggle.checkbox input:focus:checked ~ .box, -.ui.toggle.checkbox input:focus:checked ~ label { - color: rgba(0, 0, 0, 0.95) !important; -} - -.ui.toggle.checkbox input:focus:checked ~ .box:before, -.ui.toggle.checkbox input:focus:checked ~ label:before { - background-color: #0d71bb !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Fitted ----------------*/ - -.ui.fitted.checkbox .box, -.ui.fitted.checkbox label { - padding-left: 0em !important; -} - -.ui.fitted.toggle.checkbox, -.ui.fitted.toggle.checkbox { - width: 3.5rem; -} - -.ui.fitted.slider.checkbox, -.ui.fitted.slider.checkbox { - width: 3.5rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Checkbox'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBD8AAAC8AAAAYGNtYXAYVtCJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zn4huwUAAAF4AAABYGhlYWQGPe1ZAAAC2AAAADZoaGVhB30DyAAAAxAAAAAkaG10eBBKAEUAAAM0AAAAHGxvY2EAmgESAAADUAAAABBtYXhwAAkALwAAA2AAAAAgbmFtZSC8IugAAAOAAAABknBvc3QAAwAAAAAFFAAAACAAAwMTAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6AL//f//AAAAAAAg6AD//f//AAH/4xgEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAEUAUQO7AvgAGgAAARQHAQYjIicBJjU0PwE2MzIfAQE2MzIfARYVA7sQ/hQQFhcQ/uMQEE4QFxcQqAF2EBcXEE4QAnMWEP4UEBABHRAXFhBOEBCoAXcQEE4QFwAAAAABAAABbgMlAkkAFAAAARUUBwYjISInJj0BNDc2MyEyFxYVAyUQEBf9SRcQEBAQFwK3FxAQAhJtFxAQEBAXbRcQEBAQFwAAAAABAAAASQMlA24ALAAAARUUBwYrARUUBwYrASInJj0BIyInJj0BNDc2OwE1NDc2OwEyFxYdATMyFxYVAyUQEBfuEBAXbhYQEO4XEBAQEBfuEBAWbhcQEO4XEBACEm0XEBDuFxAQEBAX7hAQF20XEBDuFxAQEBAX7hAQFwAAAQAAAAIAAHRSzT9fDzz1AAsEAAAAAADRsdR3AAAAANGx1HcAAAAAA7sDbgAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAADuwABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAABFAyUAAAMlAAAAAAAAAAoAFAAeAE4AcgCwAAEAAAAHAC0AAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhWZXJzaW9uIDIuMABWAGUAcgBzAGkAbwBuACAAMgAuADBDaGVja2JveABDAGgAZQBjAGsAYgBvAHhDaGVja2JveABDAGgAZQBjAGsAYgBvAHhSZWd1bGFyAFIAZQBnAHUAbABhAHJDaGVja2JveABDAGgAZQBjAGsAYgBvAHhGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'); -} - -/* Checkmark */ - -.ui.checkbox label:after, -.ui.checkbox .box:after { - font-family: 'Checkbox'; -} - -/* Checked */ - -.ui.checkbox input:checked ~ .box:after, -.ui.checkbox input:checked ~ label:after { - content: '\e800'; -} - -/* Indeterminate */ - -.ui.checkbox input:indeterminate ~ .box:after, -.ui.checkbox input:indeterminate ~ label:after { - font-size: 12px; - content: '\e801'; -} - -/* UTF Reference -.check:before { content: '\e800'; } -.dash:before { content: '\e801'; } -.plus:before { content: '\e802'; } -*/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Dimmer -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Dimmer -*******************************/ - -.dimmable:not(body) { - position: relative; -} - -.ui.dimmer { - display: none; - position: absolute; - top: 0em !important; - left: 0em !important; - width: 100%; - height: 100%; - text-align: center; - vertical-align: middle; - padding: 1em; - background-color: rgba(0, 0, 0, 0.85); - opacity: 0; - line-height: 1; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; - -webkit-animation-duration: 0.5s; - animation-duration: 0.5s; - -webkit-transition: background-color 0.5s linear; - transition: background-color 0.5s linear; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - will-change: opacity; - z-index: 1000; -} - -/* Dimmer Content */ - -.ui.dimmer > .content { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; - color: #FFFFFF; -} - -/* Loose Coupling */ - -.ui.segment > .ui.dimmer { - border-radius: inherit !important; -} - -/* Scrollbars */ - -.ui.dimmer:not(.inverted)::-webkit-scrollbar-track { - background: rgba(255, 255, 255, 0.1); -} - -.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb { - background: rgba(255, 255, 255, 0.25); -} - -.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive { - background: rgba(255, 255, 255, 0.15); -} - -.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover { - background: rgba(255, 255, 255, 0.35); -} - -/******************************* - States -*******************************/ - -/* Animating */ - -.animating.dimmable:not(body), -.dimmed.dimmable:not(body) { - overflow: hidden; -} - -/* Animating / Active / Visible */ - -.dimmed.dimmable > .ui.animating.dimmer, -.dimmed.dimmable > .ui.visible.dimmer, -.ui.active.dimmer { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - opacity: 1; -} - -/* Disabled */ - -.ui.disabled.dimmer { - width: 0 !important; - height: 0 !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Alignment ----------------*/ - -.ui[class*="top aligned"].dimmer { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.ui[class*="bottom aligned"].dimmer { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -/*-------------- - Page ----------------*/ - -.ui.page.dimmer { - position: fixed; - -webkit-transform-style: ''; - transform-style: ''; - -webkit-perspective: 2000px; - perspective: 2000px; - -webkit-transform-origin: center center; - transform-origin: center center; -} - -body.animating.in.dimmable, -body.dimmed.dimmable { - overflow: hidden; -} - -body.dimmable > .dimmer { - position: fixed; -} - -/*-------------- - Blurring ----------------*/ - -.blurring.dimmable > :not(.dimmer) { - -webkit-filter: blur(0px) grayscale(0); - filter: blur(0px) grayscale(0); - -webkit-transition: 800ms -webkit-filter ease; - transition: 800ms -webkit-filter ease; - transition: 800ms filter ease; - transition: 800ms filter ease, 800ms -webkit-filter ease; -} - -.blurring.dimmed.dimmable > :not(.dimmer) { - -webkit-filter: blur(5px) grayscale(0.7); - filter: blur(5px) grayscale(0.7); -} - -/* Dimmer Color */ - -.blurring.dimmable > .dimmer { - background-color: rgba(0, 0, 0, 0.6); -} - -.blurring.dimmable > .inverted.dimmer { - background-color: rgba(255, 255, 255, 0.6); -} - -/*-------------- - Aligned ----------------*/ - -.ui.dimmer > .top.aligned.content > * { - vertical-align: top; -} - -.ui.dimmer > .bottom.aligned.content > * { - vertical-align: bottom; -} - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.dimmer { - background-color: rgba(255, 255, 255, 0.85); -} - -.ui.inverted.dimmer > .content > * { - color: #FFFFFF; -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dimmer { - display: block; - overflow: hidden; - opacity: 1; - width: 0%; - height: 0%; - z-index: -100; - background-color: rgba(0, 0, 0, 0); -} - -.dimmed.dimmable > .ui.simple.dimmer { - overflow: visible; - opacity: 1; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.85); - z-index: 1; -} - -.ui.simple.inverted.dimmer { - background-color: rgba(255, 255, 255, 0); -} - -.dimmed.dimmable > .ui.simple.inverted.dimmer { - background-color: rgba(255, 255, 255, 0.85); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Dropdown -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Dropdown -*******************************/ - -.ui.dropdown { - cursor: pointer; - position: relative; - display: inline-block; - outline: none; - text-align: left; - -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -/******************************* - Content -*******************************/ - -/*-------------- - Menu ----------------*/ - -.ui.dropdown .menu { - cursor: auto; - position: absolute; - display: none; - outline: none; - top: 100%; - min-width: -webkit-max-content; - min-width: -moz-max-content; - min-width: max-content; - margin: 0em; - padding: 0em 0em; - background: #FFFFFF; - font-size: 1em; - text-shadow: none; - text-align: left; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; - z-index: 11; - will-change: transform, opacity; -} - -.ui.dropdown .menu > * { - white-space: nowrap; -} - -/*-------------- - Hidden Input ----------------*/ - -.ui.dropdown > input:not(.search):first-child, -.ui.dropdown > select { - display: none !important; -} - -/*-------------- -Dropdown Icon ----------------*/ - -.ui.dropdown > .dropdown.icon { - position: relative; - width: auto; - font-size: 0.85714286em; - margin: 0em 0em 0em 1em; -} - -.ui.dropdown .menu > .item .dropdown.icon { - width: auto; - float: right; - margin: 0em 0em 0em 1em; -} - -.ui.dropdown .menu > .item .dropdown.icon + .text { - margin-right: 1em; -} - -/*-------------- - Text ----------------*/ - -.ui.dropdown > .text { - display: inline-block; - -webkit-transition: none; - transition: none; -} - -/*-------------- - Menu Item ----------------*/ - -.ui.dropdown .menu > .item { - position: relative; - cursor: pointer; - display: block; - border: none; - height: auto; - text-align: left; - border-top: none; - line-height: 1em; - color: rgba(0, 0, 0, 0.87); - padding: 0.78571429rem 1.14285714rem !important; - font-size: 1rem; - text-transform: none; - font-weight: normal; - -webkit-box-shadow: none; - box-shadow: none; - -webkit-touch-callout: none; -} - -.ui.dropdown .menu > .item:first-child { - border-top-width: 0px; -} - -/*-------------- - Floated Content ----------------*/ - -.ui.dropdown > .text > [class*="right floated"], -.ui.dropdown .menu .item > [class*="right floated"] { - float: right !important; - margin-right: 0em !important; - margin-left: 1em !important; -} - -.ui.dropdown > .text > [class*="left floated"], -.ui.dropdown .menu .item > [class*="left floated"] { - float: left !important; - margin-left: 0em !important; - margin-right: 1em !important; -} - -.ui.dropdown .menu .item > .icon.floated, -.ui.dropdown .menu .item > .flag.floated, -.ui.dropdown .menu .item > .image.floated, -.ui.dropdown .menu .item > img.floated { - margin-top: 0em; -} - -/*-------------- - Menu Divider ----------------*/ - -.ui.dropdown .menu > .header { - margin: 1rem 0rem 0.75rem; - padding: 0em 1.14285714rem; - color: rgba(0, 0, 0, 0.85); - font-size: 0.78571429em; - font-weight: bold; - text-transform: uppercase; -} - -.ui.dropdown .menu > .divider { - border-top: 1px solid rgba(34, 36, 38, 0.1); - height: 0em; - margin: 0.5em 0em; -} - -.ui.dropdown.dropdown .menu > .input { - width: auto; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - margin: 1.14285714rem 0.78571429rem; - min-width: 10rem; -} - -.ui.dropdown .menu > .header + .input { - margin-top: 0em; -} - -.ui.dropdown .menu > .input:not(.transparent) input { - padding: 0.5em 1em; -} - -.ui.dropdown .menu > .input:not(.transparent) .button, -.ui.dropdown .menu > .input:not(.transparent) .icon, -.ui.dropdown .menu > .input:not(.transparent) .label { - padding-top: 0.5em; - padding-bottom: 0.5em; -} - -/*----------------- - Item Description --------------------*/ - -.ui.dropdown > .text > .description, -.ui.dropdown .menu > .item > .description { - float: right; - margin: 0em 0em 0em 1em; - color: rgba(0, 0, 0, 0.4); -} - -/*----------------- - Message --------------------*/ - -.ui.dropdown .menu > .message { - padding: 0.78571429rem 1.14285714rem; - font-weight: normal; -} - -.ui.dropdown .menu > .message:not(.ui) { - color: rgba(0, 0, 0, 0.4); -} - -/*-------------- - Sub Menu ----------------*/ - -.ui.dropdown .menu .menu { - top: 0% !important; - left: 100%; - right: auto; - margin: 0em 0em 0em -0.5em !important; - border-radius: 0.28571429rem !important; - z-index: 21 !important; -} - -/* Hide Arrow */ - -.ui.dropdown .menu .menu:after { - display: none; -} - -/*-------------- - Sub Elements ----------------*/ - -/* Icons / Flags / Labels / Image */ - -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image { - margin-top: 0em; -} - -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-top: 0em; -} - -.ui.dropdown > .text > .icon, -.ui.dropdown > .text > .label, -.ui.dropdown > .text > .flag, -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .icon, -.ui.dropdown .menu > .item > .label, -.ui.dropdown .menu > .item > .flag, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - margin-left: 0em; - float: none; - margin-right: 0.78571429rem; -} - -/*-------------- - Image ----------------*/ - -.ui.dropdown > .text > img, -.ui.dropdown > .text > .image, -.ui.dropdown .menu > .item > .image, -.ui.dropdown .menu > .item > img { - display: inline-block; - vertical-align: top; - width: auto; - margin-top: -0.5em; - margin-bottom: -0.5em; - max-height: 2em; -} - -/******************************* - Coupling -*******************************/ - -/*-------------- - Menu ----------------*/ - -/* Remove Menu Item Divider */ - -.ui.dropdown .ui.menu > .item:before, -.ui.menu .ui.dropdown .menu > .item:before { - display: none; -} - -/* Prevent Menu Item Border */ - -.ui.menu .ui.dropdown .menu .active.item { - border-left: none; -} - -/* Automatically float dropdown menu right on last menu item */ - -.ui.menu .right.menu .dropdown:last-child .menu, -.ui.menu .right.dropdown.item .menu, -.ui.buttons > .ui.dropdown:last-child .menu { - left: auto; - right: 0em; -} - -/*-------------- - Label ----------------*/ - -/* Dropdown Menu */ - -.ui.label.dropdown .menu { - min-width: 100%; -} - -/*-------------- - Button ----------------*/ - -/* No Margin On Icon Button */ - -.ui.dropdown.icon.button > .dropdown.icon { - margin: 0em; -} - -.ui.button.dropdown .menu { - min-width: 100%; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -/* Displays like a select box */ - -.ui.selection.dropdown { - cursor: pointer; - word-wrap: break-word; - line-height: 1em; - white-space: normal; - outline: 0; - -webkit-transform: rotateZ(0deg); - transform: rotateZ(0deg); - min-width: 14em; - min-height: 2.71428571em; - background: #FFFFFF; - display: inline-block; - padding: 0.78571429em 2.1em 0.78571429em 1em; - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: none; - box-shadow: none; - border: 1px solid rgba(34, 36, 38, 0.15); - border-radius: 0.28571429rem; - -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: width 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease; - transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease; -} - -.ui.selection.dropdown.visible, -.ui.selection.dropdown.active { - z-index: 10; -} - -select.ui.dropdown { - height: 38px; - padding: 0.5em; - border: 1px solid rgba(34, 36, 38, 0.15); - visibility: visible; -} - -.ui.selection.dropdown > .search.icon, -.ui.selection.dropdown > .delete.icon, -.ui.selection.dropdown > .dropdown.icon { - cursor: pointer; - position: absolute; - width: auto; - height: auto; - line-height: 1.21428571em; - top: 0.78571429em; - right: 1em; - z-index: 3; - margin: -0.78571429em; - padding: 0.91666667em; - opacity: 0.8; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -/* Compact */ - -.ui.compact.selection.dropdown { - min-width: 0px; -} - -/* Selection Menu */ - -.ui.selection.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - border-top-width: 0px !important; - width: auto; - outline: none; - margin: 0px -1px; - min-width: calc(100% + 2px ); - width: calc(100% + 2px ); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -.ui.selection.dropdown .menu:after, -.ui.selection.dropdown .menu:before { - display: none; -} - -/*-------------- - Message ----------------*/ - -.ui.selection.dropdown .menu > .message { - padding: 0.78571429rem 1.14285714rem; -} - -@media only screen and (max-width: 767px) { - .ui.selection.dropdown .menu { - max-height: 8.01428571rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.selection.dropdown .menu { - max-height: 10.68571429rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.selection.dropdown .menu { - max-height: 16.02857143rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.selection.dropdown .menu { - max-height: 21.37142857rem; - } -} - -/* Menu Item */ - -.ui.selection.dropdown .menu > .item { - border-top: 1px solid #FAFAFA; - padding: 0.78571429rem 1.14285714rem !important; - white-space: normal; - word-wrap: normal; -} - -/* User Item */ - -.ui.selection.dropdown .menu > .hidden.addition.item { - display: none; -} - -/* Hover */ - -.ui.selection.dropdown:hover { - border-color: rgba(34, 36, 38, 0.35); - -webkit-box-shadow: none; - box-shadow: none; -} - -/* Active */ - -.ui.selection.active.dropdown { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown .menu { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -/* Focus */ - -.ui.selection.dropdown:focus { - border-color: #96C8DA; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.selection.dropdown:focus .menu { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -/* Visible */ - -.ui.selection.visible.dropdown > .text:not(.default) { - font-weight: normal; - color: rgba(0, 0, 0, 0.8); -} - -/* Visible Hover */ - -.ui.selection.active.dropdown:hover { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -.ui.selection.active.dropdown:hover .menu { - border-color: #96C8DA; - -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15); -} - -/* Dropdown Icon */ - -.ui.active.selection.dropdown > .dropdown.icon, -.ui.visible.selection.dropdown > .dropdown.icon { - opacity: 1; - z-index: 3; -} - -/* Connecting Border */ - -.ui.active.selection.dropdown { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -/* Empty Connecting Border */ - -.ui.active.empty.selection.dropdown { - border-radius: 0.28571429rem !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.ui.active.empty.selection.dropdown .menu { - border: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -/*-------------- - Searchable ----------------*/ - -/* Search Selection */ - -.ui.search.dropdown { - min-width: ''; -} - -/* Search Dropdown */ - -.ui.search.dropdown > input.search { - background: none transparent !important; - border: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - cursor: text; - top: 0em; - left: 1px; - width: 100%; - outline: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - padding: inherit; -} - -/* Text Layering */ - -.ui.search.dropdown > input.search { - position: absolute; - z-index: 2; -} - -.ui.search.dropdown > .text { - cursor: text; - position: relative; - left: 1px; - z-index: 3; -} - -/* Search Selection */ - -.ui.search.selection.dropdown > input.search { - line-height: 1.21428571em; - padding: 0.67857143em 2.1em 0.67857143em 1em; -} - -/* Used to size multi select input to character width */ - -.ui.search.selection.dropdown > span.sizer { - line-height: 1.21428571em; - padding: 0.67857143em 2.1em 0.67857143em 1em; - display: none; - white-space: pre; -} - -/* Active/Visible Search */ - -.ui.search.dropdown.active > input.search, -.ui.search.dropdown.visible > input.search { - cursor: auto; -} - -.ui.search.dropdown.active > .text, -.ui.search.dropdown.visible > .text { - pointer-events: none; -} - -/* Filtered Text */ - -.ui.active.search.dropdown input.search:focus + .text .icon, -.ui.active.search.dropdown input.search:focus + .text .flag { - opacity: 0.45; -} - -.ui.active.search.dropdown input.search:focus + .text { - color: rgba(115, 115, 115, 0.87) !important; -} - -/* Search Menu */ - -.ui.search.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; -} - -@media only screen and (max-width: 767px) { - .ui.search.dropdown .menu { - max-height: 8.01428571rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.search.dropdown .menu { - max-height: 10.68571429rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.search.dropdown .menu { - max-height: 16.02857143rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.search.dropdown .menu { - max-height: 21.37142857rem; - } -} - -/*-------------- - Multiple ----------------*/ - -/* Multiple Selection */ - -.ui.multiple.dropdown { - padding: 0.22619048em 2.1em 0.22619048em 0.35714286em; -} - -.ui.multiple.dropdown .menu { - cursor: auto; -} - -/* Multiple Search Selection */ - -.ui.multiple.search.dropdown, -.ui.multiple.search.dropdown > input.search { - cursor: text; -} - -/* Selection Label */ - -.ui.multiple.dropdown > .label { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: inline-block; - vertical-align: top; - white-space: normal; - font-size: 1em; - padding: 0.35714286em 0.78571429em; - margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em; - -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; - box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset; -} - -/* Dropdown Icon */ - -.ui.multiple.dropdown .dropdown.icon { - margin: ''; - padding: ''; -} - -/* Text */ - -.ui.multiple.dropdown > .text { - position: static; - padding: 0; - max-width: 100%; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - line-height: 1.21428571em; -} - -.ui.multiple.dropdown > .label ~ input.search { - margin-left: 0.14285714em !important; -} - -.ui.multiple.dropdown > .label ~ .text { - display: none; -} - -/*----------------- - Multiple Search ------------------*/ - -/* Prompt Text */ - -.ui.multiple.search.dropdown > .text { - display: inline-block; - position: absolute; - top: 0; - left: 0; - padding: inherit; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - line-height: 1.21428571em; -} - -.ui.multiple.search.dropdown > .label ~ .text { - display: none; -} - -/* Search */ - -.ui.multiple.search.dropdown > input.search { - position: static; - padding: 0; - max-width: 100%; - margin: 0.45238095em 0em 0.45238095em 0.64285714em; - width: 2.2em; - line-height: 1.21428571em; -} - -/*-------------- - Inline ----------------*/ - -.ui.inline.dropdown { - cursor: pointer; - display: inline-block; - color: inherit; -} - -.ui.inline.dropdown .dropdown.icon { - margin: 0em 0.5em 0em 0.21428571em; - vertical-align: baseline; -} - -.ui.inline.dropdown > .text { - font-weight: bold; -} - -.ui.inline.dropdown .menu { - cursor: auto; - margin-top: 0.21428571em; - border-radius: 0.28571429rem; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Active -----------------------*/ - -/* Menu Item Active */ - -.ui.dropdown .menu .active.item { - background: transparent; - font-weight: bold; - color: rgba(0, 0, 0, 0.95); - -webkit-box-shadow: none; - box-shadow: none; - z-index: 12; -} - -/*-------------------- - Hover -----------------------*/ - -/* Menu Item Hover */ - -.ui.dropdown .menu > .item:hover { - background: rgba(0, 0, 0, 0.05); - color: rgba(0, 0, 0, 0.95); - z-index: 13; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.dropdown > i.icon { - height: 1em !important; -} - -.ui.loading.selection.dropdown > i.icon { - padding: 1.5em 1.28571429em !important; -} - -.ui.loading.dropdown > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.dropdown > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: dropdown-spin 0.6s linear; - animation: dropdown-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; -} - -/* Coupling */ - -.ui.loading.dropdown.button > i.icon:before, -.ui.loading.dropdown.button > i.icon:after { - display: none; -} - -@-webkit-keyframes dropdown-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes dropdown-spin { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -/*-------------------- - Default Text -----------------------*/ - -.ui.dropdown:not(.button) > .default.text, -.ui.default.dropdown:not(.button) > .text { - color: rgba(191, 191, 191, 0.87); -} - -.ui.dropdown:not(.button) > input:focus ~ .default.text, -.ui.default.dropdown:not(.button) > input:focus ~ .text { - color: rgba(115, 115, 115, 0.87); -} - -/*-------------------- - Loading -----------------------*/ - -.ui.loading.dropdown > .text { - -webkit-transition: none; - transition: none; -} - -/* Used To Check Position */ - -.ui.dropdown .loading.menu { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.dropdown > .loading.menu { - left: 0px !important; - right: auto !important; -} - -.ui.dropdown > .menu .loading.menu { - left: 100% !important; - right: auto !important; -} - -/*-------------------- - Keyboard Select -----------------------*/ - -/* Selected Item */ - -.ui.dropdown.selected, -.ui.dropdown .menu .selected.item { - background: rgba(0, 0, 0, 0.03); - color: rgba(0, 0, 0, 0.95); -} - -/*-------------------- - Search Filtered -----------------------*/ - -/* Filtered Item */ - -.ui.dropdown > .filtered.text { - visibility: hidden; -} - -.ui.dropdown .filtered.item { - display: none !important; -} - -/*-------------------- - Error -----------------------*/ - -.ui.dropdown.error, -.ui.dropdown.error > .text, -.ui.dropdown.error > .default.text { - color: #9F3A38; -} - -.ui.selection.dropdown.error { - background: #FFF6F6; - border-color: #E0B4B4; -} - -.ui.selection.dropdown.error:hover { - border-color: #E0B4B4; -} - -.ui.dropdown.error > .menu, -.ui.dropdown.error > .menu .menu { - border-color: #E0B4B4; -} - -.ui.dropdown.error > .menu > .item { - color: #9F3A38; -} - -.ui.multiple.selection.error.dropdown > .label { - border-color: #E0B4B4; -} - -/* Item Hover */ - -.ui.dropdown.error > .menu > .item:hover { - background-color: #FFF2F2; -} - -/* Item Active */ - -.ui.dropdown.error > .menu .active.item { - background-color: #FDCFCF; -} - -/*-------------------- - Disabled -----------------------*/ - -/* Disabled */ - -.ui.disabled.dropdown, -.ui.dropdown .menu > .disabled.item { - cursor: default; - pointer-events: none; - opacity: 0.45; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Direction ----------------*/ - -/* Flyout Direction */ - -.ui.dropdown .menu { - left: 0px; -} - -/* Default Side (Right) */ - -.ui.dropdown .right.menu > .menu, -.ui.dropdown .menu .right.menu { - left: 100% !important; - right: auto !important; - border-radius: 0.28571429rem !important; -} - -/* Leftward Opening Menu */ - -.ui.dropdown > .left.menu { - left: auto !important; - right: 0px !important; -} - -.ui.dropdown > .left.menu .menu, -.ui.dropdown .menu .left.menu { - left: auto; - right: 100%; - margin: 0em -0.5em 0em 0em !important; - border-radius: 0.28571429rem !important; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon, -.ui.dropdown .left.menu .item .dropdown.icon { - width: auto; - float: left; - margin: 0em 0em 0em 0em; -} - -.ui.dropdown .item .left.dropdown.icon + .text, -.ui.dropdown .left.menu .item .dropdown.icon + .text { - margin-left: 1em; - margin-right: 0em; -} - -/*-------------- - Upward ----------------*/ - -/* Upward Main Menu */ - -.ui.upward.dropdown > .menu { - top: auto; - bottom: 100%; - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Upward Sub Menu */ - -.ui.dropdown .upward.menu { - top: auto !important; - bottom: 0 !important; -} - -/* Active Upward */ - -.ui.simple.upward.active.dropdown, -.ui.simple.upward.dropdown:hover { - border-radius: 0.28571429rem 0.28571429rem 0em 0em !important; -} - -.ui.upward.dropdown.button:not(.pointing):not(.floating).active { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/* Selection */ - -.ui.upward.selection.dropdown .menu { - border-top-width: 1px !important; - border-bottom-width: 0px !important; - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -.ui.upward.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); - box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05); -} - -/* Active Upward */ - -.ui.active.upward.selection.dropdown { - border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; -} - -/* Visible Upward */ - -.ui.upward.selection.dropdown.visible { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08); - border-radius: 0em 0em 0.28571429rem 0.28571429rem !important; -} - -/* Visible Hover Upward */ - -.ui.upward.active.selection.dropdown:hover { - -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); - box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05); -} - -.ui.upward.active.selection.dropdown:hover .menu { - -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08); -} - -/*-------------- - Simple ----------------*/ - -/* Selection Menu */ - -.ui.scrolling.dropdown .menu, -.ui.dropdown .scrolling.menu { - overflow-x: hidden; - overflow-y: auto; -} - -.ui.scrolling.dropdown .menu { - overflow-x: hidden; - overflow-y: auto; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-overflow-scrolling: touch; - min-width: 100% !important; - width: auto !important; -} - -.ui.dropdown .scrolling.menu { - position: static; - overflow-y: auto; - border: none; - -webkit-box-shadow: none !important; - box-shadow: none !important; - border-radius: 0 !important; - margin: 0 !important; - min-width: 100% !important; - width: auto !important; - border-top: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.scrolling.dropdown .menu .item.item.item, -.ui.dropdown .scrolling.menu > .item.item.item { - border-top: none; -} - -.ui.scrolling.dropdown .menu .item:first-child, -.ui.dropdown .scrolling.menu .item:first-child { - border-top: none; -} - -.ui.dropdown > .animating.menu .scrolling.menu, -.ui.dropdown > .visible.menu .scrolling.menu { - display: block; -} - -/* Scrollbar in IE */ - -@media all and (-ms-high-contrast: none) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - min-width: calc(100% - 17px ); - } -} - -@media only screen and (max-width: 767px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 10.28571429rem; - } -} - -@media only screen and (min-width: 768px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 15.42857143rem; - } -} - -@media only screen and (min-width: 992px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 20.57142857rem; - } -} - -@media only screen and (min-width: 1920px) { - .ui.scrolling.dropdown .menu, - .ui.dropdown .scrolling.menu { - max-height: 20.57142857rem; - } -} - -/*-------------- - Simple ----------------*/ - -/* Displays without javascript */ - -.ui.simple.dropdown .menu:before, -.ui.simple.dropdown .menu:after { - display: none; -} - -.ui.simple.dropdown .menu { - position: absolute; - display: block; - overflow: hidden; - top: -9999px !important; - opacity: 0; - width: 0; - height: 0; - -webkit-transition: opacity 0.1s ease; - transition: opacity 0.1s ease; -} - -.ui.simple.active.dropdown, -.ui.simple.dropdown:hover { - border-bottom-left-radius: 0em !important; - border-bottom-right-radius: 0em !important; -} - -.ui.simple.active.dropdown > .menu, -.ui.simple.dropdown:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 100% !important; - opacity: 1; -} - -.ui.simple.dropdown > .menu > .item:active > .menu, -.ui.simple.dropdown:hover > .menu > .item:hover > .menu { - overflow: visible; - width: auto; - height: auto; - top: 0% !important; - left: 100% !important; - opacity: 1; -} - -.ui.simple.disabled.dropdown:hover .menu { - display: none; - height: 0px; - width: 0px; - overflow: hidden; -} - -/* Visible */ - -.ui.simple.visible.dropdown > .menu { - display: block; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.dropdown { - display: block; - width: 100%; - min-width: 0em; -} - -.ui.fluid.dropdown > .dropdown.icon { - float: right; -} - -/*-------------- - Floating ----------------*/ - -.ui.floating.dropdown .menu { - left: 0; - right: auto; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important; - border-radius: 0.28571429rem !important; -} - -.ui.floating.dropdown > .menu { - margin-top: 0.5em !important; - border-radius: 0.28571429rem !important; -} - -/*-------------- - Pointing ----------------*/ - -.ui.pointing.dropdown > .menu { - top: 100%; - margin-top: 0.78571429rem; - border-radius: 0.28571429rem; -} - -.ui.pointing.dropdown > .menu:after { - display: block; - position: absolute; - pointer-events: none; - content: ''; - visibility: visible; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - width: 0.5em; - height: 0.5em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - background: #FFFFFF; - z-index: 2; -} - -.ui.pointing.dropdown > .menu:after { - top: -0.25em; - left: 50%; - margin: 0em 0em 0em -0.25em; -} - -/* Top Left Pointing */ - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - left: 0%; - right: auto; - margin: 1em 0em 0em; -} - -.ui.top.left.pointing.dropdown > .menu:after { - top: -0.25em; - left: 1em; - right: auto; - margin: 0em; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); -} - -/* Top Right Pointing */ - -.ui.top.right.pointing.dropdown > .menu { - top: 100%; - bottom: auto; - right: 0%; - left: auto; - margin: 1em 0em 0em; -} - -.ui.top.pointing.dropdown > .left.menu:after, -.ui.top.right.pointing.dropdown > .menu:after { - top: -0.25em; - left: auto !important; - right: 1em !important; - margin: 0em; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); -} - -/* Left Pointing */ - -.ui.left.pointing.dropdown > .menu { - top: 0%; - left: 100%; - right: auto; - margin: 0em 0em 0em 1em; -} - -.ui.left.pointing.dropdown > .menu:after { - top: 1em; - left: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu { - left: auto !important; - right: 100% !important; - margin: 0em 1em 0em 0em; -} - -.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); -} - -/* Right Pointing */ - -.ui.right.pointing.dropdown > .menu { - top: 0%; - left: auto; - right: 100%; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.dropdown > .menu:after { - top: 1em; - left: auto; - right: -0.25em; - margin: 0em 0em 0em 0em; - -webkit-transform: rotate(135deg); - transform: rotate(135deg); -} - -/* Bottom Pointing */ - -.ui.bottom.pointing.dropdown > .menu { - top: auto; - bottom: 100%; - left: 0%; - right: auto; - margin: 0em 0em 1em; -} - -.ui.bottom.pointing.dropdown > .menu:after { - top: auto; - bottom: -0.25em; - right: auto; - margin: 0em; - -webkit-transform: rotate(-135deg); - transform: rotate(-135deg); -} - -/* Reverse Sub-Menu Direction */ - -.ui.bottom.pointing.dropdown > .menu .menu { - top: auto !important; - bottom: 0px !important; -} - -/* Bottom Left */ - -.ui.bottom.left.pointing.dropdown > .menu { - left: 0%; - right: auto; -} - -.ui.bottom.left.pointing.dropdown > .menu:after { - left: 1em; - right: auto; -} - -/* Bottom Right */ - -.ui.bottom.right.pointing.dropdown > .menu { - right: 0%; - left: auto; -} - -.ui.bottom.right.pointing.dropdown > .menu:after { - left: auto; - right: 1em; -} - -/* Upward pointing */ - -.ui.pointing.upward.dropdown .menu, -.ui.top.pointing.upward.dropdown .menu { - top: auto !important; - bottom: 100% !important; - margin: 0em 0em 0.78571429rem; - border-radius: 0.28571429rem; -} - -.ui.pointing.upward.dropdown .menu:after, -.ui.top.pointing.upward.dropdown .menu:after { - top: 100% !important; - bottom: auto !important; - -webkit-box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15); - margin: -0.25em 0em 0em; -} - -/* Right Pointing Upward */ - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 1em 0em 0em; -} - -.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); -} - -/* Left Pointing Upward */ - -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 0em 1em; -} - -.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after { - top: auto !important; - bottom: 0 !important; - margin: 0em 0em 1em 0em; - -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); - box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15); -} - -/******************************* - Theme Overrides -*******************************/ - -/* Dropdown Carets */ - -@font-face { - font-family: 'Dropdown'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff'); - font-weight: normal; - font-style: normal; -} - -.ui.dropdown > .dropdown.icon { - font-family: 'Dropdown'; - line-height: 1; - height: 1em; - width: 1.23em; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -.ui.dropdown > .dropdown.icon { - width: auto; -} - -.ui.dropdown > .dropdown.icon:before { - content: '\f0d7'; -} - -/* Sub Menu */ - -.ui.dropdown .menu .item .dropdown.icon:before { - content: '\f0da' ; -} - -.ui.dropdown .item .left.dropdown.icon:before, -.ui.dropdown .left.menu .item .dropdown.icon:before { - content: "\f0d9" ; -} - -/* Vertical Menu Dropdown */ - -.ui.vertical.menu .dropdown.item > .dropdown.icon:before { - content: "\f0da" ; -} - -/* Icons for Reference -.dropdown.down.icon { - content: "\f0d7"; -} -.dropdown.up.icon { - content: "\f0d8"; -} -.dropdown.left.icon { - content: "\f0d9"; -} -.dropdown.icon.icon { - content: "\f0da"; -} -*/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Video -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Types -*******************************/ - -.ui.embed { - position: relative; - max-width: 100%; - height: 0px; - overflow: hidden; - background: #DCDDDE; - padding-bottom: 56.25%; -} - -/*----------------- - Embedded Content -------------------*/ - -.ui.embed iframe, -.ui.embed embed, -.ui.embed object { - position: absolute; - border: none; - width: 100%; - height: 100%; - top: 0px; - left: 0px; - margin: 0em; - padding: 0em; -} - -/*----------------- - Embed -------------------*/ - -.ui.embed > .embed { - display: none; -} - -/*-------------- - Placeholder ----------------*/ - -.ui.embed > .placeholder { - position: absolute; - cursor: pointer; - top: 0px; - left: 0px; - display: block; - width: 100%; - height: 100%; - background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); -} - -/*-------------- - Icon ----------------*/ - -.ui.embed > .icon { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 100%; - z-index: 2; -} - -.ui.embed > .icon:after { - position: absolute; - top: 0%; - left: 0%; - width: 100%; - height: 100%; - z-index: 3; - content: ''; - background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - opacity: 0.5; - -webkit-transition: opacity 0.5s ease; - transition: opacity 0.5s ease; -} - -.ui.embed > .icon:before { - position: absolute; - top: 50%; - left: 50%; - z-index: 4; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); - color: #FFFFFF; - font-size: 6rem; - text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2); - -webkit-transition: opacity 0.5s ease, color 0.5s ease; - transition: opacity 0.5s ease, color 0.5s ease; - z-index: 10; -} - -/******************************* - States -*******************************/ - -/*-------------- - Hover ----------------*/ - -.ui.embed .icon:hover:after { - background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3)); - opacity: 1; -} - -.ui.embed .icon:hover:before { - color: #FFFFFF; -} - -/*-------------- - Active ----------------*/ - -.ui.active.embed > .icon, -.ui.active.embed > .placeholder { - display: none; -} - -.ui.active.embed > .embed { - display: block; -} - -/******************************* - Video Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ - -/******************************* - Variations -*******************************/ - -.ui.square.embed { - padding-bottom: 100%; -} - -.ui[class*="4:3"].embed { - padding-bottom: 75%; -} - -.ui[class*="16:9"].embed { - padding-bottom: 56.25%; -} - -.ui[class*="21:9"].embed { - padding-bottom: 42.85714286%; -} -/*! -* # Semantic UI 2.3.0 - Modal -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Modal -*******************************/ - -.ui.modal { - display: none; - z-index: 1001; - text-align: left; - background: #FFFFFF; - border: none; - -webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); - box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2); - -webkit-transform-origin: 50% 25%; - transform-origin: 50% 25%; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - border-radius: 0.28571429rem; - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; - will-change: top, left, margin, transform, opacity; -} - -.ui.modal > :first-child:not(.icon), -.ui.modal > .icon:first-child + * { - border-top-left-radius: 0.28571429rem; - border-top-right-radius: 0.28571429rem; -} - -.ui.modal > :last-child { - border-bottom-left-radius: 0.28571429rem; - border-bottom-right-radius: 0.28571429rem; -} - -/******************************* - Content -*******************************/ - -/*-------------- - Close ----------------*/ - -.ui.modal > .close { - cursor: pointer; - position: absolute; - top: -2.5rem; - right: -2.5rem; - z-index: 1; - opacity: 0.8; - font-size: 1.25em; - color: #FFFFFF; - width: 2.25rem; - height: 2.25rem; - padding: 0.625rem 0rem 0rem 0rem; -} - -.ui.modal > .close:hover { - opacity: 1; -} - -/*-------------- - Header ----------------*/ - -.ui.modal > .header { - display: block; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - background: #FFFFFF; - margin: 0em; - padding: 1.25rem 1.5rem; - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(0, 0, 0, 0.85); - border-bottom: 1px solid rgba(34, 36, 38, 0.15); -} - -.ui.modal > .header:not(.ui) { - font-size: 1.42857143rem; - line-height: 1.28571429em; - font-weight: bold; -} - -/*-------------- - Content ----------------*/ - -.ui.modal > .content { - display: block; - width: 100%; - font-size: 1em; - line-height: 1.4; - padding: 1.5rem; - background: #FFFFFF; -} - -.ui.modal > .image.content { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; -} - -/* Image */ - -.ui.modal > .content > .image { - display: block; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: ''; - -ms-flex-item-align: top; - align-self: top; -} - -.ui.modal > [class*="top aligned"] { - -ms-flex-item-align: top; - align-self: top; -} - -.ui.modal > [class*="middle aligned"] { - -ms-flex-item-align: middle; - align-self: middle; -} - -.ui.modal > [class*="stretched"] { - -ms-flex-item-align: stretch; - align-self: stretch; -} - -/* Description */ - -.ui.modal > .content > .description { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - min-width: 0px; - -ms-flex-item-align: top; - align-self: top; -} - -.ui.modal > .content > .icon + .description, -.ui.modal > .content > .image + .description { - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - min-width: ''; - width: auto; - padding-left: 2em; -} - -/*rtl:ignore*/ - -.ui.modal > .content > .image > i.icon { - margin: 0em; - opacity: 1; - width: auto; - line-height: 1; - font-size: 8rem; -} - -/*-------------- - Actions ----------------*/ - -.ui.modal > .actions { - background: #F9FAFB; - padding: 1rem 1rem; - border-top: 1px solid rgba(34, 36, 38, 0.15); - text-align: right; -} - -.ui.modal .actions > .button { - margin-left: 0.75em; -} - -/*------------------- - Responsive ---------------------*/ - -/* Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.modal { - width: 850px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.modal { - width: 900px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.modal { - width: 950px; - margin: 0em 0em 0em 0em; - } -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .ui.modal > .header { - padding-right: 2.25rem; - } - - .ui.modal > .close { - top: 1.0535rem; - right: 1rem; - color: rgba(0, 0, 0, 0.87); - } -} - -/* Mobile */ - -@media only screen and (max-width: 767px) { - .ui.modal > .header { - padding: 0.75rem 1rem !important; - padding-right: 2.25rem !important; - } - - .ui.modal > .content { - display: block; - padding: 1rem !important; - } - - .ui.modal > .close { - top: 0.5rem !important; - right: 0.5rem !important; - } - - /*rtl:ignore*/ - - .ui.modal .image.content { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - .ui.modal .content > .image { - display: block; - max-width: 100%; - margin: 0em auto !important; - text-align: center; - padding: 0rem 0rem 1rem !important; - } - - .ui.modal > .content > .image > i.icon { - font-size: 5rem; - text-align: center; - } - - /*rtl:ignore*/ - - .ui.modal .content > .description { - display: block; - width: 100% !important; - margin: 0em !important; - padding: 1rem 0rem !important; - -webkit-box-shadow: none; - box-shadow: none; - } - - /* Let Buttons Stack */ - - .ui.modal > .actions { - padding: 1rem 1rem 0rem !important; - } - - .ui.modal .actions > .buttons, - .ui.modal .actions > .button { - margin-bottom: 1rem; - } -} - -/*-------------- - Coupling ----------------*/ - -.ui.inverted.dimmer > .ui.modal { - -webkit-box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); - box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2); -} - -/******************************* - Types -*******************************/ - -.ui.basic.modal { - background-color: transparent; - border: none; - border-radius: 0em; - -webkit-box-shadow: none !important; - box-shadow: none !important; - color: #FFFFFF; -} - -.ui.basic.modal > .header, -.ui.basic.modal > .content, -.ui.basic.modal > .actions { - background-color: transparent; -} - -.ui.basic.modal > .header { - color: #FFFFFF; -} - -.ui.basic.modal > .close { - top: 1rem; - right: 1.5rem; -} - -.ui.inverted.dimmer > .basic.modal { - color: rgba(0, 0, 0, 0.87); -} - -.ui.inverted.dimmer > .ui.basic.modal > .header { - color: rgba(0, 0, 0, 0.85); -} - -/* Tablet and Mobile */ - -@media only screen and (max-width: 991px) { - .ui.basic.modal > .close { - color: #FFFFFF; - } -} - -/******************************* - States -*******************************/ - -.ui.loading.modal { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.active.modal { - display: block; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Top Aligned ----------------*/ - -/* Top Aligned Modal */ - -.modals.dimmer[class*="top aligned"] .modal { - margin: 5vh auto; -} - -/*-------------- - Scrolling ----------------*/ - -/* Scrolling Dimmer */ - -.scrolling.dimmable.dimmed { - overflow: hidden; -} - -.scrolling.dimmable > .dimmer { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.scrolling.dimmable.dimmed > .dimmer { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.scrolling.dimmable > .dimmer { - position: fixed; -} - -.modals.dimmer .ui.scrolling.modal { - margin: 1rem auto !important; -} - -/* Undetached Scrolling */ - -.scrolling.undetached.dimmable.dimmed { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.scrolling.undetached.dimmable.dimmed > .dimmer { - overflow: hidden; -} - -.scrolling.undetached.dimmable .ui.scrolling.modal { - position: absolute; - left: 50%; - margin-top: 1rem !important; -} - -/* Scrolling Content */ - -.ui.modal .scrolling.content { - max-height: calc(70vh); - overflow: auto; -} - -/*-------------- - Full Screen ----------------*/ - -.ui.fullscreen.modal { - width: 95% !important; - left: 0em !important; - margin: 1em auto; -} - -.ui.fullscreen.scrolling.modal { - left: 0em !important; -} - -.ui.fullscreen.modal > .header { - padding-right: 2.25rem; -} - -.ui.fullscreen.modal > .close { - top: 1.0535rem; - right: 1rem; - color: rgba(0, 0, 0, 0.87); -} - -/*-------------- - Size ----------------*/ - -.ui.modal { - font-size: 1rem; -} - -/* Mini */ - -.ui.mini.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Mini Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.mini.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.mini.modal { - width: 35.2%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.mini.modal { - width: 340px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.mini.modal { - width: 360px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.mini.modal { - width: 380px; - margin: 0em 0em 0em 0em; - } -} - -/* mini */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Tiny Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.tiny.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.tiny.modal { - width: 52.8%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.tiny.modal { - width: 510px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.tiny.modal { - width: 540px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.tiny.modal { - width: 570px; - margin: 0em 0em 0em 0em; - } -} - -/* Small */ - -.ui.small.modal > .header:not(.ui) { - font-size: 1.3em; -} - -/* Small Modal Width */ - -@media only screen and (max-width: 767px) { - .ui.small.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.small.modal { - width: 70.4%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.small.modal { - width: 680px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.small.modal { - width: 720px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.small.modal { - width: 760px; - margin: 0em 0em 0em 0em; - } -} - -/* Large Modal Width */ - -.ui.large.modal > .header { - font-size: 1.6em; -} - -@media only screen and (max-width: 767px) { - .ui.large.modal { - width: 95%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 768px) { - .ui.large.modal { - width: 88%; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 992px) { - .ui.large.modal { - width: 1020px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1200px) { - .ui.large.modal { - width: 1080px; - margin: 0em 0em 0em 0em; - } -} - -@media only screen and (min-width: 1920px) { - .ui.large.modal { - width: 1140px; - margin: 0em 0em 0em 0em; - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Nag -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: 0.95; - position: relative; - top: 0em; - left: 0px; - z-index: 999; - min-height: 0em; - width: 100%; - margin: 0em; - padding: 0.75em 1em; - background: #555555; - -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); - font-size: 1rem; - text-align: center; - color: rgba(0, 0, 0, 0.87); - border-radius: 0em 0em 0.28571429rem 0.28571429rem; - -webkit-transition: 0.2s background ease; - transition: 0.2s background ease; -} - -a.ui.nag { - cursor: pointer; -} - -.ui.nag > .title { - display: inline-block; - margin: 0em 0.5em; - color: #FFFFFF; -} - -.ui.nag > .close.icon { - cursor: pointer; - opacity: 0.4; - position: absolute; - top: 50%; - right: 1em; - font-size: 1em; - margin: -0.5em 0em 0em; - color: #FFFFFF; - -webkit-transition: opacity 0.2s ease; - transition: opacity 0.2s ease; -} - -/******************************* - States -*******************************/ - -/* Hover */ - -.ui.nag:hover { - background: #555555; - opacity: 1; -} - -.ui.nag .close:hover { - opacity: 1; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Static ----------------*/ - -.ui.overlay.nag { - position: absolute; - display: block; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.nag { - position: fixed; -} - -/*-------------- - Bottom ----------------*/ - -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; - top: auto; - bottom: 0em; -} - -/*-------------- - White ----------------*/ - -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: #F3F4F5; - color: rgba(0, 0, 0, 0.85); -} - -.ui.inverted.nags .nag .close, -.ui.inverted.nags .nag .title, -.ui.inverted.nag .close, -.ui.inverted.nag .title { - color: rgba(0, 0, 0, 0.4); -} - -/******************************* - Groups -*******************************/ - -.ui.nags .nag { - border-radius: 0em !important; -} - -.ui.nags .nag:last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.bottom.nags .nag:last-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Popup -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Popup -*******************************/ - -.ui.popup { - display: none; - position: absolute; - top: 0px; - right: 0px; - /* Fixes content being squished when inline (moz only) */ - min-width: -webkit-min-content; - min-width: -moz-min-content; - min-width: min-content; - z-index: 1900; - border: 1px solid #D4D4D5; - line-height: 1.4285em; - max-width: 250px; - background: #FFFFFF; - padding: 0.833em 1em; - font-weight: normal; - font-style: normal; - color: rgba(0, 0, 0, 0.87); - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); -} - -.ui.popup > .header { - padding: 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1.14285714em; - line-height: 1.2; - font-weight: bold; -} - -.ui.popup > .header + .content { - padding-top: 0.5em; -} - -.ui.popup:before { - position: absolute; - content: ''; - width: 0.71428571em; - height: 0.71428571em; - background: #FFFFFF; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - z-index: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; - box-shadow: 1px 1px 0px 0px #bababc; -} - -/******************************* - Types -*******************************/ - -/*-------------- - Tooltip ----------------*/ - -/* Content */ - -[data-tooltip] { - position: relative; -} - -/* Arrow */ - -[data-tooltip]:before { - pointer-events: none; - position: absolute; - content: ''; - font-size: 1rem; - width: 0.71428571em; - height: 0.71428571em; - background: #FFFFFF; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - z-index: 2; - -webkit-box-shadow: 1px 1px 0px 0px #bababc; - box-shadow: 1px 1px 0px 0px #bababc; -} - -/* Popup */ - -[data-tooltip]:after { - pointer-events: none; - content: attr(data-tooltip); - position: absolute; - text-transform: none; - text-align: left; - white-space: nowrap; - font-size: 1rem; - border: 1px solid #D4D4D5; - line-height: 1.4285em; - max-width: none; - background: #FFFFFF; - padding: 0.833em 1em; - font-weight: normal; - font-style: normal; - color: rgba(0, 0, 0, 0.87); - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - z-index: 1; -} - -/* Default Position (Top Center) */ - -[data-tooltip]:not([data-position]):before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: #FFFFFF; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -[data-tooltip]:not([data-position]):after { - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - bottom: 100%; - margin-bottom: 0.5em; -} - -/* Animation */ - -[data-tooltip]:before, -[data-tooltip]:after { - pointer-events: none; - visibility: hidden; -} - -[data-tooltip]:before { - opacity: 0; - -webkit-transform: rotate(45deg) scale(0) !important; - transform: rotate(45deg) scale(0) !important; - -webkit-transform-origin: center top; - transform-origin: center top; - -webkit-transition: all 0.1s ease; - transition: all 0.1s ease; -} - -[data-tooltip]:after { - opacity: 1; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-transition: all 0.1s ease; - transition: all 0.1s ease; -} - -[data-tooltip]:hover:before, -[data-tooltip]:hover:after { - visibility: visible; - pointer-events: auto; -} - -[data-tooltip]:hover:before { - -webkit-transform: rotate(45deg) scale(1) !important; - transform: rotate(45deg) scale(1) !important; - opacity: 1; -} - -/* Animation Position */ - -[data-tooltip]:after, -[data-tooltip][data-position="top center"]:after, -[data-tooltip][data-position="bottom center"]:after { - -webkit-transform: translateX(-50%) scale(0) !important; - transform: translateX(-50%) scale(0) !important; -} - -[data-tooltip]:hover:after, -[data-tooltip][data-position="bottom center"]:hover:after { - -webkit-transform: translateX(-50%) scale(1) !important; - transform: translateX(-50%) scale(1) !important; -} - -[data-tooltip][data-position="left center"]:after, -[data-tooltip][data-position="right center"]:after { - -webkit-transform: translateY(-50%) scale(0) !important; - transform: translateY(-50%) scale(0) !important; -} - -[data-tooltip][data-position="left center"]:hover:after, -[data-tooltip][data-position="right center"]:hover:after { - -webkit-transform: translateY(-50%) scale(1) !important; - transform: translateY(-50%) scale(1) !important; -} - -[data-tooltip][data-position="top left"]:after, -[data-tooltip][data-position="top right"]:after, -[data-tooltip][data-position="bottom left"]:after, -[data-tooltip][data-position="bottom right"]:after { - -webkit-transform: scale(0) !important; - transform: scale(0) !important; -} - -[data-tooltip][data-position="top left"]:hover:after, -[data-tooltip][data-position="top right"]:hover:after, -[data-tooltip][data-position="bottom left"]:hover:after, -[data-tooltip][data-position="bottom right"]:hover:after { - -webkit-transform: scale(1) !important; - transform: scale(1) !important; -} - -/*-------------- - Inverted ----------------*/ - -/* Arrow */ - -[data-tooltip][data-inverted]:before { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -/* Arrow Position */ - -[data-tooltip][data-inverted]:before { - background: #1B1C1D; -} - -/* Popup */ - -[data-tooltip][data-inverted]:after { - background: #1B1C1D; - color: #FFFFFF; - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -[data-tooltip][data-inverted]:after .header { - background-color: none; - color: #FFFFFF; -} - -/*-------------- - Position ----------------*/ - -/* Top Center */ - -[data-position="top center"][data-tooltip]:after { - top: auto; - right: auto; - left: 50%; - bottom: 100%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - margin-bottom: 0.5em; -} - -[data-position="top center"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: 50%; - background: #FFFFFF; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Top Left */ - -[data-position="top left"][data-tooltip]:after { - top: auto; - right: auto; - left: 0; - bottom: 100%; - margin-bottom: 0.5em; -} - -[data-position="top left"][data-tooltip]:before { - top: auto; - right: auto; - bottom: 100%; - left: 1em; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Top Right */ - -[data-position="top right"][data-tooltip]:after { - top: auto; - left: auto; - right: 0; - bottom: 100%; - margin-bottom: 0.5em; -} - -[data-position="top right"][data-tooltip]:before { - top: auto; - left: auto; - bottom: 100%; - right: 1em; - margin-left: -0.07142857rem; - margin-bottom: 0.14285714rem; -} - -/* Bottom Center */ - -[data-position="bottom center"][data-tooltip]:after { - bottom: auto; - right: auto; - left: 50%; - top: 100%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - margin-top: 0.5em; -} - -[data-position="bottom center"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: 50%; - margin-left: -0.07142857rem; - margin-top: 0.14285714rem; -} - -/* Bottom Left */ - -[data-position="bottom left"][data-tooltip]:after { - left: 0; - top: 100%; - margin-top: 0.5em; -} - -[data-position="bottom left"][data-tooltip]:before { - bottom: auto; - right: auto; - top: 100%; - left: 1em; - margin-left: -0.07142857rem; - margin-top: 0.14285714rem; -} - -/* Bottom Right */ - -[data-position="bottom right"][data-tooltip]:after { - right: 0; - top: 100%; - margin-top: 0.5em; -} - -[data-position="bottom right"][data-tooltip]:before { - bottom: auto; - left: auto; - top: 100%; - right: 1em; - margin-left: -0.14285714rem; - margin-top: 0.07142857rem; -} - -/* Left Center */ - -[data-position="left center"][data-tooltip]:after { - right: 100%; - top: 50%; - margin-right: 0.5em; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} - -[data-position="left center"][data-tooltip]:before { - right: 100%; - top: 50%; - margin-top: -0.14285714rem; - margin-right: -0.07142857rem; -} - -/* Right Center */ - -[data-position="right center"][data-tooltip]:after { - left: 100%; - top: 50%; - margin-left: 0.5em; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); -} - -[data-position="right center"][data-tooltip]:before { - left: 100%; - top: 50%; - margin-top: -0.07142857rem; - margin-left: 0.14285714rem; -} - -/* Arrow */ - -[data-position~="bottom"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -[data-position="left center"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #bababc; -} - -[data-position="right center"][data-tooltip]:before { - background: #FFFFFF; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #bababc; -} - -[data-position~="top"][data-tooltip]:before { - background: #FFFFFF; -} - -/* Inverted Arrow Color */ - -[data-inverted][data-position~="bottom"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -[data-inverted][data-position="left center"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #bababc; -} - -[data-inverted][data-position="right center"][data-tooltip]:before { - background: #1B1C1D; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #bababc; -} - -[data-inverted][data-position~="top"][data-tooltip]:before { - background: #1B1C1D; -} - -[data-position~="bottom"][data-tooltip]:before { - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} - -[data-position~="bottom"][data-tooltip]:after { - -webkit-transform-origin: center top; - transform-origin: center top; -} - -[data-position="left center"][data-tooltip]:before { - -webkit-transform-origin: top center; - transform-origin: top center; -} - -[data-position="left center"][data-tooltip]:after { - -webkit-transform-origin: right center; - transform-origin: right center; -} - -[data-position="right center"][data-tooltip]:before { - -webkit-transform-origin: right center; - transform-origin: right center; -} - -[data-position="right center"][data-tooltip]:after { - -webkit-transform-origin: left center; - transform-origin: left center; -} - -/*-------------- - Spacing ----------------*/ - -.ui.popup { - margin: 0em; -} - -/* Extending from Top */ - -.ui.top.popup { - margin: 0em 0em 0.71428571em; -} - -.ui.top.left.popup { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; -} - -.ui.top.center.popup { - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} - -.ui.top.right.popup { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; -} - -/* Extending from Vertical Center */ - -.ui.left.center.popup { - margin: 0em 0.71428571em 0em 0em; - -webkit-transform-origin: right 50%; - transform-origin: right 50%; -} - -.ui.right.center.popup { - margin: 0em 0em 0em 0.71428571em; - -webkit-transform-origin: left 50%; - transform-origin: left 50%; -} - -/* Extending from Bottom */ - -.ui.bottom.popup { - margin: 0.71428571em 0em 0em; -} - -.ui.bottom.left.popup { - -webkit-transform-origin: left top; - transform-origin: left top; -} - -.ui.bottom.center.popup { - -webkit-transform-origin: center top; - transform-origin: center top; -} - -.ui.bottom.right.popup { - -webkit-transform-origin: right top; - transform-origin: right top; -} - -/*-------------- - Pointer ----------------*/ - -/*--- Below ---*/ - -.ui.bottom.center.popup:before { - margin-left: -0.30714286em; - top: -0.30714286em; - left: 50%; - right: auto; - bottom: auto; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -.ui.bottom.left.popup { - margin-left: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.left.popup:before { - top: -0.30714286em; - left: 1em; - right: auto; - bottom: auto; - margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -.ui.bottom.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.bottom.right.popup:before { - top: -0.30714286em; - right: 1em; - bottom: auto; - left: auto; - margin-left: 0em; - -webkit-box-shadow: -1px -1px 0px 0px #bababc; - box-shadow: -1px -1px 0px 0px #bababc; -} - -/*--- Above ---*/ - -.ui.top.center.popup:before { - top: auto; - right: auto; - bottom: -0.30714286em; - left: 50%; - margin-left: -0.30714286em; -} - -.ui.top.left.popup { - margin-left: 0em; -} - -/*rtl:rename*/ - -.ui.top.left.popup:before { - bottom: -0.30714286em; - left: 1em; - top: auto; - right: auto; - margin-left: 0em; -} - -.ui.top.right.popup { - margin-right: 0em; -} - -/*rtl:rename*/ - -.ui.top.right.popup:before { - bottom: -0.30714286em; - right: 1em; - top: auto; - left: auto; - margin-left: 0em; -} - -/*--- Left Center ---*/ - -/*rtl:rename*/ - -.ui.left.center.popup:before { - top: 50%; - right: -0.30714286em; - bottom: auto; - left: auto; - margin-top: -0.30714286em; - -webkit-box-shadow: 1px -1px 0px 0px #bababc; - box-shadow: 1px -1px 0px 0px #bababc; -} - -/*--- Right Center ---*/ - -/*rtl:rename*/ - -.ui.right.center.popup:before { - top: 50%; - left: -0.30714286em; - bottom: auto; - right: auto; - margin-top: -0.30714286em; - -webkit-box-shadow: -1px 1px 0px 0px #bababc; - box-shadow: -1px 1px 0px 0px #bababc; -} - -/* Arrow Color By Location */ - -.ui.bottom.popup:before { - background: #FFFFFF; -} - -.ui.right.center.popup:before, -.ui.left.center.popup:before { - background: #FFFFFF; -} - -.ui.top.popup:before { - background: #FFFFFF; -} - -/* Inverted Arrow Color */ - -.ui.inverted.bottom.popup:before { - background: #1B1C1D; -} - -.ui.inverted.right.center.popup:before, -.ui.inverted.left.center.popup:before { - background: #1B1C1D; -} - -.ui.inverted.top.popup:before { - background: #1B1C1D; -} - -/******************************* - Coupling -*******************************/ - -/* Immediate Nested Grid */ - -.ui.popup > .ui.grid:not(.padded) { - width: calc(100% + 1.75rem); - margin: -0.7rem -0.875rem; -} - -/******************************* - States -*******************************/ - -.ui.loading.popup { - display: block; - visibility: hidden; - z-index: -1; -} - -.ui.animating.popup, -.ui.visible.popup { - display: block; -} - -.ui.visible.popup { - -webkit-transform: translateZ(0px); - transform: translateZ(0px); - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Basic ----------------*/ - -.ui.basic.popup:before { - display: none; -} - -/*-------------- - Wide ----------------*/ - -.ui.wide.popup { - max-width: 350px; -} - -.ui[class*="very wide"].popup { - max-width: 550px; -} - -@media only screen and (max-width: 767px) { - .ui.wide.popup, - .ui[class*="very wide"].popup { - max-width: 250px; - } -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.popup { - width: 100%; - max-width: none; -} - -/*-------------- - Colors ----------------*/ - -/* Inverted colors */ - -.ui.inverted.popup { - background: #1B1C1D; - color: #FFFFFF; - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.inverted.popup .header { - background-color: none; - color: #FFFFFF; -} - -.ui.inverted.popup:before { - background-color: #1B1C1D; - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -/*-------------- - Flowing ----------------*/ - -.ui.flowing.popup { - max-width: none; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.popup { - font-size: 0.78571429rem; -} - -.ui.tiny.popup { - font-size: 0.85714286rem; -} - -.ui.small.popup { - font-size: 0.92857143rem; -} - -.ui.popup { - font-size: 1rem; -} - -.ui.large.popup { - font-size: 1.14285714rem; -} - -.ui.huge.popup { - font-size: 1.42857143rem; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Progress Bar -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Progress -*******************************/ - -.ui.progress { - position: relative; - display: block; - max-width: 100%; - border: none; - margin: 1em 0em 2.5em; - -webkit-box-shadow: none; - box-shadow: none; - background: rgba(0, 0, 0, 0.1); - padding: 0em; - border-radius: 0.28571429rem; -} - -.ui.progress:first-child { - margin: 0em 0em 2.5em; -} - -.ui.progress:last-child { - margin: 0em 0em 1.5em; -} - -/******************************* - Content -*******************************/ - -/* Activity Bar */ - -.ui.progress .bar { - display: block; - line-height: 1; - position: relative; - width: 0%; - min-width: 2em; - background: #888888; - border-radius: 0.28571429rem; - -webkit-transition: width 0.1s ease, background-color 0.1s ease; - transition: width 0.1s ease, background-color 0.1s ease; -} - -/* Percent Complete */ - -.ui.progress .bar > .progress { - white-space: nowrap; - position: absolute; - width: auto; - font-size: 0.92857143em; - top: 50%; - right: 0.5em; - left: auto; - bottom: auto; - color: rgba(255, 255, 255, 0.7); - text-shadow: none; - margin-top: -0.5em; - font-weight: bold; - text-align: left; -} - -/* Label */ - -.ui.progress > .label { - position: absolute; - width: 100%; - font-size: 1em; - top: 100%; - right: auto; - left: 0%; - bottom: auto; - color: rgba(0, 0, 0, 0.87); - font-weight: bold; - text-shadow: none; - margin-top: 0.2em; - text-align: center; - -webkit-transition: color 0.4s ease; - transition: color 0.4s ease; -} - -/******************************* - Types -*******************************/ - -/* Indicating */ - -.ui.indicating.progress[data-percent^="1"] .bar, -.ui.indicating.progress[data-percent^="2"] .bar { - background-color: #D95C5C; -} - -.ui.indicating.progress[data-percent^="3"] .bar { - background-color: #EFBC72; -} - -.ui.indicating.progress[data-percent^="4"] .bar, -.ui.indicating.progress[data-percent^="5"] .bar { - background-color: #E6BB48; -} - -.ui.indicating.progress[data-percent^="6"] .bar { - background-color: #DDC928; -} - -.ui.indicating.progress[data-percent^="7"] .bar, -.ui.indicating.progress[data-percent^="8"] .bar { - background-color: #B4D95C; -} - -.ui.indicating.progress[data-percent^="9"] .bar, -.ui.indicating.progress[data-percent^="100"] .bar { - background-color: #66DA81; -} - -/* Indicating Label */ - -.ui.indicating.progress[data-percent^="1"] .label, -.ui.indicating.progress[data-percent^="2"] .label { - color: rgba(0, 0, 0, 0.87); -} - -.ui.indicating.progress[data-percent^="3"] .label { - color: rgba(0, 0, 0, 0.87); -} - -.ui.indicating.progress[data-percent^="4"] .label, -.ui.indicating.progress[data-percent^="5"] .label { - color: rgba(0, 0, 0, 0.87); -} - -.ui.indicating.progress[data-percent^="6"] .label { - color: rgba(0, 0, 0, 0.87); -} - -.ui.indicating.progress[data-percent^="7"] .label, -.ui.indicating.progress[data-percent^="8"] .label { - color: rgba(0, 0, 0, 0.87); -} - -.ui.indicating.progress[data-percent^="9"] .label, -.ui.indicating.progress[data-percent^="100"] .label { - color: rgba(0, 0, 0, 0.87); -} - -/* Single Digits */ - -.ui.indicating.progress[data-percent="1"] .bar, -.ui.indicating.progress[data-percent="2"] .bar, -.ui.indicating.progress[data-percent="3"] .bar, -.ui.indicating.progress[data-percent="4"] .bar, -.ui.indicating.progress[data-percent="5"] .bar, -.ui.indicating.progress[data-percent="6"] .bar, -.ui.indicating.progress[data-percent="7"] .bar, -.ui.indicating.progress[data-percent="8"] .bar, -.ui.indicating.progress[data-percent="9"] .bar { - background-color: #D95C5C; -} - -.ui.indicating.progress[data-percent="1"] .label, -.ui.indicating.progress[data-percent="2"] .label, -.ui.indicating.progress[data-percent="3"] .label, -.ui.indicating.progress[data-percent="4"] .label, -.ui.indicating.progress[data-percent="5"] .label, -.ui.indicating.progress[data-percent="6"] .label, -.ui.indicating.progress[data-percent="7"] .label, -.ui.indicating.progress[data-percent="8"] .label, -.ui.indicating.progress[data-percent="9"] .label { - color: rgba(0, 0, 0, 0.87); -} - -/* Indicating Success */ - -.ui.indicating.progress.success .label { - color: #1A531B; -} - -/******************************* - States -*******************************/ - -/*-------------- - Success ----------------*/ - -.ui.progress.success .bar { - background-color: #21BA45 !important; -} - -.ui.progress.success .bar, -.ui.progress.success .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.ui.progress.success > .label { - color: #1A531B; -} - -/*-------------- - Warning ----------------*/ - -.ui.progress.warning .bar { - background-color: #F2C037 !important; -} - -.ui.progress.warning .bar, -.ui.progress.warning .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.ui.progress.warning > .label { - color: #794B02; -} - -/*-------------- - Error ----------------*/ - -.ui.progress.error .bar { - background-color: #DB2828 !important; -} - -.ui.progress.error .bar, -.ui.progress.error .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -.ui.progress.error > .label { - color: #912D2B; -} - -/*-------------- - Active ----------------*/ - -.ui.active.progress .bar { - position: relative; - min-width: 2em; -} - -.ui.active.progress .bar::after { - content: ''; - opacity: 0; - position: absolute; - top: 0px; - left: 0px; - right: 0px; - bottom: 0px; - background: #FFFFFF; - border-radius: 0.28571429rem; - -webkit-animation: progress-active 2s ease infinite; - animation: progress-active 2s ease infinite; -} - -@-webkit-keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } - - 100% { - opacity: 0; - width: 100%; - } -} - -@keyframes progress-active { - 0% { - opacity: 0.3; - width: 0; - } - - 100% { - opacity: 0; - width: 100%; - } -} - -/*-------------- - Disabled ----------------*/ - -.ui.disabled.progress { - opacity: 0.35; -} - -.ui.disabled.progress .bar, -.ui.disabled.progress .bar::after { - -webkit-animation: none !important; - animation: none !important; -} - -/******************************* - Variations -*******************************/ - -/*-------------- - Inverted ----------------*/ - -.ui.inverted.progress { - background: rgba(255, 255, 255, 0.08); - border: none; -} - -.ui.inverted.progress .bar { - background: #888888; -} - -.ui.inverted.progress .bar > .progress { - color: #F9FAFB; -} - -.ui.inverted.progress > .label { - color: #FFFFFF; -} - -.ui.inverted.progress.success > .label { - color: #21BA45; -} - -.ui.inverted.progress.warning > .label { - color: #F2C037; -} - -.ui.inverted.progress.error > .label { - color: #DB2828; -} - -/*-------------- - Attached ----------------*/ - -/* bottom attached */ - -.ui.progress.attached { - background: transparent; - position: relative; - border: none; - margin: 0em; -} - -.ui.progress.attached, -.ui.progress.attached .bar { - display: block; - height: 0.2rem; - padding: 0px; - overflow: hidden; - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -.ui.progress.attached .bar { - border-radius: 0em; -} - -/* top attached */ - -.ui.progress.top.attached, -.ui.progress.top.attached .bar { - top: 0px; - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.progress.top.attached .bar { - border-radius: 0em; -} - -/* Coupling */ - -.ui.segment > .ui.attached.progress, -.ui.card > .ui.attached.progress { - position: absolute; - top: auto; - left: 0; - bottom: 100%; - width: 100%; -} - -.ui.segment > .ui.bottom.attached.progress, -.ui.card > .ui.bottom.attached.progress { - top: 100%; - bottom: auto; -} - -/*-------------- - Colors ----------------*/ - -/* Red */ - -.ui.red.progress .bar { - background-color: #DB2828; -} - -.ui.red.inverted.progress .bar { - background-color: #FF695E; -} - -/* Orange */ - -.ui.orange.progress .bar { - background-color: #F2711C; -} - -.ui.orange.inverted.progress .bar { - background-color: #FF851B; -} - -/* Yellow */ - -.ui.yellow.progress .bar { - background-color: #FBBD08; -} - -.ui.yellow.inverted.progress .bar { - background-color: #FFE21F; -} - -/* Olive */ - -.ui.olive.progress .bar { - background-color: #B5CC18; -} - -.ui.olive.inverted.progress .bar { - background-color: #D9E778; -} - -/* Green */ - -.ui.green.progress .bar { - background-color: #21BA45; -} - -.ui.green.inverted.progress .bar { - background-color: #2ECC40; -} - -/* Teal */ - -.ui.teal.progress .bar { - background-color: #00B5AD; -} - -.ui.teal.inverted.progress .bar { - background-color: #6DFFFF; -} - -/* Blue */ - -.ui.blue.progress .bar { - background-color: #2185D0; -} - -.ui.blue.inverted.progress .bar { - background-color: #54C8FF; -} - -/* Violet */ - -.ui.violet.progress .bar { - background-color: #6435C9; -} - -.ui.violet.inverted.progress .bar { - background-color: #A291FB; -} - -/* Purple */ - -.ui.purple.progress .bar { - background-color: #A333C8; -} - -.ui.purple.inverted.progress .bar { - background-color: #DC73FF; -} - -/* Pink */ - -.ui.pink.progress .bar { - background-color: #E03997; -} - -.ui.pink.inverted.progress .bar { - background-color: #FF8EDF; -} - -/* Brown */ - -.ui.brown.progress .bar { - background-color: #A5673F; -} - -.ui.brown.inverted.progress .bar { - background-color: #D67C1C; -} - -/* Grey */ - -.ui.grey.progress .bar { - background-color: #767676; -} - -.ui.grey.inverted.progress .bar { - background-color: #DCDDDE; -} - -/* Black */ - -.ui.black.progress .bar { - background-color: #1B1C1D; -} - -.ui.black.inverted.progress .bar { - background-color: #545454; -} - -/*-------------- - Sizes ----------------*/ - -.ui.tiny.progress { - font-size: 0.85714286rem; -} - -.ui.tiny.progress .bar { - height: 0.5em; -} - -.ui.small.progress { - font-size: 0.92857143rem; -} - -.ui.small.progress .bar { - height: 1em; -} - -.ui.progress { - font-size: 1rem; -} - -.ui.progress .bar { - height: 1.75em; -} - -.ui.large.progress { - font-size: 1.14285714rem; -} - -.ui.large.progress .bar { - height: 2.5em; -} - -.ui.big.progress { - font-size: 1.28571429rem; -} - -.ui.big.progress .bar { - height: 3.5em; -} - -/******************************* - Progress -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Rating -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Rating -*******************************/ - -.ui.rating { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - white-space: nowrap; - vertical-align: baseline; -} - -.ui.rating:last-child { - margin-right: 0em; -} - -/* Icon */ - -.ui.rating .icon { - padding: 0em; - margin: 0em; - text-align: center; - font-weight: normal; - font-style: normal; - -webkit-box-flex: 1; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - cursor: pointer; - width: 1.25em; - height: auto; - -webkit-transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; - transition: opacity 0.1s ease, background 0.1s ease, text-shadow 0.1s ease, color 0.1s ease; -} - -/******************************* - Types -*******************************/ - -/*------------------- - Standard ---------------------*/ - -/* Inactive Icon */ - -.ui.rating .icon { - background: transparent; - color: rgba(0, 0, 0, 0.15); -} - -/* Active Icon */ - -.ui.rating .active.icon { - background: transparent; - color: rgba(0, 0, 0, 0.85); -} - -/* Selected Icon */ - -.ui.rating .icon.selected, -.ui.rating .icon.selected.active { - background: transparent; - color: rgba(0, 0, 0, 0.87); -} - -/*------------------- - Star ---------------------*/ - -/* Inactive */ - -.ui.star.rating .icon { - width: 1.25em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none; -} - -/* Active Star */ - -.ui.star.rating .active.icon { - background: transparent !important; - color: #FFE623 !important; - text-shadow: 0px -1px 0px #DDC507, -1px 0px 0px #DDC507, 0px 1px 0px #DDC507, 1px 0px 0px #DDC507 !important; -} - -/* Selected Star */ - -.ui.star.rating .icon.selected, -.ui.star.rating .icon.selected.active { - background: transparent !important; - color: #FFCC00 !important; - text-shadow: 0px -1px 0px #E6A200, -1px 0px 0px #E6A200, 0px 1px 0px #E6A200, 1px 0px 0px #E6A200 !important; -} - -/*------------------- - Heart ---------------------*/ - -.ui.heart.rating .icon { - width: 1.4em; - height: auto; - background: transparent; - color: rgba(0, 0, 0, 0.15); - text-shadow: none !important; -} - -/* Active Heart */ - -.ui.heart.rating .active.icon { - background: transparent !important; - color: #FF6D75 !important; - text-shadow: 0px -1px 0px #CD0707, -1px 0px 0px #CD0707, 0px 1px 0px #CD0707, 1px 0px 0px #CD0707 !important; -} - -/* Selected Heart */ - -.ui.heart.rating .icon.selected, -.ui.heart.rating .icon.selected.active { - background: transparent !important; - color: #FF3000 !important; - text-shadow: 0px -1px 0px #AA0101, -1px 0px 0px #AA0101, 0px 1px 0px #AA0101, 1px 0px 0px #AA0101 !important; -} - -/******************************* - States -*******************************/ - -/*------------------- - Disabled ---------------------*/ - -/* disabled rating */ - -.ui.disabled.rating .icon { - cursor: default; -} - -/*------------------- - User Interactive ---------------------*/ - -/* Selected Rating */ - -.ui.rating.selected .active.icon { - opacity: 1; -} - -.ui.rating.selected .icon.selected, -.ui.rating .icon.selected { - opacity: 1; -} - -/******************************* - Variations -*******************************/ - -.ui.mini.rating { - font-size: 0.78571429rem; -} - -.ui.tiny.rating { - font-size: 0.85714286rem; -} - -.ui.small.rating { - font-size: 0.92857143rem; -} - -.ui.rating { - font-size: 1rem; -} - -.ui.large.rating { - font-size: 1.14285714rem; -} - -.ui.huge.rating { - font-size: 1.42857143rem; -} - -.ui.massive.rating { - font-size: 2rem; -} - -/******************************* - Theme Overrides -*******************************/ - -@font-face { - font-family: 'Rating'; - src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,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kIiRi5MI5vdUFfcni4vCBYufhJx8mn2ZepJ3i3aLeoR9fX18g3qLdwiLVAUO+yaLshWL+AQFi5GNkY+RjpCQj5KNj42PjI+LCPfAiwWPi4+Kj4mRiZCHj4aPhY2Fi4UIi/wEBYuEiYWHhoeGhoeFiIiKhoqHi4GLhI6EkQj7EvcN+xL7DQWEhYOIgouHi4eLh42EjoaPiJCHkImRi5IIDov3XRWLko2Rj5Kltq+vuKW4pbuZvYu9i7t9uHG4ca9npWCPhI2Fi4SLhYmEh4RxYGdoXnAIXnFbflmLWYtbmF6lXqZnrnG2h5KJkouRCLCLFaRkq2yxdLF0tH+4i7iLtJexorGiq6qksm64Z61goZZ3kXaLdItnfm1ycnJybX9oiwhoi22XcqRypH6pi6+LopGglp9gdWdpbl4I9xiwFYuHjIiOiI6IjoqPi4+LjoyOjo2OjY6Lj4ubkJmXl5eWmZGbi4+LjoyOjo2OjY6LjwiLj4mOiY6IjYiNh4tzi3eCenp6eoJ3i3MIDov3XRWLko2Sj5GouK+utqW3pbqYvouci5yJnIgIm6cFjY6NjI+LjIuNi42JjYqOio+JjomOiY6KjomOiY6JjoqNioyKjomMiYuHi4qLiouLCHdnbVVjQ2NDbVV3Zwh9cgWJiIiJiIuJi36SdJiIjYmOi46LjY+UlJlvl3KcdJ90oHeie6WHkYmSi5IIsIsVqlq0Z711CKGzBXqXfpqCnoKdhp6LoIuikaCWn2B1Z2luXgj3GLAVi4eMiI6IjoiOio+Lj4uOjI6OjY6NjouPi5uQmZeXl5aZkZuLj4uOjI6OjY6NjouPCIuPiY6JjoiNiI2Hi3OLd4J6enp6gneLcwji+10VoLAFtI+wmK2hrqKnqKKvdq1wp2uhCJ2rBZ1/nHycepx6mHqWeY+EjYWLhIuEiYWHhIR/gH1+fG9qaXJmeWV5Y4Jhiwi53BXb9yQFjIKMg4uEi3CDc3x1fHV3fHOBCA6L1BWL90sFi5WPlJKSkpKTj5aLCNmLBZKPmJqepJaZlZeVlY+Qj5ONl42WjpeOmI+YkZWTk5OSk46Vi5uLmYiYhZiFlIGSfgiSfo55i3WLeYd5gXgIvosFn4uchJl8mn2Seot3i3qGfIJ9jYSLhYuEi3yIfoR+i4eLh4uHi3eGen99i3CDdnt8CHt8dYNwiwhmiwV5i3mNeY95kHeRc5N1k36Ph4sIOYsFgIuDjoSShJKHlIuVCLCdFYuGjIePiI+Hj4mQi5CLj42Pj46OjY+LkIuQiZCIjoePh42Gi4aLh4mHh4eIioaLhgjUeRWUiwWNi46Lj4qOi4+KjYqOi4+Kj4mQio6KjYqNio+Kj4mQio6KjIqzfquEpIsIrosFr4uemouri5CKkYqQkY6QkI6SjpKNkouSi5KJkoiRlZWQlouYi5CKkImRiZGJj4iOCJGMkI+PlI+UjZKLkouViJODk4SSgo+CiwgmiwWLlpCalJ6UnpCbi5aLnoiYhJSFlH+QeYuGhoeDiYCJf4h/h3+IfoWBg4KHh4SCgH4Ii4qIiYiGh4aIh4mIiIiIh4eGh4aHh4eHiIiHiIeHiIiHiIeKh4mIioiLCIKLi/tLBQ6L90sVi/dLBYuVj5OSk5KSk46WiwjdiwWPi5iPoZOkk6CRnZCdj56Nn4sIq4sFpougg5x8m3yTd4txCIuJBZd8kHuLd4uHi4eLh5J+jn6LfIuEi4SJhZR9kHyLeot3hHp8fH19eoR3iwhYiwWVeI95i3mLdIh6hH6EfoKBfoV+hX2He4uBi4OPg5KFkYaTh5SHlYiTipOKk4qTiJMIiZSIkYiPgZSBl4CaeKR+moSPCD2LBYCLg4+EkoSSh5SLlQiw9zgVi4aMh4+Ij4ePiZCLkIuPjY+Pjo6Nj4uQi5CJkIiOh4+HjYaLhouHiYeHh4iKhouGCNT7OBWUiwWOi46Kj4mPio+IjoiPh4+IjoePiI+Hj4aPho6HjoiNiI6Hj4aOho6Ii4qWfpKDj4YIk4ORgY5+j36OgI1/jYCPg5CGnYuXj5GUkpSOmYuei5aGmoKfgp6GmouWCPCLBZSLlI+SkpOTjpOLlYuSiZKHlIeUho+Fi46PjY+NkY2RjJCLkIuYhpaBlY6RjZKLkgiLkomSiJKIkoaQhY6MkIyRi5CLm4aXgpOBkn6Pe4sIZosFcotrhGN9iouIioaJh4qHiomKiYqIioaKh4mHioiKiYuHioiLh4qIi4mLCIKLi/tLBQ77lIv3txWLkpCPlo0I9yOgzPcWBY6SkI+RiwiL/BL7FUcFh4mHioiLh4uIjImOiY6KjouPi4yLjYyOCKP3IyPwBYaQiZCLjwgOi/fFFYu1l6yjoqOjrZe2i5aLl4mYh5eHloWWhJaElIWShZOE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) format('woff'); - font-weight: normal; - font-style: normal; -} - -.ui.rating .icon { - font-family: 'Rating'; - line-height: 1; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - font-weight: normal; - font-style: normal; - text-align: center; -} - -/* Empty Star */ - -.ui.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.rating .active.icon:before { - content: '\f005'; -} - -/*------------------- - Star ---------------------*/ - -/* Unfilled Star */ - -.ui.star.rating .icon:before { - content: '\f005'; -} - -/* Active Star */ - -.ui.star.rating .active.icon:before { - content: '\f005'; -} - -/* Partial */ - -.ui.star.rating .partial.icon:before { - content: '\f006'; -} - -.ui.star.rating .partial.icon { - content: '\f005'; -} - -/*------------------- - Heart ---------------------*/ - -/* Empty Heart -.ui.heart.rating .icon:before { - content: '\f08a'; -} -*/ - -.ui.heart.rating .icon:before { - content: '\f004'; -} - -/* Active */ - -.ui.heart.rating .active.icon:before { - content: '\f004'; -} - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Search -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Search -*******************************/ - -.ui.search { - position: relative; -} - -.ui.search > .prompt { - margin: 0em; - outline: none; - -webkit-appearance: none; - -webkit-tap-highlight-color: rgba(255, 255, 255, 0); - text-shadow: none; - font-style: normal; - font-weight: normal; - line-height: 1.21428571em; - padding: 0.67857143em 1em; - font-size: 1em; - background: #FFFFFF; - border: 1px solid rgba(34, 36, 38, 0.15); - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: 0em 0em 0em 0em transparent inset; - box-shadow: 0em 0em 0em 0em transparent inset; - -webkit-transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; - transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease; - transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease; -} - -.ui.search .prompt { - border-radius: 500rem; -} - -/*-------------- - Icon ----------------*/ - -.ui.search .prompt ~ .search.icon { - cursor: pointer; -} - -/*-------------- - Results ----------------*/ - -.ui.search > .results { - display: none; - position: absolute; - top: 100%; - left: 0%; - -webkit-transform-origin: center top; - transform-origin: center top; - white-space: normal; - background: #FFFFFF; - margin-top: 0.5em; - width: 18em; - border-radius: 0.28571429rem; - -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15); - border: 1px solid #D4D4D5; - z-index: 998; -} - -.ui.search > .results > :first-child { - border-radius: 0.28571429rem 0.28571429rem 0em 0em; -} - -.ui.search > .results > :last-child { - border-radius: 0em 0em 0.28571429rem 0.28571429rem; -} - -/*-------------- - Result ----------------*/ - -.ui.search > .results .result { - cursor: pointer; - display: block; - overflow: hidden; - font-size: 1em; - padding: 0.85714286em 1.14285714em; - color: rgba(0, 0, 0, 0.87); - line-height: 1.33; - border-bottom: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.search > .results .result:last-child { - border-bottom: none !important; -} - -/* Image */ - -.ui.search > .results .result .image { - float: right; - overflow: hidden; - background: none; - width: 5em; - height: 3em; - border-radius: 0.25em; -} - -.ui.search > .results .result .image img { - display: block; - width: auto; - height: 100%; -} - -/*-------------- - Info ----------------*/ - -.ui.search > .results .result .image + .content { - margin: 0em 6em 0em 0em; -} - -.ui.search > .results .result .title { - margin: -0.14285714em 0em 0em; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-weight: bold; - font-size: 1em; - color: rgba(0, 0, 0, 0.85); -} - -.ui.search > .results .result .description { - margin-top: 0; - font-size: 0.92857143em; - color: rgba(0, 0, 0, 0.4); -} - -.ui.search > .results .result .price { - float: right; - color: #21BA45; -} - -/*-------------- - Message ----------------*/ - -.ui.search > .results > .message { - padding: 1em 1em; -} - -.ui.search > .results > .message .header { - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1rem; - font-weight: bold; - color: rgba(0, 0, 0, 0.87); -} - -.ui.search > .results > .message .description { - margin-top: 0.25rem; - font-size: 1em; - color: rgba(0, 0, 0, 0.87); -} - -/* View All Results */ - -.ui.search > .results > .action { - display: block; - border-top: none; - background: #F3F4F5; - padding: 0.92857143em 1em; - color: rgba(0, 0, 0, 0.87); - font-weight: bold; - text-align: center; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Focus ----------------------*/ - -.ui.search > .prompt:focus { - border-color: rgba(34, 36, 38, 0.35); - background: #FFFFFF; - color: rgba(0, 0, 0, 0.95); -} - -/*-------------------- - Loading ----------------------*/ - -.ui.loading.search .input > i.icon:before { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.loading.search .input > i.icon:after { - position: absolute; - content: ''; - top: 50%; - left: 50%; - margin: -0.64285714em 0em 0em -0.64285714em; - width: 1.28571429em; - height: 1.28571429em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/*-------------- - Hover ----------------*/ - -.ui.search > .results .result:hover, -.ui.category.search > .results .category .result:hover { - background: #F9FAFB; -} - -.ui.search .action:hover { - background: #E0E0E0; -} - -/*-------------- - Active ----------------*/ - -.ui.category.search > .results .category.active { - background: #F3F4F5; -} - -.ui.category.search > .results .category.active > .name { - color: rgba(0, 0, 0, 0.87); -} - -.ui.search > .results .result.active, -.ui.category.search > .results .category .result.active { - position: relative; - border-left-color: rgba(34, 36, 38, 0.1); - background: #F3F4F5; - -webkit-box-shadow: none; - box-shadow: none; -} - -.ui.search > .results .result.active .title { - color: rgba(0, 0, 0, 0.85); -} - -.ui.search > .results .result.active .description { - color: rgba(0, 0, 0, 0.85); -} - -/******************************* - Types -*******************************/ - -/*-------------- - Selection ----------------*/ - -.ui.search.selection .prompt { - border-radius: 0.28571429rem; -} - -/* Remove input */ - -.ui.search.selection > .icon.input > .remove.icon { - pointer-events: none; - position: absolute; - left: auto; - opacity: 0; - color: ''; - top: 0em; - right: 0em; - -webkit-transition: color 0.1s ease, opacity 0.1s ease; - transition: color 0.1s ease, opacity 0.1s ease; -} - -.ui.search.selection > .icon.input > .active.remove.icon { - cursor: pointer; - opacity: 0.8; - pointer-events: auto; -} - -.ui.search.selection > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon { - right: 1.85714em; -} - -.ui.search.selection > .icon.input > .remove.icon:hover { - opacity: 1; - color: #DB2828; -} - -/*-------------- - Category ----------------*/ - -.ui.category.search .results { - width: 28em; -} - -.ui.category.search .results.animating, -.ui.category.search .results.visible { - display: table; -} - -/* Category */ - -.ui.category.search > .results .category { - display: table-row; - background: #F3F4F5; - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: background 0.1s ease, border-color 0.1s ease; - transition: background 0.1s ease, border-color 0.1s ease; -} - -/* Last Category */ - -.ui.category.search > .results .category:last-child { - border-bottom: none; -} - -/* First / Last */ - -.ui.category.search > .results .category:first-child .name + .result { - border-radius: 0em 0.28571429rem 0em 0em; -} - -.ui.category.search > .results .category:last-child .result:last-child { - border-radius: 0em 0em 0.28571429rem 0em; -} - -/* Category Result Name */ - -.ui.category.search > .results .category > .name { - display: table-cell; - text-overflow: ellipsis; - width: 100px; - white-space: nowrap; - background: transparent; - font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif; - font-size: 1em; - padding: 0.4em 1em; - font-weight: bold; - color: rgba(0, 0, 0, 0.4); - border-bottom: 1px solid rgba(34, 36, 38, 0.1); -} - -/* Category Result */ - -.ui.category.search > .results .category .results { - display: table-cell; - background: #FFFFFF; - border-left: 1px solid rgba(34, 36, 38, 0.15); - border-bottom: 1px solid rgba(34, 36, 38, 0.1); -} - -.ui.category.search > .results .category .result { - border-bottom: 1px solid rgba(34, 36, 38, 0.1); - -webkit-transition: background 0.1s ease, border-color 0.1s ease; - transition: background 0.1s ease, border-color 0.1s ease; - padding: 0.85714286em 1.14285714em; -} - -/******************************* - Variations -*******************************/ - -/*------------------- - Left / Right ---------------------*/ - -.ui[class*="left aligned"].search > .results { - right: auto; - left: 0%; -} - -.ui[class*="right aligned"].search > .results { - right: 0%; - left: auto; -} - -/*-------------- - Fluid ----------------*/ - -.ui.fluid.search .results { - width: 100%; -} - -/*-------------- - Sizes ----------------*/ - -.ui.mini.search { - font-size: 0.78571429em; -} - -.ui.small.search { - font-size: 0.92857143em; -} - -.ui.search { - font-size: 1em; -} - -.ui.large.search { - font-size: 1.14285714em; -} - -.ui.big.search { - font-size: 1.28571429em; -} - -.ui.huge.search { - font-size: 1.42857143em; -} - -.ui.massive.search { - font-size: 1.71428571em; -} - -/*-------------- - Mobile ----------------*/ - -@media only screen and (max-width: 767px) { - .ui.search .results { - max-width: calc(100vw - 2rem); - } -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Shape -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Shape -*******************************/ - -.ui.shape { - position: relative; - vertical-align: top; - display: inline-block; - -webkit-perspective: 2000px; - perspective: 2000px; - -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; -} - -.ui.shape .sides { - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; -} - -.ui.shape .side { - opacity: 1; - width: 100%; - margin: 0em !important; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.ui.shape .side { - display: none; -} - -.ui.shape .side * { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -/******************************* - Types -*******************************/ - -.ui.cube.shape .side { - min-width: 15em; - height: 15em; - padding: 2em; - background-color: #E6E6E6; - color: rgba(0, 0, 0, 0.87); - -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); - box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); -} - -.ui.cube.shape .side > .content { - width: 100%; - height: 100%; - display: table; - text-align: center; - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; -} - -.ui.cube.shape .side > .content > div { - display: table-cell; - vertical-align: middle; - font-size: 2em; -} - -/******************************* - Variations -*******************************/ - -.ui.text.shape.animating .sides { - position: static; -} - -.ui.text.shape .side { - white-space: nowrap; -} - -.ui.text.shape .side > * { - white-space: normal; -} - -/******************************* - States -*******************************/ - -/*-------------- - Loading ----------------*/ - -.ui.loading.shape { - position: absolute; - top: -9999px; - left: -9999px; -} - -/*-------------- - Animating ----------------*/ - -.ui.shape .animating.side { - position: absolute; - top: 0px; - left: 0px; - display: block; - z-index: 100; -} - -.ui.shape .hidden.side { - opacity: 0.6; -} - -/*-------------- - CSS ----------------*/ - -.ui.shape.animating .sides { - position: absolute; -} - -.ui.shape.animating .sides { - -webkit-transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out; - transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; -} - -.ui.shape.animating .side { - -webkit-transition: opacity 0.6s ease-in-out; - transition: opacity 0.6s ease-in-out; -} - -/*-------------- - Active ----------------*/ - -.ui.shape .active.side { - display: block; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Sidebar -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Sidebar -*******************************/ - -/* Sidebar Menu */ - -.ui.sidebar { - position: fixed; - top: 0; - left: 0; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: none; - transition: none; - will-change: transform; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - visibility: hidden; - -webkit-overflow-scrolling: touch; - height: 100% !important; - max-height: 100%; - border-radius: 0em !important; - margin: 0em !important; - overflow-y: auto !important; - z-index: 102; -} - -/* GPU Layers for Child Elements */ - -.ui.sidebar > * { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -/*-------------- - Direction ----------------*/ - -.ui.left.sidebar { - right: auto; - left: 0px; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.ui.right.sidebar { - right: 0px !important; - left: auto !important; - -webkit-transform: translate3d(100%, 0%, 0); - transform: translate3d(100%, 0%, 0); -} - -.ui.top.sidebar, -.ui.bottom.sidebar { - width: 100% !important; - height: auto !important; -} - -.ui.top.sidebar { - top: 0px !important; - bottom: auto !important; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); -} - -.ui.bottom.sidebar { - top: auto !important; - bottom: 0px !important; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); -} - -/*-------------- - Pushable ----------------*/ - -.pushable { - height: 100%; - overflow-x: hidden; - padding: 0em !important; -} - -/* Whole Page */ - -body.pushable { - background: #545454 !important; -} - -/* Page Context */ - -.pushable:not(body) { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.pushable:not(body) > .ui.sidebar, -.pushable:not(body) > .fixed, -.pushable:not(body) > .pusher:after { - position: absolute; -} - -/*-------------- - Fixed ----------------*/ - -.pushable > .fixed { - position: fixed; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; - will-change: transform; - z-index: 101; -} - -/*-------------- - Page ----------------*/ - -.pushable > .pusher { - position: relative; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - overflow: hidden; - min-height: 100%; - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; - z-index: 2; -} - -body.pushable > .pusher { - background: #FFFFFF; -} - -/* Pusher should inherit background from context */ - -.pushable > .pusher { - background: inherit; -} - -/*-------------- - Dimmer ----------------*/ - -.pushable > .pusher:after { - position: fixed; - top: 0px; - right: 0px; - content: ''; - background-color: rgba(0, 0, 0, 0.4); - overflow: hidden; - opacity: 0; - -webkit-transition: opacity 500ms; - transition: opacity 500ms; - will-change: opacity; - z-index: 1000; -} - -/*-------------- - Coupling ----------------*/ - -.ui.sidebar.menu .item { - border-radius: 0em !important; -} - -/******************************* - States -*******************************/ - -/*-------------- - Dimmed ----------------*/ - -.pushable > .pusher.dimmed:after { - width: 100% !important; - height: 100% !important; - opacity: 1 !important; -} - -/*-------------- - Animating ----------------*/ - -.ui.animating.sidebar { - visibility: visible; -} - -/*-------------- - Visible ----------------*/ - -.ui.visible.sidebar { - visibility: visible; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/* Shadow Direction */ - -.ui.left.visible.sidebar, -.ui.right.visible.sidebar { - -webkit-box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); -} - -.ui.top.visible.sidebar, -.ui.bottom.visible.sidebar { - -webkit-box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); - box-shadow: 0px 0px 20px rgba(34, 36, 38, 0.15); -} - -/* Visible On Load */ - -.ui.visible.left.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .pusher { - -webkit-transform: translate3d(260px, 0, 0); - transform: translate3d(260px, 0, 0); -} - -.ui.visible.right.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-260px, 0, 0); - transform: translate3d(-260px, 0, 0); -} - -.ui.visible.top.sidebar ~ .fixed, -.ui.visible.top.sidebar ~ .pusher { - -webkit-transform: translate3d(0, 36px, 0); - transform: translate3d(0, 36px, 0); -} - -.ui.visible.bottom.sidebar ~ .fixed, -.ui.visible.bottom.sidebar ~ .pusher { - -webkit-transform: translate3d(0, -36px, 0); - transform: translate3d(0, -36px, 0); -} - -/* opposite sides visible forces content overlay */ - -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .fixed, -.ui.visible.left.sidebar ~ .ui.visible.right.sidebar ~ .pusher, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .fixed, -.ui.visible.right.sidebar ~ .ui.visible.left.sidebar ~ .pusher { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/*-------------- - iOS ----------------*/ - -/******************************* - Variations -*******************************/ - -/*-------------- - Width ----------------*/ - -/* Left / Right */ - -.ui.thin.left.sidebar, -.ui.thin.right.sidebar { - width: 150px; -} - -.ui[class*="very thin"].left.sidebar, -.ui[class*="very thin"].right.sidebar { - width: 60px; -} - -.ui.left.sidebar, -.ui.right.sidebar { - width: 260px; -} - -.ui.wide.left.sidebar, -.ui.wide.right.sidebar { - width: 350px; -} - -.ui[class*="very wide"].left.sidebar, -.ui[class*="very wide"].right.sidebar { - width: 475px; -} - -/* Left Visible */ - -.ui.visible.thin.left.sidebar ~ .fixed, -.ui.visible.thin.left.sidebar ~ .pusher { - -webkit-transform: translate3d(150px, 0, 0); - transform: translate3d(150px, 0, 0); -} - -.ui.visible[class*="very thin"].left.sidebar ~ .fixed, -.ui.visible[class*="very thin"].left.sidebar ~ .pusher { - -webkit-transform: translate3d(60px, 0, 0); - transform: translate3d(60px, 0, 0); -} - -.ui.visible.wide.left.sidebar ~ .fixed, -.ui.visible.wide.left.sidebar ~ .pusher { - -webkit-transform: translate3d(350px, 0, 0); - transform: translate3d(350px, 0, 0); -} - -.ui.visible[class*="very wide"].left.sidebar ~ .fixed, -.ui.visible[class*="very wide"].left.sidebar ~ .pusher { - -webkit-transform: translate3d(475px, 0, 0); - transform: translate3d(475px, 0, 0); -} - -/* Right Visible */ - -.ui.visible.thin.right.sidebar ~ .fixed, -.ui.visible.thin.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-150px, 0, 0); - transform: translate3d(-150px, 0, 0); -} - -.ui.visible[class*="very thin"].right.sidebar ~ .fixed, -.ui.visible[class*="very thin"].right.sidebar ~ .pusher { - -webkit-transform: translate3d(-60px, 0, 0); - transform: translate3d(-60px, 0, 0); -} - -.ui.visible.wide.right.sidebar ~ .fixed, -.ui.visible.wide.right.sidebar ~ .pusher { - -webkit-transform: translate3d(-350px, 0, 0); - transform: translate3d(-350px, 0, 0); -} - -.ui.visible[class*="very wide"].right.sidebar ~ .fixed, -.ui.visible[class*="very wide"].right.sidebar ~ .pusher { - -webkit-transform: translate3d(-475px, 0, 0); - transform: translate3d(-475px, 0, 0); -} - -/******************************* - Animations -*******************************/ - -/*-------------- - Overlay ----------------*/ - -/* Set-up */ - -.ui.overlay.sidebar { - z-index: 102; -} - -/* Initial */ - -.ui.left.overlay.sidebar { - -webkit-transform: translate3d(-100%, 0%, 0); - transform: translate3d(-100%, 0%, 0); -} - -.ui.right.overlay.sidebar { - -webkit-transform: translate3d(100%, 0%, 0); - transform: translate3d(100%, 0%, 0); -} - -.ui.top.overlay.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.overlay.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); - transform: translate3d(0%, 100%, 0); -} - -/* Animation */ - -.animating.ui.overlay.sidebar, -.ui.visible.overlay.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; -} - -/* End - Sidebar */ - -.ui.visible.left.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.right.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.top.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); - transform: translate3d(0%, 0%, 0); -} - -.ui.visible.bottom.overlay.sidebar { - -webkit-transform: translate3d(0%, 0%, 0); - transform: translate3d(0%, 0%, 0); -} - -/* End - Pusher */ - -.ui.visible.overlay.sidebar ~ .fixed, -.ui.visible.overlay.sidebar ~ .pusher { - -webkit-transform: none !important; - transform: none !important; -} - -/*-------------- - Push ----------------*/ - -/* Initial */ - -.ui.push.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; - z-index: 102; -} - -/* Sidebar - Initial */ - -.ui.left.push.sidebar { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.ui.right.push.sidebar { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); -} - -.ui.top.push.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.push.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); - transform: translate3d(0%, 100%, 0); -} - -/* End */ - -.ui.visible.push.sidebar { - -webkit-transform: translate3d(0%, 0, 0); - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Uncover ----------------*/ - -/* Initial */ - -.ui.uncover.sidebar { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - z-index: 1; -} - -/* End */ - -.ui.visible.uncover.sidebar { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; -} - -/*-------------- - Slide Along ----------------*/ - -/* Initial */ - -.ui.slide.along.sidebar { - z-index: 1; -} - -/* Sidebar - Initial */ - -.ui.left.slide.along.sidebar { - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); -} - -.ui.right.slide.along.sidebar { - -webkit-transform: translate3d(50%, 0, 0); - transform: translate3d(50%, 0, 0); -} - -.ui.top.slide.along.sidebar { - -webkit-transform: translate3d(0, -50%, 0); - transform: translate3d(0, -50%, 0); -} - -.ui.bottom.slide.along.sidebar { - -webkit-transform: translate3d(0%, 50%, 0); - transform: translate3d(0%, 50%, 0); -} - -/* Animation */ - -.ui.animating.slide.along.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; -} - -/* End */ - -.ui.visible.slide.along.sidebar { - -webkit-transform: translate3d(0%, 0, 0); - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Slide Out ----------------*/ - -/* Initial */ - -.ui.slide.out.sidebar { - z-index: 1; -} - -/* Sidebar - Initial */ - -.ui.left.slide.out.sidebar { - -webkit-transform: translate3d(50%, 0, 0); - transform: translate3d(50%, 0, 0); -} - -.ui.right.slide.out.sidebar { - -webkit-transform: translate3d(-50%, 0, 0); - transform: translate3d(-50%, 0, 0); -} - -.ui.top.slide.out.sidebar { - -webkit-transform: translate3d(0%, 50%, 0); - transform: translate3d(0%, 50%, 0); -} - -.ui.bottom.slide.out.sidebar { - -webkit-transform: translate3d(0%, -50%, 0); - transform: translate3d(0%, -50%, 0); -} - -/* Animation */ - -.ui.animating.slide.out.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; -} - -/* End */ - -.ui.visible.slide.out.sidebar { - -webkit-transform: translate3d(0%, 0, 0); - transform: translate3d(0%, 0, 0); -} - -/*-------------- - Scale Down ----------------*/ - -/* Initial */ - -.ui.scale.down.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; - z-index: 102; -} - -/* Sidebar - Initial */ - -.ui.left.scale.down.sidebar { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); -} - -.ui.right.scale.down.sidebar { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); -} - -.ui.top.scale.down.sidebar { - -webkit-transform: translate3d(0%, -100%, 0); - transform: translate3d(0%, -100%, 0); -} - -.ui.bottom.scale.down.sidebar { - -webkit-transform: translate3d(0%, 100%, 0); - transform: translate3d(0%, 100%, 0); -} - -/* Pusher - Initial */ - -.ui.scale.down.left.sidebar ~ .pusher { - -webkit-transform-origin: 75% 50%; - transform-origin: 75% 50%; -} - -.ui.scale.down.right.sidebar ~ .pusher { - -webkit-transform-origin: 25% 50%; - transform-origin: 25% 50%; -} - -.ui.scale.down.top.sidebar ~ .pusher { - -webkit-transform-origin: 50% 75%; - transform-origin: 50% 75%; -} - -.ui.scale.down.bottom.sidebar ~ .pusher { - -webkit-transform-origin: 50% 25%; - transform-origin: 50% 25%; -} - -/* Animation */ - -.ui.animating.scale.down > .visible.ui.sidebar { - -webkit-transition: -webkit-transform 500ms ease; - transition: -webkit-transform 500ms ease; - transition: transform 500ms ease; - transition: transform 500ms ease, -webkit-transform 500ms ease; -} - -.ui.visible.scale.down.sidebar ~ .pusher, -.ui.animating.scale.down.sidebar ~ .pusher { - display: block !important; - width: 100%; - height: 100%; - overflow: hidden !important; -} - -/* End */ - -.ui.visible.scale.down.sidebar { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -.ui.visible.scale.down.sidebar ~ .pusher { - -webkit-transform: scale(0.75); - transform: scale(0.75); -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Sticky -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Sticky -*******************************/ - -.ui.sticky { - position: static; - -webkit-transition: none; - transition: none; - z-index: 800; -} - -/******************************* - States -*******************************/ - -/* Bound */ - -.ui.sticky.bound { - position: absolute; - left: auto; - right: auto; -} - -/* Fixed */ - -.ui.sticky.fixed { - position: fixed; - left: auto; - right: auto; -} - -/* Bound/Fixed Position */ - -.ui.sticky.bound.top, -.ui.sticky.fixed.top { - top: 0px; - bottom: auto; -} - -.ui.sticky.bound.bottom, -.ui.sticky.fixed.bottom { - top: auto; - bottom: 0px; -} - -/******************************* - Types -*******************************/ - -.ui.native.sticky { - position: -webkit-sticky; - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; -} - -/******************************* - Theme Overrides -*******************************/ - -/******************************* - Site Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Tab -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - UI Tabs -*******************************/ - -.ui.tab { - display: none; -} - -/******************************* - States -*******************************/ - -/*-------------------- - Active ----------------------*/ - -.ui.tab.active, -.ui.tab.open { - display: block; -} - -/*-------------------- - Loading ----------------------*/ - -.ui.tab.loading { - position: relative; - overflow: hidden; - display: block; - min-height: 250px; -} - -.ui.tab.loading * { - position: relative !important; - left: -10000px !important; -} - -.ui.tab.loading:before, -.ui.tab.loading.segment:before { - position: absolute; - content: ''; - top: 100px; - left: 50%; - margin: -1.25em 0em 0em -1.25em; - width: 2.5em; - height: 2.5em; - border-radius: 500rem; - border: 0.2em solid rgba(0, 0, 0, 0.1); -} - -.ui.tab.loading:after, -.ui.tab.loading.segment:after { - position: absolute; - content: ''; - top: 100px; - left: 50%; - margin: -1.25em 0em 0em -1.25em; - width: 2.5em; - height: 2.5em; - -webkit-animation: button-spin 0.6s linear; - animation: button-spin 0.6s linear; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - border-radius: 500rem; - border-color: #767676 transparent transparent; - border-style: solid; - border-width: 0.2em; - -webkit-box-shadow: 0px 0px 0px 1px transparent; - box-shadow: 0px 0px 0px 1px transparent; -} - -/******************************* - Tab Overrides -*******************************/ - -/******************************* - User Overrides -*******************************/ -/*! -* # Semantic UI 2.3.0 - Transition -* http://github.com/semantic-org/semantic-ui/ -* -* -* Released under the MIT license -* http://opensource.org/licenses/MIT -* -*/ - -/******************************* - Transitions -*******************************/ - -.transition { - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - -webkit-animation-duration: 300ms; - animation-duration: 300ms; - -webkit-animation-timing-function: ease; - animation-timing-function: ease; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -/******************************* - States -*******************************/ - -/* Animating */ - -.animating.transition { - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - visibility: visible !important; -} - -/* Loading */ - -.loading.transition { - position: absolute; - top: -99999px; - left: -99999px; -} - -/* Hidden */ - -.hidden.transition { - display: none; - visibility: hidden; -} - -/* Visible */ - -.visible.transition { - display: block !important; - visibility: visible !important; - /* backface-visibility: @backfaceVisibility; - transform: @use3DAcceleration;*/ -} - -/* Disabled */ - -.disabled.transition { - -webkit-animation-play-state: paused; - animation-play-state: paused; -} - -/******************************* - Variations -*******************************/ - -.looping.transition { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} - -/******************************* - Transitions -*******************************/ - -/* - Some transitions adapted from Animate CSS - https://github.com/daneden/animate.css - - Additional transitions adapted from Glide - by Nick Pettit - https://github.com/nickpettit/glide -*/ - -/*-------------- - Browse ----------------*/ - -.transition.browse { - -webkit-animation-duration: 500ms; - animation-duration: 500ms; -} - -.transition.browse.in { - -webkit-animation-name: browseIn; - animation-name: browseIn; -} - -.transition.browse.out, -.transition.browse.left.out { - -webkit-animation-name: browseOutLeft; - animation-name: browseOutLeft; -} - -.transition.browse.right.out { - -webkit-animation-name: browseOutRight; - animation-name: browseOutRight; -} - -/* In */ - -@-webkit-keyframes browseIn { - 0% { - -webkit-transform: scale(0.8) translateZ(0px); - transform: scale(0.8) translateZ(0px); - z-index: -1; - } - - 10% { - -webkit-transform: scale(0.8) translateZ(0px); - transform: scale(0.8) translateZ(0px); - z-index: -1; - opacity: 0.7; - } - - 80% { - -webkit-transform: scale(1.05) translateZ(0px); - transform: scale(1.05) translateZ(0px); - opacity: 1; - z-index: 999; - } - - 100% { - -webkit-transform: scale(1) translateZ(0px); - transform: scale(1) translateZ(0px); - z-index: 999; - } -} - -@keyframes browseIn { - 0% { - -webkit-transform: scale(0.8) translateZ(0px); - transform: scale(0.8) translateZ(0px); - z-index: -1; - } - - 10% { - -webkit-transform: scale(0.8) translateZ(0px); - transform: scale(0.8) translateZ(0px); - z-index: -1; - opacity: 0.7; - } - - 80% { - -webkit-transform: scale(1.05) translateZ(0px); - transform: scale(1.05) translateZ(0px); - opacity: 1; - z-index: 999; - } - - 100% { - -webkit-transform: scale(1) translateZ(0px); - transform: scale(1) translateZ(0px); - z-index: 999; - } -} - -/* Out */ - -@-webkit-keyframes browseOutLeft { - 0% { - z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: -1; - -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: -1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -@keyframes browseOutLeft { - 0% { - z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: -1; - -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: -1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -@-webkit-keyframes browseOutRight { - 0% { - z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: 1; - -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: 1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -@keyframes browseOutRight { - 0% { - z-index: 999; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg); - transform: translateX(0%) rotateY(0deg) rotateX(0deg); - } - - 50% { - z-index: 1; - -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); - } - - 80% { - opacity: 1; - } - - 100% { - z-index: 1; - -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px); - opacity: 0; - } -} - -/*-------------- - Drop ----------------*/ - -.drop.transition { - -webkit-transform-origin: top center; - transform-origin: top center; - -webkit-animation-duration: 400ms; - animation-duration: 400ms; - -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); - animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); -} - -.drop.transition.in { - -webkit-animation-name: dropIn; - animation-name: dropIn; -} - -.drop.transition.out { - -webkit-animation-name: dropOut; - animation-name: dropOut; -} - -/* Drop */ - -@-webkit-keyframes dropIn { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes dropIn { - 0% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@-webkit-keyframes dropOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } -} - -@keyframes dropOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0); - transform: scale(0); - } -} - -/*-------------- - Fade ----------------*/ - -.transition.fade.in { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -.transition[class*="fade up"].in { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -.transition[class*="fade down"].in { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -.transition[class*="fade left"].in { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -.transition[class*="fade right"].in { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -.transition.fade.out { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -.transition[class*="fade up"].out { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -.transition[class*="fade down"].out { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -.transition[class*="fade left"].out { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -.transition[class*="fade right"].out { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -/* In */ - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(10%); - transform: translateY(10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(10%); - transform: translateY(10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } -} - -@-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-10%); - transform: translateY(-10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } -} - -@-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(10%); - transform: translateX(10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(10%); - transform: translateX(10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(-10%); - transform: translateX(-10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(-10%); - transform: translateX(-10%); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -/* Out */ - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(5%); - transform: translateY(5%); - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(5%); - transform: translateY(5%); - } -} - -@-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-5%); - transform: translateY(-5%); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0%); - transform: translateY(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-5%); - transform: translateY(-5%); - } -} - -@-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(5%); - transform: translateX(5%); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(5%); - transform: translateX(5%); - } -} - -@-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-5%); - transform: translateX(-5%); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-5%); - transform: translateX(-5%); - } -} - -/*-------------- - Flips ----------------*/ - -.flip.transition.in, -.flip.transition.out { - -webkit-animation-duration: 600ms; - animation-duration: 600ms; -} - -.horizontal.flip.transition.in { - -webkit-animation-name: horizontalFlipIn; - animation-name: horizontalFlipIn; -} - -.horizontal.flip.transition.out { - -webkit-animation-name: horizontalFlipOut; - animation-name: horizontalFlipOut; -} - -.vertical.flip.transition.in { - -webkit-animation-name: verticalFlipIn; - animation-name: verticalFlipIn; -} - -.vertical.flip.transition.out { - -webkit-animation-name: verticalFlipOut; - animation-name: verticalFlipOut; -} - -/* In */ - -@-webkit-keyframes horizontalFlipIn { - 0% { - -webkit-transform: perspective(2000px) rotateY(-90deg); - transform: perspective(2000px) rotateY(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform: perspective(2000px) rotateY(0deg); - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } -} - -@keyframes horizontalFlipIn { - 0% { - -webkit-transform: perspective(2000px) rotateY(-90deg); - transform: perspective(2000px) rotateY(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform: perspective(2000px) rotateY(0deg); - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } -} - -@-webkit-keyframes verticalFlipIn { - 0% { - -webkit-transform: perspective(2000px) rotateX(-90deg); - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform: perspective(2000px) rotateX(0deg); - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } -} - -@keyframes verticalFlipIn { - 0% { - -webkit-transform: perspective(2000px) rotateX(-90deg); - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform: perspective(2000px) rotateX(0deg); - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } -} - -/* Out */ - -@-webkit-keyframes horizontalFlipOut { - 0% { - -webkit-transform: perspective(2000px) rotateY(0deg); - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(2000px) rotateY(90deg); - transform: perspective(2000px) rotateY(90deg); - opacity: 0; - } -} - -@keyframes horizontalFlipOut { - 0% { - -webkit-transform: perspective(2000px) rotateY(0deg); - transform: perspective(2000px) rotateY(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(2000px) rotateY(90deg); - transform: perspective(2000px) rotateY(90deg); - opacity: 0; - } -} - -@-webkit-keyframes verticalFlipOut { - 0% { - -webkit-transform: perspective(2000px) rotateX(0deg); - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(2000px) rotateX(-90deg); - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } -} - -@keyframes verticalFlipOut { - 0% { - -webkit-transform: perspective(2000px) rotateX(0deg); - transform: perspective(2000px) rotateX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(2000px) rotateX(-90deg); - transform: perspective(2000px) rotateX(-90deg); - opacity: 0; - } -} - -/*-------------- - Scale ----------------*/ - -.scale.transition.in { - -webkit-animation-name: scaleIn; - animation-name: scaleIn; -} - -.scale.transition.out { - -webkit-animation-name: scaleOut; - animation-name: scaleOut; -} - -@-webkit-keyframes scaleIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes scaleIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -/* Out */ - -@-webkit-keyframes scaleOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.9); - transform: scale(0.9); - } -} - -@keyframes scaleOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.9); - transform: scale(0.9); - } -} - -/*-------------- - Fly ----------------*/ - -/* Inward */ - -.transition.fly { - -webkit-animation-duration: 0.6s; - animation-duration: 0.6s; - -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -} - -.transition.fly.in { - -webkit-animation-name: flyIn; - animation-name: flyIn; -} - -.transition[class*="fly up"].in { - -webkit-animation-name: flyInUp; - animation-name: flyInUp; -} - -.transition[class*="fly down"].in { - -webkit-animation-name: flyInDown; - animation-name: flyInDown; -} - -.transition[class*="fly left"].in { - -webkit-animation-name: flyInLeft; - animation-name: flyInLeft; -} - -.transition[class*="fly right"].in { - -webkit-animation-name: flyInRight; - animation-name: flyInRight; -} - -/* Outward */ - -.transition.fly.out { - -webkit-animation-name: flyOut; - animation-name: flyOut; -} - -.transition[class*="fly up"].out { - -webkit-animation-name: flyOutUp; - animation-name: flyOutUp; -} - -.transition[class*="fly down"].out { - -webkit-animation-name: flyOutDown; - animation-name: flyOutDown; -} - -.transition[class*="fly left"].out { - -webkit-animation-name: flyOutLeft; - animation-name: flyOutLeft; -} - -.transition[class*="fly right"].out { - -webkit-animation-name: flyOutRight; - animation-name: flyOutRight; -} - -/* In */ - -@-webkit-keyframes flyIn { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - 100% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes flyIn { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - 100% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@-webkit-keyframes flyInUp { - 0% { - opacity: 0; - -webkit-transform: translate3d(0, 1500px, 0); - transform: translate3d(0, 1500px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes flyInUp { - 0% { - opacity: 0; - -webkit-transform: translate3d(0, 1500px, 0); - transform: translate3d(0, 1500px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@-webkit-keyframes flyInDown { - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -1500px, 0); - transform: translate3d(0, -1500px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes flyInDown { - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -1500px, 0); - transform: translate3d(0, -1500px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@-webkit-keyframes flyInLeft { - 0% { - opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); - transform: translate3d(1500px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes flyInLeft { - 0% { - opacity: 0; - -webkit-transform: translate3d(1500px, 0, 0); - transform: translate3d(1500px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@-webkit-keyframes flyInRight { - 0% { - opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); - transform: translate3d(-1500px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes flyInRight { - 0% { - opacity: 0; - -webkit-transform: translate3d(-1500px, 0, 0); - transform: translate3d(-1500px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -/* Out */ - -@-webkit-keyframes flyOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} - -@keyframes flyOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} - -@-webkit-keyframes flyOutUp { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -@keyframes flyOutUp { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -@-webkit-keyframes flyOutDown { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -@keyframes flyOutDown { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -@-webkit-keyframes flyOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -@keyframes flyOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -@-webkit-keyframes flyOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -@keyframes flyOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -/*-------------- - Slide ----------------*/ - -.transition.slide.in, -.transition[class*="slide down"].in { - -webkit-animation-name: slideInY; - animation-name: slideInY; - -webkit-transform-origin: top center; - transform-origin: top center; -} - -.transition[class*="slide up"].in { - -webkit-animation-name: slideInY; - animation-name: slideInY; - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} - -.transition[class*="slide left"].in { - -webkit-animation-name: slideInX; - animation-name: slideInX; - -webkit-transform-origin: center right; - transform-origin: center right; -} - -.transition[class*="slide right"].in { - -webkit-animation-name: slideInX; - animation-name: slideInX; - -webkit-transform-origin: center left; - transform-origin: center left; -} - -.transition.slide.out, -.transition[class*="slide down"].out { - -webkit-animation-name: slideOutY; - animation-name: slideOutY; - -webkit-transform-origin: top center; - transform-origin: top center; -} - -.transition[class*="slide up"].out { - -webkit-animation-name: slideOutY; - animation-name: slideOutY; - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} - -.transition[class*="slide left"].out { - -webkit-animation-name: slideOutX; - animation-name: slideOutX; - -webkit-transform-origin: center right; - transform-origin: center right; -} - -.transition[class*="slide right"].out { - -webkit-animation-name: slideOutX; - animation-name: slideOutX; - -webkit-transform-origin: center left; - transform-origin: center left; -} - -/* In */ - -@-webkit-keyframes slideInY { - 0% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } - - 100% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } -} - -@keyframes slideInY { - 0% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } - - 100% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } -} - -@-webkit-keyframes slideInX { - 0% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } - - 100% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } -} - -@keyframes slideInX { - 0% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } - - 100% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } -} - -/* Out */ - -@-webkit-keyframes slideOutY { - 0% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } - - 100% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } -} - -@keyframes slideOutY { - 0% { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - } - - 100% { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); - } -} - -@-webkit-keyframes slideOutX { - 0% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } - - 100% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } -} - -@keyframes slideOutX { - 0% { - opacity: 1; - -webkit-transform: scaleX(1); - transform: scaleX(1); - } - - 100% { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); - } -} - -/*-------------- - Swing ----------------*/ - -.transition.swing { - -webkit-animation-duration: 800ms; - animation-duration: 800ms; -} - -.transition[class*="swing down"].in { - -webkit-animation-name: swingInX; - animation-name: swingInX; - -webkit-transform-origin: top center; - transform-origin: top center; -} - -.transition[class*="swing up"].in { - -webkit-animation-name: swingInX; - animation-name: swingInX; - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} - -.transition[class*="swing left"].in { - -webkit-animation-name: swingInY; - animation-name: swingInY; - -webkit-transform-origin: center right; - transform-origin: center right; -} - -.transition[class*="swing right"].in { - -webkit-animation-name: swingInY; - animation-name: swingInY; - -webkit-transform-origin: center left; - transform-origin: center left; -} - -.transition.swing.out, -.transition[class*="swing down"].out { - -webkit-animation-name: swingOutX; - animation-name: swingOutX; - -webkit-transform-origin: top center; - transform-origin: top center; -} - -.transition[class*="swing up"].out { - -webkit-animation-name: swingOutX; - animation-name: swingOutX; - -webkit-transform-origin: bottom center; - transform-origin: bottom center; -} - -.transition[class*="swing left"].out { - -webkit-animation-name: swingOutY; - animation-name: swingOutY; - -webkit-transform-origin: center right; - transform-origin: center right; -} - -.transition[class*="swing right"].out { - -webkit-animation-name: swingOutY; - animation-name: swingOutY; - -webkit-transform-origin: center left; - transform-origin: center left; -} - -/* In */ - -@-webkit-keyframes swingInX { - 0% { - -webkit-transform: perspective(1000px) rotateX(90deg); - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(1000px) rotateX(-30deg); - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 60% { - -webkit-transform: perspective(1000px) rotateX(15deg); - transform: perspective(1000px) rotateX(15deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); - transform: perspective(1000px) rotateX(-7.5deg); - } - - 100% { - -webkit-transform: perspective(1000px) rotateX(0deg); - transform: perspective(1000px) rotateX(0deg); - } -} - -@keyframes swingInX { - 0% { - -webkit-transform: perspective(1000px) rotateX(90deg); - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(1000px) rotateX(-30deg); - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 60% { - -webkit-transform: perspective(1000px) rotateX(15deg); - transform: perspective(1000px) rotateX(15deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); - transform: perspective(1000px) rotateX(-7.5deg); - } - - 100% { - -webkit-transform: perspective(1000px) rotateX(0deg); - transform: perspective(1000px) rotateX(0deg); - } -} - -@-webkit-keyframes swingInY { - 0% { - -webkit-transform: perspective(1000px) rotateY(-90deg); - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(1000px) rotateY(30deg); - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 60% { - -webkit-transform: perspective(1000px) rotateY(-17.5deg); - transform: perspective(1000px) rotateY(-17.5deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); - transform: perspective(1000px) rotateY(7.5deg); - } - - 100% { - -webkit-transform: perspective(1000px) rotateY(0deg); - transform: perspective(1000px) rotateY(0deg); - } -} - -@keyframes swingInY { - 0% { - -webkit-transform: perspective(1000px) rotateY(-90deg); - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(1000px) rotateY(30deg); - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 60% { - -webkit-transform: perspective(1000px) rotateY(-17.5deg); - transform: perspective(1000px) rotateY(-17.5deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); - transform: perspective(1000px) rotateY(7.5deg); - } - - 100% { - -webkit-transform: perspective(1000px) rotateY(0deg); - transform: perspective(1000px) rotateY(0deg); - } -} - -/* Out */ - -@-webkit-keyframes swingOutX { - 0% { - -webkit-transform: perspective(1000px) rotateX(0deg); - transform: perspective(1000px) rotateX(0deg); - } - - 40% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); - transform: perspective(1000px) rotateX(-7.5deg); - } - - 60% { - -webkit-transform: perspective(1000px) rotateX(17.5deg); - transform: perspective(1000px) rotateX(17.5deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateX(-30deg); - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(1000px) rotateX(90deg); - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } -} - -@keyframes swingOutX { - 0% { - -webkit-transform: perspective(1000px) rotateX(0deg); - transform: perspective(1000px) rotateX(0deg); - } - - 40% { - -webkit-transform: perspective(1000px) rotateX(-7.5deg); - transform: perspective(1000px) rotateX(-7.5deg); - } - - 60% { - -webkit-transform: perspective(1000px) rotateX(17.5deg); - transform: perspective(1000px) rotateX(17.5deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateX(-30deg); - transform: perspective(1000px) rotateX(-30deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(1000px) rotateX(90deg); - transform: perspective(1000px) rotateX(90deg); - opacity: 0; - } -} - -@-webkit-keyframes swingOutY { - 0% { - -webkit-transform: perspective(1000px) rotateY(0deg); - transform: perspective(1000px) rotateY(0deg); - } - - 40% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); - transform: perspective(1000px) rotateY(7.5deg); - } - - 60% { - -webkit-transform: perspective(1000px) rotateY(-10deg); - transform: perspective(1000px) rotateY(-10deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateY(30deg); - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(1000px) rotateY(-90deg); - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } -} - -@keyframes swingOutY { - 0% { - -webkit-transform: perspective(1000px) rotateY(0deg); - transform: perspective(1000px) rotateY(0deg); - } - - 40% { - -webkit-transform: perspective(1000px) rotateY(7.5deg); - transform: perspective(1000px) rotateY(7.5deg); - } - - 60% { - -webkit-transform: perspective(1000px) rotateY(-10deg); - transform: perspective(1000px) rotateY(-10deg); - } - - 80% { - -webkit-transform: perspective(1000px) rotateY(30deg); - transform: perspective(1000px) rotateY(30deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(1000px) rotateY(-90deg); - transform: perspective(1000px) rotateY(-90deg); - opacity: 0; - } -} - -/*-------------- - Zoom ----------------*/ - -.transition.zoom.in { - -webkit-animation-name: zoomIn; - animation-name: zoomIn; -} - -.transition.zoom.out { - -webkit-animation-name: zoomOut; - animation-name: zoomOut; -} - -@-webkit-keyframes zoomIn { - 0% { - opacity: 1; - -webkit-transform: scale(0); - transform: scale(0); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes zoomIn { - 0% { - opacity: 1; - -webkit-transform: scale(0); - transform: scale(0); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@-webkit-keyframes zoomOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 1; - -webkit-transform: scale(0); - transform: scale(0); - } -} - -@keyframes zoomOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - opacity: 1; - -webkit-transform: scale(0); - transform: scale(0); - } -} - -/******************************* - Static Animations -*******************************/ - -/*-------------- - Emphasis ----------------*/ - -.flash.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: flash; - animation-name: flash; -} - -.shake.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: shake; - animation-name: shake; -} - -.bounce.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: bounce; - animation-name: bounce; -} - -.tada.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: tada; - animation-name: tada; -} - -.pulse.transition { - -webkit-animation-duration: 500ms; - animation-duration: 500ms; - -webkit-animation-name: pulse; - animation-name: pulse; -} - -.jiggle.transition { - -webkit-animation-duration: 750ms; - animation-duration: 750ms; - -webkit-animation-name: jiggle; - animation-name: jiggle; -} - -.transition.glow { - -webkit-animation-duration: 2000ms; - animation-duration: 2000ms; - -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); - animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); -} - -.transition.glow { - -webkit-animation-name: glow; - animation-name: glow; -} - -/* Flash */ - -@-webkit-keyframes flash { - 0%, 50%, 100% { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -@keyframes flash { - 0%, 50%, 100% { - opacity: 1; - } - - 25%, 75% { - opacity: 0; - } -} - -/* Shake */ - -@-webkit-keyframes shake { - 0%, 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 20%, 40%, 60%, 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -@keyframes shake { - 0%, 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 10%, 30%, 50%, 70%, 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 20%, 40%, 60%, 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -/* Bounce */ - -@-webkit-keyframes bounce { - 0%, 20%, 50%, 80%, 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -@keyframes bounce { - 0%, 20%, 50%, 80%, 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -/* Tada */ - -@-webkit-keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - - 30%, 50%, 70%, 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - - 40%, 60%, 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -@keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 10%, 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - - 30%, 50%, 70%, 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - - 40%, 60%, 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -/* Pulse */ - -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 50% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} - -@keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 50% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} - -/* Jiggle */ - -@-webkit-keyframes jiggle { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes jiggle { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -/* Glow */ - -@-webkit-keyframes glow { - 0% { - background-color: #FCFCFD; - } - - 30% { - background-color: #FFF6CD; - } - - 100% { - background-color: #FCFCFD; - } -} - -@keyframes glow { - 0% { - background-color: #FCFCFD; - } - - 30% { - background-color: #FFF6CD; - } - - 100% { - background-color: #FCFCFD; - } -} - -/******************************* - Site Overrides -*******************************/ diff --git a/front/src/semantic/themes/default/assets/fonts/icons.eot b/front/src/semantic/themes/default/assets/fonts/icons.eot deleted file mode 100644 index 769e6fabef464631c52fffb35dcf41d2d1da6c18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218340 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 diff --git a/front/src/semantic/themes/default/assets/fonts/icons.otf b/front/src/semantic/themes/default/assets/fonts/icons.otf deleted file mode 100644 index f7936cc1e789eea5438d576d6b12de20191da09d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 93888 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 z -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 E0UHWiZ2$lO diff --git a/front/src/semantic/themes/default/assets/fonts/icons.svg b/front/src/semantic/themes/default/assets/fonts/icons.svg deleted file mode 100644 index 6a09bb196..000000000 --- a/front/src/semantic/themes/default/assets/fonts/icons.svg +++ /dev/null @@ -1,947 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/front/src/semantic/themes/default/assets/fonts/icons.ttf b/front/src/semantic/themes/default/assets/fonts/icons.ttf deleted file mode 100644 index dc18b3781fcd12a478fd2e8b9fc3c5c010621d31..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218140 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 A2EipbPkb3n^1W0P*v?8zTLtC#cwq6zv_*MF%T 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 bdh;&^apxX4eCQ+6{P(~g{=ofW#`*rgmyUoR diff --git a/front/src/semantic/themes/default/assets/fonts/icons.woff b/front/src/semantic/themes/default/assets/fonts/icons.woff deleted file mode 100644 index 76b54da2a7055808cc776fa16a353b1664587d76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 130044 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 z#HauO00001|Nj620096101N;C02TlM00IC3009H0009650000200000c${NkU|?hb Xf-4eYf*|_ZT$>aa4FECd1v>x$LP_5| diff --git a/front/src/semantic/themes/default/assets/fonts/icons.woff2 b/front/src/semantic/themes/default/assets/fonts/icons.woff2 deleted file mode 100644 index 32b980833a0fc217628c69ad7a8db409155c0a1c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 105468 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 AZ~y=R diff --git a/front/src/semantic/themes/default/assets/images/flags.png b/front/src/semantic/themes/default/assets/images/flags.png deleted file mode 100644 index cdd33c3bc609a91ff492fa352d835bc65de6eb9c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28123 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 szvps9ukhz5h*B>3w`t1c9~9oX)@<@)c diff --git a/front/src/style/_main.scss b/front/src/style/_main.scss new file mode 100644 index 000000000..1f7a561b3 --- /dev/null +++ b/front/src/style/_main.scss @@ -0,0 +1,250 @@ +/* + +███████╗███████╗███╗ ███╗ █████╗ ███╗ ██╗████████╗██╗ ██████╗ ██╗ ██╗██╗ +██╔════╝██╔════╝████╗ ████║██╔══██╗████╗ ██║╚══██╔══╝██║██╔════╝ ██║ ██║██║ +███████╗█████╗ ██╔████╔██║███████║██╔██╗ ██║ ██║ ██║██║ ██║ ██║██║ +╚════██║██╔══╝ ██║╚██╔╝██║██╔══██║██║╚██╗██║ ██║ ██║██║ ██║ ██║██║ +███████║███████╗██║ ╚═╝ ██║██║ ██║██║ ╚████║ ██║ ██║╚██████╗ ╚██████╔╝██║ +╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ + + Import this file into your LESS project to use Semantic UI without build tools +*/ + +/* Global */ +@import "~semantic-ui-css/components/reset.css"; +// we use our custom site css here to avoid loading google font +@import "./site"; + +/* Elements */ +@import "~semantic-ui-css/components/button.css"; +@import "~semantic-ui-css/components/container.css"; +@import "~semantic-ui-css/components/divider.css"; +@import "~semantic-ui-css/components/flag.css"; +@import "~semantic-ui-css/components/header.css"; +@import "~semantic-ui-css/components/icon.css"; +@import "~semantic-ui-css/components/image.css"; +@import "~semantic-ui-css/components/input.css"; +@import "~semantic-ui-css/components/label.css"; +@import "~semantic-ui-css/components/list.css"; +@import "~semantic-ui-css/components/loader.css"; +@import "~semantic-ui-css/components/placeholder.css"; +@import "~semantic-ui-css/components/rail.css"; +@import "~semantic-ui-css/components/reveal.css"; +@import "~semantic-ui-css/components/segment.css"; +@import "~semantic-ui-css/components/step.css"; + +/* Collections */ +@import "~semantic-ui-css/components/breadcrumb.css"; +@import "~semantic-ui-css/components/form.css"; +@import "~semantic-ui-css/components/grid.css"; +@import "~semantic-ui-css/components/menu.css"; +@import "~semantic-ui-css/components/message.css"; +@import "~semantic-ui-css/components/table.css"; + +/* Views */ +@import "~semantic-ui-css/components/ad.css"; +@import "~semantic-ui-css/components/card.css"; +@import "~semantic-ui-css/components/comment.css"; +@import "~semantic-ui-css/components/feed.css"; +@import "~semantic-ui-css/components/item.css"; +@import "~semantic-ui-css/components/statistic.css"; + +/* Modules */ +@import "~semantic-ui-css/components/accordion.css"; +@import "~semantic-ui-css/components/checkbox.css"; +@import "~semantic-ui-css/components/dimmer.css"; +@import "~semantic-ui-css/components/dropdown.css"; +@import "~semantic-ui-css/components/embed.css"; +@import "~semantic-ui-css/components/modal.css"; +@import "~semantic-ui-css/components/nag.css"; +@import "~semantic-ui-css/components/popup.css"; +@import "~semantic-ui-css/components/progress.css"; +@import "~semantic-ui-css/components/rating.css"; +@import "~semantic-ui-css/components/search.css"; +@import "~semantic-ui-css/components/shape.css"; +@import "~semantic-ui-css/components/sidebar.css"; +@import "~semantic-ui-css/components/sticky.css"; +@import "~semantic-ui-css/components/tab.css"; +@import "~semantic-ui-css/components/transition.css"; + + + +// we do the import here instead in main.js +// as resolve order is not deterministric in webpack +// and we end up with CSS rules not applied, +// see https://github.com/webpack/webpack/issues/215 +@import "./vendor/media"; + +html, +body { + @include media("desktop") { + margin-left: 350px !important; + margin-top: 50px; + } + transform: none !important; +} + +.main.pusher > .ui.secondary.menu { + margin-left: 0; + margin-right: 0; + border: none; + box-shadow: inset 0px -2px 0px 0px rgba(34, 36, 38, 0.15); + .ui.item { + border: none; + border-bottom-style: none; + margin-bottom: 0px; + &.active { + box-shadow: inset 0px -2px 0px 0px #000; + } + } + @include media(">tablet") { + padding: 0 2.5rem; + } + @include media(">desktop") { + position: fixed; + left: 350px; + right: 0px; + top: 0px; + z-index: 99; + } + background-color: white; + .item { + padding-top: 1.5em; + padding-bottom: 1.5em; + } +} + +.service-messages { + position: fixed; + bottom: 1em; + left: 1em; + @include media(">desktop") { + left: 350px; + } +} +.main-pusher { + padding: 1.5rem 0; +} +.ui.stripe.segment, +#footer { + padding: 2em; + @include media(">tablet") { + padding: 4em; + } +} + +.ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.ui.small.text.container { + max-width: 500px !important; +} + +.button.icon.tiny { + padding: 0.5em !important; +} + +.sidebar { + .logo { + &.bordered.icon { + padding: .5em .41em !important; + } + path { + fill: white; + } + } +} + +.discrete { + color: rgba(0, 0, 0, 0.87); +} +.link { + cursor: pointer; +} + +.ui.really.basic.button { + &:not(:focus) { + box-shadow: none !important; + background-color: none !important; + } +} + +.floated.buttons .button ~ .dropdown { + border-left: none; +} + +.ui.icon.header .circular.icon { + display: flex; + justify-content: center; +} + +.segment-content .button { + margin: 0.5em; +} + +a { + cursor: pointer; +} +.segment.hidden { + display: none; +} + +button.reset { + border: none; + margin: 0; + padding: 0; + width: auto; + overflow: visible; + + background: transparent; + + /* inherit font & color from ancestor */ + color: inherit; + font: inherit; + + /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */ + line-height: normal; + + /* Corrects font smoothing for webkit */ + -webkit-font-smoothing: inherit; + -moz-osx-font-smoothing: inherit; + /* Corrects inability to style clickable `input` types in iOS */ + -webkit-appearance: none; + text-align: inherit; +} + +.ui.table > caption { + font-weight: bold; + padding: 0.5em; + text-align: left; +} +[role="button"] { + cursor: pointer; +} + +.left.floated { + float: left; +} + +.right.floated { + float: right; +} diff --git a/front/src/style/_site.scss b/front/src/style/_site.scss new file mode 100644 index 000000000..eba288882 --- /dev/null +++ b/front/src/style/_site.scss @@ -0,0 +1,202 @@ +/*! + * # Semantic UI 2.4.1 - Site + * http://github.com/semantic-org/semantic-ui/ + * + * + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + */ + + +/******************************* + Page +*******************************/ + +html, +body { + height: 100%; +} +html { + font-size: 14px; +} +body { + margin: 0px; + padding: 0px; + overflow-x: hidden; + min-width: 320px; + background: #FFFFFF; + font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; + font-size: 14px; + line-height: 1.4285em; + color: rgba(0, 0, 0, 0.87); + font-smoothing: antialiased; +} + + +/******************************* + Headers +*******************************/ + +h1, +h2, +h3, +h4, +h5 { + font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; + line-height: 1.28571429em; + margin: calc(2rem - 0.14285714em ) 0em 1rem; + font-weight: bold; + padding: 0em; +} +h1 { + min-height: 1rem; + font-size: 2rem; +} +h2 { + font-size: 1.71428571rem; +} +h3 { + font-size: 1.28571429rem; +} +h4 { + font-size: 1.07142857rem; +} +h5 { + font-size: 1rem; +} +h1:first-child, +h2:first-child, +h3:first-child, +h4:first-child, +h5:first-child { + margin-top: 0em; +} +h1:last-child, +h2:last-child, +h3:last-child, +h4:last-child, +h5:last-child { + margin-bottom: 0em; +} + + +/******************************* + Text +*******************************/ + +p { + margin: 0em 0em 1em; + line-height: 1.4285em; +} +p:first-child { + margin-top: 0em; +} +p:last-child { + margin-bottom: 0em; +} + +/*------------------- + Links +--------------------*/ + +a { + color: #4183C4; + text-decoration: none; +} +a:hover { + color: #1e70bf; + text-decoration: none; +} + + +/******************************* + Scrollbars +*******************************/ + + + +/******************************* + Highlighting +*******************************/ + + +/* Site */ +::-webkit-selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} +::-moz-selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} +::selection { + background-color: #CCE2FF; + color: rgba(0, 0, 0, 0.87); +} + +/* Form */ +textarea::-webkit-selection, +input::-webkit-selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} +textarea::-moz-selection, +input::-moz-selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} +textarea::selection, +input::selection { + background-color: rgba(100, 100, 100, 0.4); + color: rgba(0, 0, 0, 0.87); +} + +/* Force Simple Scrollbars */ +body ::-webkit-scrollbar { + -webkit-appearance: none; + width: 10px; + height: 10px; +} +body ::-webkit-scrollbar-track { + background: rgba(0, 0, 0, 0.1); + border-radius: 0px; +} +body ::-webkit-scrollbar-thumb { + cursor: pointer; + border-radius: 5px; + background: rgba(0, 0, 0, 0.25); + -webkit-transition: color 0.2s ease; + transition: color 0.2s ease; +} +body ::-webkit-scrollbar-thumb:window-inactive { + background: rgba(0, 0, 0, 0.15); +} +body ::-webkit-scrollbar-thumb:hover { + background: rgba(128, 135, 139, 0.8); +} + +/* Inverted UI */ +body .ui.inverted::-webkit-scrollbar-track { + background: rgba(255, 255, 255, 0.1); +} +body .ui.inverted::-webkit-scrollbar-thumb { + background: rgba(255, 255, 255, 0.25); +} +body .ui.inverted::-webkit-scrollbar-thumb:window-inactive { + background: rgba(255, 255, 255, 0.15); +} +body .ui.inverted::-webkit-scrollbar-thumb:hover { + background: rgba(255, 255, 255, 0.35); +} + + +/******************************* + Global Overrides +*******************************/ + + + +/******************************* + Site Overrides +*******************************/ diff --git a/front/yarn.lock b/front/yarn.lock index 7377b3816..cec181fce 100644 --- a/front/yarn.lock +++ b/front/yarn.lock @@ -6725,9 +6725,10 @@ selfsigned@^1.9.1: dependencies: node-forge "0.7.5" -semantic-ui-css@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.3.3.tgz#134794cde03344092f2728ff61bf9203cf172834" +semantic-ui-css@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/semantic-ui-css/-/semantic-ui-css-2.4.1.tgz#f5aea39fafb787cbd905ec724272a3f9cba9004a" + integrity sha512-Pkp0p9oWOxlH0kODx7qFpIRYpK1T4WJOO4lNnpNPOoWKCrYsfHqYSKgk5fHfQtnWnsAKy7nLJMW02bgDWWFZFg== dependencies: jquery x.* From 7c8fc72f4965a641f3ae7060ed74acc35ce10f24 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 22:15:37 +0100 Subject: [PATCH 04/16] Commented unused Semantic ui components --- front/src/embed.js | 1 - front/src/semantic.js | 14 +++++++------- front/src/style/_main.scss | 16 ++++++++-------- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/front/src/embed.js b/front/src/embed.js index 31ada5480..6de3ca187 100644 --- a/front/src/embed.js +++ b/front/src/embed.js @@ -1,7 +1,6 @@ import Vue from 'vue' import Embed from './Embed' -import axios from 'axios' import VuePlyr from 'vue-plyr' Vue.use(VuePlyr) diff --git a/front/src/semantic.js b/front/src/semantic.js index 8e091af0d..a09faf997 100644 --- a/front/src/semantic.js +++ b/front/src/semantic.js @@ -1,16 +1,16 @@ -require('semantic-ui-css/components/accordion.min.js') +// require('semantic-ui-css/components/accordion.min.js') require('semantic-ui-css/components/api.min.js') require('semantic-ui-css/components/checkbox.min.js') -require('semantic-ui-css/components/colorize.min.js') +// require('semantic-ui-css/components/colorize.min.js') require('semantic-ui-css/components/dimmer.min.js') require('semantic-ui-css/components/dropdown.min.js') -require('semantic-ui-css/components/embed.min.js') +// require('semantic-ui-css/components/embed.min.js') require('semantic-ui-css/components/form.min.js') require('semantic-ui-css/components/modal.min.js') -require('semantic-ui-css/components/nag.min.js') +// require('semantic-ui-css/components/nag.min.js') require('semantic-ui-css/components/popup.min.js') require('semantic-ui-css/components/progress.min.js') -require('semantic-ui-css/components/rating.min.js') +// require('semantic-ui-css/components/rating.min.js') require('semantic-ui-css/components/search.min.js') require('semantic-ui-css/components/shape.min.js') require('semantic-ui-css/components/sidebar.min.js') @@ -19,6 +19,6 @@ require('semantic-ui-css/components/state.min.js') require('semantic-ui-css/components/sticky.min.js') require('semantic-ui-css/components/tab.min.js') require('semantic-ui-css/components/transition.min.js') -require('semantic-ui-css/components/video.min.js') +// require('semantic-ui-css/components/video.min.js') require('semantic-ui-css/components/visibility.min.js') -require('semantic-ui-css/components/visit.min.js') +// require('semantic-ui-css/components/visit.min.js') diff --git a/front/src/style/_main.scss b/front/src/style/_main.scss index 1f7a561b3..1aa074756 100644 --- a/front/src/style/_main.scss +++ b/front/src/style/_main.scss @@ -19,7 +19,7 @@ @import "~semantic-ui-css/components/button.css"; @import "~semantic-ui-css/components/container.css"; @import "~semantic-ui-css/components/divider.css"; -@import "~semantic-ui-css/components/flag.css"; +// @import "~semantic-ui-css/components/flag.css"; @import "~semantic-ui-css/components/header.css"; @import "~semantic-ui-css/components/icon.css"; @import "~semantic-ui-css/components/image.css"; @@ -28,8 +28,8 @@ @import "~semantic-ui-css/components/list.css"; @import "~semantic-ui-css/components/loader.css"; @import "~semantic-ui-css/components/placeholder.css"; -@import "~semantic-ui-css/components/rail.css"; -@import "~semantic-ui-css/components/reveal.css"; +// @import "~semantic-ui-css/components/rail.css"; +// @import "~semantic-ui-css/components/reveal.css"; @import "~semantic-ui-css/components/segment.css"; @import "~semantic-ui-css/components/step.css"; @@ -50,18 +50,18 @@ @import "~semantic-ui-css/components/statistic.css"; /* Modules */ -@import "~semantic-ui-css/components/accordion.css"; +// @import "~semantic-ui-css/components/accordion.css"; @import "~semantic-ui-css/components/checkbox.css"; @import "~semantic-ui-css/components/dimmer.css"; @import "~semantic-ui-css/components/dropdown.css"; -@import "~semantic-ui-css/components/embed.css"; +// @import "~semantic-ui-css/components/embed.css"; @import "~semantic-ui-css/components/modal.css"; -@import "~semantic-ui-css/components/nag.css"; +// @import "~semantic-ui-css/components/nag.css"; @import "~semantic-ui-css/components/popup.css"; @import "~semantic-ui-css/components/progress.css"; -@import "~semantic-ui-css/components/rating.css"; +// @import "~semantic-ui-css/components/rating.css"; @import "~semantic-ui-css/components/search.css"; -@import "~semantic-ui-css/components/shape.css"; +// @import "~semantic-ui-css/components/shape.css"; @import "~semantic-ui-css/components/sidebar.css"; @import "~semantic-ui-css/components/sticky.css"; @import "~semantic-ui-css/components/tab.css"; From c6e03b15c76ea438b77ee140c32319ba8880654b Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 22:22:51 +0100 Subject: [PATCH 05/16] Ignore moment.js locales for smaller build --- front/vue.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/front/vue.config.js b/front/vue.config.js index 69bfdc34e..97af9f856 100644 --- a/front/vue.config.js +++ b/front/vue.config.js @@ -1,6 +1,11 @@ const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; -let plugins = [] +const webpack = require('webpack'); + +let plugins = [ + // do not include moment.js locales since it's quite heavy + new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), +] if (process.env.BUNDLE_ANALYZE === '1') { plugins.push(new BundleAnalyzerPlugin()) } From a2216330852b5c4efff79e94304ca009db8247bd Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 23:26:21 +0100 Subject: [PATCH 06/16] See #638: fix skipping to last track in album --- front/src/store/queue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/store/queue.js b/front/src/store/queue.js index 717616d2d..dba102b46 100644 --- a/front/src/store/queue.js +++ b/front/src/store/queue.js @@ -86,7 +86,7 @@ export default { if (callback && i + 1 === total) { p.then(callback) } - if (shouldPlay && p) { + if (shouldPlay && p && i + 1 === total) { p.then(() => { dispatch('next') }) From 5321cb4c46311f6645eabdfe7492e33a4fec0b38 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 19 Dec 2018 23:46:53 +0100 Subject: [PATCH 07/16] Enable gzip compression to reduce bandwidth consumption --- .../changelog.d/front-performance.enhancement | 51 +++++++++++++++++++ deploy/docker.proxy.template | 34 +++++++++++++ deploy/nginx.template | 35 +++++++++++++ docker/nginx/conf.dev | 33 ++++++++++++ 4 files changed, 153 insertions(+) create mode 100644 changes/changelog.d/front-performance.enhancement diff --git a/changes/changelog.d/front-performance.enhancement b/changes/changelog.d/front-performance.enhancement new file mode 100644 index 000000000..03ca0e478 --- /dev/null +++ b/changes/changelog.d/front-performance.enhancement @@ -0,0 +1,51 @@ +Improved front-end performance by stripping unused dependencies, reducing bundle size +and enabling gzip compression + +Enable gzip compression [manual action suggested] +------------------------------------------------- + +Gzip compression will be enabled on new instances by default +and will reduce the amount of bandwidth consumed by your instance. + +If you with to benefit from gzip compression on your instance, +edit your reverse proxy virtualhost file (located at ``/etc/nginx/sites-available/funkwhale.conf``) and add the following snippet +in the server block, then reload your nginx server:: + + server { + # ... exiting configuration + + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + # end of compression settings + } diff --git a/deploy/docker.proxy.template b/deploy/docker.proxy.template index 319f287e7..812027bfa 100644 --- a/deploy/docker.proxy.template +++ b/deploy/docker.proxy.template @@ -29,6 +29,40 @@ server { # HSTS add_header Strict-Transport-Security "max-age=31536000"; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + location / { include /etc/nginx/funkwhale_proxy.conf; proxy_pass http://fw/; diff --git a/deploy/nginx.template b/deploy/nginx.template index b81ecc61a..702dc05ee 100644 --- a/deploy/nginx.template +++ b/deploy/nginx.template @@ -43,6 +43,41 @@ server { root ${FUNKWHALE_FRONTEND_PATH}; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; + + # end of compression settings location / { include /etc/nginx/funkwhale_proxy.conf; # this is needed if you have file import via upload enabled diff --git a/docker/nginx/conf.dev b/docker/nginx/conf.dev index 297cfa509..3e7a3515a 100644 --- a/docker/nginx/conf.dev +++ b/docker/nginx/conf.dev @@ -43,6 +43,39 @@ http { charset utf-8; client_max_body_size 30M; include /etc/nginx/funkwhale_proxy.conf; + # compression settings + gzip on; + gzip_comp_level 5; + gzip_min_length 256; + gzip_proxied any; + gzip_vary on; + + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/activity+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + text/x-cross-domain-policy; location /front/ { proxy_pass http://funkwhale-front/front/; From 95e087b342c8a947b47f2e5cec17bcfacf37b0b6 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:21:57 +0100 Subject: [PATCH 08/16] Removed raven on front-end --- .../instance/dynamic_preferences_registry.py | 9 ----- front/package.json | 1 - front/src/App.vue | 6 --- front/src/components/Raven.vue | 40 ------------------- front/src/store/instance.js | 8 ---- front/src/views/admin/Settings.vue | 5 --- front/tests/unit/specs/store/instance.spec.js | 32 +++++++-------- 7 files changed, 16 insertions(+), 85 deletions(-) delete mode 100644 front/src/components/Raven.vue diff --git a/api/funkwhale_api/instance/dynamic_preferences_registry.py b/api/funkwhale_api/instance/dynamic_preferences_registry.py index 0edb94482..844fbb08b 100644 --- a/api/funkwhale_api/instance/dynamic_preferences_registry.py +++ b/api/funkwhale_api/instance/dynamic_preferences_registry.py @@ -58,15 +58,6 @@ class RavenDSN(types.StringPreference): field_kwargs = {"required": False} -@global_preferences_registry.register -class RavenEnabled(types.BooleanPreference): - show_in_api = True - section = raven - name = "front_enabled" - default = False - verbose_name = "Report front-end errors with Raven" - - @global_preferences_registry.register class InstanceNodeinfoEnabled(types.BooleanPreference): show_in_api = False diff --git a/front/package.json b/front/package.json index 72cd6c71c..adeb1fb19 100644 --- a/front/package.json +++ b/front/package.json @@ -20,7 +20,6 @@ "lodash": "^4.17.10", "masonry-layout": "^4.2.2", "moment": "^2.22.2", - "raven-js": "^3.26.4", "semantic-ui-css": "^2.4.1", "showdown": "^1.8.6", "vue": "^2.5.17", diff --git a/front/src/App.vue b/front/src/App.vue index ed2f4e36f..55cfab6e9 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -43,10 +43,6 @@ :version="version" @show:shortcuts-modal="showShortcutsModal = !showShortcutsModal" > - @@ -63,7 +59,6 @@ import GlobalEvents from '@/components/utils/global-events' import Sidebar from '@/components/Sidebar' import AppFooter from '@/components/Footer' -import Raven from '@/components/Raven' import ServiceMessages from '@/components/ServiceMessages' import locales from './locales' @@ -75,7 +70,6 @@ export default { components: { Sidebar, AppFooter, - Raven, PlaylistModal, ShortcutsModal, GlobalEvents, diff --git a/front/src/components/Raven.vue b/front/src/components/Raven.vue deleted file mode 100644 index f45d0ed22..000000000 --- a/front/src/components/Raven.vue +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/front/src/store/instance.js b/front/src/store/instance.js index a1a1530a9..72a960cd0 100644 --- a/front/src/store/instance.js +++ b/front/src/store/instance.js @@ -40,14 +40,6 @@ export default { enabled: { value: true } - }, - raven: { - front_enabled: { - value: false - }, - front_dsn: { - value: null - } } } }, diff --git a/front/src/views/admin/Settings.vue b/front/src/views/admin/Settings.vue index 890eba9fd..779bb7459 100644 --- a/front/src/views/admin/Settings.vue +++ b/front/src/views/admin/Settings.vue @@ -142,11 +142,6 @@ export default { "instance__nodeinfo_stats_enabled", "instance__nodeinfo_private" ] - }, - { - label: errorLabel, - id: "reporting", - settings: ["raven__front_enabled", "raven__front_dsn"] } ] } diff --git a/front/tests/unit/specs/store/instance.spec.js b/front/tests/unit/specs/store/instance.spec.js index b60b1fd47..7b70982fc 100644 --- a/front/tests/unit/specs/store/instance.spec.js +++ b/front/tests/unit/specs/store/instance.spec.js @@ -18,11 +18,11 @@ describe('store/instance', () => { describe('mutations', () => { it('settings', () => { - const state = {settings: {raven: {front_dsn: {value: 'test'}}}} - let settings = {raven: {front_enabled: {value: true}}} + const state = {settings: {users: {upload_quota: {value: 1}}}} + let settings = {users: {registration_enabled: {value: true}}} store.mutations.settings(state, settings) expect(state.settings).to.deep.equal({ - raven: {front_dsn: {value: 'test'}, front_enabled: {value: true}} + users: {upload_quota: {value: 1}, registration_enabled: {value: true}} }) }) }) @@ -32,13 +32,13 @@ describe('store/instance', () => { status: 200, response: [ { - section: 'raven', - name: 'front_dsn', - value: 'test' + section: 'users', + name: 'upload_quota', + value: 1 }, { - section: 'raven', - name: 'front_enabled', + section: 'users', + name: 'registration_enabled', value: false } ] @@ -50,15 +50,15 @@ describe('store/instance', () => { { type: 'settings', payload: { - raven: { - front_dsn: { - section: 'raven', - name: 'front_dsn', - value: 'test' + users: { + upload_quota: { + section: 'users', + name: 'upload_quota', + value: 1 }, - front_enabled: { - section: 'raven', - name: 'front_enabled', + registration_enabled: { + section: 'users', + name: 'registration_enabled', value: false } } From 3682aa81db24a3a36600842c994fba62c18a5480 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:46:40 +0100 Subject: [PATCH 09/16] Disabled another Semantic UI module --- front/src/semantic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/semantic.js b/front/src/semantic.js index a09faf997..5267ba770 100644 --- a/front/src/semantic.js +++ b/front/src/semantic.js @@ -5,7 +5,7 @@ require('semantic-ui-css/components/checkbox.min.js') require('semantic-ui-css/components/dimmer.min.js') require('semantic-ui-css/components/dropdown.min.js') // require('semantic-ui-css/components/embed.min.js') -require('semantic-ui-css/components/form.min.js') +// require('semantic-ui-css/components/form.min.js') require('semantic-ui-css/components/modal.min.js') // require('semantic-ui-css/components/nag.min.js') require('semantic-ui-css/components/popup.min.js') From 17d86a28325b9b841668f52a011e15f485bdf054 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 00:47:05 +0100 Subject: [PATCH 10/16] Lazy-load markdown renderer on about page for smaller bundle size --- front/src/components/About.vue | 15 ++- front/src/components/Sidebar.vue | 2 - front/src/components/discussion/Comment.vue | 53 -------- front/src/components/requests/Card.vue | 61 --------- front/src/components/requests/Form.vue | 127 ------------------ front/src/filters.js | 8 -- .../tests/unit/specs/filters/filters.spec.js | 9 +- 7 files changed, 13 insertions(+), 262 deletions(-) delete mode 100644 front/src/components/discussion/Comment.vue delete mode 100644 front/src/components/requests/Card.vue delete mode 100644 front/src/components/requests/Form.vue diff --git a/front/src/components/About.vue b/front/src/components/About.vue index 16c58b173..90cfb7682 100644 --- a/front/src/components/About.vue +++ b/front/src/components/About.vue @@ -27,9 +27,9 @@

{{ instance.short_description.value }}

+ v-html="markdown.makeHtml(instance.long_description.value)">
@@ -43,8 +43,17 @@ export default { components: { Stats }, - created() { + data () { + return { + markdown: null + } + }, + created () { this.$store.dispatch("instance/fetchSettings") + let self = this + import('showdown').then(module => { + self.markdown = new module.default.Converter() + }) }, computed: { ...mapState({ diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue index d8029b1bd..5fc0458c9 100644 --- a/front/src/components/Sidebar.vue +++ b/front/src/components/Sidebar.vue @@ -206,10 +206,8 @@ export default { labels() { let mainMenu = this.$gettext("Main menu") let selectTrack = this.$gettext("Play this track") - let pendingRequests = this.$gettext("Pending import requests") let pendingFollows = this.$gettext("Pending follow requests") return { - pendingRequests, pendingFollows, mainMenu, selectTrack diff --git a/front/src/components/discussion/Comment.vue b/front/src/components/discussion/Comment.vue deleted file mode 100644 index ee9ce9b1f..000000000 --- a/front/src/components/discussion/Comment.vue +++ /dev/null @@ -1,53 +0,0 @@ - - diff --git a/front/src/components/requests/Card.vue b/front/src/components/requests/Card.vue deleted file mode 100644 index 36bbc944e..000000000 --- a/front/src/components/requests/Card.vue +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - diff --git a/front/src/components/requests/Form.vue b/front/src/components/requests/Form.vue deleted file mode 100644 index 667bd5f5a..000000000 --- a/front/src/components/requests/Form.vue +++ /dev/null @@ -1,127 +0,0 @@ - - - - - diff --git a/front/src/filters.js b/front/src/filters.js index 878b3c9f2..97dd2d5ee 100644 --- a/front/src/filters.js +++ b/front/src/filters.js @@ -1,7 +1,6 @@ import Vue from 'vue' import moment from 'moment' -import showdown from 'showdown' export function truncate (str, max, ellipsis) { max = max || 100 @@ -14,13 +13,6 @@ export function truncate (str, max, ellipsis) { Vue.filter('truncate', truncate) -export function markdown (str) { - const converter = new showdown.Converter() - return converter.makeHtml(str) -} - -Vue.filter('markdown', markdown) - export function ago (date) { const m = moment(date) return m.fromNow() diff --git a/front/tests/unit/specs/filters/filters.spec.js b/front/tests/unit/specs/filters/filters.spec.js index 8ee6b4b71..1464e5c97 100644 --- a/front/tests/unit/specs/filters/filters.spec.js +++ b/front/tests/unit/specs/filters/filters.spec.js @@ -1,6 +1,6 @@ import {expect} from 'chai' -import {truncate, markdown, ago, capitalize, year} from '@/filters' +import {truncate, ago, capitalize, year} from '@/filters' describe('filters', () => { describe('truncate', () => { @@ -20,13 +20,6 @@ describe('filters', () => { expect(output).to.equal('Hello pouet') }) }) - describe('markdown', () => { - it('renders markdown', () => { - const input = 'Hello world' - let output = markdown(input) - expect(output).to.equal('

Hello world

') - }) - }) describe('ago', () => { it('works', () => { const input = new Date() From b2acd1e8a85e6979aafc0530359f8ff961ffd3f1 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Thu, 20 Dec 2018 11:21:15 +0100 Subject: [PATCH 11/16] Use specific methods from lodash to reduce bundle size --- front/src/App.vue | 2 +- front/src/components/Pagination.vue | 2 +- front/src/components/audio/Search.vue | 2 +- front/src/components/audio/Track.vue | 2 +- front/src/components/audio/album/Widget.vue | 2 +- front/src/components/audio/track/Widget.vue | 4 ++-- front/src/components/federation/LibraryWidget.vue | 2 +- front/src/components/instance/Stats.vue | 2 +- front/src/components/library/Artist.vue | 2 +- front/src/components/library/Artists.vue | 2 +- front/src/components/library/FileUpload.vue | 1 + front/src/components/library/Radios.vue | 2 +- front/src/components/library/radios/Builder.vue | 2 +- front/src/components/library/radios/Filter.vue | 2 +- front/src/components/manage/library/FilesTable.vue | 2 +- .../components/manage/users/InvitationsTable.vue | 2 +- front/src/components/manage/users/UsersTable.vue | 2 +- front/src/components/playlists/PlaylistModal.vue | 2 +- front/src/components/playlists/Widget.vue | 2 +- front/src/lodash.js | 13 +++++++++++++ front/src/store/instance.js | 2 +- front/src/store/queue.js | 2 +- front/src/views/content/libraries/FilesTable.vue | 2 +- front/src/views/playlists/List.vue | 2 +- front/tests/unit/specs/store/queue.spec.js | 2 +- 25 files changed, 38 insertions(+), 24 deletions(-) create mode 100644 front/src/lodash.js diff --git a/front/src/App.vue b/front/src/App.vue index 55cfab6e9..d61e5a837 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -52,7 +52,7 @@ diff --git a/front/src/components/auth/Profile.vue b/front/src/components/auth/Profile.vue index e1bdd416c..32dae5336 100644 --- a/front/src/components/auth/Profile.vue +++ b/front/src/components/auth/Profile.vue @@ -7,7 +7,7 @@

- +
{{ profile.username }}
Registered since %{ date }
diff --git a/front/src/components/auth/Settings.vue b/front/src/components/auth/Settings.vue index f4e357f28..c417f9fbc 100644 --- a/front/src/components/auth/Settings.vue +++ b/front/src/components/auth/Settings.vue @@ -53,7 +53,7 @@

Current avatar

- +