code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
@jackal's Dracula Pro Color Scheme
*/
:root {
--primary-background: #0b0d0f;
--secondary-background: #1f2123;
--tertiary-background: #343638;
--quaternary-background: #484f4c;
--white: #F8F8F2;
--gray-1: #5d5f61;
--gray-2: #717375;
--red: #ff9580;
--orange: #ffca80;
--green: #8AFF80;
--cyan: #80FFEA;
--cyan-transparent: rgba(128, 255, 234, 0.3);
--purple: #9580FF;
--purple-transparent: rgba(149, 128, 255, 0.5);
--pink: #Ff80BF;
--blue: #8095ff;
--yellow: #ffff80;
--text-on-accent-warning: #000;
}
/*----------------------------------------------------------------
Colors Applied to Variables
*/
/* Original Minimal Theme Variables Modified */
.theme-light,
.theme-dark {
--background-primary: var(--primary-background);
--background-primary-alt: var(--secondary-background);
--background-secondary: var(--secondary-background);
--background-secondary-alt: var(--primary-background);
--background-tertiary: var(--tertiary-background);
--background-modifier-border: var(--tertiary-background);
--background-modifier-border-hover: var(--quaternary-background);
--background-modifier-border-focus: var(--quaternary-background);
--background-modifier-box-shadow:rgba(0, 0, 0, 0.3);
--text-normal: var(--white);
--text-muted: var(--gray-2);
--text-faint: var(--purple-transparent);
--background-transparent:hsla(var(--primary-background),0);
--background-translucent:hsla(var(--primary-background),0.85);
--background-match-highlight:hsla(var(--accent-h), 40%, 62%, 0.2);
--background-modifier-accent:hsl(var(--accent-h),var(--accent-s),calc(var(--accent-d) - 10%));
--text-accent: var(--pink);
--text-accent-hover: var(--aqua);
--text-on-accent: var(--purple);
--icon-hex:FFF;
--interactive-accent: var(--tertiary-background);
--interactive-accent-hover: var(--quaternary-background);
--quote-opening-modifier:var(--orange);
--interactive-accent-rgb: 123, 108, 217;
--text-selection: var(--cyan-transparent);
--text-highlight-bg: var(--blue);
--text-highlight-bg-active:rgba(255, 255, 255, 0.1);
--background-modifier-cover:hsla(var(--base-h),var(--base-s),calc(var(--base-d) - 12%),0.8);
--background-accent: var(--white);
--background-modifier-form-field: rgba(0, 0, 0, 0.2);
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.5);
--background-modifier-success: var(--green);
--background-modifier-error: var(--red);
--background-modifier-error-rgb: 61, 0, 0;
--background-modifier-error-hover: var(--red);
--background-modifier-cover: rgba(0, 0, 0, 0.6);
--text-error: var(--red);
--text-error-hover: var(--red);
--interactive-normal: var(--tertiary-background);
--interactive-hover: var(--quaternary-background);
--scrollbar-active-thumb-bg: var(--quaternary-background);
--scrollbar-bg: var(--primary-background);
--scrollbar-thumb-bg: var(--tertiary-background);
--border-color: var(--quaternary-background);
/* @jackal's Extra Color Variables for Specific Elements */
--cursor: var(--cyan);
--vim-cursor: var(--cyan);
--headers: var(--green);
--h1: var(--green);
--h2: var(--green);
--h3: var(--green);
--h4: var(--text-normal);
--h5: var(--text-normal);
--h6: var(--text-muted);
--bold: var(--purple);
--italics: var(--pink);
--strikethrough: var(--gray-1);
--highlight: var(--yellow);
--internal-link: var(--cyan);
--internal-link-unresolved: var(--blue);
--external-link: var(--orange);
--external-link-url: var(--gray-1);
--tag: var(--pink);
--footnote: var(--blue);
--block-id: var(--cyan);
--checkbox: var(--purple);
--list: var(--purple);
--math: var(--red);
--inline-code: var(--red);
--code-block: var(--red);
--pre-code: var(--gray-2);
--toggle-on: var(--green);
--toggle-off: var(--secondary-background);
--icon: var(--purple);
--icon-hover: var(--white);
--frontmatter: var(--red);
--active-file: var(--green);
}
/*----------------------------------------------------------------
Elements
*/
/* Calendar Plugin */
#calendar-container {
--color-text-title:var(--headers);
--color-text-day-active:var(--active-file);
}
#calendar-container .today {
color:var(--bold);
}
#calendar-container .today .dot {
fill:var(--bold);
}
#calendar-container .active,
#calendar-container .active.today,
#calendar-container .week-num:hover,
#calendar-container td:not(:empty):hover {
color:var(--color-text-day-active);
}
/* Headers */
.cm-formatting-header {
color:var(--headers) !important;
}
.empty-state-title,
.markdown-preview-view h1,
.HyperMD-header-1,
.cm-header-1 {
color:var(--h1);
}
.markdown-preview-view h2,
.HyperMD-header-2,
.cm-header-2 {
color:var(--h2);
}
.markdown-preview-view h3,
.HyperMD-header-3,
.cm-header-3 {
color:var(--h3);
}
.markdown-preview-view h4,
.HyperMD-header-4,
.cm-header-4 {
color:var(--h4);
}
.markdown-preview-view h5,
.HyperMD-header-5,
.cm-header-5 {
color:var(--h5);
}
.markdown-preview-view h6,
.HyperMD-header-6,
.cm-header-6 {
color:var(--h6);
}
/* Tags */
.frontmatter-container .tag,
.tag {
background-color: var(--tertiary-background);
color:var(--tag);
}
.tag:hover {
color:var(--icon-hover);
}
.cm-s-obsidian span.cm-hashtag {
background-color: var(--tertiary-background);
color:var(--tag);
}
/* Cursor */
.fancy-cursor .CodeMirror-cursor {
border-right:2px solid var(--cursor);
}
.cm-fat-cursor .CodeMirror-cursor, .cm-animate-fat-cursor { /* Vim Cursor */
background: var(--vim-cursor);
border-color: var(--vim-cursor);
opacity: 60%;
}
/* URLs */
.cm-s-obsidian span.cm-url {
color:var(--external-link-url);
}
/* External Links */
.cm-s-obsidian span.cm-link {
color:var(--external-link);
}
a,
.cm-link,
.cm-formatting-link,
.cm-url {
color: var(--external-link);
}
/* Internal Links */
.cm-s-obsidian span.cm-hmd-internal-link {
color:var(--internal-link);
}
.internal-link {
color: var(--internal-link);
}
/* Editor Mode Lists */
.cm-formatting-list {
color:var(--list) !important;
}
/* Editor Mode Quotes */
.cm-formatting-quote {
color:var(--quote-opening-modifier) !important;
}
/* Checkboxes */
.is-flashing input[type=checkbox]:checked,
input[type=checkbox]:checked {
background-color:var(--checkbox) !important;
border: var(--checkbox);
}
/* Toggle Switches */
.checkbox-container {
background-color:var(--toggle-off);
}
.checkbox-container:after {
background: var(--tertiary-background);
}
.checkbox-container.is-enabled {
background-color: var(--toggle-on);
}
/* Footnotes */
.footnote-backref {
color: var(--footnote); /* only applies to preview */
}
.cm-s-obsidian pre.HyperMD-footnote span.cm-hmd-footnote,
.cm-s-obsidian span.cm-footref, .footnote-link {
color: var(--footnote);
}
/* Folding Arrows */
ul > li:not(.task-list-item)::before {
color:var(--list);
}
ol > li::before {
color:var(--list);
}
/* Popovers */
.theme-dark.minimal-dark-black .popover {
background: var(--background-secondary);
}
/* Graph View */
.graph-view.color-fill { /* Circle When Not Hover */
color:var(--list);
}
.graph-view.color-fill-highlight { /* Circle When Hover */
color:var(--active-file);
}
.graph-view.color-line-highlight { /* Line When Hover */
color:var(--internal-link);
border:0;
}
.graph-view.color-circle { /* Circle Stroke */
color:var(--active-file);
}
.graph-view.color-fill-unresolved { /* Circle When Link Unresolved */
color:var(--internal-link-unresolved);
}
.graph-view.color-fill-tag { /* Tags */
color: var(--tag);
}
.graph-view.color-arrow { /* Arrows */
color: var(--internal-link);
}
/* Bold */
strong, .cm-strong {
color: var(--bold);
}
/* Italics */
em, .cm-em {
color: var(--italics);
}
/* Strikethrough */
s, del, .cm-strikethrough {
color: var(--strikethrough);
}
/* Highlight */
.markdown-preview-view mark {
background-color: var(--highlight);
color: var(--background-primary);
opacity: 80%;
}
.cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight {
background-color: var(--highlight);
color: var(--background-primary);
opacity: 80%;
}
/* Command Palette Hotkeys */
.suggestion-item.is-selected .suggestion-hotkey{
color: var(--list)
}
/* Vault Launch Progress Bar */
.progress-bar-subline {
background-color: var(--tertiary-background);
}
.progress-bar-line {
background-color: var(--green);
}
/* Active Panes */
.workspace-leaf.mod-active .view-header-title { /* Highlight Active Pane Title */
color: var(--active-file);
}
.nav-file.is-active > .nav-file-title,
.nav-file.is-active > .nav-folder-title,
.nav-file.is-active > .nav-folder-collapse-indicator,
.nav-folder.is-active > .nav-file-title,
.nav-folder.is-active > .nav-folder-title,
.nav-folder.is-active > .nav-folder-collapse-indicator { /* Highlight Active Pane in Finder */
color: var(--active-file);
}
.side-dock-collapsible-section-header:not(.is-collapsed) { /* Highlight Active Section */
color: var(--active-file);
}
/* Block-IDs */
.cm-s-obsidian span.cm-blockid {
color: var(--block-id);
}
/* Math */
.cm-s-obsidian span.cm-math, .cm-s-obsidian span.hmd-fold-math-placeholder {
color: var(--math);
}
.cm-s-obsidian span.cm-formatting-math {
color: var(--math);
}
/* Code */
.markdown-preview-view code {
color: var(--inline-code);
}
code,
.cm-s-obsidian span.cm-inline-code {
color: var(--inline-code);
}
.cm-s-obsidian span.cm-inline-code:not(.cm-formatting):not(.cm-hmd-indented-code):not(.obsidian-search-match-highlight) {
color: var(--inline-code);
}
.cm-s-obsidian span.cm-inline-code.cm-hmd-indented-code {
color: var(--inline-code);
}
/* Code Syntax Highlights */
.language-css {
color: var(--purple);
}
.token {
color: var(--pink);
}
.language-css .token {
color: var(--pink);
}
.token.script {
color: var(--text-normal);
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.atrule, .token.attr-name, .token.attr-value {
color: var(--green);
}
.language-css .token.atrule {
color: var(--purple);
}
.language-html .token.attr-value, .language-markup .token.attr-value {
color: var(--yellow);
}
.token.boolean {
color: var(--purple);
}
.token.builtin, .token.class-name {
color: var(--cyan);
}
.token.comment {
color: var(--gray-1);
}
.token.constant {
color: var(--purple);
}
.language-javascript .token.constant {
color: var(--orange);
font-style: italic;
}
.token.entity {
color: var(--pink);
}
.language-css .token.entity {
color: var(--green);
}
.language-html .token.entity.named-entity {
color: var(--purple);
}
.language-html .token.entity:not(.named-entity) {
color: var(--pink);
}
.language-markup .token.entity.named-entity {
color: var(--purple);
}
.language-markup .token.entity:not(.named-entity) {
color: var(--pink);
}
.token.function {
color: var(--green);
}
.language-css .token.function {
color: var(--cyan);
}
.token.important, .token.keyword {
color: var(--pink);
}
.token.prolog {
color: var(--text-normal);
}
.token.property {
color: var(--orange);
}
.language-css .token.property {
color: var(--cyan);
}
.token.punctuation {
color: var(--pink);
}
.language-css .token.punctuation {
color: var(--orange);
}
.language-html .token.punctuation, .language-markup .token.punctuation {
color: var(--text-normal);
}
.token.selector {
color: var(--pink);
}
.language-css .token.selector {
color: var(--green);
}
.token.regex {
color: var(--red);
}
.language-css .token.rule:not(.atrule) {
color: var(--text-normal);
}
.token.string {
color: var(--yellow);
}
.token.tag {
color: var(--pink);
}
.token.url {
color: var(--cyan);
}
.language-css .token.url {
color: var(--orange);
}
.token.variable {
color: var(--gray-1);
}
.token.number {
color: var(--purple);
}
.token.operator {
color: var(--cyan);
}
.token.char {
color: var(--pink);
}
.token.symbol {
color: var(--yellow);
}
.token.deleted {
color: var(--red);
}
.token.namespace {
color: var(--red);
}
/* Warnings */
button.mod-warning {
color: var(--text-on-accent-warning);
} | minimal_dracula_skin.css |
@jackal's Dracula Pro Color Scheme
*/
:root {
--primary-background: #0b0d0f;
--secondary-background: #1f2123;
--tertiary-background: #343638;
--quaternary-background: #484f4c;
--white: #F8F8F2;
--gray-1: #5d5f61;
--gray-2: #717375;
--red: #ff9580;
--orange: #ffca80;
--green: #8AFF80;
--cyan: #80FFEA;
--cyan-transparent: rgba(128, 255, 234, 0.3);
--purple: #9580FF;
--purple-transparent: rgba(149, 128, 255, 0.5);
--pink: #Ff80BF;
--blue: #8095ff;
--yellow: #ffff80;
--text-on-accent-warning: #000;
}
/*----------------------------------------------------------------
Colors Applied to Variables
*/
/* Original Minimal Theme Variables Modified */
.theme-light,
.theme-dark {
--background-primary: var(--primary-background);
--background-primary-alt: var(--secondary-background);
--background-secondary: var(--secondary-background);
--background-secondary-alt: var(--primary-background);
--background-tertiary: var(--tertiary-background);
--background-modifier-border: var(--tertiary-background);
--background-modifier-border-hover: var(--quaternary-background);
--background-modifier-border-focus: var(--quaternary-background);
--background-modifier-box-shadow:rgba(0, 0, 0, 0.3);
--text-normal: var(--white);
--text-muted: var(--gray-2);
--text-faint: var(--purple-transparent);
--background-transparent:hsla(var(--primary-background),0);
--background-translucent:hsla(var(--primary-background),0.85);
--background-match-highlight:hsla(var(--accent-h), 40%, 62%, 0.2);
--background-modifier-accent:hsl(var(--accent-h),var(--accent-s),calc(var(--accent-d) - 10%));
--text-accent: var(--pink);
--text-accent-hover: var(--aqua);
--text-on-accent: var(--purple);
--icon-hex:FFF;
--interactive-accent: var(--tertiary-background);
--interactive-accent-hover: var(--quaternary-background);
--quote-opening-modifier:var(--orange);
--interactive-accent-rgb: 123, 108, 217;
--text-selection: var(--cyan-transparent);
--text-highlight-bg: var(--blue);
--text-highlight-bg-active:rgba(255, 255, 255, 0.1);
--background-modifier-cover:hsla(var(--base-h),var(--base-s),calc(var(--base-d) - 12%),0.8);
--background-accent: var(--white);
--background-modifier-form-field: rgba(0, 0, 0, 0.2);
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.5);
--background-modifier-success: var(--green);
--background-modifier-error: var(--red);
--background-modifier-error-rgb: 61, 0, 0;
--background-modifier-error-hover: var(--red);
--background-modifier-cover: rgba(0, 0, 0, 0.6);
--text-error: var(--red);
--text-error-hover: var(--red);
--interactive-normal: var(--tertiary-background);
--interactive-hover: var(--quaternary-background);
--scrollbar-active-thumb-bg: var(--quaternary-background);
--scrollbar-bg: var(--primary-background);
--scrollbar-thumb-bg: var(--tertiary-background);
--border-color: var(--quaternary-background);
/* @jackal's Extra Color Variables for Specific Elements */
--cursor: var(--cyan);
--vim-cursor: var(--cyan);
--headers: var(--green);
--h1: var(--green);
--h2: var(--green);
--h3: var(--green);
--h4: var(--text-normal);
--h5: var(--text-normal);
--h6: var(--text-muted);
--bold: var(--purple);
--italics: var(--pink);
--strikethrough: var(--gray-1);
--highlight: var(--yellow);
--internal-link: var(--cyan);
--internal-link-unresolved: var(--blue);
--external-link: var(--orange);
--external-link-url: var(--gray-1);
--tag: var(--pink);
--footnote: var(--blue);
--block-id: var(--cyan);
--checkbox: var(--purple);
--list: var(--purple);
--math: var(--red);
--inline-code: var(--red);
--code-block: var(--red);
--pre-code: var(--gray-2);
--toggle-on: var(--green);
--toggle-off: var(--secondary-background);
--icon: var(--purple);
--icon-hover: var(--white);
--frontmatter: var(--red);
--active-file: var(--green);
}
/*----------------------------------------------------------------
Elements
*/
/* Calendar Plugin */
#calendar-container {
--color-text-title:var(--headers);
--color-text-day-active:var(--active-file);
}
#calendar-container .today {
color:var(--bold);
}
#calendar-container .today .dot {
fill:var(--bold);
}
#calendar-container .active,
#calendar-container .active.today,
#calendar-container .week-num:hover,
#calendar-container td:not(:empty):hover {
color:var(--color-text-day-active);
}
/* Headers */
.cm-formatting-header {
color:var(--headers) !important;
}
.empty-state-title,
.markdown-preview-view h1,
.HyperMD-header-1,
.cm-header-1 {
color:var(--h1);
}
.markdown-preview-view h2,
.HyperMD-header-2,
.cm-header-2 {
color:var(--h2);
}
.markdown-preview-view h3,
.HyperMD-header-3,
.cm-header-3 {
color:var(--h3);
}
.markdown-preview-view h4,
.HyperMD-header-4,
.cm-header-4 {
color:var(--h4);
}
.markdown-preview-view h5,
.HyperMD-header-5,
.cm-header-5 {
color:var(--h5);
}
.markdown-preview-view h6,
.HyperMD-header-6,
.cm-header-6 {
color:var(--h6);
}
/* Tags */
.frontmatter-container .tag,
.tag {
background-color: var(--tertiary-background);
color:var(--tag);
}
.tag:hover {
color:var(--icon-hover);
}
.cm-s-obsidian span.cm-hashtag {
background-color: var(--tertiary-background);
color:var(--tag);
}
/* Cursor */
.fancy-cursor .CodeMirror-cursor {
border-right:2px solid var(--cursor);
}
.cm-fat-cursor .CodeMirror-cursor, .cm-animate-fat-cursor { /* Vim Cursor */
background: var(--vim-cursor);
border-color: var(--vim-cursor);
opacity: 60%;
}
/* URLs */
.cm-s-obsidian span.cm-url {
color:var(--external-link-url);
}
/* External Links */
.cm-s-obsidian span.cm-link {
color:var(--external-link);
}
a,
.cm-link,
.cm-formatting-link,
.cm-url {
color: var(--external-link);
}
/* Internal Links */
.cm-s-obsidian span.cm-hmd-internal-link {
color:var(--internal-link);
}
.internal-link {
color: var(--internal-link);
}
/* Editor Mode Lists */
.cm-formatting-list {
color:var(--list) !important;
}
/* Editor Mode Quotes */
.cm-formatting-quote {
color:var(--quote-opening-modifier) !important;
}
/* Checkboxes */
.is-flashing input[type=checkbox]:checked,
input[type=checkbox]:checked {
background-color:var(--checkbox) !important;
border: var(--checkbox);
}
/* Toggle Switches */
.checkbox-container {
background-color:var(--toggle-off);
}
.checkbox-container:after {
background: var(--tertiary-background);
}
.checkbox-container.is-enabled {
background-color: var(--toggle-on);
}
/* Footnotes */
.footnote-backref {
color: var(--footnote); /* only applies to preview */
}
.cm-s-obsidian pre.HyperMD-footnote span.cm-hmd-footnote,
.cm-s-obsidian span.cm-footref, .footnote-link {
color: var(--footnote);
}
/* Folding Arrows */
ul > li:not(.task-list-item)::before {
color:var(--list);
}
ol > li::before {
color:var(--list);
}
/* Popovers */
.theme-dark.minimal-dark-black .popover {
background: var(--background-secondary);
}
/* Graph View */
.graph-view.color-fill { /* Circle When Not Hover */
color:var(--list);
}
.graph-view.color-fill-highlight { /* Circle When Hover */
color:var(--active-file);
}
.graph-view.color-line-highlight { /* Line When Hover */
color:var(--internal-link);
border:0;
}
.graph-view.color-circle { /* Circle Stroke */
color:var(--active-file);
}
.graph-view.color-fill-unresolved { /* Circle When Link Unresolved */
color:var(--internal-link-unresolved);
}
.graph-view.color-fill-tag { /* Tags */
color: var(--tag);
}
.graph-view.color-arrow { /* Arrows */
color: var(--internal-link);
}
/* Bold */
strong, .cm-strong {
color: var(--bold);
}
/* Italics */
em, .cm-em {
color: var(--italics);
}
/* Strikethrough */
s, del, .cm-strikethrough {
color: var(--strikethrough);
}
/* Highlight */
.markdown-preview-view mark {
background-color: var(--highlight);
color: var(--background-primary);
opacity: 80%;
}
.cm-s-obsidian span.cm-formatting-highlight, .cm-s-obsidian span.cm-highlight {
background-color: var(--highlight);
color: var(--background-primary);
opacity: 80%;
}
/* Command Palette Hotkeys */
.suggestion-item.is-selected .suggestion-hotkey{
color: var(--list)
}
/* Vault Launch Progress Bar */
.progress-bar-subline {
background-color: var(--tertiary-background);
}
.progress-bar-line {
background-color: var(--green);
}
/* Active Panes */
.workspace-leaf.mod-active .view-header-title { /* Highlight Active Pane Title */
color: var(--active-file);
}
.nav-file.is-active > .nav-file-title,
.nav-file.is-active > .nav-folder-title,
.nav-file.is-active > .nav-folder-collapse-indicator,
.nav-folder.is-active > .nav-file-title,
.nav-folder.is-active > .nav-folder-title,
.nav-folder.is-active > .nav-folder-collapse-indicator { /* Highlight Active Pane in Finder */
color: var(--active-file);
}
.side-dock-collapsible-section-header:not(.is-collapsed) { /* Highlight Active Section */
color: var(--active-file);
}
/* Block-IDs */
.cm-s-obsidian span.cm-blockid {
color: var(--block-id);
}
/* Math */
.cm-s-obsidian span.cm-math, .cm-s-obsidian span.hmd-fold-math-placeholder {
color: var(--math);
}
.cm-s-obsidian span.cm-formatting-math {
color: var(--math);
}
/* Code */
.markdown-preview-view code {
color: var(--inline-code);
}
code,
.cm-s-obsidian span.cm-inline-code {
color: var(--inline-code);
}
.cm-s-obsidian span.cm-inline-code:not(.cm-formatting):not(.cm-hmd-indented-code):not(.obsidian-search-match-highlight) {
color: var(--inline-code);
}
.cm-s-obsidian span.cm-inline-code.cm-hmd-indented-code {
color: var(--inline-code);
}
/* Code Syntax Highlights */
.language-css {
color: var(--purple);
}
.token {
color: var(--pink);
}
.language-css .token {
color: var(--pink);
}
.token.script {
color: var(--text-normal);
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.atrule, .token.attr-name, .token.attr-value {
color: var(--green);
}
.language-css .token.atrule {
color: var(--purple);
}
.language-html .token.attr-value, .language-markup .token.attr-value {
color: var(--yellow);
}
.token.boolean {
color: var(--purple);
}
.token.builtin, .token.class-name {
color: var(--cyan);
}
.token.comment {
color: var(--gray-1);
}
.token.constant {
color: var(--purple);
}
.language-javascript .token.constant {
color: var(--orange);
font-style: italic;
}
.token.entity {
color: var(--pink);
}
.language-css .token.entity {
color: var(--green);
}
.language-html .token.entity.named-entity {
color: var(--purple);
}
.language-html .token.entity:not(.named-entity) {
color: var(--pink);
}
.language-markup .token.entity.named-entity {
color: var(--purple);
}
.language-markup .token.entity:not(.named-entity) {
color: var(--pink);
}
.token.function {
color: var(--green);
}
.language-css .token.function {
color: var(--cyan);
}
.token.important, .token.keyword {
color: var(--pink);
}
.token.prolog {
color: var(--text-normal);
}
.token.property {
color: var(--orange);
}
.language-css .token.property {
color: var(--cyan);
}
.token.punctuation {
color: var(--pink);
}
.language-css .token.punctuation {
color: var(--orange);
}
.language-html .token.punctuation, .language-markup .token.punctuation {
color: var(--text-normal);
}
.token.selector {
color: var(--pink);
}
.language-css .token.selector {
color: var(--green);
}
.token.regex {
color: var(--red);
}
.language-css .token.rule:not(.atrule) {
color: var(--text-normal);
}
.token.string {
color: var(--yellow);
}
.token.tag {
color: var(--pink);
}
.token.url {
color: var(--cyan);
}
.language-css .token.url {
color: var(--orange);
}
.token.variable {
color: var(--gray-1);
}
.token.number {
color: var(--purple);
}
.token.operator {
color: var(--cyan);
}
.token.char {
color: var(--pink);
}
.token.symbol {
color: var(--yellow);
}
.token.deleted {
color: var(--red);
}
.token.namespace {
color: var(--red);
}
/* Warnings */
button.mod-warning {
color: var(--text-on-accent-warning);
} | 0.363421 | 0.068944 |
body {
background-image: url("../../images/intro/intro-bg@1x.jpg");
-webkit-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.container-fluid .header .container {
z-index: 999;
margin: 0 auto;
padding: 20px;
position: absolute;
top: 10%;
left: 0;
width: 100%;
}
.container-fluid .header .container .row .text h2 {
color: #fff;
font-size: 42px;
font-weight: bolder;
letter-spacing: 2px;
margin-top: 0;
}
.container-fluid .header .container .row .text h2 .yellow {
color: #f2dc01;
}
.container-fluid .header .container .row .text h2 .green {
color: #00B16A;
font-weight: 800;
font-size: 38px;
}
.container-fluid .header .container .row .text p {
color: #fff;
font-size: 22px;
margin: 20px 0;
}
.container-fluid .header .container .row .screen-video, .container-fluid .header .container .row .screen-image {
margin: 25px 0;
z-index: 3;
}
.container-fluid .header .container .row .screen-video img:hover, .container-fluid .header .container .row .screen-image img:hover {
-webkit-filter: grayscale(.3) brightness(0.7) drop-shadow(5px 5px 6px #fff);
filter: grayscale(.3) brightness(0.7) drop-shadow(5px 5px 6px #fff);
}
.container-fluid .header .container .row .screen-video span, .container-fluid .header .container .row .screen-image span {
display: block;
font-size: 24px;
font-weight: bold;
color: #fff;
margin: 20px 0;
}
.container-fluid .header .container .row .sep-icon {
padding: 150px 0 0 0;
z-index: 3;
}
.container-fluid .header .container .row .sep-icon i {
font-size: 54px;
font-weight: bold;
display: block;
color: #fff;
}
/* start of media queries ======================*/
@media screen and (min-width: 768px) {
body {
overflow: hidden;
}
}
@media screen and (max-width: 1048px) and (min-width: 768px) {
.col-sm-5 {
width: 39%;
}
.col-sm-2 {
width: 18%;
}
.col-sm-5 img {
width: 100%;
}
}
@media screen and (max-width: 768px) {
body {
height: auto;
background-repeat: repeat;
}
.container-fluid .header .container {
padding: 10px;
}
.container-fluid .header .container .row .text h2 {
font-size: 26px;
margin: 10px 0;
}
.container-fluid .header .container .row .text h2 .green {
font-size: 28px;
}
.container-fluid .header .container .row .text p {
font-size: 18px;
margin: 10px 0;
}
.container-fluid .header .container .row .screen-video, .container-fluid .header .container .row .screen-image {
margin: 10px 0;
}
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 200px;
height: 150px;
}
.container-fluid .header .container .row .screen-video span, .container-fluid .header .container .row .screen-image span {
font-size: 16px;
margin: 10px 0;
}
}
@media screen and (max-width: 768px) and (min-width: 360px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 300px;
height: 200px;
}
}
@media screen and (max-height: 570px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 300px;
height: 250px;
}
.container-fluid .header .container .row .text h2 {
margin: -50px 0 0;
}
}
@media screen and (max-height: 525px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 240px;
height: 180px;
}
}
@media screen and (max-height: 750px) and (min-height: 525px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 380px;
height: 300px;
}
} | assets/css/main-style/intro.css | body {
background-image: url("../../images/intro/intro-bg@1x.jpg");
-webkit-background-size: 100% 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.container-fluid .header .container {
z-index: 999;
margin: 0 auto;
padding: 20px;
position: absolute;
top: 10%;
left: 0;
width: 100%;
}
.container-fluid .header .container .row .text h2 {
color: #fff;
font-size: 42px;
font-weight: bolder;
letter-spacing: 2px;
margin-top: 0;
}
.container-fluid .header .container .row .text h2 .yellow {
color: #f2dc01;
}
.container-fluid .header .container .row .text h2 .green {
color: #00B16A;
font-weight: 800;
font-size: 38px;
}
.container-fluid .header .container .row .text p {
color: #fff;
font-size: 22px;
margin: 20px 0;
}
.container-fluid .header .container .row .screen-video, .container-fluid .header .container .row .screen-image {
margin: 25px 0;
z-index: 3;
}
.container-fluid .header .container .row .screen-video img:hover, .container-fluid .header .container .row .screen-image img:hover {
-webkit-filter: grayscale(.3) brightness(0.7) drop-shadow(5px 5px 6px #fff);
filter: grayscale(.3) brightness(0.7) drop-shadow(5px 5px 6px #fff);
}
.container-fluid .header .container .row .screen-video span, .container-fluid .header .container .row .screen-image span {
display: block;
font-size: 24px;
font-weight: bold;
color: #fff;
margin: 20px 0;
}
.container-fluid .header .container .row .sep-icon {
padding: 150px 0 0 0;
z-index: 3;
}
.container-fluid .header .container .row .sep-icon i {
font-size: 54px;
font-weight: bold;
display: block;
color: #fff;
}
/* start of media queries ======================*/
@media screen and (min-width: 768px) {
body {
overflow: hidden;
}
}
@media screen and (max-width: 1048px) and (min-width: 768px) {
.col-sm-5 {
width: 39%;
}
.col-sm-2 {
width: 18%;
}
.col-sm-5 img {
width: 100%;
}
}
@media screen and (max-width: 768px) {
body {
height: auto;
background-repeat: repeat;
}
.container-fluid .header .container {
padding: 10px;
}
.container-fluid .header .container .row .text h2 {
font-size: 26px;
margin: 10px 0;
}
.container-fluid .header .container .row .text h2 .green {
font-size: 28px;
}
.container-fluid .header .container .row .text p {
font-size: 18px;
margin: 10px 0;
}
.container-fluid .header .container .row .screen-video, .container-fluid .header .container .row .screen-image {
margin: 10px 0;
}
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 200px;
height: 150px;
}
.container-fluid .header .container .row .screen-video span, .container-fluid .header .container .row .screen-image span {
font-size: 16px;
margin: 10px 0;
}
}
@media screen and (max-width: 768px) and (min-width: 360px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 300px;
height: 200px;
}
}
@media screen and (max-height: 570px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 300px;
height: 250px;
}
.container-fluid .header .container .row .text h2 {
margin: -50px 0 0;
}
}
@media screen and (max-height: 525px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 240px;
height: 180px;
}
}
@media screen and (max-height: 750px) and (min-height: 525px) {
.container-fluid .header .container .row .screen-video img, .container-fluid .header .container .row .screen-image img {
width: 380px;
height: 300px;
}
} | 0.366476 | 0.063686 |
html {
/*
* You can use these generic variables in your elements for easy theming.
* For example, if all your elements use `--primary-text-color` as its main
* color, then switching from a light to a dark theme is just a matter of
* changing the value of `--primary-text-color` in your application.
*/
--primary-text-color: var(--light-theme-text-color) !important;
--primary-background-color: var(--light-theme-background-color) !important;
--secondary-text-color: var(--light-theme-secondary-color) !important;
--disabled-text-color: var(--light-theme-disabled-color) !important;
--divider-color: var(--light-theme-divider-color) !important;
--error-color: var(--paper-deep-orange-a700) !important;
/*
* Primary and accent colors. Also see color.html for more colors.
*/
--primary-color: #673ab7 !important;
--light-primary-color: #673AB7 !important;
--dark-primary-color: #4527a0 !important;
--accent-color: #ffff00 !important;
--light-accent-color: #ffff8d !important;
--dark-accent-color: #ffea00 !important;
/*
* Material Design Light background theme
*/
--light-theme-background-color: #fafafa !important;
--light-theme-base-color: #000000 !important;
--light-theme-text-color: #212121 !important;
--light-theme-secondary-color: #737373 !important;
/* for secondary text and icons */
--light-theme-disabled-color: #9b9b9b !important;
/* disabled/hint text */
--light-theme-divider-color: #dbdbdb !important;
/*
* Material Design Dark background theme
*/
--dark-theme-background-color: #212121 !important;
--dark-theme-base-color: #ffffff !important;
--dark-theme-text-color: #ffffff !important;
--dark-theme-secondary-color: #bcbcbc !important;
/* for secondary text and icons */
--dark-theme-disabled-color: #646464 !important;
/* disabled/hint text */
--dark-theme-divider-color: #3c3c3c !important;
/*
* Deprecated values because of their confusing names.
*/
--text-primary-color: var(--dark-theme-text-color) !important;
--default-primary-color: var(--primary-color) !important;
}
/* Monkeypatch */
vaadin-combo-box-overlay {
z-index: 999;
} | src/css/app-theme.css | html {
/*
* You can use these generic variables in your elements for easy theming.
* For example, if all your elements use `--primary-text-color` as its main
* color, then switching from a light to a dark theme is just a matter of
* changing the value of `--primary-text-color` in your application.
*/
--primary-text-color: var(--light-theme-text-color) !important;
--primary-background-color: var(--light-theme-background-color) !important;
--secondary-text-color: var(--light-theme-secondary-color) !important;
--disabled-text-color: var(--light-theme-disabled-color) !important;
--divider-color: var(--light-theme-divider-color) !important;
--error-color: var(--paper-deep-orange-a700) !important;
/*
* Primary and accent colors. Also see color.html for more colors.
*/
--primary-color: #673ab7 !important;
--light-primary-color: #673AB7 !important;
--dark-primary-color: #4527a0 !important;
--accent-color: #ffff00 !important;
--light-accent-color: #ffff8d !important;
--dark-accent-color: #ffea00 !important;
/*
* Material Design Light background theme
*/
--light-theme-background-color: #fafafa !important;
--light-theme-base-color: #000000 !important;
--light-theme-text-color: #212121 !important;
--light-theme-secondary-color: #737373 !important;
/* for secondary text and icons */
--light-theme-disabled-color: #9b9b9b !important;
/* disabled/hint text */
--light-theme-divider-color: #dbdbdb !important;
/*
* Material Design Dark background theme
*/
--dark-theme-background-color: #212121 !important;
--dark-theme-base-color: #ffffff !important;
--dark-theme-text-color: #ffffff !important;
--dark-theme-secondary-color: #bcbcbc !important;
/* for secondary text and icons */
--dark-theme-disabled-color: #646464 !important;
/* disabled/hint text */
--dark-theme-divider-color: #3c3c3c !important;
/*
* Deprecated values because of their confusing names.
*/
--text-primary-color: var(--dark-theme-text-color) !important;
--default-primary-color: var(--primary-color) !important;
}
/* Monkeypatch */
vaadin-combo-box-overlay {
z-index: 999;
} | 0.526586 | 0.057573 |
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=886075071e23d1aa74bb)
* Config saved to config.json and https://gist.github.com/886075071e23d1aa74bb
*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/* line 12, ../dev/sass/_bootstrap.scss */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
/* line 17, ../dev/sass/_bootstrap.scss */
body {
margin: 0;
}
/* line 31, ../dev/sass/_bootstrap.scss */
article,
aside,
details,
figcaption,
figure,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
/* line 37, ../dev/sass/_bootstrap.scss */
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
/* line 41, ../dev/sass/_bootstrap.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 46, ../dev/sass/_bootstrap.scss */
[hidden],
template {
display: none;
}
/* line 49, ../dev/sass/_bootstrap.scss */
a {
background: transparent;
}
/* line 53, ../dev/sass/_bootstrap.scss */
a:active,
a:hover {
outline: 0;
}
/* line 56, ../dev/sass/_bootstrap.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 60, ../dev/sass/_bootstrap.scss */
b,
strong {
font-weight: bold;
}
/* line 63, ../dev/sass/_bootstrap.scss */
dfn {
font-style: italic;
}
/* line 66, ../dev/sass/_bootstrap.scss */
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* line 70, ../dev/sass/_bootstrap.scss */
mark {
background: #ff0;
color: #000;
}
/* line 74, ../dev/sass/_bootstrap.scss */
small {
font-size: 80%;
}
/* line 78, ../dev/sass/_bootstrap.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 84, ../dev/sass/_bootstrap.scss */
sup {
top: -0.5em;
}
/* line 87, ../dev/sass/_bootstrap.scss */
sub {
bottom: -0.25em;
}
/* line 90, ../dev/sass/_bootstrap.scss */
img {
border: 0;
}
/* line 93, ../dev/sass/_bootstrap.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 96, ../dev/sass/_bootstrap.scss */
figure {
margin: 1em 40px;
}
/* line 99, ../dev/sass/_bootstrap.scss */
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
/* line 104, ../dev/sass/_bootstrap.scss */
pre {
overflow: auto;
}
/* line 110, ../dev/sass/_bootstrap.scss */
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
/* line 118, ../dev/sass/_bootstrap.scss */
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
/* line 123, ../dev/sass/_bootstrap.scss */
button {
overflow: visible;
}
/* line 127, ../dev/sass/_bootstrap.scss */
button,
select {
text-transform: none;
}
/* line 133, ../dev/sass/_bootstrap.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
/* line 138, ../dev/sass/_bootstrap.scss */
button[disabled],
html input[disabled] {
cursor: default;
}
/* line 142, ../dev/sass/_bootstrap.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 146, ../dev/sass/_bootstrap.scss */
input {
line-height: normal;
}
/* line 150, ../dev/sass/_bootstrap.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 155, ../dev/sass/_bootstrap.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/* line 158, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 165, ../dev/sass/_bootstrap.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/* line 168, ../dev/sass/_bootstrap.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 173, ../dev/sass/_bootstrap.scss */
legend {
border: 0;
padding: 0;
}
/* line 177, ../dev/sass/_bootstrap.scss */
textarea {
overflow: auto;
}
/* line 180, ../dev/sass/_bootstrap.scss */
optgroup {
font-weight: bold;
}
/* line 183, ../dev/sass/_bootstrap.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 188, ../dev/sass/_bootstrap.scss */
td,
th {
padding: 0;
}
@media print {
/* line 192, ../dev/sass/_bootstrap.scss */
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important;
}
/* line 199, ../dev/sass/_bootstrap.scss */
a,
a:visited {
text-decoration: underline;
}
/* line 202, ../dev/sass/_bootstrap.scss */
a[href]:after {
content: " (" attr(href) ")";
}
/* line 205, ../dev/sass/_bootstrap.scss */
abbr[title]:after {
content: " (" attr(title) ")";
}
/* line 209, ../dev/sass/_bootstrap.scss */
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
/* line 213, ../dev/sass/_bootstrap.scss */
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/* line 217, ../dev/sass/_bootstrap.scss */
thead {
display: table-header-group;
}
/* line 221, ../dev/sass/_bootstrap.scss */
tr,
img {
page-break-inside: avoid;
}
/* line 224, ../dev/sass/_bootstrap.scss */
img {
max-width: 100% !important;
}
/* line 229, ../dev/sass/_bootstrap.scss */
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
/* line 234, ../dev/sass/_bootstrap.scss */
h2,
h3 {
page-break-after: avoid;
}
/* line 237, ../dev/sass/_bootstrap.scss */
select {
background: #fff !important;
}
/* line 240, ../dev/sass/_bootstrap.scss */
.navbar {
display: none;
}
/* line 244, ../dev/sass/_bootstrap.scss */
.table td,
.table th {
background-color: #fff !important;
}
/* line 248, ../dev/sass/_bootstrap.scss */
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
/* line 251, ../dev/sass/_bootstrap.scss */
.label {
border: 1px solid #000;
}
/* line 254, ../dev/sass/_bootstrap.scss */
.table {
border-collapse: collapse !important;
}
/* line 258, ../dev/sass/_bootstrap.scss */
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url("../fonts/glyphicons-halflings-regular.eot");
src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
/* line 267, ../dev/sass/_bootstrap.scss */
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 278, ../dev/sass/_bootstrap.scss */
.glyphicon-asterisk:before {
content: "\2a";
}
/* line 281, ../dev/sass/_bootstrap.scss */
.glyphicon-plus:before {
content: "\2b";
}
/* line 284, ../dev/sass/_bootstrap.scss */
.glyphicon-euro:before {
content: "\20ac";
}
/* line 287, ../dev/sass/_bootstrap.scss */
.glyphicon-minus:before {
content: "\2212";
}
/* line 290, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud:before {
content: "\2601";
}
/* line 293, ../dev/sass/_bootstrap.scss */
.glyphicon-envelope:before {
content: "\2709";
}
/* line 296, ../dev/sass/_bootstrap.scss */
.glyphicon-pencil:before {
content: "\270f";
}
/* line 299, ../dev/sass/_bootstrap.scss */
.glyphicon-glass:before {
content: "\e001";
}
/* line 302, ../dev/sass/_bootstrap.scss */
.glyphicon-music:before {
content: "\e002";
}
/* line 305, ../dev/sass/_bootstrap.scss */
.glyphicon-search:before {
content: "\e003";
}
/* line 308, ../dev/sass/_bootstrap.scss */
.glyphicon-heart:before {
content: "\e005";
}
/* line 311, ../dev/sass/_bootstrap.scss */
.glyphicon-star:before {
content: "\e006";
}
/* line 314, ../dev/sass/_bootstrap.scss */
.glyphicon-star-empty:before {
content: "\e007";
}
/* line 317, ../dev/sass/_bootstrap.scss */
.glyphicon-user:before {
content: "\e008";
}
/* line 320, ../dev/sass/_bootstrap.scss */
.glyphicon-film:before {
content: "\e009";
}
/* line 323, ../dev/sass/_bootstrap.scss */
.glyphicon-th-large:before {
content: "\e010";
}
/* line 326, ../dev/sass/_bootstrap.scss */
.glyphicon-th:before {
content: "\e011";
}
/* line 329, ../dev/sass/_bootstrap.scss */
.glyphicon-th-list:before {
content: "\e012";
}
/* line 332, ../dev/sass/_bootstrap.scss */
.glyphicon-ok:before {
content: "\e013";
}
/* line 335, ../dev/sass/_bootstrap.scss */
.glyphicon-remove:before {
content: "\e014";
}
/* line 338, ../dev/sass/_bootstrap.scss */
.glyphicon-zoom-in:before {
content: "\e015";
}
/* line 341, ../dev/sass/_bootstrap.scss */
.glyphicon-zoom-out:before {
content: "\e016";
}
/* line 344, ../dev/sass/_bootstrap.scss */
.glyphicon-off:before {
content: "\e017";
}
/* line 347, ../dev/sass/_bootstrap.scss */
.glyphicon-signal:before {
content: "\e018";
}
/* line 350, ../dev/sass/_bootstrap.scss */
.glyphicon-cog:before {
content: "\e019";
}
/* line 353, ../dev/sass/_bootstrap.scss */
.glyphicon-trash:before {
content: "\e020";
}
/* line 356, ../dev/sass/_bootstrap.scss */
.glyphicon-home:before {
content: "\e021";
}
/* line 359, ../dev/sass/_bootstrap.scss */
.glyphicon-file:before {
content: "\e022";
}
/* line 362, ../dev/sass/_bootstrap.scss */
.glyphicon-time:before {
content: "\e023";
}
/* line 365, ../dev/sass/_bootstrap.scss */
.glyphicon-road:before {
content: "\e024";
}
/* line 368, ../dev/sass/_bootstrap.scss */
.glyphicon-download-alt:before {
content: "\e025";
}
/* line 371, ../dev/sass/_bootstrap.scss */
.glyphicon-download:before {
content: "\e026";
}
/* line 374, ../dev/sass/_bootstrap.scss */
.glyphicon-upload:before {
content: "\e027";
}
/* line 377, ../dev/sass/_bootstrap.scss */
.glyphicon-inbox:before {
content: "\e028";
}
/* line 380, ../dev/sass/_bootstrap.scss */
.glyphicon-play-circle:before {
content: "\e029";
}
/* line 383, ../dev/sass/_bootstrap.scss */
.glyphicon-repeat:before {
content: "\e030";
}
/* line 386, ../dev/sass/_bootstrap.scss */
.glyphicon-refresh:before {
content: "\e031";
}
/* line 389, ../dev/sass/_bootstrap.scss */
.glyphicon-list-alt:before {
content: "\e032";
}
/* line 392, ../dev/sass/_bootstrap.scss */
.glyphicon-lock:before {
content: "\e033";
}
/* line 395, ../dev/sass/_bootstrap.scss */
.glyphicon-flag:before {
content: "\e034";
}
/* line 398, ../dev/sass/_bootstrap.scss */
.glyphicon-headphones:before {
content: "\e035";
}
/* line 401, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-off:before {
content: "\e036";
}
/* line 404, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-down:before {
content: "\e037";
}
/* line 407, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-up:before {
content: "\e038";
}
/* line 410, ../dev/sass/_bootstrap.scss */
.glyphicon-qrcode:before {
content: "\e039";
}
/* line 413, ../dev/sass/_bootstrap.scss */
.glyphicon-barcode:before {
content: "\e040";
}
/* line 416, ../dev/sass/_bootstrap.scss */
.glyphicon-tag:before {
content: "\e041";
}
/* line 419, ../dev/sass/_bootstrap.scss */
.glyphicon-tags:before {
content: "\e042";
}
/* line 422, ../dev/sass/_bootstrap.scss */
.glyphicon-book:before {
content: "\e043";
}
/* line 425, ../dev/sass/_bootstrap.scss */
.glyphicon-bookmark:before {
content: "\e044";
}
/* line 428, ../dev/sass/_bootstrap.scss */
.glyphicon-print:before {
content: "\e045";
}
/* line 431, ../dev/sass/_bootstrap.scss */
.glyphicon-camera:before {
content: "\e046";
}
/* line 434, ../dev/sass/_bootstrap.scss */
.glyphicon-font:before {
content: "\e047";
}
/* line 437, ../dev/sass/_bootstrap.scss */
.glyphicon-bold:before {
content: "\e048";
}
/* line 440, ../dev/sass/_bootstrap.scss */
.glyphicon-italic:before {
content: "\e049";
}
/* line 443, ../dev/sass/_bootstrap.scss */
.glyphicon-text-height:before {
content: "\e050";
}
/* line 446, ../dev/sass/_bootstrap.scss */
.glyphicon-text-width:before {
content: "\e051";
}
/* line 449, ../dev/sass/_bootstrap.scss */
.glyphicon-align-left:before {
content: "\e052";
}
/* line 452, ../dev/sass/_bootstrap.scss */
.glyphicon-align-center:before {
content: "\e053";
}
/* line 455, ../dev/sass/_bootstrap.scss */
.glyphicon-align-right:before {
content: "\e054";
}
/* line 458, ../dev/sass/_bootstrap.scss */
.glyphicon-align-justify:before {
content: "\e055";
}
/* line 461, ../dev/sass/_bootstrap.scss */
.glyphicon-list:before {
content: "\e056";
}
/* line 464, ../dev/sass/_bootstrap.scss */
.glyphicon-indent-left:before {
content: "\e057";
}
/* line 467, ../dev/sass/_bootstrap.scss */
.glyphicon-indent-right:before {
content: "\e058";
}
/* line 470, ../dev/sass/_bootstrap.scss */
.glyphicon-facetime-video:before {
content: "\e059";
}
/* line 473, ../dev/sass/_bootstrap.scss */
.glyphicon-picture:before {
content: "\e060";
}
/* line 476, ../dev/sass/_bootstrap.scss */
.glyphicon-map-marker:before {
content: "\e062";
}
/* line 479, ../dev/sass/_bootstrap.scss */
.glyphicon-adjust:before {
content: "\e063";
}
/* line 482, ../dev/sass/_bootstrap.scss */
.glyphicon-tint:before {
content: "\e064";
}
/* line 485, ../dev/sass/_bootstrap.scss */
.glyphicon-edit:before {
content: "\e065";
}
/* line 488, ../dev/sass/_bootstrap.scss */
.glyphicon-share:before {
content: "\e066";
}
/* line 491, ../dev/sass/_bootstrap.scss */
.glyphicon-check:before {
content: "\e067";
}
/* line 494, ../dev/sass/_bootstrap.scss */
.glyphicon-move:before {
content: "\e068";
}
/* line 497, ../dev/sass/_bootstrap.scss */
.glyphicon-step-backward:before {
content: "\e069";
}
/* line 500, ../dev/sass/_bootstrap.scss */
.glyphicon-fast-backward:before {
content: "\e070";
}
/* line 503, ../dev/sass/_bootstrap.scss */
.glyphicon-backward:before {
content: "\e071";
}
/* line 506, ../dev/sass/_bootstrap.scss */
.glyphicon-play:before {
content: "\e072";
}
/* line 509, ../dev/sass/_bootstrap.scss */
.glyphicon-pause:before {
content: "\e073";
}
/* line 512, ../dev/sass/_bootstrap.scss */
.glyphicon-stop:before {
content: "\e074";
}
/* line 515, ../dev/sass/_bootstrap.scss */
.glyphicon-forward:before {
content: "\e075";
}
/* line 518, ../dev/sass/_bootstrap.scss */
.glyphicon-fast-forward:before {
content: "\e076";
}
/* line 521, ../dev/sass/_bootstrap.scss */
.glyphicon-step-forward:before {
content: "\e077";
}
/* line 524, ../dev/sass/_bootstrap.scss */
.glyphicon-eject:before {
content: "\e078";
}
/* line 527, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-left:before {
content: "\e079";
}
/* line 530, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-right:before {
content: "\e080";
}
/* line 533, ../dev/sass/_bootstrap.scss */
.glyphicon-plus-sign:before {
content: "\e081";
}
/* line 536, ../dev/sass/_bootstrap.scss */
.glyphicon-minus-sign:before {
content: "\e082";
}
/* line 539, ../dev/sass/_bootstrap.scss */
.glyphicon-remove-sign:before {
content: "\e083";
}
/* line 542, ../dev/sass/_bootstrap.scss */
.glyphicon-ok-sign:before {
content: "\e084";
}
/* line 545, ../dev/sass/_bootstrap.scss */
.glyphicon-question-sign:before {
content: "\e085";
}
/* line 548, ../dev/sass/_bootstrap.scss */
.glyphicon-info-sign:before {
content: "\e086";
}
/* line 551, ../dev/sass/_bootstrap.scss */
.glyphicon-screenshot:before {
content: "\e087";
}
/* line 554, ../dev/sass/_bootstrap.scss */
.glyphicon-remove-circle:before {
content: "\e088";
}
/* line 557, ../dev/sass/_bootstrap.scss */
.glyphicon-ok-circle:before {
content: "\e089";
}
/* line 560, ../dev/sass/_bootstrap.scss */
.glyphicon-ban-circle:before {
content: "\e090";
}
/* line 563, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-left:before {
content: "\e091";
}
/* line 566, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-right:before {
content: "\e092";
}
/* line 569, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-up:before {
content: "\e093";
}
/* line 572, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-down:before {
content: "\e094";
}
/* line 575, ../dev/sass/_bootstrap.scss */
.glyphicon-share-alt:before {
content: "\e095";
}
/* line 578, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-full:before {
content: "\e096";
}
/* line 581, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-small:before {
content: "\e097";
}
/* line 584, ../dev/sass/_bootstrap.scss */
.glyphicon-exclamation-sign:before {
content: "\e101";
}
/* line 587, ../dev/sass/_bootstrap.scss */
.glyphicon-gift:before {
content: "\e102";
}
/* line 590, ../dev/sass/_bootstrap.scss */
.glyphicon-leaf:before {
content: "\e103";
}
/* line 593, ../dev/sass/_bootstrap.scss */
.glyphicon-fire:before {
content: "\e104";
}
/* line 596, ../dev/sass/_bootstrap.scss */
.glyphicon-eye-open:before {
content: "\e105";
}
/* line 599, ../dev/sass/_bootstrap.scss */
.glyphicon-eye-close:before {
content: "\e106";
}
/* line 602, ../dev/sass/_bootstrap.scss */
.glyphicon-warning-sign:before {
content: "\e107";
}
/* line 605, ../dev/sass/_bootstrap.scss */
.glyphicon-plane:before {
content: "\e108";
}
/* line 608, ../dev/sass/_bootstrap.scss */
.glyphicon-calendar:before {
content: "\e109";
}
/* line 611, ../dev/sass/_bootstrap.scss */
.glyphicon-random:before {
content: "\e110";
}
/* line 614, ../dev/sass/_bootstrap.scss */
.glyphicon-comment:before {
content: "\e111";
}
/* line 617, ../dev/sass/_bootstrap.scss */
.glyphicon-magnet:before {
content: "\e112";
}
/* line 620, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-up:before {
content: "\e113";
}
/* line 623, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-down:before {
content: "\e114";
}
/* line 626, ../dev/sass/_bootstrap.scss */
.glyphicon-retweet:before {
content: "\e115";
}
/* line 629, ../dev/sass/_bootstrap.scss */
.glyphicon-shopping-cart:before {
content: "\e116";
}
/* line 632, ../dev/sass/_bootstrap.scss */
.glyphicon-folder-close:before {
content: "\e117";
}
/* line 635, ../dev/sass/_bootstrap.scss */
.glyphicon-folder-open:before {
content: "\e118";
}
/* line 638, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-vertical:before {
content: "\e119";
}
/* line 641, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-horizontal:before {
content: "\e120";
}
/* line 644, ../dev/sass/_bootstrap.scss */
.glyphicon-hdd:before {
content: "\e121";
}
/* line 647, ../dev/sass/_bootstrap.scss */
.glyphicon-bullhorn:before {
content: "\e122";
}
/* line 650, ../dev/sass/_bootstrap.scss */
.glyphicon-bell:before {
content: "\e123";
}
/* line 653, ../dev/sass/_bootstrap.scss */
.glyphicon-certificate:before {
content: "\e124";
}
/* line 656, ../dev/sass/_bootstrap.scss */
.glyphicon-thumbs-up:before {
content: "\e125";
}
/* line 659, ../dev/sass/_bootstrap.scss */
.glyphicon-thumbs-down:before {
content: "\e126";
}
/* line 662, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-right:before {
content: "\e127";
}
/* line 665, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-left:before {
content: "\e128";
}
/* line 668, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-up:before {
content: "\e129";
}
/* line 671, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-down:before {
content: "\e130";
}
/* line 674, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
/* line 677, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
/* line 680, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
/* line 683, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
/* line 686, ../dev/sass/_bootstrap.scss */
.glyphicon-globe:before {
content: "\e135";
}
/* line 689, ../dev/sass/_bootstrap.scss */
.glyphicon-wrench:before {
content: "\e136";
}
/* line 692, ../dev/sass/_bootstrap.scss */
.glyphicon-tasks:before {
content: "\e137";
}
/* line 695, ../dev/sass/_bootstrap.scss */
.glyphicon-filter:before {
content: "\e138";
}
/* line 698, ../dev/sass/_bootstrap.scss */
.glyphicon-briefcase:before {
content: "\e139";
}
/* line 701, ../dev/sass/_bootstrap.scss */
.glyphicon-fullscreen:before {
content: "\e140";
}
/* line 704, ../dev/sass/_bootstrap.scss */
.glyphicon-dashboard:before {
content: "\e141";
}
/* line 707, ../dev/sass/_bootstrap.scss */
.glyphicon-paperclip:before {
content: "\e142";
}
/* line 710, ../dev/sass/_bootstrap.scss */
.glyphicon-heart-empty:before {
content: "\e143";
}
/* line 713, ../dev/sass/_bootstrap.scss */
.glyphicon-link:before {
content: "\e144";
}
/* line 716, ../dev/sass/_bootstrap.scss */
.glyphicon-phone:before {
content: "\e145";
}
/* line 719, ../dev/sass/_bootstrap.scss */
.glyphicon-pushpin:before {
content: "\e146";
}
/* line 722, ../dev/sass/_bootstrap.scss */
.glyphicon-usd:before {
content: "\e148";
}
/* line 725, ../dev/sass/_bootstrap.scss */
.glyphicon-gbp:before {
content: "\e149";
}
/* line 728, ../dev/sass/_bootstrap.scss */
.glyphicon-sort:before {
content: "\e150";
}
/* line 731, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
/* line 734, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
/* line 737, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-order:before {
content: "\e153";
}
/* line 740, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
/* line 743, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
/* line 746, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
/* line 749, ../dev/sass/_bootstrap.scss */
.glyphicon-unchecked:before {
content: "\e157";
}
/* line 752, ../dev/sass/_bootstrap.scss */
.glyphicon-expand:before {
content: "\e158";
}
/* line 755, ../dev/sass/_bootstrap.scss */
.glyphicon-collapse-down:before {
content: "\e159";
}
/* line 758, ../dev/sass/_bootstrap.scss */
.glyphicon-collapse-up:before {
content: "\e160";
}
/* line 761, ../dev/sass/_bootstrap.scss */
.glyphicon-log-in:before {
content: "\e161";
}
/* line 764, ../dev/sass/_bootstrap.scss */
.glyphicon-flash:before {
content: "\e162";
}
/* line 767, ../dev/sass/_bootstrap.scss */
.glyphicon-log-out:before {
content: "\e163";
}
/* line 770, ../dev/sass/_bootstrap.scss */
.glyphicon-new-window:before {
content: "\e164";
}
/* line 773, ../dev/sass/_bootstrap.scss */
.glyphicon-record:before {
content: "\e165";
}
/* line 776, ../dev/sass/_bootstrap.scss */
.glyphicon-save:before {
content: "\e166";
}
/* line 779, ../dev/sass/_bootstrap.scss */
.glyphicon-open:before {
content: "\e167";
}
/* line 782, ../dev/sass/_bootstrap.scss */
.glyphicon-saved:before {
content: "\e168";
}
/* line 785, ../dev/sass/_bootstrap.scss */
.glyphicon-import:before {
content: "\e169";
}
/* line 788, ../dev/sass/_bootstrap.scss */
.glyphicon-export:before {
content: "\e170";
}
/* line 791, ../dev/sass/_bootstrap.scss */
.glyphicon-send:before {
content: "\e171";
}
/* line 794, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-disk:before {
content: "\e172";
}
/* line 797, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-saved:before {
content: "\e173";
}
/* line 800, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-remove:before {
content: "\e174";
}
/* line 803, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-save:before {
content: "\e175";
}
/* line 806, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-open:before {
content: "\e176";
}
/* line 809, ../dev/sass/_bootstrap.scss */
.glyphicon-credit-card:before {
content: "\e177";
}
/* line 812, ../dev/sass/_bootstrap.scss */
.glyphicon-transfer:before {
content: "\e178";
}
/* line 815, ../dev/sass/_bootstrap.scss */
.glyphicon-cutlery:before {
content: "\e179";
}
/* line 818, ../dev/sass/_bootstrap.scss */
.glyphicon-header:before {
content: "\e180";
}
/* line 821, ../dev/sass/_bootstrap.scss */
.glyphicon-compressed:before {
content: "\e181";
}
/* line 824, ../dev/sass/_bootstrap.scss */
.glyphicon-earphone:before {
content: "\e182";
}
/* line 827, ../dev/sass/_bootstrap.scss */
.glyphicon-phone-alt:before {
content: "\e183";
}
/* line 830, ../dev/sass/_bootstrap.scss */
.glyphicon-tower:before {
content: "\e184";
}
/* line 833, ../dev/sass/_bootstrap.scss */
.glyphicon-stats:before {
content: "\e185";
}
/* line 836, ../dev/sass/_bootstrap.scss */
.glyphicon-sd-video:before {
content: "\e186";
}
/* line 839, ../dev/sass/_bootstrap.scss */
.glyphicon-hd-video:before {
content: "\e187";
}
/* line 842, ../dev/sass/_bootstrap.scss */
.glyphicon-subtitles:before {
content: "\e188";
}
/* line 845, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-stereo:before {
content: "\e189";
}
/* line 848, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-dolby:before {
content: "\e190";
}
/* line 851, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-5-1:before {
content: "\e191";
}
/* line 854, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-6-1:before {
content: "\e192";
}
/* line 857, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-7-1:before {
content: "\e193";
}
/* line 860, ../dev/sass/_bootstrap.scss */
.glyphicon-copyright-mark:before {
content: "\e194";
}
/* line 863, ../dev/sass/_bootstrap.scss */
.glyphicon-registration-mark:before {
content: "\e195";
}
/* line 866, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud-download:before {
content: "\e197";
}
/* line 869, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud-upload:before {
content: "\e198";
}
/* line 872, ../dev/sass/_bootstrap.scss */
.glyphicon-tree-conifer:before {
content: "\e199";
}
/* line 875, ../dev/sass/_bootstrap.scss */
.glyphicon-tree-deciduous:before {
content: "\e200";
}
/* line 878, ../dev/sass/_bootstrap.scss */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 884, ../dev/sass/_bootstrap.scss */
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 889, ../dev/sass/_bootstrap.scss */
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 893, ../dev/sass/_bootstrap.scss */
body {
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #FFFFFF;
}
/* line 903, ../dev/sass/_bootstrap.scss */
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
/* line 908, ../dev/sass/_bootstrap.scss */
a {
color: #7e7e7e;
text-decoration: none;
}
/* line 913, ../dev/sass/_bootstrap.scss */
a:hover,
a:focus {
color: #7e7e7e;
}
/* line 917, ../dev/sass/_bootstrap.scss */
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 922, ../dev/sass/_bootstrap.scss */
figure {
margin: 0;
}
/* line 925, ../dev/sass/_bootstrap.scss */
img {
vertical-align: middle;
}
/* line 928, ../dev/sass/_bootstrap.scss */
.img-responsive {
display: block;
width: 100% \9;
max-width: 100%;
height: auto;
margin: auto;
}
/* line 934, ../dev/sass/_bootstrap.scss */
.img-rounded {
border-radius: 6px;
}
/* line 937, ../dev/sass/_bootstrap.scss */
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
width: 100% \9;
max-width: 100%;
height: auto;
}
/* line 951, ../dev/sass/_bootstrap.scss */
.img-circle {
border-radius: 50%;
}
/* line 954, ../dev/sass/_bootstrap.scss */
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee;
}
/* line 960, ../dev/sass/_bootstrap.scss */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
/* line 971, ../dev/sass/_bootstrap.scss */
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
/* line 990, ../dev/sass/_bootstrap.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
/* line 1019, ../dev/sass/_bootstrap.scss */
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
/* line 1029, ../dev/sass/_bootstrap.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
/* line 1044, ../dev/sass/_bootstrap.scss */
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
/* line 1052, ../dev/sass/_bootstrap.scss */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
/* line 1067, ../dev/sass/_bootstrap.scss */
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
/* line 1071, ../dev/sass/_bootstrap.scss */
h1,
.h1 {
font-size: 36px;
}
/* line 1075, ../dev/sass/_bootstrap.scss */
h2,
.h2 {
font-size: 30px;
}
/* line 1079, ../dev/sass/_bootstrap.scss */
h3,
.h3 {
font-size: 24px;
}
/* line 1083, ../dev/sass/_bootstrap.scss */
h4,
.h4 {
font-size: 18px;
}
/* line 1087, ../dev/sass/_bootstrap.scss */
h5,
.h5 {
font-size: 14px;
}
/* line 1091, ../dev/sass/_bootstrap.scss */
h6,
.h6 {
font-size: 12px;
}
/* line 1094, ../dev/sass/_bootstrap.scss */
p {
margin: 0 0 10px;
}
/* line 1097, ../dev/sass/_bootstrap.scss */
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
/* line 1104, ../dev/sass/_bootstrap.scss */
.lead {
font-size: 21px;
}
}
/* line 1109, ../dev/sass/_bootstrap.scss */
small,
.small {
font-size: 85%;
}
/* line 1112, ../dev/sass/_bootstrap.scss */
cite {
font-style: normal;
}
/* line 1116, ../dev/sass/_bootstrap.scss */
mark,
.mark {
background-color: #fcf8e3;
padding: .2em;
}
/* line 1120, ../dev/sass/_bootstrap.scss */
.text-left {
text-align: left;
}
/* line 1123, ../dev/sass/_bootstrap.scss */
.text-right {
text-align: right;
}
/* line 1126, ../dev/sass/_bootstrap.scss */
.text-center {
text-align: center;
}
/* line 1129, ../dev/sass/_bootstrap.scss */
.text-justify {
text-align: justify;
}
/* line 1132, ../dev/sass/_bootstrap.scss */
.text-nowrap {
white-space: nowrap;
}
/* line 1135, ../dev/sass/_bootstrap.scss */
.text-lowercase {
text-transform: lowercase;
}
/* line 1138, ../dev/sass/_bootstrap.scss */
.text-uppercase {
text-transform: uppercase;
}
/* line 1141, ../dev/sass/_bootstrap.scss */
.text-capitalize {
text-transform: capitalize;
}
/* line 1144, ../dev/sass/_bootstrap.scss */
.text-muted {
color: #777777;
}
/* line 1147, ../dev/sass/_bootstrap.scss */
.text-primary {
color: #428bca;
}
/* line 1150, ../dev/sass/_bootstrap.scss */
a.text-primary:hover {
color: #3071a9;
}
/* line 1153, ../dev/sass/_bootstrap.scss */
.text-success {
color: #3c763d;
}
/* line 1156, ../dev/sass/_bootstrap.scss */
a.text-success:hover {
color: #2b542c;
}
/* line 1159, ../dev/sass/_bootstrap.scss */
.text-info {
color: #31708f;
}
/* line 1162, ../dev/sass/_bootstrap.scss */
a.text-info:hover {
color: #245269;
}
/* line 1165, ../dev/sass/_bootstrap.scss */
.text-warning {
color: #8a6d3b;
}
/* line 1168, ../dev/sass/_bootstrap.scss */
a.text-warning:hover {
color: #66512c;
}
/* line 1171, ../dev/sass/_bootstrap.scss */
.text-danger {
color: #a94442;
}
/* line 1174, ../dev/sass/_bootstrap.scss */
a.text-danger:hover {
color: #843534;
}
/* line 1177, ../dev/sass/_bootstrap.scss */
.bg-primary {
color: #fff;
background-color: #428bca;
}
/* line 1181, ../dev/sass/_bootstrap.scss */
a.bg-primary:hover {
background-color: #3071a9;
}
/* line 1184, ../dev/sass/_bootstrap.scss */
.bg-success {
background-color: #dff0d8;
}
/* line 1187, ../dev/sass/_bootstrap.scss */
a.bg-success:hover {
background-color: #c1e2b3;
}
/* line 1190, ../dev/sass/_bootstrap.scss */
.bg-info {
background-color: #d9edf7;
}
/* line 1193, ../dev/sass/_bootstrap.scss */
a.bg-info:hover {
background-color: #afd9ee;
}
/* line 1196, ../dev/sass/_bootstrap.scss */
.bg-warning {
background-color: #fcf8e3;
}
/* line 1199, ../dev/sass/_bootstrap.scss */
a.bg-warning:hover {
background-color: #f7ecb5;
}
/* line 1202, ../dev/sass/_bootstrap.scss */
.bg-danger {
background-color: #f2dede;
}
/* line 1205, ../dev/sass/_bootstrap.scss */
a.bg-danger:hover {
background-color: #e4b9b9;
}
/* line 1208, ../dev/sass/_bootstrap.scss */
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee;
}
/* line 1214, ../dev/sass/_bootstrap.scss */
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
/* line 1221, ../dev/sass/_bootstrap.scss */
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
/* line 1224, ../dev/sass/_bootstrap.scss */
.list-unstyled {
padding-left: 0;
list-style: none;
}
/* line 1228, ../dev/sass/_bootstrap.scss */
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
/* line 1233, ../dev/sass/_bootstrap.scss */
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
/* line 1238, ../dev/sass/_bootstrap.scss */
dl {
margin-top: 0;
margin-bottom: 20px;
}
/* line 1243, ../dev/sass/_bootstrap.scss */
dt,
dd {
line-height: 1.42857143;
}
/* line 1246, ../dev/sass/_bootstrap.scss */
dt {
font-weight: bold;
}
/* line 1249, ../dev/sass/_bootstrap.scss */
dd {
margin-left: 0;
}
@media (min-width: 768px) {
/* line 1253, ../dev/sass/_bootstrap.scss */
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* line 1262, ../dev/sass/_bootstrap.scss */
.dl-horizontal dd {
margin-left: 180px;
}
}
/* line 1267, ../dev/sass/_bootstrap.scss */
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
/* line 1271, ../dev/sass/_bootstrap.scss */
.initialism {
font-size: 90%;
text-transform: uppercase;
}
/* line 1275, ../dev/sass/_bootstrap.scss */
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eeeeee;
}
/* line 1283, ../dev/sass/_bootstrap.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
/* line 1288, ../dev/sass/_bootstrap.scss */
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777777;
}
/* line 1296, ../dev/sass/_bootstrap.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
/* line 1300, ../dev/sass/_bootstrap.scss */
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
/* line 1312, ../dev/sass/_bootstrap.scss */
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
/* line 1320, ../dev/sass/_bootstrap.scss */
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
/* line 1324, ../dev/sass/_bootstrap.scss */
blockquote:before,
blockquote:after {
content: "";
}
/* line 1327, ../dev/sass/_bootstrap.scss */
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
/* line 1332, ../dev/sass/_bootstrap.scss */
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 315px) {
/* line 1339, ../dev/sass/_bootstrap.scss */
.container {
width: 305px;
}
}
@media (min-width: 568px) {
/* line 1339, ../dev/sass/_bootstrap.scss */
.container {
width: 550px;
}
}
@media (min-width: 992px) {
/* line 1344, ../dev/sass/_bootstrap.scss */
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
/* line 1349, ../dev/sass/_bootstrap.scss */
.container {
width: 1170px;
}
}
/* line 1353, ../dev/sass/_bootstrap.scss */
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
/* line 1359, ../dev/sass/_bootstrap.scss */
.row {
margin-left: -15px;
margin-right: -15px;
}
/* line 1363, ../dev/sass/_bootstrap.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
}
/* line 1369, ../dev/sass/_bootstrap.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
/* line 1372, ../dev/sass/_bootstrap.scss */
.col-xs-12 {
width: 100%;
}
/* line 1375, ../dev/sass/_bootstrap.scss */
.col-xs-11 {
width: 91.66666667%;
}
/* line 1378, ../dev/sass/_bootstrap.scss */
.col-xs-10 {
width: 83.33333333%;
}
/* line 1381, ../dev/sass/_bootstrap.scss */
.col-xs-9 {
width: 75%;
}
/* line 1384, ../dev/sass/_bootstrap.scss */
.col-xs-8 {
width: 66.66666667%;
}
/* line 1387, ../dev/sass/_bootstrap.scss */
.col-xs-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1390, ../dev/sass/_bootstrap.scss */
.col-xs-6 {
width: 50%;
}
/* line 1393, ../dev/sass/_bootstrap.scss */
.col-xs-5 {
width: 41.66666667%;
}
/* line 1396, ../dev/sass/_bootstrap.scss */
.col-xs-4 {
width: 33.33333333%;
}
/* line 1399, ../dev/sass/_bootstrap.scss */
.col-xs-3 {
width: 24%;
}
/* line 1402, ../dev/sass/_bootstrap.scss */
.col-xs-2 {
width: 16.66666667%;
}
/* line 1405, ../dev/sass/_bootstrap.scss */
.col-xs-1 {
width: 8.33333333%;
}
/* line 1408, ../dev/sass/_bootstrap.scss */
.col-xs-pull-12 {
right: 100%;
}
/* line 1411, ../dev/sass/_bootstrap.scss */
.col-xs-pull-11 {
right: 91.66666667%;
}
/* line 1414, ../dev/sass/_bootstrap.scss */
.col-xs-pull-10 {
right: 83.33333333%;
}
/* line 1417, ../dev/sass/_bootstrap.scss */
.col-xs-pull-9 {
right: 75%;
}
/* line 1420, ../dev/sass/_bootstrap.scss */
.col-xs-pull-8 {
right: 66.66666667%;
}
/* line 1423, ../dev/sass/_bootstrap.scss */
.col-xs-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1426, ../dev/sass/_bootstrap.scss */
.col-xs-pull-6 {
right: 50%;
}
/* line 1429, ../dev/sass/_bootstrap.scss */
.col-xs-pull-5 {
right: 41.66666667%;
}
/* line 1432, ../dev/sass/_bootstrap.scss */
.col-xs-pull-4 {
right: 33.33333333%;
}
/* line 1435, ../dev/sass/_bootstrap.scss */
.col-xs-pull-3 {
right: 25%;
}
/* line 1438, ../dev/sass/_bootstrap.scss */
.col-xs-pull-2 {
right: 16.66666667%;
}
/* line 1441, ../dev/sass/_bootstrap.scss */
.col-xs-pull-1 {
right: 8.33333333%;
}
/* line 1444, ../dev/sass/_bootstrap.scss */
.col-xs-pull-0 {
right: auto;
}
/* line 1447, ../dev/sass/_bootstrap.scss */
.col-xs-push-12 {
left: 100%;
}
/* line 1450, ../dev/sass/_bootstrap.scss */
.col-xs-push-11 {
left: 91.66666667%;
}
/* line 1453, ../dev/sass/_bootstrap.scss */
.col-xs-push-10 {
left: 83.33333333%;
}
/* line 1456, ../dev/sass/_bootstrap.scss */
.col-xs-push-9 {
left: 75%;
}
/* line 1459, ../dev/sass/_bootstrap.scss */
.col-xs-push-8 {
left: 66.66666667%;
}
/* line 1462, ../dev/sass/_bootstrap.scss */
.col-xs-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1465, ../dev/sass/_bootstrap.scss */
.col-xs-push-6 {
left: 50%;
}
/* line 1468, ../dev/sass/_bootstrap.scss */
.col-xs-push-5 {
left: 41.66666667%;
}
/* line 1471, ../dev/sass/_bootstrap.scss */
.col-xs-push-4 {
left: 33.33333333%;
}
/* line 1474, ../dev/sass/_bootstrap.scss */
.col-xs-push-3 {
left: 25%;
}
/* line 1477, ../dev/sass/_bootstrap.scss */
.col-xs-push-2 {
left: 16.66666667%;
}
/* line 1480, ../dev/sass/_bootstrap.scss */
.col-xs-push-1 {
left: 8.33333333%;
}
/* line 1483, ../dev/sass/_bootstrap.scss */
.col-xs-push-0 {
left: auto;
}
/* line 1486, ../dev/sass/_bootstrap.scss */
.col-xs-offset-12 {
margin-left: 100%;
}
/* line 1489, ../dev/sass/_bootstrap.scss */
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
/* line 1492, ../dev/sass/_bootstrap.scss */
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
/* line 1495, ../dev/sass/_bootstrap.scss */
.col-xs-offset-9 {
margin-left: 75%;
}
/* line 1498, ../dev/sass/_bootstrap.scss */
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
/* line 1501, ../dev/sass/_bootstrap.scss */
.col-xs-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1504, ../dev/sass/_bootstrap.scss */
.col-xs-offset-6 {
margin-left: 50%;
}
/* line 1507, ../dev/sass/_bootstrap.scss */
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
/* line 1510, ../dev/sass/_bootstrap.scss */
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
/* line 1513, ../dev/sass/_bootstrap.scss */
.col-xs-offset-3 {
margin-left: 25%;
}
/* line 1516, ../dev/sass/_bootstrap.scss */
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
/* line 1519, ../dev/sass/_bootstrap.scss */
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
/* line 1522, ../dev/sass/_bootstrap.scss */
.col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
/* line 1526, ../dev/sass/_bootstrap.scss */
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
/* line 1529, ../dev/sass/_bootstrap.scss */
.col-sm-12 {
width: 100%;
}
/* line 1532, ../dev/sass/_bootstrap.scss */
.col-sm-11 {
width: 91.66666667%;
}
/* line 1535, ../dev/sass/_bootstrap.scss */
.col-sm-10 {
width: 83.33333333%;
}
/* line 1538, ../dev/sass/_bootstrap.scss */
.col-sm-9 {
width: 75%;
}
/* line 1541, ../dev/sass/_bootstrap.scss */
.col-sm-8 {
width: 66.66666667%;
}
/* line 1544, ../dev/sass/_bootstrap.scss */
.col-sm-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1547, ../dev/sass/_bootstrap.scss */
.col-sm-6 {
width: 50%;
}
/* line 1550, ../dev/sass/_bootstrap.scss */
.col-sm-5 {
width: 41.66666667%;
}
/* line 1553, ../dev/sass/_bootstrap.scss */
.col-sm-4 {
width: 33.33333333%;
}
/* line 1556, ../dev/sass/_bootstrap.scss */
.col-sm-3 {
width: 32%;
}
/* line 1559, ../dev/sass/_bootstrap.scss */
.col-sm-2 {
width: 16.66666667%;
}
/* line 1562, ../dev/sass/_bootstrap.scss */
.col-sm-1 {
width: 8.33333333%;
}
/* line 1565, ../dev/sass/_bootstrap.scss */
.col-sm-pull-12 {
right: 100%;
}
/* line 1568, ../dev/sass/_bootstrap.scss */
.col-sm-pull-11 {
right: 91.66666667%;
}
/* line 1571, ../dev/sass/_bootstrap.scss */
.col-sm-pull-10 {
right: 83.33333333%;
}
/* line 1574, ../dev/sass/_bootstrap.scss */
.col-sm-pull-9 {
right: 75%;
}
/* line 1577, ../dev/sass/_bootstrap.scss */
.col-sm-pull-8 {
right: 66.66666667%;
}
/* line 1580, ../dev/sass/_bootstrap.scss */
.col-sm-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1583, ../dev/sass/_bootstrap.scss */
.col-sm-pull-6 {
right: 50%;
}
/* line 1586, ../dev/sass/_bootstrap.scss */
.col-sm-pull-5 {
right: 41.66666667%;
}
/* line 1589, ../dev/sass/_bootstrap.scss */
.col-sm-pull-4 {
right: 33.33333333%;
}
/* line 1592, ../dev/sass/_bootstrap.scss */
.col-sm-pull-3 {
right: 25%;
}
/* line 1595, ../dev/sass/_bootstrap.scss */
.col-sm-pull-2 {
right: 16.66666667%;
}
/* line 1598, ../dev/sass/_bootstrap.scss */
.col-sm-pull-1 {
right: 8.33333333%;
}
/* line 1601, ../dev/sass/_bootstrap.scss */
.col-sm-pull-0 {
right: auto;
}
/* line 1604, ../dev/sass/_bootstrap.scss */
.col-sm-push-12 {
left: 100%;
}
/* line 1607, ../dev/sass/_bootstrap.scss */
.col-sm-push-11 {
left: 91.66666667%;
}
/* line 1610, ../dev/sass/_bootstrap.scss */
.col-sm-push-10 {
left: 83.33333333%;
}
/* line 1613, ../dev/sass/_bootstrap.scss */
.col-sm-push-9 {
left: 75%;
}
/* line 1616, ../dev/sass/_bootstrap.scss */
.col-sm-push-8 {
left: 66.66666667%;
}
/* line 1619, ../dev/sass/_bootstrap.scss */
.col-sm-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1622, ../dev/sass/_bootstrap.scss */
.col-sm-push-6 {
left: 50%;
}
/* line 1625, ../dev/sass/_bootstrap.scss */
.col-sm-push-5 {
left: 41.66666667%;
}
/* line 1628, ../dev/sass/_bootstrap.scss */
.col-sm-push-4 {
left: 33.33333333%;
}
/* line 1631, ../dev/sass/_bootstrap.scss */
.col-sm-push-3 {
left: 25%;
}
/* line 1634, ../dev/sass/_bootstrap.scss */
.col-sm-push-2 {
left: 16.66666667%;
}
/* line 1637, ../dev/sass/_bootstrap.scss */
.col-sm-push-1 {
left: 8.33333333%;
}
/* line 1640, ../dev/sass/_bootstrap.scss */
.col-sm-push-0 {
left: auto;
}
/* line 1643, ../dev/sass/_bootstrap.scss */
.col-sm-offset-12 {
margin-left: 100%;
}
/* line 1646, ../dev/sass/_bootstrap.scss */
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
/* line 1649, ../dev/sass/_bootstrap.scss */
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
/* line 1652, ../dev/sass/_bootstrap.scss */
.col-sm-offset-9 {
margin-left: 75%;
}
/* line 1655, ../dev/sass/_bootstrap.scss */
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
/* line 1658, ../dev/sass/_bootstrap.scss */
.col-sm-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1661, ../dev/sass/_bootstrap.scss */
.col-sm-offset-6 {
margin-left: 50%;
}
/* line 1664, ../dev/sass/_bootstrap.scss */
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
/* line 1667, ../dev/sass/_bootstrap.scss */
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
/* line 1670, ../dev/sass/_bootstrap.scss */
.col-sm-offset-3 {
margin-left: 25%;
}
/* line 1673, ../dev/sass/_bootstrap.scss */
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
/* line 1676, ../dev/sass/_bootstrap.scss */
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
/* line 1679, ../dev/sass/_bootstrap.scss */
.col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
/* line 1684, ../dev/sass/_bootstrap.scss */
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
/* line 1687, ../dev/sass/_bootstrap.scss */
.col-md-12 {
width: 100%;
}
/* line 1690, ../dev/sass/_bootstrap.scss */
.col-md-11 {
width: 91.66666667%;
}
/* line 1693, ../dev/sass/_bootstrap.scss */
.col-md-10 {
width: 83.33333333%;
}
/* line 1696, ../dev/sass/_bootstrap.scss */
.col-md-9 {
width: 75%;
}
/* line 1699, ../dev/sass/_bootstrap.scss */
.col-md-8 {
width: 66.66666667%;
}
/* line 1702, ../dev/sass/_bootstrap.scss */
.col-md-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1705, ../dev/sass/_bootstrap.scss */
.col-md-6 {
width: 50%;
}
/* line 1708, ../dev/sass/_bootstrap.scss */
.col-md-5 {
width: 41.66666667%;
}
/* line 1711, ../dev/sass/_bootstrap.scss */
.col-md-4 {
width: 33.33333333%;
}
/* line 1714, ../dev/sass/_bootstrap.scss */
.col-md-3 {
width: 24%;
}
/* line 1717, ../dev/sass/_bootstrap.scss */
.col-md-2 {
width: 16.66666667%;
}
/* line 1720, ../dev/sass/_bootstrap.scss */
.col-md-1 {
width: 8.33333333%;
}
/* line 1723, ../dev/sass/_bootstrap.scss */
.col-md-pull-12 {
right: 100%;
}
/* line 1726, ../dev/sass/_bootstrap.scss */
.col-md-pull-11 {
right: 91.66666667%;
}
/* line 1729, ../dev/sass/_bootstrap.scss */
.col-md-pull-10 {
right: 83.33333333%;
}
/* line 1732, ../dev/sass/_bootstrap.scss */
.col-md-pull-9 {
right: 75%;
}
/* line 1735, ../dev/sass/_bootstrap.scss */
.col-md-pull-8 {
right: 66.66666667%;
}
/* line 1738, ../dev/sass/_bootstrap.scss */
.col-md-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1741, ../dev/sass/_bootstrap.scss */
.col-md-pull-6 {
right: 50%;
}
/* line 1744, ../dev/sass/_bootstrap.scss */
.col-md-pull-5 {
right: 41.66666667%;
}
/* line 1747, ../dev/sass/_bootstrap.scss */
.col-md-pull-4 {
right: 33.33333333%;
}
/* line 1750, ../dev/sass/_bootstrap.scss */
.col-md-pull-3 {
right: 25%;
}
/* line 1753, ../dev/sass/_bootstrap.scss */
.col-md-pull-2 {
right: 16.66666667%;
}
/* line 1756, ../dev/sass/_bootstrap.scss */
.col-md-pull-1 {
right: 8.33333333%;
}
/* line 1759, ../dev/sass/_bootstrap.scss */
.col-md-pull-0 {
right: auto;
}
/* line 1762, ../dev/sass/_bootstrap.scss */
.col-md-push-12 {
left: 100%;
}
/* line 1765, ../dev/sass/_bootstrap.scss */
.col-md-push-11 {
left: 91.66666667%;
}
/* line 1768, ../dev/sass/_bootstrap.scss */
.col-md-push-10 {
left: 83.33333333%;
}
/* line 1771, ../dev/sass/_bootstrap.scss */
.col-md-push-9 {
left: 75%;
}
/* line 1774, ../dev/sass/_bootstrap.scss */
.col-md-push-8 {
left: 66.66666667%;
}
/* line 1777, ../dev/sass/_bootstrap.scss */
.col-md-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1780, ../dev/sass/_bootstrap.scss */
.col-md-push-6 {
left: 50%;
}
/* line 1783, ../dev/sass/_bootstrap.scss */
.col-md-push-5 {
left: 41.66666667%;
}
/* line 1786, ../dev/sass/_bootstrap.scss */
.col-md-push-4 {
left: 33.33333333%;
}
/* line 1789, ../dev/sass/_bootstrap.scss */
.col-md-push-3 {
left: 25%;
}
/* line 1792, ../dev/sass/_bootstrap.scss */
.col-md-push-2 {
left: 16.66666667%;
}
/* line 1795, ../dev/sass/_bootstrap.scss */
.col-md-push-1 {
left: 8.33333333%;
}
/* line 1798, ../dev/sass/_bootstrap.scss */
.col-md-push-0 {
left: auto;
}
/* line 1801, ../dev/sass/_bootstrap.scss */
.col-md-offset-12 {
margin-left: 100%;
}
/* line 1804, ../dev/sass/_bootstrap.scss */
.col-md-offset-11 {
margin-left: 91.66666667%;
}
/* line 1807, ../dev/sass/_bootstrap.scss */
.col-md-offset-10 {
margin-left: 83.33333333%;
}
/* line 1810, ../dev/sass/_bootstrap.scss */
.col-md-offset-9 {
margin-left: 75%;
}
/* line 1813, ../dev/sass/_bootstrap.scss */
.col-md-offset-8 {
margin-left: 66.66666667%;
}
/* line 1816, ../dev/sass/_bootstrap.scss */
.col-md-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1819, ../dev/sass/_bootstrap.scss */
.col-md-offset-6 {
margin-left: 50%;
}
/* line 1822, ../dev/sass/_bootstrap.scss */
.col-md-offset-5 {
margin-left: 41.66666667%;
}
/* line 1825, ../dev/sass/_bootstrap.scss */
.col-md-offset-4 {
margin-left: 33.33333333%;
}
/* line 1828, ../dev/sass/_bootstrap.scss */
.col-md-offset-3 {
margin-left: 25%;
}
/* line 1831, ../dev/sass/_bootstrap.scss */
.col-md-offset-2 {
margin-left: 16.66666667%;
}
/* line 1834, ../dev/sass/_bootstrap.scss */
.col-md-offset-1 {
margin-left: 8.33333333%;
}
/* line 1837, ../dev/sass/_bootstrap.scss */
.col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
/* line 1842, ../dev/sass/_bootstrap.scss */
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
/* line 1845, ../dev/sass/_bootstrap.scss */
.col-lg-12 {
width: 100%;
}
/* line 1848, ../dev/sass/_bootstrap.scss */
.col-lg-11 {
width: 91.66666667%;
}
/* line 1851, ../dev/sass/_bootstrap.scss */
.col-lg-10 {
width: 83.33333333%;
}
/* line 1854, ../dev/sass/_bootstrap.scss */
.col-lg-9 {
width: 75%;
}
/* line 1857, ../dev/sass/_bootstrap.scss */
.col-lg-8 {
width: 66.66666667%;
}
/* line 1860, ../dev/sass/_bootstrap.scss */
.col-lg-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1863, ../dev/sass/_bootstrap.scss */
.col-lg-6 {
width: 50%;
}
/* line 1866, ../dev/sass/_bootstrap.scss */
.col-lg-5 {
width: 41.66666667%;
}
/* line 1869, ../dev/sass/_bootstrap.scss */
.col-lg-4 {
width: 33.33333333%;
}
/* line 1872, ../dev/sass/_bootstrap.scss */
.col-lg-3 {
width: 25%;
}
/* line 1875, ../dev/sass/_bootstrap.scss */
.col-lg-2 {
width: 16.66666667%;
}
/* line 1878, ../dev/sass/_bootstrap.scss */
.col-lg-1 {
width: 8.33333333%;
}
/* line 1881, ../dev/sass/_bootstrap.scss */
.col-lg-pull-12 {
right: 100%;
}
/* line 1884, ../dev/sass/_bootstrap.scss */
.col-lg-pull-11 {
right: 91.66666667%;
}
/* line 1887, ../dev/sass/_bootstrap.scss */
.col-lg-pull-10 {
right: 83.33333333%;
}
/* line 1890, ../dev/sass/_bootstrap.scss */
.col-lg-pull-9 {
right: 75%;
}
/* line 1893, ../dev/sass/_bootstrap.scss */
.col-lg-pull-8 {
right: 66.66666667%;
}
/* line 1896, ../dev/sass/_bootstrap.scss */
.col-lg-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1899, ../dev/sass/_bootstrap.scss */
.col-lg-pull-6 {
right: 50%;
}
/* line 1902, ../dev/sass/_bootstrap.scss */
.col-lg-pull-5 {
right: 41.66666667%;
}
/* line 1905, ../dev/sass/_bootstrap.scss */
.col-lg-pull-4 {
right: 33.33333333%;
}
/* line 1908, ../dev/sass/_bootstrap.scss */
.col-lg-pull-3 {
right: 25%;
}
/* line 1911, ../dev/sass/_bootstrap.scss */
.col-lg-pull-2 {
right: 16.66666667%;
}
/* line 1914, ../dev/sass/_bootstrap.scss */
.col-lg-pull-1 {
right: 8.33333333%;
}
/* line 1917, ../dev/sass/_bootstrap.scss */
.col-lg-pull-0 {
right: auto;
}
/* line 1920, ../dev/sass/_bootstrap.scss */
.col-lg-push-12 {
left: 100%;
}
/* line 1923, ../dev/sass/_bootstrap.scss */
.col-lg-push-11 {
left: 91.66666667%;
}
/* line 1926, ../dev/sass/_bootstrap.scss */
.col-lg-push-10 {
left: 83.33333333%;
}
/* line 1929, ../dev/sass/_bootstrap.scss */
.col-lg-push-9 {
left: 75%;
}
/* line 1932, ../dev/sass/_bootstrap.scss */
.col-lg-push-8 {
left: 66.66666667%;
}
/* line 1935, ../dev/sass/_bootstrap.scss */
.col-lg-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1938, ../dev/sass/_bootstrap.scss */
.col-lg-push-6 {
left: 50%;
}
/* line 1941, ../dev/sass/_bootstrap.scss */
.col-lg-push-5 {
left: 41.66666667%;
}
/* line 1944, ../dev/sass/_bootstrap.scss */
.col-lg-push-4 {
left: 33.33333333%;
}
/* line 1947, ../dev/sass/_bootstrap.scss */
.col-lg-push-3 {
left: 25%;
}
/* line 1950, ../dev/sass/_bootstrap.scss */
.col-lg-push-2 {
left: 16.66666667%;
}
/* line 1953, ../dev/sass/_bootstrap.scss */
.col-lg-push-1 {
left: 8.33333333%;
}
/* line 1956, ../dev/sass/_bootstrap.scss */
.col-lg-push-0 {
left: auto;
}
/* line 1959, ../dev/sass/_bootstrap.scss */
.col-lg-offset-12 {
margin-left: 100%;
}
/* line 1962, ../dev/sass/_bootstrap.scss */
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
/* line 1965, ../dev/sass/_bootstrap.scss */
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
/* line 1968, ../dev/sass/_bootstrap.scss */
.col-lg-offset-9 {
margin-left: 75%;
}
/* line 1971, ../dev/sass/_bootstrap.scss */
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
/* line 1974, ../dev/sass/_bootstrap.scss */
.col-lg-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1977, ../dev/sass/_bootstrap.scss */
.col-lg-offset-6 {
margin-left: 50%;
}
/* line 1980, ../dev/sass/_bootstrap.scss */
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
/* line 1983, ../dev/sass/_bootstrap.scss */
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
/* line 1986, ../dev/sass/_bootstrap.scss */
.col-lg-offset-3 {
margin-left: 25%;
}
/* line 1989, ../dev/sass/_bootstrap.scss */
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
/* line 1992, ../dev/sass/_bootstrap.scss */
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
/* line 1995, ../dev/sass/_bootstrap.scss */
.col-lg-offset-0 {
margin-left: 0%;
}
}
/* line 1999, ../dev/sass/_bootstrap.scss */
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
/* line 2005, ../dev/sass/_bootstrap.scss */
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
/* line 2016, ../dev/sass/_bootstrap.scss */
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
/* line 2022, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 2028, ../dev/sass/_bootstrap.scss */
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
/* line 2033, ../dev/sass/_bootstrap.scss */
input[type="file"] {
display: block;
}
/* line 2036, ../dev/sass/_bootstrap.scss */
input[type="range"] {
display: block;
width: 100%;
}
/* line 2041, ../dev/sass/_bootstrap.scss */
select[multiple],
select[size] {
height: auto;
}
/* line 2046, ../dev/sass/_bootstrap.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 2051, ../dev/sass/_bootstrap.scss */
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
}
/* line 2058, ../dev/sass/_bootstrap.scss */
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
/* line 2076, ../dev/sass/_bootstrap.scss */
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
/* line 2082, ../dev/sass/_bootstrap.scss */
.form-control::-moz-placeholder {
color: #777777;
opacity: 1;
}
/* line 2086, ../dev/sass/_bootstrap.scss */
.form-control:-ms-input-placeholder {
color: #777777;
}
/* line 2089, ../dev/sass/_bootstrap.scss */
.form-control::-webkit-input-placeholder {
color: #777777;
}
/* line 2094, ../dev/sass/_bootstrap.scss */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
cursor: not-allowed;
background-color: #eeeeee;
opacity: 1;
}
/* line 2099, ../dev/sass/_bootstrap.scss */
textarea.form-control {
height: auto;
}
/* line 2102, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: none;
}
/* line 2108, ../dev/sass/_bootstrap.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
line-height: 34px;
line-height: 1.42857143 \0;
}
/* line 2115, ../dev/sass/_bootstrap.scss */
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm {
line-height: 30px;
}
/* line 2121, ../dev/sass/_bootstrap.scss */
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg {
line-height: 46px;
}
/* line 2124, ../dev/sass/_bootstrap.scss */
.form-group {
margin-bottom: 15px;
}
/* line 2128, ../dev/sass/_bootstrap.scss */
.radio,
.checkbox {
position: relative;
display: block;
min-height: 20px;
margin-top: 10px;
margin-bottom: 10px;
}
/* line 2136, ../dev/sass/_bootstrap.scss */
.radio label,
.checkbox label {
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
/* line 2145, ../dev/sass/_bootstrap.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
/* line 2151, ../dev/sass/_bootstrap.scss */
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
/* line 2155, ../dev/sass/_bootstrap.scss */
.radio-inline,
.checkbox-inline {
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
/* line 2164, ../dev/sass/_bootstrap.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
/* line 2173, ../dev/sass/_bootstrap.scss */
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
/* line 2179, ../dev/sass/_bootstrap.scss */
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
/* line 2185, ../dev/sass/_bootstrap.scss */
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
/* line 2188, ../dev/sass/_bootstrap.scss */
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
/* line 2194, ../dev/sass/_bootstrap.scss */
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
/* line 2199, ../dev/sass/_bootstrap.scss */
.input-sm,
.form-horizontal .form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2206, ../dev/sass/_bootstrap.scss */
select.input-sm {
height: 30px;
line-height: 30px;
}
/* line 2211, ../dev/sass/_bootstrap.scss */
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
/* line 2215, ../dev/sass/_bootstrap.scss */
.input-lg,
.form-horizontal .form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
/* line 2222, ../dev/sass/_bootstrap.scss */
select.input-lg {
height: 46px;
line-height: 46px;
}
/* line 2227, ../dev/sass/_bootstrap.scss */
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
/* line 2230, ../dev/sass/_bootstrap.scss */
.has-feedback {
position: relative;
}
/* line 2233, ../dev/sass/_bootstrap.scss */
.has-feedback .form-control {
padding-right: 42.5px;
}
/* line 2236, ../dev/sass/_bootstrap.scss */
.form-control-feedback {
position: absolute;
top: 25px;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
}
/* line 2247, ../dev/sass/_bootstrap.scss */
.input-lg + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
/* line 2252, ../dev/sass/_bootstrap.scss */
.input-sm + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
/* line 2262, ../dev/sass/_bootstrap.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
color: #3c763d;
}
/* line 2265, ../dev/sass/_bootstrap.scss */
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2270, ../dev/sass/_bootstrap.scss */
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
/* line 2275, ../dev/sass/_bootstrap.scss */
.has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8;
}
/* line 2280, ../dev/sass/_bootstrap.scss */
.has-success .form-control-feedback {
color: #3c763d;
}
/* line 2288, ../dev/sass/_bootstrap.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
color: #8a6d3b;
}
/* line 2291, ../dev/sass/_bootstrap.scss */
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2296, ../dev/sass/_bootstrap.scss */
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
/* line 2301, ../dev/sass/_bootstrap.scss */
.has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3;
}
/* line 2306, ../dev/sass/_bootstrap.scss */
.has-warning .form-control-feedback {
color: #8a6d3b;
}
/* line 2314, ../dev/sass/_bootstrap.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
color: #a94442;
}
/* line 2317, ../dev/sass/_bootstrap.scss */
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2322, ../dev/sass/_bootstrap.scss */
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
/* line 2327, ../dev/sass/_bootstrap.scss */
.has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede;
}
/* line 2332, ../dev/sass/_bootstrap.scss */
.has-error .form-control-feedback {
color: #a94442;
}
/* line 2335, ../dev/sass/_bootstrap.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
/* line 2338, ../dev/sass/_bootstrap.scss */
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
/* line 2345, ../dev/sass/_bootstrap.scss */
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
/* line 2350, ../dev/sass/_bootstrap.scss */
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
/* line 2355, ../dev/sass/_bootstrap.scss */
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
/* line 2361, ../dev/sass/_bootstrap.scss */
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
/* line 2364, ../dev/sass/_bootstrap.scss */
.form-inline .input-group > .form-control {
width: 100%;
}
/* line 2367, ../dev/sass/_bootstrap.scss */
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
/* line 2372, ../dev/sass/_bootstrap.scss */
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
/* line 2379, ../dev/sass/_bootstrap.scss */
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
/* line 2383, ../dev/sass/_bootstrap.scss */
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
/* line 2387, ../dev/sass/_bootstrap.scss */
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
/* line 2394, ../dev/sass/_bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px;
}
/* line 2400, ../dev/sass/_bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
/* line 2403, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px;
}
@media (min-width: 768px) {
/* line 2408, ../dev/sass/_bootstrap.scss */
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
}
/* line 2414, ../dev/sass/_bootstrap.scss */
.form-horizontal .has-feedback .form-control-feedback {
top: 0;
right: 15px;
}
@media (min-width: 768px) {
/* line 2419, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group-lg .control-label {
padding-top: 14.3px;
}
}
@media (min-width: 768px) {
/* line 2424, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
}
}
/* line 2428, ../dev/sass/_bootstrap.scss */
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* line 2449, ../dev/sass/_bootstrap.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 2455, ../dev/sass/_bootstrap.scss */
.btn:hover,
.btn:focus {
color: #333333;
text-decoration: none;
}
/* line 2460, ../dev/sass/_bootstrap.scss */
.btn:active,
.btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 2468, ../dev/sass/_bootstrap.scss */
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
pointer-events: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 2476, ../dev/sass/_bootstrap.scss */
.btn-default {
color: #333333;
background-color: #ffffff;
border-color: #cccccc;
}
/* line 2485, ../dev/sass/_bootstrap.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333333;
background-color: #e6e6e6;
border-color: #adadad;
}
/* line 2492, ../dev/sass/_bootstrap.scss */
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
/* line 2509, ../dev/sass/_bootstrap.scss */
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #ffffff;
border-color: #cccccc;
}
/* line 2513, ../dev/sass/_bootstrap.scss */
.btn-default .badge {
color: #ffffff;
background-color: #333333;
}
/* line 2517, ../dev/sass/_bootstrap.scss */
.btn-primary {
color: #ffffff;
background-color: #428bca;
border-color: #357ebd;
}
/* line 2526, ../dev/sass/_bootstrap.scss */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
/* line 2533, ../dev/sass/_bootstrap.scss */
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
/* line 2550, ../dev/sass/_bootstrap.scss */
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #428bca;
border-color: #357ebd;
}
/* line 2554, ../dev/sass/_bootstrap.scss */
.btn-primary .badge {
color: #428bca;
background-color: #ffffff;
}
/* line 2558, ../dev/sass/_bootstrap.scss */
.btn-success {
color: #ffffff;
background-color: #5cb85c;
border-color: #4cae4c;
}
/* line 2567, ../dev/sass/_bootstrap.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
/* line 2574, ../dev/sass/_bootstrap.scss */
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
/* line 2591, ../dev/sass/_bootstrap.scss */
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #5cb85c;
border-color: #4cae4c;
}
/* line 2595, ../dev/sass/_bootstrap.scss */
.btn-success .badge {
color: #5cb85c;
background-color: #ffffff;
}
/* line 2599, ../dev/sass/_bootstrap.scss */
.btn-info {
color: #ffffff;
background-color: #5bc0de;
border-color: #46b8da;
}
/* line 2608, ../dev/sass/_bootstrap.scss */
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #ffffff;
background-color: #31b0d5;
border-color: #269abc;
}
/* line 2615, ../dev/sass/_bootstrap.scss */
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
/* line 2632, ../dev/sass/_bootstrap.scss */
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
background-color: #5bc0de;
border-color: #46b8da;
}
/* line 2636, ../dev/sass/_bootstrap.scss */
.btn-info .badge {
color: #5bc0de;
background-color: #ffffff;
}
/* line 2640, ../dev/sass/_bootstrap.scss */
.btn-warning {
color: #ffffff;
background-color: #f0ad4e;
border-color: #eea236;
}
/* line 2649, ../dev/sass/_bootstrap.scss */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #ffffff;
background-color: #ec971f;
border-color: #d58512;
}
/* line 2656, ../dev/sass/_bootstrap.scss */
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
/* line 2673, ../dev/sass/_bootstrap.scss */
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
background-color: #f0ad4e;
border-color: #eea236;
}
/* line 2677, ../dev/sass/_bootstrap.scss */
.btn-warning .badge {
color: #f0ad4e;
background-color: #ffffff;
}
/* line 2681, ../dev/sass/_bootstrap.scss */
.btn-danger {
color: #ffffff;
background-color: #d9534f;
border-color: #d43f3a;
}
/* line 2690, ../dev/sass/_bootstrap.scss */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
/* line 2697, ../dev/sass/_bootstrap.scss */
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
/* line 2714, ../dev/sass/_bootstrap.scss */
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
background-color: #d9534f;
border-color: #d43f3a;
}
/* line 2718, ../dev/sass/_bootstrap.scss */
.btn-danger .badge {
color: #d9534f;
background-color: #ffffff;
}
/* line 2722, ../dev/sass/_bootstrap.scss */
.btn-link {
color: #428bca;
font-weight: normal;
cursor: pointer;
border-radius: 0;
}
/* line 2731, ../dev/sass/_bootstrap.scss */
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 2739, ../dev/sass/_bootstrap.scss */
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
/* line 2743, ../dev/sass/_bootstrap.scss */
.btn-link:hover,
.btn-link:focus {
color: #2a6496;
text-decoration: underline;
background-color: transparent;
}
/* line 2751, ../dev/sass/_bootstrap.scss */
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none;
}
/* line 2755, ../dev/sass/_bootstrap.scss */
.btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
/* line 2761, ../dev/sass/_bootstrap.scss */
.btn-sm {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2767, ../dev/sass/_bootstrap.scss */
.btn-xs {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2773, ../dev/sass/_bootstrap.scss */
.btn-block {
display: block;
width: 100%;
}
/* line 2777, ../dev/sass/_bootstrap.scss */
.btn-block + .btn-block {
margin-top: 5px;
}
/* line 2782, ../dev/sass/_bootstrap.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
/* line 2785, ../dev/sass/_bootstrap.scss */
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
/* line 2790, ../dev/sass/_bootstrap.scss */
.nav > li {
position: relative;
display: block;
}
/* line 2794, ../dev/sass/_bootstrap.scss */
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
/* line 2800, ../dev/sass/_bootstrap.scss */
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
/* line 2804, ../dev/sass/_bootstrap.scss */
.nav > li.disabled > a {
color: #777777;
}
/* line 2808, ../dev/sass/_bootstrap.scss */
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
/* line 2816, ../dev/sass/_bootstrap.scss */
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eeeeee;
border-color: #428bca;
}
/* line 2820, ../dev/sass/_bootstrap.scss */
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
/* line 2826, ../dev/sass/_bootstrap.scss */
.nav > li > a > img {
max-width: none;
}
/* line 2829, ../dev/sass/_bootstrap.scss */
.nav-tabs {
border-bottom: 1px solid #dddddd;
}
/* line 2832, ../dev/sass/_bootstrap.scss */
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
/* line 2836, ../dev/sass/_bootstrap.scss */
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
/* line 2842, ../dev/sass/_bootstrap.scss */
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #dddddd;
}
/* line 2847, ../dev/sass/_bootstrap.scss */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555555;
background-color: #ffffff;
border: 1px solid #dddddd;
border-bottom-color: transparent;
cursor: default;
}
/* line 2854, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
/* line 2858, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li {
float: none;
}
/* line 2861, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
/* line 2865, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
/* line 2870, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
/* line 2874, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
/* line 2878, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
/* line 2884, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
/* line 2888, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
/* line 2894, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
/* line 2898, ../dev/sass/_bootstrap.scss */
.nav-pills > li {
float: left;
}
/* line 2901, ../dev/sass/_bootstrap.scss */
.nav-pills > li > a {
border-radius: 4px;
}
/* line 2904, ../dev/sass/_bootstrap.scss */
.nav-pills > li + li {
margin-left: 2px;
}
/* line 2909, ../dev/sass/_bootstrap.scss */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #ffffff;
background-color: #428bca;
}
/* line 2913, ../dev/sass/_bootstrap.scss */
.nav-stacked > li {
float: none;
}
/* line 2916, ../dev/sass/_bootstrap.scss */
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
/* line 2920, ../dev/sass/_bootstrap.scss */
.nav-justified {
width: 100%;
}
/* line 2923, ../dev/sass/_bootstrap.scss */
.nav-justified > li {
float: none;
}
/* line 2926, ../dev/sass/_bootstrap.scss */
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
/* line 2930, ../dev/sass/_bootstrap.scss */
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
/* line 2935, ../dev/sass/_bootstrap.scss */
.nav-justified > li {
display: table-cell;
width: 1%;
}
/* line 2939, ../dev/sass/_bootstrap.scss */
.nav-justified > li > a {
margin-bottom: 0;
}
}
/* line 2943, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified {
border-bottom: 0;
}
/* line 2946, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
/* line 2952, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
/* line 2956, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
/* line 2962, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
/* line 2966, ../dev/sass/_bootstrap.scss */
.tab-content > .tab-pane {
display: none;
}
/* line 2969, ../dev/sass/_bootstrap.scss */
.tab-content > .active {
display: block;
}
/* line 2972, ../dev/sass/_bootstrap.scss */
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
/* line 2977, ../dev/sass/_bootstrap.scss */
.navbar {
position: relative;
min-height: 50px;
/*margin-bottom: 20px;*/
border: 1px solid transparent;
}
@media (min-width: 768px) {
/* line 2984, ../dev/sass/_bootstrap.scss */
.navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
/* line 2989, ../dev/sass/_bootstrap.scss */
.navbar-header {
float: left;
}
}
/* line 2993, ../dev/sass/_bootstrap.scss */
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
/* line 3001, ../dev/sass/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
/* line 3005, ../dev/sass/_bootstrap.scss */
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
/* line 3010, ../dev/sass/_bootstrap.scss */
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
/* line 3016, ../dev/sass/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: visible;
}
/* line 3021, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
/* line 3027, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-width: 480px) and (orientation: landscape) {
/* line 3032, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
/* line 3039, ../dev/sass/_bootstrap.scss */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
/* line 3047, ../dev/sass/_bootstrap.scss */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
/* line 3052, ../dev/sass/_bootstrap.scss */
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
/* line 3057, ../dev/sass/_bootstrap.scss */
.navbar-static-top {
border-radius: 0;
}
}
/* line 3062, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
/* line 3072, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
/* line 3076, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
/* line 3080, ../dev/sass/_bootstrap.scss */
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
/* line 3085, ../dev/sass/_bootstrap.scss */
.navbar-brand {
float: left;
padding: 35px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
/* line 3085, ../dev/sass/_bootstrap.scss */
.menu-brand {
float: right;
padding: 37px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
/* line 3093, ../dev/sass/_bootstrap.scss */
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
@media (min-width: 768px) {
/* line 3098, ../dev/sass/_bootstrap.scss */
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
/* line 3102, ../dev/sass/_bootstrap.scss */
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
/* line 3114, ../dev/sass/_bootstrap.scss */
.navbar-toggle:focus {
outline: 0;
}
/* line 3117, ../dev/sass/_bootstrap.scss */
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
/* line 3123, ../dev/sass/_bootstrap.scss */
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
/* line 3127, ../dev/sass/_bootstrap.scss */
.navbar-toggle {
display: none;
}
}
/* line 3131, ../dev/sass/_bootstrap.scss */
.navbar-nav {
margin: 7.5px -15px;
}
/* line 3134, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
/* line 3140, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
/* line 3150, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
/* line 3153, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
/* line 3157, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
/* line 3162, ../dev/sass/_bootstrap.scss */
.navbar-nav {
float: left;
margin: 0;
}
/* line 3166, ../dev/sass/_bootstrap.scss */
.navbar-nav > li {
float: left;
}
/* line 3169, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
/* line 3173, ../dev/sass/_bootstrap.scss */
.navbar-nav.navbar-right:last-child {
margin-right: -15px;
}
}
@media (min-width: 768px) {
/* line 3178, ../dev/sass/_bootstrap.scss */
.navbar-left {
float: left !important;
}
/* line 3181, ../dev/sass/_bootstrap.scss */
.navbar-right {
float: right !important;
}
}
/* line 3185, ../dev/sass/_bootstrap.scss */
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) {
/* line 3197, ../dev/sass/_bootstrap.scss */
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
/* line 3202, ../dev/sass/_bootstrap.scss */
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
/* line 3207, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
/* line 3213, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
/* line 3216, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group > .form-control {
width: 100%;
}
/* line 3219, ../dev/sass/_bootstrap.scss */
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
/* line 3224, ../dev/sass/_bootstrap.scss */
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
/* line 3231, ../dev/sass/_bootstrap.scss */
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
/* line 3235, ../dev/sass/_bootstrap.scss */
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
/* line 3239, ../dev/sass/_bootstrap.scss */
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
/* line 3244, ../dev/sass/_bootstrap.scss */
.navbar-form .form-group {
margin-bottom: 5px;
}
}
@media (min-width: 768px) {
/* line 3249, ../dev/sass/_bootstrap.scss */
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 3259, ../dev/sass/_bootstrap.scss */
.navbar-form.navbar-right:last-child {
margin-right: -15px;
}
}
/* line 3263, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
/* line 3268, ../dev/sass/_bootstrap.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
/* line 3272, ../dev/sass/_bootstrap.scss */
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
/* line 3276, ../dev/sass/_bootstrap.scss */
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
/* line 3280, ../dev/sass/_bootstrap.scss */
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
/* line 3284, ../dev/sass/_bootstrap.scss */
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
/* line 3289, ../dev/sass/_bootstrap.scss */
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
/* line 3294, ../dev/sass/_bootstrap.scss */
.navbar-text.navbar-right:last-child {
margin-right: 0;
}
}
/* line 3298, ../dev/sass/_bootstrap.scss */
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
/* line 3302, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-brand {
color: #777777;
}
/* line 3306, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
/* line 3310, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-text {
color: #777777;
}
/* line 3313, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > li > a {
color: #777777;
}
/* line 3317, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333333;
background-color: transparent;
}
/* line 3323, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
/* line 3329, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
/* line 3333, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle {
border-color: #dddddd;
}
/* line 3337, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #dddddd;
}
/* line 3340, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle .icon-bar {
background-color: #888888;
}
/* line 3344, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
/* line 3349, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555555;
}
@media (max-width: 767px) {
/* line 3354, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777777;
}
/* line 3358, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333333;
background-color: transparent;
}
/* line 3364, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
/* line 3370, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
}
/* line 3375, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-link {
color: #777777;
}
/* line 3378, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-link:hover {
color: #333333;
}
/* line 3381, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link {
color: #777777;
}
/* line 3385, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333333;
}
/* line 3391, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #cccccc;
}
/* line 3394, ../dev/sass/_bootstrap.scss */
.navbar-inverse {
background-color: #222222;
border-color: #080808;
}
/* line 3398, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-brand {
color: #777777;
}
/* line 3402, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3406, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-text {
color: #777777;
}
/* line 3409, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a {
color: #777777;
}
/* line 3413, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3419, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
/* line 3425, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
/* line 3429, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle {
border-color: #333333;
}
/* line 3433, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333333;
}
/* line 3436, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
/* line 3440, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
/* line 3445, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #ffffff;
}
@media (max-width: 767px) {
/* line 3450, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
/* line 3453, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
/* line 3456, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #777777;
}
/* line 3460, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3466, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
/* line 3472, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
}
/* line 3477, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-link {
color: #777777;
}
/* line 3480, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-link:hover {
color: #ffffff;
}
/* line 3483, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link {
color: #777777;
}
/* line 3487, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #ffffff;
}
/* line 3493, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444444;
}
/* line 3515, ../dev/sass/_bootstrap.scss */
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after {
content: " ";
display: table;
}
/* line 3528, ../dev/sass/_bootstrap.scss */
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after {
clear: both;
}
/* line 3531, ../dev/sass/_bootstrap.scss */
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
/* line 3536, ../dev/sass/_bootstrap.scss */
.pull-right {
float: right !important;
}
/* line 3539, ../dev/sass/_bootstrap.scss */
.pull-left {
float: left !important;
}
/* line 3542, ../dev/sass/_bootstrap.scss */
.hide {
display: none !important;
}
/* line 3545, ../dev/sass/_bootstrap.scss */
.show {
display: block !important;
}
/* line 3548, ../dev/sass/_bootstrap.scss */
.invisible {
visibility: hidden;
}
/* line 3551, ../dev/sass/_bootstrap.scss */
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
/* line 3558, ../dev/sass/_bootstrap.scss */
.hidden {
display: none !important;
visibility: hidden !important;
}
/* line 3562, ../dev/sass/_bootstrap.scss */
.affix {
position: fixed;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
@-ms-viewport {
width: device-width;
}
/* line 3573, ../dev/sass/_bootstrap.scss */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
/* line 3587, ../dev/sass/_bootstrap.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
/* line 3591, ../dev/sass/_bootstrap.scss */
.visible-xs {
display: block !important;
}
/* line 3594, ../dev/sass/_bootstrap.scss */
table.visible-xs {
display: table;
}
/* line 3597, ../dev/sass/_bootstrap.scss */
tr.visible-xs {
display: table-row !important;
}
/* line 3601, ../dev/sass/_bootstrap.scss */
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
/* line 3606, ../dev/sass/_bootstrap.scss */
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
/* line 3611, ../dev/sass/_bootstrap.scss */
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
/* line 3616, ../dev/sass/_bootstrap.scss */
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3621, ../dev/sass/_bootstrap.scss */
.visible-sm {
display: block !important;
}
/* line 3624, ../dev/sass/_bootstrap.scss */
table.visible-sm {
display: table;
}
/* line 3627, ../dev/sass/_bootstrap.scss */
tr.visible-sm {
display: table-row !important;
}
/* line 3631, ../dev/sass/_bootstrap.scss */
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3636, ../dev/sass/_bootstrap.scss */
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3641, ../dev/sass/_bootstrap.scss */
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3646, ../dev/sass/_bootstrap.scss */
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3651, ../dev/sass/_bootstrap.scss */
.visible-md {
display: block !important;
}
/* line 3654, ../dev/sass/_bootstrap.scss */
table.visible-md {
display: table;
}
/* line 3657, ../dev/sass/_bootstrap.scss */
tr.visible-md {
display: table-row !important;
}
/* line 3661, ../dev/sass/_bootstrap.scss */
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3666, ../dev/sass/_bootstrap.scss */
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3671, ../dev/sass/_bootstrap.scss */
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3676, ../dev/sass/_bootstrap.scss */
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
/* line 3681, ../dev/sass/_bootstrap.scss */
.visible-lg {
display: block !important;
}
/* line 3684, ../dev/sass/_bootstrap.scss */
table.visible-lg {
display: table;
}
/* line 3687, ../dev/sass/_bootstrap.scss */
tr.visible-lg {
display: table-row !important;
}
/* line 3691, ../dev/sass/_bootstrap.scss */
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
/* line 3696, ../dev/sass/_bootstrap.scss */
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
/* line 3701, ../dev/sass/_bootstrap.scss */
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
/* line 3706, ../dev/sass/_bootstrap.scss */
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
/* line 3711, ../dev/sass/_bootstrap.scss */
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3716, ../dev/sass/_bootstrap.scss */
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3721, ../dev/sass/_bootstrap.scss */
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
/* line 3726, ../dev/sass/_bootstrap.scss */
.hidden-lg {
display: none !important;
}
}
/* line 3730, ../dev/sass/_bootstrap.scss */
.visible-print {
display: none !important;
}
@media print {
/* line 3734, ../dev/sass/_bootstrap.scss */
.visible-print {
display: block !important;
}
/* line 3737, ../dev/sass/_bootstrap.scss */
table.visible-print {
display: table;
}
/* line 3740, ../dev/sass/_bootstrap.scss */
tr.visible-print {
display: table-row !important;
}
/* line 3744, ../dev/sass/_bootstrap.scss */
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
/* line 3748, ../dev/sass/_bootstrap.scss */
.visible-print-block {
display: none !important;
}
@media print {
/* line 3752, ../dev/sass/_bootstrap.scss */
.visible-print-block {
display: block !important;
}
}
/* line 3756, ../dev/sass/_bootstrap.scss */
.visible-print-inline {
display: none !important;
}
@media print {
/* line 3760, ../dev/sass/_bootstrap.scss */
.visible-print-inline {
display: inline !important;
}
}
/* line 3764, ../dev/sass/_bootstrap.scss */
.visible-print-inline-block {
display: none !important;
}
@media print {
/* line 3768, ../dev/sass/_bootstrap.scss */
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
/* line 3773, ../dev/sass/_bootstrap.scss */
.hidden-print {
display: none !important;
}
}
@font-face {
font-family: Cubano Reguler;
src: url("../fonts/Cubano Regular.otf") format("opentype");
}
@font-face {
font-family: GrandHotel Regular;
src: url("../fonts/GrandHotel Regular.otf") format("opentype");
}
@font-face {
font-family: Molot;
src: url("../fonts/Molot.otf") format("opentype");
}
/* line 19, ../dev/sass/_vpr.scss */
a {
color: #FFFFFF;
}
/* line 23, ../dev/sass/_vpr.scss */
html, body {
height: 100%;
}
/* line 27, ../dev/sass/_vpr.scss */
#page_container {
min-height: 100%;
background: #000000;
padding-bottom: 60px;
}
/* line 33, ../dev/sass/_vpr.scss */
.navbar {
border: 0;
border-radius: 0;
background-color: #000000;
min-height: 45px;
}
/* line 38, ../dev/sass/_vpr.scss */
.navbar .navbar-header {
float: none;
position: relative;
}
/* line 41, ../dev/sass/_vpr.scss */
.navbar .navbar-header a {
color: #f2f2f2;
}
/* line 43, ../dev/sass/_vpr.scss */
.navbar .navbar-header a:hover {
color: #B5A1B1;
text-decoration: none;
}
/* line 48, ../dev/sass/_vpr.scss */
.navbar .navbar-header #vpr_logo {
position: absolute;
top: 0;
left: 0;
}
/* line 53, ../dev/sass/_vpr.scss */
.navbar .navbar-header h4#navbar-title {
margin-top: 10px;
font-size: 26px;
font-weight: 400;
text-align: center;
}
/* line 59, ../dev/sass/_vpr.scss */
.navbar .navbar-header .social_logos {
position: absolute;
top: 0;
right: 0;
font-weight: 300;
}
/* line 72, ../dev/sass/_vpr.scss */
footer {
background: #000000;
font-size: 12px;
color: #e6e6e6;
margin-top: -107px;
padding: 20px 0 1px;
}
@media (max-width: 768px) {
/* line 72, ../dev/sass/_vpr.scss */
footer {
padding-bottom: 5px;
}
}
/* line 64, ../dev/sass/_vpr.scss */
.navbar .navbar-header .social_logos li {
font-size: 30px;
padding-left: 1px;
}
/* line 89, ../dev/sass/_vpr.scss */
#underwriter {
margin: 5px;
}
#underwriter p {
font-size: 12px;
padding-left: 0;
margin-top: 3px;
text-align: center;
color: #8f9294;
}
/* line 95, ../dev/sass/_vpr.scss */
#underwriter p li {
display: inline;
}
@media (max-width: 330px) {
#underwriter {
margin-left: -5px;
}
}
#feedback {
margin: 5px;
}
#feedback h2 {
text-align: right;
}
#feedback h3 {
text-align: right;
}
#feedback p {
text-align: right;
}
/*!
Ionicons, v1.4.0
Created by <NAME> for the Ionic Framework, http://ionicons.com/
https://twitter.com/helloimben https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons
*/
@font-face {
font-family: "Ionicons";
src: url("../fonts/ionicons.eot?v=1.4.0");
src: url("../fonts/ionicons.eot?v=1.4.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.4.0") format("truetype"), url("../fonts/ionicons.woff?v=1.4.0") format("woff"), url("../fonts/ionicons.svg?v=1.4.0#Ionicons") format("svg");
font-weight: normal;
font-style: normal;
}
/* line 545, ../dev/sass/_ionicons.scss */
.ion, .ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading, .ionicons,
.ion-alert,
.ion-alert-circled,
.ion-android-add,
.ion-android-add-contact,
.ion-android-alarm,
.ion-android-archive,
.ion-android-arrow-back,
.ion-android-arrow-down-left,
.ion-android-arrow-down-right,
.ion-android-arrow-up-left,
.ion-android-arrow-up-right,
.ion-android-battery,
.ion-android-book,
.ion-android-calendar,
.ion-android-call,
.ion-android-camera,
.ion-android-chat,
.ion-android-checkmark,
.ion-android-clock,
.ion-android-close,
.ion-android-contact,
.ion-android-contacts,
.ion-android-data,
.ion-android-developer,
.ion-android-display,
.ion-android-download,
.ion-android-dropdown,
.ion-android-earth,
.ion-android-folder,
.ion-android-forums,
.ion-android-friends,
.ion-android-hand,
.ion-android-image,
.ion-android-inbox,
.ion-android-information,
.ion-android-keypad,
.ion-android-lightbulb,
.ion-android-locate,
.ion-android-location,
.ion-android-mail,
.ion-android-microphone,
.ion-android-mixer,
.ion-android-more,
.ion-android-note,
.ion-android-playstore,
.ion-android-printer,
.ion-android-promotion,
.ion-android-reminder,
.ion-android-remove,
.ion-android-search,
.ion-android-send,
.ion-android-settings,
.ion-android-share,
.ion-android-social,
.ion-android-social-user,
.ion-android-sort,
.ion-android-star,
.ion-android-stopwatch,
.ion-android-storage,
.ion-android-system-back,
.ion-android-system-home,
.ion-android-system-windows,
.ion-android-timer,
.ion-android-trash,
.ion-android-volume,
.ion-android-wifi,
.ion-archive,
.ion-arrow-down-a,
.ion-arrow-down-b,
.ion-arrow-down-c,
.ion-arrow-expand,
.ion-arrow-graph-down-left,
.ion-arrow-graph-down-right,
.ion-arrow-graph-up-left,
.ion-arrow-graph-up-right,
.ion-arrow-left-a,
.ion-arrow-left-b,
.ion-arrow-left-c,
.ion-arrow-move,
.ion-arrow-resize,
.ion-arrow-return-left,
.ion-arrow-return-right,
.ion-arrow-right-a,
.ion-arrow-right-b,
.ion-arrow-right-c,
.ion-arrow-shrink,
.ion-arrow-swap,
.ion-arrow-up-a,
.ion-arrow-up-b,
.ion-arrow-up-c,
.ion-at,
.ion-bag,
.ion-battery-charging,
.ion-battery-empty,
.ion-battery-full,
.ion-battery-half,
.ion-battery-low,
.ion-beaker,
.ion-beer,
.ion-bluetooth,
.ion-bookmark,
.ion-briefcase,
.ion-bug,
.ion-calculator,
.ion-calendar,
.ion-camera,
.ion-card,
.ion-chatbox,
.ion-chatbox-working,
.ion-chatboxes,
.ion-chatbubble,
.ion-chatbubble-working,
.ion-chatbubbles,
.ion-checkmark,
.ion-checkmark-circled,
.ion-checkmark-round,
.ion-chevron-down,
.ion-chevron-left,
.ion-chevron-right,
.ion-chevron-up,
.ion-clipboard,
.ion-clock,
.ion-close,
.ion-close-circled,
.ion-close-round,
.ion-cloud,
.ion-code,
.ion-code-download,
.ion-code-working,
.ion-coffee,
.ion-compass,
.ion-compose,
.ion-connection-bars,
.ion-contrast,
.ion-disc,
.ion-document,
.ion-document-text,
.ion-drag,
.ion-earth,
.ion-edit,
.ion-egg,
.ion-eject,
.ion-email,
.ion-eye,
.ion-eye-disabled,
.ion-female,
.ion-filing,
.ion-film-marker,
.ion-flag,
.ion-flash,
.ion-flash-off,
.ion-flask,
.ion-folder,
.ion-fork,
.ion-fork-repo,
.ion-forward,
.ion-game-controller-a,
.ion-game-controller-b,
.ion-gear-a,
.ion-gear-b,
.ion-grid,
.ion-hammer,
.ion-headphone,
.ion-heart,
.ion-help,
.ion-help-buoy,
.ion-help-circled,
.ion-home,
.ion-icecream,
.ion-icon-social-google-plus,
.ion-icon-social-google-plus-outline,
.ion-image,
.ion-images,
.ion-information,
.ion-information-circled,
.ion-ionic,
.ion-ios7-alarm,
.ion-ios7-alarm-outline,
.ion-ios7-albums,
.ion-ios7-albums-outline,
.ion-ios7-arrow-back,
.ion-ios7-arrow-down,
.ion-ios7-arrow-forward,
.ion-ios7-arrow-left,
.ion-ios7-arrow-right,
.ion-ios7-arrow-thin-down,
.ion-ios7-arrow-thin-left,
.ion-ios7-arrow-thin-right,
.ion-ios7-arrow-thin-up,
.ion-ios7-arrow-up,
.ion-ios7-at,
.ion-ios7-at-outline,
.ion-ios7-bell,
.ion-ios7-bell-outline,
.ion-ios7-bolt,
.ion-ios7-bolt-outline,
.ion-ios7-bookmarks,
.ion-ios7-bookmarks-outline,
.ion-ios7-box,
.ion-ios7-box-outline,
.ion-ios7-briefcase,
.ion-ios7-briefcase-outline,
.ion-ios7-browsers,
.ion-ios7-browsers-outline,
.ion-ios7-calculator,
.ion-ios7-calculator-outline,
.ion-ios7-calendar,
.ion-ios7-calendar-outline,
.ion-ios7-camera,
.ion-ios7-camera-outline,
.ion-ios7-cart,
.ion-ios7-cart-outline,
.ion-ios7-chatboxes,
.ion-ios7-chatboxes-outline,
.ion-ios7-chatbubble,
.ion-ios7-chatbubble-outline,
.ion-ios7-checkmark,
.ion-ios7-checkmark-empty,
.ion-ios7-checkmark-outline,
.ion-ios7-circle-filled,
.ion-ios7-circle-outline,
.ion-ios7-clock,
.ion-ios7-clock-outline,
.ion-ios7-close,
.ion-ios7-close-empty,
.ion-ios7-close-outline,
.ion-ios7-cloud,
.ion-ios7-cloud-download,
.ion-ios7-cloud-download-outline,
.ion-ios7-cloud-outline,
.ion-ios7-cloud-upload,
.ion-ios7-cloud-upload-outline,
.ion-ios7-cloudy,
.ion-ios7-cloudy-night,
.ion-ios7-cloudy-night-outline,
.ion-ios7-cloudy-outline,
.ion-ios7-cog,
.ion-ios7-cog-outline,
.ion-ios7-compose,
.ion-ios7-compose-outline,
.ion-ios7-contact,
.ion-ios7-contact-outline,
.ion-ios7-copy,
.ion-ios7-copy-outline,
.ion-ios7-download,
.ion-ios7-download-outline,
.ion-ios7-drag,
.ion-ios7-email,
.ion-ios7-email-outline,
.ion-ios7-eye,
.ion-ios7-eye-outline,
.ion-ios7-fastforward,
.ion-ios7-fastforward-outline,
.ion-ios7-filing,
.ion-ios7-filing-outline,
.ion-ios7-film,
.ion-ios7-film-outline,
.ion-ios7-flag,
.ion-ios7-flag-outline,
.ion-ios7-folder,
.ion-ios7-folder-outline,
.ion-ios7-gear,
.ion-ios7-gear-outline,
.ion-ios7-glasses,
.ion-ios7-glasses-outline,
.ion-ios7-heart,
.ion-ios7-heart-outline,
.ion-ios7-help,
.ion-ios7-help-empty,
.ion-ios7-help-outline,
.ion-ios7-infinite,
.ion-ios7-infinite-outline,
.ion-ios7-information,
.ion-ios7-information-empty,
.ion-ios7-information-outline,
.ion-ios7-ionic-outline,
.ion-ios7-keypad,
.ion-ios7-keypad-outline,
.ion-ios7-lightbulb,
.ion-ios7-lightbulb-outline,
.ion-ios7-location,
.ion-ios7-location-outline,
.ion-ios7-locked,
.ion-ios7-locked-outline,
.ion-ios7-medkit,
.ion-ios7-medkit-outline,
.ion-ios7-mic,
.ion-ios7-mic-off,
.ion-ios7-mic-outline,
.ion-ios7-minus,
.ion-ios7-minus-empty,
.ion-ios7-minus-outline,
.ion-ios7-monitor,
.ion-ios7-monitor-outline,
.ion-ios7-moon,
.ion-ios7-moon-outline,
.ion-ios7-more,
.ion-ios7-more-outline,
.ion-ios7-musical-note,
.ion-ios7-musical-notes,
.ion-ios7-navigate,
.ion-ios7-navigate-outline,
.ion-ios7-paperplane,
.ion-ios7-paperplane-outline,
.ion-ios7-partlysunny,
.ion-ios7-partlysunny-outline,
.ion-ios7-pause,
.ion-ios7-pause-outline,
.ion-ios7-people,
.ion-ios7-people-outline,
.ion-ios7-person,
.ion-ios7-person-outline,
.ion-ios7-personadd,
.ion-ios7-personadd-outline,
.ion-ios7-photos,
.ion-ios7-photos-outline,
.ion-ios7-pie,
.ion-ios7-pie-outline,
.ion-ios7-play,
.ion-ios7-play-outline,
.ion-ios7-plus,
.ion-ios7-plus-empty,
.ion-ios7-plus-outline,
.ion-ios7-pricetag,
.ion-ios7-pricetag-outline,
.ion-ios7-printer,
.ion-ios7-printer-outline,
.ion-ios7-rainy,
.ion-ios7-rainy-outline,
.ion-ios7-recording,
.ion-ios7-recording-outline,
.ion-ios7-redo,
.ion-ios7-redo-outline,
.ion-ios7-refresh,
.ion-ios7-refresh-empty,
.ion-ios7-refresh-outline,
.ion-ios7-reload,
.ion-ios7-rewind,
.ion-ios7-rewind-outline,
.ion-ios7-search,
.ion-ios7-search-strong,
.ion-ios7-skipbackward,
.ion-ios7-skipbackward-outline,
.ion-ios7-skipforward,
.ion-ios7-skipforward-outline,
.ion-ios7-snowy,
.ion-ios7-speedometer,
.ion-ios7-speedometer-outline,
.ion-ios7-star,
.ion-ios7-star-outline,
.ion-ios7-stopwatch,
.ion-ios7-stopwatch-outline,
.ion-ios7-sunny,
.ion-ios7-sunny-outline,
.ion-ios7-telephone,
.ion-ios7-telephone-outline,
.ion-ios7-thunderstorm,
.ion-ios7-thunderstorm-outline,
.ion-ios7-time,
.ion-ios7-time-outline,
.ion-ios7-timer,
.ion-ios7-timer-outline,
.ion-ios7-trash,
.ion-ios7-trash-outline,
.ion-ios7-undo,
.ion-ios7-undo-outline,
.ion-ios7-unlocked,
.ion-ios7-unlocked-outline,
.ion-ios7-upload,
.ion-ios7-upload-outline,
.ion-ios7-videocam,
.ion-ios7-videocam-outline,
.ion-ios7-volume-high,
.ion-ios7-volume-low,
.ion-ios7-wineglass,
.ion-ios7-wineglass-outline,
.ion-ios7-world,
.ion-ios7-world-outline,
.ion-ipad,
.ion-iphone,
.ion-ipod,
.ion-jet,
.ion-key,
.ion-knife,
.ion-laptop,
.ion-leaf,
.ion-levels,
.ion-lightbulb,
.ion-link,
.ion-load-a,
.ion-load-b,
.ion-load-c,
.ion-load-d,
.ion-location,
.ion-locked,
.ion-log-in,
.ion-log-out,
.ion-loop,
.ion-magnet,
.ion-male,
.ion-man,
.ion-map,
.ion-medkit,
.ion-mic-a,
.ion-mic-b,
.ion-mic-c,
.ion-minus,
.ion-minus-circled,
.ion-minus-round,
.ion-model-s,
.ion-monitor,
.ion-more,
.ion-music-note,
.ion-navicon,
.ion-navicon-round,
.ion-navigate,
.ion-no-smoking,
.ion-nuclear,
.ion-paper-airplane,
.ion-paperclip,
.ion-pause,
.ion-person,
.ion-person-add,
.ion-person-stalker,
.ion-pie-graph,
.ion-pin,
.ion-pinpoint,
.ion-pizza,
.ion-plane,
.ion-play,
.ion-playstation,
.ion-plus,
.ion-plus-circled,
.ion-plus-round,
.ion-pound,
.ion-power,
.ion-pricetag,
.ion-pricetags,
.ion-printer,
.ion-radio-waves,
.ion-record,
.ion-refresh,
.ion-reply,
.ion-reply-all,
.ion-search,
.ion-settings,
.ion-share,
.ion-shuffle,
.ion-skip-backward,
.ion-skip-forward,
.ion-social-android,
.ion-social-android-outline,
.ion-social-apple,
.ion-social-apple-outline,
.ion-social-bitcoin,
.ion-social-bitcoin-outline,
.ion-social-buffer,
.ion-social-buffer-outline,
.ion-social-designernews,
.ion-social-designernews-outline,
.ion-social-dribbble,
.ion-social-dribbble-outline,
.ion-social-dropbox,
.ion-social-dropbox-outline,
.ion-social-facebook,
.ion-social-facebook-outline,
.ion-social-freebsd-devil,
.ion-social-github,
.ion-social-github-outline,
.ion-social-googleplus,
.ion-social-googleplus-outline,
.ion-social-hackernews,
.ion-social-hackernews-outline,
.ion-social-linkedin,
.ion-social-linkedin-outline,
.ion-social-pinterest,
.ion-social-pinterest-outline,
.ion-social-reddit,
.ion-social-reddit-outline,
.ion-social-rss,
.ion-social-rss-outline,
.ion-social-skype,
.ion-social-skype-outline,
.ion-social-tumblr,
.ion-social-tumblr-outline,
.ion-social-tux,
.ion-social-twitter,
.ion-social-twitter-outline,
.ion-social-vimeo,
.ion-social-vimeo-outline,
.ion-social-windows,
.ion-social-windows-outline,
.ion-social-wordpress,
.ion-social-wordpress-outline,
.ion-social-yahoo,
.ion-social-yahoo-outline,
.ion-social-youtube,
.ion-social-youtube-outline,
.ion-speakerphone,
.ion-speedometer,
.ion-spoon,
.ion-star,
.ion-stats-bars,
.ion-steam,
.ion-stop,
.ion-thermometer,
.ion-thumbsdown,
.ion-thumbsup,
.ion-trash-a,
.ion-trash-b,
.ion-umbrella,
.ion-unlocked,
.ion-upload,
.ion-usb,
.ion-videocamera,
.ion-volume-high,
.ion-volume-low,
.ion-volume-medium,
.ion-volume-mute,
.ion-waterdrop,
.ion-wifi,
.ion-wineglass,
.ion-woman,
.ion-wrench,
.ion-xbox {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 564, ../dev/sass/_ionicons.scss */
.ion-spin, .ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading {
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s infinite linear;
-o-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
/* line 571, ../dev/sass/_ionicons.scss */
0% {
-moz-transform: rotate(0deg);
}
/* line 574, ../dev/sass/_ionicons.scss */
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
/* line 578, ../dev/sass/_ionicons.scss */
0% {
-webkit-transform: rotate(0deg);
}
/* line 581, ../dev/sass/_ionicons.scss */
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
/* line 585, ../dev/sass/_ionicons.scss */
0% {
-o-transform: rotate(0deg);
}
/* line 588, ../dev/sass/_ionicons.scss */
100% {
-o-transform: rotate(359deg);
}
}
@-ms-keyframes spin {
/* line 592, ../dev/sass/_ionicons.scss */
0% {
-ms-transform: rotate(0deg);
}
/* line 595, ../dev/sass/_ionicons.scss */
100% {
-ms-transform: rotate(359deg);
}
}
@keyframes spin {
/* line 599, ../dev/sass/_ionicons.scss */
0% {
transform: rotate(0deg);
}
/* line 602, ../dev/sass/_ionicons.scss */
100% {
transform: rotate(359deg);
}
}
/* line 605, ../dev/sass/_ionicons.scss */
.ion-loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start);
}
/* line 610, ../dev/sass/_ionicons.scss */
.ion-alert:before {
content: "\f101";
}
/* line 613, ../dev/sass/_ionicons.scss */
.ion-alert-circled:before {
content: "\f100";
}
/* line 616, ../dev/sass/_ionicons.scss */
.ion-android-add:before {
content: "\f2c7";
}
/* line 619, ../dev/sass/_ionicons.scss */
.ion-android-add-contact:before {
content: "\f2c6";
}
/* line 622, ../dev/sass/_ionicons.scss */
.ion-android-alarm:before {
content: "\f2c8";
}
/* line 625, ../dev/sass/_ionicons.scss */
.ion-android-archive:before {
content: "\f2c9";
}
/* line 628, ../dev/sass/_ionicons.scss */
.ion-android-arrow-back:before {
content: "\f2ca";
}
/* line 631, ../dev/sass/_ionicons.scss */
.ion-android-arrow-down-left:before {
content: "\f2cb";
}
/* line 634, ../dev/sass/_ionicons.scss */
.ion-android-arrow-down-right:before {
content: "\f2cc";
}
/* line 637, ../dev/sass/_ionicons.scss */
.ion-android-arrow-up-left:before {
content: "\f2cd";
}
/* line 640, ../dev/sass/_ionicons.scss */
.ion-android-arrow-up-right:before {
content: "\f2ce";
}
/* line 643, ../dev/sass/_ionicons.scss */
.ion-android-battery:before {
content: "\f2cf";
}
/* line 646, ../dev/sass/_ionicons.scss */
.ion-android-book:before {
content: "\f2d0";
}
/* line 649, ../dev/sass/_ionicons.scss */
.ion-android-calendar:before {
content: "\f2d1";
}
/* line 652, ../dev/sass/_ionicons.scss */
.ion-android-call:before {
content: "\f2d2";
}
/* line 655, ../dev/sass/_ionicons.scss */
.ion-android-camera:before {
content: "\f2d3";
}
/* line 658, ../dev/sass/_ionicons.scss */
.ion-android-chat:before {
content: "\f2d4";
}
/* line 661, ../dev/sass/_ionicons.scss */
.ion-android-checkmark:before {
content: "\f2d5";
}
/* line 664, ../dev/sass/_ionicons.scss */
.ion-android-clock:before {
content: "\f2d6";
}
/* line 667, ../dev/sass/_ionicons.scss */
.ion-android-close:before {
content: "\f2d7";
}
/* line 670, ../dev/sass/_ionicons.scss */
.ion-android-contact:before {
content: "\f2d8";
}
/* line 673, ../dev/sass/_ionicons.scss */
.ion-android-contacts:before {
content: "\f2d9";
}
/* line 676, ../dev/sass/_ionicons.scss */
.ion-android-data:before {
content: "\f2da";
}
/* line 679, ../dev/sass/_ionicons.scss */
.ion-android-developer:before {
content: "\f2db";
}
/* line 682, ../dev/sass/_ionicons.scss */
.ion-android-display:before {
content: "\f2dc";
}
/* line 685, ../dev/sass/_ionicons.scss */
.ion-android-download:before {
content: "\f2dd";
}
/* line 688, ../dev/sass/_ionicons.scss */
.ion-android-dropdown:before {
content: "\f2de";
}
/* line 691, ../dev/sass/_ionicons.scss */
.ion-android-earth:before {
content: "\f2df";
}
/* line 694, ../dev/sass/_ionicons.scss */
.ion-android-folder:before {
content: "\f2e0";
}
/* line 697, ../dev/sass/_ionicons.scss */
.ion-android-forums:before {
content: "\f2e1";
}
/* line 700, ../dev/sass/_ionicons.scss */
.ion-android-friends:before {
content: "\f2e2";
}
/* line 703, ../dev/sass/_ionicons.scss */
.ion-android-hand:before {
content: "\f2e3";
}
/* line 706, ../dev/sass/_ionicons.scss */
.ion-android-image:before {
content: "\f2e4";
}
/* line 709, ../dev/sass/_ionicons.scss */
.ion-android-inbox:before {
content: "\f2e5";
}
/* line 712, ../dev/sass/_ionicons.scss */
.ion-android-information:before {
content: "\f2e6";
}
/* line 715, ../dev/sass/_ionicons.scss */
.ion-android-keypad:before {
content: "\f2e7";
}
/* line 718, ../dev/sass/_ionicons.scss */
.ion-android-lightbulb:before {
content: "\f2e8";
}
/* line 721, ../dev/sass/_ionicons.scss */
.ion-android-locate:before {
content: "\f2e9";
}
/* line 724, ../dev/sass/_ionicons.scss */
.ion-android-location:before {
content: "\f2ea";
}
/* line 727, ../dev/sass/_ionicons.scss */
.ion-android-mail:before {
content: "\f2eb";
}
/* line 730, ../dev/sass/_ionicons.scss */
.ion-android-microphone:before {
content: "\f2ec";
}
/* line 733, ../dev/sass/_ionicons.scss */
.ion-android-mixer:before {
content: "\f2ed";
}
/* line 736, ../dev/sass/_ionicons.scss */
.ion-android-more:before {
content: "\f2ee";
}
/* line 739, ../dev/sass/_ionicons.scss */
.ion-android-note:before {
content: "\f2ef";
}
/* line 742, ../dev/sass/_ionicons.scss */
.ion-android-playstore:before {
content: "\f2f0";
}
/* line 745, ../dev/sass/_ionicons.scss */
.ion-android-printer:before {
content: "\f2f1";
}
/* line 748, ../dev/sass/_ionicons.scss */
.ion-android-promotion:before {
content: "\f2f2";
}
/* line 751, ../dev/sass/_ionicons.scss */
.ion-android-reminder:before {
content: "\f2f3";
}
/* line 754, ../dev/sass/_ionicons.scss */
.ion-android-remove:before {
content: "\f2f4";
}
/* line 757, ../dev/sass/_ionicons.scss */
.ion-android-search:before {
content: "\f2f5";
}
/* line 760, ../dev/sass/_ionicons.scss */
.ion-android-send:before {
content: "\f2f6";
}
/* line 763, ../dev/sass/_ionicons.scss */
.ion-android-settings:before {
content: "\f2f7";
}
/* line 766, ../dev/sass/_ionicons.scss */
.ion-android-share:before {
content: "\f2f8";
}
/* line 769, ../dev/sass/_ionicons.scss */
.ion-android-social:before {
content: "\f2fa";
}
/* line 772, ../dev/sass/_ionicons.scss */
.ion-android-social-user:before {
content: "\f2f9";
}
/* line 775, ../dev/sass/_ionicons.scss */
.ion-android-sort:before {
content: "\f2fb";
}
/* line 778, ../dev/sass/_ionicons.scss */
.ion-android-star:before {
content: "\f2fc";
}
/* line 781, ../dev/sass/_ionicons.scss */
.ion-android-stopwatch:before {
content: "\f2fd";
}
/* line 784, ../dev/sass/_ionicons.scss */
.ion-android-storage:before {
content: "\f2fe";
}
/* line 787, ../dev/sass/_ionicons.scss */
.ion-android-system-back:before {
content: "\f2ff";
}
/* line 790, ../dev/sass/_ionicons.scss */
.ion-android-system-home:before {
content: "\f300";
}
/* line 793, ../dev/sass/_ionicons.scss */
.ion-android-system-windows:before {
content: "\f301";
}
/* line 796, ../dev/sass/_ionicons.scss */
.ion-android-timer:before {
content: "\f302";
}
/* line 799, ../dev/sass/_ionicons.scss */
.ion-android-trash:before {
content: "\f303";
}
/* line 802, ../dev/sass/_ionicons.scss */
.ion-android-volume:before {
content: "\f304";
}
/* line 805, ../dev/sass/_ionicons.scss */
.ion-android-wifi:before {
content: "\f305";
}
/* line 808, ../dev/sass/_ionicons.scss */
.ion-archive:before {
content: "\f102";
}
/* line 811, ../dev/sass/_ionicons.scss */
.ion-arrow-down-a:before {
content: "\f103";
}
/* line 814, ../dev/sass/_ionicons.scss */
.ion-arrow-down-b:before {
content: "\f104";
}
/* line 817, ../dev/sass/_ionicons.scss */
.ion-arrow-down-c:before {
content: "\f105";
}
/* line 820, ../dev/sass/_ionicons.scss */
.ion-arrow-expand:before {
content: "\f25e";
}
/* line 823, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-down-left:before {
content: "\f25f";
}
/* line 826, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-down-right:before {
content: "\f260";
}
/* line 829, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-up-left:before {
content: "\f261";
}
/* line 832, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-up-right:before {
content: "\f262";
}
/* line 835, ../dev/sass/_ionicons.scss */
.ion-arrow-left-a:before {
content: "\f106";
}
/* line 838, ../dev/sass/_ionicons.scss */
.ion-arrow-left-b:before {
content: "\f107";
}
/* line 841, ../dev/sass/_ionicons.scss */
.ion-arrow-left-c:before {
content: "\f108";
}
/* line 844, ../dev/sass/_ionicons.scss */
.ion-arrow-move:before {
content: "\f263";
}
/* line 847, ../dev/sass/_ionicons.scss */
.ion-arrow-resize:before {
content: "\f264";
}
/* line 850, ../dev/sass/_ionicons.scss */
.ion-arrow-return-left:before {
content: "\f265";
}
/* line 853, ../dev/sass/_ionicons.scss */
.ion-arrow-return-right:before {
content: "\f266";
}
/* line 856, ../dev/sass/_ionicons.scss */
.ion-arrow-right-a:before {
content: "\f109";
}
/* line 859, ../dev/sass/_ionicons.scss */
.ion-arrow-right-b:before {
content: "\f10a";
}
/* line 862, ../dev/sass/_ionicons.scss */
.ion-arrow-right-c:before {
content: "\f10b";
}
/* line 865, ../dev/sass/_ionicons.scss */
.ion-arrow-shrink:before {
content: "\f267";
}
/* line 868, ../dev/sass/_ionicons.scss */
.ion-arrow-swap:before {
content: "\f268";
}
/* line 871, ../dev/sass/_ionicons.scss */
.ion-arrow-up-a:before {
content: "\f10c";
}
/* line 874, ../dev/sass/_ionicons.scss */
.ion-arrow-up-b:before {
content: "\f10d";
}
/* line 877, ../dev/sass/_ionicons.scss */
.ion-arrow-up-c:before {
content: "\f10e";
}
/* line 880, ../dev/sass/_ionicons.scss */
.ion-at:before {
content: "\f10f";
}
/* line 883, ../dev/sass/_ionicons.scss */
.ion-bag:before {
content: "\f110";
}
/* line 886, ../dev/sass/_ionicons.scss */
.ion-battery-charging:before {
content: "\f111";
}
/* line 889, ../dev/sass/_ionicons.scss */
.ion-battery-empty:before {
content: "\f112";
}
/* line 892, ../dev/sass/_ionicons.scss */
.ion-battery-full:before {
content: "\f113";
}
/* line 895, ../dev/sass/_ionicons.scss */
.ion-battery-half:before {
content: "\f114";
}
/* line 898, ../dev/sass/_ionicons.scss */
.ion-battery-low:before {
content: "\f115";
}
/* line 901, ../dev/sass/_ionicons.scss */
.ion-beaker:before {
content: "\f269";
}
/* line 904, ../dev/sass/_ionicons.scss */
.ion-beer:before {
content: "\f26a";
}
/* line 907, ../dev/sass/_ionicons.scss */
.ion-bluetooth:before {
content: "\f116";
}
/* line 910, ../dev/sass/_ionicons.scss */
.ion-bookmark:before {
content: "\f26b";
}
/* line 913, ../dev/sass/_ionicons.scss */
.ion-briefcase:before {
content: "\f26c";
}
/* line 916, ../dev/sass/_ionicons.scss */
.ion-bug:before {
content: "\f2be";
}
/* line 919, ../dev/sass/_ionicons.scss */
.ion-calculator:before {
content: "\f26d";
}
/* line 922, ../dev/sass/_ionicons.scss */
.ion-calendar:before {
content: "\f117";
}
/* line 925, ../dev/sass/_ionicons.scss */
.ion-camera:before {
content: "\f118";
}
/* line 928, ../dev/sass/_ionicons.scss */
.ion-card:before {
content: "\f119";
}
/* line 931, ../dev/sass/_ionicons.scss */
.ion-chatbox:before {
content: "\f11b";
}
/* line 934, ../dev/sass/_ionicons.scss */
.ion-chatbox-working:before {
content: "\f11a";
}
/* line 937, ../dev/sass/_ionicons.scss */
.ion-chatboxes:before {
content: "\f11c";
}
/* line 940, ../dev/sass/_ionicons.scss */
.ion-chatbubble:before {
content: "\f11e";
}
/* line 943, ../dev/sass/_ionicons.scss */
.ion-chatbubble-working:before {
content: "\f11d";
}
/* line 946, ../dev/sass/_ionicons.scss */
.ion-chatbubbles:before {
content: "\f11f";
}
/* line 949, ../dev/sass/_ionicons.scss */
.ion-checkmark:before {
content: "\f122";
}
/* line 952, ../dev/sass/_ionicons.scss */
.ion-checkmark-circled:before {
content: "\f120";
}
/* line 955, ../dev/sass/_ionicons.scss */
.ion-checkmark-round:before {
content: "\f121";
}
/* line 958, ../dev/sass/_ionicons.scss */
.ion-chevron-down:before {
content: "\f123";
}
/* line 961, ../dev/sass/_ionicons.scss */
.ion-chevron-left:before {
content: "\f124";
}
/* line 964, ../dev/sass/_ionicons.scss */
.ion-chevron-right:before {
content: "\f125";
}
/* line 967, ../dev/sass/_ionicons.scss */
.ion-chevron-up:before {
content: "\f126";
}
/* line 970, ../dev/sass/_ionicons.scss */
.ion-clipboard:before {
content: "\f127";
}
/* line 973, ../dev/sass/_ionicons.scss */
.ion-clock:before {
content: "\f26e";
}
/* line 976, ../dev/sass/_ionicons.scss */
.ion-close:before {
content: "\f12a";
}
/* line 979, ../dev/sass/_ionicons.scss */
.ion-close-circled:before {
content: "\f128";
}
/* line 982, ../dev/sass/_ionicons.scss */
.ion-close-round:before {
content: "\f129";
}
/* line 985, ../dev/sass/_ionicons.scss */
.ion-cloud:before {
content: "\f12b";
}
/* line 988, ../dev/sass/_ionicons.scss */
.ion-code:before {
content: "\f271";
}
/* line 991, ../dev/sass/_ionicons.scss */
.ion-code-download:before {
content: "\f26f";
}
/* line 994, ../dev/sass/_ionicons.scss */
.ion-code-working:before {
content: "\f270";
}
/* line 997, ../dev/sass/_ionicons.scss */
.ion-coffee:before {
content: "\f272";
}
/* line 1000, ../dev/sass/_ionicons.scss */
.ion-compass:before {
content: "\f273";
}
/* line 1003, ../dev/sass/_ionicons.scss */
.ion-compose:before {
content: "\f12c";
}
/* line 1006, ../dev/sass/_ionicons.scss */
.ion-connection-bars:before {
content: "\f274";
}
/* line 1009, ../dev/sass/_ionicons.scss */
.ion-contrast:before {
content: "\f275";
}
/* line 1012, ../dev/sass/_ionicons.scss */
.ion-disc:before {
content: "\f12d";
}
/* line 1015, ../dev/sass/_ionicons.scss */
.ion-document:before {
content: "\f12f";
}
/* line 1018, ../dev/sass/_ionicons.scss */
.ion-document-text:before {
content: "\f12e";
}
/* line 1021, ../dev/sass/_ionicons.scss */
.ion-drag:before {
content: "\f130";
}
/* line 1024, ../dev/sass/_ionicons.scss */
.ion-earth:before {
content: "\f276";
}
/* line 1027, ../dev/sass/_ionicons.scss */
.ion-edit:before {
content: "\f2bf";
}
/* line 1030, ../dev/sass/_ionicons.scss */
.ion-egg:before {
content: "\f277";
}
/* line 1033, ../dev/sass/_ionicons.scss */
.ion-eject:before {
content: "\f131";
}
/* line 1036, ../dev/sass/_ionicons.scss */
.ion-email:before {
content: "\f132";
}
/* line 1039, ../dev/sass/_ionicons.scss */
.ion-eye:before {
content: "\f133";
}
/* line 1042, ../dev/sass/_ionicons.scss */
.ion-eye-disabled:before {
content: "\f306";
}
/* line 1045, ../dev/sass/_ionicons.scss */
.ion-female:before {
content: "\f278";
}
/* line 1048, ../dev/sass/_ionicons.scss */
.ion-filing:before {
content: "\f134";
}
/* line 1051, ../dev/sass/_ionicons.scss */
.ion-film-marker:before {
content: "\f135";
}
/* line 1054, ../dev/sass/_ionicons.scss */
.ion-flag:before {
content: "\f279";
}
/* line 1057, ../dev/sass/_ionicons.scss */
.ion-flash:before {
content: "\f137";
}
/* line 1060, ../dev/sass/_ionicons.scss */
.ion-flash-off:before {
content: "\f136";
}
/* line 1063, ../dev/sass/_ionicons.scss */
.ion-flask:before {
content: "\f138";
}
/* line 1066, ../dev/sass/_ionicons.scss */
.ion-folder:before {
content: "\f139";
}
/* line 1069, ../dev/sass/_ionicons.scss */
.ion-fork:before {
content: "\f27a";
}
/* line 1072, ../dev/sass/_ionicons.scss */
.ion-fork-repo:before {
content: "\f2c0";
}
/* line 1075, ../dev/sass/_ionicons.scss */
.ion-forward:before {
content: "\f13a";
}
/* line 1078, ../dev/sass/_ionicons.scss */
.ion-game-controller-a:before {
content: "\f13b";
}
/* line 1081, ../dev/sass/_ionicons.scss */
.ion-game-controller-b:before {
content: "\f13c";
}
/* line 1084, ../dev/sass/_ionicons.scss */
.ion-gear-a:before {
content: "\f13d";
}
/* line 1087, ../dev/sass/_ionicons.scss */
.ion-gear-b:before {
content: "\f13e";
}
/* line 1090, ../dev/sass/_ionicons.scss */
.ion-grid:before {
content: "\f13f";
}
/* line 1093, ../dev/sass/_ionicons.scss */
.ion-hammer:before {
content: "\f27b";
}
/* line 1096, ../dev/sass/_ionicons.scss */
.ion-headphone:before {
content: "\f140";
}
/* line 1099, ../dev/sass/_ionicons.scss */
.ion-heart:before {
content: "\f141";
}
/* line 1102, ../dev/sass/_ionicons.scss */
.ion-help:before {
content: "\f143";
}
/* line 1105, ../dev/sass/_ionicons.scss */
.ion-help-buoy:before {
content: "\f27c";
}
/* line 1108, ../dev/sass/_ionicons.scss */
.ion-help-circled:before {
content: "\f142";
}
/* line 1111, ../dev/sass/_ionicons.scss */
.ion-home:before {
content: "\f144";
}
/* line 1114, ../dev/sass/_ionicons.scss */
.ion-icecream:before {
content: "\f27d";
}
/* line 1117, ../dev/sass/_ionicons.scss */
.ion-icon-social-google-plus:before {
content: "\f146";
}
/* line 1120, ../dev/sass/_ionicons.scss */
.ion-icon-social-google-plus-outline:before {
content: "\f145";
}
/* line 1123, ../dev/sass/_ionicons.scss */
.ion-image:before {
content: "\f147";
}
/* line 1126, ../dev/sass/_ionicons.scss */
.ion-images:before {
content: "\f148";
}
/* line 1129, ../dev/sass/_ionicons.scss */
.ion-information:before {
content: "\f14a";
}
/* line 1132, ../dev/sass/_ionicons.scss */
.ion-information-circled:before {
content: "\f149";
}
/* line 1135, ../dev/sass/_ionicons.scss */
.ion-ionic:before {
content: "\f14b";
}
/* line 1138, ../dev/sass/_ionicons.scss */
.ion-ios7-alarm:before {
content: "\f14d";
}
/* line 1141, ../dev/sass/_ionicons.scss */
.ion-ios7-alarm-outline:before {
content: "\f14c";
}
/* line 1144, ../dev/sass/_ionicons.scss */
.ion-ios7-albums:before {
content: "\f14f";
}
/* line 1147, ../dev/sass/_ionicons.scss */
.ion-ios7-albums-outline:before {
content: "\f14e";
}
/* line 1150, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-back:before {
content: "\f150";
}
/* line 1153, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-down:before {
content: "\f151";
}
/* line 1156, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-forward:before {
content: "\f152";
}
/* line 1159, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-left:before {
content: "\f153";
}
/* line 1162, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-right:before {
content: "\f154";
}
/* line 1165, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-down:before {
content: "\f27e";
}
/* line 1168, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-left:before {
content: "\f27f";
}
/* line 1171, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-right:before {
content: "\f280";
}
/* line 1174, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-up:before {
content: "\f281";
}
/* line 1177, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-up:before {
content: "\f155";
}
/* line 1180, ../dev/sass/_ionicons.scss */
.ion-ios7-at:before {
content: "\f157";
}
/* line 1183, ../dev/sass/_ionicons.scss */
.ion-ios7-at-outline:before {
content: "\f156";
}
/* line 1186, ../dev/sass/_ionicons.scss */
.ion-ios7-bell:before {
content: "\f159";
}
/* line 1189, ../dev/sass/_ionicons.scss */
.ion-ios7-bell-outline:before {
content: "\f158";
}
/* line 1192, ../dev/sass/_ionicons.scss */
.ion-ios7-bolt:before {
content: "\f15b";
}
/* line 1195, ../dev/sass/_ionicons.scss */
.ion-ios7-bolt-outline:before {
content: "\f15a";
}
/* line 1198, ../dev/sass/_ionicons.scss */
.ion-ios7-bookmarks:before {
content: "\f15d";
}
/* line 1201, ../dev/sass/_ionicons.scss */
.ion-ios7-bookmarks-outline:before {
content: "\f15c";
}
/* line 1204, ../dev/sass/_ionicons.scss */
.ion-ios7-box:before {
content: "\f15f";
}
/* line 1207, ../dev/sass/_ionicons.scss */
.ion-ios7-box-outline:before {
content: "\f15e";
}
/* line 1210, ../dev/sass/_ionicons.scss */
.ion-ios7-briefcase:before {
content: "\f283";
}
/* line 1213, ../dev/sass/_ionicons.scss */
.ion-ios7-briefcase-outline:before {
content: "\f282";
}
/* line 1216, ../dev/sass/_ionicons.scss */
.ion-ios7-browsers:before {
content: "\f161";
}
/* line 1219, ../dev/sass/_ionicons.scss */
.ion-ios7-browsers-outline:before {
content: "\f160";
}
/* line 1222, ../dev/sass/_ionicons.scss */
.ion-ios7-calculator:before {
content: "\f285";
}
/* line 1225, ../dev/sass/_ionicons.scss */
.ion-ios7-calculator-outline:before {
content: "\f284";
}
/* line 1228, ../dev/sass/_ionicons.scss */
.ion-ios7-calendar:before {
content: "\f163";
}
/* line 1231, ../dev/sass/_ionicons.scss */
.ion-ios7-calendar-outline:before {
content: "\f162";
}
/* line 1234, ../dev/sass/_ionicons.scss */
.ion-ios7-camera:before {
content: "\f165";
}
/* line 1237, ../dev/sass/_ionicons.scss */
.ion-ios7-camera-outline:before {
content: "\f164";
}
/* line 1240, ../dev/sass/_ionicons.scss */
.ion-ios7-cart:before {
content: "\f167";
}
/* line 1243, ../dev/sass/_ionicons.scss */
.ion-ios7-cart-outline:before {
content: "\f166";
}
/* line 1246, ../dev/sass/_ionicons.scss */
.ion-ios7-chatboxes:before {
content: "\f169";
}
/* line 1249, ../dev/sass/_ionicons.scss */
.ion-ios7-chatboxes-outline:before {
content: "\f168";
}
/* line 1252, ../dev/sass/_ionicons.scss */
.ion-ios7-chatbubble:before {
content: "\f16b";
}
/* line 1255, ../dev/sass/_ionicons.scss */
.ion-ios7-chatbubble-outline:before {
content: "\f16a";
}
/* line 1258, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark:before {
content: "\f16e";
}
/* line 1261, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark-empty:before {
content: "\f16c";
}
/* line 1264, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark-outline:before {
content: "\f16d";
}
/* line 1267, ../dev/sass/_ionicons.scss */
.ion-ios7-circle-filled:before {
content: "\f16f";
}
/* line 1270, ../dev/sass/_ionicons.scss */
.ion-ios7-circle-outline:before {
content: "\f170";
}
/* line 1273, ../dev/sass/_ionicons.scss */
.ion-ios7-clock:before {
content: "\f172";
}
/* line 1276, ../dev/sass/_ionicons.scss */
.ion-ios7-clock-outline:before {
content: "\f171";
}
/* line 1279, ../dev/sass/_ionicons.scss */
.ion-ios7-close:before {
content: "\f2bc";
}
/* line 1282, ../dev/sass/_ionicons.scss */
.ion-ios7-close-empty:before {
content: "\f2bd";
}
/* line 1285, ../dev/sass/_ionicons.scss */
.ion-ios7-close-outline:before {
content: "\f2bb";
}
/* line 1288, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud:before {
content: "\f178";
}
/* line 1291, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-download:before {
content: "\f174";
}
/* line 1294, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-download-outline:before {
content: "\f173";
}
/* line 1297, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-outline:before {
content: "\f175";
}
/* line 1300, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-upload:before {
content: "\f177";
}
/* line 1303, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-upload-outline:before {
content: "\f176";
}
/* line 1306, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy:before {
content: "\f17a";
}
/* line 1309, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-night:before {
content: "\f308";
}
/* line 1312, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-night-outline:before {
content: "\f307";
}
/* line 1315, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-outline:before {
content: "\f179";
}
/* line 1318, ../dev/sass/_ionicons.scss */
.ion-ios7-cog:before {
content: "\f17c";
}
/* line 1321, ../dev/sass/_ionicons.scss */
.ion-ios7-cog-outline:before {
content: "\f17b";
}
/* line 1324, ../dev/sass/_ionicons.scss */
.ion-ios7-compose:before {
content: "\f17e";
}
/* line 1327, ../dev/sass/_ionicons.scss */
.ion-ios7-compose-outline:before {
content: "\f17d";
}
/* line 1330, ../dev/sass/_ionicons.scss */
.ion-ios7-contact:before {
content: "\f180";
}
/* line 1333, ../dev/sass/_ionicons.scss */
.ion-ios7-contact-outline:before {
content: "\f17f";
}
/* line 1336, ../dev/sass/_ionicons.scss */
.ion-ios7-copy:before {
content: "\f182";
}
/* line 1339, ../dev/sass/_ionicons.scss */
.ion-ios7-copy-outline:before {
content: "\f181";
}
/* line 1342, ../dev/sass/_ionicons.scss */
.ion-ios7-download:before {
content: "\f184";
}
/* line 1345, ../dev/sass/_ionicons.scss */
.ion-ios7-download-outline:before {
content: "\f183";
}
/* line 1348, ../dev/sass/_ionicons.scss */
.ion-ios7-drag:before {
content: "\f185";
}
/* line 1351, ../dev/sass/_ionicons.scss */
.ion-ios7-email:before {
content: "\f187";
}
/* line 1354, ../dev/sass/_ionicons.scss */
.ion-ios7-email-outline:before {
content: "\f186";
}
/* line 1357, ../dev/sass/_ionicons.scss */
.ion-ios7-eye:before {
content: "\f189";
}
/* line 1360, ../dev/sass/_ionicons.scss */
.ion-ios7-eye-outline:before {
content: "\f188";
}
/* line 1363, ../dev/sass/_ionicons.scss */
.ion-ios7-fastforward:before {
content: "\f18b";
}
/* line 1366, ../dev/sass/_ionicons.scss */
.ion-ios7-fastforward-outline:before {
content: "\f18a";
}
/* line 1369, ../dev/sass/_ionicons.scss */
.ion-ios7-filing:before {
content: "\f18d";
}
/* line 1372, ../dev/sass/_ionicons.scss */
.ion-ios7-filing-outline:before {
content: "\f18c";
}
/* line 1375, ../dev/sass/_ionicons.scss */
.ion-ios7-film:before {
content: "\f18f";
}
/* line 1378, ../dev/sass/_ionicons.scss */
.ion-ios7-film-outline:before {
content: "\f18e";
}
/* line 1381, ../dev/sass/_ionicons.scss */
.ion-ios7-flag:before {
content: "\f191";
}
/* line 1384, ../dev/sass/_ionicons.scss */
.ion-ios7-flag-outline:before {
content: "\f190";
}
/* line 1387, ../dev/sass/_ionicons.scss */
.ion-ios7-folder:before {
content: "\f193";
}
/* line 1390, ../dev/sass/_ionicons.scss */
.ion-ios7-folder-outline:before {
content: "\f192";
}
/* line 1393, ../dev/sass/_ionicons.scss */
.ion-ios7-gear:before {
content: "\f195";
}
/* line 1396, ../dev/sass/_ionicons.scss */
.ion-ios7-gear-outline:before {
content: "\f194";
}
/* line 1399, ../dev/sass/_ionicons.scss */
.ion-ios7-glasses:before {
content: "\f197";
}
/* line 1402, ../dev/sass/_ionicons.scss */
.ion-ios7-glasses-outline:before {
content: "\f196";
}
/* line 1405, ../dev/sass/_ionicons.scss */
.ion-ios7-heart:before {
content: "\f199";
}
/* line 1408, ../dev/sass/_ionicons.scss */
.ion-ios7-heart-outline:before {
content: "\f198";
}
/* line 1411, ../dev/sass/_ionicons.scss */
.ion-ios7-help:before {
content: "\f19c";
}
/* line 1414, ../dev/sass/_ionicons.scss */
.ion-ios7-help-empty:before {
content: "\f19a";
}
/* line 1417, ../dev/sass/_ionicons.scss */
.ion-ios7-help-outline:before {
content: "\f19b";
}
/* line 1420, ../dev/sass/_ionicons.scss */
.ion-ios7-infinite:before {
content: "\f19e";
}
/* line 1423, ../dev/sass/_ionicons.scss */
.ion-ios7-infinite-outline:before {
content: "\f19d";
}
/* line 1426, ../dev/sass/_ionicons.scss */
.ion-ios7-information:before {
content: "\f1a1";
}
/* line 1429, ../dev/sass/_ionicons.scss */
.ion-ios7-information-empty:before {
content: "\f19f";
}
/* line 1432, ../dev/sass/_ionicons.scss */
.ion-ios7-information-outline:before {
content: "\f1a0";
}
/* line 1435, ../dev/sass/_ionicons.scss */
.ion-ios7-ionic-outline:before {
content: "\f1a2";
}
/* line 1438, ../dev/sass/_ionicons.scss */
.ion-ios7-keypad:before {
content: "\f1a4";
}
/* line 1441, ../dev/sass/_ionicons.scss */
.ion-ios7-keypad-outline:before {
content: "\f1a3";
}
/* line 1444, ../dev/sass/_ionicons.scss */
.ion-ios7-lightbulb:before {
content: "\f287";
}
/* line 1447, ../dev/sass/_ionicons.scss */
.ion-ios7-lightbulb-outline:before {
content: "\f286";
}
/* line 1450, ../dev/sass/_ionicons.scss */
.ion-ios7-location:before {
content: "\f1a6";
}
/* line 1453, ../dev/sass/_ionicons.scss */
.ion-ios7-location-outline:before {
content: "\f1a5";
}
/* line 1456, ../dev/sass/_ionicons.scss */
.ion-ios7-locked:before {
content: "\f1a8";
}
/* line 1459, ../dev/sass/_ionicons.scss */
.ion-ios7-locked-outline:before {
content: "\f1a7";
}
/* line 1462, ../dev/sass/_ionicons.scss */
.ion-ios7-medkit:before {
content: "\f289";
}
/* line 1465, ../dev/sass/_ionicons.scss */
.ion-ios7-medkit-outline:before {
content: "\f288";
}
/* line 1468, ../dev/sass/_ionicons.scss */
.ion-ios7-mic:before {
content: "\f1ab";
}
/* line 1471, ../dev/sass/_ionicons.scss */
.ion-ios7-mic-off:before {
content: "\f1a9";
}
/* line 1474, ../dev/sass/_ionicons.scss */
.ion-ios7-mic-outline:before {
content: "\f1aa";
}
/* line 1477, ../dev/sass/_ionicons.scss */
.ion-ios7-minus:before {
content: "\f1ae";
}
/* line 1480, ../dev/sass/_ionicons.scss */
.ion-ios7-minus-empty:before {
content: "\f1ac";
}
/* line 1483, ../dev/sass/_ionicons.scss */
.ion-ios7-minus-outline:before {
content: "\f1ad";
}
/* line 1486, ../dev/sass/_ionicons.scss */
.ion-ios7-monitor:before {
content: "\f1b0";
}
/* line 1489, ../dev/sass/_ionicons.scss */
.ion-ios7-monitor-outline:before {
content: "\f1af";
}
/* line 1492, ../dev/sass/_ionicons.scss */
.ion-ios7-moon:before {
content: "\f1b2";
}
/* line 1495, ../dev/sass/_ionicons.scss */
.ion-ios7-moon-outline:before {
content: "\f1b1";
}
/* line 1498, ../dev/sass/_ionicons.scss */
.ion-ios7-more:before {
content: "\f1b4";
}
/* line 1501, ../dev/sass/_ionicons.scss */
.ion-ios7-more-outline:before {
content: "\f1b3";
}
/* line 1504, ../dev/sass/_ionicons.scss */
.ion-ios7-musical-note:before {
content: "\f1b5";
}
/* line 1507, ../dev/sass/_ionicons.scss */
.ion-ios7-musical-notes:before {
content: "\f1b6";
}
/* line 1510, ../dev/sass/_ionicons.scss */
.ion-ios7-navigate:before {
content: "\f1b8";
}
/* line 1513, ../dev/sass/_ionicons.scss */
.ion-ios7-navigate-outline:before {
content: "\f1b7";
}
/* line 1516, ../dev/sass/_ionicons.scss */
.ion-ios7-paperplane:before {
content: "\f1ba";
}
/* line 1519, ../dev/sass/_ionicons.scss */
.ion-ios7-paperplane-outline:before {
content: "\f1b9";
}
/* line 1522, ../dev/sass/_ionicons.scss */
.ion-ios7-partlysunny:before {
content: "\f1bc";
}
/* line 1525, ../dev/sass/_ionicons.scss */
.ion-ios7-partlysunny-outline:before {
content: "\f1bb";
}
/* line 1528, ../dev/sass/_ionicons.scss */
.ion-ios7-pause:before {
content: "\f1be";
}
/* line 1531, ../dev/sass/_ionicons.scss */
.ion-ios7-pause-outline:before {
content: "\f1bd";
}
/* line 1534, ../dev/sass/_ionicons.scss */
.ion-ios7-people:before {
content: "\f1c0";
}
/* line 1537, ../dev/sass/_ionicons.scss */
.ion-ios7-people-outline:before {
content: "\f1bf";
}
/* line 1540, ../dev/sass/_ionicons.scss */
.ion-ios7-person:before {
content: "\f1c2";
}
/* line 1543, ../dev/sass/_ionicons.scss */
.ion-ios7-person-outline:before {
content: "\f1c1";
}
/* line 1546, ../dev/sass/_ionicons.scss */
.ion-ios7-personadd:before {
content: "\f1c4";
}
/* line 1549, ../dev/sass/_ionicons.scss */
.ion-ios7-personadd-outline:before {
content: "\f1c3";
}
/* line 1552, ../dev/sass/_ionicons.scss */
.ion-ios7-photos:before {
content: "\f1c6";
}
/* line 1555, ../dev/sass/_ionicons.scss */
.ion-ios7-photos-outline:before {
content: "\f1c5";
}
/* line 1558, ../dev/sass/_ionicons.scss */
.ion-ios7-pie:before {
content: "\f28b";
}
/* line 1561, ../dev/sass/_ionicons.scss */
.ion-ios7-pie-outline:before {
content: "\f28a";
}
/* line 1564, ../dev/sass/_ionicons.scss */
.ion-ios7-play:before {
content: "\f1c8";
}
/* line 1567, ../dev/sass/_ionicons.scss */
.ion-ios7-play-outline:before {
content: "\f1c7";
}
/* line 1570, ../dev/sass/_ionicons.scss */
.ion-ios7-plus:before {
content: "\f1cb";
}
/* line 1573, ../dev/sass/_ionicons.scss */
.ion-ios7-plus-empty:before {
content: "\f1c9";
}
/* line 1576, ../dev/sass/_ionicons.scss */
.ion-ios7-plus-outline:before {
content: "\f1ca";
}
/* line 1579, ../dev/sass/_ionicons.scss */
.ion-ios7-pricetag:before {
content: "\f28d";
}
/* line 1582, ../dev/sass/_ionicons.scss */
.ion-ios7-pricetag-outline:before {
content: "\f28c";
}
/* line 1585, ../dev/sass/_ionicons.scss */
.ion-ios7-printer:before {
content: "\f1cd";
}
/* line 1588, ../dev/sass/_ionicons.scss */
.ion-ios7-printer-outline:before {
content: "\f1cc";
}
/* line 1591, ../dev/sass/_ionicons.scss */
.ion-ios7-rainy:before {
content: "\f1cf";
}
/* line 1594, ../dev/sass/_ionicons.scss */
.ion-ios7-rainy-outline:before {
content: "\f1ce";
}
/* line 1597, ../dev/sass/_ionicons.scss */
.ion-ios7-recording:before {
content: "\f1d1";
}
/* line 1600, ../dev/sass/_ionicons.scss */
.ion-ios7-recording-outline:before {
content: "\f1d0";
}
/* line 1603, ../dev/sass/_ionicons.scss */
.ion-ios7-redo:before {
content: "\f1d3";
}
/* line 1606, ../dev/sass/_ionicons.scss */
.ion-ios7-redo-outline:before {
content: "\f1d2";
}
/* line 1609, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh:before {
content: "\f1d6";
}
/* line 1612, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh-empty:before {
content: "\f1d4";
}
/* line 1615, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh-outline:before {
content: "\f1d5";
}
/* line 1618, ../dev/sass/_ionicons.scss */
.ion-ios7-reload:before, .ion-ios7-reloading:before {
content: "\f28e";
}
/* line 1621, ../dev/sass/_ionicons.scss */
.ion-ios7-rewind:before {
content: "\f1d8";
}
/* line 1624, ../dev/sass/_ionicons.scss */
.ion-ios7-rewind-outline:before {
content: "\f1d7";
}
/* line 1627, ../dev/sass/_ionicons.scss */
.ion-ios7-search:before {
content: "\f1da";
}
/* line 1630, ../dev/sass/_ionicons.scss */
.ion-ios7-search-strong:before {
content: "\f1d9";
}
/* line 1633, ../dev/sass/_ionicons.scss */
.ion-ios7-skipbackward:before {
content: "\f1dc";
}
/* line 1636, ../dev/sass/_ionicons.scss */
.ion-ios7-skipbackward-outline:before {
content: "\f1db";
}
/* line 1639, ../dev/sass/_ionicons.scss */
.ion-ios7-skipforward:before {
content: "\f1de";
}
/* line 1642, ../dev/sass/_ionicons.scss */
.ion-ios7-skipforward-outline:before {
content: "\f1dd";
}
/* line 1645, ../dev/sass/_ionicons.scss */
.ion-ios7-snowy:before {
content: "\f309";
}
/* line 1648, ../dev/sass/_ionicons.scss */
.ion-ios7-speedometer:before {
content: "\f290";
}
/* line 1651, ../dev/sass/_ionicons.scss */
.ion-ios7-speedometer-outline:before {
content: "\f28f";
}
/* line 1654, ../dev/sass/_ionicons.scss */
.ion-ios7-star:before {
content: "\f1e0";
}
/* line 1657, ../dev/sass/_ionicons.scss */
.ion-ios7-star-outline:before {
content: "\f1df";
}
/* line 1660, ../dev/sass/_ionicons.scss */
.ion-ios7-stopwatch:before {
content: "\f1e2";
}
/* line 1663, ../dev/sass/_ionicons.scss */
.ion-ios7-stopwatch-outline:before {
content: "\f1e1";
}
/* line 1666, ../dev/sass/_ionicons.scss */
.ion-ios7-sunny:before {
content: "\f1e4";
}
/* line 1669, ../dev/sass/_ionicons.scss */
.ion-ios7-sunny-outline:before {
content: "\f1e3";
}
/* line 1672, ../dev/sass/_ionicons.scss */
.ion-ios7-telephone:before {
content: "\f1e6";
}
/* line 1675, ../dev/sass/_ionicons.scss */
.ion-ios7-telephone-outline:before {
content: "\f1e5";
}
/* line 1678, ../dev/sass/_ionicons.scss */
.ion-ios7-thunderstorm:before {
content: "\f1e8";
}
/* line 1681, ../dev/sass/_ionicons.scss */
.ion-ios7-thunderstorm-outline:before {
content: "\f1e7";
}
/* line 1684, ../dev/sass/_ionicons.scss */
.ion-ios7-time:before {
content: "\f292";
}
/* line 1687, ../dev/sass/_ionicons.scss */
.ion-ios7-time-outline:before {
content: "\f291";
}
/* line 1690, ../dev/sass/_ionicons.scss */
.ion-ios7-timer:before {
content: "\f1ea";
}
/* line 1693, ../dev/sass/_ionicons.scss */
.ion-ios7-timer-outline:before {
content: "\f1e9";
}
/* line 1696, ../dev/sass/_ionicons.scss */
.ion-ios7-trash:before {
content: "\f1ec";
}
/* line 1699, ../dev/sass/_ionicons.scss */
.ion-ios7-trash-outline:before {
content: "\f1eb";
}
/* line 1702, ../dev/sass/_ionicons.scss */
.ion-ios7-undo:before {
content: "\f1ee";
}
/* line 1705, ../dev/sass/_ionicons.scss */
.ion-ios7-undo-outline:before {
content: "\f1ed";
}
/* line 1708, ../dev/sass/_ionicons.scss */
.ion-ios7-unlocked:before {
content: "\f1f0";
}
/* line 1711, ../dev/sass/_ionicons.scss */
.ion-ios7-unlocked-outline:before {
content: "\f1ef";
}
/* line 1714, ../dev/sass/_ionicons.scss */
.ion-ios7-upload:before {
content: "\f1f2";
}
/* line 1717, ../dev/sass/_ionicons.scss */
.ion-ios7-upload-outline:before {
content: "\f1f1";
}
/* line 1720, ../dev/sass/_ionicons.scss */
.ion-ios7-videocam:before {
content: "\f1f4";
}
/* line 1723, ../dev/sass/_ionicons.scss */
.ion-ios7-videocam-outline:before {
content: "\f1f3";
}
/* line 1726, ../dev/sass/_ionicons.scss */
.ion-ios7-volume-high:before {
content: "\f1f5";
}
/* line 1729, ../dev/sass/_ionicons.scss */
.ion-ios7-volume-low:before {
content: "\f1f6";
}
/* line 1732, ../dev/sass/_ionicons.scss */
.ion-ios7-wineglass:before {
content: "\f294";
}
/* line 1735, ../dev/sass/_ionicons.scss */
.ion-ios7-wineglass-outline:before {
content: "\f293";
}
/* line 1738, ../dev/sass/_ionicons.scss */
.ion-ios7-world:before {
content: "\f1f8";
}
/* line 1741, ../dev/sass/_ionicons.scss */
.ion-ios7-world-outline:before {
content: "\f1f7";
}
/* line 1744, ../dev/sass/_ionicons.scss */
.ion-ipad:before {
content: "\f1f9";
}
/* line 1747, ../dev/sass/_ionicons.scss */
.ion-iphone:before {
content: "\f1fa";
}
/* line 1750, ../dev/sass/_ionicons.scss */
.ion-ipod:before {
content: "\f1fb";
}
/* line 1753, ../dev/sass/_ionicons.scss */
.ion-jet:before {
content: "\f295";
}
/* line 1756, ../dev/sass/_ionicons.scss */
.ion-key:before {
content: "\f296";
}
/* line 1759, ../dev/sass/_ionicons.scss */
.ion-knife:before {
content: "\f297";
}
/* line 1762, ../dev/sass/_ionicons.scss */
.ion-laptop:before {
content: "\f1fc";
}
/* line 1765, ../dev/sass/_ionicons.scss */
.ion-leaf:before {
content: "\f1fd";
}
/* line 1768, ../dev/sass/_ionicons.scss */
.ion-levels:before {
content: "\f298";
}
/* line 1771, ../dev/sass/_ionicons.scss */
.ion-lightbulb:before {
content: "\f299";
}
/* line 1774, ../dev/sass/_ionicons.scss */
.ion-link:before {
content: "\f1fe";
}
/* line 1777, ../dev/sass/_ionicons.scss */
.ion-load-a:before, .ion-loading-a:before {
content: "\f29a";
}
/* line 1780, ../dev/sass/_ionicons.scss */
.ion-load-b:before, .ion-loading-b:before {
content: "\f29b";
}
/* line 1783, ../dev/sass/_ionicons.scss */
.ion-load-c:before, .ion-loading-c:before {
content: "\f29c";
}
/* line 1786, ../dev/sass/_ionicons.scss */
.ion-load-d:before, .ion-loading-d:before {
content: "\f29d";
}
/* line 1789, ../dev/sass/_ionicons.scss */
.ion-location:before {
content: "\f1ff";
}
/* line 1792, ../dev/sass/_ionicons.scss */
.ion-locked:before {
content: "\f200";
}
/* line 1795, ../dev/sass/_ionicons.scss */
.ion-log-in:before {
content: "\f29e";
}
/* line 1798, ../dev/sass/_ionicons.scss */
.ion-log-out:before {
content: "\f29f";
}
/* line 1801, ../dev/sass/_ionicons.scss */
.ion-loop:before, .ion-looping:before {
content: "\f201";
}
/* line 1804, ../dev/sass/_ionicons.scss */
.ion-magnet:before {
content: "\f2a0";
}
/* line 1807, ../dev/sass/_ionicons.scss */
.ion-male:before {
content: "\f2a1";
}
/* line 1810, ../dev/sass/_ionicons.scss */
.ion-man:before {
content: "\f202";
}
/* line 1813, ../dev/sass/_ionicons.scss */
.ion-map:before {
content: "\f203";
}
/* line 1816, ../dev/sass/_ionicons.scss */
.ion-medkit:before {
content: "\f2a2";
}
/* line 1819, ../dev/sass/_ionicons.scss */
.ion-mic-a:before {
content: "\f204";
}
/* line 1822, ../dev/sass/_ionicons.scss */
.ion-mic-b:before {
content: "\f205";
}
/* line 1825, ../dev/sass/_ionicons.scss */
.ion-mic-c:before {
content: "\f206";
}
/* line 1828, ../dev/sass/_ionicons.scss */
.ion-minus:before {
content: "\f209";
}
/* line 1831, ../dev/sass/_ionicons.scss */
.ion-minus-circled:before {
content: "\f207";
}
/* line 1834, ../dev/sass/_ionicons.scss */
.ion-minus-round:before {
content: "\f208";
}
/* line 1837, ../dev/sass/_ionicons.scss */
.ion-model-s:before {
content: "\f2c1";
}
/* line 1840, ../dev/sass/_ionicons.scss */
.ion-monitor:before {
content: "\f20a";
}
/* line 1843, ../dev/sass/_ionicons.scss */
.ion-more:before {
content: "\f20b";
}
/* line 1846, ../dev/sass/_ionicons.scss */
.ion-music-note:before {
content: "\f20c";
}
/* line 1849, ../dev/sass/_ionicons.scss */
.ion-navicon:before {
content: "\f20e";
}
/* line 1852, ../dev/sass/_ionicons.scss */
.ion-navicon-round:before {
content: "\f20d";
}
/* line 1855, ../dev/sass/_ionicons.scss */
.ion-navigate:before {
content: "\f2a3";
}
/* line 1858, ../dev/sass/_ionicons.scss */
.ion-no-smoking:before {
content: "\f2c2";
}
/* line 1861, ../dev/sass/_ionicons.scss */
.ion-nuclear:before {
content: "\f2a4";
}
/* line 1864, ../dev/sass/_ionicons.scss */
.ion-paper-airplane:before {
content: "\f2c3";
}
/* line 1867, ../dev/sass/_ionicons.scss */
.ion-paperclip:before {
content: "\f20f";
}
/* line 1870, ../dev/sass/_ionicons.scss */
.ion-pause:before {
content: "\f210";
}
/* line 1873, ../dev/sass/_ionicons.scss */
.ion-person:before {
content: "\f213";
}
/* line 1876, ../dev/sass/_ionicons.scss */
.ion-person-add:before {
content: "\f211";
}
/* line 1879, ../dev/sass/_ionicons.scss */
.ion-person-stalker:before {
content: "\f212";
}
/* line 1882, ../dev/sass/_ionicons.scss */
.ion-pie-graph:before {
content: "\f2a5";
}
/* line 1885, ../dev/sass/_ionicons.scss */
.ion-pin:before {
content: "\f2a6";
}
/* line 1888, ../dev/sass/_ionicons.scss */
.ion-pinpoint:before {
content: "\f2a7";
}
/* line 1891, ../dev/sass/_ionicons.scss */
.ion-pizza:before {
content: "\f2a8";
}
/* line 1894, ../dev/sass/_ionicons.scss */
.ion-plane:before {
content: "\f214";
}
/* line 1897, ../dev/sass/_ionicons.scss */
.ion-play:before {
content: "\f215";
}
/* line 1900, ../dev/sass/_ionicons.scss */
.ion-playstation:before {
content: "\f30a";
}
/* line 1903, ../dev/sass/_ionicons.scss */
.ion-plus:before {
content: "\f218";
}
/* line 1906, ../dev/sass/_ionicons.scss */
.ion-plus-circled:before {
content: "\f216";
}
/* line 1909, ../dev/sass/_ionicons.scss */
.ion-plus-round:before {
content: "\f217";
}
/* line 1912, ../dev/sass/_ionicons.scss */
.ion-pound:before {
content: "\f219";
}
/* line 1915, ../dev/sass/_ionicons.scss */
.ion-power:before {
content: "\f2a9";
}
/* line 1918, ../dev/sass/_ionicons.scss */
.ion-pricetag:before {
content: "\f2aa";
}
/* line 1921, ../dev/sass/_ionicons.scss */
.ion-pricetags:before {
content: "\f2ab";
}
/* line 1924, ../dev/sass/_ionicons.scss */
.ion-printer:before {
content: "\f21a";
}
/* line 1927, ../dev/sass/_ionicons.scss */
.ion-radio-waves:before {
content: "\f2ac";
}
/* line 1930, ../dev/sass/_ionicons.scss */
.ion-record:before {
content: "\f21b";
}
/* line 1933, ../dev/sass/_ionicons.scss */
.ion-refresh:before, .ion-refreshing:before {
content: "\f21c";
}
/* line 1936, ../dev/sass/_ionicons.scss */
.ion-reply:before {
content: "\f21e";
}
/* line 1939, ../dev/sass/_ionicons.scss */
.ion-reply-all:before {
content: "\f21d";
}
/* line 1942, ../dev/sass/_ionicons.scss */
.ion-search:before {
content: "\f21f";
}
/* line 1945, ../dev/sass/_ionicons.scss */
.ion-settings:before {
content: "\f2ad";
}
/* line 1948, ../dev/sass/_ionicons.scss */
.ion-share:before {
content: "\f220";
}
/* line 1951, ../dev/sass/_ionicons.scss */
.ion-shuffle:before {
content: "\f221";
}
/* line 1954, ../dev/sass/_ionicons.scss */
.ion-skip-backward:before {
content: "\f222";
}
/* line 1957, ../dev/sass/_ionicons.scss */
.ion-skip-forward:before {
content: "\f223";
}
/* line 1960, ../dev/sass/_ionicons.scss */
.ion-social-android:before {
content: "\f225";
}
/* line 1963, ../dev/sass/_ionicons.scss */
.ion-social-android-outline:before {
content: "\f224";
}
/* line 1966, ../dev/sass/_ionicons.scss */
.ion-social-apple:before {
content: "\f227";
}
/* line 1969, ../dev/sass/_ionicons.scss */
.ion-social-apple-outline:before {
content: "\f226";
}
/* line 1972, ../dev/sass/_ionicons.scss */
.ion-social-bitcoin:before {
content: "\f2af";
}
/* line 1975, ../dev/sass/_ionicons.scss */
.ion-social-bitcoin-outline:before {
content: "\f2ae";
}
/* line 1978, ../dev/sass/_ionicons.scss */
.ion-social-buffer:before {
content: "\f229";
}
/* line 1981, ../dev/sass/_ionicons.scss */
.ion-social-buffer-outline:before {
content: "\f228";
}
/* line 1984, ../dev/sass/_ionicons.scss */
.ion-social-designernews:before {
content: "\f22b";
}
/* line 1987, ../dev/sass/_ionicons.scss */
.ion-social-designernews-outline:before {
content: "\f22a";
}
/* line 1990, ../dev/sass/_ionicons.scss */
.ion-social-dribbble:before {
content: "\f22d";
}
/* line 1993, ../dev/sass/_ionicons.scss */
.ion-social-dribbble-outline:before {
content: "\f22c";
}
/* line 1996, ../dev/sass/_ionicons.scss */
.ion-social-dropbox:before {
content: "\f22f";
}
/* line 1999, ../dev/sass/_ionicons.scss */
.ion-social-dropbox-outline:before {
content: "\f22e";
}
/* line 2002, ../dev/sass/_ionicons.scss */
.ion-social-facebook:before {
content: "\f231";
}
/* line 2005, ../dev/sass/_ionicons.scss */
.ion-social-facebook-outline:before {
content: "\f230";
}
/* line 2008, ../dev/sass/_ionicons.scss */
.ion-social-freebsd-devil:before {
content: "\f2c4";
}
/* line 2011, ../dev/sass/_ionicons.scss */
.ion-social-github:before {
content: "\f233";
}
/* line 2014, ../dev/sass/_ionicons.scss */
.ion-social-github-outline:before {
content: "\f232";
}
/* line 2017, ../dev/sass/_ionicons.scss */
.ion-social-googleplus:before {
content: "\f235";
}
/* line 2020, ../dev/sass/_ionicons.scss */
.ion-social-googleplus-outline:before {
content: "\f234";
}
/* line 2023, ../dev/sass/_ionicons.scss */
.ion-social-hackernews:before {
content: "\f237";
}
/* line 2026, ../dev/sass/_ionicons.scss */
.ion-social-hackernews-outline:before {
content: "\f236";
}
/* line 2029, ../dev/sass/_ionicons.scss */
.ion-social-linkedin:before {
content: "\f239";
}
/* line 2032, ../dev/sass/_ionicons.scss */
.ion-social-linkedin-outline:before {
content: "\f238";
}
/* line 2035, ../dev/sass/_ionicons.scss */
.ion-social-pinterest:before {
content: "\f2b1";
}
/* line 2038, ../dev/sass/_ionicons.scss */
.ion-social-pinterest-outline:before {
content: "\f2b0";
}
/* line 2041, ../dev/sass/_ionicons.scss */
.ion-social-reddit:before {
content: "\f23b";
}
/* line 2044, ../dev/sass/_ionicons.scss */
.ion-social-reddit-outline:before {
content: "\f23a";
}
/* line 2047, ../dev/sass/_ionicons.scss */
.ion-social-rss:before {
content: "\f23d";
}
/* line 2050, ../dev/sass/_ionicons.scss */
.ion-social-rss-outline:before {
content: "\f23c";
}
/* line 2053, ../dev/sass/_ionicons.scss */
.ion-social-skype:before {
content: "\f23f";
}
/* line 2056, ../dev/sass/_ionicons.scss */
.ion-social-skype-outline:before {
content: "\f23e";
}
/* line 2059, ../dev/sass/_ionicons.scss */
.ion-social-tumblr:before {
content: "\f241";
}
/* line 2062, ../dev/sass/_ionicons.scss */
.ion-social-tumblr-outline:before {
content: "\f240";
}
/* line 2065, ../dev/sass/_ionicons.scss */
.ion-social-tux:before {
content: "\f2c5";
}
/* line 2068, ../dev/sass/_ionicons.scss */
.ion-social-twitter:before {
content: "\f243";
}
/* line 2071, ../dev/sass/_ionicons.scss */
.ion-social-twitter-outline:before {
content: "\f242";
}
/* line 2074, ../dev/sass/_ionicons.scss */
.ion-social-vimeo:before {
content: "\f245";
}
/* line 2077, ../dev/sass/_ionicons.scss */
.ion-social-vimeo-outline:before {
content: "\f244";
}
/* line 2080, ../dev/sass/_ionicons.scss */
.ion-social-windows:before {
content: "\f247";
}
/* line 2083, ../dev/sass/_ionicons.scss */
.ion-social-windows-outline:before {
content: "\f246";
}
/* line 2086, ../dev/sass/_ionicons.scss */
.ion-social-wordpress:before {
content: "\f249";
}
/* line 2089, ../dev/sass/_ionicons.scss */
.ion-social-wordpress-outline:before {
content: "\f248";
}
/* line 2092, ../dev/sass/_ionicons.scss */
.ion-social-yahoo:before {
content: "\f24b";
}
/* line 2095, ../dev/sass/_ionicons.scss */
.ion-social-yahoo-outline:before {
content: "\f24a";
}
/* line 2098, ../dev/sass/_ionicons.scss */
.ion-social-youtube:before {
content: "\f24d";
}
/* line 2101, ../dev/sass/_ionicons.scss */
.ion-social-youtube-outline:before {
content: "\f24c";
}
/* line 2104, ../dev/sass/_ionicons.scss */
.ion-speakerphone:before {
content: "\f2b2";
}
/* line 2107, ../dev/sass/_ionicons.scss */
.ion-speedometer:before {
content: "\f2b3";
}
/* line 2110, ../dev/sass/_ionicons.scss */
.ion-spoon:before {
content: "\f2b4";
}
/* line 2113, ../dev/sass/_ionicons.scss */
.ion-star:before {
content: "\f24e";
}
/* line 2116, ../dev/sass/_ionicons.scss */
.ion-stats-bars:before {
content: "\f2b5";
}
/* line 2119, ../dev/sass/_ionicons.scss */
.ion-steam:before {
content: "\f30b";
}
/* line 2122, ../dev/sass/_ionicons.scss */
.ion-stop:before {
content: "\f24f";
}
/* line 2125, ../dev/sass/_ionicons.scss */
.ion-thermometer:before {
content: "\f2b6";
}
/* line 2128, ../dev/sass/_ionicons.scss */
.ion-thumbsdown:before {
content: "\f250";
}
/* line 2131, ../dev/sass/_ionicons.scss */
.ion-thumbsup:before {
content: "\f251";
}
/* line 2134, ../dev/sass/_ionicons.scss */
.ion-trash-a:before {
content: "\f252";
}
/* line 2137, ../dev/sass/_ionicons.scss */
.ion-trash-b:before {
content: "\f253";
}
/* line 2140, ../dev/sass/_ionicons.scss */
.ion-umbrella:before {
content: "\f2b7";
}
/* line 2143, ../dev/sass/_ionicons.scss */
.ion-unlocked:before {
content: "\f254";
}
/* line 2146, ../dev/sass/_ionicons.scss */
.ion-upload:before {
content: "\f255";
}
/* line 2149, ../dev/sass/_ionicons.scss */
.ion-usb:before {
content: "\f2b8";
}
/* line 2152, ../dev/sass/_ionicons.scss */
.ion-videocamera:before {
content: "\f256";
}
/* line 2155, ../dev/sass/_ionicons.scss */
.ion-volume-high:before {
content: "\f257";
}
/* line 2158, ../dev/sass/_ionicons.scss */
.ion-volume-low:before {
content: "\f258";
}
/* line 2161, ../dev/sass/_ionicons.scss */
.ion-volume-medium:before {
content: "\f259";
}
/* line 2164, ../dev/sass/_ionicons.scss */
.ion-volume-mute:before {
content: "\f25a";
}
/* line 2167, ../dev/sass/_ionicons.scss */
.ion-waterdrop:before {
content: "\f25b";
}
/* line 2170, ../dev/sass/_ionicons.scss */
.ion-wifi:before {
content: "\f25c";
}
/* line 2173, ../dev/sass/_ionicons.scss */
.ion-wineglass:before {
content: "\f2b9";
}
/* line 2176, ../dev/sass/_ionicons.scss */
.ion-woman:before {
content: "\f25d";
}
/* line 2179, ../dev/sass/_ionicons.scss */
.ion-wrench:before {
content: "\f2ba";
}
/* line 2182, ../dev/sass/_ionicons.scss */
.ion-xbox:before {
content: "\f30c";
}
/* line 1, ../dev/sass/_video.scss */
.video_wrapper {
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
}
/* line 6, ../dev/sass/_video.scss */
.video_wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* line 13, ../dev/sass/_video.scss */
.video_wrapper .video_tease {
margin-top: -25px;
z-index: 5;
}
/* line 19, ../dev/sass/_video.scss */
.below_video {
display: none;
}
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
display: block;
position: relative;
margin: -8px 0 30px;
height: 40px;
width: 100%;
}
@media (max-width: 500px) {
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
font-size: 12px;
}
}
@media (max-width: 500px) {
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
margin-top: -14px;
}
}
/* line 36, ../dev/sass/_video.scss */
.podcast_page .below_video .extras, .podcast_page .below_video .social_logos {
position: absolute;
bottom: 0;
color: #262a2a;
font-weight: 500;
}
/* line 41, ../dev/sass/_video.scss */
.podcast_page .below_video .extras a, .podcast_page .below_video .social_logos a {
/*color: #262a2a;*/
}
/* line 43, ../dev/sass/_video.scss */
.podcast_page .below_video .extras a:hover, .podcast_page .below_video .social_logos a:hover {
text-decoration: none;
color: #307fe2;
}
/* line 49, ../dev/sass/_video.scss */
.podcast_page .below_video .extras {
position: absolute;
bottom: 0;
left: 5px;
}
/* line 54, ../dev/sass/_video.scss */
.podcast_page .below_video .social_logos {
position: absolute;
bottom: 0;
right: 5px;
}
@media (max-width: 500px) {
/* line 59, ../dev/sass/_video.scss */
.podcast_page .below_video .share_this {
display: none;
}
}
/* line 67, ../dev/sass/_video.scss */
.video_tease {
position: relative;
width: 100%;
}
/* line 70, ../dev/sass/_video.scss */
.video_tease i.play_tease {
position: absolute;
text-align: center;
width: 100%;
top: 40%;
font-size: 42px;
text-shadow: 1px 1px #3f4444;
color: #eaebeb;
}
/* line 79, ../dev/sass/_video.scss */
.video_tease div.black_film {
position: absolute;
top: 0;
opacity: 0;
height: 100%;
width: 100%;
background: black;
-webkit-transition: opacity 0.25s;
-moz-transition: opacity 0.25s;
-o-transition: opacity 0.25s;
transition: opacity 0.25s;
}
/* line 87, ../dev/sass/_video.scss */
.video_tease div.black_film:hover {
opacity: 0.2;
}
/* line 94, ../dev/sass/_video.scss */
.video_tease.featured i.play_tease {
font-size: 72px;
}
@media (max-width: 500px) {
/* line 94, ../dev/sass/_video.scss */
.video_tease.featured i.play_tease {
font-size: 42px;
}
}
/* line 1, ../dev/sass/_form.scss */
.email_signup {
width: 300px;
background: #707979;
padding: 10px;
margin: 0 auto 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
@media (min-width: 1000px) {
/* line 1, ../dev/sass/_form.scss */
.email_signup {
float: right;
}
}
@media (max-width: 500px) {
/* line 1, ../dev/sass/_form.scss */
.email_signup {
width: 100%;
}
}
/* line 13, ../dev/sass/_form.scss */
.email_signup .email_prompt {
color: #ffd57d;
text-align: center;
font-weight: 500;
font-size: 1.5em;
line-height: 1em;
margin-bottom: 10px;
}
/* line 21, ../dev/sass/_form.scss */
.email_signup img {
margin-bottom: 20px;
}
/* line 25, ../dev/sass/_form.scss */
.email_signup form .subscriptions {
display: none;
}
/* line 28, ../dev/sass/_form.scss */
.email_signup form .btn-default {
border-color: #715926;
width: 100%;
background: #ffd57d;
font-weight: 700;
font-size: 18px;
color: #5c5e61;
-webkit-transition: all 0.25s;
-moz-transition: all 0.25s;
-o-transition: all 0.25s;
transition: all 0.25s;
}
/* line 36, ../dev/sass/_form.scss */
.email_signup form .btn-default:hover {
background: #ffc54a;
}
/* line 41, ../dev/sass/_form.scss */
.email_signup .email_icon {
font-size: 140px;
text-align: center;
color: white;
height: 110px;
}
/* line 46, ../dev/sass/_form.scss */
.email_signup .email_icon i {
position: relative;
top: -40px;
}
/* line 2, ../dev/sass/_podcast_detail.scss */
.podcast_page h2.featured_podcast {
font-size: 48px;
font-weight: 600;
margin-bottom: 5px;
text-align: center;
text-decoration: underline;
}
@media (max-width: 500px) {
/* line 2, ../dev/sass/_podcast_detail.scss */
.podcast_page h2.featured_podcast {
font-size: 24px;
}
}
/* line 13, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members h3, .podcast_page .setlist h3 {
text-decoration: underline;
}
/* line 16, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members p, .podcast_page .setlist p {
margin-bottom: 0;
font-weight: 500;
line-height: 15px;
}
/* line 21, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members p.detail, .podcast_page .setlist p.detail {
font-size: 12px;
font-weight: 400;
color: #75787b;
}
/* line 26, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members .podcast_member, .podcast_page .podcast_members .song, .podcast_page .setlist .podcast_member, .podcast_page .setlist .song {
margin-bottom: 5px;
}
/* line 30, ../dev/sass/_podcast_detail.scss */
.podcast_page .setlist {
text-align: right;
}
/* line 1, ../dev/sass/_player.scss */
div.audio_player {
height: 40px;
padding-top: 18px;
}
/* line 5, ../dev/sass/_player.scss */
div.audio_player div.play_btn {
cursor: pointer;
width: 40px;
height: 40px;
font-size: 24px;
color: #FFFFFF;
display: inline-block;
}
/* line 16, ../dev/sass/_player.scss */
div.audio_player .progress_bar {
display: inline-block;
height: 100%;
width: 0%;
vertical-align: top;
}
/* line 23, ../dev/sass/_player.scss */
div.audio_player .play {
width: 100%;
}
/* line 26, ../dev/sass/_player.scss */
div.audio_player .duration, div.audio_player .audio_title {
font-family: 'Lato', sans-serif;
position: absolute;
top: 2px;
color: #FFFFFF;
height: 20px;
padding: 0px 18px;
font-size: 20px;
}
@media (max-width: 768px) {
/* line 30, ../dev/sass/_podcast_detail.scss */
.podcast_page .setlist {
text-align: center;
}
}
@media (max-width: 768px) {
/* line 36, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members {
text-align: center;
}
}
/* line 12, ../dev/sass/style.scss */
.molat {
font-family: Molot;
font-size: 48px;
line-height: 55px;
}
/* line 18, ../dev/sass/style.scss */
hr {
border-top: 1px solid #323232;
width: 60%;
}
@media (min-width: 760px) {
hr {
border-top: 1px solid #323232;
width: 40%;
}
}
/* line 22, ../dev/sass/style.scss */
h1, h2, h3, h4 {
color: #FFFFFF;
}
/* line 36, ../dev/sass/style.scss */
.navbar {
min-height: 93px;
}
@media (max-width: 500px) {
/* line 36, ../dev/sass/style.scss */
.navbar {
min-height: 45px;
}
}
@media (max-width: 768px) {
/* line 41, ../dev/sass/style.scss */
.navbar .navbar-header {
padding: 0 1px 0;
}
}
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
font-size: 30px !important;
}
/* line 48, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title a:hover {
color: #E04E39;
}
@media (max-width: 500px) {
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
font-size: 22px !important;
}
}
@media (max-width: 768px) {
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
text-align: left !important;
}
}
/* line 65, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos {
top: 8px !important;
}
@media (max-width: 500px) {
/* line 65, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos {
top: -2px !important;
}
}
@media (max-width: 500px) {
/* line 71, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos li i.icon {
font-size: 20px !important;
}
}
/* line 79, ../dev/sass/style.scss */
.navbar .navbar-header #vpr_logo {
top: 8px !important;
}
@media (max-width: 768px) {
/* line 79, ../dev/sass/style.scss */
.navbar .navbar-header #vpr_logo {
display: none;
}
}
/* line 88, ../dev/sass/style.scss */
.preview {
margin-bottom: 10px;
}
/* line 90, ../dev/sass/style.scss */
.preview h3.preview_name {
margin-top: 10px;
}
/* line 95, ../dev/sass/style.scss */
.this_month {
font-weight: 600;
color: #75787b;
margin: 20px 0 0;
line-height: 12px;
font-size: 12px;
}
@media (max-width: 500px) {
/* line 95, ../dev/sass/style.scss */
.this_month {
margin-top: 5px;
}
}
/* line 107, ../dev/sass/style.scss */
.landing .featured_podcast {
margin-top: 0;
}
/* line 112, ../dev/sass/style.scss */
.name {
color: #262a2a;
}
/* line 114, ../dev/sass/style.scss */
.name:hover {
color: #509E2F;
text-decoration: none;
}
/* line 120, ../dev/sass/style.scss */
.about {
padding-top: 30px;
margin-bottom: 30px;
}
/* line 122, ../dev/sass/style.scss */
.about p {
font-size: 18px;
}
#chevron-left {
font-size: 45px;
position: absolute;
left: -5px;
bottom: -4px;
}
#chevron-right {
font-size: 45px;
position: absolute;
right: -5px;
bottom: -4px;
}
.chapter_style {
text-align: center;
}
.landing-image {
display: block;
margin: auto;
width: 300px;
}
#description h5 {
font-family: 'Lato', sans-serif;
font-weight: 300;
text-align: center;
}
#description span {
font-size: 16px;
font-style: italic;
}
.chapter_style {
padding-top: 50px;
}
.chapter_style h6 {
font-size: 16px;
}
@media (max-width: 800px) {
.chapter_style h6 {
font-size: 13px;
}
}
#chapter_info {
padding-top: 60px;
height: 120px;
}
#audio_info {
padding-top: 20px;
}
#audio_info h6 {
padding-top: 2px;
font-size: 12px;
}
#progress_bar_background {
position: relative;
width: 90px;
height: 1px;
background-color: #323232;
margin: auto;
}
#progress_bar_filler {
position: absolute;
height: 100%;
}
.explainer {
padding-top: 30px;
}
.explainer h3 {
text-align: center;
font-size: 20px;
}
.explainer p {
text-align: center;
font-size: 14px;
padding-bottom: 14px;
}
.explainer h4 {
text-align: center;
font-size: 14px;
padding: 1px;
}
.about h4 {
text-align: center;
font-size: 14px;
}
.about h6 {
text-align: center;
font-size: 13px;
padding-bottom: 10px;
} | app/static/css/style.css | * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=886075071e23d1aa74bb)
* Config saved to config.json and https://gist.github.com/886075071e23d1aa74bb
*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/* line 12, ../dev/sass/_bootstrap.scss */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
/* line 17, ../dev/sass/_bootstrap.scss */
body {
margin: 0;
}
/* line 31, ../dev/sass/_bootstrap.scss */
article,
aside,
details,
figcaption,
figure,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
/* line 37, ../dev/sass/_bootstrap.scss */
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
/* line 41, ../dev/sass/_bootstrap.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 46, ../dev/sass/_bootstrap.scss */
[hidden],
template {
display: none;
}
/* line 49, ../dev/sass/_bootstrap.scss */
a {
background: transparent;
}
/* line 53, ../dev/sass/_bootstrap.scss */
a:active,
a:hover {
outline: 0;
}
/* line 56, ../dev/sass/_bootstrap.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 60, ../dev/sass/_bootstrap.scss */
b,
strong {
font-weight: bold;
}
/* line 63, ../dev/sass/_bootstrap.scss */
dfn {
font-style: italic;
}
/* line 66, ../dev/sass/_bootstrap.scss */
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* line 70, ../dev/sass/_bootstrap.scss */
mark {
background: #ff0;
color: #000;
}
/* line 74, ../dev/sass/_bootstrap.scss */
small {
font-size: 80%;
}
/* line 78, ../dev/sass/_bootstrap.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 84, ../dev/sass/_bootstrap.scss */
sup {
top: -0.5em;
}
/* line 87, ../dev/sass/_bootstrap.scss */
sub {
bottom: -0.25em;
}
/* line 90, ../dev/sass/_bootstrap.scss */
img {
border: 0;
}
/* line 93, ../dev/sass/_bootstrap.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 96, ../dev/sass/_bootstrap.scss */
figure {
margin: 1em 40px;
}
/* line 99, ../dev/sass/_bootstrap.scss */
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
/* line 104, ../dev/sass/_bootstrap.scss */
pre {
overflow: auto;
}
/* line 110, ../dev/sass/_bootstrap.scss */
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
/* line 118, ../dev/sass/_bootstrap.scss */
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
/* line 123, ../dev/sass/_bootstrap.scss */
button {
overflow: visible;
}
/* line 127, ../dev/sass/_bootstrap.scss */
button,
select {
text-transform: none;
}
/* line 133, ../dev/sass/_bootstrap.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
/* line 138, ../dev/sass/_bootstrap.scss */
button[disabled],
html input[disabled] {
cursor: default;
}
/* line 142, ../dev/sass/_bootstrap.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 146, ../dev/sass/_bootstrap.scss */
input {
line-height: normal;
}
/* line 150, ../dev/sass/_bootstrap.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 155, ../dev/sass/_bootstrap.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/* line 158, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 165, ../dev/sass/_bootstrap.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/* line 168, ../dev/sass/_bootstrap.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 173, ../dev/sass/_bootstrap.scss */
legend {
border: 0;
padding: 0;
}
/* line 177, ../dev/sass/_bootstrap.scss */
textarea {
overflow: auto;
}
/* line 180, ../dev/sass/_bootstrap.scss */
optgroup {
font-weight: bold;
}
/* line 183, ../dev/sass/_bootstrap.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 188, ../dev/sass/_bootstrap.scss */
td,
th {
padding: 0;
}
@media print {
/* line 192, ../dev/sass/_bootstrap.scss */
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important;
}
/* line 199, ../dev/sass/_bootstrap.scss */
a,
a:visited {
text-decoration: underline;
}
/* line 202, ../dev/sass/_bootstrap.scss */
a[href]:after {
content: " (" attr(href) ")";
}
/* line 205, ../dev/sass/_bootstrap.scss */
abbr[title]:after {
content: " (" attr(title) ")";
}
/* line 209, ../dev/sass/_bootstrap.scss */
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
/* line 213, ../dev/sass/_bootstrap.scss */
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/* line 217, ../dev/sass/_bootstrap.scss */
thead {
display: table-header-group;
}
/* line 221, ../dev/sass/_bootstrap.scss */
tr,
img {
page-break-inside: avoid;
}
/* line 224, ../dev/sass/_bootstrap.scss */
img {
max-width: 100% !important;
}
/* line 229, ../dev/sass/_bootstrap.scss */
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
/* line 234, ../dev/sass/_bootstrap.scss */
h2,
h3 {
page-break-after: avoid;
}
/* line 237, ../dev/sass/_bootstrap.scss */
select {
background: #fff !important;
}
/* line 240, ../dev/sass/_bootstrap.scss */
.navbar {
display: none;
}
/* line 244, ../dev/sass/_bootstrap.scss */
.table td,
.table th {
background-color: #fff !important;
}
/* line 248, ../dev/sass/_bootstrap.scss */
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
/* line 251, ../dev/sass/_bootstrap.scss */
.label {
border: 1px solid #000;
}
/* line 254, ../dev/sass/_bootstrap.scss */
.table {
border-collapse: collapse !important;
}
/* line 258, ../dev/sass/_bootstrap.scss */
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url("../fonts/glyphicons-halflings-regular.eot");
src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
/* line 267, ../dev/sass/_bootstrap.scss */
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 278, ../dev/sass/_bootstrap.scss */
.glyphicon-asterisk:before {
content: "\2a";
}
/* line 281, ../dev/sass/_bootstrap.scss */
.glyphicon-plus:before {
content: "\2b";
}
/* line 284, ../dev/sass/_bootstrap.scss */
.glyphicon-euro:before {
content: "\20ac";
}
/* line 287, ../dev/sass/_bootstrap.scss */
.glyphicon-minus:before {
content: "\2212";
}
/* line 290, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud:before {
content: "\2601";
}
/* line 293, ../dev/sass/_bootstrap.scss */
.glyphicon-envelope:before {
content: "\2709";
}
/* line 296, ../dev/sass/_bootstrap.scss */
.glyphicon-pencil:before {
content: "\270f";
}
/* line 299, ../dev/sass/_bootstrap.scss */
.glyphicon-glass:before {
content: "\e001";
}
/* line 302, ../dev/sass/_bootstrap.scss */
.glyphicon-music:before {
content: "\e002";
}
/* line 305, ../dev/sass/_bootstrap.scss */
.glyphicon-search:before {
content: "\e003";
}
/* line 308, ../dev/sass/_bootstrap.scss */
.glyphicon-heart:before {
content: "\e005";
}
/* line 311, ../dev/sass/_bootstrap.scss */
.glyphicon-star:before {
content: "\e006";
}
/* line 314, ../dev/sass/_bootstrap.scss */
.glyphicon-star-empty:before {
content: "\e007";
}
/* line 317, ../dev/sass/_bootstrap.scss */
.glyphicon-user:before {
content: "\e008";
}
/* line 320, ../dev/sass/_bootstrap.scss */
.glyphicon-film:before {
content: "\e009";
}
/* line 323, ../dev/sass/_bootstrap.scss */
.glyphicon-th-large:before {
content: "\e010";
}
/* line 326, ../dev/sass/_bootstrap.scss */
.glyphicon-th:before {
content: "\e011";
}
/* line 329, ../dev/sass/_bootstrap.scss */
.glyphicon-th-list:before {
content: "\e012";
}
/* line 332, ../dev/sass/_bootstrap.scss */
.glyphicon-ok:before {
content: "\e013";
}
/* line 335, ../dev/sass/_bootstrap.scss */
.glyphicon-remove:before {
content: "\e014";
}
/* line 338, ../dev/sass/_bootstrap.scss */
.glyphicon-zoom-in:before {
content: "\e015";
}
/* line 341, ../dev/sass/_bootstrap.scss */
.glyphicon-zoom-out:before {
content: "\e016";
}
/* line 344, ../dev/sass/_bootstrap.scss */
.glyphicon-off:before {
content: "\e017";
}
/* line 347, ../dev/sass/_bootstrap.scss */
.glyphicon-signal:before {
content: "\e018";
}
/* line 350, ../dev/sass/_bootstrap.scss */
.glyphicon-cog:before {
content: "\e019";
}
/* line 353, ../dev/sass/_bootstrap.scss */
.glyphicon-trash:before {
content: "\e020";
}
/* line 356, ../dev/sass/_bootstrap.scss */
.glyphicon-home:before {
content: "\e021";
}
/* line 359, ../dev/sass/_bootstrap.scss */
.glyphicon-file:before {
content: "\e022";
}
/* line 362, ../dev/sass/_bootstrap.scss */
.glyphicon-time:before {
content: "\e023";
}
/* line 365, ../dev/sass/_bootstrap.scss */
.glyphicon-road:before {
content: "\e024";
}
/* line 368, ../dev/sass/_bootstrap.scss */
.glyphicon-download-alt:before {
content: "\e025";
}
/* line 371, ../dev/sass/_bootstrap.scss */
.glyphicon-download:before {
content: "\e026";
}
/* line 374, ../dev/sass/_bootstrap.scss */
.glyphicon-upload:before {
content: "\e027";
}
/* line 377, ../dev/sass/_bootstrap.scss */
.glyphicon-inbox:before {
content: "\e028";
}
/* line 380, ../dev/sass/_bootstrap.scss */
.glyphicon-play-circle:before {
content: "\e029";
}
/* line 383, ../dev/sass/_bootstrap.scss */
.glyphicon-repeat:before {
content: "\e030";
}
/* line 386, ../dev/sass/_bootstrap.scss */
.glyphicon-refresh:before {
content: "\e031";
}
/* line 389, ../dev/sass/_bootstrap.scss */
.glyphicon-list-alt:before {
content: "\e032";
}
/* line 392, ../dev/sass/_bootstrap.scss */
.glyphicon-lock:before {
content: "\e033";
}
/* line 395, ../dev/sass/_bootstrap.scss */
.glyphicon-flag:before {
content: "\e034";
}
/* line 398, ../dev/sass/_bootstrap.scss */
.glyphicon-headphones:before {
content: "\e035";
}
/* line 401, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-off:before {
content: "\e036";
}
/* line 404, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-down:before {
content: "\e037";
}
/* line 407, ../dev/sass/_bootstrap.scss */
.glyphicon-volume-up:before {
content: "\e038";
}
/* line 410, ../dev/sass/_bootstrap.scss */
.glyphicon-qrcode:before {
content: "\e039";
}
/* line 413, ../dev/sass/_bootstrap.scss */
.glyphicon-barcode:before {
content: "\e040";
}
/* line 416, ../dev/sass/_bootstrap.scss */
.glyphicon-tag:before {
content: "\e041";
}
/* line 419, ../dev/sass/_bootstrap.scss */
.glyphicon-tags:before {
content: "\e042";
}
/* line 422, ../dev/sass/_bootstrap.scss */
.glyphicon-book:before {
content: "\e043";
}
/* line 425, ../dev/sass/_bootstrap.scss */
.glyphicon-bookmark:before {
content: "\e044";
}
/* line 428, ../dev/sass/_bootstrap.scss */
.glyphicon-print:before {
content: "\e045";
}
/* line 431, ../dev/sass/_bootstrap.scss */
.glyphicon-camera:before {
content: "\e046";
}
/* line 434, ../dev/sass/_bootstrap.scss */
.glyphicon-font:before {
content: "\e047";
}
/* line 437, ../dev/sass/_bootstrap.scss */
.glyphicon-bold:before {
content: "\e048";
}
/* line 440, ../dev/sass/_bootstrap.scss */
.glyphicon-italic:before {
content: "\e049";
}
/* line 443, ../dev/sass/_bootstrap.scss */
.glyphicon-text-height:before {
content: "\e050";
}
/* line 446, ../dev/sass/_bootstrap.scss */
.glyphicon-text-width:before {
content: "\e051";
}
/* line 449, ../dev/sass/_bootstrap.scss */
.glyphicon-align-left:before {
content: "\e052";
}
/* line 452, ../dev/sass/_bootstrap.scss */
.glyphicon-align-center:before {
content: "\e053";
}
/* line 455, ../dev/sass/_bootstrap.scss */
.glyphicon-align-right:before {
content: "\e054";
}
/* line 458, ../dev/sass/_bootstrap.scss */
.glyphicon-align-justify:before {
content: "\e055";
}
/* line 461, ../dev/sass/_bootstrap.scss */
.glyphicon-list:before {
content: "\e056";
}
/* line 464, ../dev/sass/_bootstrap.scss */
.glyphicon-indent-left:before {
content: "\e057";
}
/* line 467, ../dev/sass/_bootstrap.scss */
.glyphicon-indent-right:before {
content: "\e058";
}
/* line 470, ../dev/sass/_bootstrap.scss */
.glyphicon-facetime-video:before {
content: "\e059";
}
/* line 473, ../dev/sass/_bootstrap.scss */
.glyphicon-picture:before {
content: "\e060";
}
/* line 476, ../dev/sass/_bootstrap.scss */
.glyphicon-map-marker:before {
content: "\e062";
}
/* line 479, ../dev/sass/_bootstrap.scss */
.glyphicon-adjust:before {
content: "\e063";
}
/* line 482, ../dev/sass/_bootstrap.scss */
.glyphicon-tint:before {
content: "\e064";
}
/* line 485, ../dev/sass/_bootstrap.scss */
.glyphicon-edit:before {
content: "\e065";
}
/* line 488, ../dev/sass/_bootstrap.scss */
.glyphicon-share:before {
content: "\e066";
}
/* line 491, ../dev/sass/_bootstrap.scss */
.glyphicon-check:before {
content: "\e067";
}
/* line 494, ../dev/sass/_bootstrap.scss */
.glyphicon-move:before {
content: "\e068";
}
/* line 497, ../dev/sass/_bootstrap.scss */
.glyphicon-step-backward:before {
content: "\e069";
}
/* line 500, ../dev/sass/_bootstrap.scss */
.glyphicon-fast-backward:before {
content: "\e070";
}
/* line 503, ../dev/sass/_bootstrap.scss */
.glyphicon-backward:before {
content: "\e071";
}
/* line 506, ../dev/sass/_bootstrap.scss */
.glyphicon-play:before {
content: "\e072";
}
/* line 509, ../dev/sass/_bootstrap.scss */
.glyphicon-pause:before {
content: "\e073";
}
/* line 512, ../dev/sass/_bootstrap.scss */
.glyphicon-stop:before {
content: "\e074";
}
/* line 515, ../dev/sass/_bootstrap.scss */
.glyphicon-forward:before {
content: "\e075";
}
/* line 518, ../dev/sass/_bootstrap.scss */
.glyphicon-fast-forward:before {
content: "\e076";
}
/* line 521, ../dev/sass/_bootstrap.scss */
.glyphicon-step-forward:before {
content: "\e077";
}
/* line 524, ../dev/sass/_bootstrap.scss */
.glyphicon-eject:before {
content: "\e078";
}
/* line 527, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-left:before {
content: "\e079";
}
/* line 530, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-right:before {
content: "\e080";
}
/* line 533, ../dev/sass/_bootstrap.scss */
.glyphicon-plus-sign:before {
content: "\e081";
}
/* line 536, ../dev/sass/_bootstrap.scss */
.glyphicon-minus-sign:before {
content: "\e082";
}
/* line 539, ../dev/sass/_bootstrap.scss */
.glyphicon-remove-sign:before {
content: "\e083";
}
/* line 542, ../dev/sass/_bootstrap.scss */
.glyphicon-ok-sign:before {
content: "\e084";
}
/* line 545, ../dev/sass/_bootstrap.scss */
.glyphicon-question-sign:before {
content: "\e085";
}
/* line 548, ../dev/sass/_bootstrap.scss */
.glyphicon-info-sign:before {
content: "\e086";
}
/* line 551, ../dev/sass/_bootstrap.scss */
.glyphicon-screenshot:before {
content: "\e087";
}
/* line 554, ../dev/sass/_bootstrap.scss */
.glyphicon-remove-circle:before {
content: "\e088";
}
/* line 557, ../dev/sass/_bootstrap.scss */
.glyphicon-ok-circle:before {
content: "\e089";
}
/* line 560, ../dev/sass/_bootstrap.scss */
.glyphicon-ban-circle:before {
content: "\e090";
}
/* line 563, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-left:before {
content: "\e091";
}
/* line 566, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-right:before {
content: "\e092";
}
/* line 569, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-up:before {
content: "\e093";
}
/* line 572, ../dev/sass/_bootstrap.scss */
.glyphicon-arrow-down:before {
content: "\e094";
}
/* line 575, ../dev/sass/_bootstrap.scss */
.glyphicon-share-alt:before {
content: "\e095";
}
/* line 578, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-full:before {
content: "\e096";
}
/* line 581, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-small:before {
content: "\e097";
}
/* line 584, ../dev/sass/_bootstrap.scss */
.glyphicon-exclamation-sign:before {
content: "\e101";
}
/* line 587, ../dev/sass/_bootstrap.scss */
.glyphicon-gift:before {
content: "\e102";
}
/* line 590, ../dev/sass/_bootstrap.scss */
.glyphicon-leaf:before {
content: "\e103";
}
/* line 593, ../dev/sass/_bootstrap.scss */
.glyphicon-fire:before {
content: "\e104";
}
/* line 596, ../dev/sass/_bootstrap.scss */
.glyphicon-eye-open:before {
content: "\e105";
}
/* line 599, ../dev/sass/_bootstrap.scss */
.glyphicon-eye-close:before {
content: "\e106";
}
/* line 602, ../dev/sass/_bootstrap.scss */
.glyphicon-warning-sign:before {
content: "\e107";
}
/* line 605, ../dev/sass/_bootstrap.scss */
.glyphicon-plane:before {
content: "\e108";
}
/* line 608, ../dev/sass/_bootstrap.scss */
.glyphicon-calendar:before {
content: "\e109";
}
/* line 611, ../dev/sass/_bootstrap.scss */
.glyphicon-random:before {
content: "\e110";
}
/* line 614, ../dev/sass/_bootstrap.scss */
.glyphicon-comment:before {
content: "\e111";
}
/* line 617, ../dev/sass/_bootstrap.scss */
.glyphicon-magnet:before {
content: "\e112";
}
/* line 620, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-up:before {
content: "\e113";
}
/* line 623, ../dev/sass/_bootstrap.scss */
.glyphicon-chevron-down:before {
content: "\e114";
}
/* line 626, ../dev/sass/_bootstrap.scss */
.glyphicon-retweet:before {
content: "\e115";
}
/* line 629, ../dev/sass/_bootstrap.scss */
.glyphicon-shopping-cart:before {
content: "\e116";
}
/* line 632, ../dev/sass/_bootstrap.scss */
.glyphicon-folder-close:before {
content: "\e117";
}
/* line 635, ../dev/sass/_bootstrap.scss */
.glyphicon-folder-open:before {
content: "\e118";
}
/* line 638, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-vertical:before {
content: "\e119";
}
/* line 641, ../dev/sass/_bootstrap.scss */
.glyphicon-resize-horizontal:before {
content: "\e120";
}
/* line 644, ../dev/sass/_bootstrap.scss */
.glyphicon-hdd:before {
content: "\e121";
}
/* line 647, ../dev/sass/_bootstrap.scss */
.glyphicon-bullhorn:before {
content: "\e122";
}
/* line 650, ../dev/sass/_bootstrap.scss */
.glyphicon-bell:before {
content: "\e123";
}
/* line 653, ../dev/sass/_bootstrap.scss */
.glyphicon-certificate:before {
content: "\e124";
}
/* line 656, ../dev/sass/_bootstrap.scss */
.glyphicon-thumbs-up:before {
content: "\e125";
}
/* line 659, ../dev/sass/_bootstrap.scss */
.glyphicon-thumbs-down:before {
content: "\e126";
}
/* line 662, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-right:before {
content: "\e127";
}
/* line 665, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-left:before {
content: "\e128";
}
/* line 668, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-up:before {
content: "\e129";
}
/* line 671, ../dev/sass/_bootstrap.scss */
.glyphicon-hand-down:before {
content: "\e130";
}
/* line 674, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
/* line 677, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
/* line 680, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
/* line 683, ../dev/sass/_bootstrap.scss */
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
/* line 686, ../dev/sass/_bootstrap.scss */
.glyphicon-globe:before {
content: "\e135";
}
/* line 689, ../dev/sass/_bootstrap.scss */
.glyphicon-wrench:before {
content: "\e136";
}
/* line 692, ../dev/sass/_bootstrap.scss */
.glyphicon-tasks:before {
content: "\e137";
}
/* line 695, ../dev/sass/_bootstrap.scss */
.glyphicon-filter:before {
content: "\e138";
}
/* line 698, ../dev/sass/_bootstrap.scss */
.glyphicon-briefcase:before {
content: "\e139";
}
/* line 701, ../dev/sass/_bootstrap.scss */
.glyphicon-fullscreen:before {
content: "\e140";
}
/* line 704, ../dev/sass/_bootstrap.scss */
.glyphicon-dashboard:before {
content: "\e141";
}
/* line 707, ../dev/sass/_bootstrap.scss */
.glyphicon-paperclip:before {
content: "\e142";
}
/* line 710, ../dev/sass/_bootstrap.scss */
.glyphicon-heart-empty:before {
content: "\e143";
}
/* line 713, ../dev/sass/_bootstrap.scss */
.glyphicon-link:before {
content: "\e144";
}
/* line 716, ../dev/sass/_bootstrap.scss */
.glyphicon-phone:before {
content: "\e145";
}
/* line 719, ../dev/sass/_bootstrap.scss */
.glyphicon-pushpin:before {
content: "\e146";
}
/* line 722, ../dev/sass/_bootstrap.scss */
.glyphicon-usd:before {
content: "\e148";
}
/* line 725, ../dev/sass/_bootstrap.scss */
.glyphicon-gbp:before {
content: "\e149";
}
/* line 728, ../dev/sass/_bootstrap.scss */
.glyphicon-sort:before {
content: "\e150";
}
/* line 731, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
/* line 734, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
/* line 737, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-order:before {
content: "\e153";
}
/* line 740, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
/* line 743, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
/* line 746, ../dev/sass/_bootstrap.scss */
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
/* line 749, ../dev/sass/_bootstrap.scss */
.glyphicon-unchecked:before {
content: "\e157";
}
/* line 752, ../dev/sass/_bootstrap.scss */
.glyphicon-expand:before {
content: "\e158";
}
/* line 755, ../dev/sass/_bootstrap.scss */
.glyphicon-collapse-down:before {
content: "\e159";
}
/* line 758, ../dev/sass/_bootstrap.scss */
.glyphicon-collapse-up:before {
content: "\e160";
}
/* line 761, ../dev/sass/_bootstrap.scss */
.glyphicon-log-in:before {
content: "\e161";
}
/* line 764, ../dev/sass/_bootstrap.scss */
.glyphicon-flash:before {
content: "\e162";
}
/* line 767, ../dev/sass/_bootstrap.scss */
.glyphicon-log-out:before {
content: "\e163";
}
/* line 770, ../dev/sass/_bootstrap.scss */
.glyphicon-new-window:before {
content: "\e164";
}
/* line 773, ../dev/sass/_bootstrap.scss */
.glyphicon-record:before {
content: "\e165";
}
/* line 776, ../dev/sass/_bootstrap.scss */
.glyphicon-save:before {
content: "\e166";
}
/* line 779, ../dev/sass/_bootstrap.scss */
.glyphicon-open:before {
content: "\e167";
}
/* line 782, ../dev/sass/_bootstrap.scss */
.glyphicon-saved:before {
content: "\e168";
}
/* line 785, ../dev/sass/_bootstrap.scss */
.glyphicon-import:before {
content: "\e169";
}
/* line 788, ../dev/sass/_bootstrap.scss */
.glyphicon-export:before {
content: "\e170";
}
/* line 791, ../dev/sass/_bootstrap.scss */
.glyphicon-send:before {
content: "\e171";
}
/* line 794, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-disk:before {
content: "\e172";
}
/* line 797, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-saved:before {
content: "\e173";
}
/* line 800, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-remove:before {
content: "\e174";
}
/* line 803, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-save:before {
content: "\e175";
}
/* line 806, ../dev/sass/_bootstrap.scss */
.glyphicon-floppy-open:before {
content: "\e176";
}
/* line 809, ../dev/sass/_bootstrap.scss */
.glyphicon-credit-card:before {
content: "\e177";
}
/* line 812, ../dev/sass/_bootstrap.scss */
.glyphicon-transfer:before {
content: "\e178";
}
/* line 815, ../dev/sass/_bootstrap.scss */
.glyphicon-cutlery:before {
content: "\e179";
}
/* line 818, ../dev/sass/_bootstrap.scss */
.glyphicon-header:before {
content: "\e180";
}
/* line 821, ../dev/sass/_bootstrap.scss */
.glyphicon-compressed:before {
content: "\e181";
}
/* line 824, ../dev/sass/_bootstrap.scss */
.glyphicon-earphone:before {
content: "\e182";
}
/* line 827, ../dev/sass/_bootstrap.scss */
.glyphicon-phone-alt:before {
content: "\e183";
}
/* line 830, ../dev/sass/_bootstrap.scss */
.glyphicon-tower:before {
content: "\e184";
}
/* line 833, ../dev/sass/_bootstrap.scss */
.glyphicon-stats:before {
content: "\e185";
}
/* line 836, ../dev/sass/_bootstrap.scss */
.glyphicon-sd-video:before {
content: "\e186";
}
/* line 839, ../dev/sass/_bootstrap.scss */
.glyphicon-hd-video:before {
content: "\e187";
}
/* line 842, ../dev/sass/_bootstrap.scss */
.glyphicon-subtitles:before {
content: "\e188";
}
/* line 845, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-stereo:before {
content: "\e189";
}
/* line 848, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-dolby:before {
content: "\e190";
}
/* line 851, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-5-1:before {
content: "\e191";
}
/* line 854, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-6-1:before {
content: "\e192";
}
/* line 857, ../dev/sass/_bootstrap.scss */
.glyphicon-sound-7-1:before {
content: "\e193";
}
/* line 860, ../dev/sass/_bootstrap.scss */
.glyphicon-copyright-mark:before {
content: "\e194";
}
/* line 863, ../dev/sass/_bootstrap.scss */
.glyphicon-registration-mark:before {
content: "\e195";
}
/* line 866, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud-download:before {
content: "\e197";
}
/* line 869, ../dev/sass/_bootstrap.scss */
.glyphicon-cloud-upload:before {
content: "\e198";
}
/* line 872, ../dev/sass/_bootstrap.scss */
.glyphicon-tree-conifer:before {
content: "\e199";
}
/* line 875, ../dev/sass/_bootstrap.scss */
.glyphicon-tree-deciduous:before {
content: "\e200";
}
/* line 878, ../dev/sass/_bootstrap.scss */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 884, ../dev/sass/_bootstrap.scss */
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 889, ../dev/sass/_bootstrap.scss */
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 893, ../dev/sass/_bootstrap.scss */
body {
font-family: 'Lato', sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #FFFFFF;
}
/* line 903, ../dev/sass/_bootstrap.scss */
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
/* line 908, ../dev/sass/_bootstrap.scss */
a {
color: #7e7e7e;
text-decoration: none;
}
/* line 913, ../dev/sass/_bootstrap.scss */
a:hover,
a:focus {
color: #7e7e7e;
}
/* line 917, ../dev/sass/_bootstrap.scss */
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 922, ../dev/sass/_bootstrap.scss */
figure {
margin: 0;
}
/* line 925, ../dev/sass/_bootstrap.scss */
img {
vertical-align: middle;
}
/* line 928, ../dev/sass/_bootstrap.scss */
.img-responsive {
display: block;
width: 100% \9;
max-width: 100%;
height: auto;
margin: auto;
}
/* line 934, ../dev/sass/_bootstrap.scss */
.img-rounded {
border-radius: 6px;
}
/* line 937, ../dev/sass/_bootstrap.scss */
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
width: 100% \9;
max-width: 100%;
height: auto;
}
/* line 951, ../dev/sass/_bootstrap.scss */
.img-circle {
border-radius: 50%;
}
/* line 954, ../dev/sass/_bootstrap.scss */
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee;
}
/* line 960, ../dev/sass/_bootstrap.scss */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
/* line 971, ../dev/sass/_bootstrap.scss */
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
/* line 990, ../dev/sass/_bootstrap.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
/* line 1019, ../dev/sass/_bootstrap.scss */
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
/* line 1029, ../dev/sass/_bootstrap.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
/* line 1044, ../dev/sass/_bootstrap.scss */
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
/* line 1052, ../dev/sass/_bootstrap.scss */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
/* line 1067, ../dev/sass/_bootstrap.scss */
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
/* line 1071, ../dev/sass/_bootstrap.scss */
h1,
.h1 {
font-size: 36px;
}
/* line 1075, ../dev/sass/_bootstrap.scss */
h2,
.h2 {
font-size: 30px;
}
/* line 1079, ../dev/sass/_bootstrap.scss */
h3,
.h3 {
font-size: 24px;
}
/* line 1083, ../dev/sass/_bootstrap.scss */
h4,
.h4 {
font-size: 18px;
}
/* line 1087, ../dev/sass/_bootstrap.scss */
h5,
.h5 {
font-size: 14px;
}
/* line 1091, ../dev/sass/_bootstrap.scss */
h6,
.h6 {
font-size: 12px;
}
/* line 1094, ../dev/sass/_bootstrap.scss */
p {
margin: 0 0 10px;
}
/* line 1097, ../dev/sass/_bootstrap.scss */
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
/* line 1104, ../dev/sass/_bootstrap.scss */
.lead {
font-size: 21px;
}
}
/* line 1109, ../dev/sass/_bootstrap.scss */
small,
.small {
font-size: 85%;
}
/* line 1112, ../dev/sass/_bootstrap.scss */
cite {
font-style: normal;
}
/* line 1116, ../dev/sass/_bootstrap.scss */
mark,
.mark {
background-color: #fcf8e3;
padding: .2em;
}
/* line 1120, ../dev/sass/_bootstrap.scss */
.text-left {
text-align: left;
}
/* line 1123, ../dev/sass/_bootstrap.scss */
.text-right {
text-align: right;
}
/* line 1126, ../dev/sass/_bootstrap.scss */
.text-center {
text-align: center;
}
/* line 1129, ../dev/sass/_bootstrap.scss */
.text-justify {
text-align: justify;
}
/* line 1132, ../dev/sass/_bootstrap.scss */
.text-nowrap {
white-space: nowrap;
}
/* line 1135, ../dev/sass/_bootstrap.scss */
.text-lowercase {
text-transform: lowercase;
}
/* line 1138, ../dev/sass/_bootstrap.scss */
.text-uppercase {
text-transform: uppercase;
}
/* line 1141, ../dev/sass/_bootstrap.scss */
.text-capitalize {
text-transform: capitalize;
}
/* line 1144, ../dev/sass/_bootstrap.scss */
.text-muted {
color: #777777;
}
/* line 1147, ../dev/sass/_bootstrap.scss */
.text-primary {
color: #428bca;
}
/* line 1150, ../dev/sass/_bootstrap.scss */
a.text-primary:hover {
color: #3071a9;
}
/* line 1153, ../dev/sass/_bootstrap.scss */
.text-success {
color: #3c763d;
}
/* line 1156, ../dev/sass/_bootstrap.scss */
a.text-success:hover {
color: #2b542c;
}
/* line 1159, ../dev/sass/_bootstrap.scss */
.text-info {
color: #31708f;
}
/* line 1162, ../dev/sass/_bootstrap.scss */
a.text-info:hover {
color: #245269;
}
/* line 1165, ../dev/sass/_bootstrap.scss */
.text-warning {
color: #8a6d3b;
}
/* line 1168, ../dev/sass/_bootstrap.scss */
a.text-warning:hover {
color: #66512c;
}
/* line 1171, ../dev/sass/_bootstrap.scss */
.text-danger {
color: #a94442;
}
/* line 1174, ../dev/sass/_bootstrap.scss */
a.text-danger:hover {
color: #843534;
}
/* line 1177, ../dev/sass/_bootstrap.scss */
.bg-primary {
color: #fff;
background-color: #428bca;
}
/* line 1181, ../dev/sass/_bootstrap.scss */
a.bg-primary:hover {
background-color: #3071a9;
}
/* line 1184, ../dev/sass/_bootstrap.scss */
.bg-success {
background-color: #dff0d8;
}
/* line 1187, ../dev/sass/_bootstrap.scss */
a.bg-success:hover {
background-color: #c1e2b3;
}
/* line 1190, ../dev/sass/_bootstrap.scss */
.bg-info {
background-color: #d9edf7;
}
/* line 1193, ../dev/sass/_bootstrap.scss */
a.bg-info:hover {
background-color: #afd9ee;
}
/* line 1196, ../dev/sass/_bootstrap.scss */
.bg-warning {
background-color: #fcf8e3;
}
/* line 1199, ../dev/sass/_bootstrap.scss */
a.bg-warning:hover {
background-color: #f7ecb5;
}
/* line 1202, ../dev/sass/_bootstrap.scss */
.bg-danger {
background-color: #f2dede;
}
/* line 1205, ../dev/sass/_bootstrap.scss */
a.bg-danger:hover {
background-color: #e4b9b9;
}
/* line 1208, ../dev/sass/_bootstrap.scss */
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee;
}
/* line 1214, ../dev/sass/_bootstrap.scss */
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
/* line 1221, ../dev/sass/_bootstrap.scss */
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
/* line 1224, ../dev/sass/_bootstrap.scss */
.list-unstyled {
padding-left: 0;
list-style: none;
}
/* line 1228, ../dev/sass/_bootstrap.scss */
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
/* line 1233, ../dev/sass/_bootstrap.scss */
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
/* line 1238, ../dev/sass/_bootstrap.scss */
dl {
margin-top: 0;
margin-bottom: 20px;
}
/* line 1243, ../dev/sass/_bootstrap.scss */
dt,
dd {
line-height: 1.42857143;
}
/* line 1246, ../dev/sass/_bootstrap.scss */
dt {
font-weight: bold;
}
/* line 1249, ../dev/sass/_bootstrap.scss */
dd {
margin-left: 0;
}
@media (min-width: 768px) {
/* line 1253, ../dev/sass/_bootstrap.scss */
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* line 1262, ../dev/sass/_bootstrap.scss */
.dl-horizontal dd {
margin-left: 180px;
}
}
/* line 1267, ../dev/sass/_bootstrap.scss */
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
/* line 1271, ../dev/sass/_bootstrap.scss */
.initialism {
font-size: 90%;
text-transform: uppercase;
}
/* line 1275, ../dev/sass/_bootstrap.scss */
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eeeeee;
}
/* line 1283, ../dev/sass/_bootstrap.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
/* line 1288, ../dev/sass/_bootstrap.scss */
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777777;
}
/* line 1296, ../dev/sass/_bootstrap.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
/* line 1300, ../dev/sass/_bootstrap.scss */
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
/* line 1312, ../dev/sass/_bootstrap.scss */
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
/* line 1320, ../dev/sass/_bootstrap.scss */
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
/* line 1324, ../dev/sass/_bootstrap.scss */
blockquote:before,
blockquote:after {
content: "";
}
/* line 1327, ../dev/sass/_bootstrap.scss */
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
/* line 1332, ../dev/sass/_bootstrap.scss */
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 315px) {
/* line 1339, ../dev/sass/_bootstrap.scss */
.container {
width: 305px;
}
}
@media (min-width: 568px) {
/* line 1339, ../dev/sass/_bootstrap.scss */
.container {
width: 550px;
}
}
@media (min-width: 992px) {
/* line 1344, ../dev/sass/_bootstrap.scss */
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
/* line 1349, ../dev/sass/_bootstrap.scss */
.container {
width: 1170px;
}
}
/* line 1353, ../dev/sass/_bootstrap.scss */
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
/* line 1359, ../dev/sass/_bootstrap.scss */
.row {
margin-left: -15px;
margin-right: -15px;
}
/* line 1363, ../dev/sass/_bootstrap.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
}
/* line 1369, ../dev/sass/_bootstrap.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
/* line 1372, ../dev/sass/_bootstrap.scss */
.col-xs-12 {
width: 100%;
}
/* line 1375, ../dev/sass/_bootstrap.scss */
.col-xs-11 {
width: 91.66666667%;
}
/* line 1378, ../dev/sass/_bootstrap.scss */
.col-xs-10 {
width: 83.33333333%;
}
/* line 1381, ../dev/sass/_bootstrap.scss */
.col-xs-9 {
width: 75%;
}
/* line 1384, ../dev/sass/_bootstrap.scss */
.col-xs-8 {
width: 66.66666667%;
}
/* line 1387, ../dev/sass/_bootstrap.scss */
.col-xs-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1390, ../dev/sass/_bootstrap.scss */
.col-xs-6 {
width: 50%;
}
/* line 1393, ../dev/sass/_bootstrap.scss */
.col-xs-5 {
width: 41.66666667%;
}
/* line 1396, ../dev/sass/_bootstrap.scss */
.col-xs-4 {
width: 33.33333333%;
}
/* line 1399, ../dev/sass/_bootstrap.scss */
.col-xs-3 {
width: 24%;
}
/* line 1402, ../dev/sass/_bootstrap.scss */
.col-xs-2 {
width: 16.66666667%;
}
/* line 1405, ../dev/sass/_bootstrap.scss */
.col-xs-1 {
width: 8.33333333%;
}
/* line 1408, ../dev/sass/_bootstrap.scss */
.col-xs-pull-12 {
right: 100%;
}
/* line 1411, ../dev/sass/_bootstrap.scss */
.col-xs-pull-11 {
right: 91.66666667%;
}
/* line 1414, ../dev/sass/_bootstrap.scss */
.col-xs-pull-10 {
right: 83.33333333%;
}
/* line 1417, ../dev/sass/_bootstrap.scss */
.col-xs-pull-9 {
right: 75%;
}
/* line 1420, ../dev/sass/_bootstrap.scss */
.col-xs-pull-8 {
right: 66.66666667%;
}
/* line 1423, ../dev/sass/_bootstrap.scss */
.col-xs-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1426, ../dev/sass/_bootstrap.scss */
.col-xs-pull-6 {
right: 50%;
}
/* line 1429, ../dev/sass/_bootstrap.scss */
.col-xs-pull-5 {
right: 41.66666667%;
}
/* line 1432, ../dev/sass/_bootstrap.scss */
.col-xs-pull-4 {
right: 33.33333333%;
}
/* line 1435, ../dev/sass/_bootstrap.scss */
.col-xs-pull-3 {
right: 25%;
}
/* line 1438, ../dev/sass/_bootstrap.scss */
.col-xs-pull-2 {
right: 16.66666667%;
}
/* line 1441, ../dev/sass/_bootstrap.scss */
.col-xs-pull-1 {
right: 8.33333333%;
}
/* line 1444, ../dev/sass/_bootstrap.scss */
.col-xs-pull-0 {
right: auto;
}
/* line 1447, ../dev/sass/_bootstrap.scss */
.col-xs-push-12 {
left: 100%;
}
/* line 1450, ../dev/sass/_bootstrap.scss */
.col-xs-push-11 {
left: 91.66666667%;
}
/* line 1453, ../dev/sass/_bootstrap.scss */
.col-xs-push-10 {
left: 83.33333333%;
}
/* line 1456, ../dev/sass/_bootstrap.scss */
.col-xs-push-9 {
left: 75%;
}
/* line 1459, ../dev/sass/_bootstrap.scss */
.col-xs-push-8 {
left: 66.66666667%;
}
/* line 1462, ../dev/sass/_bootstrap.scss */
.col-xs-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1465, ../dev/sass/_bootstrap.scss */
.col-xs-push-6 {
left: 50%;
}
/* line 1468, ../dev/sass/_bootstrap.scss */
.col-xs-push-5 {
left: 41.66666667%;
}
/* line 1471, ../dev/sass/_bootstrap.scss */
.col-xs-push-4 {
left: 33.33333333%;
}
/* line 1474, ../dev/sass/_bootstrap.scss */
.col-xs-push-3 {
left: 25%;
}
/* line 1477, ../dev/sass/_bootstrap.scss */
.col-xs-push-2 {
left: 16.66666667%;
}
/* line 1480, ../dev/sass/_bootstrap.scss */
.col-xs-push-1 {
left: 8.33333333%;
}
/* line 1483, ../dev/sass/_bootstrap.scss */
.col-xs-push-0 {
left: auto;
}
/* line 1486, ../dev/sass/_bootstrap.scss */
.col-xs-offset-12 {
margin-left: 100%;
}
/* line 1489, ../dev/sass/_bootstrap.scss */
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
/* line 1492, ../dev/sass/_bootstrap.scss */
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
/* line 1495, ../dev/sass/_bootstrap.scss */
.col-xs-offset-9 {
margin-left: 75%;
}
/* line 1498, ../dev/sass/_bootstrap.scss */
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
/* line 1501, ../dev/sass/_bootstrap.scss */
.col-xs-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1504, ../dev/sass/_bootstrap.scss */
.col-xs-offset-6 {
margin-left: 50%;
}
/* line 1507, ../dev/sass/_bootstrap.scss */
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
/* line 1510, ../dev/sass/_bootstrap.scss */
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
/* line 1513, ../dev/sass/_bootstrap.scss */
.col-xs-offset-3 {
margin-left: 25%;
}
/* line 1516, ../dev/sass/_bootstrap.scss */
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
/* line 1519, ../dev/sass/_bootstrap.scss */
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
/* line 1522, ../dev/sass/_bootstrap.scss */
.col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
/* line 1526, ../dev/sass/_bootstrap.scss */
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
/* line 1529, ../dev/sass/_bootstrap.scss */
.col-sm-12 {
width: 100%;
}
/* line 1532, ../dev/sass/_bootstrap.scss */
.col-sm-11 {
width: 91.66666667%;
}
/* line 1535, ../dev/sass/_bootstrap.scss */
.col-sm-10 {
width: 83.33333333%;
}
/* line 1538, ../dev/sass/_bootstrap.scss */
.col-sm-9 {
width: 75%;
}
/* line 1541, ../dev/sass/_bootstrap.scss */
.col-sm-8 {
width: 66.66666667%;
}
/* line 1544, ../dev/sass/_bootstrap.scss */
.col-sm-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1547, ../dev/sass/_bootstrap.scss */
.col-sm-6 {
width: 50%;
}
/* line 1550, ../dev/sass/_bootstrap.scss */
.col-sm-5 {
width: 41.66666667%;
}
/* line 1553, ../dev/sass/_bootstrap.scss */
.col-sm-4 {
width: 33.33333333%;
}
/* line 1556, ../dev/sass/_bootstrap.scss */
.col-sm-3 {
width: 32%;
}
/* line 1559, ../dev/sass/_bootstrap.scss */
.col-sm-2 {
width: 16.66666667%;
}
/* line 1562, ../dev/sass/_bootstrap.scss */
.col-sm-1 {
width: 8.33333333%;
}
/* line 1565, ../dev/sass/_bootstrap.scss */
.col-sm-pull-12 {
right: 100%;
}
/* line 1568, ../dev/sass/_bootstrap.scss */
.col-sm-pull-11 {
right: 91.66666667%;
}
/* line 1571, ../dev/sass/_bootstrap.scss */
.col-sm-pull-10 {
right: 83.33333333%;
}
/* line 1574, ../dev/sass/_bootstrap.scss */
.col-sm-pull-9 {
right: 75%;
}
/* line 1577, ../dev/sass/_bootstrap.scss */
.col-sm-pull-8 {
right: 66.66666667%;
}
/* line 1580, ../dev/sass/_bootstrap.scss */
.col-sm-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1583, ../dev/sass/_bootstrap.scss */
.col-sm-pull-6 {
right: 50%;
}
/* line 1586, ../dev/sass/_bootstrap.scss */
.col-sm-pull-5 {
right: 41.66666667%;
}
/* line 1589, ../dev/sass/_bootstrap.scss */
.col-sm-pull-4 {
right: 33.33333333%;
}
/* line 1592, ../dev/sass/_bootstrap.scss */
.col-sm-pull-3 {
right: 25%;
}
/* line 1595, ../dev/sass/_bootstrap.scss */
.col-sm-pull-2 {
right: 16.66666667%;
}
/* line 1598, ../dev/sass/_bootstrap.scss */
.col-sm-pull-1 {
right: 8.33333333%;
}
/* line 1601, ../dev/sass/_bootstrap.scss */
.col-sm-pull-0 {
right: auto;
}
/* line 1604, ../dev/sass/_bootstrap.scss */
.col-sm-push-12 {
left: 100%;
}
/* line 1607, ../dev/sass/_bootstrap.scss */
.col-sm-push-11 {
left: 91.66666667%;
}
/* line 1610, ../dev/sass/_bootstrap.scss */
.col-sm-push-10 {
left: 83.33333333%;
}
/* line 1613, ../dev/sass/_bootstrap.scss */
.col-sm-push-9 {
left: 75%;
}
/* line 1616, ../dev/sass/_bootstrap.scss */
.col-sm-push-8 {
left: 66.66666667%;
}
/* line 1619, ../dev/sass/_bootstrap.scss */
.col-sm-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1622, ../dev/sass/_bootstrap.scss */
.col-sm-push-6 {
left: 50%;
}
/* line 1625, ../dev/sass/_bootstrap.scss */
.col-sm-push-5 {
left: 41.66666667%;
}
/* line 1628, ../dev/sass/_bootstrap.scss */
.col-sm-push-4 {
left: 33.33333333%;
}
/* line 1631, ../dev/sass/_bootstrap.scss */
.col-sm-push-3 {
left: 25%;
}
/* line 1634, ../dev/sass/_bootstrap.scss */
.col-sm-push-2 {
left: 16.66666667%;
}
/* line 1637, ../dev/sass/_bootstrap.scss */
.col-sm-push-1 {
left: 8.33333333%;
}
/* line 1640, ../dev/sass/_bootstrap.scss */
.col-sm-push-0 {
left: auto;
}
/* line 1643, ../dev/sass/_bootstrap.scss */
.col-sm-offset-12 {
margin-left: 100%;
}
/* line 1646, ../dev/sass/_bootstrap.scss */
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
/* line 1649, ../dev/sass/_bootstrap.scss */
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
/* line 1652, ../dev/sass/_bootstrap.scss */
.col-sm-offset-9 {
margin-left: 75%;
}
/* line 1655, ../dev/sass/_bootstrap.scss */
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
/* line 1658, ../dev/sass/_bootstrap.scss */
.col-sm-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1661, ../dev/sass/_bootstrap.scss */
.col-sm-offset-6 {
margin-left: 50%;
}
/* line 1664, ../dev/sass/_bootstrap.scss */
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
/* line 1667, ../dev/sass/_bootstrap.scss */
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
/* line 1670, ../dev/sass/_bootstrap.scss */
.col-sm-offset-3 {
margin-left: 25%;
}
/* line 1673, ../dev/sass/_bootstrap.scss */
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
/* line 1676, ../dev/sass/_bootstrap.scss */
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
/* line 1679, ../dev/sass/_bootstrap.scss */
.col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
/* line 1684, ../dev/sass/_bootstrap.scss */
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
/* line 1687, ../dev/sass/_bootstrap.scss */
.col-md-12 {
width: 100%;
}
/* line 1690, ../dev/sass/_bootstrap.scss */
.col-md-11 {
width: 91.66666667%;
}
/* line 1693, ../dev/sass/_bootstrap.scss */
.col-md-10 {
width: 83.33333333%;
}
/* line 1696, ../dev/sass/_bootstrap.scss */
.col-md-9 {
width: 75%;
}
/* line 1699, ../dev/sass/_bootstrap.scss */
.col-md-8 {
width: 66.66666667%;
}
/* line 1702, ../dev/sass/_bootstrap.scss */
.col-md-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1705, ../dev/sass/_bootstrap.scss */
.col-md-6 {
width: 50%;
}
/* line 1708, ../dev/sass/_bootstrap.scss */
.col-md-5 {
width: 41.66666667%;
}
/* line 1711, ../dev/sass/_bootstrap.scss */
.col-md-4 {
width: 33.33333333%;
}
/* line 1714, ../dev/sass/_bootstrap.scss */
.col-md-3 {
width: 24%;
}
/* line 1717, ../dev/sass/_bootstrap.scss */
.col-md-2 {
width: 16.66666667%;
}
/* line 1720, ../dev/sass/_bootstrap.scss */
.col-md-1 {
width: 8.33333333%;
}
/* line 1723, ../dev/sass/_bootstrap.scss */
.col-md-pull-12 {
right: 100%;
}
/* line 1726, ../dev/sass/_bootstrap.scss */
.col-md-pull-11 {
right: 91.66666667%;
}
/* line 1729, ../dev/sass/_bootstrap.scss */
.col-md-pull-10 {
right: 83.33333333%;
}
/* line 1732, ../dev/sass/_bootstrap.scss */
.col-md-pull-9 {
right: 75%;
}
/* line 1735, ../dev/sass/_bootstrap.scss */
.col-md-pull-8 {
right: 66.66666667%;
}
/* line 1738, ../dev/sass/_bootstrap.scss */
.col-md-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1741, ../dev/sass/_bootstrap.scss */
.col-md-pull-6 {
right: 50%;
}
/* line 1744, ../dev/sass/_bootstrap.scss */
.col-md-pull-5 {
right: 41.66666667%;
}
/* line 1747, ../dev/sass/_bootstrap.scss */
.col-md-pull-4 {
right: 33.33333333%;
}
/* line 1750, ../dev/sass/_bootstrap.scss */
.col-md-pull-3 {
right: 25%;
}
/* line 1753, ../dev/sass/_bootstrap.scss */
.col-md-pull-2 {
right: 16.66666667%;
}
/* line 1756, ../dev/sass/_bootstrap.scss */
.col-md-pull-1 {
right: 8.33333333%;
}
/* line 1759, ../dev/sass/_bootstrap.scss */
.col-md-pull-0 {
right: auto;
}
/* line 1762, ../dev/sass/_bootstrap.scss */
.col-md-push-12 {
left: 100%;
}
/* line 1765, ../dev/sass/_bootstrap.scss */
.col-md-push-11 {
left: 91.66666667%;
}
/* line 1768, ../dev/sass/_bootstrap.scss */
.col-md-push-10 {
left: 83.33333333%;
}
/* line 1771, ../dev/sass/_bootstrap.scss */
.col-md-push-9 {
left: 75%;
}
/* line 1774, ../dev/sass/_bootstrap.scss */
.col-md-push-8 {
left: 66.66666667%;
}
/* line 1777, ../dev/sass/_bootstrap.scss */
.col-md-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1780, ../dev/sass/_bootstrap.scss */
.col-md-push-6 {
left: 50%;
}
/* line 1783, ../dev/sass/_bootstrap.scss */
.col-md-push-5 {
left: 41.66666667%;
}
/* line 1786, ../dev/sass/_bootstrap.scss */
.col-md-push-4 {
left: 33.33333333%;
}
/* line 1789, ../dev/sass/_bootstrap.scss */
.col-md-push-3 {
left: 25%;
}
/* line 1792, ../dev/sass/_bootstrap.scss */
.col-md-push-2 {
left: 16.66666667%;
}
/* line 1795, ../dev/sass/_bootstrap.scss */
.col-md-push-1 {
left: 8.33333333%;
}
/* line 1798, ../dev/sass/_bootstrap.scss */
.col-md-push-0 {
left: auto;
}
/* line 1801, ../dev/sass/_bootstrap.scss */
.col-md-offset-12 {
margin-left: 100%;
}
/* line 1804, ../dev/sass/_bootstrap.scss */
.col-md-offset-11 {
margin-left: 91.66666667%;
}
/* line 1807, ../dev/sass/_bootstrap.scss */
.col-md-offset-10 {
margin-left: 83.33333333%;
}
/* line 1810, ../dev/sass/_bootstrap.scss */
.col-md-offset-9 {
margin-left: 75%;
}
/* line 1813, ../dev/sass/_bootstrap.scss */
.col-md-offset-8 {
margin-left: 66.66666667%;
}
/* line 1816, ../dev/sass/_bootstrap.scss */
.col-md-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1819, ../dev/sass/_bootstrap.scss */
.col-md-offset-6 {
margin-left: 50%;
}
/* line 1822, ../dev/sass/_bootstrap.scss */
.col-md-offset-5 {
margin-left: 41.66666667%;
}
/* line 1825, ../dev/sass/_bootstrap.scss */
.col-md-offset-4 {
margin-left: 33.33333333%;
}
/* line 1828, ../dev/sass/_bootstrap.scss */
.col-md-offset-3 {
margin-left: 25%;
}
/* line 1831, ../dev/sass/_bootstrap.scss */
.col-md-offset-2 {
margin-left: 16.66666667%;
}
/* line 1834, ../dev/sass/_bootstrap.scss */
.col-md-offset-1 {
margin-left: 8.33333333%;
}
/* line 1837, ../dev/sass/_bootstrap.scss */
.col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
/* line 1842, ../dev/sass/_bootstrap.scss */
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
/* line 1845, ../dev/sass/_bootstrap.scss */
.col-lg-12 {
width: 100%;
}
/* line 1848, ../dev/sass/_bootstrap.scss */
.col-lg-11 {
width: 91.66666667%;
}
/* line 1851, ../dev/sass/_bootstrap.scss */
.col-lg-10 {
width: 83.33333333%;
}
/* line 1854, ../dev/sass/_bootstrap.scss */
.col-lg-9 {
width: 75%;
}
/* line 1857, ../dev/sass/_bootstrap.scss */
.col-lg-8 {
width: 66.66666667%;
}
/* line 1860, ../dev/sass/_bootstrap.scss */
.col-lg-7 {
width: 58.33333333%;
padding-left: 30px;
}
/* line 1863, ../dev/sass/_bootstrap.scss */
.col-lg-6 {
width: 50%;
}
/* line 1866, ../dev/sass/_bootstrap.scss */
.col-lg-5 {
width: 41.66666667%;
}
/* line 1869, ../dev/sass/_bootstrap.scss */
.col-lg-4 {
width: 33.33333333%;
}
/* line 1872, ../dev/sass/_bootstrap.scss */
.col-lg-3 {
width: 25%;
}
/* line 1875, ../dev/sass/_bootstrap.scss */
.col-lg-2 {
width: 16.66666667%;
}
/* line 1878, ../dev/sass/_bootstrap.scss */
.col-lg-1 {
width: 8.33333333%;
}
/* line 1881, ../dev/sass/_bootstrap.scss */
.col-lg-pull-12 {
right: 100%;
}
/* line 1884, ../dev/sass/_bootstrap.scss */
.col-lg-pull-11 {
right: 91.66666667%;
}
/* line 1887, ../dev/sass/_bootstrap.scss */
.col-lg-pull-10 {
right: 83.33333333%;
}
/* line 1890, ../dev/sass/_bootstrap.scss */
.col-lg-pull-9 {
right: 75%;
}
/* line 1893, ../dev/sass/_bootstrap.scss */
.col-lg-pull-8 {
right: 66.66666667%;
}
/* line 1896, ../dev/sass/_bootstrap.scss */
.col-lg-pull-7 {
right: 58.33333333%;
padding-left: 30px;
}
/* line 1899, ../dev/sass/_bootstrap.scss */
.col-lg-pull-6 {
right: 50%;
}
/* line 1902, ../dev/sass/_bootstrap.scss */
.col-lg-pull-5 {
right: 41.66666667%;
}
/* line 1905, ../dev/sass/_bootstrap.scss */
.col-lg-pull-4 {
right: 33.33333333%;
}
/* line 1908, ../dev/sass/_bootstrap.scss */
.col-lg-pull-3 {
right: 25%;
}
/* line 1911, ../dev/sass/_bootstrap.scss */
.col-lg-pull-2 {
right: 16.66666667%;
}
/* line 1914, ../dev/sass/_bootstrap.scss */
.col-lg-pull-1 {
right: 8.33333333%;
}
/* line 1917, ../dev/sass/_bootstrap.scss */
.col-lg-pull-0 {
right: auto;
}
/* line 1920, ../dev/sass/_bootstrap.scss */
.col-lg-push-12 {
left: 100%;
}
/* line 1923, ../dev/sass/_bootstrap.scss */
.col-lg-push-11 {
left: 91.66666667%;
}
/* line 1926, ../dev/sass/_bootstrap.scss */
.col-lg-push-10 {
left: 83.33333333%;
}
/* line 1929, ../dev/sass/_bootstrap.scss */
.col-lg-push-9 {
left: 75%;
}
/* line 1932, ../dev/sass/_bootstrap.scss */
.col-lg-push-8 {
left: 66.66666667%;
}
/* line 1935, ../dev/sass/_bootstrap.scss */
.col-lg-push-7 {
left: 58.33333333%;
padding-left: 30px;
}
/* line 1938, ../dev/sass/_bootstrap.scss */
.col-lg-push-6 {
left: 50%;
}
/* line 1941, ../dev/sass/_bootstrap.scss */
.col-lg-push-5 {
left: 41.66666667%;
}
/* line 1944, ../dev/sass/_bootstrap.scss */
.col-lg-push-4 {
left: 33.33333333%;
}
/* line 1947, ../dev/sass/_bootstrap.scss */
.col-lg-push-3 {
left: 25%;
}
/* line 1950, ../dev/sass/_bootstrap.scss */
.col-lg-push-2 {
left: 16.66666667%;
}
/* line 1953, ../dev/sass/_bootstrap.scss */
.col-lg-push-1 {
left: 8.33333333%;
}
/* line 1956, ../dev/sass/_bootstrap.scss */
.col-lg-push-0 {
left: auto;
}
/* line 1959, ../dev/sass/_bootstrap.scss */
.col-lg-offset-12 {
margin-left: 100%;
}
/* line 1962, ../dev/sass/_bootstrap.scss */
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
/* line 1965, ../dev/sass/_bootstrap.scss */
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
/* line 1968, ../dev/sass/_bootstrap.scss */
.col-lg-offset-9 {
margin-left: 75%;
}
/* line 1971, ../dev/sass/_bootstrap.scss */
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
/* line 1974, ../dev/sass/_bootstrap.scss */
.col-lg-offset-7 {
margin-left: 58.33333333%;
padding-left: 30px;
}
/* line 1977, ../dev/sass/_bootstrap.scss */
.col-lg-offset-6 {
margin-left: 50%;
}
/* line 1980, ../dev/sass/_bootstrap.scss */
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
/* line 1983, ../dev/sass/_bootstrap.scss */
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
/* line 1986, ../dev/sass/_bootstrap.scss */
.col-lg-offset-3 {
margin-left: 25%;
}
/* line 1989, ../dev/sass/_bootstrap.scss */
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
/* line 1992, ../dev/sass/_bootstrap.scss */
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
/* line 1995, ../dev/sass/_bootstrap.scss */
.col-lg-offset-0 {
margin-left: 0%;
}
}
/* line 1999, ../dev/sass/_bootstrap.scss */
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
/* line 2005, ../dev/sass/_bootstrap.scss */
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
/* line 2016, ../dev/sass/_bootstrap.scss */
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
/* line 2022, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* line 2028, ../dev/sass/_bootstrap.scss */
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
/* line 2033, ../dev/sass/_bootstrap.scss */
input[type="file"] {
display: block;
}
/* line 2036, ../dev/sass/_bootstrap.scss */
input[type="range"] {
display: block;
width: 100%;
}
/* line 2041, ../dev/sass/_bootstrap.scss */
select[multiple],
select[size] {
height: auto;
}
/* line 2046, ../dev/sass/_bootstrap.scss */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 2051, ../dev/sass/_bootstrap.scss */
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
}
/* line 2058, ../dev/sass/_bootstrap.scss */
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
/* line 2076, ../dev/sass/_bootstrap.scss */
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
/* line 2082, ../dev/sass/_bootstrap.scss */
.form-control::-moz-placeholder {
color: #777777;
opacity: 1;
}
/* line 2086, ../dev/sass/_bootstrap.scss */
.form-control:-ms-input-placeholder {
color: #777777;
}
/* line 2089, ../dev/sass/_bootstrap.scss */
.form-control::-webkit-input-placeholder {
color: #777777;
}
/* line 2094, ../dev/sass/_bootstrap.scss */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
cursor: not-allowed;
background-color: #eeeeee;
opacity: 1;
}
/* line 2099, ../dev/sass/_bootstrap.scss */
textarea.form-control {
height: auto;
}
/* line 2102, ../dev/sass/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: none;
}
/* line 2108, ../dev/sass/_bootstrap.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
line-height: 34px;
line-height: 1.42857143 \0;
}
/* line 2115, ../dev/sass/_bootstrap.scss */
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm {
line-height: 30px;
}
/* line 2121, ../dev/sass/_bootstrap.scss */
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg {
line-height: 46px;
}
/* line 2124, ../dev/sass/_bootstrap.scss */
.form-group {
margin-bottom: 15px;
}
/* line 2128, ../dev/sass/_bootstrap.scss */
.radio,
.checkbox {
position: relative;
display: block;
min-height: 20px;
margin-top: 10px;
margin-bottom: 10px;
}
/* line 2136, ../dev/sass/_bootstrap.scss */
.radio label,
.checkbox label {
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
/* line 2145, ../dev/sass/_bootstrap.scss */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
/* line 2151, ../dev/sass/_bootstrap.scss */
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
/* line 2155, ../dev/sass/_bootstrap.scss */
.radio-inline,
.checkbox-inline {
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
/* line 2164, ../dev/sass/_bootstrap.scss */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
/* line 2173, ../dev/sass/_bootstrap.scss */
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
/* line 2179, ../dev/sass/_bootstrap.scss */
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
/* line 2185, ../dev/sass/_bootstrap.scss */
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
/* line 2188, ../dev/sass/_bootstrap.scss */
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
}
/* line 2194, ../dev/sass/_bootstrap.scss */
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
/* line 2199, ../dev/sass/_bootstrap.scss */
.input-sm,
.form-horizontal .form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2206, ../dev/sass/_bootstrap.scss */
select.input-sm {
height: 30px;
line-height: 30px;
}
/* line 2211, ../dev/sass/_bootstrap.scss */
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
/* line 2215, ../dev/sass/_bootstrap.scss */
.input-lg,
.form-horizontal .form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
/* line 2222, ../dev/sass/_bootstrap.scss */
select.input-lg {
height: 46px;
line-height: 46px;
}
/* line 2227, ../dev/sass/_bootstrap.scss */
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
/* line 2230, ../dev/sass/_bootstrap.scss */
.has-feedback {
position: relative;
}
/* line 2233, ../dev/sass/_bootstrap.scss */
.has-feedback .form-control {
padding-right: 42.5px;
}
/* line 2236, ../dev/sass/_bootstrap.scss */
.form-control-feedback {
position: absolute;
top: 25px;
right: 0;
z-index: 2;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
}
/* line 2247, ../dev/sass/_bootstrap.scss */
.input-lg + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
/* line 2252, ../dev/sass/_bootstrap.scss */
.input-sm + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
/* line 2262, ../dev/sass/_bootstrap.scss */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
color: #3c763d;
}
/* line 2265, ../dev/sass/_bootstrap.scss */
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2270, ../dev/sass/_bootstrap.scss */
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
/* line 2275, ../dev/sass/_bootstrap.scss */
.has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8;
}
/* line 2280, ../dev/sass/_bootstrap.scss */
.has-success .form-control-feedback {
color: #3c763d;
}
/* line 2288, ../dev/sass/_bootstrap.scss */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
color: #8a6d3b;
}
/* line 2291, ../dev/sass/_bootstrap.scss */
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2296, ../dev/sass/_bootstrap.scss */
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
/* line 2301, ../dev/sass/_bootstrap.scss */
.has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3;
}
/* line 2306, ../dev/sass/_bootstrap.scss */
.has-warning .form-control-feedback {
color: #8a6d3b;
}
/* line 2314, ../dev/sass/_bootstrap.scss */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
color: #a94442;
}
/* line 2317, ../dev/sass/_bootstrap.scss */
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 2322, ../dev/sass/_bootstrap.scss */
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
/* line 2327, ../dev/sass/_bootstrap.scss */
.has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede;
}
/* line 2332, ../dev/sass/_bootstrap.scss */
.has-error .form-control-feedback {
color: #a94442;
}
/* line 2335, ../dev/sass/_bootstrap.scss */
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
/* line 2338, ../dev/sass/_bootstrap.scss */
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
/* line 2345, ../dev/sass/_bootstrap.scss */
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
/* line 2350, ../dev/sass/_bootstrap.scss */
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
/* line 2355, ../dev/sass/_bootstrap.scss */
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
/* line 2361, ../dev/sass/_bootstrap.scss */
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
/* line 2364, ../dev/sass/_bootstrap.scss */
.form-inline .input-group > .form-control {
width: 100%;
}
/* line 2367, ../dev/sass/_bootstrap.scss */
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
/* line 2372, ../dev/sass/_bootstrap.scss */
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
/* line 2379, ../dev/sass/_bootstrap.scss */
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
/* line 2383, ../dev/sass/_bootstrap.scss */
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
/* line 2387, ../dev/sass/_bootstrap.scss */
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
/* line 2394, ../dev/sass/_bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px;
}
/* line 2400, ../dev/sass/_bootstrap.scss */
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 27px;
}
/* line 2403, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px;
}
@media (min-width: 768px) {
/* line 2408, ../dev/sass/_bootstrap.scss */
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
}
/* line 2414, ../dev/sass/_bootstrap.scss */
.form-horizontal .has-feedback .form-control-feedback {
top: 0;
right: 15px;
}
@media (min-width: 768px) {
/* line 2419, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group-lg .control-label {
padding-top: 14.3px;
}
}
@media (min-width: 768px) {
/* line 2424, ../dev/sass/_bootstrap.scss */
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
}
}
/* line 2428, ../dev/sass/_bootstrap.scss */
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* line 2449, ../dev/sass/_bootstrap.scss */
.btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
/* line 2455, ../dev/sass/_bootstrap.scss */
.btn:hover,
.btn:focus {
color: #333333;
text-decoration: none;
}
/* line 2460, ../dev/sass/_bootstrap.scss */
.btn:active,
.btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* line 2468, ../dev/sass/_bootstrap.scss */
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
pointer-events: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 2476, ../dev/sass/_bootstrap.scss */
.btn-default {
color: #333333;
background-color: #ffffff;
border-color: #cccccc;
}
/* line 2485, ../dev/sass/_bootstrap.scss */
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333333;
background-color: #e6e6e6;
border-color: #adadad;
}
/* line 2492, ../dev/sass/_bootstrap.scss */
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
/* line 2509, ../dev/sass/_bootstrap.scss */
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #ffffff;
border-color: #cccccc;
}
/* line 2513, ../dev/sass/_bootstrap.scss */
.btn-default .badge {
color: #ffffff;
background-color: #333333;
}
/* line 2517, ../dev/sass/_bootstrap.scss */
.btn-primary {
color: #ffffff;
background-color: #428bca;
border-color: #357ebd;
}
/* line 2526, ../dev/sass/_bootstrap.scss */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #3071a9;
border-color: #285e8e;
}
/* line 2533, ../dev/sass/_bootstrap.scss */
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
/* line 2550, ../dev/sass/_bootstrap.scss */
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #428bca;
border-color: #357ebd;
}
/* line 2554, ../dev/sass/_bootstrap.scss */
.btn-primary .badge {
color: #428bca;
background-color: #ffffff;
}
/* line 2558, ../dev/sass/_bootstrap.scss */
.btn-success {
color: #ffffff;
background-color: #5cb85c;
border-color: #4cae4c;
}
/* line 2567, ../dev/sass/_bootstrap.scss */
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
/* line 2574, ../dev/sass/_bootstrap.scss */
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
/* line 2591, ../dev/sass/_bootstrap.scss */
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #5cb85c;
border-color: #4cae4c;
}
/* line 2595, ../dev/sass/_bootstrap.scss */
.btn-success .badge {
color: #5cb85c;
background-color: #ffffff;
}
/* line 2599, ../dev/sass/_bootstrap.scss */
.btn-info {
color: #ffffff;
background-color: #5bc0de;
border-color: #46b8da;
}
/* line 2608, ../dev/sass/_bootstrap.scss */
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #ffffff;
background-color: #31b0d5;
border-color: #269abc;
}
/* line 2615, ../dev/sass/_bootstrap.scss */
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
/* line 2632, ../dev/sass/_bootstrap.scss */
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
background-color: #5bc0de;
border-color: #46b8da;
}
/* line 2636, ../dev/sass/_bootstrap.scss */
.btn-info .badge {
color: #5bc0de;
background-color: #ffffff;
}
/* line 2640, ../dev/sass/_bootstrap.scss */
.btn-warning {
color: #ffffff;
background-color: #f0ad4e;
border-color: #eea236;
}
/* line 2649, ../dev/sass/_bootstrap.scss */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #ffffff;
background-color: #ec971f;
border-color: #d58512;
}
/* line 2656, ../dev/sass/_bootstrap.scss */
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
/* line 2673, ../dev/sass/_bootstrap.scss */
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
background-color: #f0ad4e;
border-color: #eea236;
}
/* line 2677, ../dev/sass/_bootstrap.scss */
.btn-warning .badge {
color: #f0ad4e;
background-color: #ffffff;
}
/* line 2681, ../dev/sass/_bootstrap.scss */
.btn-danger {
color: #ffffff;
background-color: #d9534f;
border-color: #d43f3a;
}
/* line 2690, ../dev/sass/_bootstrap.scss */
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
/* line 2697, ../dev/sass/_bootstrap.scss */
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
/* line 2714, ../dev/sass/_bootstrap.scss */
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
background-color: #d9534f;
border-color: #d43f3a;
}
/* line 2718, ../dev/sass/_bootstrap.scss */
.btn-danger .badge {
color: #d9534f;
background-color: #ffffff;
}
/* line 2722, ../dev/sass/_bootstrap.scss */
.btn-link {
color: #428bca;
font-weight: normal;
cursor: pointer;
border-radius: 0;
}
/* line 2731, ../dev/sass/_bootstrap.scss */
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 2739, ../dev/sass/_bootstrap.scss */
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
/* line 2743, ../dev/sass/_bootstrap.scss */
.btn-link:hover,
.btn-link:focus {
color: #2a6496;
text-decoration: underline;
background-color: transparent;
}
/* line 2751, ../dev/sass/_bootstrap.scss */
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none;
}
/* line 2755, ../dev/sass/_bootstrap.scss */
.btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
/* line 2761, ../dev/sass/_bootstrap.scss */
.btn-sm {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2767, ../dev/sass/_bootstrap.scss */
.btn-xs {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
/* line 2773, ../dev/sass/_bootstrap.scss */
.btn-block {
display: block;
width: 100%;
}
/* line 2777, ../dev/sass/_bootstrap.scss */
.btn-block + .btn-block {
margin-top: 5px;
}
/* line 2782, ../dev/sass/_bootstrap.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
/* line 2785, ../dev/sass/_bootstrap.scss */
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
/* line 2790, ../dev/sass/_bootstrap.scss */
.nav > li {
position: relative;
display: block;
}
/* line 2794, ../dev/sass/_bootstrap.scss */
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
/* line 2800, ../dev/sass/_bootstrap.scss */
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
/* line 2804, ../dev/sass/_bootstrap.scss */
.nav > li.disabled > a {
color: #777777;
}
/* line 2808, ../dev/sass/_bootstrap.scss */
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
/* line 2816, ../dev/sass/_bootstrap.scss */
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eeeeee;
border-color: #428bca;
}
/* line 2820, ../dev/sass/_bootstrap.scss */
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
/* line 2826, ../dev/sass/_bootstrap.scss */
.nav > li > a > img {
max-width: none;
}
/* line 2829, ../dev/sass/_bootstrap.scss */
.nav-tabs {
border-bottom: 1px solid #dddddd;
}
/* line 2832, ../dev/sass/_bootstrap.scss */
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
/* line 2836, ../dev/sass/_bootstrap.scss */
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
/* line 2842, ../dev/sass/_bootstrap.scss */
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #dddddd;
}
/* line 2847, ../dev/sass/_bootstrap.scss */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555555;
background-color: #ffffff;
border: 1px solid #dddddd;
border-bottom-color: transparent;
cursor: default;
}
/* line 2854, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
/* line 2858, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li {
float: none;
}
/* line 2861, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
/* line 2865, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
/* line 2870, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
/* line 2874, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
/* line 2878, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
/* line 2884, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
/* line 2888, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
/* line 2894, ../dev/sass/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
/* line 2898, ../dev/sass/_bootstrap.scss */
.nav-pills > li {
float: left;
}
/* line 2901, ../dev/sass/_bootstrap.scss */
.nav-pills > li > a {
border-radius: 4px;
}
/* line 2904, ../dev/sass/_bootstrap.scss */
.nav-pills > li + li {
margin-left: 2px;
}
/* line 2909, ../dev/sass/_bootstrap.scss */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #ffffff;
background-color: #428bca;
}
/* line 2913, ../dev/sass/_bootstrap.scss */
.nav-stacked > li {
float: none;
}
/* line 2916, ../dev/sass/_bootstrap.scss */
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
/* line 2920, ../dev/sass/_bootstrap.scss */
.nav-justified {
width: 100%;
}
/* line 2923, ../dev/sass/_bootstrap.scss */
.nav-justified > li {
float: none;
}
/* line 2926, ../dev/sass/_bootstrap.scss */
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
/* line 2930, ../dev/sass/_bootstrap.scss */
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
/* line 2935, ../dev/sass/_bootstrap.scss */
.nav-justified > li {
display: table-cell;
width: 1%;
}
/* line 2939, ../dev/sass/_bootstrap.scss */
.nav-justified > li > a {
margin-bottom: 0;
}
}
/* line 2943, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified {
border-bottom: 0;
}
/* line 2946, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
/* line 2952, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
/* line 2956, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
/* line 2962, ../dev/sass/_bootstrap.scss */
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
/* line 2966, ../dev/sass/_bootstrap.scss */
.tab-content > .tab-pane {
display: none;
}
/* line 2969, ../dev/sass/_bootstrap.scss */
.tab-content > .active {
display: block;
}
/* line 2972, ../dev/sass/_bootstrap.scss */
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
/* line 2977, ../dev/sass/_bootstrap.scss */
.navbar {
position: relative;
min-height: 50px;
/*margin-bottom: 20px;*/
border: 1px solid transparent;
}
@media (min-width: 768px) {
/* line 2984, ../dev/sass/_bootstrap.scss */
.navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
/* line 2989, ../dev/sass/_bootstrap.scss */
.navbar-header {
float: left;
}
}
/* line 2993, ../dev/sass/_bootstrap.scss */
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
/* line 3001, ../dev/sass/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
/* line 3005, ../dev/sass/_bootstrap.scss */
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
/* line 3010, ../dev/sass/_bootstrap.scss */
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
/* line 3016, ../dev/sass/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: visible;
}
/* line 3021, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
/* line 3027, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-width: 480px) and (orientation: landscape) {
/* line 3032, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
/* line 3039, ../dev/sass/_bootstrap.scss */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
/* line 3047, ../dev/sass/_bootstrap.scss */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
/* line 3052, ../dev/sass/_bootstrap.scss */
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
/* line 3057, ../dev/sass/_bootstrap.scss */
.navbar-static-top {
border-radius: 0;
}
}
/* line 3062, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
/* line 3072, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
/* line 3076, ../dev/sass/_bootstrap.scss */
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
/* line 3080, ../dev/sass/_bootstrap.scss */
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
/* line 3085, ../dev/sass/_bootstrap.scss */
.navbar-brand {
float: left;
padding: 35px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
/* line 3085, ../dev/sass/_bootstrap.scss */
.menu-brand {
float: right;
padding: 37px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
/* line 3093, ../dev/sass/_bootstrap.scss */
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
@media (min-width: 768px) {
/* line 3098, ../dev/sass/_bootstrap.scss */
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
/* line 3102, ../dev/sass/_bootstrap.scss */
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
/* line 3114, ../dev/sass/_bootstrap.scss */
.navbar-toggle:focus {
outline: 0;
}
/* line 3117, ../dev/sass/_bootstrap.scss */
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
/* line 3123, ../dev/sass/_bootstrap.scss */
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
/* line 3127, ../dev/sass/_bootstrap.scss */
.navbar-toggle {
display: none;
}
}
/* line 3131, ../dev/sass/_bootstrap.scss */
.navbar-nav {
margin: 7.5px -15px;
}
/* line 3134, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
/* line 3140, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
/* line 3150, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
/* line 3153, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
/* line 3157, ../dev/sass/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
/* line 3162, ../dev/sass/_bootstrap.scss */
.navbar-nav {
float: left;
margin: 0;
}
/* line 3166, ../dev/sass/_bootstrap.scss */
.navbar-nav > li {
float: left;
}
/* line 3169, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
/* line 3173, ../dev/sass/_bootstrap.scss */
.navbar-nav.navbar-right:last-child {
margin-right: -15px;
}
}
@media (min-width: 768px) {
/* line 3178, ../dev/sass/_bootstrap.scss */
.navbar-left {
float: left !important;
}
/* line 3181, ../dev/sass/_bootstrap.scss */
.navbar-right {
float: right !important;
}
}
/* line 3185, ../dev/sass/_bootstrap.scss */
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) {
/* line 3197, ../dev/sass/_bootstrap.scss */
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
/* line 3202, ../dev/sass/_bootstrap.scss */
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
/* line 3207, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
/* line 3213, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
/* line 3216, ../dev/sass/_bootstrap.scss */
.navbar-form .input-group > .form-control {
width: 100%;
}
/* line 3219, ../dev/sass/_bootstrap.scss */
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
/* line 3224, ../dev/sass/_bootstrap.scss */
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
/* line 3231, ../dev/sass/_bootstrap.scss */
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
/* line 3235, ../dev/sass/_bootstrap.scss */
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
/* line 3239, ../dev/sass/_bootstrap.scss */
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
/* line 3244, ../dev/sass/_bootstrap.scss */
.navbar-form .form-group {
margin-bottom: 5px;
}
}
@media (min-width: 768px) {
/* line 3249, ../dev/sass/_bootstrap.scss */
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
/* line 3259, ../dev/sass/_bootstrap.scss */
.navbar-form.navbar-right:last-child {
margin-right: -15px;
}
}
/* line 3263, ../dev/sass/_bootstrap.scss */
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
/* line 3268, ../dev/sass/_bootstrap.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
/* line 3272, ../dev/sass/_bootstrap.scss */
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
/* line 3276, ../dev/sass/_bootstrap.scss */
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
/* line 3280, ../dev/sass/_bootstrap.scss */
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
/* line 3284, ../dev/sass/_bootstrap.scss */
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
/* line 3289, ../dev/sass/_bootstrap.scss */
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
/* line 3294, ../dev/sass/_bootstrap.scss */
.navbar-text.navbar-right:last-child {
margin-right: 0;
}
}
/* line 3298, ../dev/sass/_bootstrap.scss */
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
/* line 3302, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-brand {
color: #777777;
}
/* line 3306, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
/* line 3310, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-text {
color: #777777;
}
/* line 3313, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > li > a {
color: #777777;
}
/* line 3317, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333333;
background-color: transparent;
}
/* line 3323, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
/* line 3329, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
/* line 3333, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle {
border-color: #dddddd;
}
/* line 3337, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #dddddd;
}
/* line 3340, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-toggle .icon-bar {
background-color: #888888;
}
/* line 3344, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
/* line 3349, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555555;
}
@media (max-width: 767px) {
/* line 3354, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777777;
}
/* line 3358, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333333;
background-color: transparent;
}
/* line 3364, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
/* line 3370, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
}
/* line 3375, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-link {
color: #777777;
}
/* line 3378, ../dev/sass/_bootstrap.scss */
.navbar-default .navbar-link:hover {
color: #333333;
}
/* line 3381, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link {
color: #777777;
}
/* line 3385, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333333;
}
/* line 3391, ../dev/sass/_bootstrap.scss */
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #cccccc;
}
/* line 3394, ../dev/sass/_bootstrap.scss */
.navbar-inverse {
background-color: #222222;
border-color: #080808;
}
/* line 3398, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-brand {
color: #777777;
}
/* line 3402, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3406, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-text {
color: #777777;
}
/* line 3409, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a {
color: #777777;
}
/* line 3413, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3419, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
/* line 3425, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
/* line 3429, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle {
border-color: #333333;
}
/* line 3433, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333333;
}
/* line 3436, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
/* line 3440, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
/* line 3445, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #ffffff;
}
@media (max-width: 767px) {
/* line 3450, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
/* line 3453, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
/* line 3456, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #777777;
}
/* line 3460, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: transparent;
}
/* line 3466, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
/* line 3472, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
}
/* line 3477, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-link {
color: #777777;
}
/* line 3480, ../dev/sass/_bootstrap.scss */
.navbar-inverse .navbar-link:hover {
color: #ffffff;
}
/* line 3483, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link {
color: #777777;
}
/* line 3487, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #ffffff;
}
/* line 3493, ../dev/sass/_bootstrap.scss */
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444444;
}
/* line 3515, ../dev/sass/_bootstrap.scss */
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after {
content: " ";
display: table;
}
/* line 3528, ../dev/sass/_bootstrap.scss */
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after {
clear: both;
}
/* line 3531, ../dev/sass/_bootstrap.scss */
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
/* line 3536, ../dev/sass/_bootstrap.scss */
.pull-right {
float: right !important;
}
/* line 3539, ../dev/sass/_bootstrap.scss */
.pull-left {
float: left !important;
}
/* line 3542, ../dev/sass/_bootstrap.scss */
.hide {
display: none !important;
}
/* line 3545, ../dev/sass/_bootstrap.scss */
.show {
display: block !important;
}
/* line 3548, ../dev/sass/_bootstrap.scss */
.invisible {
visibility: hidden;
}
/* line 3551, ../dev/sass/_bootstrap.scss */
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
/* line 3558, ../dev/sass/_bootstrap.scss */
.hidden {
display: none !important;
visibility: hidden !important;
}
/* line 3562, ../dev/sass/_bootstrap.scss */
.affix {
position: fixed;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
@-ms-viewport {
width: device-width;
}
/* line 3573, ../dev/sass/_bootstrap.scss */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
/* line 3587, ../dev/sass/_bootstrap.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
/* line 3591, ../dev/sass/_bootstrap.scss */
.visible-xs {
display: block !important;
}
/* line 3594, ../dev/sass/_bootstrap.scss */
table.visible-xs {
display: table;
}
/* line 3597, ../dev/sass/_bootstrap.scss */
tr.visible-xs {
display: table-row !important;
}
/* line 3601, ../dev/sass/_bootstrap.scss */
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
/* line 3606, ../dev/sass/_bootstrap.scss */
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
/* line 3611, ../dev/sass/_bootstrap.scss */
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
/* line 3616, ../dev/sass/_bootstrap.scss */
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3621, ../dev/sass/_bootstrap.scss */
.visible-sm {
display: block !important;
}
/* line 3624, ../dev/sass/_bootstrap.scss */
table.visible-sm {
display: table;
}
/* line 3627, ../dev/sass/_bootstrap.scss */
tr.visible-sm {
display: table-row !important;
}
/* line 3631, ../dev/sass/_bootstrap.scss */
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3636, ../dev/sass/_bootstrap.scss */
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3641, ../dev/sass/_bootstrap.scss */
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3646, ../dev/sass/_bootstrap.scss */
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3651, ../dev/sass/_bootstrap.scss */
.visible-md {
display: block !important;
}
/* line 3654, ../dev/sass/_bootstrap.scss */
table.visible-md {
display: table;
}
/* line 3657, ../dev/sass/_bootstrap.scss */
tr.visible-md {
display: table-row !important;
}
/* line 3661, ../dev/sass/_bootstrap.scss */
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3666, ../dev/sass/_bootstrap.scss */
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3671, ../dev/sass/_bootstrap.scss */
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3676, ../dev/sass/_bootstrap.scss */
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
/* line 3681, ../dev/sass/_bootstrap.scss */
.visible-lg {
display: block !important;
}
/* line 3684, ../dev/sass/_bootstrap.scss */
table.visible-lg {
display: table;
}
/* line 3687, ../dev/sass/_bootstrap.scss */
tr.visible-lg {
display: table-row !important;
}
/* line 3691, ../dev/sass/_bootstrap.scss */
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
/* line 3696, ../dev/sass/_bootstrap.scss */
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
/* line 3701, ../dev/sass/_bootstrap.scss */
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
/* line 3706, ../dev/sass/_bootstrap.scss */
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
/* line 3711, ../dev/sass/_bootstrap.scss */
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
/* line 3716, ../dev/sass/_bootstrap.scss */
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
/* line 3721, ../dev/sass/_bootstrap.scss */
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
/* line 3726, ../dev/sass/_bootstrap.scss */
.hidden-lg {
display: none !important;
}
}
/* line 3730, ../dev/sass/_bootstrap.scss */
.visible-print {
display: none !important;
}
@media print {
/* line 3734, ../dev/sass/_bootstrap.scss */
.visible-print {
display: block !important;
}
/* line 3737, ../dev/sass/_bootstrap.scss */
table.visible-print {
display: table;
}
/* line 3740, ../dev/sass/_bootstrap.scss */
tr.visible-print {
display: table-row !important;
}
/* line 3744, ../dev/sass/_bootstrap.scss */
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
/* line 3748, ../dev/sass/_bootstrap.scss */
.visible-print-block {
display: none !important;
}
@media print {
/* line 3752, ../dev/sass/_bootstrap.scss */
.visible-print-block {
display: block !important;
}
}
/* line 3756, ../dev/sass/_bootstrap.scss */
.visible-print-inline {
display: none !important;
}
@media print {
/* line 3760, ../dev/sass/_bootstrap.scss */
.visible-print-inline {
display: inline !important;
}
}
/* line 3764, ../dev/sass/_bootstrap.scss */
.visible-print-inline-block {
display: none !important;
}
@media print {
/* line 3768, ../dev/sass/_bootstrap.scss */
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
/* line 3773, ../dev/sass/_bootstrap.scss */
.hidden-print {
display: none !important;
}
}
@font-face {
font-family: Cubano Reguler;
src: url("../fonts/Cubano Regular.otf") format("opentype");
}
@font-face {
font-family: GrandHotel Regular;
src: url("../fonts/GrandHotel Regular.otf") format("opentype");
}
@font-face {
font-family: Molot;
src: url("../fonts/Molot.otf") format("opentype");
}
/* line 19, ../dev/sass/_vpr.scss */
a {
color: #FFFFFF;
}
/* line 23, ../dev/sass/_vpr.scss */
html, body {
height: 100%;
}
/* line 27, ../dev/sass/_vpr.scss */
#page_container {
min-height: 100%;
background: #000000;
padding-bottom: 60px;
}
/* line 33, ../dev/sass/_vpr.scss */
.navbar {
border: 0;
border-radius: 0;
background-color: #000000;
min-height: 45px;
}
/* line 38, ../dev/sass/_vpr.scss */
.navbar .navbar-header {
float: none;
position: relative;
}
/* line 41, ../dev/sass/_vpr.scss */
.navbar .navbar-header a {
color: #f2f2f2;
}
/* line 43, ../dev/sass/_vpr.scss */
.navbar .navbar-header a:hover {
color: #B5A1B1;
text-decoration: none;
}
/* line 48, ../dev/sass/_vpr.scss */
.navbar .navbar-header #vpr_logo {
position: absolute;
top: 0;
left: 0;
}
/* line 53, ../dev/sass/_vpr.scss */
.navbar .navbar-header h4#navbar-title {
margin-top: 10px;
font-size: 26px;
font-weight: 400;
text-align: center;
}
/* line 59, ../dev/sass/_vpr.scss */
.navbar .navbar-header .social_logos {
position: absolute;
top: 0;
right: 0;
font-weight: 300;
}
/* line 72, ../dev/sass/_vpr.scss */
footer {
background: #000000;
font-size: 12px;
color: #e6e6e6;
margin-top: -107px;
padding: 20px 0 1px;
}
@media (max-width: 768px) {
/* line 72, ../dev/sass/_vpr.scss */
footer {
padding-bottom: 5px;
}
}
/* line 64, ../dev/sass/_vpr.scss */
.navbar .navbar-header .social_logos li {
font-size: 30px;
padding-left: 1px;
}
/* line 89, ../dev/sass/_vpr.scss */
#underwriter {
margin: 5px;
}
#underwriter p {
font-size: 12px;
padding-left: 0;
margin-top: 3px;
text-align: center;
color: #8f9294;
}
/* line 95, ../dev/sass/_vpr.scss */
#underwriter p li {
display: inline;
}
@media (max-width: 330px) {
#underwriter {
margin-left: -5px;
}
}
#feedback {
margin: 5px;
}
#feedback h2 {
text-align: right;
}
#feedback h3 {
text-align: right;
}
#feedback p {
text-align: right;
}
/*!
Ionicons, v1.4.0
Created by <NAME> for the Ionic Framework, http://ionicons.com/
https://twitter.com/helloimben https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons
*/
@font-face {
font-family: "Ionicons";
src: url("../fonts/ionicons.eot?v=1.4.0");
src: url("../fonts/ionicons.eot?v=1.4.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.4.0") format("truetype"), url("../fonts/ionicons.woff?v=1.4.0") format("woff"), url("../fonts/ionicons.svg?v=1.4.0#Ionicons") format("svg");
font-weight: normal;
font-style: normal;
}
/* line 545, ../dev/sass/_ionicons.scss */
.ion, .ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading, .ionicons,
.ion-alert,
.ion-alert-circled,
.ion-android-add,
.ion-android-add-contact,
.ion-android-alarm,
.ion-android-archive,
.ion-android-arrow-back,
.ion-android-arrow-down-left,
.ion-android-arrow-down-right,
.ion-android-arrow-up-left,
.ion-android-arrow-up-right,
.ion-android-battery,
.ion-android-book,
.ion-android-calendar,
.ion-android-call,
.ion-android-camera,
.ion-android-chat,
.ion-android-checkmark,
.ion-android-clock,
.ion-android-close,
.ion-android-contact,
.ion-android-contacts,
.ion-android-data,
.ion-android-developer,
.ion-android-display,
.ion-android-download,
.ion-android-dropdown,
.ion-android-earth,
.ion-android-folder,
.ion-android-forums,
.ion-android-friends,
.ion-android-hand,
.ion-android-image,
.ion-android-inbox,
.ion-android-information,
.ion-android-keypad,
.ion-android-lightbulb,
.ion-android-locate,
.ion-android-location,
.ion-android-mail,
.ion-android-microphone,
.ion-android-mixer,
.ion-android-more,
.ion-android-note,
.ion-android-playstore,
.ion-android-printer,
.ion-android-promotion,
.ion-android-reminder,
.ion-android-remove,
.ion-android-search,
.ion-android-send,
.ion-android-settings,
.ion-android-share,
.ion-android-social,
.ion-android-social-user,
.ion-android-sort,
.ion-android-star,
.ion-android-stopwatch,
.ion-android-storage,
.ion-android-system-back,
.ion-android-system-home,
.ion-android-system-windows,
.ion-android-timer,
.ion-android-trash,
.ion-android-volume,
.ion-android-wifi,
.ion-archive,
.ion-arrow-down-a,
.ion-arrow-down-b,
.ion-arrow-down-c,
.ion-arrow-expand,
.ion-arrow-graph-down-left,
.ion-arrow-graph-down-right,
.ion-arrow-graph-up-left,
.ion-arrow-graph-up-right,
.ion-arrow-left-a,
.ion-arrow-left-b,
.ion-arrow-left-c,
.ion-arrow-move,
.ion-arrow-resize,
.ion-arrow-return-left,
.ion-arrow-return-right,
.ion-arrow-right-a,
.ion-arrow-right-b,
.ion-arrow-right-c,
.ion-arrow-shrink,
.ion-arrow-swap,
.ion-arrow-up-a,
.ion-arrow-up-b,
.ion-arrow-up-c,
.ion-at,
.ion-bag,
.ion-battery-charging,
.ion-battery-empty,
.ion-battery-full,
.ion-battery-half,
.ion-battery-low,
.ion-beaker,
.ion-beer,
.ion-bluetooth,
.ion-bookmark,
.ion-briefcase,
.ion-bug,
.ion-calculator,
.ion-calendar,
.ion-camera,
.ion-card,
.ion-chatbox,
.ion-chatbox-working,
.ion-chatboxes,
.ion-chatbubble,
.ion-chatbubble-working,
.ion-chatbubbles,
.ion-checkmark,
.ion-checkmark-circled,
.ion-checkmark-round,
.ion-chevron-down,
.ion-chevron-left,
.ion-chevron-right,
.ion-chevron-up,
.ion-clipboard,
.ion-clock,
.ion-close,
.ion-close-circled,
.ion-close-round,
.ion-cloud,
.ion-code,
.ion-code-download,
.ion-code-working,
.ion-coffee,
.ion-compass,
.ion-compose,
.ion-connection-bars,
.ion-contrast,
.ion-disc,
.ion-document,
.ion-document-text,
.ion-drag,
.ion-earth,
.ion-edit,
.ion-egg,
.ion-eject,
.ion-email,
.ion-eye,
.ion-eye-disabled,
.ion-female,
.ion-filing,
.ion-film-marker,
.ion-flag,
.ion-flash,
.ion-flash-off,
.ion-flask,
.ion-folder,
.ion-fork,
.ion-fork-repo,
.ion-forward,
.ion-game-controller-a,
.ion-game-controller-b,
.ion-gear-a,
.ion-gear-b,
.ion-grid,
.ion-hammer,
.ion-headphone,
.ion-heart,
.ion-help,
.ion-help-buoy,
.ion-help-circled,
.ion-home,
.ion-icecream,
.ion-icon-social-google-plus,
.ion-icon-social-google-plus-outline,
.ion-image,
.ion-images,
.ion-information,
.ion-information-circled,
.ion-ionic,
.ion-ios7-alarm,
.ion-ios7-alarm-outline,
.ion-ios7-albums,
.ion-ios7-albums-outline,
.ion-ios7-arrow-back,
.ion-ios7-arrow-down,
.ion-ios7-arrow-forward,
.ion-ios7-arrow-left,
.ion-ios7-arrow-right,
.ion-ios7-arrow-thin-down,
.ion-ios7-arrow-thin-left,
.ion-ios7-arrow-thin-right,
.ion-ios7-arrow-thin-up,
.ion-ios7-arrow-up,
.ion-ios7-at,
.ion-ios7-at-outline,
.ion-ios7-bell,
.ion-ios7-bell-outline,
.ion-ios7-bolt,
.ion-ios7-bolt-outline,
.ion-ios7-bookmarks,
.ion-ios7-bookmarks-outline,
.ion-ios7-box,
.ion-ios7-box-outline,
.ion-ios7-briefcase,
.ion-ios7-briefcase-outline,
.ion-ios7-browsers,
.ion-ios7-browsers-outline,
.ion-ios7-calculator,
.ion-ios7-calculator-outline,
.ion-ios7-calendar,
.ion-ios7-calendar-outline,
.ion-ios7-camera,
.ion-ios7-camera-outline,
.ion-ios7-cart,
.ion-ios7-cart-outline,
.ion-ios7-chatboxes,
.ion-ios7-chatboxes-outline,
.ion-ios7-chatbubble,
.ion-ios7-chatbubble-outline,
.ion-ios7-checkmark,
.ion-ios7-checkmark-empty,
.ion-ios7-checkmark-outline,
.ion-ios7-circle-filled,
.ion-ios7-circle-outline,
.ion-ios7-clock,
.ion-ios7-clock-outline,
.ion-ios7-close,
.ion-ios7-close-empty,
.ion-ios7-close-outline,
.ion-ios7-cloud,
.ion-ios7-cloud-download,
.ion-ios7-cloud-download-outline,
.ion-ios7-cloud-outline,
.ion-ios7-cloud-upload,
.ion-ios7-cloud-upload-outline,
.ion-ios7-cloudy,
.ion-ios7-cloudy-night,
.ion-ios7-cloudy-night-outline,
.ion-ios7-cloudy-outline,
.ion-ios7-cog,
.ion-ios7-cog-outline,
.ion-ios7-compose,
.ion-ios7-compose-outline,
.ion-ios7-contact,
.ion-ios7-contact-outline,
.ion-ios7-copy,
.ion-ios7-copy-outline,
.ion-ios7-download,
.ion-ios7-download-outline,
.ion-ios7-drag,
.ion-ios7-email,
.ion-ios7-email-outline,
.ion-ios7-eye,
.ion-ios7-eye-outline,
.ion-ios7-fastforward,
.ion-ios7-fastforward-outline,
.ion-ios7-filing,
.ion-ios7-filing-outline,
.ion-ios7-film,
.ion-ios7-film-outline,
.ion-ios7-flag,
.ion-ios7-flag-outline,
.ion-ios7-folder,
.ion-ios7-folder-outline,
.ion-ios7-gear,
.ion-ios7-gear-outline,
.ion-ios7-glasses,
.ion-ios7-glasses-outline,
.ion-ios7-heart,
.ion-ios7-heart-outline,
.ion-ios7-help,
.ion-ios7-help-empty,
.ion-ios7-help-outline,
.ion-ios7-infinite,
.ion-ios7-infinite-outline,
.ion-ios7-information,
.ion-ios7-information-empty,
.ion-ios7-information-outline,
.ion-ios7-ionic-outline,
.ion-ios7-keypad,
.ion-ios7-keypad-outline,
.ion-ios7-lightbulb,
.ion-ios7-lightbulb-outline,
.ion-ios7-location,
.ion-ios7-location-outline,
.ion-ios7-locked,
.ion-ios7-locked-outline,
.ion-ios7-medkit,
.ion-ios7-medkit-outline,
.ion-ios7-mic,
.ion-ios7-mic-off,
.ion-ios7-mic-outline,
.ion-ios7-minus,
.ion-ios7-minus-empty,
.ion-ios7-minus-outline,
.ion-ios7-monitor,
.ion-ios7-monitor-outline,
.ion-ios7-moon,
.ion-ios7-moon-outline,
.ion-ios7-more,
.ion-ios7-more-outline,
.ion-ios7-musical-note,
.ion-ios7-musical-notes,
.ion-ios7-navigate,
.ion-ios7-navigate-outline,
.ion-ios7-paperplane,
.ion-ios7-paperplane-outline,
.ion-ios7-partlysunny,
.ion-ios7-partlysunny-outline,
.ion-ios7-pause,
.ion-ios7-pause-outline,
.ion-ios7-people,
.ion-ios7-people-outline,
.ion-ios7-person,
.ion-ios7-person-outline,
.ion-ios7-personadd,
.ion-ios7-personadd-outline,
.ion-ios7-photos,
.ion-ios7-photos-outline,
.ion-ios7-pie,
.ion-ios7-pie-outline,
.ion-ios7-play,
.ion-ios7-play-outline,
.ion-ios7-plus,
.ion-ios7-plus-empty,
.ion-ios7-plus-outline,
.ion-ios7-pricetag,
.ion-ios7-pricetag-outline,
.ion-ios7-printer,
.ion-ios7-printer-outline,
.ion-ios7-rainy,
.ion-ios7-rainy-outline,
.ion-ios7-recording,
.ion-ios7-recording-outline,
.ion-ios7-redo,
.ion-ios7-redo-outline,
.ion-ios7-refresh,
.ion-ios7-refresh-empty,
.ion-ios7-refresh-outline,
.ion-ios7-reload,
.ion-ios7-rewind,
.ion-ios7-rewind-outline,
.ion-ios7-search,
.ion-ios7-search-strong,
.ion-ios7-skipbackward,
.ion-ios7-skipbackward-outline,
.ion-ios7-skipforward,
.ion-ios7-skipforward-outline,
.ion-ios7-snowy,
.ion-ios7-speedometer,
.ion-ios7-speedometer-outline,
.ion-ios7-star,
.ion-ios7-star-outline,
.ion-ios7-stopwatch,
.ion-ios7-stopwatch-outline,
.ion-ios7-sunny,
.ion-ios7-sunny-outline,
.ion-ios7-telephone,
.ion-ios7-telephone-outline,
.ion-ios7-thunderstorm,
.ion-ios7-thunderstorm-outline,
.ion-ios7-time,
.ion-ios7-time-outline,
.ion-ios7-timer,
.ion-ios7-timer-outline,
.ion-ios7-trash,
.ion-ios7-trash-outline,
.ion-ios7-undo,
.ion-ios7-undo-outline,
.ion-ios7-unlocked,
.ion-ios7-unlocked-outline,
.ion-ios7-upload,
.ion-ios7-upload-outline,
.ion-ios7-videocam,
.ion-ios7-videocam-outline,
.ion-ios7-volume-high,
.ion-ios7-volume-low,
.ion-ios7-wineglass,
.ion-ios7-wineglass-outline,
.ion-ios7-world,
.ion-ios7-world-outline,
.ion-ipad,
.ion-iphone,
.ion-ipod,
.ion-jet,
.ion-key,
.ion-knife,
.ion-laptop,
.ion-leaf,
.ion-levels,
.ion-lightbulb,
.ion-link,
.ion-load-a,
.ion-load-b,
.ion-load-c,
.ion-load-d,
.ion-location,
.ion-locked,
.ion-log-in,
.ion-log-out,
.ion-loop,
.ion-magnet,
.ion-male,
.ion-man,
.ion-map,
.ion-medkit,
.ion-mic-a,
.ion-mic-b,
.ion-mic-c,
.ion-minus,
.ion-minus-circled,
.ion-minus-round,
.ion-model-s,
.ion-monitor,
.ion-more,
.ion-music-note,
.ion-navicon,
.ion-navicon-round,
.ion-navigate,
.ion-no-smoking,
.ion-nuclear,
.ion-paper-airplane,
.ion-paperclip,
.ion-pause,
.ion-person,
.ion-person-add,
.ion-person-stalker,
.ion-pie-graph,
.ion-pin,
.ion-pinpoint,
.ion-pizza,
.ion-plane,
.ion-play,
.ion-playstation,
.ion-plus,
.ion-plus-circled,
.ion-plus-round,
.ion-pound,
.ion-power,
.ion-pricetag,
.ion-pricetags,
.ion-printer,
.ion-radio-waves,
.ion-record,
.ion-refresh,
.ion-reply,
.ion-reply-all,
.ion-search,
.ion-settings,
.ion-share,
.ion-shuffle,
.ion-skip-backward,
.ion-skip-forward,
.ion-social-android,
.ion-social-android-outline,
.ion-social-apple,
.ion-social-apple-outline,
.ion-social-bitcoin,
.ion-social-bitcoin-outline,
.ion-social-buffer,
.ion-social-buffer-outline,
.ion-social-designernews,
.ion-social-designernews-outline,
.ion-social-dribbble,
.ion-social-dribbble-outline,
.ion-social-dropbox,
.ion-social-dropbox-outline,
.ion-social-facebook,
.ion-social-facebook-outline,
.ion-social-freebsd-devil,
.ion-social-github,
.ion-social-github-outline,
.ion-social-googleplus,
.ion-social-googleplus-outline,
.ion-social-hackernews,
.ion-social-hackernews-outline,
.ion-social-linkedin,
.ion-social-linkedin-outline,
.ion-social-pinterest,
.ion-social-pinterest-outline,
.ion-social-reddit,
.ion-social-reddit-outline,
.ion-social-rss,
.ion-social-rss-outline,
.ion-social-skype,
.ion-social-skype-outline,
.ion-social-tumblr,
.ion-social-tumblr-outline,
.ion-social-tux,
.ion-social-twitter,
.ion-social-twitter-outline,
.ion-social-vimeo,
.ion-social-vimeo-outline,
.ion-social-windows,
.ion-social-windows-outline,
.ion-social-wordpress,
.ion-social-wordpress-outline,
.ion-social-yahoo,
.ion-social-yahoo-outline,
.ion-social-youtube,
.ion-social-youtube-outline,
.ion-speakerphone,
.ion-speedometer,
.ion-spoon,
.ion-star,
.ion-stats-bars,
.ion-steam,
.ion-stop,
.ion-thermometer,
.ion-thumbsdown,
.ion-thumbsup,
.ion-trash-a,
.ion-trash-b,
.ion-umbrella,
.ion-unlocked,
.ion-upload,
.ion-usb,
.ion-videocamera,
.ion-volume-high,
.ion-volume-low,
.ion-volume-medium,
.ion-volume-mute,
.ion-waterdrop,
.ion-wifi,
.ion-wineglass,
.ion-woman,
.ion-wrench,
.ion-xbox {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* line 564, ../dev/sass/_ionicons.scss */
.ion-spin, .ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading {
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s infinite linear;
-o-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
/* line 571, ../dev/sass/_ionicons.scss */
0% {
-moz-transform: rotate(0deg);
}
/* line 574, ../dev/sass/_ionicons.scss */
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
/* line 578, ../dev/sass/_ionicons.scss */
0% {
-webkit-transform: rotate(0deg);
}
/* line 581, ../dev/sass/_ionicons.scss */
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
/* line 585, ../dev/sass/_ionicons.scss */
0% {
-o-transform: rotate(0deg);
}
/* line 588, ../dev/sass/_ionicons.scss */
100% {
-o-transform: rotate(359deg);
}
}
@-ms-keyframes spin {
/* line 592, ../dev/sass/_ionicons.scss */
0% {
-ms-transform: rotate(0deg);
}
/* line 595, ../dev/sass/_ionicons.scss */
100% {
-ms-transform: rotate(359deg);
}
}
@keyframes spin {
/* line 599, ../dev/sass/_ionicons.scss */
0% {
transform: rotate(0deg);
}
/* line 602, ../dev/sass/_ionicons.scss */
100% {
transform: rotate(359deg);
}
}
/* line 605, ../dev/sass/_ionicons.scss */
.ion-loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start);
}
/* line 610, ../dev/sass/_ionicons.scss */
.ion-alert:before {
content: "\f101";
}
/* line 613, ../dev/sass/_ionicons.scss */
.ion-alert-circled:before {
content: "\f100";
}
/* line 616, ../dev/sass/_ionicons.scss */
.ion-android-add:before {
content: "\f2c7";
}
/* line 619, ../dev/sass/_ionicons.scss */
.ion-android-add-contact:before {
content: "\f2c6";
}
/* line 622, ../dev/sass/_ionicons.scss */
.ion-android-alarm:before {
content: "\f2c8";
}
/* line 625, ../dev/sass/_ionicons.scss */
.ion-android-archive:before {
content: "\f2c9";
}
/* line 628, ../dev/sass/_ionicons.scss */
.ion-android-arrow-back:before {
content: "\f2ca";
}
/* line 631, ../dev/sass/_ionicons.scss */
.ion-android-arrow-down-left:before {
content: "\f2cb";
}
/* line 634, ../dev/sass/_ionicons.scss */
.ion-android-arrow-down-right:before {
content: "\f2cc";
}
/* line 637, ../dev/sass/_ionicons.scss */
.ion-android-arrow-up-left:before {
content: "\f2cd";
}
/* line 640, ../dev/sass/_ionicons.scss */
.ion-android-arrow-up-right:before {
content: "\f2ce";
}
/* line 643, ../dev/sass/_ionicons.scss */
.ion-android-battery:before {
content: "\f2cf";
}
/* line 646, ../dev/sass/_ionicons.scss */
.ion-android-book:before {
content: "\f2d0";
}
/* line 649, ../dev/sass/_ionicons.scss */
.ion-android-calendar:before {
content: "\f2d1";
}
/* line 652, ../dev/sass/_ionicons.scss */
.ion-android-call:before {
content: "\f2d2";
}
/* line 655, ../dev/sass/_ionicons.scss */
.ion-android-camera:before {
content: "\f2d3";
}
/* line 658, ../dev/sass/_ionicons.scss */
.ion-android-chat:before {
content: "\f2d4";
}
/* line 661, ../dev/sass/_ionicons.scss */
.ion-android-checkmark:before {
content: "\f2d5";
}
/* line 664, ../dev/sass/_ionicons.scss */
.ion-android-clock:before {
content: "\f2d6";
}
/* line 667, ../dev/sass/_ionicons.scss */
.ion-android-close:before {
content: "\f2d7";
}
/* line 670, ../dev/sass/_ionicons.scss */
.ion-android-contact:before {
content: "\f2d8";
}
/* line 673, ../dev/sass/_ionicons.scss */
.ion-android-contacts:before {
content: "\f2d9";
}
/* line 676, ../dev/sass/_ionicons.scss */
.ion-android-data:before {
content: "\f2da";
}
/* line 679, ../dev/sass/_ionicons.scss */
.ion-android-developer:before {
content: "\f2db";
}
/* line 682, ../dev/sass/_ionicons.scss */
.ion-android-display:before {
content: "\f2dc";
}
/* line 685, ../dev/sass/_ionicons.scss */
.ion-android-download:before {
content: "\f2dd";
}
/* line 688, ../dev/sass/_ionicons.scss */
.ion-android-dropdown:before {
content: "\f2de";
}
/* line 691, ../dev/sass/_ionicons.scss */
.ion-android-earth:before {
content: "\f2df";
}
/* line 694, ../dev/sass/_ionicons.scss */
.ion-android-folder:before {
content: "\f2e0";
}
/* line 697, ../dev/sass/_ionicons.scss */
.ion-android-forums:before {
content: "\f2e1";
}
/* line 700, ../dev/sass/_ionicons.scss */
.ion-android-friends:before {
content: "\f2e2";
}
/* line 703, ../dev/sass/_ionicons.scss */
.ion-android-hand:before {
content: "\f2e3";
}
/* line 706, ../dev/sass/_ionicons.scss */
.ion-android-image:before {
content: "\f2e4";
}
/* line 709, ../dev/sass/_ionicons.scss */
.ion-android-inbox:before {
content: "\f2e5";
}
/* line 712, ../dev/sass/_ionicons.scss */
.ion-android-information:before {
content: "\f2e6";
}
/* line 715, ../dev/sass/_ionicons.scss */
.ion-android-keypad:before {
content: "\f2e7";
}
/* line 718, ../dev/sass/_ionicons.scss */
.ion-android-lightbulb:before {
content: "\f2e8";
}
/* line 721, ../dev/sass/_ionicons.scss */
.ion-android-locate:before {
content: "\f2e9";
}
/* line 724, ../dev/sass/_ionicons.scss */
.ion-android-location:before {
content: "\f2ea";
}
/* line 727, ../dev/sass/_ionicons.scss */
.ion-android-mail:before {
content: "\f2eb";
}
/* line 730, ../dev/sass/_ionicons.scss */
.ion-android-microphone:before {
content: "\f2ec";
}
/* line 733, ../dev/sass/_ionicons.scss */
.ion-android-mixer:before {
content: "\f2ed";
}
/* line 736, ../dev/sass/_ionicons.scss */
.ion-android-more:before {
content: "\f2ee";
}
/* line 739, ../dev/sass/_ionicons.scss */
.ion-android-note:before {
content: "\f2ef";
}
/* line 742, ../dev/sass/_ionicons.scss */
.ion-android-playstore:before {
content: "\f2f0";
}
/* line 745, ../dev/sass/_ionicons.scss */
.ion-android-printer:before {
content: "\f2f1";
}
/* line 748, ../dev/sass/_ionicons.scss */
.ion-android-promotion:before {
content: "\f2f2";
}
/* line 751, ../dev/sass/_ionicons.scss */
.ion-android-reminder:before {
content: "\f2f3";
}
/* line 754, ../dev/sass/_ionicons.scss */
.ion-android-remove:before {
content: "\f2f4";
}
/* line 757, ../dev/sass/_ionicons.scss */
.ion-android-search:before {
content: "\f2f5";
}
/* line 760, ../dev/sass/_ionicons.scss */
.ion-android-send:before {
content: "\f2f6";
}
/* line 763, ../dev/sass/_ionicons.scss */
.ion-android-settings:before {
content: "\f2f7";
}
/* line 766, ../dev/sass/_ionicons.scss */
.ion-android-share:before {
content: "\f2f8";
}
/* line 769, ../dev/sass/_ionicons.scss */
.ion-android-social:before {
content: "\f2fa";
}
/* line 772, ../dev/sass/_ionicons.scss */
.ion-android-social-user:before {
content: "\f2f9";
}
/* line 775, ../dev/sass/_ionicons.scss */
.ion-android-sort:before {
content: "\f2fb";
}
/* line 778, ../dev/sass/_ionicons.scss */
.ion-android-star:before {
content: "\f2fc";
}
/* line 781, ../dev/sass/_ionicons.scss */
.ion-android-stopwatch:before {
content: "\f2fd";
}
/* line 784, ../dev/sass/_ionicons.scss */
.ion-android-storage:before {
content: "\f2fe";
}
/* line 787, ../dev/sass/_ionicons.scss */
.ion-android-system-back:before {
content: "\f2ff";
}
/* line 790, ../dev/sass/_ionicons.scss */
.ion-android-system-home:before {
content: "\f300";
}
/* line 793, ../dev/sass/_ionicons.scss */
.ion-android-system-windows:before {
content: "\f301";
}
/* line 796, ../dev/sass/_ionicons.scss */
.ion-android-timer:before {
content: "\f302";
}
/* line 799, ../dev/sass/_ionicons.scss */
.ion-android-trash:before {
content: "\f303";
}
/* line 802, ../dev/sass/_ionicons.scss */
.ion-android-volume:before {
content: "\f304";
}
/* line 805, ../dev/sass/_ionicons.scss */
.ion-android-wifi:before {
content: "\f305";
}
/* line 808, ../dev/sass/_ionicons.scss */
.ion-archive:before {
content: "\f102";
}
/* line 811, ../dev/sass/_ionicons.scss */
.ion-arrow-down-a:before {
content: "\f103";
}
/* line 814, ../dev/sass/_ionicons.scss */
.ion-arrow-down-b:before {
content: "\f104";
}
/* line 817, ../dev/sass/_ionicons.scss */
.ion-arrow-down-c:before {
content: "\f105";
}
/* line 820, ../dev/sass/_ionicons.scss */
.ion-arrow-expand:before {
content: "\f25e";
}
/* line 823, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-down-left:before {
content: "\f25f";
}
/* line 826, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-down-right:before {
content: "\f260";
}
/* line 829, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-up-left:before {
content: "\f261";
}
/* line 832, ../dev/sass/_ionicons.scss */
.ion-arrow-graph-up-right:before {
content: "\f262";
}
/* line 835, ../dev/sass/_ionicons.scss */
.ion-arrow-left-a:before {
content: "\f106";
}
/* line 838, ../dev/sass/_ionicons.scss */
.ion-arrow-left-b:before {
content: "\f107";
}
/* line 841, ../dev/sass/_ionicons.scss */
.ion-arrow-left-c:before {
content: "\f108";
}
/* line 844, ../dev/sass/_ionicons.scss */
.ion-arrow-move:before {
content: "\f263";
}
/* line 847, ../dev/sass/_ionicons.scss */
.ion-arrow-resize:before {
content: "\f264";
}
/* line 850, ../dev/sass/_ionicons.scss */
.ion-arrow-return-left:before {
content: "\f265";
}
/* line 853, ../dev/sass/_ionicons.scss */
.ion-arrow-return-right:before {
content: "\f266";
}
/* line 856, ../dev/sass/_ionicons.scss */
.ion-arrow-right-a:before {
content: "\f109";
}
/* line 859, ../dev/sass/_ionicons.scss */
.ion-arrow-right-b:before {
content: "\f10a";
}
/* line 862, ../dev/sass/_ionicons.scss */
.ion-arrow-right-c:before {
content: "\f10b";
}
/* line 865, ../dev/sass/_ionicons.scss */
.ion-arrow-shrink:before {
content: "\f267";
}
/* line 868, ../dev/sass/_ionicons.scss */
.ion-arrow-swap:before {
content: "\f268";
}
/* line 871, ../dev/sass/_ionicons.scss */
.ion-arrow-up-a:before {
content: "\f10c";
}
/* line 874, ../dev/sass/_ionicons.scss */
.ion-arrow-up-b:before {
content: "\f10d";
}
/* line 877, ../dev/sass/_ionicons.scss */
.ion-arrow-up-c:before {
content: "\f10e";
}
/* line 880, ../dev/sass/_ionicons.scss */
.ion-at:before {
content: "\f10f";
}
/* line 883, ../dev/sass/_ionicons.scss */
.ion-bag:before {
content: "\f110";
}
/* line 886, ../dev/sass/_ionicons.scss */
.ion-battery-charging:before {
content: "\f111";
}
/* line 889, ../dev/sass/_ionicons.scss */
.ion-battery-empty:before {
content: "\f112";
}
/* line 892, ../dev/sass/_ionicons.scss */
.ion-battery-full:before {
content: "\f113";
}
/* line 895, ../dev/sass/_ionicons.scss */
.ion-battery-half:before {
content: "\f114";
}
/* line 898, ../dev/sass/_ionicons.scss */
.ion-battery-low:before {
content: "\f115";
}
/* line 901, ../dev/sass/_ionicons.scss */
.ion-beaker:before {
content: "\f269";
}
/* line 904, ../dev/sass/_ionicons.scss */
.ion-beer:before {
content: "\f26a";
}
/* line 907, ../dev/sass/_ionicons.scss */
.ion-bluetooth:before {
content: "\f116";
}
/* line 910, ../dev/sass/_ionicons.scss */
.ion-bookmark:before {
content: "\f26b";
}
/* line 913, ../dev/sass/_ionicons.scss */
.ion-briefcase:before {
content: "\f26c";
}
/* line 916, ../dev/sass/_ionicons.scss */
.ion-bug:before {
content: "\f2be";
}
/* line 919, ../dev/sass/_ionicons.scss */
.ion-calculator:before {
content: "\f26d";
}
/* line 922, ../dev/sass/_ionicons.scss */
.ion-calendar:before {
content: "\f117";
}
/* line 925, ../dev/sass/_ionicons.scss */
.ion-camera:before {
content: "\f118";
}
/* line 928, ../dev/sass/_ionicons.scss */
.ion-card:before {
content: "\f119";
}
/* line 931, ../dev/sass/_ionicons.scss */
.ion-chatbox:before {
content: "\f11b";
}
/* line 934, ../dev/sass/_ionicons.scss */
.ion-chatbox-working:before {
content: "\f11a";
}
/* line 937, ../dev/sass/_ionicons.scss */
.ion-chatboxes:before {
content: "\f11c";
}
/* line 940, ../dev/sass/_ionicons.scss */
.ion-chatbubble:before {
content: "\f11e";
}
/* line 943, ../dev/sass/_ionicons.scss */
.ion-chatbubble-working:before {
content: "\f11d";
}
/* line 946, ../dev/sass/_ionicons.scss */
.ion-chatbubbles:before {
content: "\f11f";
}
/* line 949, ../dev/sass/_ionicons.scss */
.ion-checkmark:before {
content: "\f122";
}
/* line 952, ../dev/sass/_ionicons.scss */
.ion-checkmark-circled:before {
content: "\f120";
}
/* line 955, ../dev/sass/_ionicons.scss */
.ion-checkmark-round:before {
content: "\f121";
}
/* line 958, ../dev/sass/_ionicons.scss */
.ion-chevron-down:before {
content: "\f123";
}
/* line 961, ../dev/sass/_ionicons.scss */
.ion-chevron-left:before {
content: "\f124";
}
/* line 964, ../dev/sass/_ionicons.scss */
.ion-chevron-right:before {
content: "\f125";
}
/* line 967, ../dev/sass/_ionicons.scss */
.ion-chevron-up:before {
content: "\f126";
}
/* line 970, ../dev/sass/_ionicons.scss */
.ion-clipboard:before {
content: "\f127";
}
/* line 973, ../dev/sass/_ionicons.scss */
.ion-clock:before {
content: "\f26e";
}
/* line 976, ../dev/sass/_ionicons.scss */
.ion-close:before {
content: "\f12a";
}
/* line 979, ../dev/sass/_ionicons.scss */
.ion-close-circled:before {
content: "\f128";
}
/* line 982, ../dev/sass/_ionicons.scss */
.ion-close-round:before {
content: "\f129";
}
/* line 985, ../dev/sass/_ionicons.scss */
.ion-cloud:before {
content: "\f12b";
}
/* line 988, ../dev/sass/_ionicons.scss */
.ion-code:before {
content: "\f271";
}
/* line 991, ../dev/sass/_ionicons.scss */
.ion-code-download:before {
content: "\f26f";
}
/* line 994, ../dev/sass/_ionicons.scss */
.ion-code-working:before {
content: "\f270";
}
/* line 997, ../dev/sass/_ionicons.scss */
.ion-coffee:before {
content: "\f272";
}
/* line 1000, ../dev/sass/_ionicons.scss */
.ion-compass:before {
content: "\f273";
}
/* line 1003, ../dev/sass/_ionicons.scss */
.ion-compose:before {
content: "\f12c";
}
/* line 1006, ../dev/sass/_ionicons.scss */
.ion-connection-bars:before {
content: "\f274";
}
/* line 1009, ../dev/sass/_ionicons.scss */
.ion-contrast:before {
content: "\f275";
}
/* line 1012, ../dev/sass/_ionicons.scss */
.ion-disc:before {
content: "\f12d";
}
/* line 1015, ../dev/sass/_ionicons.scss */
.ion-document:before {
content: "\f12f";
}
/* line 1018, ../dev/sass/_ionicons.scss */
.ion-document-text:before {
content: "\f12e";
}
/* line 1021, ../dev/sass/_ionicons.scss */
.ion-drag:before {
content: "\f130";
}
/* line 1024, ../dev/sass/_ionicons.scss */
.ion-earth:before {
content: "\f276";
}
/* line 1027, ../dev/sass/_ionicons.scss */
.ion-edit:before {
content: "\f2bf";
}
/* line 1030, ../dev/sass/_ionicons.scss */
.ion-egg:before {
content: "\f277";
}
/* line 1033, ../dev/sass/_ionicons.scss */
.ion-eject:before {
content: "\f131";
}
/* line 1036, ../dev/sass/_ionicons.scss */
.ion-email:before {
content: "\f132";
}
/* line 1039, ../dev/sass/_ionicons.scss */
.ion-eye:before {
content: "\f133";
}
/* line 1042, ../dev/sass/_ionicons.scss */
.ion-eye-disabled:before {
content: "\f306";
}
/* line 1045, ../dev/sass/_ionicons.scss */
.ion-female:before {
content: "\f278";
}
/* line 1048, ../dev/sass/_ionicons.scss */
.ion-filing:before {
content: "\f134";
}
/* line 1051, ../dev/sass/_ionicons.scss */
.ion-film-marker:before {
content: "\f135";
}
/* line 1054, ../dev/sass/_ionicons.scss */
.ion-flag:before {
content: "\f279";
}
/* line 1057, ../dev/sass/_ionicons.scss */
.ion-flash:before {
content: "\f137";
}
/* line 1060, ../dev/sass/_ionicons.scss */
.ion-flash-off:before {
content: "\f136";
}
/* line 1063, ../dev/sass/_ionicons.scss */
.ion-flask:before {
content: "\f138";
}
/* line 1066, ../dev/sass/_ionicons.scss */
.ion-folder:before {
content: "\f139";
}
/* line 1069, ../dev/sass/_ionicons.scss */
.ion-fork:before {
content: "\f27a";
}
/* line 1072, ../dev/sass/_ionicons.scss */
.ion-fork-repo:before {
content: "\f2c0";
}
/* line 1075, ../dev/sass/_ionicons.scss */
.ion-forward:before {
content: "\f13a";
}
/* line 1078, ../dev/sass/_ionicons.scss */
.ion-game-controller-a:before {
content: "\f13b";
}
/* line 1081, ../dev/sass/_ionicons.scss */
.ion-game-controller-b:before {
content: "\f13c";
}
/* line 1084, ../dev/sass/_ionicons.scss */
.ion-gear-a:before {
content: "\f13d";
}
/* line 1087, ../dev/sass/_ionicons.scss */
.ion-gear-b:before {
content: "\f13e";
}
/* line 1090, ../dev/sass/_ionicons.scss */
.ion-grid:before {
content: "\f13f";
}
/* line 1093, ../dev/sass/_ionicons.scss */
.ion-hammer:before {
content: "\f27b";
}
/* line 1096, ../dev/sass/_ionicons.scss */
.ion-headphone:before {
content: "\f140";
}
/* line 1099, ../dev/sass/_ionicons.scss */
.ion-heart:before {
content: "\f141";
}
/* line 1102, ../dev/sass/_ionicons.scss */
.ion-help:before {
content: "\f143";
}
/* line 1105, ../dev/sass/_ionicons.scss */
.ion-help-buoy:before {
content: "\f27c";
}
/* line 1108, ../dev/sass/_ionicons.scss */
.ion-help-circled:before {
content: "\f142";
}
/* line 1111, ../dev/sass/_ionicons.scss */
.ion-home:before {
content: "\f144";
}
/* line 1114, ../dev/sass/_ionicons.scss */
.ion-icecream:before {
content: "\f27d";
}
/* line 1117, ../dev/sass/_ionicons.scss */
.ion-icon-social-google-plus:before {
content: "\f146";
}
/* line 1120, ../dev/sass/_ionicons.scss */
.ion-icon-social-google-plus-outline:before {
content: "\f145";
}
/* line 1123, ../dev/sass/_ionicons.scss */
.ion-image:before {
content: "\f147";
}
/* line 1126, ../dev/sass/_ionicons.scss */
.ion-images:before {
content: "\f148";
}
/* line 1129, ../dev/sass/_ionicons.scss */
.ion-information:before {
content: "\f14a";
}
/* line 1132, ../dev/sass/_ionicons.scss */
.ion-information-circled:before {
content: "\f149";
}
/* line 1135, ../dev/sass/_ionicons.scss */
.ion-ionic:before {
content: "\f14b";
}
/* line 1138, ../dev/sass/_ionicons.scss */
.ion-ios7-alarm:before {
content: "\f14d";
}
/* line 1141, ../dev/sass/_ionicons.scss */
.ion-ios7-alarm-outline:before {
content: "\f14c";
}
/* line 1144, ../dev/sass/_ionicons.scss */
.ion-ios7-albums:before {
content: "\f14f";
}
/* line 1147, ../dev/sass/_ionicons.scss */
.ion-ios7-albums-outline:before {
content: "\f14e";
}
/* line 1150, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-back:before {
content: "\f150";
}
/* line 1153, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-down:before {
content: "\f151";
}
/* line 1156, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-forward:before {
content: "\f152";
}
/* line 1159, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-left:before {
content: "\f153";
}
/* line 1162, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-right:before {
content: "\f154";
}
/* line 1165, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-down:before {
content: "\f27e";
}
/* line 1168, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-left:before {
content: "\f27f";
}
/* line 1171, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-right:before {
content: "\f280";
}
/* line 1174, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-thin-up:before {
content: "\f281";
}
/* line 1177, ../dev/sass/_ionicons.scss */
.ion-ios7-arrow-up:before {
content: "\f155";
}
/* line 1180, ../dev/sass/_ionicons.scss */
.ion-ios7-at:before {
content: "\f157";
}
/* line 1183, ../dev/sass/_ionicons.scss */
.ion-ios7-at-outline:before {
content: "\f156";
}
/* line 1186, ../dev/sass/_ionicons.scss */
.ion-ios7-bell:before {
content: "\f159";
}
/* line 1189, ../dev/sass/_ionicons.scss */
.ion-ios7-bell-outline:before {
content: "\f158";
}
/* line 1192, ../dev/sass/_ionicons.scss */
.ion-ios7-bolt:before {
content: "\f15b";
}
/* line 1195, ../dev/sass/_ionicons.scss */
.ion-ios7-bolt-outline:before {
content: "\f15a";
}
/* line 1198, ../dev/sass/_ionicons.scss */
.ion-ios7-bookmarks:before {
content: "\f15d";
}
/* line 1201, ../dev/sass/_ionicons.scss */
.ion-ios7-bookmarks-outline:before {
content: "\f15c";
}
/* line 1204, ../dev/sass/_ionicons.scss */
.ion-ios7-box:before {
content: "\f15f";
}
/* line 1207, ../dev/sass/_ionicons.scss */
.ion-ios7-box-outline:before {
content: "\f15e";
}
/* line 1210, ../dev/sass/_ionicons.scss */
.ion-ios7-briefcase:before {
content: "\f283";
}
/* line 1213, ../dev/sass/_ionicons.scss */
.ion-ios7-briefcase-outline:before {
content: "\f282";
}
/* line 1216, ../dev/sass/_ionicons.scss */
.ion-ios7-browsers:before {
content: "\f161";
}
/* line 1219, ../dev/sass/_ionicons.scss */
.ion-ios7-browsers-outline:before {
content: "\f160";
}
/* line 1222, ../dev/sass/_ionicons.scss */
.ion-ios7-calculator:before {
content: "\f285";
}
/* line 1225, ../dev/sass/_ionicons.scss */
.ion-ios7-calculator-outline:before {
content: "\f284";
}
/* line 1228, ../dev/sass/_ionicons.scss */
.ion-ios7-calendar:before {
content: "\f163";
}
/* line 1231, ../dev/sass/_ionicons.scss */
.ion-ios7-calendar-outline:before {
content: "\f162";
}
/* line 1234, ../dev/sass/_ionicons.scss */
.ion-ios7-camera:before {
content: "\f165";
}
/* line 1237, ../dev/sass/_ionicons.scss */
.ion-ios7-camera-outline:before {
content: "\f164";
}
/* line 1240, ../dev/sass/_ionicons.scss */
.ion-ios7-cart:before {
content: "\f167";
}
/* line 1243, ../dev/sass/_ionicons.scss */
.ion-ios7-cart-outline:before {
content: "\f166";
}
/* line 1246, ../dev/sass/_ionicons.scss */
.ion-ios7-chatboxes:before {
content: "\f169";
}
/* line 1249, ../dev/sass/_ionicons.scss */
.ion-ios7-chatboxes-outline:before {
content: "\f168";
}
/* line 1252, ../dev/sass/_ionicons.scss */
.ion-ios7-chatbubble:before {
content: "\f16b";
}
/* line 1255, ../dev/sass/_ionicons.scss */
.ion-ios7-chatbubble-outline:before {
content: "\f16a";
}
/* line 1258, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark:before {
content: "\f16e";
}
/* line 1261, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark-empty:before {
content: "\f16c";
}
/* line 1264, ../dev/sass/_ionicons.scss */
.ion-ios7-checkmark-outline:before {
content: "\f16d";
}
/* line 1267, ../dev/sass/_ionicons.scss */
.ion-ios7-circle-filled:before {
content: "\f16f";
}
/* line 1270, ../dev/sass/_ionicons.scss */
.ion-ios7-circle-outline:before {
content: "\f170";
}
/* line 1273, ../dev/sass/_ionicons.scss */
.ion-ios7-clock:before {
content: "\f172";
}
/* line 1276, ../dev/sass/_ionicons.scss */
.ion-ios7-clock-outline:before {
content: "\f171";
}
/* line 1279, ../dev/sass/_ionicons.scss */
.ion-ios7-close:before {
content: "\f2bc";
}
/* line 1282, ../dev/sass/_ionicons.scss */
.ion-ios7-close-empty:before {
content: "\f2bd";
}
/* line 1285, ../dev/sass/_ionicons.scss */
.ion-ios7-close-outline:before {
content: "\f2bb";
}
/* line 1288, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud:before {
content: "\f178";
}
/* line 1291, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-download:before {
content: "\f174";
}
/* line 1294, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-download-outline:before {
content: "\f173";
}
/* line 1297, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-outline:before {
content: "\f175";
}
/* line 1300, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-upload:before {
content: "\f177";
}
/* line 1303, ../dev/sass/_ionicons.scss */
.ion-ios7-cloud-upload-outline:before {
content: "\f176";
}
/* line 1306, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy:before {
content: "\f17a";
}
/* line 1309, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-night:before {
content: "\f308";
}
/* line 1312, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-night-outline:before {
content: "\f307";
}
/* line 1315, ../dev/sass/_ionicons.scss */
.ion-ios7-cloudy-outline:before {
content: "\f179";
}
/* line 1318, ../dev/sass/_ionicons.scss */
.ion-ios7-cog:before {
content: "\f17c";
}
/* line 1321, ../dev/sass/_ionicons.scss */
.ion-ios7-cog-outline:before {
content: "\f17b";
}
/* line 1324, ../dev/sass/_ionicons.scss */
.ion-ios7-compose:before {
content: "\f17e";
}
/* line 1327, ../dev/sass/_ionicons.scss */
.ion-ios7-compose-outline:before {
content: "\f17d";
}
/* line 1330, ../dev/sass/_ionicons.scss */
.ion-ios7-contact:before {
content: "\f180";
}
/* line 1333, ../dev/sass/_ionicons.scss */
.ion-ios7-contact-outline:before {
content: "\f17f";
}
/* line 1336, ../dev/sass/_ionicons.scss */
.ion-ios7-copy:before {
content: "\f182";
}
/* line 1339, ../dev/sass/_ionicons.scss */
.ion-ios7-copy-outline:before {
content: "\f181";
}
/* line 1342, ../dev/sass/_ionicons.scss */
.ion-ios7-download:before {
content: "\f184";
}
/* line 1345, ../dev/sass/_ionicons.scss */
.ion-ios7-download-outline:before {
content: "\f183";
}
/* line 1348, ../dev/sass/_ionicons.scss */
.ion-ios7-drag:before {
content: "\f185";
}
/* line 1351, ../dev/sass/_ionicons.scss */
.ion-ios7-email:before {
content: "\f187";
}
/* line 1354, ../dev/sass/_ionicons.scss */
.ion-ios7-email-outline:before {
content: "\f186";
}
/* line 1357, ../dev/sass/_ionicons.scss */
.ion-ios7-eye:before {
content: "\f189";
}
/* line 1360, ../dev/sass/_ionicons.scss */
.ion-ios7-eye-outline:before {
content: "\f188";
}
/* line 1363, ../dev/sass/_ionicons.scss */
.ion-ios7-fastforward:before {
content: "\f18b";
}
/* line 1366, ../dev/sass/_ionicons.scss */
.ion-ios7-fastforward-outline:before {
content: "\f18a";
}
/* line 1369, ../dev/sass/_ionicons.scss */
.ion-ios7-filing:before {
content: "\f18d";
}
/* line 1372, ../dev/sass/_ionicons.scss */
.ion-ios7-filing-outline:before {
content: "\f18c";
}
/* line 1375, ../dev/sass/_ionicons.scss */
.ion-ios7-film:before {
content: "\f18f";
}
/* line 1378, ../dev/sass/_ionicons.scss */
.ion-ios7-film-outline:before {
content: "\f18e";
}
/* line 1381, ../dev/sass/_ionicons.scss */
.ion-ios7-flag:before {
content: "\f191";
}
/* line 1384, ../dev/sass/_ionicons.scss */
.ion-ios7-flag-outline:before {
content: "\f190";
}
/* line 1387, ../dev/sass/_ionicons.scss */
.ion-ios7-folder:before {
content: "\f193";
}
/* line 1390, ../dev/sass/_ionicons.scss */
.ion-ios7-folder-outline:before {
content: "\f192";
}
/* line 1393, ../dev/sass/_ionicons.scss */
.ion-ios7-gear:before {
content: "\f195";
}
/* line 1396, ../dev/sass/_ionicons.scss */
.ion-ios7-gear-outline:before {
content: "\f194";
}
/* line 1399, ../dev/sass/_ionicons.scss */
.ion-ios7-glasses:before {
content: "\f197";
}
/* line 1402, ../dev/sass/_ionicons.scss */
.ion-ios7-glasses-outline:before {
content: "\f196";
}
/* line 1405, ../dev/sass/_ionicons.scss */
.ion-ios7-heart:before {
content: "\f199";
}
/* line 1408, ../dev/sass/_ionicons.scss */
.ion-ios7-heart-outline:before {
content: "\f198";
}
/* line 1411, ../dev/sass/_ionicons.scss */
.ion-ios7-help:before {
content: "\f19c";
}
/* line 1414, ../dev/sass/_ionicons.scss */
.ion-ios7-help-empty:before {
content: "\f19a";
}
/* line 1417, ../dev/sass/_ionicons.scss */
.ion-ios7-help-outline:before {
content: "\f19b";
}
/* line 1420, ../dev/sass/_ionicons.scss */
.ion-ios7-infinite:before {
content: "\f19e";
}
/* line 1423, ../dev/sass/_ionicons.scss */
.ion-ios7-infinite-outline:before {
content: "\f19d";
}
/* line 1426, ../dev/sass/_ionicons.scss */
.ion-ios7-information:before {
content: "\f1a1";
}
/* line 1429, ../dev/sass/_ionicons.scss */
.ion-ios7-information-empty:before {
content: "\f19f";
}
/* line 1432, ../dev/sass/_ionicons.scss */
.ion-ios7-information-outline:before {
content: "\f1a0";
}
/* line 1435, ../dev/sass/_ionicons.scss */
.ion-ios7-ionic-outline:before {
content: "\f1a2";
}
/* line 1438, ../dev/sass/_ionicons.scss */
.ion-ios7-keypad:before {
content: "\f1a4";
}
/* line 1441, ../dev/sass/_ionicons.scss */
.ion-ios7-keypad-outline:before {
content: "\f1a3";
}
/* line 1444, ../dev/sass/_ionicons.scss */
.ion-ios7-lightbulb:before {
content: "\f287";
}
/* line 1447, ../dev/sass/_ionicons.scss */
.ion-ios7-lightbulb-outline:before {
content: "\f286";
}
/* line 1450, ../dev/sass/_ionicons.scss */
.ion-ios7-location:before {
content: "\f1a6";
}
/* line 1453, ../dev/sass/_ionicons.scss */
.ion-ios7-location-outline:before {
content: "\f1a5";
}
/* line 1456, ../dev/sass/_ionicons.scss */
.ion-ios7-locked:before {
content: "\f1a8";
}
/* line 1459, ../dev/sass/_ionicons.scss */
.ion-ios7-locked-outline:before {
content: "\f1a7";
}
/* line 1462, ../dev/sass/_ionicons.scss */
.ion-ios7-medkit:before {
content: "\f289";
}
/* line 1465, ../dev/sass/_ionicons.scss */
.ion-ios7-medkit-outline:before {
content: "\f288";
}
/* line 1468, ../dev/sass/_ionicons.scss */
.ion-ios7-mic:before {
content: "\f1ab";
}
/* line 1471, ../dev/sass/_ionicons.scss */
.ion-ios7-mic-off:before {
content: "\f1a9";
}
/* line 1474, ../dev/sass/_ionicons.scss */
.ion-ios7-mic-outline:before {
content: "\f1aa";
}
/* line 1477, ../dev/sass/_ionicons.scss */
.ion-ios7-minus:before {
content: "\f1ae";
}
/* line 1480, ../dev/sass/_ionicons.scss */
.ion-ios7-minus-empty:before {
content: "\f1ac";
}
/* line 1483, ../dev/sass/_ionicons.scss */
.ion-ios7-minus-outline:before {
content: "\f1ad";
}
/* line 1486, ../dev/sass/_ionicons.scss */
.ion-ios7-monitor:before {
content: "\f1b0";
}
/* line 1489, ../dev/sass/_ionicons.scss */
.ion-ios7-monitor-outline:before {
content: "\f1af";
}
/* line 1492, ../dev/sass/_ionicons.scss */
.ion-ios7-moon:before {
content: "\f1b2";
}
/* line 1495, ../dev/sass/_ionicons.scss */
.ion-ios7-moon-outline:before {
content: "\f1b1";
}
/* line 1498, ../dev/sass/_ionicons.scss */
.ion-ios7-more:before {
content: "\f1b4";
}
/* line 1501, ../dev/sass/_ionicons.scss */
.ion-ios7-more-outline:before {
content: "\f1b3";
}
/* line 1504, ../dev/sass/_ionicons.scss */
.ion-ios7-musical-note:before {
content: "\f1b5";
}
/* line 1507, ../dev/sass/_ionicons.scss */
.ion-ios7-musical-notes:before {
content: "\f1b6";
}
/* line 1510, ../dev/sass/_ionicons.scss */
.ion-ios7-navigate:before {
content: "\f1b8";
}
/* line 1513, ../dev/sass/_ionicons.scss */
.ion-ios7-navigate-outline:before {
content: "\f1b7";
}
/* line 1516, ../dev/sass/_ionicons.scss */
.ion-ios7-paperplane:before {
content: "\f1ba";
}
/* line 1519, ../dev/sass/_ionicons.scss */
.ion-ios7-paperplane-outline:before {
content: "\f1b9";
}
/* line 1522, ../dev/sass/_ionicons.scss */
.ion-ios7-partlysunny:before {
content: "\f1bc";
}
/* line 1525, ../dev/sass/_ionicons.scss */
.ion-ios7-partlysunny-outline:before {
content: "\f1bb";
}
/* line 1528, ../dev/sass/_ionicons.scss */
.ion-ios7-pause:before {
content: "\f1be";
}
/* line 1531, ../dev/sass/_ionicons.scss */
.ion-ios7-pause-outline:before {
content: "\f1bd";
}
/* line 1534, ../dev/sass/_ionicons.scss */
.ion-ios7-people:before {
content: "\f1c0";
}
/* line 1537, ../dev/sass/_ionicons.scss */
.ion-ios7-people-outline:before {
content: "\f1bf";
}
/* line 1540, ../dev/sass/_ionicons.scss */
.ion-ios7-person:before {
content: "\f1c2";
}
/* line 1543, ../dev/sass/_ionicons.scss */
.ion-ios7-person-outline:before {
content: "\f1c1";
}
/* line 1546, ../dev/sass/_ionicons.scss */
.ion-ios7-personadd:before {
content: "\f1c4";
}
/* line 1549, ../dev/sass/_ionicons.scss */
.ion-ios7-personadd-outline:before {
content: "\f1c3";
}
/* line 1552, ../dev/sass/_ionicons.scss */
.ion-ios7-photos:before {
content: "\f1c6";
}
/* line 1555, ../dev/sass/_ionicons.scss */
.ion-ios7-photos-outline:before {
content: "\f1c5";
}
/* line 1558, ../dev/sass/_ionicons.scss */
.ion-ios7-pie:before {
content: "\f28b";
}
/* line 1561, ../dev/sass/_ionicons.scss */
.ion-ios7-pie-outline:before {
content: "\f28a";
}
/* line 1564, ../dev/sass/_ionicons.scss */
.ion-ios7-play:before {
content: "\f1c8";
}
/* line 1567, ../dev/sass/_ionicons.scss */
.ion-ios7-play-outline:before {
content: "\f1c7";
}
/* line 1570, ../dev/sass/_ionicons.scss */
.ion-ios7-plus:before {
content: "\f1cb";
}
/* line 1573, ../dev/sass/_ionicons.scss */
.ion-ios7-plus-empty:before {
content: "\f1c9";
}
/* line 1576, ../dev/sass/_ionicons.scss */
.ion-ios7-plus-outline:before {
content: "\f1ca";
}
/* line 1579, ../dev/sass/_ionicons.scss */
.ion-ios7-pricetag:before {
content: "\f28d";
}
/* line 1582, ../dev/sass/_ionicons.scss */
.ion-ios7-pricetag-outline:before {
content: "\f28c";
}
/* line 1585, ../dev/sass/_ionicons.scss */
.ion-ios7-printer:before {
content: "\f1cd";
}
/* line 1588, ../dev/sass/_ionicons.scss */
.ion-ios7-printer-outline:before {
content: "\f1cc";
}
/* line 1591, ../dev/sass/_ionicons.scss */
.ion-ios7-rainy:before {
content: "\f1cf";
}
/* line 1594, ../dev/sass/_ionicons.scss */
.ion-ios7-rainy-outline:before {
content: "\f1ce";
}
/* line 1597, ../dev/sass/_ionicons.scss */
.ion-ios7-recording:before {
content: "\f1d1";
}
/* line 1600, ../dev/sass/_ionicons.scss */
.ion-ios7-recording-outline:before {
content: "\f1d0";
}
/* line 1603, ../dev/sass/_ionicons.scss */
.ion-ios7-redo:before {
content: "\f1d3";
}
/* line 1606, ../dev/sass/_ionicons.scss */
.ion-ios7-redo-outline:before {
content: "\f1d2";
}
/* line 1609, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh:before {
content: "\f1d6";
}
/* line 1612, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh-empty:before {
content: "\f1d4";
}
/* line 1615, ../dev/sass/_ionicons.scss */
.ion-ios7-refresh-outline:before {
content: "\f1d5";
}
/* line 1618, ../dev/sass/_ionicons.scss */
.ion-ios7-reload:before, .ion-ios7-reloading:before {
content: "\f28e";
}
/* line 1621, ../dev/sass/_ionicons.scss */
.ion-ios7-rewind:before {
content: "\f1d8";
}
/* line 1624, ../dev/sass/_ionicons.scss */
.ion-ios7-rewind-outline:before {
content: "\f1d7";
}
/* line 1627, ../dev/sass/_ionicons.scss */
.ion-ios7-search:before {
content: "\f1da";
}
/* line 1630, ../dev/sass/_ionicons.scss */
.ion-ios7-search-strong:before {
content: "\f1d9";
}
/* line 1633, ../dev/sass/_ionicons.scss */
.ion-ios7-skipbackward:before {
content: "\f1dc";
}
/* line 1636, ../dev/sass/_ionicons.scss */
.ion-ios7-skipbackward-outline:before {
content: "\f1db";
}
/* line 1639, ../dev/sass/_ionicons.scss */
.ion-ios7-skipforward:before {
content: "\f1de";
}
/* line 1642, ../dev/sass/_ionicons.scss */
.ion-ios7-skipforward-outline:before {
content: "\f1dd";
}
/* line 1645, ../dev/sass/_ionicons.scss */
.ion-ios7-snowy:before {
content: "\f309";
}
/* line 1648, ../dev/sass/_ionicons.scss */
.ion-ios7-speedometer:before {
content: "\f290";
}
/* line 1651, ../dev/sass/_ionicons.scss */
.ion-ios7-speedometer-outline:before {
content: "\f28f";
}
/* line 1654, ../dev/sass/_ionicons.scss */
.ion-ios7-star:before {
content: "\f1e0";
}
/* line 1657, ../dev/sass/_ionicons.scss */
.ion-ios7-star-outline:before {
content: "\f1df";
}
/* line 1660, ../dev/sass/_ionicons.scss */
.ion-ios7-stopwatch:before {
content: "\f1e2";
}
/* line 1663, ../dev/sass/_ionicons.scss */
.ion-ios7-stopwatch-outline:before {
content: "\f1e1";
}
/* line 1666, ../dev/sass/_ionicons.scss */
.ion-ios7-sunny:before {
content: "\f1e4";
}
/* line 1669, ../dev/sass/_ionicons.scss */
.ion-ios7-sunny-outline:before {
content: "\f1e3";
}
/* line 1672, ../dev/sass/_ionicons.scss */
.ion-ios7-telephone:before {
content: "\f1e6";
}
/* line 1675, ../dev/sass/_ionicons.scss */
.ion-ios7-telephone-outline:before {
content: "\f1e5";
}
/* line 1678, ../dev/sass/_ionicons.scss */
.ion-ios7-thunderstorm:before {
content: "\f1e8";
}
/* line 1681, ../dev/sass/_ionicons.scss */
.ion-ios7-thunderstorm-outline:before {
content: "\f1e7";
}
/* line 1684, ../dev/sass/_ionicons.scss */
.ion-ios7-time:before {
content: "\f292";
}
/* line 1687, ../dev/sass/_ionicons.scss */
.ion-ios7-time-outline:before {
content: "\f291";
}
/* line 1690, ../dev/sass/_ionicons.scss */
.ion-ios7-timer:before {
content: "\f1ea";
}
/* line 1693, ../dev/sass/_ionicons.scss */
.ion-ios7-timer-outline:before {
content: "\f1e9";
}
/* line 1696, ../dev/sass/_ionicons.scss */
.ion-ios7-trash:before {
content: "\f1ec";
}
/* line 1699, ../dev/sass/_ionicons.scss */
.ion-ios7-trash-outline:before {
content: "\f1eb";
}
/* line 1702, ../dev/sass/_ionicons.scss */
.ion-ios7-undo:before {
content: "\f1ee";
}
/* line 1705, ../dev/sass/_ionicons.scss */
.ion-ios7-undo-outline:before {
content: "\f1ed";
}
/* line 1708, ../dev/sass/_ionicons.scss */
.ion-ios7-unlocked:before {
content: "\f1f0";
}
/* line 1711, ../dev/sass/_ionicons.scss */
.ion-ios7-unlocked-outline:before {
content: "\f1ef";
}
/* line 1714, ../dev/sass/_ionicons.scss */
.ion-ios7-upload:before {
content: "\f1f2";
}
/* line 1717, ../dev/sass/_ionicons.scss */
.ion-ios7-upload-outline:before {
content: "\f1f1";
}
/* line 1720, ../dev/sass/_ionicons.scss */
.ion-ios7-videocam:before {
content: "\f1f4";
}
/* line 1723, ../dev/sass/_ionicons.scss */
.ion-ios7-videocam-outline:before {
content: "\f1f3";
}
/* line 1726, ../dev/sass/_ionicons.scss */
.ion-ios7-volume-high:before {
content: "\f1f5";
}
/* line 1729, ../dev/sass/_ionicons.scss */
.ion-ios7-volume-low:before {
content: "\f1f6";
}
/* line 1732, ../dev/sass/_ionicons.scss */
.ion-ios7-wineglass:before {
content: "\f294";
}
/* line 1735, ../dev/sass/_ionicons.scss */
.ion-ios7-wineglass-outline:before {
content: "\f293";
}
/* line 1738, ../dev/sass/_ionicons.scss */
.ion-ios7-world:before {
content: "\f1f8";
}
/* line 1741, ../dev/sass/_ionicons.scss */
.ion-ios7-world-outline:before {
content: "\f1f7";
}
/* line 1744, ../dev/sass/_ionicons.scss */
.ion-ipad:before {
content: "\f1f9";
}
/* line 1747, ../dev/sass/_ionicons.scss */
.ion-iphone:before {
content: "\f1fa";
}
/* line 1750, ../dev/sass/_ionicons.scss */
.ion-ipod:before {
content: "\f1fb";
}
/* line 1753, ../dev/sass/_ionicons.scss */
.ion-jet:before {
content: "\f295";
}
/* line 1756, ../dev/sass/_ionicons.scss */
.ion-key:before {
content: "\f296";
}
/* line 1759, ../dev/sass/_ionicons.scss */
.ion-knife:before {
content: "\f297";
}
/* line 1762, ../dev/sass/_ionicons.scss */
.ion-laptop:before {
content: "\f1fc";
}
/* line 1765, ../dev/sass/_ionicons.scss */
.ion-leaf:before {
content: "\f1fd";
}
/* line 1768, ../dev/sass/_ionicons.scss */
.ion-levels:before {
content: "\f298";
}
/* line 1771, ../dev/sass/_ionicons.scss */
.ion-lightbulb:before {
content: "\f299";
}
/* line 1774, ../dev/sass/_ionicons.scss */
.ion-link:before {
content: "\f1fe";
}
/* line 1777, ../dev/sass/_ionicons.scss */
.ion-load-a:before, .ion-loading-a:before {
content: "\f29a";
}
/* line 1780, ../dev/sass/_ionicons.scss */
.ion-load-b:before, .ion-loading-b:before {
content: "\f29b";
}
/* line 1783, ../dev/sass/_ionicons.scss */
.ion-load-c:before, .ion-loading-c:before {
content: "\f29c";
}
/* line 1786, ../dev/sass/_ionicons.scss */
.ion-load-d:before, .ion-loading-d:before {
content: "\f29d";
}
/* line 1789, ../dev/sass/_ionicons.scss */
.ion-location:before {
content: "\f1ff";
}
/* line 1792, ../dev/sass/_ionicons.scss */
.ion-locked:before {
content: "\f200";
}
/* line 1795, ../dev/sass/_ionicons.scss */
.ion-log-in:before {
content: "\f29e";
}
/* line 1798, ../dev/sass/_ionicons.scss */
.ion-log-out:before {
content: "\f29f";
}
/* line 1801, ../dev/sass/_ionicons.scss */
.ion-loop:before, .ion-looping:before {
content: "\f201";
}
/* line 1804, ../dev/sass/_ionicons.scss */
.ion-magnet:before {
content: "\f2a0";
}
/* line 1807, ../dev/sass/_ionicons.scss */
.ion-male:before {
content: "\f2a1";
}
/* line 1810, ../dev/sass/_ionicons.scss */
.ion-man:before {
content: "\f202";
}
/* line 1813, ../dev/sass/_ionicons.scss */
.ion-map:before {
content: "\f203";
}
/* line 1816, ../dev/sass/_ionicons.scss */
.ion-medkit:before {
content: "\f2a2";
}
/* line 1819, ../dev/sass/_ionicons.scss */
.ion-mic-a:before {
content: "\f204";
}
/* line 1822, ../dev/sass/_ionicons.scss */
.ion-mic-b:before {
content: "\f205";
}
/* line 1825, ../dev/sass/_ionicons.scss */
.ion-mic-c:before {
content: "\f206";
}
/* line 1828, ../dev/sass/_ionicons.scss */
.ion-minus:before {
content: "\f209";
}
/* line 1831, ../dev/sass/_ionicons.scss */
.ion-minus-circled:before {
content: "\f207";
}
/* line 1834, ../dev/sass/_ionicons.scss */
.ion-minus-round:before {
content: "\f208";
}
/* line 1837, ../dev/sass/_ionicons.scss */
.ion-model-s:before {
content: "\f2c1";
}
/* line 1840, ../dev/sass/_ionicons.scss */
.ion-monitor:before {
content: "\f20a";
}
/* line 1843, ../dev/sass/_ionicons.scss */
.ion-more:before {
content: "\f20b";
}
/* line 1846, ../dev/sass/_ionicons.scss */
.ion-music-note:before {
content: "\f20c";
}
/* line 1849, ../dev/sass/_ionicons.scss */
.ion-navicon:before {
content: "\f20e";
}
/* line 1852, ../dev/sass/_ionicons.scss */
.ion-navicon-round:before {
content: "\f20d";
}
/* line 1855, ../dev/sass/_ionicons.scss */
.ion-navigate:before {
content: "\f2a3";
}
/* line 1858, ../dev/sass/_ionicons.scss */
.ion-no-smoking:before {
content: "\f2c2";
}
/* line 1861, ../dev/sass/_ionicons.scss */
.ion-nuclear:before {
content: "\f2a4";
}
/* line 1864, ../dev/sass/_ionicons.scss */
.ion-paper-airplane:before {
content: "\f2c3";
}
/* line 1867, ../dev/sass/_ionicons.scss */
.ion-paperclip:before {
content: "\f20f";
}
/* line 1870, ../dev/sass/_ionicons.scss */
.ion-pause:before {
content: "\f210";
}
/* line 1873, ../dev/sass/_ionicons.scss */
.ion-person:before {
content: "\f213";
}
/* line 1876, ../dev/sass/_ionicons.scss */
.ion-person-add:before {
content: "\f211";
}
/* line 1879, ../dev/sass/_ionicons.scss */
.ion-person-stalker:before {
content: "\f212";
}
/* line 1882, ../dev/sass/_ionicons.scss */
.ion-pie-graph:before {
content: "\f2a5";
}
/* line 1885, ../dev/sass/_ionicons.scss */
.ion-pin:before {
content: "\f2a6";
}
/* line 1888, ../dev/sass/_ionicons.scss */
.ion-pinpoint:before {
content: "\f2a7";
}
/* line 1891, ../dev/sass/_ionicons.scss */
.ion-pizza:before {
content: "\f2a8";
}
/* line 1894, ../dev/sass/_ionicons.scss */
.ion-plane:before {
content: "\f214";
}
/* line 1897, ../dev/sass/_ionicons.scss */
.ion-play:before {
content: "\f215";
}
/* line 1900, ../dev/sass/_ionicons.scss */
.ion-playstation:before {
content: "\f30a";
}
/* line 1903, ../dev/sass/_ionicons.scss */
.ion-plus:before {
content: "\f218";
}
/* line 1906, ../dev/sass/_ionicons.scss */
.ion-plus-circled:before {
content: "\f216";
}
/* line 1909, ../dev/sass/_ionicons.scss */
.ion-plus-round:before {
content: "\f217";
}
/* line 1912, ../dev/sass/_ionicons.scss */
.ion-pound:before {
content: "\f219";
}
/* line 1915, ../dev/sass/_ionicons.scss */
.ion-power:before {
content: "\f2a9";
}
/* line 1918, ../dev/sass/_ionicons.scss */
.ion-pricetag:before {
content: "\f2aa";
}
/* line 1921, ../dev/sass/_ionicons.scss */
.ion-pricetags:before {
content: "\f2ab";
}
/* line 1924, ../dev/sass/_ionicons.scss */
.ion-printer:before {
content: "\f21a";
}
/* line 1927, ../dev/sass/_ionicons.scss */
.ion-radio-waves:before {
content: "\f2ac";
}
/* line 1930, ../dev/sass/_ionicons.scss */
.ion-record:before {
content: "\f21b";
}
/* line 1933, ../dev/sass/_ionicons.scss */
.ion-refresh:before, .ion-refreshing:before {
content: "\f21c";
}
/* line 1936, ../dev/sass/_ionicons.scss */
.ion-reply:before {
content: "\f21e";
}
/* line 1939, ../dev/sass/_ionicons.scss */
.ion-reply-all:before {
content: "\f21d";
}
/* line 1942, ../dev/sass/_ionicons.scss */
.ion-search:before {
content: "\f21f";
}
/* line 1945, ../dev/sass/_ionicons.scss */
.ion-settings:before {
content: "\f2ad";
}
/* line 1948, ../dev/sass/_ionicons.scss */
.ion-share:before {
content: "\f220";
}
/* line 1951, ../dev/sass/_ionicons.scss */
.ion-shuffle:before {
content: "\f221";
}
/* line 1954, ../dev/sass/_ionicons.scss */
.ion-skip-backward:before {
content: "\f222";
}
/* line 1957, ../dev/sass/_ionicons.scss */
.ion-skip-forward:before {
content: "\f223";
}
/* line 1960, ../dev/sass/_ionicons.scss */
.ion-social-android:before {
content: "\f225";
}
/* line 1963, ../dev/sass/_ionicons.scss */
.ion-social-android-outline:before {
content: "\f224";
}
/* line 1966, ../dev/sass/_ionicons.scss */
.ion-social-apple:before {
content: "\f227";
}
/* line 1969, ../dev/sass/_ionicons.scss */
.ion-social-apple-outline:before {
content: "\f226";
}
/* line 1972, ../dev/sass/_ionicons.scss */
.ion-social-bitcoin:before {
content: "\f2af";
}
/* line 1975, ../dev/sass/_ionicons.scss */
.ion-social-bitcoin-outline:before {
content: "\f2ae";
}
/* line 1978, ../dev/sass/_ionicons.scss */
.ion-social-buffer:before {
content: "\f229";
}
/* line 1981, ../dev/sass/_ionicons.scss */
.ion-social-buffer-outline:before {
content: "\f228";
}
/* line 1984, ../dev/sass/_ionicons.scss */
.ion-social-designernews:before {
content: "\f22b";
}
/* line 1987, ../dev/sass/_ionicons.scss */
.ion-social-designernews-outline:before {
content: "\f22a";
}
/* line 1990, ../dev/sass/_ionicons.scss */
.ion-social-dribbble:before {
content: "\f22d";
}
/* line 1993, ../dev/sass/_ionicons.scss */
.ion-social-dribbble-outline:before {
content: "\f22c";
}
/* line 1996, ../dev/sass/_ionicons.scss */
.ion-social-dropbox:before {
content: "\f22f";
}
/* line 1999, ../dev/sass/_ionicons.scss */
.ion-social-dropbox-outline:before {
content: "\f22e";
}
/* line 2002, ../dev/sass/_ionicons.scss */
.ion-social-facebook:before {
content: "\f231";
}
/* line 2005, ../dev/sass/_ionicons.scss */
.ion-social-facebook-outline:before {
content: "\f230";
}
/* line 2008, ../dev/sass/_ionicons.scss */
.ion-social-freebsd-devil:before {
content: "\f2c4";
}
/* line 2011, ../dev/sass/_ionicons.scss */
.ion-social-github:before {
content: "\f233";
}
/* line 2014, ../dev/sass/_ionicons.scss */
.ion-social-github-outline:before {
content: "\f232";
}
/* line 2017, ../dev/sass/_ionicons.scss */
.ion-social-googleplus:before {
content: "\f235";
}
/* line 2020, ../dev/sass/_ionicons.scss */
.ion-social-googleplus-outline:before {
content: "\f234";
}
/* line 2023, ../dev/sass/_ionicons.scss */
.ion-social-hackernews:before {
content: "\f237";
}
/* line 2026, ../dev/sass/_ionicons.scss */
.ion-social-hackernews-outline:before {
content: "\f236";
}
/* line 2029, ../dev/sass/_ionicons.scss */
.ion-social-linkedin:before {
content: "\f239";
}
/* line 2032, ../dev/sass/_ionicons.scss */
.ion-social-linkedin-outline:before {
content: "\f238";
}
/* line 2035, ../dev/sass/_ionicons.scss */
.ion-social-pinterest:before {
content: "\f2b1";
}
/* line 2038, ../dev/sass/_ionicons.scss */
.ion-social-pinterest-outline:before {
content: "\f2b0";
}
/* line 2041, ../dev/sass/_ionicons.scss */
.ion-social-reddit:before {
content: "\f23b";
}
/* line 2044, ../dev/sass/_ionicons.scss */
.ion-social-reddit-outline:before {
content: "\f23a";
}
/* line 2047, ../dev/sass/_ionicons.scss */
.ion-social-rss:before {
content: "\f23d";
}
/* line 2050, ../dev/sass/_ionicons.scss */
.ion-social-rss-outline:before {
content: "\f23c";
}
/* line 2053, ../dev/sass/_ionicons.scss */
.ion-social-skype:before {
content: "\f23f";
}
/* line 2056, ../dev/sass/_ionicons.scss */
.ion-social-skype-outline:before {
content: "\f23e";
}
/* line 2059, ../dev/sass/_ionicons.scss */
.ion-social-tumblr:before {
content: "\f241";
}
/* line 2062, ../dev/sass/_ionicons.scss */
.ion-social-tumblr-outline:before {
content: "\f240";
}
/* line 2065, ../dev/sass/_ionicons.scss */
.ion-social-tux:before {
content: "\f2c5";
}
/* line 2068, ../dev/sass/_ionicons.scss */
.ion-social-twitter:before {
content: "\f243";
}
/* line 2071, ../dev/sass/_ionicons.scss */
.ion-social-twitter-outline:before {
content: "\f242";
}
/* line 2074, ../dev/sass/_ionicons.scss */
.ion-social-vimeo:before {
content: "\f245";
}
/* line 2077, ../dev/sass/_ionicons.scss */
.ion-social-vimeo-outline:before {
content: "\f244";
}
/* line 2080, ../dev/sass/_ionicons.scss */
.ion-social-windows:before {
content: "\f247";
}
/* line 2083, ../dev/sass/_ionicons.scss */
.ion-social-windows-outline:before {
content: "\f246";
}
/* line 2086, ../dev/sass/_ionicons.scss */
.ion-social-wordpress:before {
content: "\f249";
}
/* line 2089, ../dev/sass/_ionicons.scss */
.ion-social-wordpress-outline:before {
content: "\f248";
}
/* line 2092, ../dev/sass/_ionicons.scss */
.ion-social-yahoo:before {
content: "\f24b";
}
/* line 2095, ../dev/sass/_ionicons.scss */
.ion-social-yahoo-outline:before {
content: "\f24a";
}
/* line 2098, ../dev/sass/_ionicons.scss */
.ion-social-youtube:before {
content: "\f24d";
}
/* line 2101, ../dev/sass/_ionicons.scss */
.ion-social-youtube-outline:before {
content: "\f24c";
}
/* line 2104, ../dev/sass/_ionicons.scss */
.ion-speakerphone:before {
content: "\f2b2";
}
/* line 2107, ../dev/sass/_ionicons.scss */
.ion-speedometer:before {
content: "\f2b3";
}
/* line 2110, ../dev/sass/_ionicons.scss */
.ion-spoon:before {
content: "\f2b4";
}
/* line 2113, ../dev/sass/_ionicons.scss */
.ion-star:before {
content: "\f24e";
}
/* line 2116, ../dev/sass/_ionicons.scss */
.ion-stats-bars:before {
content: "\f2b5";
}
/* line 2119, ../dev/sass/_ionicons.scss */
.ion-steam:before {
content: "\f30b";
}
/* line 2122, ../dev/sass/_ionicons.scss */
.ion-stop:before {
content: "\f24f";
}
/* line 2125, ../dev/sass/_ionicons.scss */
.ion-thermometer:before {
content: "\f2b6";
}
/* line 2128, ../dev/sass/_ionicons.scss */
.ion-thumbsdown:before {
content: "\f250";
}
/* line 2131, ../dev/sass/_ionicons.scss */
.ion-thumbsup:before {
content: "\f251";
}
/* line 2134, ../dev/sass/_ionicons.scss */
.ion-trash-a:before {
content: "\f252";
}
/* line 2137, ../dev/sass/_ionicons.scss */
.ion-trash-b:before {
content: "\f253";
}
/* line 2140, ../dev/sass/_ionicons.scss */
.ion-umbrella:before {
content: "\f2b7";
}
/* line 2143, ../dev/sass/_ionicons.scss */
.ion-unlocked:before {
content: "\f254";
}
/* line 2146, ../dev/sass/_ionicons.scss */
.ion-upload:before {
content: "\f255";
}
/* line 2149, ../dev/sass/_ionicons.scss */
.ion-usb:before {
content: "\f2b8";
}
/* line 2152, ../dev/sass/_ionicons.scss */
.ion-videocamera:before {
content: "\f256";
}
/* line 2155, ../dev/sass/_ionicons.scss */
.ion-volume-high:before {
content: "\f257";
}
/* line 2158, ../dev/sass/_ionicons.scss */
.ion-volume-low:before {
content: "\f258";
}
/* line 2161, ../dev/sass/_ionicons.scss */
.ion-volume-medium:before {
content: "\f259";
}
/* line 2164, ../dev/sass/_ionicons.scss */
.ion-volume-mute:before {
content: "\f25a";
}
/* line 2167, ../dev/sass/_ionicons.scss */
.ion-waterdrop:before {
content: "\f25b";
}
/* line 2170, ../dev/sass/_ionicons.scss */
.ion-wifi:before {
content: "\f25c";
}
/* line 2173, ../dev/sass/_ionicons.scss */
.ion-wineglass:before {
content: "\f2b9";
}
/* line 2176, ../dev/sass/_ionicons.scss */
.ion-woman:before {
content: "\f25d";
}
/* line 2179, ../dev/sass/_ionicons.scss */
.ion-wrench:before {
content: "\f2ba";
}
/* line 2182, ../dev/sass/_ionicons.scss */
.ion-xbox:before {
content: "\f30c";
}
/* line 1, ../dev/sass/_video.scss */
.video_wrapper {
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
}
/* line 6, ../dev/sass/_video.scss */
.video_wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* line 13, ../dev/sass/_video.scss */
.video_wrapper .video_tease {
margin-top: -25px;
z-index: 5;
}
/* line 19, ../dev/sass/_video.scss */
.below_video {
display: none;
}
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
display: block;
position: relative;
margin: -8px 0 30px;
height: 40px;
width: 100%;
}
@media (max-width: 500px) {
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
font-size: 12px;
}
}
@media (max-width: 500px) {
/* line 24, ../dev/sass/_video.scss */
.podcast_page .below_video {
margin-top: -14px;
}
}
/* line 36, ../dev/sass/_video.scss */
.podcast_page .below_video .extras, .podcast_page .below_video .social_logos {
position: absolute;
bottom: 0;
color: #262a2a;
font-weight: 500;
}
/* line 41, ../dev/sass/_video.scss */
.podcast_page .below_video .extras a, .podcast_page .below_video .social_logos a {
/*color: #262a2a;*/
}
/* line 43, ../dev/sass/_video.scss */
.podcast_page .below_video .extras a:hover, .podcast_page .below_video .social_logos a:hover {
text-decoration: none;
color: #307fe2;
}
/* line 49, ../dev/sass/_video.scss */
.podcast_page .below_video .extras {
position: absolute;
bottom: 0;
left: 5px;
}
/* line 54, ../dev/sass/_video.scss */
.podcast_page .below_video .social_logos {
position: absolute;
bottom: 0;
right: 5px;
}
@media (max-width: 500px) {
/* line 59, ../dev/sass/_video.scss */
.podcast_page .below_video .share_this {
display: none;
}
}
/* line 67, ../dev/sass/_video.scss */
.video_tease {
position: relative;
width: 100%;
}
/* line 70, ../dev/sass/_video.scss */
.video_tease i.play_tease {
position: absolute;
text-align: center;
width: 100%;
top: 40%;
font-size: 42px;
text-shadow: 1px 1px #3f4444;
color: #eaebeb;
}
/* line 79, ../dev/sass/_video.scss */
.video_tease div.black_film {
position: absolute;
top: 0;
opacity: 0;
height: 100%;
width: 100%;
background: black;
-webkit-transition: opacity 0.25s;
-moz-transition: opacity 0.25s;
-o-transition: opacity 0.25s;
transition: opacity 0.25s;
}
/* line 87, ../dev/sass/_video.scss */
.video_tease div.black_film:hover {
opacity: 0.2;
}
/* line 94, ../dev/sass/_video.scss */
.video_tease.featured i.play_tease {
font-size: 72px;
}
@media (max-width: 500px) {
/* line 94, ../dev/sass/_video.scss */
.video_tease.featured i.play_tease {
font-size: 42px;
}
}
/* line 1, ../dev/sass/_form.scss */
.email_signup {
width: 300px;
background: #707979;
padding: 10px;
margin: 0 auto 30px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
@media (min-width: 1000px) {
/* line 1, ../dev/sass/_form.scss */
.email_signup {
float: right;
}
}
@media (max-width: 500px) {
/* line 1, ../dev/sass/_form.scss */
.email_signup {
width: 100%;
}
}
/* line 13, ../dev/sass/_form.scss */
.email_signup .email_prompt {
color: #ffd57d;
text-align: center;
font-weight: 500;
font-size: 1.5em;
line-height: 1em;
margin-bottom: 10px;
}
/* line 21, ../dev/sass/_form.scss */
.email_signup img {
margin-bottom: 20px;
}
/* line 25, ../dev/sass/_form.scss */
.email_signup form .subscriptions {
display: none;
}
/* line 28, ../dev/sass/_form.scss */
.email_signup form .btn-default {
border-color: #715926;
width: 100%;
background: #ffd57d;
font-weight: 700;
font-size: 18px;
color: #5c5e61;
-webkit-transition: all 0.25s;
-moz-transition: all 0.25s;
-o-transition: all 0.25s;
transition: all 0.25s;
}
/* line 36, ../dev/sass/_form.scss */
.email_signup form .btn-default:hover {
background: #ffc54a;
}
/* line 41, ../dev/sass/_form.scss */
.email_signup .email_icon {
font-size: 140px;
text-align: center;
color: white;
height: 110px;
}
/* line 46, ../dev/sass/_form.scss */
.email_signup .email_icon i {
position: relative;
top: -40px;
}
/* line 2, ../dev/sass/_podcast_detail.scss */
.podcast_page h2.featured_podcast {
font-size: 48px;
font-weight: 600;
margin-bottom: 5px;
text-align: center;
text-decoration: underline;
}
@media (max-width: 500px) {
/* line 2, ../dev/sass/_podcast_detail.scss */
.podcast_page h2.featured_podcast {
font-size: 24px;
}
}
/* line 13, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members h3, .podcast_page .setlist h3 {
text-decoration: underline;
}
/* line 16, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members p, .podcast_page .setlist p {
margin-bottom: 0;
font-weight: 500;
line-height: 15px;
}
/* line 21, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members p.detail, .podcast_page .setlist p.detail {
font-size: 12px;
font-weight: 400;
color: #75787b;
}
/* line 26, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members .podcast_member, .podcast_page .podcast_members .song, .podcast_page .setlist .podcast_member, .podcast_page .setlist .song {
margin-bottom: 5px;
}
/* line 30, ../dev/sass/_podcast_detail.scss */
.podcast_page .setlist {
text-align: right;
}
/* line 1, ../dev/sass/_player.scss */
div.audio_player {
height: 40px;
padding-top: 18px;
}
/* line 5, ../dev/sass/_player.scss */
div.audio_player div.play_btn {
cursor: pointer;
width: 40px;
height: 40px;
font-size: 24px;
color: #FFFFFF;
display: inline-block;
}
/* line 16, ../dev/sass/_player.scss */
div.audio_player .progress_bar {
display: inline-block;
height: 100%;
width: 0%;
vertical-align: top;
}
/* line 23, ../dev/sass/_player.scss */
div.audio_player .play {
width: 100%;
}
/* line 26, ../dev/sass/_player.scss */
div.audio_player .duration, div.audio_player .audio_title {
font-family: 'Lato', sans-serif;
position: absolute;
top: 2px;
color: #FFFFFF;
height: 20px;
padding: 0px 18px;
font-size: 20px;
}
@media (max-width: 768px) {
/* line 30, ../dev/sass/_podcast_detail.scss */
.podcast_page .setlist {
text-align: center;
}
}
@media (max-width: 768px) {
/* line 36, ../dev/sass/_podcast_detail.scss */
.podcast_page .podcast_members {
text-align: center;
}
}
/* line 12, ../dev/sass/style.scss */
.molat {
font-family: Molot;
font-size: 48px;
line-height: 55px;
}
/* line 18, ../dev/sass/style.scss */
hr {
border-top: 1px solid #323232;
width: 60%;
}
@media (min-width: 760px) {
hr {
border-top: 1px solid #323232;
width: 40%;
}
}
/* line 22, ../dev/sass/style.scss */
h1, h2, h3, h4 {
color: #FFFFFF;
}
/* line 36, ../dev/sass/style.scss */
.navbar {
min-height: 93px;
}
@media (max-width: 500px) {
/* line 36, ../dev/sass/style.scss */
.navbar {
min-height: 45px;
}
}
@media (max-width: 768px) {
/* line 41, ../dev/sass/style.scss */
.navbar .navbar-header {
padding: 0 1px 0;
}
}
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
font-size: 30px !important;
}
/* line 48, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title a:hover {
color: #E04E39;
}
@media (max-width: 500px) {
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
font-size: 22px !important;
}
}
@media (max-width: 768px) {
/* line 45, ../dev/sass/style.scss */
.navbar .navbar-header #navbar-title {
text-align: left !important;
}
}
/* line 65, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos {
top: 8px !important;
}
@media (max-width: 500px) {
/* line 65, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos {
top: -2px !important;
}
}
@media (max-width: 500px) {
/* line 71, ../dev/sass/style.scss */
.navbar .navbar-header .social_logos li i.icon {
font-size: 20px !important;
}
}
/* line 79, ../dev/sass/style.scss */
.navbar .navbar-header #vpr_logo {
top: 8px !important;
}
@media (max-width: 768px) {
/* line 79, ../dev/sass/style.scss */
.navbar .navbar-header #vpr_logo {
display: none;
}
}
/* line 88, ../dev/sass/style.scss */
.preview {
margin-bottom: 10px;
}
/* line 90, ../dev/sass/style.scss */
.preview h3.preview_name {
margin-top: 10px;
}
/* line 95, ../dev/sass/style.scss */
.this_month {
font-weight: 600;
color: #75787b;
margin: 20px 0 0;
line-height: 12px;
font-size: 12px;
}
@media (max-width: 500px) {
/* line 95, ../dev/sass/style.scss */
.this_month {
margin-top: 5px;
}
}
/* line 107, ../dev/sass/style.scss */
.landing .featured_podcast {
margin-top: 0;
}
/* line 112, ../dev/sass/style.scss */
.name {
color: #262a2a;
}
/* line 114, ../dev/sass/style.scss */
.name:hover {
color: #509E2F;
text-decoration: none;
}
/* line 120, ../dev/sass/style.scss */
.about {
padding-top: 30px;
margin-bottom: 30px;
}
/* line 122, ../dev/sass/style.scss */
.about p {
font-size: 18px;
}
#chevron-left {
font-size: 45px;
position: absolute;
left: -5px;
bottom: -4px;
}
#chevron-right {
font-size: 45px;
position: absolute;
right: -5px;
bottom: -4px;
}
.chapter_style {
text-align: center;
}
.landing-image {
display: block;
margin: auto;
width: 300px;
}
#description h5 {
font-family: 'Lato', sans-serif;
font-weight: 300;
text-align: center;
}
#description span {
font-size: 16px;
font-style: italic;
}
.chapter_style {
padding-top: 50px;
}
.chapter_style h6 {
font-size: 16px;
}
@media (max-width: 800px) {
.chapter_style h6 {
font-size: 13px;
}
}
#chapter_info {
padding-top: 60px;
height: 120px;
}
#audio_info {
padding-top: 20px;
}
#audio_info h6 {
padding-top: 2px;
font-size: 12px;
}
#progress_bar_background {
position: relative;
width: 90px;
height: 1px;
background-color: #323232;
margin: auto;
}
#progress_bar_filler {
position: absolute;
height: 100%;
}
.explainer {
padding-top: 30px;
}
.explainer h3 {
text-align: center;
font-size: 20px;
}
.explainer p {
text-align: center;
font-size: 14px;
padding-bottom: 14px;
}
.explainer h4 {
text-align: center;
font-size: 14px;
padding: 1px;
}
.about h4 {
text-align: center;
font-size: 14px;
}
.about h6 {
text-align: center;
font-size: 13px;
padding-bottom: 10px;
} | 0.404743 | 0.044556 |
body {
font-family: 'Open Sans', sans-serif;
}
html {
height: 100%;
}
p {
font-size: 1.1rem;
color: #333;
font-family: 'Open Sans', sans-serif;
}
header,
section {
max-width: 1920px;
}
@-moz-document url-prefix() {
body {
font-weight: lighter!important;
}
}
::selection {
background: #000;
color: #fff;
}
::-moz-selection {
background: #000;
color: #fff;
}
.top_15 {
margin-top: 15px;
}
.top_30 {
margin-top: 30px;
}
.top_45 {
margin-top: 45px;
}
.top_60 {
margin-top: 60px;
}
.top_90 {
margin-top: 90px;
}
.padding_30 {
padding: 30px 0;
}
.padding_45 {
padding: 45px 0;
}
.padding_60 {
padding: 60px 0;
}
.padding_90 {
padding: 90px 0;
}
header {
border-bottom: 1px solid rgba(255, 255, 255, 0.35);
position: absolute;
transition: all ease 0.3s;
width: 100%;
z-index: 11;
}
section,
footer,
article {
padding-top: 60px;
}
.center-title {
padding: 0 150px;
}
.center-title h1 {
text-align: center;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: 1;
margin: 20px 0 10px 0;
}
.center-title p {
text-align: center;
margin-top: 15px;
}
.center-title:before,
.backtop:hover {
background: #000;
}
.responsive {
display: none;
float: right;
color: #fff;
font-size: 14px;
font-weight: 600;
border: solid 1px #8a8989;
padding: 9px 13px;
margin: 14px 0 0 0;
cursor: pointer;
}
.active {
color: #afafaf;
}
/*==================================================
Header
/*=================================================*/
.header__logo {
float: left;
padding-top: 10px;
font-weight: 600;
color: #fff;
margin-top: 5px;
}
.header__logo img {
border-radius: 50px;
width: 40px;
height: 40px;
margin-right: 14px;
border: solid 2px #fff;
}
nav {
z-index: 100;
}
.nav__items {
float: right;
line-height: 32px;
margin-bottom: 0;
}
.nav__items li a:focus {
color: #fff;
}
.nav__item {
float: left;
list-style: none;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
position: relative;
margin-right: 3px;
}
.nav__link {
color: #fff;
line-height: 72px;
display: block;
text-decoration: none !important;
font-size: 13px;
padding: 0 7px;
font-weight: 500;
}
.nav__link:after {
background-color: #000;
height: 2px;
width: 0;
position: absolute;
margin: 0 auto;
bottom: 0;
left: 0;
right: 0;
content: "";
transition: all 0.2s ease-in-out;
}
.nav__link:hover {
color: #fff;
}
.nav__link:hover:after {
width: 100%;
transition: all 0.2s ease-in-out;
background: #fff;
}
.nav--sticky {
background-color: #fff;
border: 0;
box-shadow: 0 6px 12px -10px rgba(21, 21, 21, .67);
display: block;
position: fixed;
transition: background-color .5s cubic-bezier(.28, .11, .32, 1);
transition-property: background-color, -webkit-backdrop-filter;
transition-property: background-color, backdrop-filter;
transition-property: background-color, backdrop-filter, -webkit-backdrop-filter;
}
.nav--sticky .header__logo,
.nav--sticky ul li a,
.nav--sticky .nav__link:hover,
.nav--sticky .nav__link:focus {
color: #000;
}
.nav--sticky .nav--active:after,
.nav--sticky .nav__link:hover:after {
background: #000 !important;
}
.nav--sticky .responsive {
border: solid 1px #dcdcdc;
color: #000;
font-weight: 500;
}
.nav--active:after {
content: '';
display: block;
margin: auto;
height: 2px;
width: 100%;
background: #fff;
transition: width .5s ease, background-color .5s ease;
}
/*==================================================
Home
/*=================================================*/
.home {
background: url(../images/home-bg.jpg) center no-repeat;
background-color: #081426;
background-size: cover;
display: table;
height: 600px;
overflow: hidden;
position: relative;
width: 100%;
z-index: 10;
}
.home:before {
background-color: rgba(0, 0, 0, .2);
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.home__content {
display: table-cell;
position: relative;
text-align: center;
vertical-align: middle;
z-index: 2;
}
.home__profile-img {
box-shadow: 0px 0px 42px 0px rgba(0, 0, 0, 0.38);
width: 230px;
height: 230px;
margin: 0 auto;
border-radius: 150px;
overflow: hidden;
margin-bottom: 35px;
}
.home__profile-img img {
width: 100%;
}
.home__content h1 {
color: #fff;
font-weight: 800;
font-size: 2.6rem;
}
.home__content h5 {
color: #fff;
font-size: 1.2rem;
margin-top: 10px;
}
.home__scroll-down {
color: #fff;
font-size: 23px;
opacity: 0.5;
padding-top: 70px;
padding-left: 20px;
display: inline-block;
cursor: pointer;
transition: all 0.3s ease;
}
.home__scroll-down:hover,
.home__scroll-down:focus {
color: #fff;
opacity: 1;
}
.home__scroll-down.selected {
color: #fff !important;
}
.home__scroll-down.selected:after {
width: 0;
}
.home__scroll-down:hover {
color: #fff;
transition: all 0.3s ease;
}
.home__scroll-down:focus {
color: #fff;
}
.home__social-networks {
bottom: 0;
display: block;
padding: 20px;
position: absolute;
top: 22%;
}
.home__social-networks li {
margin-bottom: 42px;
}
.home__social-networks a {
color: #fff;
font-size: 24px;
transition: all ease 0.3s;
opacity: 1;
}
.home__social-networks a:hover {
transition: all ease 0.3s;
opacity: 0.5;
}
/*==================================================
About
/*=================================================*/
.about {
padding: 30px 0 60px;
}
.about__quote {
margin: 25px auto 0;
max-width: 900px;
padding: 0;
}
.about__quote .fa-quote-left:before {
font-size: 60px;
color: #111;
}
.about__quote--large {
font-size: 2.1rem;
font-weight: 300;
}
.about .giggs_button {
font-size: 16px;
}
/*==================================================
Services
/*=================================================*/
.services {
background-color: #eee;
border: solid 1px rgb(236, 236, 236);
box-shadow: 0px 0px 42px 0px rgba(0, 0, 0, 0.08);
padding: 45px 30px 60px;
}
.service {
margin-top: 60px;
}
.service__icon {
width: 20%;
float: left;
text-align: center;
}
.service__text {
width: 80%;
float: left;
min-height: 125px;
}
.service i {
color: #000;
font-size: 28px;
text-align: center;
}
.service span {
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 10px;
display: block;
}
.service p {
font-size: 14px;
color: #888;
}
/*==================================================
Work
/*=================================================*/
.work {
padding: 45px 30px 60px;
}
.work__item {
margin-bottom: 30px;
}
.work__item img {
width: 100%;
transition: all ease 0.3s;
}
.work__item-inner {
box-shadow: 0 28px 25px -25px rgba(0,0,0,.7);
display: table;
height: 100%;
position: relative;
width: 100%;
}
.work__item-inner:hover .work__item-link {
background-color: rgba(0,0,0,.8);
opacity: 1;
}
.work__item-inner .work__item-link a {
opacity: 0;
transition: all .4s ease;
top: 70%;
}
.work__item-inner:hover .work__item-link a {
opacity: 1;
top: 40%;
}
.work__item-link {
display: table-cell;
height: 100%;
opacity: 0;
padding: 0 15px;
position: absolute;
text-align: center;
transition: all 300ms ease;
vertical-align: middle;
width: 100%;
}
.work__item-link i,
.work__item-link p,
.work__item-link a {
color: #fff;
}
.work__item-link p {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin-bottom: 10px;
}
.work__item-link a {
display: block;
font-size: 20px;
position: relative;
text-decoration: none;
}
.work__giggs-button {
text-align: center;
}
.work__giggs-button .giggs_button {
font-size: 16px;
}
/*==================================================
Contact
/*=================================================*/
.contact {
padding-bottom: 60px;
}
.contact.dark {
background-color: #060606;
}
.contact.dark h1 {
color: #eee;
}
.contact.dark p {
color: #888;
font-size: 1rem;
}
.contact.dark input {
background-color: #000;
border: solid 1px #222;
border-radius: 3px;
color: #eee;
font-size: 13px;
height: 50px;
margin-bottom: 30px;
padding-left: 10px;
width: 100%;
}
.contact.dark textarea {
color: #eee;
background-color: #000;
border: solid 1px #222;
border-radius: 3px;
font-size: 13px;
margin-bottom: 30px;
padding: 10px;
width: 100%;
}
.contact.dark .error-message {
border-color: #f00;
}
.contact.dark .giggs_button2 {
margin: 0 auto;
display: block;
}
.contact.dark .giggs_button2 {
color: #fff;
border: 1px solid #222
}
.contact.dark .giggs_button2:hover {
background: #333;
transition:all ease 0.3s;
}
.contact.dark .contact-form__success-message {
display: none;
color: #00a02d;
}
.contact.dark .contact-form__error-message {
display: none;
color: #bf0000;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px #0e0e0e inset;
-webkit-text-fill-color: #eee !important;
}
/*==================================================
Footer
/*=================================================*/
footer {
padding: 40px 0;
width: 100%;
}
footer.dark {
background: #030303;
}
.footer__copyright-text {
padding: 0 200px;
}
.footer__copyright-text p {
color: #555;
font-size: 16px;
}
.footer__copyright-text hr {
border-top: 1px solid #353535;
}
.footer__social-networks {
height: 30px;
}
.footer__social-networks a {
color: #fff;
font-size: 22px;
margin: 0 15px;
transition: all ease 0.3s;
}
.footer__social-networks a:hover {
transition: all ease .3s;
opacity: .5;
}
.backtop {
cursor: pointer;
position: fixed;
bottom: 84px;
right: 20px;
width: 45px;
height: 45px;
border-radius: 25px;
background: #292929;
color: #ffffff;
border: solid 1px #4c4c4c;
display: flex;
justify-content: center;
align-items: center;
z-index: 9;
font-size: 12px;
}
.backtop:hover {
color: #fff;
border: 0;
transition: all ease 0.3s;
}
.backtop.selected {
color: #fff !important;
}
.backtop.selected:after {
width: 0;
content: none;
}
/*==================================================
Preloader
/*=================================================*/
.preloader__container {
background-color: #fff;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
position: fixed;
z-index: 20;
}
.preloader__spinner {
border: 4px solid #eee;
border-bottom-color: #ccc;
border-radius: 50%;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 50px;
height: 50px;
}
/*==================================================
Buttons
/*=================================================*/
.giggs_button {
-moz-osx-font-smoothing: grayscale;
backface-visibility: hidden;
background-color: #fff;
border: solid 1px;
border-radius: 50px;
color: #000;
cursor: pointer;
display: inline-block;
font-weight: 500;
font-size: 13px;
min-width: 170px;
overflow: hidden;
padding: 15px 34px 13px;
position: relative;
}
.giggs_button:hover,
.giggs_button:focus,
.giggs_button:active {
background-color: #000;
color: #fff;
transition: all ease 0.3s;
}
.giggs_button2 {
border: 0;
border-radius: 50px;
color: #fff;
cursor: pointer;
display: inline-block;
font-weight: 500;
font-size: 13px;
min-width: 170px;
padding: 15px 34px 13px;
transition: all ease 0.3s;
}
.giggs_button2 {
background: #000;
}
.giggs_button2:hover {
background: #000;
transition: all ease 0.3s;
}
a.giggs_button2 {
color: #fff;
}
/*==================================================
Media queries
/*=================================================*/
/* max width 992px */
@media screen and (max-width: 991px) {
.home__content h1 {
font-size: 50px;
}
.center-title {
padding: 0 15px;
padding-bottom: 15px;
}
.footer__copyright-text {
padding: 0;
}
}
/* max width 768px */
@media screen and (max-width: 768px) {
.header__logo {
min-height: 65px;
}
.nav__items li {
float: none;
}
.home__profile-img {
width: 170px;
height: 170px;
}
.nav__items {
width: 100%;
background: #fff;
text-align: center;
overflow: scroll;
display: none;
}
.nav__items li a {
border-top: 1px solid #efefef;
line-height: 45px;
font-size: 11px;
color: #000;
}
.nav__items li a:hover:after {
width: 0%;
}
.nav--active:after {
display: none;
}
.home__content h1 {
font-size: 32px !important;
margin-bottom: 10px;
}
.home__social-networks {
display: none;
}
.about__quote {
font-size: 1.6rem;
}
.service {
margin-top: 30px;
}
.service__icon {
font-size: 23px;
width: 12%;
}
.footer__social-networks a {
margin: 0 10px;
font-size: 12px;
}
.backtop {
right: 15px !important;
bottom: 70px !important;
}
.responsive {
display: block;
}
}
/* between 480 768px */
@media screen and (min-width: 480px) and (max-width: 768px) {
.home__content h1 {
font-size: 40px !important;
}
.footer__copyright-text {
padding: 0;
}
}
/* min width 768px */
@media screen and (min-width: 768px) {
.nav__items {
display: block !important;
}
} | src/css/03-main.css | body {
font-family: 'Open Sans', sans-serif;
}
html {
height: 100%;
}
p {
font-size: 1.1rem;
color: #333;
font-family: 'Open Sans', sans-serif;
}
header,
section {
max-width: 1920px;
}
@-moz-document url-prefix() {
body {
font-weight: lighter!important;
}
}
::selection {
background: #000;
color: #fff;
}
::-moz-selection {
background: #000;
color: #fff;
}
.top_15 {
margin-top: 15px;
}
.top_30 {
margin-top: 30px;
}
.top_45 {
margin-top: 45px;
}
.top_60 {
margin-top: 60px;
}
.top_90 {
margin-top: 90px;
}
.padding_30 {
padding: 30px 0;
}
.padding_45 {
padding: 45px 0;
}
.padding_60 {
padding: 60px 0;
}
.padding_90 {
padding: 90px 0;
}
header {
border-bottom: 1px solid rgba(255, 255, 255, 0.35);
position: absolute;
transition: all ease 0.3s;
width: 100%;
z-index: 11;
}
section,
footer,
article {
padding-top: 60px;
}
.center-title {
padding: 0 150px;
}
.center-title h1 {
text-align: center;
font-size: 2.2rem;
font-weight: 400;
letter-spacing: 1;
margin: 20px 0 10px 0;
}
.center-title p {
text-align: center;
margin-top: 15px;
}
.center-title:before,
.backtop:hover {
background: #000;
}
.responsive {
display: none;
float: right;
color: #fff;
font-size: 14px;
font-weight: 600;
border: solid 1px #8a8989;
padding: 9px 13px;
margin: 14px 0 0 0;
cursor: pointer;
}
.active {
color: #afafaf;
}
/*==================================================
Header
/*=================================================*/
.header__logo {
float: left;
padding-top: 10px;
font-weight: 600;
color: #fff;
margin-top: 5px;
}
.header__logo img {
border-radius: 50px;
width: 40px;
height: 40px;
margin-right: 14px;
border: solid 2px #fff;
}
nav {
z-index: 100;
}
.nav__items {
float: right;
line-height: 32px;
margin-bottom: 0;
}
.nav__items li a:focus {
color: #fff;
}
.nav__item {
float: left;
list-style: none;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
position: relative;
margin-right: 3px;
}
.nav__link {
color: #fff;
line-height: 72px;
display: block;
text-decoration: none !important;
font-size: 13px;
padding: 0 7px;
font-weight: 500;
}
.nav__link:after {
background-color: #000;
height: 2px;
width: 0;
position: absolute;
margin: 0 auto;
bottom: 0;
left: 0;
right: 0;
content: "";
transition: all 0.2s ease-in-out;
}
.nav__link:hover {
color: #fff;
}
.nav__link:hover:after {
width: 100%;
transition: all 0.2s ease-in-out;
background: #fff;
}
.nav--sticky {
background-color: #fff;
border: 0;
box-shadow: 0 6px 12px -10px rgba(21, 21, 21, .67);
display: block;
position: fixed;
transition: background-color .5s cubic-bezier(.28, .11, .32, 1);
transition-property: background-color, -webkit-backdrop-filter;
transition-property: background-color, backdrop-filter;
transition-property: background-color, backdrop-filter, -webkit-backdrop-filter;
}
.nav--sticky .header__logo,
.nav--sticky ul li a,
.nav--sticky .nav__link:hover,
.nav--sticky .nav__link:focus {
color: #000;
}
.nav--sticky .nav--active:after,
.nav--sticky .nav__link:hover:after {
background: #000 !important;
}
.nav--sticky .responsive {
border: solid 1px #dcdcdc;
color: #000;
font-weight: 500;
}
.nav--active:after {
content: '';
display: block;
margin: auto;
height: 2px;
width: 100%;
background: #fff;
transition: width .5s ease, background-color .5s ease;
}
/*==================================================
Home
/*=================================================*/
.home {
background: url(../images/home-bg.jpg) center no-repeat;
background-color: #081426;
background-size: cover;
display: table;
height: 600px;
overflow: hidden;
position: relative;
width: 100%;
z-index: 10;
}
.home:before {
background-color: rgba(0, 0, 0, .2);
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.home__content {
display: table-cell;
position: relative;
text-align: center;
vertical-align: middle;
z-index: 2;
}
.home__profile-img {
box-shadow: 0px 0px 42px 0px rgba(0, 0, 0, 0.38);
width: 230px;
height: 230px;
margin: 0 auto;
border-radius: 150px;
overflow: hidden;
margin-bottom: 35px;
}
.home__profile-img img {
width: 100%;
}
.home__content h1 {
color: #fff;
font-weight: 800;
font-size: 2.6rem;
}
.home__content h5 {
color: #fff;
font-size: 1.2rem;
margin-top: 10px;
}
.home__scroll-down {
color: #fff;
font-size: 23px;
opacity: 0.5;
padding-top: 70px;
padding-left: 20px;
display: inline-block;
cursor: pointer;
transition: all 0.3s ease;
}
.home__scroll-down:hover,
.home__scroll-down:focus {
color: #fff;
opacity: 1;
}
.home__scroll-down.selected {
color: #fff !important;
}
.home__scroll-down.selected:after {
width: 0;
}
.home__scroll-down:hover {
color: #fff;
transition: all 0.3s ease;
}
.home__scroll-down:focus {
color: #fff;
}
.home__social-networks {
bottom: 0;
display: block;
padding: 20px;
position: absolute;
top: 22%;
}
.home__social-networks li {
margin-bottom: 42px;
}
.home__social-networks a {
color: #fff;
font-size: 24px;
transition: all ease 0.3s;
opacity: 1;
}
.home__social-networks a:hover {
transition: all ease 0.3s;
opacity: 0.5;
}
/*==================================================
About
/*=================================================*/
.about {
padding: 30px 0 60px;
}
.about__quote {
margin: 25px auto 0;
max-width: 900px;
padding: 0;
}
.about__quote .fa-quote-left:before {
font-size: 60px;
color: #111;
}
.about__quote--large {
font-size: 2.1rem;
font-weight: 300;
}
.about .giggs_button {
font-size: 16px;
}
/*==================================================
Services
/*=================================================*/
.services {
background-color: #eee;
border: solid 1px rgb(236, 236, 236);
box-shadow: 0px 0px 42px 0px rgba(0, 0, 0, 0.08);
padding: 45px 30px 60px;
}
.service {
margin-top: 60px;
}
.service__icon {
width: 20%;
float: left;
text-align: center;
}
.service__text {
width: 80%;
float: left;
min-height: 125px;
}
.service i {
color: #000;
font-size: 28px;
text-align: center;
}
.service span {
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 10px;
display: block;
}
.service p {
font-size: 14px;
color: #888;
}
/*==================================================
Work
/*=================================================*/
.work {
padding: 45px 30px 60px;
}
.work__item {
margin-bottom: 30px;
}
.work__item img {
width: 100%;
transition: all ease 0.3s;
}
.work__item-inner {
box-shadow: 0 28px 25px -25px rgba(0,0,0,.7);
display: table;
height: 100%;
position: relative;
width: 100%;
}
.work__item-inner:hover .work__item-link {
background-color: rgba(0,0,0,.8);
opacity: 1;
}
.work__item-inner .work__item-link a {
opacity: 0;
transition: all .4s ease;
top: 70%;
}
.work__item-inner:hover .work__item-link a {
opacity: 1;
top: 40%;
}
.work__item-link {
display: table-cell;
height: 100%;
opacity: 0;
padding: 0 15px;
position: absolute;
text-align: center;
transition: all 300ms ease;
vertical-align: middle;
width: 100%;
}
.work__item-link i,
.work__item-link p,
.work__item-link a {
color: #fff;
}
.work__item-link p {
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin-bottom: 10px;
}
.work__item-link a {
display: block;
font-size: 20px;
position: relative;
text-decoration: none;
}
.work__giggs-button {
text-align: center;
}
.work__giggs-button .giggs_button {
font-size: 16px;
}
/*==================================================
Contact
/*=================================================*/
.contact {
padding-bottom: 60px;
}
.contact.dark {
background-color: #060606;
}
.contact.dark h1 {
color: #eee;
}
.contact.dark p {
color: #888;
font-size: 1rem;
}
.contact.dark input {
background-color: #000;
border: solid 1px #222;
border-radius: 3px;
color: #eee;
font-size: 13px;
height: 50px;
margin-bottom: 30px;
padding-left: 10px;
width: 100%;
}
.contact.dark textarea {
color: #eee;
background-color: #000;
border: solid 1px #222;
border-radius: 3px;
font-size: 13px;
margin-bottom: 30px;
padding: 10px;
width: 100%;
}
.contact.dark .error-message {
border-color: #f00;
}
.contact.dark .giggs_button2 {
margin: 0 auto;
display: block;
}
.contact.dark .giggs_button2 {
color: #fff;
border: 1px solid #222
}
.contact.dark .giggs_button2:hover {
background: #333;
transition:all ease 0.3s;
}
.contact.dark .contact-form__success-message {
display: none;
color: #00a02d;
}
.contact.dark .contact-form__error-message {
display: none;
color: #bf0000;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px #0e0e0e inset;
-webkit-text-fill-color: #eee !important;
}
/*==================================================
Footer
/*=================================================*/
footer {
padding: 40px 0;
width: 100%;
}
footer.dark {
background: #030303;
}
.footer__copyright-text {
padding: 0 200px;
}
.footer__copyright-text p {
color: #555;
font-size: 16px;
}
.footer__copyright-text hr {
border-top: 1px solid #353535;
}
.footer__social-networks {
height: 30px;
}
.footer__social-networks a {
color: #fff;
font-size: 22px;
margin: 0 15px;
transition: all ease 0.3s;
}
.footer__social-networks a:hover {
transition: all ease .3s;
opacity: .5;
}
.backtop {
cursor: pointer;
position: fixed;
bottom: 84px;
right: 20px;
width: 45px;
height: 45px;
border-radius: 25px;
background: #292929;
color: #ffffff;
border: solid 1px #4c4c4c;
display: flex;
justify-content: center;
align-items: center;
z-index: 9;
font-size: 12px;
}
.backtop:hover {
color: #fff;
border: 0;
transition: all ease 0.3s;
}
.backtop.selected {
color: #fff !important;
}
.backtop.selected:after {
width: 0;
content: none;
}
/*==================================================
Preloader
/*=================================================*/
.preloader__container {
background-color: #fff;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
position: fixed;
z-index: 20;
}
.preloader__spinner {
border: 4px solid #eee;
border-bottom-color: #ccc;
border-radius: 50%;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 50px;
height: 50px;
}
/*==================================================
Buttons
/*=================================================*/
.giggs_button {
-moz-osx-font-smoothing: grayscale;
backface-visibility: hidden;
background-color: #fff;
border: solid 1px;
border-radius: 50px;
color: #000;
cursor: pointer;
display: inline-block;
font-weight: 500;
font-size: 13px;
min-width: 170px;
overflow: hidden;
padding: 15px 34px 13px;
position: relative;
}
.giggs_button:hover,
.giggs_button:focus,
.giggs_button:active {
background-color: #000;
color: #fff;
transition: all ease 0.3s;
}
.giggs_button2 {
border: 0;
border-radius: 50px;
color: #fff;
cursor: pointer;
display: inline-block;
font-weight: 500;
font-size: 13px;
min-width: 170px;
padding: 15px 34px 13px;
transition: all ease 0.3s;
}
.giggs_button2 {
background: #000;
}
.giggs_button2:hover {
background: #000;
transition: all ease 0.3s;
}
a.giggs_button2 {
color: #fff;
}
/*==================================================
Media queries
/*=================================================*/
/* max width 992px */
@media screen and (max-width: 991px) {
.home__content h1 {
font-size: 50px;
}
.center-title {
padding: 0 15px;
padding-bottom: 15px;
}
.footer__copyright-text {
padding: 0;
}
}
/* max width 768px */
@media screen and (max-width: 768px) {
.header__logo {
min-height: 65px;
}
.nav__items li {
float: none;
}
.home__profile-img {
width: 170px;
height: 170px;
}
.nav__items {
width: 100%;
background: #fff;
text-align: center;
overflow: scroll;
display: none;
}
.nav__items li a {
border-top: 1px solid #efefef;
line-height: 45px;
font-size: 11px;
color: #000;
}
.nav__items li a:hover:after {
width: 0%;
}
.nav--active:after {
display: none;
}
.home__content h1 {
font-size: 32px !important;
margin-bottom: 10px;
}
.home__social-networks {
display: none;
}
.about__quote {
font-size: 1.6rem;
}
.service {
margin-top: 30px;
}
.service__icon {
font-size: 23px;
width: 12%;
}
.footer__social-networks a {
margin: 0 10px;
font-size: 12px;
}
.backtop {
right: 15px !important;
bottom: 70px !important;
}
.responsive {
display: block;
}
}
/* between 480 768px */
@media screen and (min-width: 480px) and (max-width: 768px) {
.home__content h1 {
font-size: 40px !important;
}
.footer__copyright-text {
padding: 0;
}
}
/* min width 768px */
@media screen and (min-width: 768px) {
.nav__items {
display: block !important;
}
} | 0.395484 | 0.057626 |
@import url(http://fonts.googleapis.com/css?family=Laila:400,700);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
outline: none;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html { overflow-y: scroll; }
body {
font-family: Arial, Tahoma, sans-serif;
background-image: url('../images/bg.jpg');
background-size:cover;
background-repeat:no-repeat;
font-size: 62.5%;
line-height: 1;
padding-top: 40px;
}
br { display: block; line-height: 1.6em; }
input, textarea {
-webkit-font-smoothing: antialiased;
outline: none;
}
strong, b { font-weight: bold; }
em, i { font-style: italic; }
h1 {
display: block;
font-size: 4.0em;
line-height: 1.0em;
/*font-family: "Philosopher", sans-serif;*/
font-family: "Gotham Medium", system, sans-serif;
text-align: center;
font-weight: bold;
color: #FFF;
/*text-shadow: 1px 1px 0 #fff;*/
}
h1 > img {
vertical-align:middle;
padding-right:1.0em;
}
h2 {
display: block;
font-size: 1.5em;
/*line-height: 1.45em;*/
font-family: "Philosopher", sans-serif;
text-align: center;
font-weight: bold;
/*color: #e82127;*/
text-shadow: 1px 1px 0 #fff;
}
h3 {
display: block;
font-size: 1.0em;
/*line-height: 1.45em;*/
font-family: "Philosopher", sans-serif;
text-align: center;
font-weight: bold;
/*color: #e82127;*/
text-shadow: 1px 1px 0 #fff;
}
sup {
vertical-align: super;
font-size: 0.5em;
font-weight: normal;
}
/** form field **/
form {
display: block;
margin: 30px 30px 7px 30px;
overflow: hidden;
background: #fff;
border: 1px solid #e4e4e4;
border-radius: 5px;
font-size: 0;
}
form > div > label {
display: block;
padding: 20px 20px 10px;
vertical-align: top;
font-size: 38px;
font-weight: bold;
text-transform: uppercase;
color: #000;
cursor: pointer;
}
form > div.switch > label {
padding: 16px 20px 13px;
}
.col-2, .col-3, .col-4 {
border-bottom: 1px solid #940f13;
}
form > div > .col-4 {
height: 86px;
}
label > input {
display: inline-block;
position: relative;
width: 100%;
height: 75px;
line-height: 75px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #555;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 60px;
opacity: .6;
transition: all linear .3s;
background-image: url("../images/edit.png");
background-position: right top;
background-repeat: no-repeat;
background-size: 1.5em;
}
.resultInput {
display: inline-block;
position: relative;
width: 100%;
height: 75px;
line-height: 75px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #000;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 70px;
opacity: 1;
transition: all linear .3s;
}
.col-submit {
text-align: center;
padding: 20px;
}
label > select {
display: block;
width: 100%;
padding: 0;
color: #555;
margin: 16px 0 6px;
font-weight: 500;
background: transparent;
border: none;
outline: none;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
opacity: .4;
transition: all linear .3s;
}
label > input:focus, label > select:focus {
opacity: 1;
}
/** button design based on http://codepen.io/guvootes/pen/eyDAb **/
button {
width: 100%;
height: 90px;
border: none;
border-radius: 4px;
margin: 0 0 15px 0;
font-size: 40px;
color: #fff;
font-weight: bold;
text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
overflow: hidden;
outline: none;
}
button.submitbtn {
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
border-bottom: 1px solid #940f13;
cursor: pointer;
color: #fff;
}
button.submitbtn:hover {
background-image: -moz-linear-gradient(#e82127, #d9161c);
background-image: -webkit-linear-gradient(#e82127, #d9161c);
background-image: linear-gradient(#e82127, #d9161c);
}
button.submitbtn:active {
height: 90px;
border-bottom: 0;
margin: 1px 0 0 0;
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
-moz-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
}
/** responsive design **/
@media (min-width: 1000px) {
form > div { display: inline-block; }
.col-submit { display: block; }
.col-2, .col-3, .col-4 { box-shadow: 1px 1px #e4e4e4; border: none; }
.col-2 { width: 50% }
.col-3 { width: 33.3333333333% }
.col-4 { width: 25% }
.col-submit button { width: 30%; margin: 0 auto; }
.resultInput {
display: inline-block;
position: relative;
width: 100%;
height: 27px;
line-height: 27px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #000;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 22px;
opacity: 1;
transition: all linear .3s;
}
label > input {
display: inline-block;
position: relative;
width: 100%;
height: 27px;
line-height: 27px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #555;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 14px;
opacity: .6;
transition: all linear .3s;
background-image: url("../images/edit.png");
background-position: right top;
background-repeat: no-repeat;
background-size: 1.5em;
}
form > div > label {
display: block;
padding: 20px 20px 10px;
vertical-align: top;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
color: #000;
cursor: pointer;
}
button {
width: 100%;
height: 34px;
border: none;
border-radius: 4px;
margin: 0 0 15px 0;
font-size: 16px;
color: #fff;
font-weight: bold;
text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
overflow: hidden;
outline: none;
}
button.submitbtn {
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
border-bottom: 1px solid #940f13;
cursor: pointer;
color: #fff;
height: 34px;
}
button.submitbtn:hover {
background-image: -moz-linear-gradient(#e82127, #d9161c);
background-image: -webkit-linear-gradient(#e82127, #d9161c);
background-image: linear-gradient(#e82127, #d9161c);
}
button.submitbtn:active {
height: 34px;
border-bottom: 0;
margin: 1px 0 0 0;
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
-moz-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
}
.check {
}
}
#veh1{
background-image:url('../images/fordfusion.png');
}
#veh2{
background-image:url('../images/mercedescclass.png');
}
#veh3{
background-image:url('../images/bmw3series.png');
}
.cc-selector input{
margin:0;padding:0;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
}
.cc-selector input:active +.car-cc{opacity: .9;}
.car-cc{
cursor:pointer;
background-size:contain;
background-repeat:no-repeat;
display:inline-block;
width:100px;height:70px;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.2) grayscale(1) opacity(.7);
-moz-filter: brightness(1.2) grayscale(1) opacity(.7);
filter: brightness(1.2) grayscale(1) opacity(.7);
}
.car-cc:hover{
-webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
-moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
filter: brightness(1.2) grayscale(.5) opacity(.9);
}
.car-cc-checked{
-webkit-filter: none;
-moz-filter: none;
filter: none;
}
#evMonthly{
background-image: url("../images/model3.png");
background-position: right top;
background-repeat: no-repeat;
background-size: contain;
}
#evTco{
background-image: url("../images/model3.png");
background-position: right top;
background-repeat: no-repeat;
background-size: contain;
}
.check {
width:1em;
height:1em;
}
#footer {
color:#DCDCDC;
font-size:8px;
}
#footer > a:link, a:visited, a:hover, a:active {
color:#e82127;
} | src/html/css/styles.css | @import url(http://fonts.googleapis.com/css?family=Laila:400,700);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
outline: none;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html { overflow-y: scroll; }
body {
font-family: Arial, Tahoma, sans-serif;
background-image: url('../images/bg.jpg');
background-size:cover;
background-repeat:no-repeat;
font-size: 62.5%;
line-height: 1;
padding-top: 40px;
}
br { display: block; line-height: 1.6em; }
input, textarea {
-webkit-font-smoothing: antialiased;
outline: none;
}
strong, b { font-weight: bold; }
em, i { font-style: italic; }
h1 {
display: block;
font-size: 4.0em;
line-height: 1.0em;
/*font-family: "Philosopher", sans-serif;*/
font-family: "Gotham Medium", system, sans-serif;
text-align: center;
font-weight: bold;
color: #FFF;
/*text-shadow: 1px 1px 0 #fff;*/
}
h1 > img {
vertical-align:middle;
padding-right:1.0em;
}
h2 {
display: block;
font-size: 1.5em;
/*line-height: 1.45em;*/
font-family: "Philosopher", sans-serif;
text-align: center;
font-weight: bold;
/*color: #e82127;*/
text-shadow: 1px 1px 0 #fff;
}
h3 {
display: block;
font-size: 1.0em;
/*line-height: 1.45em;*/
font-family: "Philosopher", sans-serif;
text-align: center;
font-weight: bold;
/*color: #e82127;*/
text-shadow: 1px 1px 0 #fff;
}
sup {
vertical-align: super;
font-size: 0.5em;
font-weight: normal;
}
/** form field **/
form {
display: block;
margin: 30px 30px 7px 30px;
overflow: hidden;
background: #fff;
border: 1px solid #e4e4e4;
border-radius: 5px;
font-size: 0;
}
form > div > label {
display: block;
padding: 20px 20px 10px;
vertical-align: top;
font-size: 38px;
font-weight: bold;
text-transform: uppercase;
color: #000;
cursor: pointer;
}
form > div.switch > label {
padding: 16px 20px 13px;
}
.col-2, .col-3, .col-4 {
border-bottom: 1px solid #940f13;
}
form > div > .col-4 {
height: 86px;
}
label > input {
display: inline-block;
position: relative;
width: 100%;
height: 75px;
line-height: 75px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #555;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 60px;
opacity: .6;
transition: all linear .3s;
background-image: url("../images/edit.png");
background-position: right top;
background-repeat: no-repeat;
background-size: 1.5em;
}
.resultInput {
display: inline-block;
position: relative;
width: 100%;
height: 75px;
line-height: 75px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #000;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 70px;
opacity: 1;
transition: all linear .3s;
}
.col-submit {
text-align: center;
padding: 20px;
}
label > select {
display: block;
width: 100%;
padding: 0;
color: #555;
margin: 16px 0 6px;
font-weight: 500;
background: transparent;
border: none;
outline: none;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
opacity: .4;
transition: all linear .3s;
}
label > input:focus, label > select:focus {
opacity: 1;
}
/** button design based on http://codepen.io/guvootes/pen/eyDAb **/
button {
width: 100%;
height: 90px;
border: none;
border-radius: 4px;
margin: 0 0 15px 0;
font-size: 40px;
color: #fff;
font-weight: bold;
text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
overflow: hidden;
outline: none;
}
button.submitbtn {
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
border-bottom: 1px solid #940f13;
cursor: pointer;
color: #fff;
}
button.submitbtn:hover {
background-image: -moz-linear-gradient(#e82127, #d9161c);
background-image: -webkit-linear-gradient(#e82127, #d9161c);
background-image: linear-gradient(#e82127, #d9161c);
}
button.submitbtn:active {
height: 90px;
border-bottom: 0;
margin: 1px 0 0 0;
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
-moz-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
}
/** responsive design **/
@media (min-width: 1000px) {
form > div { display: inline-block; }
.col-submit { display: block; }
.col-2, .col-3, .col-4 { box-shadow: 1px 1px #e4e4e4; border: none; }
.col-2 { width: 50% }
.col-3 { width: 33.3333333333% }
.col-4 { width: 25% }
.col-submit button { width: 30%; margin: 0 auto; }
.resultInput {
display: inline-block;
position: relative;
width: 100%;
height: 27px;
line-height: 27px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #000;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 22px;
opacity: 1;
transition: all linear .3s;
}
label > input {
display: inline-block;
position: relative;
width: 100%;
height: 27px;
line-height: 27px;
margin: 5px -5px 0;
padding: 7px 5px 3px;
border: none;
outline: none;
color: #555;
font-family: 'Helvetica Neue', Arial, sans-serif;
font-weight: bold;
font-size: 14px;
opacity: .6;
transition: all linear .3s;
background-image: url("../images/edit.png");
background-position: right top;
background-repeat: no-repeat;
background-size: 1.5em;
}
form > div > label {
display: block;
padding: 20px 20px 10px;
vertical-align: top;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
color: #000;
cursor: pointer;
}
button {
width: 100%;
height: 34px;
border: none;
border-radius: 4px;
margin: 0 0 15px 0;
font-size: 16px;
color: #fff;
font-weight: bold;
text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
overflow: hidden;
outline: none;
}
button.submitbtn {
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
border-bottom: 1px solid #940f13;
cursor: pointer;
color: #fff;
height: 34px;
}
button.submitbtn:hover {
background-image: -moz-linear-gradient(#e82127, #d9161c);
background-image: -webkit-linear-gradient(#e82127, #d9161c);
background-image: linear-gradient(#e82127, #d9161c);
}
button.submitbtn:active {
height: 34px;
border-bottom: 0;
margin: 1px 0 0 0;
background-image: -moz-linear-gradient(#d9161c, #e82127);
background-image: -webkit-linear-gradient(#d9161c, #e82127);
background-image: linear-gradient(#d9161c, #e82127);
-moz-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 1px 3px 1px rgba(0, 0, 0, 0.3);
}
.check {
}
}
#veh1{
background-image:url('../images/fordfusion.png');
}
#veh2{
background-image:url('../images/mercedescclass.png');
}
#veh3{
background-image:url('../images/bmw3series.png');
}
.cc-selector input{
margin:0;padding:0;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
}
.cc-selector input:active +.car-cc{opacity: .9;}
.car-cc{
cursor:pointer;
background-size:contain;
background-repeat:no-repeat;
display:inline-block;
width:100px;height:70px;
-webkit-transition: all 100ms ease-in;
-moz-transition: all 100ms ease-in;
transition: all 100ms ease-in;
-webkit-filter: brightness(1.2) grayscale(1) opacity(.7);
-moz-filter: brightness(1.2) grayscale(1) opacity(.7);
filter: brightness(1.2) grayscale(1) opacity(.7);
}
.car-cc:hover{
-webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
-moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
filter: brightness(1.2) grayscale(.5) opacity(.9);
}
.car-cc-checked{
-webkit-filter: none;
-moz-filter: none;
filter: none;
}
#evMonthly{
background-image: url("../images/model3.png");
background-position: right top;
background-repeat: no-repeat;
background-size: contain;
}
#evTco{
background-image: url("../images/model3.png");
background-position: right top;
background-repeat: no-repeat;
background-size: contain;
}
.check {
width:1em;
height:1em;
}
#footer {
color:#DCDCDC;
font-size:8px;
}
#footer > a:link, a:visited, a:hover, a:active {
color:#e82127;
} | 0.348867 | 0.086593 |
body {
margin: 0;
padding: 0;
background-color: #ffffff;
font-family: Verdana, Helvetica, sans-serif;
overflow: scroll;
}
a {
text-decoration: underline;
}
a :hover {
cursor: pointer;
text-decoration: underline;
}
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
font-size: 85%;
padding: 4px;
}
img {
border: none;
}
ul.menubar {
list-style-type: none;
margin: 0;
padding: 0;
}
ul.menubar li {
float: left;
}
ul.menubar li a.icon {
display: inline-block;
font-size: 125%;
text-align: center;
text-decoration: none;
padding: 7px 10px;
}
ul.menubar li a {
display: inline-block;
text-align: center;
text-decoration: none;
padding: 10px 10px;
}
ul.menubar li a:hover {
background-color: lightcyan;
color: black;
}
ul.menubar li button:hover {
background-color: lightcyan;
color: black;
}
ol.submissions {
list-style-type: none;
}
ol.submissions li {
float: left;
width: 8em;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 1em;
padding-bottom: 1ex;
}
ol.submissions:after {
content: '';
display: block;
clear: both;
}
#content {
padding-top: 3em;
margin-left: 1em;
margin-right: 1em;
width: auto;
height: auto;
/*
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow-y: scroll;
*/
}
#actions {
position: fixed;
width: auto;
height: 1.5em;
left: 0em;
right: 0em;
top: 0em;
bottom: auto;
padding-left: 1em;
padding-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
background-color: cyan;
z-index: 10;
}
#uppercorner {
position: fixed;
top: 20px;
right: 20px;
left: auto;
width: 30em;
text-align: right;
}
.info {
color: #0f0f0f;
font-size: 90%;
font-style: italic;
}
.error {
color: red;
font-size: 100%;
font-style: oblique;
}
.tag {
color: #505050;
font-size: 90%;
font-style: oblique;
}
.warnings {
margin-top: 4ex;
margin-bottom: 4ex;
padding-left: 1em;
padding-right: 1em;
color: red;
font-style: oblique;
}
.errors {
margin-top: 4ex;
margin-bottom: 4ex;
padding-left: 1em;
padding-right: 1em;
color: red;
}
.js-timer {
font-style: italic;
}
#footer {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
width: auto;
height: 1em;
clear: both;
background-color: cyan;
padding-top: 2ex;
padding-bottom: 2ex;
margin-left: 0;
margin-right: 0;
padding-left: 1em;
}
pre {
background-color: #ffffcc;
padding: 1em;
left: 1em;
right: 1em;
width: auto;
overflow-x: auto;
}
#editor {
/*
position: fixed;
left: 10px;
right: 10px;
top: 220px;
bottom: 10px;
width: auto;
height: auto;
*/
left: 0px;
right: 0px;
width: 100%;
height: 60vh;
}
.hidden { display:none; }
.disabled { color: #A0A0A0; }
td.filename {
font-family: monospace;
padding-left: 0.5em;
padding-right: 4em;
}
td.filetype {
font-family: monospace;
padding-left: 2em;
padding-right: 2em;
}
td.filemodified {
padding-left: 2em;
padding-right: 2em;
}
table.filelist tr:nth-child(even) {
background: #eeeeee;
}
table.filelist tr:nth-child(odd) {
background: white;
}
table.submissions tr:nth-child(2n+2) {
background: white;
}
table.submissions tr:nth-child(2n+3) {
background: #eeeeee;
}
table.submissions td.path, td.userid {
font-family: monospace;
}
table.submissions td.received {
font-size: 80%;
}
table.submissions td.check {
width: 8em;
overflow: hidden;
text-overflow: ellipsis;
}
.Accepted {
color: green;
font-weight: bold;
white-space: nowrap;
}
.WrongAnswer {
color: red;
white-space: nowrap;
}
.PresentationError,
.CompileError,
.RuntimeError,
.MiscError,
.MemoryLimitExceeded,
.TimeLimitExceeded {
color: black;
white-space: nowrap;
}
.Evaluating {
color: black;
font-style: oblique;
white-space: nowrap;
}
/* --- Quiz answers --- */
.fillin {
padding: 0.5ex;
}
.wrong {
/* text-decoration: line-through; */
}
.missing {
border-bottom: 2px dotted;
padding: 2px;
}
/* --- Code highlighting ---
.sourceCode .kw { font-weight: bold; color: blue; }
.sourceCode .co { color: darkgreen; }
.sourceCode .st { color: darkgreen; }
*/
/* -- Tabbing --- */
/* Style the tab */
.tab {
right: 0px;
left: 0px;
bottom: 2.5em;
overflow: hidden;
padding-top: 5px;
margin-top: 5px;
width: auto;
border-bottom: 1px solid black;
border-right: none;
border-top: none;
border-left: none;
}
/* Style the buttons that are used to open the tab content */
button.tablinks {
background-color: inherit;
font-size: 100%;
float: left;
cursor: pointer;
padding: 10px 10px;
/* transition: 0.3s; */
border: none;
}
/* Create an active/current tablink class */
button.tablinks.active {
background-color: darkcyan;
color: white;
border: none;
}
/* Style the tab content */
.tabcontent {
display: none;
}
body {
counter-reset: questions;
}
h1.question:before,h2.question:before,h3.question:before {
content: counter(questions) ".";
counter-increment: questions;
}
h1.question, h2.question, h3.question {
font-size: 100%;
} | static/screen.css | body {
margin: 0;
padding: 0;
background-color: #ffffff;
font-family: Verdana, Helvetica, sans-serif;
overflow: scroll;
}
a {
text-decoration: underline;
}
a :hover {
cursor: pointer;
text-decoration: underline;
}
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
font-size: 85%;
padding: 4px;
}
img {
border: none;
}
ul.menubar {
list-style-type: none;
margin: 0;
padding: 0;
}
ul.menubar li {
float: left;
}
ul.menubar li a.icon {
display: inline-block;
font-size: 125%;
text-align: center;
text-decoration: none;
padding: 7px 10px;
}
ul.menubar li a {
display: inline-block;
text-align: center;
text-decoration: none;
padding: 10px 10px;
}
ul.menubar li a:hover {
background-color: lightcyan;
color: black;
}
ul.menubar li button:hover {
background-color: lightcyan;
color: black;
}
ol.submissions {
list-style-type: none;
}
ol.submissions li {
float: left;
width: 8em;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 1em;
padding-bottom: 1ex;
}
ol.submissions:after {
content: '';
display: block;
clear: both;
}
#content {
padding-top: 3em;
margin-left: 1em;
margin-right: 1em;
width: auto;
height: auto;
/*
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow-y: scroll;
*/
}
#actions {
position: fixed;
width: auto;
height: 1.5em;
left: 0em;
right: 0em;
top: 0em;
bottom: auto;
padding-left: 1em;
padding-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
background-color: cyan;
z-index: 10;
}
#uppercorner {
position: fixed;
top: 20px;
right: 20px;
left: auto;
width: 30em;
text-align: right;
}
.info {
color: #0f0f0f;
font-size: 90%;
font-style: italic;
}
.error {
color: red;
font-size: 100%;
font-style: oblique;
}
.tag {
color: #505050;
font-size: 90%;
font-style: oblique;
}
.warnings {
margin-top: 4ex;
margin-bottom: 4ex;
padding-left: 1em;
padding-right: 1em;
color: red;
font-style: oblique;
}
.errors {
margin-top: 4ex;
margin-bottom: 4ex;
padding-left: 1em;
padding-right: 1em;
color: red;
}
.js-timer {
font-style: italic;
}
#footer {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
width: auto;
height: 1em;
clear: both;
background-color: cyan;
padding-top: 2ex;
padding-bottom: 2ex;
margin-left: 0;
margin-right: 0;
padding-left: 1em;
}
pre {
background-color: #ffffcc;
padding: 1em;
left: 1em;
right: 1em;
width: auto;
overflow-x: auto;
}
#editor {
/*
position: fixed;
left: 10px;
right: 10px;
top: 220px;
bottom: 10px;
width: auto;
height: auto;
*/
left: 0px;
right: 0px;
width: 100%;
height: 60vh;
}
.hidden { display:none; }
.disabled { color: #A0A0A0; }
td.filename {
font-family: monospace;
padding-left: 0.5em;
padding-right: 4em;
}
td.filetype {
font-family: monospace;
padding-left: 2em;
padding-right: 2em;
}
td.filemodified {
padding-left: 2em;
padding-right: 2em;
}
table.filelist tr:nth-child(even) {
background: #eeeeee;
}
table.filelist tr:nth-child(odd) {
background: white;
}
table.submissions tr:nth-child(2n+2) {
background: white;
}
table.submissions tr:nth-child(2n+3) {
background: #eeeeee;
}
table.submissions td.path, td.userid {
font-family: monospace;
}
table.submissions td.received {
font-size: 80%;
}
table.submissions td.check {
width: 8em;
overflow: hidden;
text-overflow: ellipsis;
}
.Accepted {
color: green;
font-weight: bold;
white-space: nowrap;
}
.WrongAnswer {
color: red;
white-space: nowrap;
}
.PresentationError,
.CompileError,
.RuntimeError,
.MiscError,
.MemoryLimitExceeded,
.TimeLimitExceeded {
color: black;
white-space: nowrap;
}
.Evaluating {
color: black;
font-style: oblique;
white-space: nowrap;
}
/* --- Quiz answers --- */
.fillin {
padding: 0.5ex;
}
.wrong {
/* text-decoration: line-through; */
}
.missing {
border-bottom: 2px dotted;
padding: 2px;
}
/* --- Code highlighting ---
.sourceCode .kw { font-weight: bold; color: blue; }
.sourceCode .co { color: darkgreen; }
.sourceCode .st { color: darkgreen; }
*/
/* -- Tabbing --- */
/* Style the tab */
.tab {
right: 0px;
left: 0px;
bottom: 2.5em;
overflow: hidden;
padding-top: 5px;
margin-top: 5px;
width: auto;
border-bottom: 1px solid black;
border-right: none;
border-top: none;
border-left: none;
}
/* Style the buttons that are used to open the tab content */
button.tablinks {
background-color: inherit;
font-size: 100%;
float: left;
cursor: pointer;
padding: 10px 10px;
/* transition: 0.3s; */
border: none;
}
/* Create an active/current tablink class */
button.tablinks.active {
background-color: darkcyan;
color: white;
border: none;
}
/* Style the tab content */
.tabcontent {
display: none;
}
body {
counter-reset: questions;
}
h1.question:before,h2.question:before,h3.question:before {
content: counter(questions) ".";
counter-increment: questions;
}
h1.question, h2.question, h3.question {
font-size: 100%;
} | 0.412885 | 0.095518 |
@charset "utf-8";
/*DATA TABLE*/
.paging_two_button .ui-button {
float: left;
cursor: pointer;
* cursor: hand;
}
.paging_full_numbers .ui-button {
padding: 2px 6px;
margin: 0;
cursor: pointer;
* cursor: hand;
color: #333 !important;
}
.dataTables_paginate .ui-button {
margin-right: -0.1em !important;
}
.paging_full_numbers {
width: 350px !important;
}
.dataTables_wrapper .ui-toolbar {
padding: 5px;
}
.dataTables_paginate {
width: auto;
}
.dataTables_info {
padding-top: 3px;
}
table.display thead th {
padding: 3px 0px 3px 10px;
cursor: pointer;
* cursor: hand;
}
div.dataTables_wrapper .ui-widget-header {
font-weight: normal;
}
/*
* Sort arrow icon positioning
*/
table.display thead th div.DataTables_sort_wrapper {
position: relative;
padding-right: 20px;
padding-right: 20px;
}
table.display thead th div.DataTables_sort_wrapper span {
position: absolute;
top: 50%;
margin-top: -8px;
right: 0;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Everything below this line is the same as demo_table.css. This file is
* required for 'cleanliness' of the markup
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables features
*/
.dataTables_wrapper {
position: relative;
clear: both;
}
.dataTables_processing {
position: absolute;
top: 0px;
left: 50%;
width: 250px;
margin-left: -125px;
border: 1px solid #ddd;
text-align: center;
color: #999;
font-size: 11px;
padding: 2px 0;
}
.dataTables_length{
width: 40%;
float: left;
color:#FFFFFF;
padding:2px 0px 0px 6px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_length label{
color:#FFFFFF;}
.dataTables_length label select{
padding:3px 5px;
border:1px solid #b5b6b3;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
color:#8a8a8a;
font-size:13px;
margin:0px 5px 0px 5px;
}
.dataTables_filter {
width: 50%;
float: right;
text-align: right;
color:#FFFFFF;
padding:2px 6px 0px 0px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_filter label{
color:#FFFFFF;}
.dataTables_filter input[type='text']{
padding:4px 5px;
border:1px solid #b5b6b3;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
color:#8a8a8a;
font-size:13px;
margin-left:5px;
}
.dataTables_info {
width: 30%;
float: left;
color:#FFFFFF;
padding:5px 0px 0px 6px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_info label{
color:#FFFFFF;}
.dataTables_paginate {
float: right;
text-align: right;
padding:5px 6px 0px 0px;
}
/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
height: 19px;
width: 19px;
margin-left: 3px;
float: left;
}
.paginate_disabled_previous {
background-image: url('../images/back_disabled.html');
}
.paginate_enabled_previous {
background-image: url('../images/back_enabled.html');
}
.paginate_disabled_next {
background-image: url('../images/forward_disabled.html');
}
.paginate_enabled_next {
background-image: url('../images/forward_enabled.html');
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables display
*/
table.display {
margin: 0 auto;
width: 100%;
clear: both;
border-collapse: collapse;
}
table.display tfoot th {
padding: 3px 0px 3px 10px;
font-weight: bold;
font-weight: normal;
}
table.display tr.heading2 td {
border-bottom: 1px solid #e6e6e6;
}
table.display td {
padding: 8px 10px;
border-right: #aac0d2 1px solid;
color:#5c5c5c;
text-shadow: 1px 1px 0px #fff;
font-size:14px;
}
table.display td.center {
text-align: center;
}
table.display td:first-child{
border-left:1px solid #aac0d2;}
tr.odd {
background-color: #c9d8e6;
}
tr.even {
background-color:#e9eced;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Misc
*/
.dataTables_scroll {
clear: both;
}
.top, .bottom {
padding: 15px;
background-color: #F5F5F5;
border: 1px solid #CCCCCC;
}
.top .dataTables_info {
float: none;
}
.dataTables_empty {
text-align: center;
}
tfoot input {
margin: 0.5em 0;
width: 100%;
color: #444;
}
tfoot input.search_init {
color: #999;
}
td.group {
background-color: #d1cfd0;
border-bottom: 2px solid #A19B9E;
border-top: 2px solid #A19B9E;
}
td.details {
background-color: #d1cfd0;
border: 2px solid #A19B9E;
}
.example_alt_pagination div.dataTables_info {
width: 40%;
}
.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active {
border: 1px solid #aaa;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 2px 5px;
margin: 0 3px;
cursor: pointer;
*cursor: hand;
color: #333 !important;
}
.paging_full_numbers a.paginate_button {
background-color: #ddd;
}
.paging_full_numbers a.paginate_button:hover {
background-color: #ccc;
text-decoration: none !important;
}
.paging_full_numbers a.paginate_active {
background-color: #99B3FF;
}
table.display tr.even.row_selected td {
background-color: #B0BED9;
}
table.display tr.odd.row_selected td {
background-color: #9FAFD1;
}
/*
* Sorting classes for columns
*/
/* For the standard odd/even */
tr.odd td.sorting_1 {
background-color: #c1d2e1;
}
tr.even td.sorting_1 {
background-color: #e8e9e9;
}
/* For the Conditional-CSS grading rows */
/*
Colour calculations (based off the main row colours)
Level 1:
dd > c4
ee > d5
Level 2:
dd > d1
ee > e2
*/
/*
* Row highlighting example
*/
#example tbody tr.even:hover, #example tbody tr.even td.highlighted {
background-color: #;
font-weight:bold;
letter-spacing:0.5px;
cursor:pointer;
}
#example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
background-color: #;
font-weight:bold;
letter-spacing:0.5px;
cursor:pointer;
}
.simple-table thead{
font-size:16px !important;
font-weight:normal !important;
color:#FFFFFF !important;
height:38px !important;
background:url(../images/header_bg.jpg) repeat-x left top;
border:1px solid #868686 !important;
-moz-border-radius:5px 5px 0px 0px !important;
-webkit-border-radius:5px 5px 0px 0px !important;
-khtml-border-radius:5px 5px 0px 0px !important;
border-radius:5px 5px 0px 0px !important;}
.simple-table thead th{
font-size:16px !important;
font-weight:normal !important;
color:#FFFFFF !important;}
.simple-table-header th{
}
.simple-table-footer{
font-size:16px;
font-weight:normal;
padding:5px 10px;
} | css/data-table.css | @charset "utf-8";
/*DATA TABLE*/
.paging_two_button .ui-button {
float: left;
cursor: pointer;
* cursor: hand;
}
.paging_full_numbers .ui-button {
padding: 2px 6px;
margin: 0;
cursor: pointer;
* cursor: hand;
color: #333 !important;
}
.dataTables_paginate .ui-button {
margin-right: -0.1em !important;
}
.paging_full_numbers {
width: 350px !important;
}
.dataTables_wrapper .ui-toolbar {
padding: 5px;
}
.dataTables_paginate {
width: auto;
}
.dataTables_info {
padding-top: 3px;
}
table.display thead th {
padding: 3px 0px 3px 10px;
cursor: pointer;
* cursor: hand;
}
div.dataTables_wrapper .ui-widget-header {
font-weight: normal;
}
/*
* Sort arrow icon positioning
*/
table.display thead th div.DataTables_sort_wrapper {
position: relative;
padding-right: 20px;
padding-right: 20px;
}
table.display thead th div.DataTables_sort_wrapper span {
position: absolute;
top: 50%;
margin-top: -8px;
right: 0;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Everything below this line is the same as demo_table.css. This file is
* required for 'cleanliness' of the markup
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables features
*/
.dataTables_wrapper {
position: relative;
clear: both;
}
.dataTables_processing {
position: absolute;
top: 0px;
left: 50%;
width: 250px;
margin-left: -125px;
border: 1px solid #ddd;
text-align: center;
color: #999;
font-size: 11px;
padding: 2px 0;
}
.dataTables_length{
width: 40%;
float: left;
color:#FFFFFF;
padding:2px 0px 0px 6px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_length label{
color:#FFFFFF;}
.dataTables_length label select{
padding:3px 5px;
border:1px solid #b5b6b3;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
color:#8a8a8a;
font-size:13px;
margin:0px 5px 0px 5px;
}
.dataTables_filter {
width: 50%;
float: right;
text-align: right;
color:#FFFFFF;
padding:2px 6px 0px 0px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_filter label{
color:#FFFFFF;}
.dataTables_filter input[type='text']{
padding:4px 5px;
border:1px solid #b5b6b3;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-khtml-border-radius:5px;
border-radius:5px;
color:#8a8a8a;
font-size:13px;
margin-left:5px;
}
.dataTables_info {
width: 30%;
float: left;
color:#FFFFFF;
padding:5px 0px 0px 6px;
text-shadow: 1px 1px 0px #556f84;
}
.dataTables_info label{
color:#FFFFFF;}
.dataTables_paginate {
float: right;
text-align: right;
padding:5px 6px 0px 0px;
}
/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
height: 19px;
width: 19px;
margin-left: 3px;
float: left;
}
.paginate_disabled_previous {
background-image: url('../images/back_disabled.html');
}
.paginate_enabled_previous {
background-image: url('../images/back_enabled.html');
}
.paginate_disabled_next {
background-image: url('../images/forward_disabled.html');
}
.paginate_enabled_next {
background-image: url('../images/forward_enabled.html');
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables display
*/
table.display {
margin: 0 auto;
width: 100%;
clear: both;
border-collapse: collapse;
}
table.display tfoot th {
padding: 3px 0px 3px 10px;
font-weight: bold;
font-weight: normal;
}
table.display tr.heading2 td {
border-bottom: 1px solid #e6e6e6;
}
table.display td {
padding: 8px 10px;
border-right: #aac0d2 1px solid;
color:#5c5c5c;
text-shadow: 1px 1px 0px #fff;
font-size:14px;
}
table.display td.center {
text-align: center;
}
table.display td:first-child{
border-left:1px solid #aac0d2;}
tr.odd {
background-color: #c9d8e6;
}
tr.even {
background-color:#e9eced;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Misc
*/
.dataTables_scroll {
clear: both;
}
.top, .bottom {
padding: 15px;
background-color: #F5F5F5;
border: 1px solid #CCCCCC;
}
.top .dataTables_info {
float: none;
}
.dataTables_empty {
text-align: center;
}
tfoot input {
margin: 0.5em 0;
width: 100%;
color: #444;
}
tfoot input.search_init {
color: #999;
}
td.group {
background-color: #d1cfd0;
border-bottom: 2px solid #A19B9E;
border-top: 2px solid #A19B9E;
}
td.details {
background-color: #d1cfd0;
border: 2px solid #A19B9E;
}
.example_alt_pagination div.dataTables_info {
width: 40%;
}
.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active {
border: 1px solid #aaa;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 2px 5px;
margin: 0 3px;
cursor: pointer;
*cursor: hand;
color: #333 !important;
}
.paging_full_numbers a.paginate_button {
background-color: #ddd;
}
.paging_full_numbers a.paginate_button:hover {
background-color: #ccc;
text-decoration: none !important;
}
.paging_full_numbers a.paginate_active {
background-color: #99B3FF;
}
table.display tr.even.row_selected td {
background-color: #B0BED9;
}
table.display tr.odd.row_selected td {
background-color: #9FAFD1;
}
/*
* Sorting classes for columns
*/
/* For the standard odd/even */
tr.odd td.sorting_1 {
background-color: #c1d2e1;
}
tr.even td.sorting_1 {
background-color: #e8e9e9;
}
/* For the Conditional-CSS grading rows */
/*
Colour calculations (based off the main row colours)
Level 1:
dd > c4
ee > d5
Level 2:
dd > d1
ee > e2
*/
/*
* Row highlighting example
*/
#example tbody tr.even:hover, #example tbody tr.even td.highlighted {
background-color: #;
font-weight:bold;
letter-spacing:0.5px;
cursor:pointer;
}
#example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
background-color: #;
font-weight:bold;
letter-spacing:0.5px;
cursor:pointer;
}
.simple-table thead{
font-size:16px !important;
font-weight:normal !important;
color:#FFFFFF !important;
height:38px !important;
background:url(../images/header_bg.jpg) repeat-x left top;
border:1px solid #868686 !important;
-moz-border-radius:5px 5px 0px 0px !important;
-webkit-border-radius:5px 5px 0px 0px !important;
-khtml-border-radius:5px 5px 0px 0px !important;
border-radius:5px 5px 0px 0px !important;}
.simple-table thead th{
font-size:16px !important;
font-weight:normal !important;
color:#FFFFFF !important;}
.simple-table-header th{
}
.simple-table-footer{
font-size:16px;
font-weight:normal;
padding:5px 10px;
} | 0.212232 | 0.044101 |
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
img {
max-width: 100%;
display: block;
}
button {
background: transparent;
cursor: pointer;
}
html {
font-size: 62.5%;
}
@media (max-width: 1300px) {
html {
font-size: 58%;
}
}
@media (max-width: 991px) {
html {
font-size: 62.5%;
}
}
html,
body {
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 124.8rem;
padding: 0 1.6rem;
margin: 0 auto;
}
@-webkit-keyframes floating {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
66% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes floating {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
66% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
h1 {
font-weight: 600;
font-size: 6.4rem;
}
@media (max-width: 1050px) {
h1 {
font-size: 5.2rem;
}
}
@media (max-width: 991px) {
h1 {
font-size: 4.8rem;
}
}
h2 {
font-weight: bold;
font-size: 4rem;
}
h3 {
font-size: 2.4rem;
line-height: 150%;
}
h4 {
font-size: 2rem;
line-height: 112%;
}
h1,
h2 {
line-height: 112%;
letter-spacing: -0.1rem;
}
h3,
h4 {
font-weight: 500;
letter-spacing: -0.05rem;
}
h1,
h2,
h3,
h4 {
font-family: "Poppins", sans-serif;
color: #4e4b59;
}
.card-testimonial {
width: 100%;
max-width: 38.4rem;
height: 21.6rem;
background: rgba(241, 240, 245, 0.55);
border-radius: 8px;
padding: 3.7rem 3.2rem 2.3rem;
}
.card-testimonial .user {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 2.1rem;
}
.card-testimonial .user strong {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.8rem;
line-height: 112%;
letter-spacing: -0.1rem;
color: #4e4b59;
}
.card-testimonial p {
font-size: 1.8rem;
line-height: 150%;
color: #5f5c6b;
}
@media (max-width: 991px) {
.card-testimonial {
height: 25.6rem;
}
}
@media (max-width: 480px) {
.card-testimonial {
height: 29.6rem;
}
}
.btn-primary {
background-color: #ffc800;
color: #855b35;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.btn-primary:hover {
background-color: #ffdc5c;
}
.btn-secondary {
border: 1px solid #00a5f0;
color: #00a5f0;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.btn-secondary:hover {
background-color: #00a5f0;
color: #ffffff;
}
.btn-secondary.white {
border: 1px solid #ffffff;
color: #ffffff;
}
.btn-secondary.white:hover {
background-color: #ffffff;
color: #00d7d7;
}
.btn-primary,
.btn-secondary {
display: inline-block;
line-height: 4.8rem;
border-radius: 122px;
padding: 0 2.6rem;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.6rem;
}
header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 8.8rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
header .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
header nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
header nav ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: 5.9rem;
}
header nav ul li:not(:first-child) {
margin-left: 4.8rem;
}
header nav ul li a {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 125%;
color: #ffffff;
-webkit-transition: 0.3s;
transition: 0.3s;
}
header nav ul li a:hover {
color: #ffc800;
}
header .btn-mobile {
display: none;
}
@media (max-width: 1090px) {
header nav ul {
margin-right: 3rem;
}
header nav ul li:not(:first-child) {
margin-left: 2.5rem;
}
}
@media (max-width: 991px) {
header .logo {
max-width: 10.8rem;
}
header nav ul {
display: none;
}
header .btn-mobile {
display: block;
margin-left: 4rem;
}
}
@media (max-width: 480px) {
header {
height: 7.3rem;
}
header nav .btn-secondary {
display: none;
}
}
footer {
background: #0073ce;
padding-top: 4.9rem;
}
footer .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(73, 196, 253, 0.2);
padding-bottom: 4.8rem;
margin-bottom: 5.7rem;
}
footer .top .share {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
footer .top .share span {
font-size: 1.4rem;
line-height: 125%;
color: #ffffff;
opacity: 0.7;
}
footer .top .share ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: 3rem;
}
footer .top .share ul li:not(:first-child) {
margin-left: 3rem;
}
footer .main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(73, 196, 253, 0.2);
padding-bottom: 6.2rem;
margin-bottom: 3.9rem;
}
footer .main nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
max-width: 86rem;
}
footer .main nav .item strong {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.6rem;
line-height: 1.6rem;
color: #ffffff;
display: inline-block;
margin-bottom: 2.5rem;
}
footer .main nav .item ul li:not(:last-child) {
margin-bottom: 2.9rem;
}
footer .main nav .item ul li a {
font-size: 1.4rem;
line-height: 1.7rem;
color: #ffffff;
opacity: 0.7;
}
footer .main .btns {
width: 100%;
max-width: 28rem;
}
footer .main .btns button {
background: rgba(0, 164, 240, 0.23);
border-radius: 6px;
width: 100%;
height: 7.6rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-left: 2.5rem;
}
footer .main .btns button:not(:last-child) {
margin-bottom: 2.4rem;
}
footer .main .btns button .info {
margin-left: 2.4rem;
font-size: 1.4rem;
line-height: 150%;
color: #ffffff;
}
footer .main .btns button .info strong {
display: block;
text-align: left;
font-weight: bold;
}
footer .main .btns button .info span {
display: block;
}
footer .message {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
border-bottom: 4px solid #ffc800;
padding-bottom: 3.4rem;
}
footer .message .icon {
font-size: 1.8rem;
}
footer .message p {
width: 100%;
max-width: 66rem;
margin-left: 2.5rem;
font-size: 1.4rem;
line-height: 150%;
color: #ffffff;
opacity: 0.8;
}
@media (max-width: 1050px) {
footer .main nav {
max-width: 76rem;
}
}
@media (max-width: 991px) {
footer .main {
width: 100%;
position: relative;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding-bottom: 3.6rem;
}
footer .main nav {
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
footer .main nav .item {
width: 33%;
margin-bottom: 5rem;
}
footer .main .btns {
position: absolute;
bottom: 14rem;
right: 0;
}
footer .message {
-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;
}
footer .message p {
margin-left: 0;
text-align: center;
margin-top: 1rem;
}
}
@media (max-width: 600px) {
footer .main {
margin-bottom: 3rem;
}
footer .main .btns {
max-width: 25rem;
}
footer .main .btns button img {
display: none;
}
footer .main .btns button .info {
margin-left: 0;
}
}
@media (max-width: 480px) {
footer .top {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-bottom: 4.3rem;
margin-bottom: 5.2rem;
}
footer .top .share {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 3.2rem;
}
footer .top .share ul {
margin-top: 20px;
margin-left: 0;
}
footer .main nav .item {
width: 50%;
margin-bottom: 5.3rem;
}
footer .main .btns {
bottom: 0;
position: relative;
max-width: 100%;
}
footer .main .btns button {
padding-left: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
footer .main .btns button .info strong,
footer .main .btns button .info span {
text-align: center;
}
}
.s-hero {
width: 100%;
height: 78.6rem;
background: url("../../img/bg-hero.svg") no-repeat center center;
padding-top: 17.5rem;
}
.s-hero .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.s-hero .text {
width: 100%;
max-width: 68.4rem;
}
.s-hero .text h3 {
font-weight: 600;
color: #ffffff;
opacity: 0.8;
margin-bottom: 3.2rem;
}
.s-hero .text h1 {
color: #ffffff;
margin-bottom: 3.9rem;
}
.s-hero .text ul {
margin-top: 6.4rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
max-width: 62.1rem;
}
.s-hero .text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-hero .text ul li .icon {
width: 48px;
height: 48px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(53, 202, 226, 0.4)), to(rgba(53, 202, 226, 0)));
background: linear-gradient(180deg, rgba(53, 202, 226, 0.4) 0%, rgba(53, 202, 226, 0) 100%);
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-right: 1.2rem;
}
.s-hero .text ul li span {
font-size: 1.8rem;
line-height: 2.2rem;
color: #ffffff;
}
.s-hero .area-image {
width: 100%;
max-width: 70.6rem;
margin-right: -17.4rem;
}
.s-hero .area-image h2 {
margin-bottom: 6.7rem;
text-align: center;
font-weight: 600;
color: rgba(255, 255, 255, 0.4);
}
.s-hero .area-image .image {
position: relative;
top: 3.2rem;
width: 100%;
height: 54.1rem;
}
.s-hero .area-image .image img {
position: absolute;
}
.s-hero .area-image .image .card-front {
top: 4.1rem;
left: 0;
z-index: 2;
max-width: 43.5rem;
-webkit-animation: floating 6s infinite;
animation: floating 6s infinite;
}
.s-hero .area-image .image .card-back {
bottom: 4.6rem;
right: 8.6rem;
z-index: 1;
max-width: 35.2rem;
-webkit-animation: floating 6s infinite 1s;
animation: floating 6s infinite 1s;
}
.s-hero .area-image .image .circle {
top: 2.8rem;
right: 4.3rem;
}
@media (max-width: 1440px) {
.s-hero .area-image {
margin-right: -13.4rem;
}
}
@media (max-width: 1366px) {
.s-hero .area-image {
margin-right: -8rem;
}
.s-hero .area-image .image .card-back {
right: 4rem;
}
}
@media (max-width: 1050px) {
.s-hero {
padding-top: 14.5rem;
height: 65.6rem;
}
.s-hero .text ul {
margin-top: 4.5rem;
}
.s-hero .area-image {
margin-right: -10px;
}
.s-hero .area-image h2 {
margin-bottom: 1.5rem;
}
.s-hero .area-image .image {
height: 45rem;
}
.s-hero .area-image .image .card-front {
max-width: 35rem;
top: 8rem;
}
.s-hero .area-image .image .card-back {
max-width: 29rem;
bottom: 0;
}
.s-hero .area-image .image .circle {
max-width: 46rem;
}
}
@media (max-width: 991px) {
.s-hero {
height: 89.1rem;
background-size: cover;
}
.s-hero .container {
-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;
}
.s-hero .text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
margin-bottom: 5rem;
max-width: 68.5rem;
}
.s-hero .text h3 {
text-align: center;
}
.s-hero .text h1 {
text-align: center;
margin-bottom: 2.6rem;
}
.s-hero .text ul {
margin-top: 3.9rem;
}
.s-hero .area-image h2 {
margin-bottom: 1.9rem;
}
.s-hero .area-image .image {
max-width: 51.1rem;
margin: 0 auto;
height: 42.4rem;
top: 0;
}
.s-hero .area-image .image .circle {
max-width: 42.9rem;
top: 0;
right: 1.3rem;
}
.s-hero .area-image .image .card-front {
max-width: 34rem;
top: 3.5rem;
left: 0;
}
.s-hero .area-image .image .card-back {
max-width: 27.4rem;
bottom: 3.6rem;
right: 2.9rem;
}
}
@media (max-width: 480px) {
.s-hero {
padding-top: 12.4rem;
height: 73.9rem;
}
.s-hero .text h3 {
font-size: 1.6rem;
line-height: 120%;
margin-bottom: 1.5rem;
}
.s-hero .text h1 {
font-size: 3.2rem;
line-height: 112%;
margin-bottom: 3.7rem;
}
.s-hero .text ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
max-width: 27.5rem;
}
.s-hero .text ul li:not(:last-child) {
margin-bottom: 1.7rem;
}
.s-hero .text ul li .icon {
width: 2rem;
height: auto;
background-color: transparent;
}
.s-hero .text ul li span br {
display: none;
}
.s-hero .area-image h2 {
display: none;
}
.s-hero .area-image .image {
max-width: 30.5rem;
height: 24.8rem;
}
.s-hero .area-image .image .circle {
max-width: 26.7rem;
right: 0;
}
.s-hero .area-image .image .card-front {
max-width: 21.1rem;
top: 2.9rem;
}
.s-hero .area-image .image .card-back {
max-width: 17rem;
bottom: 0;
right: 0.6rem;
}
}
.s-card-neon {
padding-top: 12.9rem;
}
.s-card-neon .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.s-card-neon .left-area {
width: 100%;
max-width: 27.7rem;
}
.s-card-neon .left-area .ilustra-mockup {
position: relative;
width: 100%;
max-width: 27.7rem;
margin-bottom: 12.9rem;
}
.s-card-neon .left-area .ilustra-mockup .circle {
position: absolute;
z-index: -1;
top: 8.7rem;
right: 11.4rem;
max-width: 377px;
}
.s-card-neon .left-area .text {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-card-neon .left-area .text .icon {
position: relative;
}
.s-card-neon .left-area .text .icon:before {
content: "";
width: 5px;
height: 83px;
position: absolute;
top: -104px;
left: 50%;
margin-left: -2.5px;
background: url(../../img/points.svg) no-repeat center center;
}
.s-card-neon .left-area .text .info-text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-card-neon .left-area .text .info-text h3 {
text-align: center;
margin-top: 3.6rem;
}
.s-card-neon .left-area .text .info-text p {
text-align: center;
font-size: 1.6rem;
line-height: 150%;
color: #5f5c6b;
opacity: 0.8;
margin-bottom: 2.6rem;
}
.s-card-neon .left-area .text .info-text ul li:not(:last-child) {
margin-bottom: 1.3rem;
}
.s-card-neon .right-area {
width: 100%;
max-width: 80rem;
}
.s-card-neon .right-area .main-text {
margin-bottom: 14.4rem;
}
.s-card-neon .right-area .main-text h2 {
max-width: 48.8rem;
color: #33303e;
margin-bottom: 4.9rem;
}
.s-card-neon .right-area .main-text ul {
margin-bottom: 3.2rem;
}
.s-card-neon .right-area .main-text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(225, 224, 231, 0.9);
padding: 3.3rem 0;
}
.s-card-neon .right-area .main-text ul li:first-child {
padding-top: 0;
}
.s-card-neon .right-area .main-text ul li .info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-card-neon .right-area .main-text ul li .info .txt {
margin-left: 4.3rem;
}
.s-card-neon .right-area .main-text ul li .info .txt h3 {
color: #5f5c6b;
}
.s-card-neon .right-area .main-text ul li .info .txt p {
font-size: 18px;
line-height: 150%;
color: #7a7786;
}
.s-card-neon .right-area .main-text .btn {
position: relative;
display: inline-block;
font-family: "Poppins", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 112%;
letter-spacing: -0.05rem;
color: #0073ce;
}
.s-card-neon .right-area .main-text .btn::after {
content: "";
position: absolute;
bottom: 0;
right: -1.8rem;
width: 10px;
height: 3px;
background-color: #ffc800;
}
.s-card-neon .right-area .box-card {
width: 100%;
height: 41rem;
background: url(../../img/bg-box-card-neon.svg) no-repeat center center;
border-radius: 12px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-left: 5.9rem;
}
.s-card-neon .right-area .box-card .text {
width: 100%;
max-width: 38rem;
}
.s-card-neon .right-area .box-card .text h2 {
color: #ffffff;
margin-bottom: 1.1rem;
}
.s-card-neon .right-area .box-card .text h3 {
color: #ffffff;
max-width: 32.7rem;
margin-bottom: 0.8rem;
}
.s-card-neon .right-area .box-card .text p {
font-size: 1.6rem;
line-height: 150%;
color: #ffffff;
margin-bottom: 3.1rem;
}
.s-card-neon .right-area .box-card .text .btns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-card-neon .right-area .box-card .text .btns button:not(:first-child) {
margin-left: 1.6rem;
}
.s-card-neon .right-area .box-card .image {
margin-right: -3.1rem;
}
@media (max-width: 1200px) {
.s-card-neon .left-area .ilustra-mockup .circle {
display: none;
}
.s-card-neon .right-area {
max-width: 73rem;
}
.s-card-neon .right-area .main-text ul li .info .txt {
margin-left: 2rem;
}
.s-card-neon .right-area .box-card {
padding-left: 3.5rem;
}
.s-card-neon .right-area .box-card .image {
margin-right: -1rem;
}
}
@media (max-width: 991px) {
.s-card-neon .container {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.s-card-neon .right-area {
max-width: 100%;
margin-bottom: 9.8rem;
}
.s-card-neon .right-area .main-text {
margin-bottom: 5.7rem;
}
.s-card-neon .right-area .main-text h2 {
text-align: center;
margin: 0 auto 5.3rem;
font-size: 3.6rem;
}
.s-card-neon .right-area .main-text .btn {
display: block;
text-align: center;
}
.s-card-neon .right-area .main-text .btn::after {
display: none;
}
.s-card-neon .right-area .box-card {
max-width: 94.7%;
}
.s-card-neon .right-area .box-card .image {
margin-right: -4rem;
}
.s-card-neon .left-area {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
max-width: 61rem;
margin: 0 auto;
}
.s-card-neon .left-area .ilustra-mockup {
max-width: 25.5rem;
margin-bottom: 0;
}
.s-card-neon .left-area .text {
max-width: 27rem;
}
}
@media (max-width: 600px) {
.s-card-neon {
padding-top: 16.9rem;
}
.s-card-neon .right-area .box-card {
max-width: 100%;
height: 47rem;
background-size: cover;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 4.3rem;
padding-left: 0;
margin-bottom: 4rem;
}
.s-card-neon .right-area .box-card .text {
max-width: 90%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
margin-bottom: 3rem;
text-align: center;
}
.s-card-neon .right-area .box-card .image {
margin: 0;
}
}
@media (max-width: 480px) {
.s-card-neon {
position: relative;
padding-top: 8.6rem;
}
.s-card-neon::after {
position: absolute;
content: "";
width: 100%;
height: 214px;
bottom: 0;
left: 0;
background: -webkit-gradient(linear, left top, left bottom, from(#f7f7fa), to(rgba(247, 247, 250, 0)));
background: linear-gradient(180deg, #f7f7fa 0%, rgba(247, 247, 250, 0) 100%);
-webkit-transform: matrix(1, 0, 0, -1, 0, 0);
transform: matrix(1, 0, 0, -1, 0, 0);
z-index: -1;
}
.s-card-neon .right-area {
margin-bottom: 6.7rem;
}
.s-card-neon .right-area .main-text h2 {
font-size: 2.8rem;
margin-bottom: 3.7rem;
}
.s-card-neon .right-area .main-text ul li {
padding: 2.8rem 0;
}
.s-card-neon .right-area .main-text ul li .info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.s-card-neon .right-area .main-text ul li .info .txt {
max-width: 71%;
}
.s-card-neon .right-area .main-text ul li .info .txt h3 {
font-size: 2rem;
}
.s-card-neon .right-area .main-text ul li .info .txt p {
font-size: 14px;
}
.s-card-neon .right-area .box-card h2 {
font-weight: 600;
font-size: 2.8rem;
}
.s-card-neon .right-area .box-card h3 {
font-size: 2rem;
}
.s-card-neon .right-area .box-card .text p {
max-width: 25.3rem;
margin-bottom: 3.4rem;
}
.s-card-neon .right-area .box-card .text .btns .btn-primary {
padding: 0 3rem;
}
.s-card-neon .right-area .box-card .image {
max-width: 27.7rem;
}
.s-card-neon .left-area {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.s-card-neon .left-area .text {
margin-bottom: 4rem;
}
.s-card-neon .left-area .text .icon::before {
display: none;
}
.s-card-neon .left-area .ilustra-mockup {
height: 39.7rem;
overflow: hidden;
}
}
.s-testimonials {
padding-top: 13.4rem;
}
.s-testimonials .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 4rem;
}
.s-testimonials .top h2 {
color: #33303e;
}
.s-testimonials .top h2 span {
display: block;
color: #c6c5ce;
margin-bottom: 1.4rem;
}
.s-testimonials .top .swiper-pagination {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: auto;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet {
background: #ffc800;
opacity: 0.3;
border-radius: 12px;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet-active {
opacity: 1;
width: 1.723rem;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet:not(:first-child) {
margin-left: 0.4rem;
}
.s-testimonials .slider-testimonials {
overflow: hidden;
}
@media (max-width: 991px) {
.s-testimonials .top {
-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;
margin-bottom: 5.1rem;
}
.s-testimonials .top h2 {
text-align: center;
margin-bottom: 5.1rem;
}
}
@media (max-width: 480px) {
.s-testimonials {
padding-top: 7.6rem;
}
.s-testimonials .container {
padding: 0;
}
.s-testimonials .top {
margin-top: 3.4rem;
}
.s-testimonials .top h2 {
font-size: 2.8rem;
font-weight: 600;
max-width: 28.5rem;
margin-bottom: 3.4rem;
}
.s-testimonials .top h2 span {
margin-bottom: 1.1rem;
}
.s-testimonials .slider-testimonials {
padding: 0 2rem;
}
}
.s-digital-account {
padding: 12.7rem 0 8.5rem;
}
.s-digital-account .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-digital-account .text {
max-width: 54.2rem;
}
.s-digital-account .text h2 {
color: #33303e;
margin-bottom: 4.5rem;
}
.s-digital-account .text h2 span {
display: block;
color: rgba(198, 197, 206, 0.8);
margin-bottom: 0.9rem;
}
.s-digital-account .text ul {
margin-bottom: 6.1rem;
}
.s-digital-account .text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-digital-account .text ul li:not(:last-child) {
margin-bottom: 4.5rem;
}
.s-digital-account .text ul li .icon {
width: 4.5rem;
height: 4.5rem;
background: #00d7d7;
border-radius: 8px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-right: 2.6rem;
}
.s-digital-account .text ul li .info h4 {
margin-bottom: 0.4rem;
color: #5f5c6b;
}
.s-digital-account .text ul li .info p {
font-size: 1.8rem;
line-height: 150%;
color: #7a7786;
}
.s-digital-account .image {
position: relative;
width: 100%;
max-width: 71.2rem;
height: 59.8rem;
margin-right: -3.8rem;
left: 12.5rem;
}
.s-digital-account .image img {
position: absolute;
}
.s-digital-account .image img.mockup-01 {
top: 7.8rem;
left: 0;
}
.s-digital-account .image img.mockup-02 {
top: 0;
left: 25.4rem;
}
.s-digital-account .image img.circle {
bottom: 0;
right: 0;
z-index: -1;
}
@media (max-width: 1200px) {
.s-digital-account .container {
-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;
}
.s-digital-account .text {
max-width: 75%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-digital-account .text h2 {
text-align: center;
max-width: 80%;
}
.s-digital-account .image {
margin-top: 5rem;
margin-right: 0;
left: 0;
}
}
@media (max-width: 991px) {
.s-digital-account {
padding-top: 8.6rem;
padding-bottom: 8.1rem;
}
.s-digital-account .text {
max-width: 100%;
}
.s-digital-account .image {
max-width: 58.2rem;
height: 63.3rem;
}
.s-digital-account .image img.circle {
width: 100%;
}
}
@media (max-width: 480px) {
.s-digital-account {
padding-top: 5.7rem;
padding-bottom: 7.2rem;
}
.s-digital-account .text h2 {
font-size: 2.6rem;
font-weight: 600;
max-width: 100%;
margin-bottom: 3.9rem;
}
.s-digital-account .text h2 span {
font-size: 2.4rem;
}
.s-digital-account .text ul {
margin-bottom: 4.4rem;
}
.s-digital-account .text ul li {
-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;
text-align: center;
}
.s-digital-account .text ul li:not(:last-child) {
margin-bottom: 5.6rem;
}
.s-digital-account .text ul li .icon {
margin-right: 0;
margin-bottom: 1.6rem;
}
.s-digital-account .text ul li .info h4 {
max-width: 28rem;
}
.s-digital-account .text ul li .info p {
font-size: 1.4rem;
max-width: 21rem;
margin: 0 auto;
}
.s-digital-account .image {
max-width: 35.7rem;
height: 46.9rem;
}
.s-digital-account .image img.mockup-01, .s-digital-account .image img.mockup-02 {
max-width: 16.8rem;
}
.s-digital-account .image img.mockup-01 {
bottom: initial;
top: 5.8rem;
}
.s-digital-account .image img.mockup-02 {
left: initial;
top: 0;
right: 0;
}
}
/*# sourceMappingURL=styles.css.map */ | scss/styles.css | * {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
img {
max-width: 100%;
display: block;
}
button {
background: transparent;
cursor: pointer;
}
html {
font-size: 62.5%;
}
@media (max-width: 1300px) {
html {
font-size: 58%;
}
}
@media (max-width: 991px) {
html {
font-size: 62.5%;
}
}
html,
body {
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 124.8rem;
padding: 0 1.6rem;
margin: 0 auto;
}
@-webkit-keyframes floating {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
66% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes floating {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
66% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
h1 {
font-weight: 600;
font-size: 6.4rem;
}
@media (max-width: 1050px) {
h1 {
font-size: 5.2rem;
}
}
@media (max-width: 991px) {
h1 {
font-size: 4.8rem;
}
}
h2 {
font-weight: bold;
font-size: 4rem;
}
h3 {
font-size: 2.4rem;
line-height: 150%;
}
h4 {
font-size: 2rem;
line-height: 112%;
}
h1,
h2 {
line-height: 112%;
letter-spacing: -0.1rem;
}
h3,
h4 {
font-weight: 500;
letter-spacing: -0.05rem;
}
h1,
h2,
h3,
h4 {
font-family: "Poppins", sans-serif;
color: #4e4b59;
}
.card-testimonial {
width: 100%;
max-width: 38.4rem;
height: 21.6rem;
background: rgba(241, 240, 245, 0.55);
border-radius: 8px;
padding: 3.7rem 3.2rem 2.3rem;
}
.card-testimonial .user {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 2.1rem;
}
.card-testimonial .user strong {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.8rem;
line-height: 112%;
letter-spacing: -0.1rem;
color: #4e4b59;
}
.card-testimonial p {
font-size: 1.8rem;
line-height: 150%;
color: #5f5c6b;
}
@media (max-width: 991px) {
.card-testimonial {
height: 25.6rem;
}
}
@media (max-width: 480px) {
.card-testimonial {
height: 29.6rem;
}
}
.btn-primary {
background-color: #ffc800;
color: #855b35;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.btn-primary:hover {
background-color: #ffdc5c;
}
.btn-secondary {
border: 1px solid #00a5f0;
color: #00a5f0;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.btn-secondary:hover {
background-color: #00a5f0;
color: #ffffff;
}
.btn-secondary.white {
border: 1px solid #ffffff;
color: #ffffff;
}
.btn-secondary.white:hover {
background-color: #ffffff;
color: #00d7d7;
}
.btn-primary,
.btn-secondary {
display: inline-block;
line-height: 4.8rem;
border-radius: 122px;
padding: 0 2.6rem;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.6rem;
}
header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 8.8rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
header .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
header nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
header nav ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: 5.9rem;
}
header nav ul li:not(:first-child) {
margin-left: 4.8rem;
}
header nav ul li a {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 125%;
color: #ffffff;
-webkit-transition: 0.3s;
transition: 0.3s;
}
header nav ul li a:hover {
color: #ffc800;
}
header .btn-mobile {
display: none;
}
@media (max-width: 1090px) {
header nav ul {
margin-right: 3rem;
}
header nav ul li:not(:first-child) {
margin-left: 2.5rem;
}
}
@media (max-width: 991px) {
header .logo {
max-width: 10.8rem;
}
header nav ul {
display: none;
}
header .btn-mobile {
display: block;
margin-left: 4rem;
}
}
@media (max-width: 480px) {
header {
height: 7.3rem;
}
header nav .btn-secondary {
display: none;
}
}
footer {
background: #0073ce;
padding-top: 4.9rem;
}
footer .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(73, 196, 253, 0.2);
padding-bottom: 4.8rem;
margin-bottom: 5.7rem;
}
footer .top .share {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
footer .top .share span {
font-size: 1.4rem;
line-height: 125%;
color: #ffffff;
opacity: 0.7;
}
footer .top .share ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: 3rem;
}
footer .top .share ul li:not(:first-child) {
margin-left: 3rem;
}
footer .main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(73, 196, 253, 0.2);
padding-bottom: 6.2rem;
margin-bottom: 3.9rem;
}
footer .main nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
max-width: 86rem;
}
footer .main nav .item strong {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1.6rem;
line-height: 1.6rem;
color: #ffffff;
display: inline-block;
margin-bottom: 2.5rem;
}
footer .main nav .item ul li:not(:last-child) {
margin-bottom: 2.9rem;
}
footer .main nav .item ul li a {
font-size: 1.4rem;
line-height: 1.7rem;
color: #ffffff;
opacity: 0.7;
}
footer .main .btns {
width: 100%;
max-width: 28rem;
}
footer .main .btns button {
background: rgba(0, 164, 240, 0.23);
border-radius: 6px;
width: 100%;
height: 7.6rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-left: 2.5rem;
}
footer .main .btns button:not(:last-child) {
margin-bottom: 2.4rem;
}
footer .main .btns button .info {
margin-left: 2.4rem;
font-size: 1.4rem;
line-height: 150%;
color: #ffffff;
}
footer .main .btns button .info strong {
display: block;
text-align: left;
font-weight: bold;
}
footer .main .btns button .info span {
display: block;
}
footer .message {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
border-bottom: 4px solid #ffc800;
padding-bottom: 3.4rem;
}
footer .message .icon {
font-size: 1.8rem;
}
footer .message p {
width: 100%;
max-width: 66rem;
margin-left: 2.5rem;
font-size: 1.4rem;
line-height: 150%;
color: #ffffff;
opacity: 0.8;
}
@media (max-width: 1050px) {
footer .main nav {
max-width: 76rem;
}
}
@media (max-width: 991px) {
footer .main {
width: 100%;
position: relative;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding-bottom: 3.6rem;
}
footer .main nav {
width: 100%;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
footer .main nav .item {
width: 33%;
margin-bottom: 5rem;
}
footer .main .btns {
position: absolute;
bottom: 14rem;
right: 0;
}
footer .message {
-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;
}
footer .message p {
margin-left: 0;
text-align: center;
margin-top: 1rem;
}
}
@media (max-width: 600px) {
footer .main {
margin-bottom: 3rem;
}
footer .main .btns {
max-width: 25rem;
}
footer .main .btns button img {
display: none;
}
footer .main .btns button .info {
margin-left: 0;
}
}
@media (max-width: 480px) {
footer .top {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-bottom: 4.3rem;
margin-bottom: 5.2rem;
}
footer .top .share {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 3.2rem;
}
footer .top .share ul {
margin-top: 20px;
margin-left: 0;
}
footer .main nav .item {
width: 50%;
margin-bottom: 5.3rem;
}
footer .main .btns {
bottom: 0;
position: relative;
max-width: 100%;
}
footer .main .btns button {
padding-left: 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
footer .main .btns button .info strong,
footer .main .btns button .info span {
text-align: center;
}
}
.s-hero {
width: 100%;
height: 78.6rem;
background: url("../../img/bg-hero.svg") no-repeat center center;
padding-top: 17.5rem;
}
.s-hero .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.s-hero .text {
width: 100%;
max-width: 68.4rem;
}
.s-hero .text h3 {
font-weight: 600;
color: #ffffff;
opacity: 0.8;
margin-bottom: 3.2rem;
}
.s-hero .text h1 {
color: #ffffff;
margin-bottom: 3.9rem;
}
.s-hero .text ul {
margin-top: 6.4rem;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
max-width: 62.1rem;
}
.s-hero .text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-hero .text ul li .icon {
width: 48px;
height: 48px;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(53, 202, 226, 0.4)), to(rgba(53, 202, 226, 0)));
background: linear-gradient(180deg, rgba(53, 202, 226, 0.4) 0%, rgba(53, 202, 226, 0) 100%);
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-right: 1.2rem;
}
.s-hero .text ul li span {
font-size: 1.8rem;
line-height: 2.2rem;
color: #ffffff;
}
.s-hero .area-image {
width: 100%;
max-width: 70.6rem;
margin-right: -17.4rem;
}
.s-hero .area-image h2 {
margin-bottom: 6.7rem;
text-align: center;
font-weight: 600;
color: rgba(255, 255, 255, 0.4);
}
.s-hero .area-image .image {
position: relative;
top: 3.2rem;
width: 100%;
height: 54.1rem;
}
.s-hero .area-image .image img {
position: absolute;
}
.s-hero .area-image .image .card-front {
top: 4.1rem;
left: 0;
z-index: 2;
max-width: 43.5rem;
-webkit-animation: floating 6s infinite;
animation: floating 6s infinite;
}
.s-hero .area-image .image .card-back {
bottom: 4.6rem;
right: 8.6rem;
z-index: 1;
max-width: 35.2rem;
-webkit-animation: floating 6s infinite 1s;
animation: floating 6s infinite 1s;
}
.s-hero .area-image .image .circle {
top: 2.8rem;
right: 4.3rem;
}
@media (max-width: 1440px) {
.s-hero .area-image {
margin-right: -13.4rem;
}
}
@media (max-width: 1366px) {
.s-hero .area-image {
margin-right: -8rem;
}
.s-hero .area-image .image .card-back {
right: 4rem;
}
}
@media (max-width: 1050px) {
.s-hero {
padding-top: 14.5rem;
height: 65.6rem;
}
.s-hero .text ul {
margin-top: 4.5rem;
}
.s-hero .area-image {
margin-right: -10px;
}
.s-hero .area-image h2 {
margin-bottom: 1.5rem;
}
.s-hero .area-image .image {
height: 45rem;
}
.s-hero .area-image .image .card-front {
max-width: 35rem;
top: 8rem;
}
.s-hero .area-image .image .card-back {
max-width: 29rem;
bottom: 0;
}
.s-hero .area-image .image .circle {
max-width: 46rem;
}
}
@media (max-width: 991px) {
.s-hero {
height: 89.1rem;
background-size: cover;
}
.s-hero .container {
-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;
}
.s-hero .text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
margin-bottom: 5rem;
max-width: 68.5rem;
}
.s-hero .text h3 {
text-align: center;
}
.s-hero .text h1 {
text-align: center;
margin-bottom: 2.6rem;
}
.s-hero .text ul {
margin-top: 3.9rem;
}
.s-hero .area-image h2 {
margin-bottom: 1.9rem;
}
.s-hero .area-image .image {
max-width: 51.1rem;
margin: 0 auto;
height: 42.4rem;
top: 0;
}
.s-hero .area-image .image .circle {
max-width: 42.9rem;
top: 0;
right: 1.3rem;
}
.s-hero .area-image .image .card-front {
max-width: 34rem;
top: 3.5rem;
left: 0;
}
.s-hero .area-image .image .card-back {
max-width: 27.4rem;
bottom: 3.6rem;
right: 2.9rem;
}
}
@media (max-width: 480px) {
.s-hero {
padding-top: 12.4rem;
height: 73.9rem;
}
.s-hero .text h3 {
font-size: 1.6rem;
line-height: 120%;
margin-bottom: 1.5rem;
}
.s-hero .text h1 {
font-size: 3.2rem;
line-height: 112%;
margin-bottom: 3.7rem;
}
.s-hero .text ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
max-width: 27.5rem;
}
.s-hero .text ul li:not(:last-child) {
margin-bottom: 1.7rem;
}
.s-hero .text ul li .icon {
width: 2rem;
height: auto;
background-color: transparent;
}
.s-hero .text ul li span br {
display: none;
}
.s-hero .area-image h2 {
display: none;
}
.s-hero .area-image .image {
max-width: 30.5rem;
height: 24.8rem;
}
.s-hero .area-image .image .circle {
max-width: 26.7rem;
right: 0;
}
.s-hero .area-image .image .card-front {
max-width: 21.1rem;
top: 2.9rem;
}
.s-hero .area-image .image .card-back {
max-width: 17rem;
bottom: 0;
right: 0.6rem;
}
}
.s-card-neon {
padding-top: 12.9rem;
}
.s-card-neon .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.s-card-neon .left-area {
width: 100%;
max-width: 27.7rem;
}
.s-card-neon .left-area .ilustra-mockup {
position: relative;
width: 100%;
max-width: 27.7rem;
margin-bottom: 12.9rem;
}
.s-card-neon .left-area .ilustra-mockup .circle {
position: absolute;
z-index: -1;
top: 8.7rem;
right: 11.4rem;
max-width: 377px;
}
.s-card-neon .left-area .text {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-card-neon .left-area .text .icon {
position: relative;
}
.s-card-neon .left-area .text .icon:before {
content: "";
width: 5px;
height: 83px;
position: absolute;
top: -104px;
left: 50%;
margin-left: -2.5px;
background: url(../../img/points.svg) no-repeat center center;
}
.s-card-neon .left-area .text .info-text {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-card-neon .left-area .text .info-text h3 {
text-align: center;
margin-top: 3.6rem;
}
.s-card-neon .left-area .text .info-text p {
text-align: center;
font-size: 1.6rem;
line-height: 150%;
color: #5f5c6b;
opacity: 0.8;
margin-bottom: 2.6rem;
}
.s-card-neon .left-area .text .info-text ul li:not(:last-child) {
margin-bottom: 1.3rem;
}
.s-card-neon .right-area {
width: 100%;
max-width: 80rem;
}
.s-card-neon .right-area .main-text {
margin-bottom: 14.4rem;
}
.s-card-neon .right-area .main-text h2 {
max-width: 48.8rem;
color: #33303e;
margin-bottom: 4.9rem;
}
.s-card-neon .right-area .main-text ul {
margin-bottom: 3.2rem;
}
.s-card-neon .right-area .main-text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 1px solid rgba(225, 224, 231, 0.9);
padding: 3.3rem 0;
}
.s-card-neon .right-area .main-text ul li:first-child {
padding-top: 0;
}
.s-card-neon .right-area .main-text ul li .info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-card-neon .right-area .main-text ul li .info .txt {
margin-left: 4.3rem;
}
.s-card-neon .right-area .main-text ul li .info .txt h3 {
color: #5f5c6b;
}
.s-card-neon .right-area .main-text ul li .info .txt p {
font-size: 18px;
line-height: 150%;
color: #7a7786;
}
.s-card-neon .right-area .main-text .btn {
position: relative;
display: inline-block;
font-family: "Poppins", sans-serif;
font-weight: 500;
font-size: 1.6rem;
line-height: 112%;
letter-spacing: -0.05rem;
color: #0073ce;
}
.s-card-neon .right-area .main-text .btn::after {
content: "";
position: absolute;
bottom: 0;
right: -1.8rem;
width: 10px;
height: 3px;
background-color: #ffc800;
}
.s-card-neon .right-area .box-card {
width: 100%;
height: 41rem;
background: url(../../img/bg-box-card-neon.svg) no-repeat center center;
border-radius: 12px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding-left: 5.9rem;
}
.s-card-neon .right-area .box-card .text {
width: 100%;
max-width: 38rem;
}
.s-card-neon .right-area .box-card .text h2 {
color: #ffffff;
margin-bottom: 1.1rem;
}
.s-card-neon .right-area .box-card .text h3 {
color: #ffffff;
max-width: 32.7rem;
margin-bottom: 0.8rem;
}
.s-card-neon .right-area .box-card .text p {
font-size: 1.6rem;
line-height: 150%;
color: #ffffff;
margin-bottom: 3.1rem;
}
.s-card-neon .right-area .box-card .text .btns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-card-neon .right-area .box-card .text .btns button:not(:first-child) {
margin-left: 1.6rem;
}
.s-card-neon .right-area .box-card .image {
margin-right: -3.1rem;
}
@media (max-width: 1200px) {
.s-card-neon .left-area .ilustra-mockup .circle {
display: none;
}
.s-card-neon .right-area {
max-width: 73rem;
}
.s-card-neon .right-area .main-text ul li .info .txt {
margin-left: 2rem;
}
.s-card-neon .right-area .box-card {
padding-left: 3.5rem;
}
.s-card-neon .right-area .box-card .image {
margin-right: -1rem;
}
}
@media (max-width: 991px) {
.s-card-neon .container {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.s-card-neon .right-area {
max-width: 100%;
margin-bottom: 9.8rem;
}
.s-card-neon .right-area .main-text {
margin-bottom: 5.7rem;
}
.s-card-neon .right-area .main-text h2 {
text-align: center;
margin: 0 auto 5.3rem;
font-size: 3.6rem;
}
.s-card-neon .right-area .main-text .btn {
display: block;
text-align: center;
}
.s-card-neon .right-area .main-text .btn::after {
display: none;
}
.s-card-neon .right-area .box-card {
max-width: 94.7%;
}
.s-card-neon .right-area .box-card .image {
margin-right: -4rem;
}
.s-card-neon .left-area {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
max-width: 61rem;
margin: 0 auto;
}
.s-card-neon .left-area .ilustra-mockup {
max-width: 25.5rem;
margin-bottom: 0;
}
.s-card-neon .left-area .text {
max-width: 27rem;
}
}
@media (max-width: 600px) {
.s-card-neon {
padding-top: 16.9rem;
}
.s-card-neon .right-area .box-card {
max-width: 100%;
height: 47rem;
background-size: cover;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
padding-top: 4.3rem;
padding-left: 0;
margin-bottom: 4rem;
}
.s-card-neon .right-area .box-card .text {
max-width: 90%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
margin-bottom: 3rem;
text-align: center;
}
.s-card-neon .right-area .box-card .image {
margin: 0;
}
}
@media (max-width: 480px) {
.s-card-neon {
position: relative;
padding-top: 8.6rem;
}
.s-card-neon::after {
position: absolute;
content: "";
width: 100%;
height: 214px;
bottom: 0;
left: 0;
background: -webkit-gradient(linear, left top, left bottom, from(#f7f7fa), to(rgba(247, 247, 250, 0)));
background: linear-gradient(180deg, #f7f7fa 0%, rgba(247, 247, 250, 0) 100%);
-webkit-transform: matrix(1, 0, 0, -1, 0, 0);
transform: matrix(1, 0, 0, -1, 0, 0);
z-index: -1;
}
.s-card-neon .right-area {
margin-bottom: 6.7rem;
}
.s-card-neon .right-area .main-text h2 {
font-size: 2.8rem;
margin-bottom: 3.7rem;
}
.s-card-neon .right-area .main-text ul li {
padding: 2.8rem 0;
}
.s-card-neon .right-area .main-text ul li .info {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.s-card-neon .right-area .main-text ul li .info .txt {
max-width: 71%;
}
.s-card-neon .right-area .main-text ul li .info .txt h3 {
font-size: 2rem;
}
.s-card-neon .right-area .main-text ul li .info .txt p {
font-size: 14px;
}
.s-card-neon .right-area .box-card h2 {
font-weight: 600;
font-size: 2.8rem;
}
.s-card-neon .right-area .box-card h3 {
font-size: 2rem;
}
.s-card-neon .right-area .box-card .text p {
max-width: 25.3rem;
margin-bottom: 3.4rem;
}
.s-card-neon .right-area .box-card .text .btns .btn-primary {
padding: 0 3rem;
}
.s-card-neon .right-area .box-card .image {
max-width: 27.7rem;
}
.s-card-neon .left-area {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.s-card-neon .left-area .text {
margin-bottom: 4rem;
}
.s-card-neon .left-area .text .icon::before {
display: none;
}
.s-card-neon .left-area .ilustra-mockup {
height: 39.7rem;
overflow: hidden;
}
}
.s-testimonials {
padding-top: 13.4rem;
}
.s-testimonials .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 4rem;
}
.s-testimonials .top h2 {
color: #33303e;
}
.s-testimonials .top h2 span {
display: block;
color: #c6c5ce;
margin-bottom: 1.4rem;
}
.s-testimonials .top .swiper-pagination {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: auto;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet {
background: #ffc800;
opacity: 0.3;
border-radius: 12px;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet-active {
opacity: 1;
width: 1.723rem;
}
.s-testimonials .top .swiper-pagination .swiper-pagination-bullet:not(:first-child) {
margin-left: 0.4rem;
}
.s-testimonials .slider-testimonials {
overflow: hidden;
}
@media (max-width: 991px) {
.s-testimonials .top {
-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;
margin-bottom: 5.1rem;
}
.s-testimonials .top h2 {
text-align: center;
margin-bottom: 5.1rem;
}
}
@media (max-width: 480px) {
.s-testimonials {
padding-top: 7.6rem;
}
.s-testimonials .container {
padding: 0;
}
.s-testimonials .top {
margin-top: 3.4rem;
}
.s-testimonials .top h2 {
font-size: 2.8rem;
font-weight: 600;
max-width: 28.5rem;
margin-bottom: 3.4rem;
}
.s-testimonials .top h2 span {
margin-bottom: 1.1rem;
}
.s-testimonials .slider-testimonials {
padding: 0 2rem;
}
}
.s-digital-account {
padding: 12.7rem 0 8.5rem;
}
.s-digital-account .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-digital-account .text {
max-width: 54.2rem;
}
.s-digital-account .text h2 {
color: #33303e;
margin-bottom: 4.5rem;
}
.s-digital-account .text h2 span {
display: block;
color: rgba(198, 197, 206, 0.8);
margin-bottom: 0.9rem;
}
.s-digital-account .text ul {
margin-bottom: 6.1rem;
}
.s-digital-account .text ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.s-digital-account .text ul li:not(:last-child) {
margin-bottom: 4.5rem;
}
.s-digital-account .text ul li .icon {
width: 4.5rem;
height: 4.5rem;
background: #00d7d7;
border-radius: 8px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-right: 2.6rem;
}
.s-digital-account .text ul li .info h4 {
margin-bottom: 0.4rem;
color: #5f5c6b;
}
.s-digital-account .text ul li .info p {
font-size: 1.8rem;
line-height: 150%;
color: #7a7786;
}
.s-digital-account .image {
position: relative;
width: 100%;
max-width: 71.2rem;
height: 59.8rem;
margin-right: -3.8rem;
left: 12.5rem;
}
.s-digital-account .image img {
position: absolute;
}
.s-digital-account .image img.mockup-01 {
top: 7.8rem;
left: 0;
}
.s-digital-account .image img.mockup-02 {
top: 0;
left: 25.4rem;
}
.s-digital-account .image img.circle {
bottom: 0;
right: 0;
z-index: -1;
}
@media (max-width: 1200px) {
.s-digital-account .container {
-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;
}
.s-digital-account .text {
max-width: 75%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
}
.s-digital-account .text h2 {
text-align: center;
max-width: 80%;
}
.s-digital-account .image {
margin-top: 5rem;
margin-right: 0;
left: 0;
}
}
@media (max-width: 991px) {
.s-digital-account {
padding-top: 8.6rem;
padding-bottom: 8.1rem;
}
.s-digital-account .text {
max-width: 100%;
}
.s-digital-account .image {
max-width: 58.2rem;
height: 63.3rem;
}
.s-digital-account .image img.circle {
width: 100%;
}
}
@media (max-width: 480px) {
.s-digital-account {
padding-top: 5.7rem;
padding-bottom: 7.2rem;
}
.s-digital-account .text h2 {
font-size: 2.6rem;
font-weight: 600;
max-width: 100%;
margin-bottom: 3.9rem;
}
.s-digital-account .text h2 span {
font-size: 2.4rem;
}
.s-digital-account .text ul {
margin-bottom: 4.4rem;
}
.s-digital-account .text ul li {
-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;
text-align: center;
}
.s-digital-account .text ul li:not(:last-child) {
margin-bottom: 5.6rem;
}
.s-digital-account .text ul li .icon {
margin-right: 0;
margin-bottom: 1.6rem;
}
.s-digital-account .text ul li .info h4 {
max-width: 28rem;
}
.s-digital-account .text ul li .info p {
font-size: 1.4rem;
max-width: 21rem;
margin: 0 auto;
}
.s-digital-account .image {
max-width: 35.7rem;
height: 46.9rem;
}
.s-digital-account .image img.mockup-01, .s-digital-account .image img.mockup-02 {
max-width: 16.8rem;
}
.s-digital-account .image img.mockup-01 {
bottom: initial;
top: 5.8rem;
}
.s-digital-account .image img.mockup-02 {
left: initial;
top: 0;
right: 0;
}
}
/*# sourceMappingURL=styles.css.map */ | 0.371593 | 0.081009 |
@import url('https://fonts.googleapis.com/css?family=Cabin|Lexend+Deca|Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Spartan&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background: #f1f1f1;
}
a {
text-decoration: none;
}
navbar{
font-family: 'Cabin', sans-serif;
width: 100%;
height: 35px;
background: #d44444;
display: flex;
align-items: center;
font-size: 14px;
color: #fff;
}
navbar > div {
display: flex;
justify-content: space-around;
}
navbar > div a {
color: #fff;
}
navbar > div a:hover {
text-decoration: underline;
}
nav {
font-family: 'Poppins', sans-serif;
width: 100%;
min-height: 70px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-around;
text-transform: uppercase;
-webkit-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
z-index: 1;
}
nav a {
color: rgb(24, 24, 24);
}
nav a > i {
font-size: 20px;
}
nav div.account-info > a > i {
font-size: 25px;
}
.cardGUI { background: red;padding: 20px 0 !important; }
nav div.account-info > a > i.nav-heart:hover {
color: rgb(160, 71, 76);
}
.search-button {
background: rgba(0, 0, 0, 0);
border: 0;
outline: 0;
position: relative;
left: -45px;
top: 4px;
}
.search-button:hover {
cursor: pointer;
}
.search-button i {
font-size: 22px;
color: rgb(47, 47, 47);
}
.search-input {
min-width: 450px;
min-height: 35px;
font-size: 14px;
border-radius: 3px;
border: 0;
color: rgb(98, 98, 98);
outline: 0;
text-indent: 15px;
background: #f1f1f1;
}
div.account-info {
display: flex;
min-width: 125px;
justify-content: space-between;
}
nav span.text {
font-weight: bold;
font-size: 14px;
position: relative;
top: -2px;
left: 5px;
}
nav span.shop-item {
position: relative;
padding: 0px 5px;
font-size: 10px;
background: #D24343;
font-weight: bold;
color: #fff;
border-radius: 50px;
top: 5px;
left: -10px;
}
div.large-categories {
position: absolute;
font-family: 'Poppins', sans-serif;
width: 100%;
background: #fff;
padding: 30px 0px;
display: none;
justify-content: space-around;
z-index: 1;
-webkit-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
}
div.large-categories ul { list-style-type: none;}
div.large-categories ul li a {
color: #323232;
}
div.large-categories ul.image-part {
width: 130px;
height: 180px;
transition-duration: 0.3s;
overflow: hidden;
}
div.large-categories ul.image-part img {
}
div.large-categories ul.image-part a {
padding: 10px 20px;
background: #2b6175;
color: #fff;
font-size: 14px;
font-weight: bold;
position: relative;
left: 10px;
top: -50px;
transition-duration: 0.3s;
}
div.large-categories ul.image-part a:hover {
background: rgba(43, 97, 117, 0.8);
top: -55px;
}
div.large-categories ul.image-part:hover > #filterimg {
transition-duration: 0.3s;
transform: scale(1.1);
}
div.cardGUI {
position: absolute;
z-index: 1;
width: 300px;
height: auto;
font-family: 'Poppins', sans-serif;
background: #fff;
top: 110px;
right: 30px;
-webkit-box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
display: none;
}
div.cardGUI img {
display: block;
max-width: 75%;
height: auto!important;
}
div.cardGUI div.items div{
display: flex;
justify-content: space-between;
padding: 10px 20px;
background: #fff;
}
div.cardGUI h4 { color: #909090; }
div.cardGUI div.items div div.text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.cardGUI a { color: #909090; }
div.cardGUI a#buttons { color: #000; margin: 0 20px;}
.banner-large {
font-family: 'Poppins', sans-serif;
width: 100%;
height: calc(100vh - 70px - 35px);
background: url("../assets/img/index/index.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: auto;
filter: grayscale(50%);
display: flex;
justify-content: space-around;
align-items: center;
color: #fff;
}
.index h1 { font-weight: bold; font-size: 55px;}
.index h1 span { color: #A40000; }
.index h4 { font-size: 45px; }
.index p { color: #21b886; font-weight: bold; font-size: 30px;}
.index .shop-now {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
position: relative;
top: 25px;
padding: 12.5px 25px;
font-size: 20px;
font-weight: bold;
color: #fff;
background: rgb(130, 3, 11);
border-radius: 3px;
transition-duration: 0.3s;
}
.index .shop-now:hover {
background: rgba(130, 3, 11, 0.7);
}
.down-button {
position: absolute;
left: 50%;
bottom: 10px;
padding: 10px 20px;
border-radius: 3px;
color: #fff;
background: rgb(138, 29, 29);
align-self: flex-end;
animation-duration: 2s;
animation-iteration-count: infinite;
transform-origin: bottom;
}
.bounce-6 {
animation-name: bounce-6;
animation-timing-function: ease;
}
@keyframes bounce-6 {
0% { transform: scale(1,1) translateY(0); }
10% { transform: scale(1.1,.9) translateY(0); }
30% { transform: scale(.9,1.1) translateY(-25px); }
50% { transform: scale(1.05,.95) translateY(0); }
57% { transform: scale(1,1) translateY(-7px); }
64% { transform: scale(1,1) translateY(0); }
100% { transform: scale(1,1) translateY(0); }
}
.top-seller {
font-family: 'Open Sans', sans-serif;
width: 90%;
min-height: 600px;
margin: auto;
margin-top: 75px;
}
.top-seller .header {
display: flex;
flex-direction: column;
align-items: center;
}
.top-seller .header h1 { text-transform: uppercase;}
.top-seller h3 { text-transform: uppercase; }
.products {
width: 90%;
min-height: 400px;
margin: auto;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.product {
margin: 25px 25px;
/* border: 1px solid #000; */
box-sizing: border-box;
flex: 20%;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
}
.product .image-part {
/* border: 1px solid red; */
width: 180px;
height: 250px;
overflow: hidden;
}
.product .image-part img {
max-width: 100%;
height: auto;
}
.back-img {
display: none;
}
.product .content-part {
margin-top: 10px;
display: flex;
flex-direction: column;
}
.product .content-part h4 { color: #777777; font-weight: normal; letter-spacing: 0.5px;}
.product .content-part h4 a { color: #777777; font-weight: normal; letter-spacing: 0.5px;}
.product .content-part span { font-weight: bold;}
.product .content-part span del { font-weight: normal !important;color: #464646; font-size: 13px; margin-left: 10px;}
.product .content-part .see-product-button {
padding: 10px 20px;
color: #fff;
font-weight: bold;
font-size: 15px;
letter-spacing: 1px;
border-radius: 2px;
background: rgb(124, 30, 44);
}
.product .content-part .see-product-button:hover {
transition-duration: 0.3s;
background: rgba(124, 30, 44, 0.9);
}
.banner {
font-family: 'Montserrat', sans-serif;
width: 100%;
min-height: 500px;
background: url("../assets/img/index/banner.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: space-between;
}
.banner .items { margin-left: 50px; flex-direction: column;}
.banner h1 { font-size: 65px; color: rgb(149, 42, 45); }
.banner h2 { font-size: 50px; letter-spacing: 0.5px; color: #444444; text-transform: uppercase;}
.banner h3 { font-size: 35px; letter-spacing: 1px; color: #212121; text-transform: uppercase; margin-top: 10px;}
.banner .buttons { position: relative; left: -50px;}
.banner .banner-button {
font-size: 25px;
padding: 30px 60px;
color: #fff;
background: rgb(149, 42, 45);
border-radius: 1px;
transition-duration: 0.3s;
}
.banner .banner-button:hover {
background: rgba(149, 42, 45, 0.8);
}
footer {
font-family: 'Poppins', sans-serif;
width: 100%;
min-height: 350px;
background: #e8e8e8;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
footer ul { list-style-type: none; }
footer li { margin-bottom: 5px; font-size: 15px; }
footer a { color: #3e3e3e; font-size: 14px; }
footer p { font-size: 15px; }
footer i { color: #959595; }
footer h3 { color: #000; text-transform: uppercase; font-size: 17px; margin-bottom: 20px; letter-spacing: 0.4px;}
footer .about p {
max-width: 510px;
word-wrap: break-word;
}
@media only screen and (max-width: 768px) {
footer {
flex-direction: column;
overflow: hidden;
justify-content: center;
margin: 0;
padding: 20px 0;
}
footer h3 {
margin-bottom: 10px;
}
footer p { width: 250px;}
footer div.about {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer div.about p {
width: 40%;
margin-bottom: 10px;
text-align: center;
}
.search-box {
display: none;
}
div.large-categories {
flex-direction: column;
justify-content: center;
align-items: center;
}
div.large-categories ul.image-part {
display: none;
}
.down-button {
left: 45%;
}
.product {
flex: 100%;
}
.product .content-part .see-product-button {
margin-top: 10px;
}
.banner { flex-direction: column; justify-content: center;}
.banner div {
margin: 25px 50px;
}
.banner h1 { font-size: 27px; }
.banner h2 { font-size: 23px; }
.banner h3 { font-size: 20px; }
.banner .banner-button {
font-size: 22px;
padding: 10px 20px;
}
.banner .buttons {
left: 0;
}
} | style.css | @import url('https://fonts.googleapis.com/css?family=Cabin|Lexend+Deca|Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Spartan&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background: #f1f1f1;
}
a {
text-decoration: none;
}
navbar{
font-family: 'Cabin', sans-serif;
width: 100%;
height: 35px;
background: #d44444;
display: flex;
align-items: center;
font-size: 14px;
color: #fff;
}
navbar > div {
display: flex;
justify-content: space-around;
}
navbar > div a {
color: #fff;
}
navbar > div a:hover {
text-decoration: underline;
}
nav {
font-family: 'Poppins', sans-serif;
width: 100%;
min-height: 70px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-around;
text-transform: uppercase;
-webkit-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
z-index: 1;
}
nav a {
color: rgb(24, 24, 24);
}
nav a > i {
font-size: 20px;
}
nav div.account-info > a > i {
font-size: 25px;
}
.cardGUI { background: red;padding: 20px 0 !important; }
nav div.account-info > a > i.nav-heart:hover {
color: rgb(160, 71, 76);
}
.search-button {
background: rgba(0, 0, 0, 0);
border: 0;
outline: 0;
position: relative;
left: -45px;
top: 4px;
}
.search-button:hover {
cursor: pointer;
}
.search-button i {
font-size: 22px;
color: rgb(47, 47, 47);
}
.search-input {
min-width: 450px;
min-height: 35px;
font-size: 14px;
border-radius: 3px;
border: 0;
color: rgb(98, 98, 98);
outline: 0;
text-indent: 15px;
background: #f1f1f1;
}
div.account-info {
display: flex;
min-width: 125px;
justify-content: space-between;
}
nav span.text {
font-weight: bold;
font-size: 14px;
position: relative;
top: -2px;
left: 5px;
}
nav span.shop-item {
position: relative;
padding: 0px 5px;
font-size: 10px;
background: #D24343;
font-weight: bold;
color: #fff;
border-radius: 50px;
top: 5px;
left: -10px;
}
div.large-categories {
position: absolute;
font-family: 'Poppins', sans-serif;
width: 100%;
background: #fff;
padding: 30px 0px;
display: none;
justify-content: space-around;
z-index: 1;
-webkit-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
box-shadow: 0px 5px 21px -5px rgba(0,0,0,0.75);
}
div.large-categories ul { list-style-type: none;}
div.large-categories ul li a {
color: #323232;
}
div.large-categories ul.image-part {
width: 130px;
height: 180px;
transition-duration: 0.3s;
overflow: hidden;
}
div.large-categories ul.image-part img {
}
div.large-categories ul.image-part a {
padding: 10px 20px;
background: #2b6175;
color: #fff;
font-size: 14px;
font-weight: bold;
position: relative;
left: 10px;
top: -50px;
transition-duration: 0.3s;
}
div.large-categories ul.image-part a:hover {
background: rgba(43, 97, 117, 0.8);
top: -55px;
}
div.large-categories ul.image-part:hover > #filterimg {
transition-duration: 0.3s;
transform: scale(1.1);
}
div.cardGUI {
position: absolute;
z-index: 1;
width: 300px;
height: auto;
font-family: 'Poppins', sans-serif;
background: #fff;
top: 110px;
right: 30px;
-webkit-box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
box-shadow: 4px 4px 5px -1px rgba(0,0,0,0.75);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
display: none;
}
div.cardGUI img {
display: block;
max-width: 75%;
height: auto!important;
}
div.cardGUI div.items div{
display: flex;
justify-content: space-between;
padding: 10px 20px;
background: #fff;
}
div.cardGUI h4 { color: #909090; }
div.cardGUI div.items div div.text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.cardGUI a { color: #909090; }
div.cardGUI a#buttons { color: #000; margin: 0 20px;}
.banner-large {
font-family: 'Poppins', sans-serif;
width: 100%;
height: calc(100vh - 70px - 35px);
background: url("../assets/img/index/index.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: auto;
filter: grayscale(50%);
display: flex;
justify-content: space-around;
align-items: center;
color: #fff;
}
.index h1 { font-weight: bold; font-size: 55px;}
.index h1 span { color: #A40000; }
.index h4 { font-size: 45px; }
.index p { color: #21b886; font-weight: bold; font-size: 30px;}
.index .shop-now {
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
position: relative;
top: 25px;
padding: 12.5px 25px;
font-size: 20px;
font-weight: bold;
color: #fff;
background: rgb(130, 3, 11);
border-radius: 3px;
transition-duration: 0.3s;
}
.index .shop-now:hover {
background: rgba(130, 3, 11, 0.7);
}
.down-button {
position: absolute;
left: 50%;
bottom: 10px;
padding: 10px 20px;
border-radius: 3px;
color: #fff;
background: rgb(138, 29, 29);
align-self: flex-end;
animation-duration: 2s;
animation-iteration-count: infinite;
transform-origin: bottom;
}
.bounce-6 {
animation-name: bounce-6;
animation-timing-function: ease;
}
@keyframes bounce-6 {
0% { transform: scale(1,1) translateY(0); }
10% { transform: scale(1.1,.9) translateY(0); }
30% { transform: scale(.9,1.1) translateY(-25px); }
50% { transform: scale(1.05,.95) translateY(0); }
57% { transform: scale(1,1) translateY(-7px); }
64% { transform: scale(1,1) translateY(0); }
100% { transform: scale(1,1) translateY(0); }
}
.top-seller {
font-family: 'Open Sans', sans-serif;
width: 90%;
min-height: 600px;
margin: auto;
margin-top: 75px;
}
.top-seller .header {
display: flex;
flex-direction: column;
align-items: center;
}
.top-seller .header h1 { text-transform: uppercase;}
.top-seller h3 { text-transform: uppercase; }
.products {
width: 90%;
min-height: 400px;
margin: auto;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.product {
margin: 25px 25px;
/* border: 1px solid #000; */
box-sizing: border-box;
flex: 20%;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
}
.product .image-part {
/* border: 1px solid red; */
width: 180px;
height: 250px;
overflow: hidden;
}
.product .image-part img {
max-width: 100%;
height: auto;
}
.back-img {
display: none;
}
.product .content-part {
margin-top: 10px;
display: flex;
flex-direction: column;
}
.product .content-part h4 { color: #777777; font-weight: normal; letter-spacing: 0.5px;}
.product .content-part h4 a { color: #777777; font-weight: normal; letter-spacing: 0.5px;}
.product .content-part span { font-weight: bold;}
.product .content-part span del { font-weight: normal !important;color: #464646; font-size: 13px; margin-left: 10px;}
.product .content-part .see-product-button {
padding: 10px 20px;
color: #fff;
font-weight: bold;
font-size: 15px;
letter-spacing: 1px;
border-radius: 2px;
background: rgb(124, 30, 44);
}
.product .content-part .see-product-button:hover {
transition-duration: 0.3s;
background: rgba(124, 30, 44, 0.9);
}
.banner {
font-family: 'Montserrat', sans-serif;
width: 100%;
min-height: 500px;
background: url("../assets/img/index/banner.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: space-between;
}
.banner .items { margin-left: 50px; flex-direction: column;}
.banner h1 { font-size: 65px; color: rgb(149, 42, 45); }
.banner h2 { font-size: 50px; letter-spacing: 0.5px; color: #444444; text-transform: uppercase;}
.banner h3 { font-size: 35px; letter-spacing: 1px; color: #212121; text-transform: uppercase; margin-top: 10px;}
.banner .buttons { position: relative; left: -50px;}
.banner .banner-button {
font-size: 25px;
padding: 30px 60px;
color: #fff;
background: rgb(149, 42, 45);
border-radius: 1px;
transition-duration: 0.3s;
}
.banner .banner-button:hover {
background: rgba(149, 42, 45, 0.8);
}
footer {
font-family: 'Poppins', sans-serif;
width: 100%;
min-height: 350px;
background: #e8e8e8;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
footer ul { list-style-type: none; }
footer li { margin-bottom: 5px; font-size: 15px; }
footer a { color: #3e3e3e; font-size: 14px; }
footer p { font-size: 15px; }
footer i { color: #959595; }
footer h3 { color: #000; text-transform: uppercase; font-size: 17px; margin-bottom: 20px; letter-spacing: 0.4px;}
footer .about p {
max-width: 510px;
word-wrap: break-word;
}
@media only screen and (max-width: 768px) {
footer {
flex-direction: column;
overflow: hidden;
justify-content: center;
margin: 0;
padding: 20px 0;
}
footer h3 {
margin-bottom: 10px;
}
footer p { width: 250px;}
footer div.about {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer div.about p {
width: 40%;
margin-bottom: 10px;
text-align: center;
}
.search-box {
display: none;
}
div.large-categories {
flex-direction: column;
justify-content: center;
align-items: center;
}
div.large-categories ul.image-part {
display: none;
}
.down-button {
left: 45%;
}
.product {
flex: 100%;
}
.product .content-part .see-product-button {
margin-top: 10px;
}
.banner { flex-direction: column; justify-content: center;}
.banner div {
margin: 25px 50px;
}
.banner h1 { font-size: 27px; }
.banner h2 { font-size: 23px; }
.banner h3 { font-size: 20px; }
.banner .banner-button {
font-size: 22px;
padding: 10px 20px;
}
.banner .buttons {
left: 0;
}
} | 0.25174 | 0.077973 |
body {
font: normal 14px/22px Open Sans,Trebuchet MS,Helvetica,Arial,sans-serif;
}
.header{
background: #F5C518;
color: #ffffff;
padding-top: 30px;
min-height: 70px;
border-bottom: black 3px solid;
display: flex;
}
.container {
width: 90%;
margin: auto;
overflow: hidden;
padding-top: 40px;
}
.highlight{
font-weight: bold;
text-transform: uppercase;
}
.menu {
list-style: none;
margin-bottom: 0px;
padding: 0 0 10px;
}
.menu > li {
display: inline;
}
.menu > li + li:before {
content: "|";
padding-right:10px;
}
nav a {
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
color:black ;
background: none ;
}
nav a:hover {
color: white;
font-weight: bold;
}
nav a:visited{
color:white;
font-weight: bold;
}
.input_Search {
padding: 8px;
background-color: #f2f2f2;
text-transform: uppercase;
width: 300px;
border-radius: 4px;
border: medium none;
}
.select_box{
text-align: center;
height: 35px;
margin-right: 10px;
background-color: #f2f2f2;
text-transform: uppercase;
width: 130px;
border-radius: 4px;
border: medium none;
color: #947878;
vertical-align: middle;
padding: 5px;
}
.set_left{
float:left;
margin-top: -30px;
}
.set_right{
float:right;
}
.moviedetails_box ,.search_box ,.form_box{
display: flex;
}
.search_container{
border-radius: 12px;
border: 1px solid #E8E8E8;
margin-bottom: 7px;
padding: 10px 12px;
width: auto;
background-color: #FFFFFF;
margin-top: 40px;
display: flex;
}
.search_button{
background-color: #F5C518;
border-color: #F5C518;
padding: 5px 32px 5px 32px;
border-radius: 4px;
text-decoration: none;
vertical-align: bottom;
text-transform: uppercase;
width: 130px;
color: white;
height: 35px;
}
button:disabled {
color:grey ;
background-color: burlywood ;
}
.article{
border-radius: 12px;
border: 1px solid #E8E8E8;
margin-bottom: 7px;
padding: 10px 12px;
width: auto;
background-color: #FFFFFF;
}
.section{
padding: 15px;
}
.plot_box , .search_box , .button_box{
padding-left:30px;
}
tbody tr:nth-child(odd) ,
td tr ul li:nth-child(odd) {
background: #f4f4f4;
}
ul li{
list-style: none;
}
tr td {
padding: 5px;
}
ul{
margin: 0px;
padding: 0px;
}
.poster_box{
width: auto;
height: 400px;
}
.poster_featured{
width: auto;
height: 200px;
}
.footer{
padding: 20px;
margin-top: 20px;
text-align: center;
background: #F5C518;
color: #ffffff;
}
@media screen and (max-width: 800px) {
.search_container,.form_box{
display:block;
}
.button_box{
padding-top:20px;
}
.poster_box{
width: auto;
height: 200px;
}
}
@media screen and (max-width: 600px) {
nav ,.set_left , .set_right {
float: none;
text-align: center;
width: 100%;
}
.search_box , .moviedetails_box{
display:block;
}
.plot_box , .search_box ,.button_box{
padding-left:0px;
padding-top: 10px;
}
.select_box{
width: 285px;
}
.input_Search{
width: 270px;
}
} | app/app.css | body {
font: normal 14px/22px Open Sans,Trebuchet MS,Helvetica,Arial,sans-serif;
}
.header{
background: #F5C518;
color: #ffffff;
padding-top: 30px;
min-height: 70px;
border-bottom: black 3px solid;
display: flex;
}
.container {
width: 90%;
margin: auto;
overflow: hidden;
padding-top: 40px;
}
.highlight{
font-weight: bold;
text-transform: uppercase;
}
.menu {
list-style: none;
margin-bottom: 0px;
padding: 0 0 10px;
}
.menu > li {
display: inline;
}
.menu > li + li:before {
content: "|";
padding-right:10px;
}
nav a {
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
color:black ;
background: none ;
}
nav a:hover {
color: white;
font-weight: bold;
}
nav a:visited{
color:white;
font-weight: bold;
}
.input_Search {
padding: 8px;
background-color: #f2f2f2;
text-transform: uppercase;
width: 300px;
border-radius: 4px;
border: medium none;
}
.select_box{
text-align: center;
height: 35px;
margin-right: 10px;
background-color: #f2f2f2;
text-transform: uppercase;
width: 130px;
border-radius: 4px;
border: medium none;
color: #947878;
vertical-align: middle;
padding: 5px;
}
.set_left{
float:left;
margin-top: -30px;
}
.set_right{
float:right;
}
.moviedetails_box ,.search_box ,.form_box{
display: flex;
}
.search_container{
border-radius: 12px;
border: 1px solid #E8E8E8;
margin-bottom: 7px;
padding: 10px 12px;
width: auto;
background-color: #FFFFFF;
margin-top: 40px;
display: flex;
}
.search_button{
background-color: #F5C518;
border-color: #F5C518;
padding: 5px 32px 5px 32px;
border-radius: 4px;
text-decoration: none;
vertical-align: bottom;
text-transform: uppercase;
width: 130px;
color: white;
height: 35px;
}
button:disabled {
color:grey ;
background-color: burlywood ;
}
.article{
border-radius: 12px;
border: 1px solid #E8E8E8;
margin-bottom: 7px;
padding: 10px 12px;
width: auto;
background-color: #FFFFFF;
}
.section{
padding: 15px;
}
.plot_box , .search_box , .button_box{
padding-left:30px;
}
tbody tr:nth-child(odd) ,
td tr ul li:nth-child(odd) {
background: #f4f4f4;
}
ul li{
list-style: none;
}
tr td {
padding: 5px;
}
ul{
margin: 0px;
padding: 0px;
}
.poster_box{
width: auto;
height: 400px;
}
.poster_featured{
width: auto;
height: 200px;
}
.footer{
padding: 20px;
margin-top: 20px;
text-align: center;
background: #F5C518;
color: #ffffff;
}
@media screen and (max-width: 800px) {
.search_container,.form_box{
display:block;
}
.button_box{
padding-top:20px;
}
.poster_box{
width: auto;
height: 200px;
}
}
@media screen and (max-width: 600px) {
nav ,.set_left , .set_right {
float: none;
text-align: center;
width: 100%;
}
.search_box , .moviedetails_box{
display:block;
}
.plot_box , .search_box ,.button_box{
padding-left:0px;
padding-top: 10px;
}
.select_box{
width: 285px;
}
.input_Search{
width: 270px;
}
} | 0.468547 | 0.082623 |
.Button {
width: calc((100% - 24px) / 3);
padding-top: calc((100% - 24px) / 3);
position: relative;
border: 1px solid #165e6a;
box-sizing: border-box;
margin-bottom: 12px;
background-color: transparent;
cursor: pointer;
outline: none;
}
.Button:hover,
.Button:active {
background-color: rgba(22, 94, 106, 0.3);
}
.FocusBlock {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
transition: all 0.4s linear;
}
.ButtonInnerContainer > div {
text-align: left;
}
.InputBlock > div {
color: #30d6d6;
font-size: 12px;
font-weight: 500;
text-align: center;
width: 100%;
}
.FocusBlock > div {
position: absolute;
width: 10px;
height: 10px;
opacity: 0;
}
.FocusBlock > div:first-of-type {
top: 0;
left: 0;
}
.FocusBlock > div:nth-of-type(2) {
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3) {
right: 0;
bottom: 0;
}
.FocusBlock > div:last-of-type {
bottom: 0;
left: 0;
}
.SupTitle {
color: #30d6d6;
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
}
.Title {
color: #fff;
font-size: 36px;
font-weight: 400;
}
.SubTitle {
color: #96bd0d;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
position: absolute;
left: 8px;
bottom: 10px;
}
.FormLine button > div:first-of-type {
display: flex;
align-items: center;
justify-content: center;
}
.FormLine button > div:last-of-type {
z-index: 0;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.FormLine button > div:last-of-type > div {
width: 10px;
height: 4px;
background-color: #3bd5d5;
position: absolute;
}
.Button:focus .FocusBlock > div {
opacity: 1;
}
.FocusBlock > div:first-of-type::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
top: 0;
left: 0;
}
.FocusBlock > div:first-of-type::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
top: 0;
left: 0;
}
.FocusBlock > div:nth-of-type(2)::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(2)::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3)::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3)::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
}
.FocusBlock > div:last-of-type::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
left: 0;
}
.FocusBlock > div:last-of-type::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
z-index: 0;
}
.ButtonInnerContainer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: calc(100% - 10px);
height: calc(100% - 10px);
margin: 5px;
box-sizing: border-box;
border: 2px solid #3596b7;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 10px 8px;
z-index: 1;
}
.ButtonInnerContainer::before {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: -10px;
left: -10px;
background-color: #3596b7;
transform: rotate(45deg);
}
.Button:nth-of-type(3n) .FocusBlock::before,
.Button:nth-of-type(3n) .FocusBlock::after {
content: "";
position: absolute;
top: -10px;
width: 1px;
height: calc(100% + 20px);
background-color: #3bd5d5;
opacity: 0.3;
}
.Button:nth-of-type(3n) .FocusBlock::before {
left: calc(50%);
transform: rotate(-44deg);
}
.Button:nth-of-type(3n) .FocusBlock::after {
right: calc(50%);
transform: rotate(44deg);
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type {
position: absolute;
bottom: 0;
right: 0;
display: block;
width: 10px;
height: 10px;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::before,
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::after {
content: '';
display: block;
background-color: #3596b7;
position: absolute;
bottom: 0;
right: 0;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::before {
width: 100%;
height: 4px;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::after {
width: 4px;
height: 100%;
}
@media (max-width: 1600px) {
.SupTitle {
font-size: 12px;
}
.Title {
font-size: 22px;
}
.SubTitle {
font-size: 12px;
}
}
@media (max-width: 1300px) {
.SupTitle {
font-size: 10px;
}
.Title {
font-size: 18px;
}
.SubTitle {
font-size: 10px;
}
} | app/components/UI/PincodeButton/PincodeButton.css | .Button {
width: calc((100% - 24px) / 3);
padding-top: calc((100% - 24px) / 3);
position: relative;
border: 1px solid #165e6a;
box-sizing: border-box;
margin-bottom: 12px;
background-color: transparent;
cursor: pointer;
outline: none;
}
.Button:hover,
.Button:active {
background-color: rgba(22, 94, 106, 0.3);
}
.FocusBlock {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
transition: all 0.4s linear;
}
.ButtonInnerContainer > div {
text-align: left;
}
.InputBlock > div {
color: #30d6d6;
font-size: 12px;
font-weight: 500;
text-align: center;
width: 100%;
}
.FocusBlock > div {
position: absolute;
width: 10px;
height: 10px;
opacity: 0;
}
.FocusBlock > div:first-of-type {
top: 0;
left: 0;
}
.FocusBlock > div:nth-of-type(2) {
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3) {
right: 0;
bottom: 0;
}
.FocusBlock > div:last-of-type {
bottom: 0;
left: 0;
}
.SupTitle {
color: #30d6d6;
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
}
.Title {
color: #fff;
font-size: 36px;
font-weight: 400;
}
.SubTitle {
color: #96bd0d;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
position: absolute;
left: 8px;
bottom: 10px;
}
.FormLine button > div:first-of-type {
display: flex;
align-items: center;
justify-content: center;
}
.FormLine button > div:last-of-type {
z-index: 0;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.FormLine button > div:last-of-type > div {
width: 10px;
height: 4px;
background-color: #3bd5d5;
position: absolute;
}
.Button:focus .FocusBlock > div {
opacity: 1;
}
.FocusBlock > div:first-of-type::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
top: 0;
left: 0;
}
.FocusBlock > div:first-of-type::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
top: 0;
left: 0;
}
.FocusBlock > div:nth-of-type(2)::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(2)::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
top: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3)::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
}
.FocusBlock > div:nth-of-type(3)::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
}
.FocusBlock > div:last-of-type::before {
content: '';
display: block;
height: 100%;
width: 4px;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
left: 0;
}
.FocusBlock > div:last-of-type::after {
content: '';
display: block;
height: 4px;
width: 100%;
background-color: #3bd5d5;
position: absolute;
bottom: 0;
right: 0;
z-index: 0;
}
.ButtonInnerContainer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: calc(100% - 10px);
height: calc(100% - 10px);
margin: 5px;
box-sizing: border-box;
border: 2px solid #3596b7;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 10px 8px;
z-index: 1;
}
.ButtonInnerContainer::before {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: -10px;
left: -10px;
background-color: #3596b7;
transform: rotate(45deg);
}
.Button:nth-of-type(3n) .FocusBlock::before,
.Button:nth-of-type(3n) .FocusBlock::after {
content: "";
position: absolute;
top: -10px;
width: 1px;
height: calc(100% + 20px);
background-color: #3bd5d5;
opacity: 0.3;
}
.Button:nth-of-type(3n) .FocusBlock::before {
left: calc(50%);
transform: rotate(-44deg);
}
.Button:nth-of-type(3n) .FocusBlock::after {
right: calc(50%);
transform: rotate(44deg);
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type {
position: absolute;
bottom: 0;
right: 0;
display: block;
width: 10px;
height: 10px;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::before,
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::after {
content: '';
display: block;
background-color: #3596b7;
position: absolute;
bottom: 0;
right: 0;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::before {
width: 100%;
height: 4px;
}
.Button:not(:nth-of-type(3n + 2)) .ButtonInnerContainer > div:last-of-type::after {
width: 4px;
height: 100%;
}
@media (max-width: 1600px) {
.SupTitle {
font-size: 12px;
}
.Title {
font-size: 22px;
}
.SubTitle {
font-size: 12px;
}
}
@media (max-width: 1300px) {
.SupTitle {
font-size: 10px;
}
.Title {
font-size: 18px;
}
.SubTitle {
font-size: 10px;
}
} | 0.608943 | 0.113236 |
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Josefin+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}/*Todo elemento dentro do asteristico são anulados*/
:root{
--font-primary:"Baloo 2", serif;
--font-secundary:'Josefin Slab', serif;
--font-action:"Mulish" serif
} /*Com esta função já é aplicada por padrão as fontes indicadas, em font-family é trocada pelo var(nome do root)*/
html{
scroll-behavior: smooth; /*O movimento da barra de rolagem vai ser suavizado*/
}
.hamburguer{
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 2rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
cursor: pointer;
}
.show-menu .hamburguer{
right: 16rem;
}
.line{
width: 100%;
background-color: white;
height: .1rem;
box-shadow: 0.1rem 0.1rem 1px black;
transition: transform 1s;
}
.show-menu #line1{
transform: rotate(45deg) translate(.5rem, .5rem);
}
.show-menu #line2{
opacity: 0;
visibility: hidden;
}
.show-menu #line3{
transform: rotate(-45deg) translate(.1rem, -.3rem);
}
.hamburguer span{
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(7, 64, 68);
color: white;
font-family: var(--font-action);
opacity: 0;
margin-top: 12%;
}
.show-menu .hamburguer:hover span{
opacity: 1;
}
header{
width: 100%;
height: 100vh;
overflow: hidden; /*Evita a barra de rolagem*/
position: relative;
}
.img-wrapper{
width: 100%;
height: 100%;
background-color: black;
}
.img-wrapper img{
width: 100%;
height: 100%;
object-fit: cover; /*Evita que a imagem fique distorcida e dentro dos valores definidos */
opacity: 0.5;
animation: zoom 5s;
}
@keyframes zoom {
0%{
transform: scale(1.5);
}
100%{
transform: scale(1);
}
} /*Anima a imagem com um zoom*/
.banner{
position: absolute;
top: 25%;
left: 5%;
}
.banner h1{
color: white;
font-size: 4rem;/*Fonte padrão dos navegadores é 16px, se usar '1rem' a fonte sera proporcional aos navegadores, a medida que o numero aumenta ela é multiplicada*/
font-family: var(--font-primary);
font-weight: 200; /*Diminue o peso reduzindo o negrito*/
text-shadow: .3rem .4rem 2px rgb(2, 26, 36); /*Coloca uma sonbra no texto*/
line-height: 3rem;
margin-bottom: 2rem;
opacity: 0;
animation: moveBanner 1s 0.5s forwards; /*É necessário usar com as @keyframes*/
}
@keyframes moveBanner{
0%{
transform: translateY(10rem) rotateY(-30deg);
}
100%{
transform: translateY(0) rotateY(0);
opacity: 1;
}
} /*Vai animar os textos e o botão*/
.banner p{
color: white;
font-family: var(--font-secundary);
font-size: 2.5rem;
margin-bottom: 2rem;
text-shadow: .3rem .4rem 2px rgb(2, 26, 36);
opacity: 0;
animation: moveBanner 1s 0.7s forwards;
}
.banner button{
font-family: var(--font-action);
color: white;
font-size: 1.1rem;
text-transform: uppercase;/*Deixa maiscula*/
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207)); /*Escure a cor da esquerada para a direita*/
padding: 1rem 2rem 1rem 2rem; /*Com apenas um valor é aplicado nos quatro cantos, dois valores o primeiro valor em cima/embaixo e o segundo valor direita/esquerda, com quatro valores
em sentido horario o primeiro em cima/direita/embaixo/esquerda*/
border: none; /* sem borda*/
border-radius: 8px;
letter-spacing: 0.5rem; /*Dá uma espaço entre as letras*/
cursor: pointer; /*Identifica o elemento como cursor*/
opacity: 0;
animation: moveBanner 1s 0.9s forwards;
}
.banner button:hover{
color: rgb(7, 64, 68);
} /*Hover é uma pseuda classe que identifica uma ação*/
.sidebar{
width: 20rem;
height: 100vh;
background-color:white;
position: fixed;
top: 0;
right: -20rem;
transition: 1s;
z-index: 50;/*Irá ficar por cima de todos os elementos*/
}
.show-menu .sidebar{
right: 0;
}
.menu{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.menu-item{
text-align: center;
margin-bottom: 1rem;
}
.menu-link{
font-family: var(--font-action);
font-size: 2.5rem;
color: rgb(155, 153, 153);
transition: color 1s;
}
.menu-link:hover{
color: rgb(7, 64, 68);
}
.social-media{
position: absolute;
bottom: 2rem;
width: 100%;
display: flex;
justify-content: space-around;
}
.social-media i{
color: rgb(155, 153, 153);
height: 2.5rem;
width: 2.5rem;
font-size: 2.5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
transition: color 1s;
}
.social-media i:hover{
background-color: rgb(7, 64, 68);
}
.conhecimentos{
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(6, 6rem);
row-gap: 0.5rem;
width: 100%;
height: 100vh;
}
.conhecimento:nth-child(1){
grid-column: 4 / 7;
grid-row: 1 / 3;
}
.conhecimento:nth-child(2){
grid-column: 3 / 6;
grid-row: 3 / 5;
}
.conhecimento:nth-child(3){
grid-column: 4 / 7;
grid-row: 5 / -1;
}
.conhecimento:nth-child(4){
grid-column: 11 / 14;
grid-row: 1 / 3;
}
.conhecimento:nth-child(5){
grid-column: 12 / 15;
grid-row: 3 / 5;
}
.conhecimento:nth-child(6){
grid-column: 11 / 14;
grid-row: 5 / -1;
}
.sessao-header{
display: flex;
align-items: center;
justify-content: center;
margin-top: 6rem;
}
.sessao-header h1{
font-family: var(--font-primary);
font-size: 3rem;
color: gray;
border-bottom: solid 3px rgb(7, 64, 68);
margin-bottom: 1.5rem;
}
.conhecimento-header{
display: flex;
align-items: center;
}
.conhecimento-header i{
font-size: 2.5rem;
}
.conhecimento-header h3{
font-family: var(--font-secundary);
font-size: 2rem;
padding-left: 1rem;
}
.conhecimento-text{
font-family: var(--font-secundary);
margin-top: 1rem;
}
.conhecimentos-img-wrapper{
grid-column: 7 / 11;
grid-row: 2 / 6;
width: 100%;
}
.conhecimentos-img-wrapper img{
object-fit: cover;
width: 100%;
}
.projetos{
display: flex;
justify-content: space-evenly;
margin-bottom: 15rem;
}
.card{
width: 32rem;
height: 36rem;
position: relative;
margin: 3rem;
}
.card-img-wrapper{
width: 100%;
height: 100%;
background-color: rgb(231, 225, 225);
border-radius: .3rem;
}
.card-img-wrapper img{
object-fit: cover;
width: 100%;
height: 100%;
opacity: .8;
transition: opacity .3s;
}
.card:hover .card-img-wrapper img{
opacity: .5;
}
.card-info{
position: absolute;
bottom: 0;
opacity: 0;
visibility: hidden;
padding: 2rem;
text-shadow: 0 0.3rem 0.3rem rgba(0,0,0,.6);
transition: all 0.3s;
}
.card-info h2{
font-family: var(--font-secundary);
font-size: 2rem;
font-weight: 500;
color: rgb(6, 7, 6);
}
.card-info h3{
font-family: var(--font-secundary);
font-weight: bolder;
color: rgb(7, 64, 68);
margin-bottom: 1.2rem;
}
.card-info p{
font-family: var(--font-secundary);
color: rgb(6, 7, 6);
font-weight: 400;
width: 90%;
margin-bottom: .5rem;
font-size: 1.5rem;
}
.card-info button{
width: 8rem;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
}
.card:hover .card-info{
bottom: 2rem;
opacity: 1;
visibility: visible;
}
.card-info button:hover{
color: rgb(7, 64, 68);
}
.sessao-contato{
width: 100%;
height: 100vh;
background-color: #272727;
display: flex;
align-items: center;
justify-content: center;
}
.contato-wrapper{
width: 60%;
height: 39rem;
display: flex;
box-shadow: 0 2rem 3rem rgba(0, 0,0,0.5 );
}
.contato-left{
width: 35%;
background: linear-gradient( rgba(49, 49, 49, 0.6), rgba(27, 27, 27, 0.9)), url(imagens/contato.jpeg);
background-size: cover ; /*"cover" cobre o tamnaho da div*/
}
.contato-right{
width: 65%;
background-color: #eee;
padding: 1rem 3rem 3rem 3rem;
}
.sessao-contato h1{
font-family: var(--font-primary);
color: rgb(7, 64, 68);
font-size: 3rem;
font-weight: lighter;
width: 100%;
text-align: center;
}
.sessao-contato form{
width: 100%;
display: flex; /*Por padrão coloca um do lado do outro*/
flex-direction: column; /* Usando junto com o "display flex" coloca um embaixo do outro*/
align-items: center;
}
.input-group{
position: relative;
}
.field{
background: transparent;
border: none;
width: 35rem;
font-size: 1.5rem;
font-family: var(--font-secundary);
border-bottom: 2px dashed rgb(7, 64, 68); /*dashed é borda pontilhada*/
height: 3rem;
outline: none;
margin: 1rem 0;
margin-top: 3rem;
}
.input-group textarea{
padding-top: 1rem;
max-width: 40rem;
max-height: 6rem;
}
.field-label{
position: absolute ;
left: 0;
top: 2rem;
font-size: 1.2rem;
font-family: var(--font-secundary);
color: rgb(7, 64, 68);
text-transform: uppercase;
transition: all 0.3s;
}
.field:focus ~label{
top: 0;
font-size: 1rem;
}
.field:focus{
border-bottom: solid;
}
.btn-contato{
text-transform: uppercase;
width: 100%;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
margin-top: 2rem;
}
.sessao-orcamento{
width: 100%;
height: 100vh;
background: url(imagens/orcamento.jpeg);
object-fit: cover;
display: flex;
justify-content: center;
align-items: center;
}
.orcamento-wrapper{
width: 55%;
height: 75%;
margin-top: 4rem;
background-color: #ffffff99; /*Deixa transparente se informar os doi últimos parâmetros*/
border-radius: 10px;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,.6);
position: relative;
}
.sessao-orcamento h1{
position: absolute;
top: -2.5rem;
left: 2rem;
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
padding: 0 3rem;
color: white;
font-family: var(--font-primary);
font-size: 3rem;
font-weight: lighter;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,.6);
border-radius: 1rem;
}
.btn-orcamento{
text-transform: uppercase;
width: 100%;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
margin-top: 2rem;
grid-column: 2;
}
.sessao-orcamento form{
margin: 4rem;
display: grid;
grid-template-columns: auto 1fr;
column-gap: 2rem;
row-gap: 2rem;
margin-top: 8rem;
}
.sessao-orcamento label{
font-family: var(--font-secundary);
font-size: 1.5rem;
font-weight: bolder;
}
.sessao-orcamento input[type="number"]{
font-family: var(--font-secundary);
width: 4rem;
font-size: 2rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
footer{
width: 100%;
height: 10rem;
background-color: rgb(24, 22, 22);
display: flex;
justify-content: center;
align-items: center;
}
.footer-content{
width: 60%;
display: flex;
justify-content: space-between;
}
.footer-content p{
font-family: var(--font-secundary);
color: honeydew;
font-size: 1.2rem;
}
.social-list a{
margin: 0 2rem;
color: honeydew;
font-size: 1.3rem;
}
.social-list ul{
display: flex;
}
#link-topo{
position: fixed;
right: 3rem;
bottom: 3rem;
width: 3rem;
height: 3rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
display: flex;
justify-content: center;
align-items: center;
color: honeydew;
border-radius: .3rem;
box-shadow: 0 0.1rem 0.6rem #00000099;
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Josefin+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}/*Todo elemento dentro do asteristico são anulados*/
:root{
--font-primary:"Baloo 2", serif;
--font-secundary:'Josefin Slab', serif;
--font-action:"Mulish" serif
} /*Com esta função já é aplicada por padrão as fontes indicadas, em font-family é trocada pelo var(nome do root)*/
html{
scroll-behavior: smooth; /*O movimento da barra de rolagem vai ser suavizado*/
}
.hamburguer{
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 2rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
cursor: pointer;
}
.show-menu .hamburguer{
right: 16rem;
}
.line{
width: 100%;
background-color: white;
height: .1rem;
box-shadow: 0.1rem 0.1rem 1px black;
transition: transform 1s;
}
.show-menu #line1{
transform: rotate(45deg) translate(.5rem, .5rem);
}
.show-menu #line2{
opacity: 0;
visibility: hidden;
}
.show-menu #line3{
transform: rotate(-45deg) translate(.1rem, -.3rem);
}
.hamburguer span{
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(7, 64, 68);
color: white;
font-family: var(--font-action);
opacity: 0;
margin-top: 12%;
}
.show-menu .hamburguer:hover span{
opacity: 1;
}
header{
width: 100%;
height: 100vh;
overflow: hidden; /*Evita a barra de rolagem*/
position: relative;
}
.img-wrapper{
width: 100%;
height: 100%;
background-color: black;
}
.img-wrapper img{
width: 100%;
height: 100%;
object-fit: cover; /*Evita que a imagem fique distorcida e dentro dos valores definidos */
opacity: 0.5;
animation: zoom 5s;
}
@keyframes zoom {
0%{
transform: scale(1.5);
}
100%{
transform: scale(1);
}
} /*Anima a imagem com um zoom*/
.banner{
position: absolute;
top: 25%;
left: 5%;
}
.banner h1{
color: white;
font-size: 4rem;/*Fonte padrão dos navegadores é 16px, se usar '1rem' a fonte sera proporcional aos navegadores, a medida que o numero aumenta ela é multiplicada*/
font-family: var(--font-primary);
font-weight: 200; /*Diminue o peso reduzindo o negrito*/
text-shadow: .3rem .4rem 2px rgb(2, 26, 36); /*Coloca uma sonbra no texto*/
line-height: 3rem;
margin-bottom: 2rem;
opacity: 0;
animation: moveBanner 1s 0.5s forwards; /*É necessário usar com as @keyframes*/
}
@keyframes moveBanner{
0%{
transform: translateY(10rem) rotateY(-30deg);
}
100%{
transform: translateY(0) rotateY(0);
opacity: 1;
}
} /*Vai animar os textos e o botão*/
.banner p{
color: white;
font-family: var(--font-secundary);
font-size: 2.5rem;
margin-bottom: 2rem;
text-shadow: .3rem .4rem 2px rgb(2, 26, 36);
opacity: 0;
animation: moveBanner 1s 0.7s forwards;
}
.banner button{
font-family: var(--font-action);
color: white;
font-size: 1.1rem;
text-transform: uppercase;/*Deixa maiscula*/
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207)); /*Escure a cor da esquerada para a direita*/
padding: 1rem 2rem 1rem 2rem; /*Com apenas um valor é aplicado nos quatro cantos, dois valores o primeiro valor em cima/embaixo e o segundo valor direita/esquerda, com quatro valores
em sentido horario o primeiro em cima/direita/embaixo/esquerda*/
border: none; /* sem borda*/
border-radius: 8px;
letter-spacing: 0.5rem; /*Dá uma espaço entre as letras*/
cursor: pointer; /*Identifica o elemento como cursor*/
opacity: 0;
animation: moveBanner 1s 0.9s forwards;
}
.banner button:hover{
color: rgb(7, 64, 68);
} /*Hover é uma pseuda classe que identifica uma ação*/
.sidebar{
width: 20rem;
height: 100vh;
background-color:white;
position: fixed;
top: 0;
right: -20rem;
transition: 1s;
z-index: 50;/*Irá ficar por cima de todos os elementos*/
}
.show-menu .sidebar{
right: 0;
}
.menu{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.menu-item{
text-align: center;
margin-bottom: 1rem;
}
.menu-link{
font-family: var(--font-action);
font-size: 2.5rem;
color: rgb(155, 153, 153);
transition: color 1s;
}
.menu-link:hover{
color: rgb(7, 64, 68);
}
.social-media{
position: absolute;
bottom: 2rem;
width: 100%;
display: flex;
justify-content: space-around;
}
.social-media i{
color: rgb(155, 153, 153);
height: 2.5rem;
width: 2.5rem;
font-size: 2.5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
transition: color 1s;
}
.social-media i:hover{
background-color: rgb(7, 64, 68);
}
.conhecimentos{
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(6, 6rem);
row-gap: 0.5rem;
width: 100%;
height: 100vh;
}
.conhecimento:nth-child(1){
grid-column: 4 / 7;
grid-row: 1 / 3;
}
.conhecimento:nth-child(2){
grid-column: 3 / 6;
grid-row: 3 / 5;
}
.conhecimento:nth-child(3){
grid-column: 4 / 7;
grid-row: 5 / -1;
}
.conhecimento:nth-child(4){
grid-column: 11 / 14;
grid-row: 1 / 3;
}
.conhecimento:nth-child(5){
grid-column: 12 / 15;
grid-row: 3 / 5;
}
.conhecimento:nth-child(6){
grid-column: 11 / 14;
grid-row: 5 / -1;
}
.sessao-header{
display: flex;
align-items: center;
justify-content: center;
margin-top: 6rem;
}
.sessao-header h1{
font-family: var(--font-primary);
font-size: 3rem;
color: gray;
border-bottom: solid 3px rgb(7, 64, 68);
margin-bottom: 1.5rem;
}
.conhecimento-header{
display: flex;
align-items: center;
}
.conhecimento-header i{
font-size: 2.5rem;
}
.conhecimento-header h3{
font-family: var(--font-secundary);
font-size: 2rem;
padding-left: 1rem;
}
.conhecimento-text{
font-family: var(--font-secundary);
margin-top: 1rem;
}
.conhecimentos-img-wrapper{
grid-column: 7 / 11;
grid-row: 2 / 6;
width: 100%;
}
.conhecimentos-img-wrapper img{
object-fit: cover;
width: 100%;
}
.projetos{
display: flex;
justify-content: space-evenly;
margin-bottom: 15rem;
}
.card{
width: 32rem;
height: 36rem;
position: relative;
margin: 3rem;
}
.card-img-wrapper{
width: 100%;
height: 100%;
background-color: rgb(231, 225, 225);
border-radius: .3rem;
}
.card-img-wrapper img{
object-fit: cover;
width: 100%;
height: 100%;
opacity: .8;
transition: opacity .3s;
}
.card:hover .card-img-wrapper img{
opacity: .5;
}
.card-info{
position: absolute;
bottom: 0;
opacity: 0;
visibility: hidden;
padding: 2rem;
text-shadow: 0 0.3rem 0.3rem rgba(0,0,0,.6);
transition: all 0.3s;
}
.card-info h2{
font-family: var(--font-secundary);
font-size: 2rem;
font-weight: 500;
color: rgb(6, 7, 6);
}
.card-info h3{
font-family: var(--font-secundary);
font-weight: bolder;
color: rgb(7, 64, 68);
margin-bottom: 1.2rem;
}
.card-info p{
font-family: var(--font-secundary);
color: rgb(6, 7, 6);
font-weight: 400;
width: 90%;
margin-bottom: .5rem;
font-size: 1.5rem;
}
.card-info button{
width: 8rem;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
}
.card:hover .card-info{
bottom: 2rem;
opacity: 1;
visibility: visible;
}
.card-info button:hover{
color: rgb(7, 64, 68);
}
.sessao-contato{
width: 100%;
height: 100vh;
background-color: #272727;
display: flex;
align-items: center;
justify-content: center;
}
.contato-wrapper{
width: 60%;
height: 39rem;
display: flex;
box-shadow: 0 2rem 3rem rgba(0, 0,0,0.5 );
}
.contato-left{
width: 35%;
background: linear-gradient( rgba(49, 49, 49, 0.6), rgba(27, 27, 27, 0.9)), url(imagens/contato.jpeg);
background-size: cover ; /*"cover" cobre o tamnaho da div*/
}
.contato-right{
width: 65%;
background-color: #eee;
padding: 1rem 3rem 3rem 3rem;
}
.sessao-contato h1{
font-family: var(--font-primary);
color: rgb(7, 64, 68);
font-size: 3rem;
font-weight: lighter;
width: 100%;
text-align: center;
}
.sessao-contato form{
width: 100%;
display: flex; /*Por padrão coloca um do lado do outro*/
flex-direction: column; /* Usando junto com o "display flex" coloca um embaixo do outro*/
align-items: center;
}
.input-group{
position: relative;
}
.field{
background: transparent;
border: none;
width: 35rem;
font-size: 1.5rem;
font-family: var(--font-secundary);
border-bottom: 2px dashed rgb(7, 64, 68); /*dashed é borda pontilhada*/
height: 3rem;
outline: none;
margin: 1rem 0;
margin-top: 3rem;
}
.input-group textarea{
padding-top: 1rem;
max-width: 40rem;
max-height: 6rem;
}
.field-label{
position: absolute ;
left: 0;
top: 2rem;
font-size: 1.2rem;
font-family: var(--font-secundary);
color: rgb(7, 64, 68);
text-transform: uppercase;
transition: all 0.3s;
}
.field:focus ~label{
top: 0;
font-size: 1rem;
}
.field:focus{
border-bottom: solid;
}
.btn-contato{
text-transform: uppercase;
width: 100%;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
margin-top: 2rem;
}
.sessao-orcamento{
width: 100%;
height: 100vh;
background: url(imagens/orcamento.jpeg);
object-fit: cover;
display: flex;
justify-content: center;
align-items: center;
}
.orcamento-wrapper{
width: 55%;
height: 75%;
margin-top: 4rem;
background-color: #ffffff99; /*Deixa transparente se informar os doi últimos parâmetros*/
border-radius: 10px;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,.6);
position: relative;
}
.sessao-orcamento h1{
position: absolute;
top: -2.5rem;
left: 2rem;
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
padding: 0 3rem;
color: white;
font-family: var(--font-primary);
font-size: 3rem;
font-weight: lighter;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,.6);
border-radius: 1rem;
}
.btn-orcamento{
text-transform: uppercase;
width: 100%;
height: 2.5rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
border-radius: .5rem;
border: none;
font-family: var(--font-action);
font-size: 1.5rem;
color: #eee;
box-shadow: 0 .1rem .8rem rgba(0,0,0,.6);
margin-top: 1.3rem;
cursor: pointer;
margin-top: 2rem;
grid-column: 2;
}
.sessao-orcamento form{
margin: 4rem;
display: grid;
grid-template-columns: auto 1fr;
column-gap: 2rem;
row-gap: 2rem;
margin-top: 8rem;
}
.sessao-orcamento label{
font-family: var(--font-secundary);
font-size: 1.5rem;
font-weight: bolder;
}
.sessao-orcamento input[type="number"]{
font-family: var(--font-secundary);
width: 4rem;
font-size: 2rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
footer{
width: 100%;
height: 10rem;
background-color: rgb(24, 22, 22);
display: flex;
justify-content: center;
align-items: center;
}
.footer-content{
width: 60%;
display: flex;
justify-content: space-between;
}
.footer-content p{
font-family: var(--font-secundary);
color: honeydew;
font-size: 1.2rem;
}
.social-list a{
margin: 0 2rem;
color: honeydew;
font-size: 1.3rem;
}
.social-list ul{
display: flex;
}
#link-topo{
position: fixed;
right: 3rem;
bottom: 3rem;
width: 3rem;
height: 3rem;
background-color: rgb(58, 149, 192); /*Cor de fundo*/
background: -webkit-linear-gradient(to right, rgb(59, 93, 109), rgb(5, 143, 207));
background: linear-gradient(to left, rgb(59, 93, 109), rgb(5, 143, 207));
display: flex;
justify-content: center;
align-items: center;
color: honeydew;
border-radius: .3rem;
box-shadow: 0 0.1rem 0.6rem #00000099;
} | 0.387343 | 0.073563 |
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
10% {
-webkit-transform: rotate(36deg);
-moz-transform: rotate(36deg);
-ms-transform: rotate(36deg);
-o-transform: rotate(36deg);
transform: rotate(36deg);
}
20% {
-webkit-transform: rotate(72deg);
-moz-transform: rotate(72deg);
-ms-transform: rotate(72deg);
-o-transform: rotate(72deg);
transform: rotate(72deg);
}
30% {
-webkit-transform: rotate(108deg);
-moz-transform: rotate(108deg);
-ms-transform: rotate(108deg);
-o-transform: rotate(108deg);
transform: rotate(108deg);
}
40% {
-webkit-transform: rotate(144deg);
-moz-transform: rotate(144deg);
-ms-transform: rotate(144deg);
-o-transform: rotate(144deg);
transform: rotate(144deg);
}
50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
60% {
-webkit-transform: rotate(216deg);
-moz-transform: rotate(216deg);
-ms-transform: rotate(216deg);
-o-transform: rotate(216deg);
transform: rotate(216deg);
}
70% {
-webkit-transform: rotate(252deg);
-moz-transform: rotate(252deg);
-ms-transform: rotate(252deg);
-o-transform: rotate(252deg);
transform: rotate(252deg);
}
80% {
-webkit-transform: rotate(288deg);
-moz-transform: rotate(288deg);
-ms-transform: rotate(288deg);
-o-transform: rotate(288deg);
transform: rotate(288deg);
}
90% {
-webkit-transform: rotate(324deg);
-moz-transform: rotate(324deg);
-ms-transform: rotate(324deg);
-o-transform: rotate(324deg);
transform: rotate(324deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.block {
width: 100px;
height: 100px;
background-color: orange;
left: 50%;
margin-left: -50px;
top: 100px;
color: white;
font-weight: bold;
font-size: 50px;
text-align: center;
position: relative;
}
.block > span {
vertical-align: top;
line-height: 200%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.block.ondrag {
background-color: rgba(135, 142, 77, 0.78);
box-shadow: 5px 5px 10px #ccc;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
-moz-opacity: 0.5;
-ms-opacity: 0.5;
opacity: 0.5;
}
.block.current {
border: 5px dotted white;
}
.block:hover {
cursor: pointer;
}
.block:nth-child(1) {
top: 100px;
background-color: yellow;
}
.block:nth-child(2) {
top: 200px;
background-color: lightgreen;
}
.block:nth-child(3) {
top: 300px;
background-color: mediumpurple;
}
.block:nth-child(4) {
top: 400px;
background-color: lightblue;
}
.block:nth-child(5) {
top: 500px;
background-color: hotpink;
}
.block:nth-child(6) {
top: 600px;
}
.spin {
-webkit-animation: spin 5s infinite;
-o-animation: spin 5s infinite;
animation: spin 5s infinite;
}
/*****/
body {
background-color: rgba(142, 111, 6, 0.78);
} | dest/.tmp/css/all.css | @keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
10% {
-webkit-transform: rotate(36deg);
-moz-transform: rotate(36deg);
-ms-transform: rotate(36deg);
-o-transform: rotate(36deg);
transform: rotate(36deg);
}
20% {
-webkit-transform: rotate(72deg);
-moz-transform: rotate(72deg);
-ms-transform: rotate(72deg);
-o-transform: rotate(72deg);
transform: rotate(72deg);
}
30% {
-webkit-transform: rotate(108deg);
-moz-transform: rotate(108deg);
-ms-transform: rotate(108deg);
-o-transform: rotate(108deg);
transform: rotate(108deg);
}
40% {
-webkit-transform: rotate(144deg);
-moz-transform: rotate(144deg);
-ms-transform: rotate(144deg);
-o-transform: rotate(144deg);
transform: rotate(144deg);
}
50% {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
60% {
-webkit-transform: rotate(216deg);
-moz-transform: rotate(216deg);
-ms-transform: rotate(216deg);
-o-transform: rotate(216deg);
transform: rotate(216deg);
}
70% {
-webkit-transform: rotate(252deg);
-moz-transform: rotate(252deg);
-ms-transform: rotate(252deg);
-o-transform: rotate(252deg);
transform: rotate(252deg);
}
80% {
-webkit-transform: rotate(288deg);
-moz-transform: rotate(288deg);
-ms-transform: rotate(288deg);
-o-transform: rotate(288deg);
transform: rotate(288deg);
}
90% {
-webkit-transform: rotate(324deg);
-moz-transform: rotate(324deg);
-ms-transform: rotate(324deg);
-o-transform: rotate(324deg);
transform: rotate(324deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.block {
width: 100px;
height: 100px;
background-color: orange;
left: 50%;
margin-left: -50px;
top: 100px;
color: white;
font-weight: bold;
font-size: 50px;
text-align: center;
position: relative;
}
.block > span {
vertical-align: top;
line-height: 200%;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.block.ondrag {
background-color: rgba(135, 142, 77, 0.78);
box-shadow: 5px 5px 10px #ccc;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
-moz-opacity: 0.5;
-ms-opacity: 0.5;
opacity: 0.5;
}
.block.current {
border: 5px dotted white;
}
.block:hover {
cursor: pointer;
}
.block:nth-child(1) {
top: 100px;
background-color: yellow;
}
.block:nth-child(2) {
top: 200px;
background-color: lightgreen;
}
.block:nth-child(3) {
top: 300px;
background-color: mediumpurple;
}
.block:nth-child(4) {
top: 400px;
background-color: lightblue;
}
.block:nth-child(5) {
top: 500px;
background-color: hotpink;
}
.block:nth-child(6) {
top: 600px;
}
.spin {
-webkit-animation: spin 5s infinite;
-o-animation: spin 5s infinite;
animation: spin 5s infinite;
}
/*****/
body {
background-color: rgba(142, 111, 6, 0.78);
} | 0.533397 | 0.234527 |
@font-face {
font-family: 'Novacento Sans Wide';
src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot");
src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff2") format("woff2"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff") format("woff"), url("../fonts/Novecentosanswide-UltraLight-webfont.ttf") format("truetype"), url("../fonts/Novecentosanswide-UltraLight-webfont.svg#novecento_sans_wideultralight") format("svg");
font-style: normal;
font-weight: 200;
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 300;
src: url("../fonts/Work_Sans_300.eot?#iefix") format("embedded-opentype"), url("../fonts/Work_Sans_300.woff") format("woff"), url("../fonts/Work_Sans_300.woff2") format("woff2"), url("../fonts/Work_Sans_300.svg#WorkSans") format("svg"), url("../fonts/Work_Sans_300.ttf") format("truetype");
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
src: url("../fonts/Work_Sans_500.eot?#iefix") format("embedded-opentype"), url("../fonts/Work_Sans_500.woff") format("woff"), url("../fonts/Work_Sans_500.woff2") format("woff2"), url("../fonts/Work_Sans_500.svg#WorkSans") format("svg"), url("../fonts/Work_Sans_500.ttf") format("truetype");
}
body {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 300;
font-size: 18px;
}
p.lead, .paragraph.lead>p, #preamble>.sectionbody>.paragraph:first-of-type p {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
font-size: 16px;
}
p {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 300;
font-size: 16px;
}
h2, h3, h4, h5, h6 {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-rendering: optimizeLegibility;
color: #5e5e5e;
font-weight: 400;
letter-spacing: -1px;
}
h1 {
font-family: "Novacento Sans Wide", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-align: center;
text-transform: uppercase;
color: #222;
font-weight: 200;
}
#toctitle {
margin-left: -18px;
margin-right: -18px;
margin-top: -22.5px !important;
padding: 18px;
font-weight: 800;
color: white;
background-color: black;
border-bottom: 4px solid #fb3232;
}
#toc.toc2 {
background-color: #323232;
}
@media screen {
#tocbot > ul.toc-list{
margin-bottom: 0.5em;
margin-left: 0.125em
}
#tocbot ul.sectlevel0, #tocbot a.toc-link.node-name--H1 + ul {
padding-left: 0
}
#tocbot a.toc-link {
height:100%
}
.is-collapsible{
max-height:3000px;
overflow:hidden;
}
.is-collapsed{
max-height:0
}
#tocbot a.toc-link.is-active-link {
color: white !important;
}
}
@media print{
#tocbot a.toc-link.node-name--H4{ display:none }
}
#toc a {
color: #aaaaaa;
}
#toc a:hover {
color: white;
}
#toc a:active {
text-decoration: none;
}
a {
color: #ff5050;
text-decoration: none;
}
a:hover {
color: #9c0000;
text-decoration: underline;
}
pre.highlight { line-height: 1; }
code { font-size: 0.8em; } | docs/adoc/style/amdatu.css | @font-face {
font-family: 'Novacento Sans Wide';
src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot");
src: url("../fonts/Novecentosanswide-UltraLight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff2") format("woff2"), url("../fonts/Novecentosanswide-UltraLight-webfont.woff") format("woff"), url("../fonts/Novecentosanswide-UltraLight-webfont.ttf") format("truetype"), url("../fonts/Novecentosanswide-UltraLight-webfont.svg#novecento_sans_wideultralight") format("svg");
font-style: normal;
font-weight: 200;
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 300;
src: url("../fonts/Work_Sans_300.eot?#iefix") format("embedded-opentype"), url("../fonts/Work_Sans_300.woff") format("woff"), url("../fonts/Work_Sans_300.woff2") format("woff2"), url("../fonts/Work_Sans_300.svg#WorkSans") format("svg"), url("../fonts/Work_Sans_300.ttf") format("truetype");
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
src: url("../fonts/Work_Sans_500.eot?#iefix") format("embedded-opentype"), url("../fonts/Work_Sans_500.woff") format("woff"), url("../fonts/Work_Sans_500.woff2") format("woff2"), url("../fonts/Work_Sans_500.svg#WorkSans") format("svg"), url("../fonts/Work_Sans_500.ttf") format("truetype");
}
body {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 300;
font-size: 18px;
}
p.lead, .paragraph.lead>p, #preamble>.sectionbody>.paragraph:first-of-type p {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 400;
font-size: 16px;
}
p {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
font-weight: 300;
font-size: 16px;
}
h2, h3, h4, h5, h6 {
font-family: "Work Sans", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-rendering: optimizeLegibility;
color: #5e5e5e;
font-weight: 400;
letter-spacing: -1px;
}
h1 {
font-family: "Novacento Sans Wide", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
text-align: center;
text-transform: uppercase;
color: #222;
font-weight: 200;
}
#toctitle {
margin-left: -18px;
margin-right: -18px;
margin-top: -22.5px !important;
padding: 18px;
font-weight: 800;
color: white;
background-color: black;
border-bottom: 4px solid #fb3232;
}
#toc.toc2 {
background-color: #323232;
}
@media screen {
#tocbot > ul.toc-list{
margin-bottom: 0.5em;
margin-left: 0.125em
}
#tocbot ul.sectlevel0, #tocbot a.toc-link.node-name--H1 + ul {
padding-left: 0
}
#tocbot a.toc-link {
height:100%
}
.is-collapsible{
max-height:3000px;
overflow:hidden;
}
.is-collapsed{
max-height:0
}
#tocbot a.toc-link.is-active-link {
color: white !important;
}
}
@media print{
#tocbot a.toc-link.node-name--H4{ display:none }
}
#toc a {
color: #aaaaaa;
}
#toc a:hover {
color: white;
}
#toc a:active {
text-decoration: none;
}
a {
color: #ff5050;
text-decoration: none;
}
a:hover {
color: #9c0000;
text-decoration: underline;
}
pre.highlight { line-height: 1; }
code { font-size: 0.8em; } | 0.414069 | 0.068725 |
html {
font-size: 12px;
font-family: sans-serif;
}
body {
overflow: hidden;
font-size: 1.167rem;
margin: 0;
overflow: hidden;
}
h1 {
font-size: 2rem;
margin: 0 0 2rem 0;
font-weight: normal;
}
h2 {
font-size: 1.667rem;
margin: 0 0 2rem 0;
font-weight: bold;
}
h3, legend {
font-size: 1.333rem;
margin: 0 0 2rem 0;
font-weight: normal;
}
p {
margin: 0 0 2rem 0;
}
strong, b {
font-weight: bold;
}
a {
color: #1976D2;
}
#balancer {
position: relative;
height: 100vh;
width: 100%;
font-size: 1.167rem;
overflow: hidden;
}
#balancer *:focus {
outline: none;
}
#balancer *,
#balancer *:after,
#balancer *:before {
box-sizing: border-box;
}
#balancer input,
#balancer button {
font-family: sans-serif;
}
#balancer button {
cursor: pointer;
}
#balancer .balancer-preset,
#balancer button[name=icon] {
border: none;
background-color: Transparent;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 3rem;
height: 3rem;
margin: 0.5rem;
padding: 0;
border: none;
overflow: hidden;
white-space: nowrap;
text-indent: 4rem;
}
#balancer label:hover b {
color: #1976D2;
}
#balancer input[type=text],
#balancer input[type=number],
#balancer input[type=date],
#balancer input[type=time],
#balancer textarea,
#balancer select {
border-radius: 0;
border: none;
border-bottom: solid 1px #CCCCCC;
background-color: Transparent;
background-repeat: no-repeat;
background-position: right center;
background-size: auto 70%;
margin: 0;
padding: 0;
height: 2.333rem;
font-size: 1.167rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
#balancer input[type=range] {
margin: 0.5rem 0 0 0;
}
#balancer input[type=text]:focus,
#balancer input[type=number]:focus,
#balancer input[type=date]:focus,
#balancer input[type=time]:focus,
#balancer textarea:focus,
#balancer select:focus {
border-bottom: solid 2px #1976D2;
}
#balancer input[type=date]:focus,
#balancer input[type=time]:focus,
#balancer select:focus {
transform: translateY(1px);
}
#balancer textarea {
height: 6rem;
}
#balancer select {
background-image: url("../icons/button_backward_2.svg");
}
#balancer button[disabled] {
cursor: default;
opacity: 0.5;
}
#balancer button[name=reset],
#balancer button[name=confirm] {
height: 3rem;
background-color: #1976D2;
box-shadow : 1px 1px 1px rgba(0,0,0,0.5);
border: none;
padding: 0 1.333rem;
margin: 0.667rem 0 0;
font-size: 1.167rem;
text-transform: uppercase;
color: #fff;
}
#balancer button[name=remove],
#balancer button[name=add] {
border: none;
background-color: Transparent;
padding: 0;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 1.5rem;
height: 1.5rem;
overflow: hidden;
white-space: nowrap;
text-indent: 3rem;
}
#balancer button[name=remove] {
background-image: url("../icons/button_delete_2.svg");
}
#balancer button[name=add] {
background-image: url("../icons/button_new_2.svg");
width: 3rem;
height: 3rem;
}
@keyframes bounce {
0% {
transform: translate(-50%, -125%);
}
100% {
transform: translate(-50%, -110%);
}
}
@keyframes throb {
0% {
transform: scale(1.1, 1.1);
}
100% {
transform: scale(1, 1);
}
} | www/styles/balancer.css | html {
font-size: 12px;
font-family: sans-serif;
}
body {
overflow: hidden;
font-size: 1.167rem;
margin: 0;
overflow: hidden;
}
h1 {
font-size: 2rem;
margin: 0 0 2rem 0;
font-weight: normal;
}
h2 {
font-size: 1.667rem;
margin: 0 0 2rem 0;
font-weight: bold;
}
h3, legend {
font-size: 1.333rem;
margin: 0 0 2rem 0;
font-weight: normal;
}
p {
margin: 0 0 2rem 0;
}
strong, b {
font-weight: bold;
}
a {
color: #1976D2;
}
#balancer {
position: relative;
height: 100vh;
width: 100%;
font-size: 1.167rem;
overflow: hidden;
}
#balancer *:focus {
outline: none;
}
#balancer *,
#balancer *:after,
#balancer *:before {
box-sizing: border-box;
}
#balancer input,
#balancer button {
font-family: sans-serif;
}
#balancer button {
cursor: pointer;
}
#balancer .balancer-preset,
#balancer button[name=icon] {
border: none;
background-color: Transparent;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 3rem;
height: 3rem;
margin: 0.5rem;
padding: 0;
border: none;
overflow: hidden;
white-space: nowrap;
text-indent: 4rem;
}
#balancer label:hover b {
color: #1976D2;
}
#balancer input[type=text],
#balancer input[type=number],
#balancer input[type=date],
#balancer input[type=time],
#balancer textarea,
#balancer select {
border-radius: 0;
border: none;
border-bottom: solid 1px #CCCCCC;
background-color: Transparent;
background-repeat: no-repeat;
background-position: right center;
background-size: auto 70%;
margin: 0;
padding: 0;
height: 2.333rem;
font-size: 1.167rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
#balancer input[type=range] {
margin: 0.5rem 0 0 0;
}
#balancer input[type=text]:focus,
#balancer input[type=number]:focus,
#balancer input[type=date]:focus,
#balancer input[type=time]:focus,
#balancer textarea:focus,
#balancer select:focus {
border-bottom: solid 2px #1976D2;
}
#balancer input[type=date]:focus,
#balancer input[type=time]:focus,
#balancer select:focus {
transform: translateY(1px);
}
#balancer textarea {
height: 6rem;
}
#balancer select {
background-image: url("../icons/button_backward_2.svg");
}
#balancer button[disabled] {
cursor: default;
opacity: 0.5;
}
#balancer button[name=reset],
#balancer button[name=confirm] {
height: 3rem;
background-color: #1976D2;
box-shadow : 1px 1px 1px rgba(0,0,0,0.5);
border: none;
padding: 0 1.333rem;
margin: 0.667rem 0 0;
font-size: 1.167rem;
text-transform: uppercase;
color: #fff;
}
#balancer button[name=remove],
#balancer button[name=add] {
border: none;
background-color: Transparent;
padding: 0;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 1.5rem;
height: 1.5rem;
overflow: hidden;
white-space: nowrap;
text-indent: 3rem;
}
#balancer button[name=remove] {
background-image: url("../icons/button_delete_2.svg");
}
#balancer button[name=add] {
background-image: url("../icons/button_new_2.svg");
width: 3rem;
height: 3rem;
}
@keyframes bounce {
0% {
transform: translate(-50%, -125%);
}
100% {
transform: translate(-50%, -110%);
}
}
@keyframes throb {
0% {
transform: scale(1.1, 1.1);
}
100% {
transform: scale(1, 1);
}
} | 0.431464 | 0.076891 |
html {
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
padding: 2em 2em 4em;
}
h1, h2, h3, h4, h5, h6 {
color: #222;
font-weight: 600;
line-height: 1.3;
}
h2 {
margin-top: 1.3em;
}
a {
color: #0083e8;
}
b, strong {
font-weight: 600;
}
samp {
display: none;
}
img {
animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
background: transparent;
border: 10px solid rgba(0, 0, 0, 0.12);
border-radius: 4px;
display: block;
margin: 1.3em auto;
max-width: 95%;
}
@keyframes colorize {
0% {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
100% {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
}
/* ---------------- Main-Grid-Container Grid Area ----------------*/
/* Outer Container Sections */
.Header { grid-area: Header; background-color: rgba(51,51,51,1.0); color: white; }
.LeftMenu { grid-area: LeftMenu; background-color: rgba(51,51,51,1.0); color: white;}
.Main { grid-area: Main; }
.Footer { grid-area: Footer;}
/* Primary Container for the site block-out*/
.main-grid-container {
display: grid;
grid-template-areas:
'Header Header Header Header Header'
'LeftMenu Main Main Main Main'
'LeftMenu Main Main Main Main'
'LeftMenu Main Main Main Main'
'Footer Footer Footer Footer Footer'
;
grid-gap: 3px;
background-color: rgba(238, 238, 238, 1.0);
}
/* Clean up div settings */
.main-grid-container > div {
text-align: center;
padding: 20px 0;
font-size: 30px;
}
/* ---------------- Content Grid Area ----------------*/
.listing1 {grid-area: listing1; }
.listing2 {grid-area: listing2;}
.listing3 {grid-area: listing3;}
.listing4 {grid-area: listing4;}
.listing5 {grid-area: listing5;}
.content-grid-container {
display: grid;
grid-gap: 3px;
border: 1px solid rgba(205, 205, 205, 1.0);
grid-template-areas:
'listing1'
'listing2'
'listing3'
'listing4'
'listing5'
;
padding: 10px;
}
/* Clean up div settings */
.content-grid-container > div {
background-color: rgba(255, 255, 255, 1.0);
text-align: left;
/* TODO Clean up padding */
padding: 20px 0;
font-size: 30px;
}
/* ---------------- button update ----------------*/
.buttons-list {
list-style-type: none;
margin: 0;
padding-left: 40px;
width: 200px;
text-decoration: none;
}
.button a {
display: block;
color: #ffff;
padding: 8px 16px;
text-decoration: none;
}
.button a:hover {
color: #c56fd5; | Website/css/main.css | html {
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
padding: 2em 2em 4em;
}
h1, h2, h3, h4, h5, h6 {
color: #222;
font-weight: 600;
line-height: 1.3;
}
h2 {
margin-top: 1.3em;
}
a {
color: #0083e8;
}
b, strong {
font-weight: 600;
}
samp {
display: none;
}
img {
animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
background: transparent;
border: 10px solid rgba(0, 0, 0, 0.12);
border-radius: 4px;
display: block;
margin: 1.3em auto;
max-width: 95%;
}
@keyframes colorize {
0% {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
100% {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
}
/* ---------------- Main-Grid-Container Grid Area ----------------*/
/* Outer Container Sections */
.Header { grid-area: Header; background-color: rgba(51,51,51,1.0); color: white; }
.LeftMenu { grid-area: LeftMenu; background-color: rgba(51,51,51,1.0); color: white;}
.Main { grid-area: Main; }
.Footer { grid-area: Footer;}
/* Primary Container for the site block-out*/
.main-grid-container {
display: grid;
grid-template-areas:
'Header Header Header Header Header'
'LeftMenu Main Main Main Main'
'LeftMenu Main Main Main Main'
'LeftMenu Main Main Main Main'
'Footer Footer Footer Footer Footer'
;
grid-gap: 3px;
background-color: rgba(238, 238, 238, 1.0);
}
/* Clean up div settings */
.main-grid-container > div {
text-align: center;
padding: 20px 0;
font-size: 30px;
}
/* ---------------- Content Grid Area ----------------*/
.listing1 {grid-area: listing1; }
.listing2 {grid-area: listing2;}
.listing3 {grid-area: listing3;}
.listing4 {grid-area: listing4;}
.listing5 {grid-area: listing5;}
.content-grid-container {
display: grid;
grid-gap: 3px;
border: 1px solid rgba(205, 205, 205, 1.0);
grid-template-areas:
'listing1'
'listing2'
'listing3'
'listing4'
'listing5'
;
padding: 10px;
}
/* Clean up div settings */
.content-grid-container > div {
background-color: rgba(255, 255, 255, 1.0);
text-align: left;
/* TODO Clean up padding */
padding: 20px 0;
font-size: 30px;
}
/* ---------------- button update ----------------*/
.buttons-list {
list-style-type: none;
margin: 0;
padding-left: 40px;
width: 200px;
text-decoration: none;
}
.button a {
display: block;
color: #ffff;
padding: 8px 16px;
text-decoration: none;
}
.button a:hover {
color: #c56fd5; | 0.44071 | 0.134463 |
@charset "utf-8";
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei UI", "Microsoft YaHei", SimHei, "\5B8B\4F53", simsun, sans-serif;
color: #666;
}
.logo {
padding:0;
}
#myCarousel {
margin: 50px 0 0 0;
}
#navbar-collapse ul {
margin-top:0;
}
.carousel-inner img {
margin: 0 auto;
}
/*.carousel-control {
font-size: 100px;
}*/
.tab-h2 {
font-size: 20px;
text-align: center;
letter-spacing: 1px;
color: #0059b2;
}
.tab-p {
font-size: 15px;
text-align: center;
letter-spacing: 1px;
color: #999;
margin: 20px 0 40px 0;
}
.tab1 {
margin: 30px 0;
color: #666;
}
.tab1 .text-muted {
color: #999;
text-decoration: line-through;
}
.tab1 .media-heading {
margin: 5px 0 20px 0;
}
.tab1 .col {
padding: 20px;
}
.tab2 {
background-color: #eee;
padding: 60px 20px;
text-align: center;
}
.tab2 img {
width: 40%;
height: 40%;
}
.tab3 {
padding: 60px 20px;
text-align: center;
}
.tab3 img {
width: 65%;
height: 65%;
}
.text h3 {
font-size: 20px;
}
.text p {
font-size: 14px;
}
.jumbotron {
background-image: url(../img/bg.jpg);
margin: 50px 0 0 0;
color: #ccc;
}
.jumbotron h1 {
font-size: 26px;
padding: 0 0 0 20px;
}
.jumbotron h4 {
font-size: 15px;
padding: 0 0 0 20px;
}
#information{
background-color:#eee;
padding:40px 0;
}
.info-content{
background-color:#fff;
margin:0 0 20px 0;
box-shadow:2px 2px 3px #ccc;
}
.info-content img{
margin:12px 0;
}
.info-content h4{
color:#333;
padding:2px 0 0 0;
font-size:14px;
}
.info-content p{
line-height:1.6;
}
.info-right{
background-color: #fff;
box-shadow:2px 2px 3px #ccc;
}
.info-right blockquote{
margin:0;
padding:0;
}
.info-right h2{
font-size:20px;
color:#333;
padding:5px;
}
.info-right h4{
font-size:16px;
color:#333;
padding:2px 0 0 0 ;
line-height:1.6;
}
.case{
background-color: #eee;
padding:40px 0;
text-align:center;
}
.case h4{
color:#666;
}
.case p{
color:#666;
line-height: 1.6;
}
.about{
background-color: #eee;
padding:40px 15px;
}
.about a{
color:#0059b2;
}
.about .content{
background-color: #fff;
box-shadow:2px 2px 3px #ccc;
}
.about h3{
font-size:18px;
color:#333;
border-bottom:1px solid #eee;
padding:20px 0;
margin:0 0 10px 0;
}
.about p{
font-size:13px;
line-height: 2;
}
#footer {
background-color: #666;
border-top: 1px solid #ccc;
padding: 20px;
text-align: center;
color: #eee;
}
@media (min-width: 768px) {
.tab-h2 {
font-size: 26px;
}
.tab-p {
font-size: 16px;
}
.text h3 {
font-size: 22px;
}
.text p {
font-size: 15px;
}
.tab2-text {
float: left;
}
.tab2-img {
float: right;
}
.jumbotron h1 {
font-size: 30px;
}
.jumbotron h4 {
font-size: 16px;
}
.info-content h4{
overflow:hidden;
white-space:nowrap;
text-overflow: ellipsis;
font-size:16px;
}
.about h3{
font-size:19px;
}
.about p{
font-size:14px;
}
}
/* 针对大于992px的屏幕 */
@media (min-width: 992px) {
.tab-h2 {
font-size: 28px;
}
.tab-p {
font-size: 17px;
}
.text h3 {
font-size: 24px;
}
.text p {
font-size: 16px;
}
.jumbotron h1 {
font-size: 33px;
}
.jumbotron h4 {
font-size: 17px;
}
.info-content h4{
font-size:18px;
}
.about h3{
font-size:20px;
}
.about p{
font-size:15px;
}
}
/* 针对大于1280px的屏幕 */
@media (min-width: 1200px) {
.tab-h2 {
font-size: 30px;
}
.tab-p {
font-size: 18px;
}
.text h3 {
font-size: 26px;
}
.text p {
font-size: 18px;
}
.jumbotron h1 {
font-size: 36px;
}
.jumbotron h4 {
font-size: 18px;
}
.info-content h4{
font-size:20px;
}
.about h3{
font-size:22px;
}
.about p{
font-size:16px;
}
} | css/style.css | @charset "utf-8";
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei UI", "Microsoft YaHei", SimHei, "\5B8B\4F53", simsun, sans-serif;
color: #666;
}
.logo {
padding:0;
}
#myCarousel {
margin: 50px 0 0 0;
}
#navbar-collapse ul {
margin-top:0;
}
.carousel-inner img {
margin: 0 auto;
}
/*.carousel-control {
font-size: 100px;
}*/
.tab-h2 {
font-size: 20px;
text-align: center;
letter-spacing: 1px;
color: #0059b2;
}
.tab-p {
font-size: 15px;
text-align: center;
letter-spacing: 1px;
color: #999;
margin: 20px 0 40px 0;
}
.tab1 {
margin: 30px 0;
color: #666;
}
.tab1 .text-muted {
color: #999;
text-decoration: line-through;
}
.tab1 .media-heading {
margin: 5px 0 20px 0;
}
.tab1 .col {
padding: 20px;
}
.tab2 {
background-color: #eee;
padding: 60px 20px;
text-align: center;
}
.tab2 img {
width: 40%;
height: 40%;
}
.tab3 {
padding: 60px 20px;
text-align: center;
}
.tab3 img {
width: 65%;
height: 65%;
}
.text h3 {
font-size: 20px;
}
.text p {
font-size: 14px;
}
.jumbotron {
background-image: url(../img/bg.jpg);
margin: 50px 0 0 0;
color: #ccc;
}
.jumbotron h1 {
font-size: 26px;
padding: 0 0 0 20px;
}
.jumbotron h4 {
font-size: 15px;
padding: 0 0 0 20px;
}
#information{
background-color:#eee;
padding:40px 0;
}
.info-content{
background-color:#fff;
margin:0 0 20px 0;
box-shadow:2px 2px 3px #ccc;
}
.info-content img{
margin:12px 0;
}
.info-content h4{
color:#333;
padding:2px 0 0 0;
font-size:14px;
}
.info-content p{
line-height:1.6;
}
.info-right{
background-color: #fff;
box-shadow:2px 2px 3px #ccc;
}
.info-right blockquote{
margin:0;
padding:0;
}
.info-right h2{
font-size:20px;
color:#333;
padding:5px;
}
.info-right h4{
font-size:16px;
color:#333;
padding:2px 0 0 0 ;
line-height:1.6;
}
.case{
background-color: #eee;
padding:40px 0;
text-align:center;
}
.case h4{
color:#666;
}
.case p{
color:#666;
line-height: 1.6;
}
.about{
background-color: #eee;
padding:40px 15px;
}
.about a{
color:#0059b2;
}
.about .content{
background-color: #fff;
box-shadow:2px 2px 3px #ccc;
}
.about h3{
font-size:18px;
color:#333;
border-bottom:1px solid #eee;
padding:20px 0;
margin:0 0 10px 0;
}
.about p{
font-size:13px;
line-height: 2;
}
#footer {
background-color: #666;
border-top: 1px solid #ccc;
padding: 20px;
text-align: center;
color: #eee;
}
@media (min-width: 768px) {
.tab-h2 {
font-size: 26px;
}
.tab-p {
font-size: 16px;
}
.text h3 {
font-size: 22px;
}
.text p {
font-size: 15px;
}
.tab2-text {
float: left;
}
.tab2-img {
float: right;
}
.jumbotron h1 {
font-size: 30px;
}
.jumbotron h4 {
font-size: 16px;
}
.info-content h4{
overflow:hidden;
white-space:nowrap;
text-overflow: ellipsis;
font-size:16px;
}
.about h3{
font-size:19px;
}
.about p{
font-size:14px;
}
}
/* 针对大于992px的屏幕 */
@media (min-width: 992px) {
.tab-h2 {
font-size: 28px;
}
.tab-p {
font-size: 17px;
}
.text h3 {
font-size: 24px;
}
.text p {
font-size: 16px;
}
.jumbotron h1 {
font-size: 33px;
}
.jumbotron h4 {
font-size: 17px;
}
.info-content h4{
font-size:18px;
}
.about h3{
font-size:20px;
}
.about p{
font-size:15px;
}
}
/* 针对大于1280px的屏幕 */
@media (min-width: 1200px) {
.tab-h2 {
font-size: 30px;
}
.tab-p {
font-size: 18px;
}
.text h3 {
font-size: 26px;
}
.text p {
font-size: 18px;
}
.jumbotron h1 {
font-size: 36px;
}
.jumbotron h4 {
font-size: 18px;
}
.info-content h4{
font-size:20px;
}
.about h3{
font-size:22px;
}
.about p{
font-size:16px;
}
} | 0.120116 | 0.080394 |
.GBCTE .traits_n_talents {
grid-area: traits_n_talents;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"traits talents";
grid-column-gap: 2px;
grid-row-gap: 2px;
border-bottom: 5px solid var(--gb_border_color_1);
}
/********* ********************************************************\
* T R A I T S *
\******************************************************************/
.GBCTE .traits {
grid-area: traits;
display: grid;
justify-content: center;
align-content: start;
grid-template-columns: 60%;
grid-template-rows: auto;
grid-template-areas:
"traits_header"
"traits_table";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .traits_header {
grid-area: traits_header;
display: flex;
justify-content: center;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .traits_table {
grid-area: traits_table;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"brains brains_val"
"muscles muscles_val"
"moves moves_val"
"cool cool_val"
"line line"
"power power_val";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .brains {
grid-area: brains;
}
.GBCTE .brains_val {
grid-area: brains_val;
}
.GBCTE .muscles {
grid-area: muscles;
}
.GBCTE .muscles_val {
grid-area: muscles_val;
}
.GBCTE .moves {
grid-area: moves;
}
.GBCTE .moves_val {
grid-area: moves_val;
}
.GBCTE .cool {
grid-area: cool;
}
.GBCTE .cool_val {
grid-area: cool_val;
}
.GBCTE .line {
grid-area: line;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .power {
grid-area: power;
}
.GBCTE .power_val {
grid-area: power_val;
}
/********* ********************************************************\
* T A L E N T S *
\******************************************************************/
.GBCTE .talents {
grid-area: talents;
display: grid;
justify-content: center;
align-content: start;
grid-template-columns: 60%;
grid-template-rows: auto;
grid-template-areas:
"talents_header"
"talents_table";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .talents_header {
grid-area: talents_header;
display: flex;
justify-content: center;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .talents_table {
grid-area: talents_table;
display: grid;
grid-template-columns: 5fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"brains_t brains_t_val"
"muscles_t muscles_t_val"
"moves_t moves_t_val"
"cool_t cool_t_val"
"line_t line_t"
"lesser_t lesser_t_val"
"greater_t greater_t_val";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .brains_t {
grid-area: brains_t;
}
.GBCTE .brains_t_val {
grid-area: brains_t_val;
}
.GBCTE .muscles_t {
grid-area: muscles_t;
}
.GBCTE .muscles_t_val {
grid-area: muscles_t_val;
}
.GBCTE .moves_t {
grid-area: moves_t;
}
.GBCTE .moves_t_val {
grid-area: moves_t_val;
}
.GBCTE .cool_t {
grid-area: cool_t;
}
.GBCTE .cool_t_val {
grid-area: cool_t_val;
}
.GBCTE .line_t {
grid-area: line_t;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .lesser_t {
grid-area: lesser_t;
}
.GBCTE .lesser_t_val {
grid-area: lesser_t_val;
} | CSS/traits_n_talents.css | .GBCTE .traits_n_talents {
grid-area: traits_n_talents;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"traits talents";
grid-column-gap: 2px;
grid-row-gap: 2px;
border-bottom: 5px solid var(--gb_border_color_1);
}
/********* ********************************************************\
* T R A I T S *
\******************************************************************/
.GBCTE .traits {
grid-area: traits;
display: grid;
justify-content: center;
align-content: start;
grid-template-columns: 60%;
grid-template-rows: auto;
grid-template-areas:
"traits_header"
"traits_table";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .traits_header {
grid-area: traits_header;
display: flex;
justify-content: center;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .traits_table {
grid-area: traits_table;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"brains brains_val"
"muscles muscles_val"
"moves moves_val"
"cool cool_val"
"line line"
"power power_val";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .brains {
grid-area: brains;
}
.GBCTE .brains_val {
grid-area: brains_val;
}
.GBCTE .muscles {
grid-area: muscles;
}
.GBCTE .muscles_val {
grid-area: muscles_val;
}
.GBCTE .moves {
grid-area: moves;
}
.GBCTE .moves_val {
grid-area: moves_val;
}
.GBCTE .cool {
grid-area: cool;
}
.GBCTE .cool_val {
grid-area: cool_val;
}
.GBCTE .line {
grid-area: line;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .power {
grid-area: power;
}
.GBCTE .power_val {
grid-area: power_val;
}
/********* ********************************************************\
* T A L E N T S *
\******************************************************************/
.GBCTE .talents {
grid-area: talents;
display: grid;
justify-content: center;
align-content: start;
grid-template-columns: 60%;
grid-template-rows: auto;
grid-template-areas:
"talents_header"
"talents_table";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .talents_header {
grid-area: talents_header;
display: flex;
justify-content: center;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .talents_table {
grid-area: talents_table;
display: grid;
grid-template-columns: 5fr 1fr;
grid-template-rows: auto;
grid-template-areas:
"brains_t brains_t_val"
"muscles_t muscles_t_val"
"moves_t moves_t_val"
"cool_t cool_t_val"
"line_t line_t"
"lesser_t lesser_t_val"
"greater_t greater_t_val";
grid-column-gap: 2px;
grid-row-gap: 2px;
}
.GBCTE .brains_t {
grid-area: brains_t;
}
.GBCTE .brains_t_val {
grid-area: brains_t_val;
}
.GBCTE .muscles_t {
grid-area: muscles_t;
}
.GBCTE .muscles_t_val {
grid-area: muscles_t_val;
}
.GBCTE .moves_t {
grid-area: moves_t;
}
.GBCTE .moves_t_val {
grid-area: moves_t_val;
}
.GBCTE .cool_t {
grid-area: cool_t;
}
.GBCTE .cool_t_val {
grid-area: cool_t_val;
}
.GBCTE .line_t {
grid-area: line_t;
border-bottom: 5px solid var(--gb_border_color_2);
}
.GBCTE .lesser_t {
grid-area: lesser_t;
}
.GBCTE .lesser_t_val {
grid-area: lesser_t_val;
} | 0.564459 | 0.332067 |
html,
img {
width: 100%;
}
@media screen and (max-device-width: 360px) {
html {
font-size: 50px;
}
}
@media screen and (max-device-width: 384px) and (min-device-width: 360px) {
html {
font-size: 56px;
}
}
@media screen and (max-device-width: 414px) and (min-device-width: 384px) {
html {
font-size: 60px;
}
}
@media screen and (max-device-width: 600px) and (min-device-width: 414px) {
html {
font-size: 64.5px;
}
}
@media screen and (min-device-width: 600px) {
html {
font-size: 100px;
}
}
blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
margin: 0;
padding: 0;
}
body {
font: 0.14rem/1.5 'Microsoft YaHei', '微软雅黑', arial, sans-serif;
background-color: #fff;
max-width: 7.5rem;
margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
}
address,
cite,
dfn,
em,
var {
font-style: normal;
}
code,
kbd,
pre,
samp {
font-family: courier new, courier, monospace;
}
em {
font-weight: 700;
}
ol,
ul {
list-style: none;
}
html {
height: auto;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
color: inherit;
}
a:active,
a:hover,
a:link,
a:visited {
text-decoration: none;
outline: 0;
}
a,
body {
-webkit-tap-highlight-color: transparent;
}
sup {
vertical-align: text-top;
}
sub {
vertical-align: text-bottom;
}
fieldset,
img {
border: 0;
outline: 0;
}
button,
input,
select,
textarea {
border: none;
outline: 0;
}
img {
height: 100%;
display: block;
}
input,
select {
vertical-align: middle;
user-select: auto;
-webkit-appearance: none;
background-color: transparent;
border-color: transparent;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
article,
aside,
audio,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
nav,
section,
summary,
time,
video {
display: block;
margin: 0;
padding: 0;
}
mark {
background: #ff0;
}
input[type='checkbox'] {
cursor: pointer;
}
::-webkit-input-placeholder {
color: #848484;
}
.mt0 {
margin-top: 0 !important;
}
.ml0 {
margin-left: 0 !important;
}
.mr0 {
margin-right: 0 !important;
}
.mb0 {
margin-bottom: 0 !important;
}
.bt0 {
border-top-width: 0 !important;
}
.bb0 {
border-bottom-width: 0 !important;
}
.pt0 {
padding-top: 0 !important;
}
.hide {
display: none;
}
.fr {
float: right;
}
.fl {
float: left;
}
.clear:after {
visibility: hidden;
display: block;
font-size: 0;
content: ' ';
clear: both;
height: 0;
}
.clear {
zoom: 1;
}
[class*=' icon_'],
[class^='icon_'] {
display: inline-block;
vertical-align: middle;
background-repeat: no-repeat;
}
#J_Mask {
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.5);
display: none;
}
#J_Mask .load_box {
width: 2.4rem;
height: 2.4rem;
position: relative;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
border-radius: 10px;
}
#J_Mask .load_box .loading {
width: 0.79rem;
height: 0.72rem;
margin-left: -0.4rem;
margin-top: -0.36rem;
top: 50%;
left: 50%;
position: absolute;
color: #fff;
}
#J_Mask .load_box i {
position: absolute;
top: 50%;
left: 50%;
width: 1.6rem;
height: 1.6rem;
margin-left: -0.8rem;
margin-top: -0.8rem;
animation: loading 1s linear infinite;
-webkit-animation: loading 1s linear infinite;
background-image: url('/assets/loading.png');
background-size: 100%;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@keyframes loading {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes loading {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
} | src/common/common.css | html,
img {
width: 100%;
}
@media screen and (max-device-width: 360px) {
html {
font-size: 50px;
}
}
@media screen and (max-device-width: 384px) and (min-device-width: 360px) {
html {
font-size: 56px;
}
}
@media screen and (max-device-width: 414px) and (min-device-width: 384px) {
html {
font-size: 60px;
}
}
@media screen and (max-device-width: 600px) and (min-device-width: 414px) {
html {
font-size: 64.5px;
}
}
@media screen and (min-device-width: 600px) {
html {
font-size: 100px;
}
}
blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
margin: 0;
padding: 0;
}
body {
font: 0.14rem/1.5 'Microsoft YaHei', '微软雅黑', arial, sans-serif;
background-color: #fff;
max-width: 7.5rem;
margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
}
address,
cite,
dfn,
em,
var {
font-style: normal;
}
code,
kbd,
pre,
samp {
font-family: courier new, courier, monospace;
}
em {
font-weight: 700;
}
ol,
ul {
list-style: none;
}
html {
height: auto;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
color: inherit;
}
a:active,
a:hover,
a:link,
a:visited {
text-decoration: none;
outline: 0;
}
a,
body {
-webkit-tap-highlight-color: transparent;
}
sup {
vertical-align: text-top;
}
sub {
vertical-align: text-bottom;
}
fieldset,
img {
border: 0;
outline: 0;
}
button,
input,
select,
textarea {
border: none;
outline: 0;
}
img {
height: 100%;
display: block;
}
input,
select {
vertical-align: middle;
user-select: auto;
-webkit-appearance: none;
background-color: transparent;
border-color: transparent;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
article,
aside,
audio,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
nav,
section,
summary,
time,
video {
display: block;
margin: 0;
padding: 0;
}
mark {
background: #ff0;
}
input[type='checkbox'] {
cursor: pointer;
}
::-webkit-input-placeholder {
color: #848484;
}
.mt0 {
margin-top: 0 !important;
}
.ml0 {
margin-left: 0 !important;
}
.mr0 {
margin-right: 0 !important;
}
.mb0 {
margin-bottom: 0 !important;
}
.bt0 {
border-top-width: 0 !important;
}
.bb0 {
border-bottom-width: 0 !important;
}
.pt0 {
padding-top: 0 !important;
}
.hide {
display: none;
}
.fr {
float: right;
}
.fl {
float: left;
}
.clear:after {
visibility: hidden;
display: block;
font-size: 0;
content: ' ';
clear: both;
height: 0;
}
.clear {
zoom: 1;
}
[class*=' icon_'],
[class^='icon_'] {
display: inline-block;
vertical-align: middle;
background-repeat: no-repeat;
}
#J_Mask {
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.5);
display: none;
}
#J_Mask .load_box {
width: 2.4rem;
height: 2.4rem;
position: relative;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
border-radius: 10px;
}
#J_Mask .load_box .loading {
width: 0.79rem;
height: 0.72rem;
margin-left: -0.4rem;
margin-top: -0.36rem;
top: 50%;
left: 50%;
position: absolute;
color: #fff;
}
#J_Mask .load_box i {
position: absolute;
top: 50%;
left: 50%;
width: 1.6rem;
height: 1.6rem;
margin-left: -0.8rem;
margin-top: -0.8rem;
animation: loading 1s linear infinite;
-webkit-animation: loading 1s linear infinite;
background-image: url('/assets/loading.png');
background-size: 100%;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@keyframes loading {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes loading {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
} | 0.454956 | 0.091018 |
.category-btn:disabled {
background: #dddddd!important;
}
.filterRow {
border-radius: 4px;
background-color: #d5d9da;
box-shadow: 0 0 0 0 #bdbdbd;
}
.filterHeading {
font-size: 14px
}
.filterRow .ss-searchbox{
width: 94%
}
.filterRow .filterSelectBox{
width: 62%;
font-size: 13px;
}
.filterRow div[class*=col-]{
background-color: #d5d9da;
}
.planeIcon{
background-color: #d5d9da;
}
.active-text{
color: #8c031f!important;
font-weight: bold;
}
.boqSpanText:hover{
color: #8c031f!important;
font-weight: bold;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
position: absolute;
left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
position: relative;
cursor: pointer;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 14px;
height: 14px;
border: 1px solid #ddd;
border-radius: 100%;
background: #fff;
}
[type="radio"]:not(:checked) + label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
[type="radio"]:checked + label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
content: '';
width: 8px;
height: 8px;
background: #8c031f;
position: absolute;
top: 3px;
left: 3px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.addVendorDetailsBtn {
height: 30px;
width: 30px;
border-radius: 50%;
background: #8c031f;
outline: none;
color: #fff;
}
.tableBodyScroll{
border-collapse: collapse!important;
}
.tableBodyScroll tbody {
display: block;
max-height: 250px;
overflow-y: scroll;
}
.tableBodyScroll thead,
.tableBodyScroll tbody tr {
display: table;
width: 100%;
table-layout: fixed;
box-shadow: none!important;
}
.tableBodyScroll tbody tr {
border: 1px solid #f5f3f3;
}
.rk-ui-notification, .rk-ui-notification.err{
z-index: 1060;
}
.collapse-close-btn{
color: #8c031f;
font-size: 40px;
font-weight: 300;
}
.table th{
min-width:0rem!important;
}
.circularIcon .fa{
left: 0px!important;
}
#addVendorModal .modal-dialog{
max-width: 98%;
}
#addVendorModal .modal-content{
border: none;
border-radius: 0px;
}
#addVendorModal .modalHeader {
border-bottom: solid 1px #e8e6e6;
}
#addVendorModal .modalHeader span {
font-size: 23px;
font-weight: 300;
}
.nothing-to-show{
font-size: 21px;
text-align: center;
color: dimgray
}
.btn{
cursor:pointer;
}
#addVendorModal{
width:85%!important;
}
.vendor-list:hover{
color: #8c031f!important;
font-weight: bold;
}
.rk-interalBtnColor:disabled,
.rk-interalBtnColor[disabled]{
opacity: 0.5;
cursor: not-allowed !important;
}
.btn-pink.active{
background: gray !important;
border: 1px solid gray !important;
}
.minWidth{
width: 300px !important;
}
.close-icon{
margin-left: 17.5rem;
margin-top: 0.1rem;
color: darkred;
font-size: 1.1rem;
}
.an-tbody div{
padding-top: 0rem;
} | src/app/platform/category/category/vendor-selection/vendor-selection.component.css | .category-btn:disabled {
background: #dddddd!important;
}
.filterRow {
border-radius: 4px;
background-color: #d5d9da;
box-shadow: 0 0 0 0 #bdbdbd;
}
.filterHeading {
font-size: 14px
}
.filterRow .ss-searchbox{
width: 94%
}
.filterRow .filterSelectBox{
width: 62%;
font-size: 13px;
}
.filterRow div[class*=col-]{
background-color: #d5d9da;
}
.planeIcon{
background-color: #d5d9da;
}
.active-text{
color: #8c031f!important;
font-weight: bold;
}
.boqSpanText:hover{
color: #8c031f!important;
font-weight: bold;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
position: absolute;
left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
position: relative;
cursor: pointer;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 14px;
height: 14px;
border: 1px solid #ddd;
border-radius: 100%;
background: #fff;
}
[type="radio"]:not(:checked) + label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
[type="radio"]:checked + label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
content: '';
width: 8px;
height: 8px;
background: #8c031f;
position: absolute;
top: 3px;
left: 3px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.addVendorDetailsBtn {
height: 30px;
width: 30px;
border-radius: 50%;
background: #8c031f;
outline: none;
color: #fff;
}
.tableBodyScroll{
border-collapse: collapse!important;
}
.tableBodyScroll tbody {
display: block;
max-height: 250px;
overflow-y: scroll;
}
.tableBodyScroll thead,
.tableBodyScroll tbody tr {
display: table;
width: 100%;
table-layout: fixed;
box-shadow: none!important;
}
.tableBodyScroll tbody tr {
border: 1px solid #f5f3f3;
}
.rk-ui-notification, .rk-ui-notification.err{
z-index: 1060;
}
.collapse-close-btn{
color: #8c031f;
font-size: 40px;
font-weight: 300;
}
.table th{
min-width:0rem!important;
}
.circularIcon .fa{
left: 0px!important;
}
#addVendorModal .modal-dialog{
max-width: 98%;
}
#addVendorModal .modal-content{
border: none;
border-radius: 0px;
}
#addVendorModal .modalHeader {
border-bottom: solid 1px #e8e6e6;
}
#addVendorModal .modalHeader span {
font-size: 23px;
font-weight: 300;
}
.nothing-to-show{
font-size: 21px;
text-align: center;
color: dimgray
}
.btn{
cursor:pointer;
}
#addVendorModal{
width:85%!important;
}
.vendor-list:hover{
color: #8c031f!important;
font-weight: bold;
}
.rk-interalBtnColor:disabled,
.rk-interalBtnColor[disabled]{
opacity: 0.5;
cursor: not-allowed !important;
}
.btn-pink.active{
background: gray !important;
border: 1px solid gray !important;
}
.minWidth{
width: 300px !important;
}
.close-icon{
margin-left: 17.5rem;
margin-top: 0.1rem;
color: darkred;
font-size: 1.1rem;
}
.an-tbody div{
padding-top: 0rem;
} | 0.320502 | 0.097734 |
@define-color documents_emblem_bg @theme_selected_bg_color;
@define-color documents_collection_bg @theme_bg_color;
@define-color gedit_not_found_bg rgb (237, 54, 54);
@define-color gedit_not_found_fg white;
/****************
* Applications *
****************/
/* used by gnome-font-viewer and sushi */
SushiFontWidget {
padding: 6px 12px;
}
/* gnome-terminal */
VteTerminal {
background-color: @theme_base_color;
color: @theme_fg_color;
-TerminalScreen-background-darkness: 0.95;
}
TerminalWindow GtkNotebook.notebook {
border-bottom-width: 0;
border-right-width: 0;
border-left-width: 0;
}
/* nautilus */
.nautilus-canvas-item {
border-radius: 5px;
}
.nautilus-desktop.nautilus-canvas-item {
color: @theme_selected_fg_color;
text-shadow: 1px 1px black;
}
.nautilus-desktop.nautilus-canvas-item:active {
color: @theme_text_color;
}
.nautilus-desktop.nautilus-canvas-item:selected {
color: @theme_selected_fg_color;
}
.nautilus-desktop.nautilus-canvas-item:active,
.nautilus-desktop.nautilus-canvas-item:prelight,
.nautilus-desktop.nautilus-canvas-item:selected {
text-shadow: none;
}
NautilusWindow .sidebar .frame {
border-style: none;
}
NautilusWindow * {
-GtkPaned-handle-size: 1;
}
NautilusWindow .pane-separator {
background-image: url("assets/null.png");
}
NautilusWindow > GtkGrid > .pane-separator,
NautilusWindow > GtkGrid > .pane-separator:hover {
border-width: 0 1px 0 0;
border-style: solid;
border-color: @borders;
background-color: @sidebar_bg;
color: shade (@theme_bg_color, 0.9);
}
NautilusNotebook.notebook {
border-right-width: 0;
border-left-width: 0;
border-bottom-width: 0;
}
NautilusNotebook .frame {
border-width: 0;
}
NautilusToolbar .button {
icon-shadow: 0 1px @button_text_shadow;
}
NautilusToolbar .button:active {
icon-shadow: 0 1px @button_active_text_shadow;
}
NautilusToolbar .button:insensitive,
NautilusToolbar .button:active *:insensitive {
icon-shadow: none;
}
NautilusQueryEditor .primary-toolbar.toolbar {
border-top-width: 0;
border-bottom-width: 0;
}
NautilusQueryEditor .toolbar {
padding-top: 3px;
padding-bottom: 2px;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @theme_bg_color;
background-color: mix(@theme_bg_color, @theme_base_color, 0.5);
}
NautilusQueryEditor .toolbar:nth-child(2) {
border-color: @borders;
}
NautilusQueryEditor .toolbar:last-child,
NautilusQueryEditor .primary-toolbar.toolbar:only-child {
border-bottom-width: 1px;
border-bottom-color: @borders;
}
/* nemo */
.nemo-canvas-item {
border-radius: 5px;
}
.nemo-desktop.nemo-canvas-item {
color: @theme_selected_fg_color;
text-shadow: 1px 1px black;
}
.nemo-desktop.nemo-canvas-item:active {
color: @theme_text_color;
}
.nemo-desktop.nemo-canvas-item:selected {
color: @theme_selected_fg_color;
}
.nemo-desktop.nemo-canvas-item:active,
.nemo-desktop.nemo-canvas-item:prelight,
.nemo-desktop.nemo-canvas-item:selected {
text-shadow: none;
}
NemoWindow .sidebar .frame {
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-radius: 0;
}
NemoWindow * {
-GtkPaned-handle-size: 1;
}
NemoWindow .pane-separator {
background-image: url("assets/null.png");
}
NemoWindow > GtkGrid > .pane-separator,
NemoWindow > GtkGrid > .pane-separator:hover {
border-width: 1px 1px 0 0;
border-style: solid;
border-color: @borders;
background-color: @sidebar_bg;
color: shade (@theme_bg_color, 0.9);
}
NemoView.frame,
NemoNotebook.notebook {
border-right-width: 0;
border-left-width: 0;
border-bottom-width: 0;
}
NemoNotebook.notebook tab.top,
NemoNotebook.notebook tab.bottom {
border-right-width: 1px;
border-left-width: 1px;
padding-top: 0;
padding-bottom: 0;
}
NemoNotebook.notebook tab.top:active {
padding-top: 2px;
}
NemoNotebook.notebook tab.bottom:active {
padding-bottom: 2px;
}
NemoNotebook .frame {
border-width: 1px 0 0 0;
}
NemoToolbar .button {
icon-shadow: 0 1px @button_text_shadow;
}
NemoToolbar .toolbar {
background-image: linear-gradient(to bottom,
@theme_bg_color,
shade (@theme_bg_color, 0.94));
}
NemoToolbar .button:active {
icon-shadow: 0 1px @button_active_text_shadow;
}
NemoToolbar .button:insensitive,
NemoToolbar .button:active:insensitive {
text-shadow: none;
}
NemoQueryEditor .primary-toolbar.toolbar {
border-bottom-width: 0;
}
NemoQueryEditor .toolbar {
padding-top: 3px;
padding-bottom: 2px;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @theme_bg_color;
background-color: mix(@theme_bg_color, @theme_base_color, 0.5);
}
NemoQueryEditor .toolbar:nth-child(2) {
border-color: @borders;
}
NemoNotebook.notebook NemoQueryEditor .primary-toolbar.toolbar {
border-top-width: 0;
}
NemoNotebook.notebook NemoQueryEditor .toolbar:last-child,
NemoNotebook.notebook NemoQueryEditor .primary-toolbar.toolbar:only-child {
border-bottom-width: 1px;
border-bottom-color: @borders;
}
/* gedit */
GeditWindow .pane-separator,
GeditWindow .pane-separator:hover {
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: @borders;
background-color: shade(@theme_bg_color, 0.95);
color: @borders;
}
GeditPanel.vertical .title {
border-style: none;
padding: 7px 0 6px 3px;
}
GeditDocumentsPanel .view {
background-color: @sidebar_bg;
}
GeditPanel.vertical .notebook {
padding: 0px;
border-width: 1px 0;
}
GeditPanel.horizontal .notebook {
padding: 0px;
border-width: 0 1px 1px 0;
}
GeditPanel .notebook tab
{
border-width: 0;
}
GeditStatusMenuButton {
text-shadow: none;
}
GeditStatusMenuButton.button,
GeditStatusMenuButton.button:hover,
GeditStatusMenuButton.button:active,
GeditStatusMenuButton.button:active:hover {
border-image: none;
border-style: solid;
border-width: 0 1px;
border-radius: 0;
padding: 1px 8px 2px 4px;
}
GeditStatusMenuButton.button:hover,
GeditStatusMenuButton.button:active,
GeditStatusMenuButton.button:active:hover {
border-color: @borders;
}
GeditStatusMenuButton.button:active {
background-image: linear-gradient(to bottom,
@borders,
shade(@theme_bg_color, 0.95));
background-color: transparent;
color: @theme_selected_fg_color;
text-shadow: 0 1px @button_text_shadow;
}
GeditViewFrame .gedit-search-slider {
background-color: @theme_base_color;
padding: 6px;
border-color: shade (@notebook_tab_gradient_b, 0.80);
border-radius: 0 0 3px 3px;
border-width: 0 1px 1px 1px;
border-style: solid;
}
GeditViewFrame .gedit-search-slider .not-found {
color: @gedit_not_found_fg;
background-image: none;
background-color: @gedit_not_found_bg;
}
GeditViewFrame .gedit-search-slider .not-found:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
GeditFileBrowserWidget .primary-toolbar.toolbar {
background-image: none;
background-color: @theme_bg_color;
border-top: none;
padding: 2px;
}
.gedit-search-entry-occurrences-tag {
color: shade (@theme_unfocused_fg_color, 0.8);
margin: 2px;
padding: 2px;
}
/* gnome-documents */
.documents-dropdown,
.documents-dropdown .view {
background-color: shade (@theme_bg_color, 1.02);
}
.documents-dropdown.frame {
padding: 6px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-radius: 0 0 5px 5px;
}
.documents-dropdown .view.radio,
.documents-dropdown .view.radio:focused,
.documents-dropdown .view.radio:selected {
background-image: none;
background-color: alpha(@theme_base_color, 0.0);
}
.documents-dropdown .view.radio:active,
.documents-dropdown .view.radio:active:focused,
.documents-dropdown .view.radio:active:prelight {
background-image: url("assets/sidebar-radio-checked.svg");
}
.documents-dropdown .view.radio:prelight {
background-image: url("assets/sidebar-radio-prelight.svg");
}
.documents-dropdown .view.radio:active:selected,
.documents-dropdown .view.radio:active:selected:focused {
background-image: url("assets/sidebar-radio-selected.svg");
}
.documents-dropdown .view.radio:selected:prelight,
.documents-dropdown .view.radio:selected:focused {
background-image: url("assets/sidebar-radio-selected-prelight.svg");
}
.documents-load-more.button {
border-image: none;
border-color: @borders;
border-width: 1px 0 0;
border-radius: 0;
}
.documents-scrolledwin.frame {
border-width: 1px 0 0;
border-radius: 0;
}
.documents-icon-bg {
background-color: @documents_emblem_bg;
border-radius: 4px;
color: @theme_base_color;
}
.documents-collection-icon {
background-color: @documents_collection_bg;
border-radius: 8px;
}
.documents-counter {
background-image: url('assets/dnd-counter.svg');
background-size: contain;
background-color: transparent;
color: @theme_base_color;
font: bold;
}
.documents-favorite.button:active,
.documents-favorite.button:active:hover {
color: shade(@theme_selected_bg_color, 1.20);
}
.documents-entry-tag {
background-color: @entry_tag_bg;
color: @entry_tag_fg;
border-radius: 4px;
border-width: 0;
margin: 2px;
padding: 4px;
}
.documents-entry-tag:hover {
background-color: shade(@entry_tag_bg, 1.10);
color: @entry_tag_fg;
}
.documents-entry-tag.button,
.documents-entry-tag.button:hover,
.documents-entry-tag.button:active,
.documents-entry-tag.button:active:hover {
background-color: transparent;
background-image: none;
border-image: none;
border-width: 0;
}
.documents-entry-tag.button:hover {
color: shade(@entry_tag_bg, 2.10);
}
/* baobab */
.cell.baobab-level-cell,
.cell.baobab-level-cell:hover,
.cell.baobab-level-cell:selected,
.cell.baobab-level-cell:selected:hover {
border-color: darker(@borders);
border-width: 1px;
border-radius: 3px;
border-style: solid;
background-color: white;
}
.cell.baobab-level-cell.fill-block,
.cell.baobab-level-cell.fill-block:selected,
.cell.baobab-level-cell.fill-block:selected:hover {
background-color: #edd400;
}
.cell.baobab-level-cell.fill-block.level-low,
.cell.baobab-level-cell.fill-block.level-low:hover {
background-color: #73d216;
}
.cell.baobab-level-cell.fill-block.level-high,
.cell.baobab-level-cell.fill-block.level-high:hover {
background-color: #cc0000;
}
.cell.baobab-cell-error {
color: @error_color;
}
.cell.baobab-cell-warning {
color: @warning_color;
}
.cell.baobab-cell-warning:selected,
.cell.baobab-cell-error:selected {
color: @theme_selected_fg_color;
}
BaobabWindow.background GtkStack > GtkGrid > GtkScrolledWindow.frame {
border-radius: 0;
border-width: 0 1px 0 0;
}
BaobabWindow GtkInfoBar.warning,
BaobabWindow GtkInfoBar.error {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: @borders;
}
BaobabRingschart {
background-color: @theme_bg_color;
padding: 13px 13px 13px 13px;
}
BaobabRingschart.subfolder-tip {
border-radius: 3px;
border-style: none;
padding: 3px 3px 3px 3px;
background-color: alpha(@theme_tooltip_bg_color, 0.90);
color: @theme_tooltip_fg_color;
text-shadow: 1px 1px black;
}
/* epiphany */
EphyToolbar .entry:first-child,
EphyToolbar .entry:focus:first-child {
border-image-width: 3px 0 4px 3px;
border-right-width: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
padding-left: 4px;
padding-right: 4px;
}
EphyToolbar .entry:last-child,
EphyToolbar .entry:focus:last-child {
border-image-width: 3px 3px 4px 0;
border-left-width: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
padding-left: 4px;
padding-right: 4px;
}
EphyToolbar .entry:focus {
box-shadow: inset 1px 2px alpha(@theme_selected_bg_color, 0.1),
inset 1px 1px alpha(@theme_selected_bg_color, 0.1),
inset 0 -1px alpha(@theme_selected_bg_color, 0.2);
}
EphyToolbar .entry:focus:last-child {
box-shadow: inset 0 2px alpha(@theme_selected_bg_color, 0.1),
inset 0 1px alpha(@theme_selected_bg_color, 0.1),
inset -1px -1px alpha(@theme_selected_bg_color, 0.2);
}
EphyToolbar .location-entry .button {
color: @internal_element_color;
-GtkButton-child-displacement-y: 0;
border-image-source: url("borders/button-active.png");
border-image-slice: 3 3 4 3;
border-image-repeat: stretch;
border-width: 2px;
border-radius: 4px;
padding-left: 4px;
padding-right: 4px;
box-shadow: inset 1px 0 @inset_dark_color,
inset 0 1px @entry_inset,
inset 0 2px alpha(@entry_inset, 0.4);
}
EphyToolbar .location-entry .button:last-child {
border-image-width: 3px 3px 4px 0;
border-left-width: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
EphyToolbar .location-entry .button:first-child {
border-image-width: 3px 0 4px 3px;
border-right-width: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
/* flip the box-shadow division*/
box-shadow: inset -1px 0 @inset_dark_color,
inset 0 1px @entry_inset,
inset 0 2px alpha(@entry_inset, 0.4);
}
EphyToolbar .location-entry .button,
EphyToolbar .location-entry .button:hover {
icon-shadow: none;
background-image: -gtk-gradient(linear,
left top, left bottom,
from(@entry_background_a),
to(@entry_background_b));
}
EphyToolbar .location-entry .button:active,
EphyToolbar .location-entry .button:active:hover {
background-image: -gtk-gradient(linear,
left top, left bottom,
from(shade(@entry_background_a, 0.9)),
to(@entry_background_b));
}
EphyToolbar .location-entry .button:hover,
EphyToolbar .location-entry .button:active {
color: @theme_text_color;
}
EphyNotebook.notebook {
border-width: 1px 0 1px 0;
}
EphyNotebook.notebook tab {
border-width: 0;
}
EphyToolbar.toolbar .button {
padding-left: 4px;
padding-right: 4px;
}
#ephy-page-menu-button.active-menu {
background-image: none;
background-color: @menu_bg_color;
border-image: none;
border-color: @menu_bg_color;
border-radius: 4px 4px 0 0;
}
EphyOverview GtkScrolledWindow {
background-color: @theme_base_color;
}
/* sets top and bottom borders on the main scrolled window for toolbar visual
* division and search/downloadbar */
EphyWindow.background EphyEmbed.vertical GtkScrolledWindow.frame {
border-color: @borders;
border-width: 1px 0;
border-radius: 0;
}
/* removes any border from the overview scrolled window, since it's overlaid */
EphyWindow.background EphyEmbed.vertical EphyOverview .documents-scrolledwin {
border-style: none;
}
/* remove top and bottom borders from the main scrolled window when inside a notebook tab */
EphyWindow.background EphyNotebook.notebook EphyEmbed.vertical GtkScrolledWindow {
border-top-width: 0;
border-bottom-width: 0;
}
/* remove bottom borders from the main scrolled window when no bars at the bottom of the screen are shown */
EphyWindow.background EphyNotebook:last-child EphyEmbed.vertical GtkScrolledWindow,
EphyWindow.background EphyNotebook.notebook:last-child {
border-bottom-width: 0;
}
/* Gnome Contacts */
/* Line at top in contacts pane, similar to .documents-scrolledwin.frame */
.contacts-content.frame {
border-width: 1px 0 0 0;
border-radius: 0;
}
/* Background color in contacts pane, similar to .documents-main-view.view */
.contacts-main-view.view {
background-color: #f1f2f1;
}
.contacts-suggestion {
background-color: #D3D7CF;
border-radius: 4px;
}
/* Border on the right in the left menu toolbar */
.contacts-left-header-bar:dir(ltr) {
border-right-width: 1px;
}
.contacts-left-header-bar:dir(rtl) {
border-left-width: 1px;
}
.contacts-left-header-bar:dir(ltr),
.contacts-right-header-bar:dir(rtl) {
border-top-right-radius: 0;
}
.contacts-right-header-bar:dir(ltr),
.contacts-left-header-bar:dir(rtl) {
border-top-left-radius: 0;
}
.contacts-avatar-frame.frame {
border-width: 1px 1px 0 1px;
border-style: solid;
border-color: @borders;
border-image: none;
border-radius: 0;
padding: 0;
}
.main-avatar-frame.frame {
border-width: 1px;
border-style: solid;
border-color: @borders;
border-radius: 6px;
}
/* Primary toolbar with no line at top to avoid conflicts with frame border */
ContactsWindow .primary-toolbar.toolbar {
border-width: 0 0 1px 0;
}
.contacts-button:active {
border-color: #000000;
border-image: none;
}
.contacts-entry {
box-shadow: none;
border-image: none;
border-width: 1px;
border-radius: 4px;
border-style: solid;
border-color: #bbbeb7;
background-image: none;
background-color: #ffffff;
}
.contacts-entry:selected,
.contacts-entry:selected:focus {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
.contacts-entry.contacts-postal-entry {
border-radius: 0 0 0 0;
border-width: 1px 1px 0 1px;
}
.contacts-entry.contacts-postal-entry:nth-child(first) {
border-radius: 4px 4px 0 0;
}
.contacts-entry.contacts-postal-entry:nth-child(last) {
border-radius: 0 0 4px 4px;
border-width: 1px;
}
.button.contacts-square {
padding: 0px;
}
.contacts-combo .button {
border-image: none;
border-width: 1px;
border-style: solid;
border-color: #bbbeb7;
background-image: none;
background-color: #ffffff;
}
.toolbar.contacts-edit-toolbar {
padding: 6px;
background-color: #E2E4E2;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-image: none;
}
.toolbar.contacts-edit-toolbar .button {
padding-left: 6px;
padding-right: 6px;
}
.toolbar.contacts-selection-toolbar {
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-image: none;
}
.contacts-watermark {
color: #bebebe;
text-shadow: 1px 1px alpha(white, 0.6);
}
/* gnome-photos */
.photos-icon-bg {
icon-shadow: 0 1px #000000;
}
/* Gucharmap */
GucharmapChartable:active,
GucharmapChartable:focus,
GucharmapChartable:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
/* evince */
EvWindow.background > GtkBox.vertical > GtkPaned.horizontal > GtkBox.vertical > GtkScrolledWindow.frame {
border-width: 0;
border-radius: 0;
}
EvWindow.background EvSidebar.vertical .frame {
border-width: 1px 0 0;
border-radius: 0;
}
EvWindow.background EvSidebar.vertical .notebook {
border-width: 1px 0 0;
}
EvWindow.background EvSidebarAnnotations.vertical GtkToolPalette > GtkToolItemGroup > .button {
border-image: none;
border-radius: 0;
border-style: solid;
border-width: 0 0 1px;
border-color: @borders;
}
EvWindow.background EvSidebar.vertical .notebook .frame {
border-width: 0;
}
EvWindow .pane-separator,
EvWindow .pane-separator:hover {
border-width: 0 1px;
border-style: solid;
border-color: @borders;
background-color: shade(@theme_bg_color, 0.95);
color: @borders;
}
EvWindow.background EggFindBar.toolbar {
border-width: 1px 0 0;
border-style: solid;
border-color: @borders;
}
/* gcalctool */
MathWindow.background > GtkBox.vertical > GtkBox.vertical > GtkScrolledWindow {
padding: 4px;
background-color: @theme_base_color;
border-radius: 3px;
} | Menta/gtk-3.0/gnome-applications.css | @define-color documents_emblem_bg @theme_selected_bg_color;
@define-color documents_collection_bg @theme_bg_color;
@define-color gedit_not_found_bg rgb (237, 54, 54);
@define-color gedit_not_found_fg white;
/****************
* Applications *
****************/
/* used by gnome-font-viewer and sushi */
SushiFontWidget {
padding: 6px 12px;
}
/* gnome-terminal */
VteTerminal {
background-color: @theme_base_color;
color: @theme_fg_color;
-TerminalScreen-background-darkness: 0.95;
}
TerminalWindow GtkNotebook.notebook {
border-bottom-width: 0;
border-right-width: 0;
border-left-width: 0;
}
/* nautilus */
.nautilus-canvas-item {
border-radius: 5px;
}
.nautilus-desktop.nautilus-canvas-item {
color: @theme_selected_fg_color;
text-shadow: 1px 1px black;
}
.nautilus-desktop.nautilus-canvas-item:active {
color: @theme_text_color;
}
.nautilus-desktop.nautilus-canvas-item:selected {
color: @theme_selected_fg_color;
}
.nautilus-desktop.nautilus-canvas-item:active,
.nautilus-desktop.nautilus-canvas-item:prelight,
.nautilus-desktop.nautilus-canvas-item:selected {
text-shadow: none;
}
NautilusWindow .sidebar .frame {
border-style: none;
}
NautilusWindow * {
-GtkPaned-handle-size: 1;
}
NautilusWindow .pane-separator {
background-image: url("assets/null.png");
}
NautilusWindow > GtkGrid > .pane-separator,
NautilusWindow > GtkGrid > .pane-separator:hover {
border-width: 0 1px 0 0;
border-style: solid;
border-color: @borders;
background-color: @sidebar_bg;
color: shade (@theme_bg_color, 0.9);
}
NautilusNotebook.notebook {
border-right-width: 0;
border-left-width: 0;
border-bottom-width: 0;
}
NautilusNotebook .frame {
border-width: 0;
}
NautilusToolbar .button {
icon-shadow: 0 1px @button_text_shadow;
}
NautilusToolbar .button:active {
icon-shadow: 0 1px @button_active_text_shadow;
}
NautilusToolbar .button:insensitive,
NautilusToolbar .button:active *:insensitive {
icon-shadow: none;
}
NautilusQueryEditor .primary-toolbar.toolbar {
border-top-width: 0;
border-bottom-width: 0;
}
NautilusQueryEditor .toolbar {
padding-top: 3px;
padding-bottom: 2px;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @theme_bg_color;
background-color: mix(@theme_bg_color, @theme_base_color, 0.5);
}
NautilusQueryEditor .toolbar:nth-child(2) {
border-color: @borders;
}
NautilusQueryEditor .toolbar:last-child,
NautilusQueryEditor .primary-toolbar.toolbar:only-child {
border-bottom-width: 1px;
border-bottom-color: @borders;
}
/* nemo */
.nemo-canvas-item {
border-radius: 5px;
}
.nemo-desktop.nemo-canvas-item {
color: @theme_selected_fg_color;
text-shadow: 1px 1px black;
}
.nemo-desktop.nemo-canvas-item:active {
color: @theme_text_color;
}
.nemo-desktop.nemo-canvas-item:selected {
color: @theme_selected_fg_color;
}
.nemo-desktop.nemo-canvas-item:active,
.nemo-desktop.nemo-canvas-item:prelight,
.nemo-desktop.nemo-canvas-item:selected {
text-shadow: none;
}
NemoWindow .sidebar .frame {
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-radius: 0;
}
NemoWindow * {
-GtkPaned-handle-size: 1;
}
NemoWindow .pane-separator {
background-image: url("assets/null.png");
}
NemoWindow > GtkGrid > .pane-separator,
NemoWindow > GtkGrid > .pane-separator:hover {
border-width: 1px 1px 0 0;
border-style: solid;
border-color: @borders;
background-color: @sidebar_bg;
color: shade (@theme_bg_color, 0.9);
}
NemoView.frame,
NemoNotebook.notebook {
border-right-width: 0;
border-left-width: 0;
border-bottom-width: 0;
}
NemoNotebook.notebook tab.top,
NemoNotebook.notebook tab.bottom {
border-right-width: 1px;
border-left-width: 1px;
padding-top: 0;
padding-bottom: 0;
}
NemoNotebook.notebook tab.top:active {
padding-top: 2px;
}
NemoNotebook.notebook tab.bottom:active {
padding-bottom: 2px;
}
NemoNotebook .frame {
border-width: 1px 0 0 0;
}
NemoToolbar .button {
icon-shadow: 0 1px @button_text_shadow;
}
NemoToolbar .toolbar {
background-image: linear-gradient(to bottom,
@theme_bg_color,
shade (@theme_bg_color, 0.94));
}
NemoToolbar .button:active {
icon-shadow: 0 1px @button_active_text_shadow;
}
NemoToolbar .button:insensitive,
NemoToolbar .button:active:insensitive {
text-shadow: none;
}
NemoQueryEditor .primary-toolbar.toolbar {
border-bottom-width: 0;
}
NemoQueryEditor .toolbar {
padding-top: 3px;
padding-bottom: 2px;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @theme_bg_color;
background-color: mix(@theme_bg_color, @theme_base_color, 0.5);
}
NemoQueryEditor .toolbar:nth-child(2) {
border-color: @borders;
}
NemoNotebook.notebook NemoQueryEditor .primary-toolbar.toolbar {
border-top-width: 0;
}
NemoNotebook.notebook NemoQueryEditor .toolbar:last-child,
NemoNotebook.notebook NemoQueryEditor .primary-toolbar.toolbar:only-child {
border-bottom-width: 1px;
border-bottom-color: @borders;
}
/* gedit */
GeditWindow .pane-separator,
GeditWindow .pane-separator:hover {
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: @borders;
background-color: shade(@theme_bg_color, 0.95);
color: @borders;
}
GeditPanel.vertical .title {
border-style: none;
padding: 7px 0 6px 3px;
}
GeditDocumentsPanel .view {
background-color: @sidebar_bg;
}
GeditPanel.vertical .notebook {
padding: 0px;
border-width: 1px 0;
}
GeditPanel.horizontal .notebook {
padding: 0px;
border-width: 0 1px 1px 0;
}
GeditPanel .notebook tab
{
border-width: 0;
}
GeditStatusMenuButton {
text-shadow: none;
}
GeditStatusMenuButton.button,
GeditStatusMenuButton.button:hover,
GeditStatusMenuButton.button:active,
GeditStatusMenuButton.button:active:hover {
border-image: none;
border-style: solid;
border-width: 0 1px;
border-radius: 0;
padding: 1px 8px 2px 4px;
}
GeditStatusMenuButton.button:hover,
GeditStatusMenuButton.button:active,
GeditStatusMenuButton.button:active:hover {
border-color: @borders;
}
GeditStatusMenuButton.button:active {
background-image: linear-gradient(to bottom,
@borders,
shade(@theme_bg_color, 0.95));
background-color: transparent;
color: @theme_selected_fg_color;
text-shadow: 0 1px @button_text_shadow;
}
GeditViewFrame .gedit-search-slider {
background-color: @theme_base_color;
padding: 6px;
border-color: shade (@notebook_tab_gradient_b, 0.80);
border-radius: 0 0 3px 3px;
border-width: 0 1px 1px 1px;
border-style: solid;
}
GeditViewFrame .gedit-search-slider .not-found {
color: @gedit_not_found_fg;
background-image: none;
background-color: @gedit_not_found_bg;
}
GeditViewFrame .gedit-search-slider .not-found:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
GeditFileBrowserWidget .primary-toolbar.toolbar {
background-image: none;
background-color: @theme_bg_color;
border-top: none;
padding: 2px;
}
.gedit-search-entry-occurrences-tag {
color: shade (@theme_unfocused_fg_color, 0.8);
margin: 2px;
padding: 2px;
}
/* gnome-documents */
.documents-dropdown,
.documents-dropdown .view {
background-color: shade (@theme_bg_color, 1.02);
}
.documents-dropdown.frame {
padding: 6px;
border-width: 0 1px 1px 1px;
border-style: solid;
border-radius: 0 0 5px 5px;
}
.documents-dropdown .view.radio,
.documents-dropdown .view.radio:focused,
.documents-dropdown .view.radio:selected {
background-image: none;
background-color: alpha(@theme_base_color, 0.0);
}
.documents-dropdown .view.radio:active,
.documents-dropdown .view.radio:active:focused,
.documents-dropdown .view.radio:active:prelight {
background-image: url("assets/sidebar-radio-checked.svg");
}
.documents-dropdown .view.radio:prelight {
background-image: url("assets/sidebar-radio-prelight.svg");
}
.documents-dropdown .view.radio:active:selected,
.documents-dropdown .view.radio:active:selected:focused {
background-image: url("assets/sidebar-radio-selected.svg");
}
.documents-dropdown .view.radio:selected:prelight,
.documents-dropdown .view.radio:selected:focused {
background-image: url("assets/sidebar-radio-selected-prelight.svg");
}
.documents-load-more.button {
border-image: none;
border-color: @borders;
border-width: 1px 0 0;
border-radius: 0;
}
.documents-scrolledwin.frame {
border-width: 1px 0 0;
border-radius: 0;
}
.documents-icon-bg {
background-color: @documents_emblem_bg;
border-radius: 4px;
color: @theme_base_color;
}
.documents-collection-icon {
background-color: @documents_collection_bg;
border-radius: 8px;
}
.documents-counter {
background-image: url('assets/dnd-counter.svg');
background-size: contain;
background-color: transparent;
color: @theme_base_color;
font: bold;
}
.documents-favorite.button:active,
.documents-favorite.button:active:hover {
color: shade(@theme_selected_bg_color, 1.20);
}
.documents-entry-tag {
background-color: @entry_tag_bg;
color: @entry_tag_fg;
border-radius: 4px;
border-width: 0;
margin: 2px;
padding: 4px;
}
.documents-entry-tag:hover {
background-color: shade(@entry_tag_bg, 1.10);
color: @entry_tag_fg;
}
.documents-entry-tag.button,
.documents-entry-tag.button:hover,
.documents-entry-tag.button:active,
.documents-entry-tag.button:active:hover {
background-color: transparent;
background-image: none;
border-image: none;
border-width: 0;
}
.documents-entry-tag.button:hover {
color: shade(@entry_tag_bg, 2.10);
}
/* baobab */
.cell.baobab-level-cell,
.cell.baobab-level-cell:hover,
.cell.baobab-level-cell:selected,
.cell.baobab-level-cell:selected:hover {
border-color: darker(@borders);
border-width: 1px;
border-radius: 3px;
border-style: solid;
background-color: white;
}
.cell.baobab-level-cell.fill-block,
.cell.baobab-level-cell.fill-block:selected,
.cell.baobab-level-cell.fill-block:selected:hover {
background-color: #edd400;
}
.cell.baobab-level-cell.fill-block.level-low,
.cell.baobab-level-cell.fill-block.level-low:hover {
background-color: #73d216;
}
.cell.baobab-level-cell.fill-block.level-high,
.cell.baobab-level-cell.fill-block.level-high:hover {
background-color: #cc0000;
}
.cell.baobab-cell-error {
color: @error_color;
}
.cell.baobab-cell-warning {
color: @warning_color;
}
.cell.baobab-cell-warning:selected,
.cell.baobab-cell-error:selected {
color: @theme_selected_fg_color;
}
BaobabWindow.background GtkStack > GtkGrid > GtkScrolledWindow.frame {
border-radius: 0;
border-width: 0 1px 0 0;
}
BaobabWindow GtkInfoBar.warning,
BaobabWindow GtkInfoBar.error {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: @borders;
}
BaobabRingschart {
background-color: @theme_bg_color;
padding: 13px 13px 13px 13px;
}
BaobabRingschart.subfolder-tip {
border-radius: 3px;
border-style: none;
padding: 3px 3px 3px 3px;
background-color: alpha(@theme_tooltip_bg_color, 0.90);
color: @theme_tooltip_fg_color;
text-shadow: 1px 1px black;
}
/* epiphany */
EphyToolbar .entry:first-child,
EphyToolbar .entry:focus:first-child {
border-image-width: 3px 0 4px 3px;
border-right-width: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
padding-left: 4px;
padding-right: 4px;
}
EphyToolbar .entry:last-child,
EphyToolbar .entry:focus:last-child {
border-image-width: 3px 3px 4px 0;
border-left-width: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
padding-left: 4px;
padding-right: 4px;
}
EphyToolbar .entry:focus {
box-shadow: inset 1px 2px alpha(@theme_selected_bg_color, 0.1),
inset 1px 1px alpha(@theme_selected_bg_color, 0.1),
inset 0 -1px alpha(@theme_selected_bg_color, 0.2);
}
EphyToolbar .entry:focus:last-child {
box-shadow: inset 0 2px alpha(@theme_selected_bg_color, 0.1),
inset 0 1px alpha(@theme_selected_bg_color, 0.1),
inset -1px -1px alpha(@theme_selected_bg_color, 0.2);
}
EphyToolbar .location-entry .button {
color: @internal_element_color;
-GtkButton-child-displacement-y: 0;
border-image-source: url("borders/button-active.png");
border-image-slice: 3 3 4 3;
border-image-repeat: stretch;
border-width: 2px;
border-radius: 4px;
padding-left: 4px;
padding-right: 4px;
box-shadow: inset 1px 0 @inset_dark_color,
inset 0 1px @entry_inset,
inset 0 2px alpha(@entry_inset, 0.4);
}
EphyToolbar .location-entry .button:last-child {
border-image-width: 3px 3px 4px 0;
border-left-width: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
EphyToolbar .location-entry .button:first-child {
border-image-width: 3px 0 4px 3px;
border-right-width: 0;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
/* flip the box-shadow division*/
box-shadow: inset -1px 0 @inset_dark_color,
inset 0 1px @entry_inset,
inset 0 2px alpha(@entry_inset, 0.4);
}
EphyToolbar .location-entry .button,
EphyToolbar .location-entry .button:hover {
icon-shadow: none;
background-image: -gtk-gradient(linear,
left top, left bottom,
from(@entry_background_a),
to(@entry_background_b));
}
EphyToolbar .location-entry .button:active,
EphyToolbar .location-entry .button:active:hover {
background-image: -gtk-gradient(linear,
left top, left bottom,
from(shade(@entry_background_a, 0.9)),
to(@entry_background_b));
}
EphyToolbar .location-entry .button:hover,
EphyToolbar .location-entry .button:active {
color: @theme_text_color;
}
EphyNotebook.notebook {
border-width: 1px 0 1px 0;
}
EphyNotebook.notebook tab {
border-width: 0;
}
EphyToolbar.toolbar .button {
padding-left: 4px;
padding-right: 4px;
}
#ephy-page-menu-button.active-menu {
background-image: none;
background-color: @menu_bg_color;
border-image: none;
border-color: @menu_bg_color;
border-radius: 4px 4px 0 0;
}
EphyOverview GtkScrolledWindow {
background-color: @theme_base_color;
}
/* sets top and bottom borders on the main scrolled window for toolbar visual
* division and search/downloadbar */
EphyWindow.background EphyEmbed.vertical GtkScrolledWindow.frame {
border-color: @borders;
border-width: 1px 0;
border-radius: 0;
}
/* removes any border from the overview scrolled window, since it's overlaid */
EphyWindow.background EphyEmbed.vertical EphyOverview .documents-scrolledwin {
border-style: none;
}
/* remove top and bottom borders from the main scrolled window when inside a notebook tab */
EphyWindow.background EphyNotebook.notebook EphyEmbed.vertical GtkScrolledWindow {
border-top-width: 0;
border-bottom-width: 0;
}
/* remove bottom borders from the main scrolled window when no bars at the bottom of the screen are shown */
EphyWindow.background EphyNotebook:last-child EphyEmbed.vertical GtkScrolledWindow,
EphyWindow.background EphyNotebook.notebook:last-child {
border-bottom-width: 0;
}
/* Gnome Contacts */
/* Line at top in contacts pane, similar to .documents-scrolledwin.frame */
.contacts-content.frame {
border-width: 1px 0 0 0;
border-radius: 0;
}
/* Background color in contacts pane, similar to .documents-main-view.view */
.contacts-main-view.view {
background-color: #f1f2f1;
}
.contacts-suggestion {
background-color: #D3D7CF;
border-radius: 4px;
}
/* Border on the right in the left menu toolbar */
.contacts-left-header-bar:dir(ltr) {
border-right-width: 1px;
}
.contacts-left-header-bar:dir(rtl) {
border-left-width: 1px;
}
.contacts-left-header-bar:dir(ltr),
.contacts-right-header-bar:dir(rtl) {
border-top-right-radius: 0;
}
.contacts-right-header-bar:dir(ltr),
.contacts-left-header-bar:dir(rtl) {
border-top-left-radius: 0;
}
.contacts-avatar-frame.frame {
border-width: 1px 1px 0 1px;
border-style: solid;
border-color: @borders;
border-image: none;
border-radius: 0;
padding: 0;
}
.main-avatar-frame.frame {
border-width: 1px;
border-style: solid;
border-color: @borders;
border-radius: 6px;
}
/* Primary toolbar with no line at top to avoid conflicts with frame border */
ContactsWindow .primary-toolbar.toolbar {
border-width: 0 0 1px 0;
}
.contacts-button:active {
border-color: #000000;
border-image: none;
}
.contacts-entry {
box-shadow: none;
border-image: none;
border-width: 1px;
border-radius: 4px;
border-style: solid;
border-color: #bbbeb7;
background-image: none;
background-color: #ffffff;
}
.contacts-entry:selected,
.contacts-entry:selected:focus {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
.contacts-entry.contacts-postal-entry {
border-radius: 0 0 0 0;
border-width: 1px 1px 0 1px;
}
.contacts-entry.contacts-postal-entry:nth-child(first) {
border-radius: 4px 4px 0 0;
}
.contacts-entry.contacts-postal-entry:nth-child(last) {
border-radius: 0 0 4px 4px;
border-width: 1px;
}
.button.contacts-square {
padding: 0px;
}
.contacts-combo .button {
border-image: none;
border-width: 1px;
border-style: solid;
border-color: #bbbeb7;
background-image: none;
background-color: #ffffff;
}
.toolbar.contacts-edit-toolbar {
padding: 6px;
background-color: #E2E4E2;
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-image: none;
}
.toolbar.contacts-edit-toolbar .button {
padding-left: 6px;
padding-right: 6px;
}
.toolbar.contacts-selection-toolbar {
border-width: 1px 0 0 0;
border-style: solid;
border-color: @borders;
border-image: none;
}
.contacts-watermark {
color: #bebebe;
text-shadow: 1px 1px alpha(white, 0.6);
}
/* gnome-photos */
.photos-icon-bg {
icon-shadow: 0 1px #000000;
}
/* Gucharmap */
GucharmapChartable:active,
GucharmapChartable:focus,
GucharmapChartable:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
/* evince */
EvWindow.background > GtkBox.vertical > GtkPaned.horizontal > GtkBox.vertical > GtkScrolledWindow.frame {
border-width: 0;
border-radius: 0;
}
EvWindow.background EvSidebar.vertical .frame {
border-width: 1px 0 0;
border-radius: 0;
}
EvWindow.background EvSidebar.vertical .notebook {
border-width: 1px 0 0;
}
EvWindow.background EvSidebarAnnotations.vertical GtkToolPalette > GtkToolItemGroup > .button {
border-image: none;
border-radius: 0;
border-style: solid;
border-width: 0 0 1px;
border-color: @borders;
}
EvWindow.background EvSidebar.vertical .notebook .frame {
border-width: 0;
}
EvWindow .pane-separator,
EvWindow .pane-separator:hover {
border-width: 0 1px;
border-style: solid;
border-color: @borders;
background-color: shade(@theme_bg_color, 0.95);
color: @borders;
}
EvWindow.background EggFindBar.toolbar {
border-width: 1px 0 0;
border-style: solid;
border-color: @borders;
}
/* gcalctool */
MathWindow.background > GtkBox.vertical > GtkBox.vertical > GtkScrolledWindow {
padding: 4px;
background-color: @theme_base_color;
border-radius: 3px;
} | 0.207455 | 0.058105 |
.ots-archiving-modal {
position: fixed;
/* Stay in place */
padding-top: 100px;
/* Location of the box */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/ opacity */
z-index: 1051;
font-family: Arial, Helvetica, sans-serif;
}
.ots-archiving-modal * {
box-sizing: border-box;
}
.ots-archiving-modal .modal-content {
background-color: #fefefe;
margin: auto;
padding: 0;
border-top: 2px solid #33abf5;
width: 710px;
height: 265px;
position: relative;
text-align: center;
display: flex;
flex-direction: column;
}
.ots-archiving-modal .modal-content > div {
display: flex;
flex-direction: column;
height: 33.33%;
justify-content: center;
align-items: center;
}
.ots-archiving-modal .modal-header h2 {
position: relative;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: 200;
font-size: 20px;
}
.ots-archiving-modal .modal-header h2::before {
content: '';
position: absolute;
display: inline-block;
width: 40px;
height: 40px;
left: -50px;
bottom: -10px;
background-image: url(http://assets.tokbox.com/solutions/images/icon-download.png);
background-size: contain;
background-position: 2px -5px;
background-repeat: no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
.ots-archiving-modal .modal-header::before {
background-image: url("https://assets.tokbox.com/solutions/images/icon-download@2x.png");
}
}
.ots-archiving-modal .close-button {
position: absolute;
background-image: url("https://assets.tokbox.com/solutions/images/icon-close-thin.png");
background-size: contain;
height: 20px;
width: 20px;
top: 15px;
right: 15px;
cursor: pointer;
}
.ots-archiving-modal .close:hover,
.ots-archiving-modal .close:focus {
color: #000;
text-decoration: none;
}
.ots-archiving-modal .modal-info {
background-color: #fafbfc;
border: 1px solid #e8e8e8;
padding: 20px;
font-size: 16px;
}
.ots-archiving-modal .modal-info > div {
margin: 5px auto;
font-family: Muli;
}
.ots-archiving-modal .modal-info .message {
font-size: 13px;
font-weight: 100;
line-height: 18px;
width: 80%;
}
.ots-archiving-modal .modal-info .archive-id {
width: 70%;
font-weight: 200;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ots-archiving-modal .modal-info .archive-details {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
width: auto;
}
.ots-archiving-modal .modal-button-container {
height: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.ots-archiving-modal .btn {
display: inline-block;
font-family: helvetica, arial, sans-serif;
width: 145px;
height: 35px;
line-height: 35px;
color: white;
text-decoration: none;
border: 1px solid rgba(68 68 68, 1);
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.ots-archiving-modal .btn.download, .ots-archiving-modal .btn.ok {
background-color: #4a90e2;
} | node_modules/opentok-archiving/css/style.css | .ots-archiving-modal {
position: fixed;
/* Stay in place */
padding-top: 100px;
/* Location of the box */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/ opacity */
z-index: 1051;
font-family: Arial, Helvetica, sans-serif;
}
.ots-archiving-modal * {
box-sizing: border-box;
}
.ots-archiving-modal .modal-content {
background-color: #fefefe;
margin: auto;
padding: 0;
border-top: 2px solid #33abf5;
width: 710px;
height: 265px;
position: relative;
text-align: center;
display: flex;
flex-direction: column;
}
.ots-archiving-modal .modal-content > div {
display: flex;
flex-direction: column;
height: 33.33%;
justify-content: center;
align-items: center;
}
.ots-archiving-modal .modal-header h2 {
position: relative;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: 200;
font-size: 20px;
}
.ots-archiving-modal .modal-header h2::before {
content: '';
position: absolute;
display: inline-block;
width: 40px;
height: 40px;
left: -50px;
bottom: -10px;
background-image: url(http://assets.tokbox.com/solutions/images/icon-download.png);
background-size: contain;
background-position: 2px -5px;
background-repeat: no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
.ots-archiving-modal .modal-header::before {
background-image: url("https://assets.tokbox.com/solutions/images/icon-download@2x.png");
}
}
.ots-archiving-modal .close-button {
position: absolute;
background-image: url("https://assets.tokbox.com/solutions/images/icon-close-thin.png");
background-size: contain;
height: 20px;
width: 20px;
top: 15px;
right: 15px;
cursor: pointer;
}
.ots-archiving-modal .close:hover,
.ots-archiving-modal .close:focus {
color: #000;
text-decoration: none;
}
.ots-archiving-modal .modal-info {
background-color: #fafbfc;
border: 1px solid #e8e8e8;
padding: 20px;
font-size: 16px;
}
.ots-archiving-modal .modal-info > div {
margin: 5px auto;
font-family: Muli;
}
.ots-archiving-modal .modal-info .message {
font-size: 13px;
font-weight: 100;
line-height: 18px;
width: 80%;
}
.ots-archiving-modal .modal-info .archive-id {
width: 70%;
font-weight: 200;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ots-archiving-modal .modal-info .archive-details {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
width: auto;
}
.ots-archiving-modal .modal-button-container {
height: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.ots-archiving-modal .btn {
display: inline-block;
font-family: helvetica, arial, sans-serif;
width: 145px;
height: 35px;
line-height: 35px;
color: white;
text-decoration: none;
border: 1px solid rgba(68 68 68, 1);
font-size: 14px;
font-weight: 100;
cursor: pointer;
}
.ots-archiving-modal .btn.download, .ots-archiving-modal .btn.ok {
background-color: #4a90e2;
} | 0.442877 | 0.055132 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;400;600&display=swap");
/* utility */
.font-poppins {
font-family: "Poppins", sans-serif;
}
.font-poppins2 {
font-family: "Poppins", sans-serif;
font-weight: 200 !important;
}
.font-courier {
font-family: "courier";
}
.font-montserrat {
font-family: "Montserrat Alternates", sans-serif;
}
.gradient {
background: linear-gradient(to left, #674ea7, #8470b5) !important;
}
.text-main {
color: #674ea7 !important;
}
.text-main2 {
color: #797ad2 !important;
}
.text-main3 {
color: #949494 !important;
}
.bg-main {
background-color: #674ea7 !important;
}
.bg-main2 {
background-color: #797ad2 !important;
}
.bg-main3 {
background-color: #ededed !important;
}
.border-rd {
border-radius: 30px !important;
}
/* akhir utilty */
#atas {
height: 400px !important;
}
#bawah {
height: 260px !important;
}
.vektor {
width: 100px !important;
position: relative;
bottom: 120px !important;
left: 40px !important;
}
#atas .row .col-md-4 p {
z-index: 999 !important;
}
.aktif {
background-color: #797ad2 !important;
color: white !important;
}
.nav-sign a:hover {
background-color: white !important;
color: #797ad2 !important;
transition: 0.7s !important;
}
.profile {
width: 145px !important;
height: 165px !important;
}
.profile h6 {
font-size: 13px !important;
}
.profile small {
font-size: 12px !important;
}
.fa-times {
font-size: 20px !important;
}
.delete {
width: 25px !important;
height: 25px !important;
border-radius: 50% !important;
position: absolute !important;
top: -15px !important;
left: 90% !important;
background-color: #bababa !important;
}
.kotak-form {
position: absolute !important;
width: 40% !important;
top: 50px !important;
z-index: 999 !important;
right: 40px !important;
}
.register {
width: 50% !important;
}
.login {
width: 50% !important;
}
a {
text-decoration: none !important;
}
.vektor {
width: 385px !important;
margin-left: -30px !important;
margin-top: 50px !important;
}
/* mobile */
@media screen and (max-width: 760px){
#atas {
height: 700px !important;
}
#bawah {
height: 700px !important;
padding-top: 500px !important;
}
.kotak-form {
position: absolute !important;
width: 85% !important;
top: 500px !important;
z-index: 999 !important;
align-items: center !important;
}
.register {
width: 100% !important;
font-size: 14px !important;
}
.login {
width: 100% !important;
font-size: 14px !important;
}
.nav-sign {
width: 300px !important;
}
p{
font-size: 12px !important;
}
h3{
font-size: 20px !important;
}
h6{
font-size: 15px !important;
}
label {
font-size: 13px !important;
}
.vektor {
width: 350px !important;
margin-top: 100px !important;
}
}
/* From cssbuttons.io by @Custyyyy */
#_checkbox {
display: none;
}
#label {
width: 30px;
height: 30px;
background-color: #797ad2 !important;
transform: translateY(-50%);
border-radius: 50%;
cursor: pointer;
transition: 0.2s ease transform, 0.2s ease background-color,
0.2s ease box-shadow;
overflow: hidden;
z-index: 1;
}
#label:before {
content: "";
position: absolute;
top: 50%;
right: 0;
left: 0;
width: 24px;
height: 23px;
margin: 0 auto;
background-color: #fff;
transform: translateY(-50%);
border-radius: 50%;
box-shadow: inset 0 7px 10px #ffbeb8;
transition: 0.2s ease width, 0.2s ease height;
}
#label:hover:before {
transform: translateY(-50%) scale(1.1);
box-shadow: inset 0 7px 10px #ff9d96;
}
#label:active {
transform: translateY(-50%) scale(0.9);
}
#tick_mark {
position: absolute;
top: 0px;
right: 0;
left: 0;
width: 15px;
height: 18px;
margin: 0 auto;
margin-left: 5px;
transform: rotateZ(-40deg);
}
#tick_mark:before,
#tick_mark:after {
content: "";
position: absolute;
background-color: #fff;
border-radius: 2px;
opacity: 0;
transition: 0.2s ease transform, 0.2s ease opacity;
}
#tick_mark:before {
left: 0;
bottom: 0;
width: 4px;
height: 10px;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
transform: translateY(-68px);
}
#tick_mark:after {
left: 0;
bottom: 0;
width: 100%;
height: 4px;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
transform: translateX(78px);
}
#_checkbox:checked + #label {
background-color: #07d410;
}
#_checkbox:checked + #label:before {
width: 0;
height: 0;
}
#_checkbox:checked + #label #tick_mark:before,
#_checkbox:checked + #label #tick_mark:after {
transform: translate(0);
opacity: 1;
}
.cookie {
margin-top: -11px !important;
position: absolute;
}
/* From cssbuttons.io */
.c-button {
color: #949494 !important;
background-color: white;
width: 100% !important;
font-weight: 700;
font-size: 16px;
text-decoration: none;
padding: 0.9em 1.6em;
cursor: pointer;
display: inline-block;
vertical-align: middle;
position: relative;
z-index: 1;
}
.c-button--gooey {
color: white;
text-transform: uppercase;
letter-spacing: 2px;
border: 4px solid #797ad2;
border-radius: 20px;
position: relative;
transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs {
height: 100%;
filter: url(#goo);
overflow: hidden;
position: absolute;
top: 0;
left: 0;
bottom: -3px;
right: -1px;
z-index: -1;
}
.c-button--gooey .c-button__blobs div {
background-color: #797ad2 !important;
width: 34%;
height: 100%;
border-radius: 100%;
position: absolute;
transform: scale(1.4) translateY(125%) translateZ(0);
transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs div:nth-child(1) {
left: -5%;
}
.c-button--gooey .c-button__blobs div:nth-child(2) {
left: 30%;
transition-delay: 60ms;
}
.c-button--gooey .c-button__blobs div:nth-child(3) {
left: 66%;
transition-delay: 25ms;
}
.c-button--gooey:hover {
color: #fff !important;
}
.c-button--gooey:hover .c-button__blobs div {
transform: scale(1.4) translateY(0) translateZ(0);
} | public/css/get-started/sign.css | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;400;600&display=swap");
/* utility */
.font-poppins {
font-family: "Poppins", sans-serif;
}
.font-poppins2 {
font-family: "Poppins", sans-serif;
font-weight: 200 !important;
}
.font-courier {
font-family: "courier";
}
.font-montserrat {
font-family: "Montserrat Alternates", sans-serif;
}
.gradient {
background: linear-gradient(to left, #674ea7, #8470b5) !important;
}
.text-main {
color: #674ea7 !important;
}
.text-main2 {
color: #797ad2 !important;
}
.text-main3 {
color: #949494 !important;
}
.bg-main {
background-color: #674ea7 !important;
}
.bg-main2 {
background-color: #797ad2 !important;
}
.bg-main3 {
background-color: #ededed !important;
}
.border-rd {
border-radius: 30px !important;
}
/* akhir utilty */
#atas {
height: 400px !important;
}
#bawah {
height: 260px !important;
}
.vektor {
width: 100px !important;
position: relative;
bottom: 120px !important;
left: 40px !important;
}
#atas .row .col-md-4 p {
z-index: 999 !important;
}
.aktif {
background-color: #797ad2 !important;
color: white !important;
}
.nav-sign a:hover {
background-color: white !important;
color: #797ad2 !important;
transition: 0.7s !important;
}
.profile {
width: 145px !important;
height: 165px !important;
}
.profile h6 {
font-size: 13px !important;
}
.profile small {
font-size: 12px !important;
}
.fa-times {
font-size: 20px !important;
}
.delete {
width: 25px !important;
height: 25px !important;
border-radius: 50% !important;
position: absolute !important;
top: -15px !important;
left: 90% !important;
background-color: #bababa !important;
}
.kotak-form {
position: absolute !important;
width: 40% !important;
top: 50px !important;
z-index: 999 !important;
right: 40px !important;
}
.register {
width: 50% !important;
}
.login {
width: 50% !important;
}
a {
text-decoration: none !important;
}
.vektor {
width: 385px !important;
margin-left: -30px !important;
margin-top: 50px !important;
}
/* mobile */
@media screen and (max-width: 760px){
#atas {
height: 700px !important;
}
#bawah {
height: 700px !important;
padding-top: 500px !important;
}
.kotak-form {
position: absolute !important;
width: 85% !important;
top: 500px !important;
z-index: 999 !important;
align-items: center !important;
}
.register {
width: 100% !important;
font-size: 14px !important;
}
.login {
width: 100% !important;
font-size: 14px !important;
}
.nav-sign {
width: 300px !important;
}
p{
font-size: 12px !important;
}
h3{
font-size: 20px !important;
}
h6{
font-size: 15px !important;
}
label {
font-size: 13px !important;
}
.vektor {
width: 350px !important;
margin-top: 100px !important;
}
}
/* From cssbuttons.io by @Custyyyy */
#_checkbox {
display: none;
}
#label {
width: 30px;
height: 30px;
background-color: #797ad2 !important;
transform: translateY(-50%);
border-radius: 50%;
cursor: pointer;
transition: 0.2s ease transform, 0.2s ease background-color,
0.2s ease box-shadow;
overflow: hidden;
z-index: 1;
}
#label:before {
content: "";
position: absolute;
top: 50%;
right: 0;
left: 0;
width: 24px;
height: 23px;
margin: 0 auto;
background-color: #fff;
transform: translateY(-50%);
border-radius: 50%;
box-shadow: inset 0 7px 10px #ffbeb8;
transition: 0.2s ease width, 0.2s ease height;
}
#label:hover:before {
transform: translateY(-50%) scale(1.1);
box-shadow: inset 0 7px 10px #ff9d96;
}
#label:active {
transform: translateY(-50%) scale(0.9);
}
#tick_mark {
position: absolute;
top: 0px;
right: 0;
left: 0;
width: 15px;
height: 18px;
margin: 0 auto;
margin-left: 5px;
transform: rotateZ(-40deg);
}
#tick_mark:before,
#tick_mark:after {
content: "";
position: absolute;
background-color: #fff;
border-radius: 2px;
opacity: 0;
transition: 0.2s ease transform, 0.2s ease opacity;
}
#tick_mark:before {
left: 0;
bottom: 0;
width: 4px;
height: 10px;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
transform: translateY(-68px);
}
#tick_mark:after {
left: 0;
bottom: 0;
width: 100%;
height: 4px;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
transform: translateX(78px);
}
#_checkbox:checked + #label {
background-color: #07d410;
}
#_checkbox:checked + #label:before {
width: 0;
height: 0;
}
#_checkbox:checked + #label #tick_mark:before,
#_checkbox:checked + #label #tick_mark:after {
transform: translate(0);
opacity: 1;
}
.cookie {
margin-top: -11px !important;
position: absolute;
}
/* From cssbuttons.io */
.c-button {
color: #949494 !important;
background-color: white;
width: 100% !important;
font-weight: 700;
font-size: 16px;
text-decoration: none;
padding: 0.9em 1.6em;
cursor: pointer;
display: inline-block;
vertical-align: middle;
position: relative;
z-index: 1;
}
.c-button--gooey {
color: white;
text-transform: uppercase;
letter-spacing: 2px;
border: 4px solid #797ad2;
border-radius: 20px;
position: relative;
transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs {
height: 100%;
filter: url(#goo);
overflow: hidden;
position: absolute;
top: 0;
left: 0;
bottom: -3px;
right: -1px;
z-index: -1;
}
.c-button--gooey .c-button__blobs div {
background-color: #797ad2 !important;
width: 34%;
height: 100%;
border-radius: 100%;
position: absolute;
transform: scale(1.4) translateY(125%) translateZ(0);
transition: all 700ms ease;
}
.c-button--gooey .c-button__blobs div:nth-child(1) {
left: -5%;
}
.c-button--gooey .c-button__blobs div:nth-child(2) {
left: 30%;
transition-delay: 60ms;
}
.c-button--gooey .c-button__blobs div:nth-child(3) {
left: 66%;
transition-delay: 25ms;
}
.c-button--gooey:hover {
color: #fff !important;
}
.c-button--gooey:hover .c-button__blobs div {
transform: scale(1.4) translateY(0) translateZ(0);
} | 0.337313 | 0.113408 |
section article:last-child {
margin-bottom: 20px;
}
h4 {
font-size: 1.7em;
}
.copy {
margin-top: -4px;
}
.apiurl {
margin: 30px auto;
text-align: center;
}
.apiurl input {
width: 60%;
height: 37px;
font-size: 1em;
font-family: monospace, serif;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
color: #717578;
padding-left: 10px;
margin-left: 25px;
border: 1px solid #d1d5da;
border-right-color: white;
}
.apiurl input:focus {
border-color: var(--azul);
}
.requests,
.apis {
margin-left: 35px;
}
.category h3 {
margin-left: 0;
margin-top: 50px;
}
.category h3 + .info {
text-align: left;
}
.requests button,
.category button {
min-width: 100px;
height: 30px;
cursor: pointer;
margin: 15px auto;
font-weight: 800;
background-color: transparent;
border-radius: 25px;
/* border: 1px solid rgb(190, 190, 190); */
color: var(--azulmarino);
outline: none;
}
.requests .request-selected,
.category .category-selected {
background-color: var(--azulmarino);
color: white;
}
.requests span,
.category span {
margin-left: 15px;
display: inline-block;
}
.key {
text-align: center;
}
.generate-key {
border-radius: 25px;
border: 1px solid rgb(190, 190, 190);
color: rgb(190, 190, 190);
display: block;
padding: 5px 15px;
width: 110px;
margin: 15px auto;
text-align: center;
cursor: pointer;
pointer-events: none;
}
.generate-key-active {
font-weight: 800;
border: 1px solid var(--rosa);
color: var(--rosa);
pointer-events: all;
}
.loading {
visibility: hidden;
}
.loading p {
font-size: 0.9em;
font-style: italic;
color: #3b3b3b;
margin-bottom: 0;
font-weight: 300;
}
.loading img {
width: 120px;
}
.post-body {
display: none;
text-align: center;
margin: 10px 0 0 40px;
}
.post-body p {
color: #a5a5a5;
font-weight: 300;
font-size: 1em;
margin: 10px auto 25px auto;
}
.post-textarea {
width: 65%;
height: 110px;
font-size: 0.85em;
border-radius: 6px;
border: 1px solid #d1d5da;
resize: none;
padding: 10px;
}
#key {
display: none;
font-style: normal;
font-weight: 600;
text-decoration: underline;
color: #00d170;
font-size: 1.1em;
}
.apiurl .input-text {
border: 1px solid #d1d5da;
border-radius: 6px;
}
.send {
text-align: center;
}
.send button {
padding: 6px 18px;
border-radius: 6px;
background-color: var(--azulclaro);
border: 1px solid #d1d5da;
color: white;
font-weight: 600;
font-size: 1em;
cursor: pointer;
}
.response {
margin: 50px auto;
text-align: center;
}
.response h3 {
text-align: left;
}
.response textarea {
width: 80%;
height: 300px;
border-radius: 6px;
border: 1px solid #d1d5da;
resize: none;
padding: 10px;
}
.example {
margin-top: 80px;
}
.website {
width: 80%;
border: 1px solid #d1d5da;
border-radius: 10px;
margin: 20px auto;
}
.web-header {
text-align: center;
}
.web-header h3 {
color: var(--azuloscuro);
margin: 50px auto;
}
.web-header .currency-value p {
font-size: 2em;
}
.web-body {
padding: 20px;
margin: 30px auto 0 auto;
background-color: #f3f3f3;
}
.currency-item {
margin: 30px auto;
width: 80%;
}
.currency-item img {
width: 40px;
vertical-align: middle;
}
.currency-item span {
display: inline-block;
vertical-align: middle;
}
.currency-item span p {
display: inline;
margin-left: 5px;
}
.web-body .currency-info {
width: 40%;
}
.only-currency {
display: none;
}
.currency-info p:last-child {
color: grey;
font-size: 0.8em;
}
.currency-value {
margin-left: 20px;
text-align: left;
}
.currency-value p {
font-size: 1.7em;
color: var(--azuloscuro);
text-align: right;
}
.no-data {
text-align: center;
color: grey;
margin: 100px auto;
font-weight: 300;
}
.use-data {
margin-top: 30px;
}
.use-data p {
color: #a5a5a5;
font-weight: 300;
font-size: 1em;
margin: -10px auto 25px auto;
}
.weather-value {
/* border: 1px solid red; */
text-align: right;
float: right;
}
.tiempo {
width: 70%;
margin: 0 auto;
}
#celsius {
font-size: 0.7em;
vertical-align: top;
font-family: "proxima-nova", "Montserrat", sans-serif;
}
#desc {
font-size: 0.8em;
}
#degrees {
text-align: right;
font-size: 1.5em;
}
@media only screen and (max-width: 873px) {
.tiempo {
width: 90%;
}
.web-body {
padding: 5px;
}
}
@media only screen and (max-width: 722px) {
.currency-item {
width: 90%;
}
}
@media only screen and (max-width: 647px) {
.tiempo {
width: 98%;
}
.web-body {
padding: 1px;
}
}
@media only screen and (max-width: 484px) {
h4 {
font-size: 1.5em;
}
.apiurl input {
margin-left: 0;
width: 90%;
}
.category {
text-align: center;
}
.apis {
margin-left: 0;
}
.response textarea {
width: 90%;
}
.website {
width: 98%;
}
.category h3 + .info {
text-align: center;
}
.key {
margin-top: 30px;
}
.requests {
text-align: center;
margin-left: 0;
}
.requests span {
margin-left: 0;
}
.requests button {
display: block;
}
.currency-value p {
font-size: 1.4em;
}
}
@media only screen and (max-width: 345px) {
.currency-item img {
width: 30px;
}
.currency-value {
margin-left: 5px;
}
} | src/main/webapp/css/api.css | section article:last-child {
margin-bottom: 20px;
}
h4 {
font-size: 1.7em;
}
.copy {
margin-top: -4px;
}
.apiurl {
margin: 30px auto;
text-align: center;
}
.apiurl input {
width: 60%;
height: 37px;
font-size: 1em;
font-family: monospace, serif;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
color: #717578;
padding-left: 10px;
margin-left: 25px;
border: 1px solid #d1d5da;
border-right-color: white;
}
.apiurl input:focus {
border-color: var(--azul);
}
.requests,
.apis {
margin-left: 35px;
}
.category h3 {
margin-left: 0;
margin-top: 50px;
}
.category h3 + .info {
text-align: left;
}
.requests button,
.category button {
min-width: 100px;
height: 30px;
cursor: pointer;
margin: 15px auto;
font-weight: 800;
background-color: transparent;
border-radius: 25px;
/* border: 1px solid rgb(190, 190, 190); */
color: var(--azulmarino);
outline: none;
}
.requests .request-selected,
.category .category-selected {
background-color: var(--azulmarino);
color: white;
}
.requests span,
.category span {
margin-left: 15px;
display: inline-block;
}
.key {
text-align: center;
}
.generate-key {
border-radius: 25px;
border: 1px solid rgb(190, 190, 190);
color: rgb(190, 190, 190);
display: block;
padding: 5px 15px;
width: 110px;
margin: 15px auto;
text-align: center;
cursor: pointer;
pointer-events: none;
}
.generate-key-active {
font-weight: 800;
border: 1px solid var(--rosa);
color: var(--rosa);
pointer-events: all;
}
.loading {
visibility: hidden;
}
.loading p {
font-size: 0.9em;
font-style: italic;
color: #3b3b3b;
margin-bottom: 0;
font-weight: 300;
}
.loading img {
width: 120px;
}
.post-body {
display: none;
text-align: center;
margin: 10px 0 0 40px;
}
.post-body p {
color: #a5a5a5;
font-weight: 300;
font-size: 1em;
margin: 10px auto 25px auto;
}
.post-textarea {
width: 65%;
height: 110px;
font-size: 0.85em;
border-radius: 6px;
border: 1px solid #d1d5da;
resize: none;
padding: 10px;
}
#key {
display: none;
font-style: normal;
font-weight: 600;
text-decoration: underline;
color: #00d170;
font-size: 1.1em;
}
.apiurl .input-text {
border: 1px solid #d1d5da;
border-radius: 6px;
}
.send {
text-align: center;
}
.send button {
padding: 6px 18px;
border-radius: 6px;
background-color: var(--azulclaro);
border: 1px solid #d1d5da;
color: white;
font-weight: 600;
font-size: 1em;
cursor: pointer;
}
.response {
margin: 50px auto;
text-align: center;
}
.response h3 {
text-align: left;
}
.response textarea {
width: 80%;
height: 300px;
border-radius: 6px;
border: 1px solid #d1d5da;
resize: none;
padding: 10px;
}
.example {
margin-top: 80px;
}
.website {
width: 80%;
border: 1px solid #d1d5da;
border-radius: 10px;
margin: 20px auto;
}
.web-header {
text-align: center;
}
.web-header h3 {
color: var(--azuloscuro);
margin: 50px auto;
}
.web-header .currency-value p {
font-size: 2em;
}
.web-body {
padding: 20px;
margin: 30px auto 0 auto;
background-color: #f3f3f3;
}
.currency-item {
margin: 30px auto;
width: 80%;
}
.currency-item img {
width: 40px;
vertical-align: middle;
}
.currency-item span {
display: inline-block;
vertical-align: middle;
}
.currency-item span p {
display: inline;
margin-left: 5px;
}
.web-body .currency-info {
width: 40%;
}
.only-currency {
display: none;
}
.currency-info p:last-child {
color: grey;
font-size: 0.8em;
}
.currency-value {
margin-left: 20px;
text-align: left;
}
.currency-value p {
font-size: 1.7em;
color: var(--azuloscuro);
text-align: right;
}
.no-data {
text-align: center;
color: grey;
margin: 100px auto;
font-weight: 300;
}
.use-data {
margin-top: 30px;
}
.use-data p {
color: #a5a5a5;
font-weight: 300;
font-size: 1em;
margin: -10px auto 25px auto;
}
.weather-value {
/* border: 1px solid red; */
text-align: right;
float: right;
}
.tiempo {
width: 70%;
margin: 0 auto;
}
#celsius {
font-size: 0.7em;
vertical-align: top;
font-family: "proxima-nova", "Montserrat", sans-serif;
}
#desc {
font-size: 0.8em;
}
#degrees {
text-align: right;
font-size: 1.5em;
}
@media only screen and (max-width: 873px) {
.tiempo {
width: 90%;
}
.web-body {
padding: 5px;
}
}
@media only screen and (max-width: 722px) {
.currency-item {
width: 90%;
}
}
@media only screen and (max-width: 647px) {
.tiempo {
width: 98%;
}
.web-body {
padding: 1px;
}
}
@media only screen and (max-width: 484px) {
h4 {
font-size: 1.5em;
}
.apiurl input {
margin-left: 0;
width: 90%;
}
.category {
text-align: center;
}
.apis {
margin-left: 0;
}
.response textarea {
width: 90%;
}
.website {
width: 98%;
}
.category h3 + .info {
text-align: center;
}
.key {
margin-top: 30px;
}
.requests {
text-align: center;
margin-left: 0;
}
.requests span {
margin-left: 0;
}
.requests button {
display: block;
}
.currency-value p {
font-size: 1.4em;
}
}
@media only screen and (max-width: 345px) {
.currency-item img {
width: 30px;
}
.currency-value {
margin-left: 5px;
}
} | 0.469034 | 0.12638 |
.carousel-indicators .dot{
width: 11px;
height: 11px;
margin-right: 4px;
margin-left: 4px;
border-radius: 100%;
background-color: #111;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 8px 10px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.fixed-top-web{
/* position: fixed;
top: 0; */
width: 100%;
}
.top-logo{
height: 55px;
}
.border-radious-15{
border-radius: 15px;
}
small{
line-height: 40px;
letter-spacing: 2.1px;
color: rgb(33, 65, 123);
font-size: 12px;
}
.text-def-blue{
color: rgb(33, 65, 123);
}
.bg-logo-color{
background-color: rgb(136, 163, 9);
}
.text-common{
color: rgb(136, 163, 9);
}
.width-50{
width: 50%;
}
.width-40{
width: 40%;
}
.width-30{
width: 30%;
}
.width-20{
width: 20%;
}
.width-15{
width: 10%;
}
.width-10{
width: 10%;
}
.mpd{
margin: 0;
padding: 0;
}
.height-px-70{
height: 70px;
}
.border-radious-5{
border-radius: 5px;
}
.border-radious-8{
border-radius: 8px;
}
.shadow-box{
height:95%;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.product-logo{
height:85px;
}
.bg-soft-gray{
background-color: #F9FAFC;
}
.footer-bg{
/* background-color: rgba(33, 64, 123, 0.95); */
background-color: #002B52;
}
.footer-last-bg{
background-color: #002B52;
}
.logo{
height: 50px;
width: 50px;
}
.logo-border{
width: 85px;
}
.package{
background-color: #fffde6b2;
}
.package-btn{
background-color: rgb(221, 206, 0);
border: none;
}
.bg-image {
height: 370px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.bg-banner{
height:inherit;
background-position: center center;
background-size: cover;
background-color: rgba(15, 33, 55, 0.800);
}
.banner-logo{
margin-top: 25px;
height: 55px;
}
.section-data{
overflow: hidden;
}
.bg-world{
height: auto;
padding: 0;
padding-bottom: 10%;
background-position: center center;
background-size: 100%;
background-repeat: no-repeat;
overflow: hidden;
}
.card2{
border: 1px solid rgb(0, 184, 0);
background-color: white;
}
.card1{
background-color: white;
}
.mr-client{
background-color: white;
overflow: hidden;
}
.bg-i1{
background-color: rgb(0, 169, 157);
}
.bg-i2{
background-color: #DB4A87;
}
.bg-i3{
background-color: #3F327A;
}
.bg-i4{
background-color: #FFA42F;
}
.bg-i5{
background-color: #7860DC;
}
.bg-i6{
background-color: #6AB04C;
}
.resp-client-img{ height: 110px;}
.bg-buy{
height: 50vh;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-color: rgba(222, 184, 135, 0.151);
padding-top: 5vh;
}
.bg-buy2{
border-radius: 15px;
height: 40vh;
margin: 0 auto;
padding: 5vh;
background-color: white;
width: 95%;
}
.hover-black:hover{
color: white;
background-color: black;
}
.hover-green:hover{
color: rgb(255, 255, 255);
background-color: green;
}
.hover-buy:hover{
background-color: rgb(187, 0, 93);
}
.buy-button{
background-color: #DB4A87;
border: none;
margin-top: 10px;
margin-bottom: 10px;
}
.scroll-icons{
margin-top: -70px;
}
.s-ecllip{
height: 7px;
margin: 2px;
}
.text-semi-bold{
font-weight: 600;
}
.mrc-image{
height: 110px;
max-width: 100%;
}
.footer-icon{
width: 95px;
}
/* btn padding */
.btn-p{
padding-top: 6px;
padding-bottom: 6px;
padding-left: 10px;
padding-right: 10px;
}
/*
font size */
.text-fx-14{ font-size: 14px; }
.text-fx-15{ font-size: 15px; }
.text-fx-16{ font-size: 16px; }
.text-fx-18{ font-size: 18px; }
.text-fx-20{ font-size: 20px; }
.text-fx-22{ font-size: 22px; }
.text-12-16{ font-size: 13px; }
.text-16-18{ font-size: 16px; }
.text-16-20{ font-size: 16px; }
.text-12-20{ font-size: 14px; }
.text-16-22{ font-size: 16px; }
.text-20-24{ font-size: 20px; }
.text-20-30{ font-size: 22px; }
.text-24-36{ font-size: 24px; }
.text-40-44{ font-size: 40px; }
.text-28-48{ font-size: 24px; }
.text-30-60{ font-size: 26px; }
@media (min-width: 768px) {
.text-12-16{ font-size: 14px; }
.text-12-20{ font-size: 16px; }
.text-16-20{ font-size: 18px; }
.text-16-18{ font-size: 17px; }
.text-16-22{ font-size: 18px; }
.text-20-24{ font-size: 22px; }
.text-20-30{ font-size: 24px; }
.text-24-36{ font-size: 28px; }
.text-40-44{ font-size: 42px; }
.text-28-48{ font-size: 32px; }
.text-30-60{ font-size: 32px; }
small{
font-size: 13px;
}
.bg-image {
height: 450px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.banner-logo{
height: 80px;
}
.s-ecllip{
height: 9px;
margin: 2px;
}
.btn-p{
padding-top: 7px;
padding-bottom: 7px;
padding-left: 12px;
padding-right: 12px;
}
.scroll-icons{
margin-top: -80px;
}
.bg-buy{
height: 35vh;
padding-top: 5vh;
}
.bg-buy2{
height: 25vh;
padding: 5vh;
width: 90%;
}
.footer-icon{
width: 110px;
}
}
@media (min-width: 992px) {
.text-12-16{ font-size: 16px; }
.text-16-20{ font-size: 20px; }
.text-12-20{ font-size: 20px; }
.text-16-18{ font-size: 16px; }
.text-16-22{ font-size: 20px; }
.text-20-24{ font-size: 24px; }
.text-20-30{ font-size: 30px; }
.text-24-36{ font-size: 36px; }
.text-40-44{ font-size: 44px; }
.text-28-48{ font-size: 40px; }
.text-30-60{ font-size: 60px; }
small{
font-size: 14px;
}
.bg-image {
height: 580px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.s-ecllip{
height: 10px;
margin: 2px;
}
.banner-logo{
height: 90px;
}
.btn-p{
padding-top: 8px;
padding-bottom: 8px;
padding-left: 20px;
padding-right: 20px;
}
.scroll-icons{
margin-top: -95px;
}
.bg-buy{
height: 30vh;
padding-top: 5vh;
}
.bg-buy2{
height: 20vh;
padding: 5vh;
width: 80%;
}
.footer-icon{
width: 140px;
}
} | public/assets/css/custom_product.css | .carousel-indicators .dot{
width: 11px;
height: 11px;
margin-right: 4px;
margin-left: 4px;
border-radius: 100%;
background-color: #111;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 8px 10px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.fixed-top-web{
/* position: fixed;
top: 0; */
width: 100%;
}
.top-logo{
height: 55px;
}
.border-radious-15{
border-radius: 15px;
}
small{
line-height: 40px;
letter-spacing: 2.1px;
color: rgb(33, 65, 123);
font-size: 12px;
}
.text-def-blue{
color: rgb(33, 65, 123);
}
.bg-logo-color{
background-color: rgb(136, 163, 9);
}
.text-common{
color: rgb(136, 163, 9);
}
.width-50{
width: 50%;
}
.width-40{
width: 40%;
}
.width-30{
width: 30%;
}
.width-20{
width: 20%;
}
.width-15{
width: 10%;
}
.width-10{
width: 10%;
}
.mpd{
margin: 0;
padding: 0;
}
.height-px-70{
height: 70px;
}
.border-radious-5{
border-radius: 5px;
}
.border-radious-8{
border-radius: 8px;
}
.shadow-box{
height:95%;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.product-logo{
height:85px;
}
.bg-soft-gray{
background-color: #F9FAFC;
}
.footer-bg{
/* background-color: rgba(33, 64, 123, 0.95); */
background-color: #002B52;
}
.footer-last-bg{
background-color: #002B52;
}
.logo{
height: 50px;
width: 50px;
}
.logo-border{
width: 85px;
}
.package{
background-color: #fffde6b2;
}
.package-btn{
background-color: rgb(221, 206, 0);
border: none;
}
.bg-image {
height: 370px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.bg-banner{
height:inherit;
background-position: center center;
background-size: cover;
background-color: rgba(15, 33, 55, 0.800);
}
.banner-logo{
margin-top: 25px;
height: 55px;
}
.section-data{
overflow: hidden;
}
.bg-world{
height: auto;
padding: 0;
padding-bottom: 10%;
background-position: center center;
background-size: 100%;
background-repeat: no-repeat;
overflow: hidden;
}
.card2{
border: 1px solid rgb(0, 184, 0);
background-color: white;
}
.card1{
background-color: white;
}
.mr-client{
background-color: white;
overflow: hidden;
}
.bg-i1{
background-color: rgb(0, 169, 157);
}
.bg-i2{
background-color: #DB4A87;
}
.bg-i3{
background-color: #3F327A;
}
.bg-i4{
background-color: #FFA42F;
}
.bg-i5{
background-color: #7860DC;
}
.bg-i6{
background-color: #6AB04C;
}
.resp-client-img{ height: 110px;}
.bg-buy{
height: 50vh;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-color: rgba(222, 184, 135, 0.151);
padding-top: 5vh;
}
.bg-buy2{
border-radius: 15px;
height: 40vh;
margin: 0 auto;
padding: 5vh;
background-color: white;
width: 95%;
}
.hover-black:hover{
color: white;
background-color: black;
}
.hover-green:hover{
color: rgb(255, 255, 255);
background-color: green;
}
.hover-buy:hover{
background-color: rgb(187, 0, 93);
}
.buy-button{
background-color: #DB4A87;
border: none;
margin-top: 10px;
margin-bottom: 10px;
}
.scroll-icons{
margin-top: -70px;
}
.s-ecllip{
height: 7px;
margin: 2px;
}
.text-semi-bold{
font-weight: 600;
}
.mrc-image{
height: 110px;
max-width: 100%;
}
.footer-icon{
width: 95px;
}
/* btn padding */
.btn-p{
padding-top: 6px;
padding-bottom: 6px;
padding-left: 10px;
padding-right: 10px;
}
/*
font size */
.text-fx-14{ font-size: 14px; }
.text-fx-15{ font-size: 15px; }
.text-fx-16{ font-size: 16px; }
.text-fx-18{ font-size: 18px; }
.text-fx-20{ font-size: 20px; }
.text-fx-22{ font-size: 22px; }
.text-12-16{ font-size: 13px; }
.text-16-18{ font-size: 16px; }
.text-16-20{ font-size: 16px; }
.text-12-20{ font-size: 14px; }
.text-16-22{ font-size: 16px; }
.text-20-24{ font-size: 20px; }
.text-20-30{ font-size: 22px; }
.text-24-36{ font-size: 24px; }
.text-40-44{ font-size: 40px; }
.text-28-48{ font-size: 24px; }
.text-30-60{ font-size: 26px; }
@media (min-width: 768px) {
.text-12-16{ font-size: 14px; }
.text-12-20{ font-size: 16px; }
.text-16-20{ font-size: 18px; }
.text-16-18{ font-size: 17px; }
.text-16-22{ font-size: 18px; }
.text-20-24{ font-size: 22px; }
.text-20-30{ font-size: 24px; }
.text-24-36{ font-size: 28px; }
.text-40-44{ font-size: 42px; }
.text-28-48{ font-size: 32px; }
.text-30-60{ font-size: 32px; }
small{
font-size: 13px;
}
.bg-image {
height: 450px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.banner-logo{
height: 80px;
}
.s-ecllip{
height: 9px;
margin: 2px;
}
.btn-p{
padding-top: 7px;
padding-bottom: 7px;
padding-left: 12px;
padding-right: 12px;
}
.scroll-icons{
margin-top: -80px;
}
.bg-buy{
height: 35vh;
padding-top: 5vh;
}
.bg-buy2{
height: 25vh;
padding: 5vh;
width: 90%;
}
.footer-icon{
width: 110px;
}
}
@media (min-width: 992px) {
.text-12-16{ font-size: 16px; }
.text-16-20{ font-size: 20px; }
.text-12-20{ font-size: 20px; }
.text-16-18{ font-size: 16px; }
.text-16-22{ font-size: 20px; }
.text-20-24{ font-size: 24px; }
.text-20-30{ font-size: 30px; }
.text-24-36{ font-size: 36px; }
.text-40-44{ font-size: 44px; }
.text-28-48{ font-size: 40px; }
.text-30-60{ font-size: 60px; }
small{
font-size: 14px;
}
.bg-image {
height: 580px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
clip-path: polygon(0 0%, 100% 0, 100% 80%, 0% 100%);
}
.s-ecllip{
height: 10px;
margin: 2px;
}
.banner-logo{
height: 90px;
}
.btn-p{
padding-top: 8px;
padding-bottom: 8px;
padding-left: 20px;
padding-right: 20px;
}
.scroll-icons{
margin-top: -95px;
}
.bg-buy{
height: 30vh;
padding-top: 5vh;
}
.bg-buy2{
height: 20vh;
padding: 5vh;
width: 80%;
}
.footer-icon{
width: 140px;
}
} | 0.436142 | 0.095856 |
* {
font-family: "Microsoft YaHei", Arial;
font-size: 14px;
margin:0;
padding:0;
outline: none;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-webkit-font-smoothing: antialiased;
}
html,body{
width: 100%;
height: 100%;
margin:0;
padding:0;
}
body {
line-height: 1.8;
position: relative;
}
.header{
display: block;
width: 100%;
height: 80px;
line-height: 80px;
background: #00BCB5;
position: relative;
font-size: 20px;
font-weight: normal;
color: #fff;
text-align: center;
border-bottom: solid 3px rgb(228, 255, 254);
}
.header:before{
content: 'Gupack'; /*url(../images/cignacmb_logo.png);*/
display: block;
position: absolute;
left: 20px;
top: 11px;
}
.wrapper{
width: 100%;
padding: 10px;
}
/*login page*/
.login-main{
padding-top: 100px;
}
.login-main .form-group{
width: 100%;
margin: 10px auto;
width: 350px;
}
.login-main .form-group label{
display: block;
position: relative;
margin: 0 auto;
}
.login-main .form-group input{
display: block;
margin: 10px auto;
padding: 0 35px;
width: 350px;
height: 40px;
line-height: 40px;
border: solid rgba(216, 216, 216, 0.62) 1px;
box-shadow: 0 0 0 2px rgba(208, 208, 208, 0.12);
transition: all 0.1s ease-in-out;
}
.login-main .form-group input[type="submit"]{
width: 150px;
margin: 0;
color: white;
font-size: 1.2rem;
background-image:-webkit-linear-gradient(to bottom, #00E6E6 0, #00B3BC 100%);
background-image: linear-gradient(to bottom, #00E6E6 0, #00B3BC 100%);
}
.login-main .form-group input:focus{
border: solid #00BCB5 1px;
box-shadow: 0 0 1px 2px rgb(213, 255, 253);
}
.login-main .form-group input[type="submit"]:focus{
background-image:-webkit-linear-gradient(to bottom, #00E6E6 0, #00A1A9 100%);
background-image:linear-gradient(to bottom, #00E6E6 0, #00A1A9 100%);
}
.login-main .form-group label:before{
display: block;
width: 32px;
height: 32px;
font-family: icomoon;
position: absolute;
left: 3px;
font-size: 1.6rem;
color: #757575;
text-align: center;
}
.login-main .form-group label.name:before{
content: "\e901";
}
.login-main .form-group label.pwd:before{
content: "\e<PASSWORD>";
} | src/assets/css/app.css | * {
font-family: "Microsoft YaHei", Arial;
font-size: 14px;
margin:0;
padding:0;
outline: none;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-webkit-font-smoothing: antialiased;
}
html,body{
width: 100%;
height: 100%;
margin:0;
padding:0;
}
body {
line-height: 1.8;
position: relative;
}
.header{
display: block;
width: 100%;
height: 80px;
line-height: 80px;
background: #00BCB5;
position: relative;
font-size: 20px;
font-weight: normal;
color: #fff;
text-align: center;
border-bottom: solid 3px rgb(228, 255, 254);
}
.header:before{
content: 'Gupack'; /*url(../images/cignacmb_logo.png);*/
display: block;
position: absolute;
left: 20px;
top: 11px;
}
.wrapper{
width: 100%;
padding: 10px;
}
/*login page*/
.login-main{
padding-top: 100px;
}
.login-main .form-group{
width: 100%;
margin: 10px auto;
width: 350px;
}
.login-main .form-group label{
display: block;
position: relative;
margin: 0 auto;
}
.login-main .form-group input{
display: block;
margin: 10px auto;
padding: 0 35px;
width: 350px;
height: 40px;
line-height: 40px;
border: solid rgba(216, 216, 216, 0.62) 1px;
box-shadow: 0 0 0 2px rgba(208, 208, 208, 0.12);
transition: all 0.1s ease-in-out;
}
.login-main .form-group input[type="submit"]{
width: 150px;
margin: 0;
color: white;
font-size: 1.2rem;
background-image:-webkit-linear-gradient(to bottom, #00E6E6 0, #00B3BC 100%);
background-image: linear-gradient(to bottom, #00E6E6 0, #00B3BC 100%);
}
.login-main .form-group input:focus{
border: solid #00BCB5 1px;
box-shadow: 0 0 1px 2px rgb(213, 255, 253);
}
.login-main .form-group input[type="submit"]:focus{
background-image:-webkit-linear-gradient(to bottom, #00E6E6 0, #00A1A9 100%);
background-image:linear-gradient(to bottom, #00E6E6 0, #00A1A9 100%);
}
.login-main .form-group label:before{
display: block;
width: 32px;
height: 32px;
font-family: icomoon;
position: absolute;
left: 3px;
font-size: 1.6rem;
color: #757575;
text-align: center;
}
.login-main .form-group label.name:before{
content: "\e901";
}
.login-main .form-group label.pwd:before{
content: "\e<PASSWORD>";
} | 0.325199 | 0.088151 |
.phone-parallax-btn {
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
position: absolute;
top: 5vh;
right: 2vw;
background: none;
border: none;
font-size: 16px;
color: red;
z-index: 5;
outline: none;
font-family: 'Oswald', -apple-system, 'Segoe UI', Helvetica, sans-serif;
font-weight: 300;
padding: 1em;
}
section:not(.active) .phone-parallax-btn {
display: none;
}
@supports (animation-name: test) {
@keyframes open-hint {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: none;
opacity: 1;
}
}
.hero-image.l1 .phone-parallax-btn {
animation: open-hint 200ms ease-out;
}
@keyframes pulse {
60% {
transform: scale(1);
}
70% {
transform: scale(0.8);
}
80% {
transform: scale(1);
}
}
@keyframes pulse-before {
00% {
opacity: 0;
transform: scale(0.8);
}
65% {
opacity: 1;
transform: scale(0.8);
}
80% {
opacity: 0;
transform: scale(4);
}
100% {
opacity: 0;
transform: scale(0.6);
}
}
.phone-parallax-btn span {
height: 0.7em;
width: 0.7em;
margin-right: 1em;
position: relative;
border-radius: 50%;
background-color: rgba(255, 0, 0, 0.3);
animation: pulse 4s ease-in-out infinite;
}
.phone-parallax-btn span::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
border-radius: 50%;
background-color: rgba(255, 0, 0, 0.2);
animation: pulse-before 4s ease-in-out infinite;
}
}
#phone-parallax-overlay {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 10;
background-color: #fefefe;
transform: none;
transition: transform 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#phone-parallax-overlay.closed {
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
transform: translateY(100%) scaleY(0.5);
}
#ppo-close-btn {
position: fixed;
top: 40px;
right: 30px;
z-index: 14;
color: black;
font-family: 'Parisienne', Georgia, 'Times', 'Times New Roman', Times, serif;
font-weight: 600;
font-size: 20px;
text-shadow: 0 1px 8px white;
}
#phone-parallax-overlay .parallax {
overflow: hidden;
position: absolute;
height: 100%;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
#phone-parallax-overlay .parallax div {
height: 100%;
width: 120%;
position: absolute;
top: 0;
background-position: center;
background-size: cover;
will-change: transform;
}
#phone-parallax-overlay .parallax .l1 {
z-index: 13;
}
#phone-parallax-overlay .parallax .l2 {
z-index: 12;
}
#phone-parallax-overlay .parallax .l3 {
z-index: 11;
}
#phone-parallax-overlay.home .parallax .l1 {
background-image: url(../images/layered/img0-layer1.png);
}
#phone-parallax-overlay.home .parallax .l2 {
background-image: url(../images/layered/img0-layer2.png);
}
#phone-parallax-overlay.home .parallax .l3 {
background-image: url(../images/layered/img0-layer3.png);
}
#phone-parallax-overlay.obchody .parallax .l1 {
background-image: url(../images/layered/img1-layer1.png);
}
#phone-parallax-overlay.obchody .parallax .l2 {
background-image: url(../images/layered/img1-layer2.png);
}
#phone-parallax-overlay.obchody .parallax .l3 {
background-image: url(../images/layered/img1-layer3.png);
}
#phone-parallax-overlay.polonia .parallax .l1 {
background-image: url(../images/layered/img2-layer1.png);
}
#phone-parallax-overlay.polonia .parallax .l2 {
background-image: url(../images/layered/img2-layer2.png);
}
#phone-parallax-overlay.polonia .parallax .l3 {
background-image: url(../images/layered/img2-layer3.png);
}
#phone-parallax-overlay.historia .parallax .l1 {
background-image: url(../images/layered/img3-layer1.png);
}
#phone-parallax-overlay.historia .parallax .l2 {
background-image: url(../images/layered/img3-layer2.png);
}
#phone-parallax-overlay.historia .parallax .l3 {
background-image: url(../images/layered/img3-layer3.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l1 {
background-image: url(../images/layered/img4-layer1.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l2 {
background-image: url(../images/layered/img4-layer2.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l3 {
background-image: url(../images/layered/img4-layer3.png);
} | css/phone-parallax.css | .phone-parallax-btn {
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
position: absolute;
top: 5vh;
right: 2vw;
background: none;
border: none;
font-size: 16px;
color: red;
z-index: 5;
outline: none;
font-family: 'Oswald', -apple-system, 'Segoe UI', Helvetica, sans-serif;
font-weight: 300;
padding: 1em;
}
section:not(.active) .phone-parallax-btn {
display: none;
}
@supports (animation-name: test) {
@keyframes open-hint {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: none;
opacity: 1;
}
}
.hero-image.l1 .phone-parallax-btn {
animation: open-hint 200ms ease-out;
}
@keyframes pulse {
60% {
transform: scale(1);
}
70% {
transform: scale(0.8);
}
80% {
transform: scale(1);
}
}
@keyframes pulse-before {
00% {
opacity: 0;
transform: scale(0.8);
}
65% {
opacity: 1;
transform: scale(0.8);
}
80% {
opacity: 0;
transform: scale(4);
}
100% {
opacity: 0;
transform: scale(0.6);
}
}
.phone-parallax-btn span {
height: 0.7em;
width: 0.7em;
margin-right: 1em;
position: relative;
border-radius: 50%;
background-color: rgba(255, 0, 0, 0.3);
animation: pulse 4s ease-in-out infinite;
}
.phone-parallax-btn span::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
border-radius: 50%;
background-color: rgba(255, 0, 0, 0.2);
animation: pulse-before 4s ease-in-out infinite;
}
}
#phone-parallax-overlay {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 10;
background-color: #fefefe;
transform: none;
transition: transform 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#phone-parallax-overlay.closed {
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
transform: translateY(100%) scaleY(0.5);
}
#ppo-close-btn {
position: fixed;
top: 40px;
right: 30px;
z-index: 14;
color: black;
font-family: 'Parisienne', Georgia, 'Times', 'Times New Roman', Times, serif;
font-weight: 600;
font-size: 20px;
text-shadow: 0 1px 8px white;
}
#phone-parallax-overlay .parallax {
overflow: hidden;
position: absolute;
height: 100%;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
#phone-parallax-overlay .parallax div {
height: 100%;
width: 120%;
position: absolute;
top: 0;
background-position: center;
background-size: cover;
will-change: transform;
}
#phone-parallax-overlay .parallax .l1 {
z-index: 13;
}
#phone-parallax-overlay .parallax .l2 {
z-index: 12;
}
#phone-parallax-overlay .parallax .l3 {
z-index: 11;
}
#phone-parallax-overlay.home .parallax .l1 {
background-image: url(../images/layered/img0-layer1.png);
}
#phone-parallax-overlay.home .parallax .l2 {
background-image: url(../images/layered/img0-layer2.png);
}
#phone-parallax-overlay.home .parallax .l3 {
background-image: url(../images/layered/img0-layer3.png);
}
#phone-parallax-overlay.obchody .parallax .l1 {
background-image: url(../images/layered/img1-layer1.png);
}
#phone-parallax-overlay.obchody .parallax .l2 {
background-image: url(../images/layered/img1-layer2.png);
}
#phone-parallax-overlay.obchody .parallax .l3 {
background-image: url(../images/layered/img1-layer3.png);
}
#phone-parallax-overlay.polonia .parallax .l1 {
background-image: url(../images/layered/img2-layer1.png);
}
#phone-parallax-overlay.polonia .parallax .l2 {
background-image: url(../images/layered/img2-layer2.png);
}
#phone-parallax-overlay.polonia .parallax .l3 {
background-image: url(../images/layered/img2-layer3.png);
}
#phone-parallax-overlay.historia .parallax .l1 {
background-image: url(../images/layered/img3-layer1.png);
}
#phone-parallax-overlay.historia .parallax .l2 {
background-image: url(../images/layered/img3-layer2.png);
}
#phone-parallax-overlay.historia .parallax .l3 {
background-image: url(../images/layered/img3-layer3.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l1 {
background-image: url(../images/layered/img4-layer1.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l2 {
background-image: url(../images/layered/img4-layer2.png);
}
#phone-parallax-overlay.inne-kraje .parallax .l3 {
background-image: url(../images/layered/img4-layer3.png);
} | 0.368974 | 0.067608 |
/* Table Theme
/* --------------------------------------------------------- */
.dataListWrap { }
.dataList { font-size: 13px; width: 100% !important; border-bottom-color:#E9EAED !important; border-right: 1px solid rgba(0,0,0,0.1); }
.dataListHeader { background-color:#FFF; }
.dataListBody { background-color:#FFF; }
.dataListItemWrap { }
.dataListItem { background-color:#FFF; margin:2px 0; }
.dataListItem tr { }
.dataListItem tr + tr { border-top:1px solid #E9EAED; }
.dataListItem th,
.dataListItem td { padding: 8px !important; text-align:left; }
.dataItemDrag { padding-right: 0 !important; border-left:3px solid #9F9F9F !important; }
.dataItemDrag i { color:#CCC; display: inline-block; opacity:0; font-size: 14px; margin: 0 0 0 -3px; vertical-align: middle; }
.dataListHeader .dataListItem .dataItemDrag { border-left-color:#08A2EE !important; }
.dataListBody .dataListItem .dataItemDrag { }
.dataListHeader .dataListItem { }
.dataListHeader .dataListItem td,
.dataListHeader .dataListItem th { background-color:#fcfcfc; color:#08A2EE; border-top:1px solid #E9EAED; border-bottom:1px solid #E9EAED; }
.dataListHeader .dataListItem td,
.dataListHeader .dataListItem th { width: auto !important; font-weight:bold; padding-right: 26px !important; }
.dataListHeader .dataListItem td:after,
.dataListHeader .dataListItem th:after { bottom: 8px !important; }
.dataListHeader .dataListItem .dataItemDrag { width: 1px !important; padding-right: 8px !important; }
.dataListHeader .dataListItem:hover .dataItemDrag i,
.dataListHeader .dataListItem:focus .dataItemDrag i { opacity:1; color:#08A2EE; }
.dataListBody .dataListItem:hover,
.dataListBody .dataListItem:focus { background-color:#fcfcfc; }
.dataListBody .dataListItem:hover .dataItemDrag i,
.dataListBody .dataListItem:focus .dataItemDrag i { opacity:1; }
/* Table Theme :: Updated from Original
/* --------------------------------------------------------- */
.pagination > li > a,
.pagination > li > span { padding: 4px 12px; }
div.dataTables_wrapper div.dataTables_paginate,
div.dataTables_wrapper div.dataTables_paginate ul.pagination { line-height: 14px; }
div.dataTables_wrapper div.dataTables_paginate { margin-bottom: -3px; }
div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 0; }
div.dataTables_wrapper div.dataTables_paginate li.paginate_button { display: inline-block; overflow: hidden; }
div.dataTables_scrollBody { border-bottom: 2px solid #DDD; margin-bottom: 12px; }
div.dataTables_scrollBody table.dataTable { border: none; }
div.dataTables_scrollBody thead { }
div.dataTables_scrollBody thead tr,
div.dataTables_scrollBody thead th,
div.dataTables_scrollBody thead td { padding: 0 8px !important; }
/* Table Theme :: Impact Analysis Profile
/* --------------------------------------------------------- */
#TraceViewList_length,
#TraceViewList_info { display: inline; }
#TraceViewList_info { margin-left: 20px; }
td.TraceViewItemDrag { width: 10px; }
td.TraceViewItemCheck { width: 40px; text-align:center !important; }
td.TraceViewItemCheck label { margin: 0; padding-top: 2px; }
td.TraceViewItemName { padding-right: 30px !important; }
td.TraceViewItemType { padding-right: 30px !important; }
td.TraceViewItemAction { width:140px; text-align:center !important; }
td.TraceViewItemAction a,
td.TraceViewItemAction a + div + a { display: inline-block; width: 24px; height: 18px; }
td.TraceViewItemfixed-Size { table-layout: fixed; word-wrap: break-word; } | public/includes/elementview/DataTables-1.10.12/css/dataTables.custom.css | /* Table Theme
/* --------------------------------------------------------- */
.dataListWrap { }
.dataList { font-size: 13px; width: 100% !important; border-bottom-color:#E9EAED !important; border-right: 1px solid rgba(0,0,0,0.1); }
.dataListHeader { background-color:#FFF; }
.dataListBody { background-color:#FFF; }
.dataListItemWrap { }
.dataListItem { background-color:#FFF; margin:2px 0; }
.dataListItem tr { }
.dataListItem tr + tr { border-top:1px solid #E9EAED; }
.dataListItem th,
.dataListItem td { padding: 8px !important; text-align:left; }
.dataItemDrag { padding-right: 0 !important; border-left:3px solid #9F9F9F !important; }
.dataItemDrag i { color:#CCC; display: inline-block; opacity:0; font-size: 14px; margin: 0 0 0 -3px; vertical-align: middle; }
.dataListHeader .dataListItem .dataItemDrag { border-left-color:#08A2EE !important; }
.dataListBody .dataListItem .dataItemDrag { }
.dataListHeader .dataListItem { }
.dataListHeader .dataListItem td,
.dataListHeader .dataListItem th { background-color:#fcfcfc; color:#08A2EE; border-top:1px solid #E9EAED; border-bottom:1px solid #E9EAED; }
.dataListHeader .dataListItem td,
.dataListHeader .dataListItem th { width: auto !important; font-weight:bold; padding-right: 26px !important; }
.dataListHeader .dataListItem td:after,
.dataListHeader .dataListItem th:after { bottom: 8px !important; }
.dataListHeader .dataListItem .dataItemDrag { width: 1px !important; padding-right: 8px !important; }
.dataListHeader .dataListItem:hover .dataItemDrag i,
.dataListHeader .dataListItem:focus .dataItemDrag i { opacity:1; color:#08A2EE; }
.dataListBody .dataListItem:hover,
.dataListBody .dataListItem:focus { background-color:#fcfcfc; }
.dataListBody .dataListItem:hover .dataItemDrag i,
.dataListBody .dataListItem:focus .dataItemDrag i { opacity:1; }
/* Table Theme :: Updated from Original
/* --------------------------------------------------------- */
.pagination > li > a,
.pagination > li > span { padding: 4px 12px; }
div.dataTables_wrapper div.dataTables_paginate,
div.dataTables_wrapper div.dataTables_paginate ul.pagination { line-height: 14px; }
div.dataTables_wrapper div.dataTables_paginate { margin-bottom: -3px; }
div.dataTables_wrapper div.dataTables_paginate ul.pagination { margin: 0; }
div.dataTables_wrapper div.dataTables_paginate li.paginate_button { display: inline-block; overflow: hidden; }
div.dataTables_scrollBody { border-bottom: 2px solid #DDD; margin-bottom: 12px; }
div.dataTables_scrollBody table.dataTable { border: none; }
div.dataTables_scrollBody thead { }
div.dataTables_scrollBody thead tr,
div.dataTables_scrollBody thead th,
div.dataTables_scrollBody thead td { padding: 0 8px !important; }
/* Table Theme :: Impact Analysis Profile
/* --------------------------------------------------------- */
#TraceViewList_length,
#TraceViewList_info { display: inline; }
#TraceViewList_info { margin-left: 20px; }
td.TraceViewItemDrag { width: 10px; }
td.TraceViewItemCheck { width: 40px; text-align:center !important; }
td.TraceViewItemCheck label { margin: 0; padding-top: 2px; }
td.TraceViewItemName { padding-right: 30px !important; }
td.TraceViewItemType { padding-right: 30px !important; }
td.TraceViewItemAction { width:140px; text-align:center !important; }
td.TraceViewItemAction a,
td.TraceViewItemAction a + div + a { display: inline-block; width: 24px; height: 18px; }
td.TraceViewItemfixed-Size { table-layout: fixed; word-wrap: break-word; } | 0.369884 | 0.063337 |
body {
font: normal 11px "Trebuchet MS";
color: #111111;
margin: 10px 0px !important;
padding: 0px !important;
background: url(back.png);
}
input, select, textarea {
font: normal 11px "Trebuchet MS";
color: #111111;
}
/** Main Header Styles **/
header {
height: 119px;
width: 980px;
margin: 0px auto;
-moz-border-radius: 5px;
border-radius: 5px;
background: url(headerBack.png) repeat-x;
}
a.site-logo {
background: url(logo.png) no-repeat;
display: inline-block;
width: 183px;
height: 34px;
float: left;
margin: 20px;
}
.lower-header-content {
width: 980px;
margin: 15px auto 10px auto;
}
/** Top Menu Styles **/
.black-title-with-bullet, #product-module-a, #product-module-b {
display: none;
}
aside {
width: 980px;
position: absolute;
color: #333333;
left: 50%;
top: 97px;
margin-left: -480px;
}
aside ul {
padding: 0px;
margin: 0px;
display: inline;
float: left;
}
aside li {
list-style: none;
padding: 0px 25px;
color: #ffffff;
display: inline;
float: left;
}
aside li a, aside span a {
text-decoration: none !important;
padding: 5px 0px;
display: block;
color: #ffffff !important;
text-transform: uppercase;
font-weight: normal !important;
text-shadow: 1px 1px #000000;
}
aside li a:hover, aside span a:hover {
text-decoration: none !important;
padding: 5px 0px;
display: block;
text-transform: uppercase;
font-weight: normal !important;
color: #999999 !important;
text-shadow: 1px 1px #000000;
}
.text-center {
text-align: center;
font-size: 12px !important;
}
.text-solid {
font-size: 12px;
font-weight: bold;
padding: 10px 10px 10px 10px;
}
.menu-item {
padding: 1px 50px 0px 32px;
display: block;
height: 24px;
}
/** Hyperlink Styles **/
a:link, a:visited, a:active {
color: #d70000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/** Generic Table Styles **/
table {
width: 100%;
border-collapse: collapse;
}
tr:nth-of-type(even) {
background: #eee;
}
th {
background: #777777;
color: white;
font: bold 11px Tahoma;
padding: 5px 6px;
text-align: left;
}
td {
padding: 4px 6px;
border-bottom: 1px dotted #ccc;
text-align: left;
}
/** Main Content and Positioning Styles **/
h4 {
font: bold 11px Tahoma !important;
}
p {
line-height: 16px;
}
.width_quarter {
width: 25%;
margin-right: 0;
}
.width_3_quarter {
width: 72%;
margin-right: 0;
}
.left {
float: left;
}
.right {
float: right;
}
/** Footer Styles **/
.footer div.wrapper {
clear: both;
}
.footer div.content {
width: 980px;
margin: 0px auto;
text-align: center;
padding: 20px;
color: #666666;
}
/**Portlets and Title Styls**/
.portlet-blue, .portlet-black, .portlet-gray {
background-color: #ffffff;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0px 0px 3px #d3d3d3;
-webkit-box-shadow: 0px 0px 3px #d3d3d3;
box-shadow: 0px 0px 3px #d3d3d3;
}
.gray-title-with-bullet, .portlet-gray .title, .black-title-with-bullet, .portlet-black .title, .blue-title-with-bullet, .portlet-blue .title {
background-image: url(grayTitleBack.png);
background-repeat: repeat-x;
height: 40px;
margin-bottom: 18px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;
}
.gray-title-with-bullet span, .portlet-gray .title span, .black-title-with-bullet span, .portlet-black .title span, .blue-title-with-bullet span, .portlet-blue .title span {
display: block;
background-image: url(bullet1.png);
background-repeat: no-repeat;
background-position: 12px 18px;
color: #000000;
text-shadow: 1px 1px #ffffff;
font: bold 11px Tahoma;
text-transform: uppercase;
padding: 15px 8px 5px 25px;
}
.portlet-gray .content, .portlet-black .content, .portlet-blue .content {
padding: 0px 25px 15px 25px;
}
button{
background-image: url("btnBack.png");
background-repeat: repeat-x;
color: #ffffff;
text-shadow: 1px 1px #333333;
border: 1px solid #333333;
height: 24px;
font: normal 11px Tahoma;
text-transform: uppercase;
-moz-border-radius: 2px;
border-radius: 2px;
}
.portlet-blue .sub-title, .portlet-gray .sub-title, .portlet-black .sub-title {
margin-bottom: 15px;
margin-top: 10px;
font: bold 11px Tahoma;
}
/**Error Messages**/
.error {
display: inline-block;
background-image: url(errorDown.png);
background-repeat: no-repeat;
padding: 7px 6px 4px 9px;
color: #ffffff;
font: normal 11px "Trebuchet MS";
position: absolute;
}
/**form styles**/
.input-field {
padding-bottom: 5px;
}
.input-field span {
width: 150px;
display: inline-block;
}
/**List Styles**/
.horizontal-list {
margin: 30px 15px 0px 15px;
float: right;
}
.horizontal-list li {
float: left;
padding-right: 16px;
list-style: none;
}
.horizontal-list li:first-child {
color: #dea0a8;
}
.horizontal-list li a {
font-size: 11px;
text-decoration: none;
cursor: pointer;
color: #f1f1f1;
padding: 0px 4px;
display: block;
-moz-border-radius: 4px;
border-radius: 4px;
}
.horizontal-list li a:hover {
font-size: 11px;
text-decoration: none;
cursor: pointer;
color: #d70000;
background-color: #f1f1f1;
padding: 0px 4px;
display: block;
-moz-border-radius: 4px;
border-radius: 4px;
} | web+js/dem/app/modules/baseModule/theme/red/common.css | body {
font: normal 11px "Trebuchet MS";
color: #111111;
margin: 10px 0px !important;
padding: 0px !important;
background: url(back.png);
}
input, select, textarea {
font: normal 11px "Trebuchet MS";
color: #111111;
}
/** Main Header Styles **/
header {
height: 119px;
width: 980px;
margin: 0px auto;
-moz-border-radius: 5px;
border-radius: 5px;
background: url(headerBack.png) repeat-x;
}
a.site-logo {
background: url(logo.png) no-repeat;
display: inline-block;
width: 183px;
height: 34px;
float: left;
margin: 20px;
}
.lower-header-content {
width: 980px;
margin: 15px auto 10px auto;
}
/** Top Menu Styles **/
.black-title-with-bullet, #product-module-a, #product-module-b {
display: none;
}
aside {
width: 980px;
position: absolute;
color: #333333;
left: 50%;
top: 97px;
margin-left: -480px;
}
aside ul {
padding: 0px;
margin: 0px;
display: inline;
float: left;
}
aside li {
list-style: none;
padding: 0px 25px;
color: #ffffff;
display: inline;
float: left;
}
aside li a, aside span a {
text-decoration: none !important;
padding: 5px 0px;
display: block;
color: #ffffff !important;
text-transform: uppercase;
font-weight: normal !important;
text-shadow: 1px 1px #000000;
}
aside li a:hover, aside span a:hover {
text-decoration: none !important;
padding: 5px 0px;
display: block;
text-transform: uppercase;
font-weight: normal !important;
color: #999999 !important;
text-shadow: 1px 1px #000000;
}
.text-center {
text-align: center;
font-size: 12px !important;
}
.text-solid {
font-size: 12px;
font-weight: bold;
padding: 10px 10px 10px 10px;
}
.menu-item {
padding: 1px 50px 0px 32px;
display: block;
height: 24px;
}
/** Hyperlink Styles **/
a:link, a:visited, a:active {
color: #d70000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/** Generic Table Styles **/
table {
width: 100%;
border-collapse: collapse;
}
tr:nth-of-type(even) {
background: #eee;
}
th {
background: #777777;
color: white;
font: bold 11px Tahoma;
padding: 5px 6px;
text-align: left;
}
td {
padding: 4px 6px;
border-bottom: 1px dotted #ccc;
text-align: left;
}
/** Main Content and Positioning Styles **/
h4 {
font: bold 11px Tahoma !important;
}
p {
line-height: 16px;
}
.width_quarter {
width: 25%;
margin-right: 0;
}
.width_3_quarter {
width: 72%;
margin-right: 0;
}
.left {
float: left;
}
.right {
float: right;
}
/** Footer Styles **/
.footer div.wrapper {
clear: both;
}
.footer div.content {
width: 980px;
margin: 0px auto;
text-align: center;
padding: 20px;
color: #666666;
}
/**Portlets and Title Styls**/
.portlet-blue, .portlet-black, .portlet-gray {
background-color: #ffffff;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0px 0px 3px #d3d3d3;
-webkit-box-shadow: 0px 0px 3px #d3d3d3;
box-shadow: 0px 0px 3px #d3d3d3;
}
.gray-title-with-bullet, .portlet-gray .title, .black-title-with-bullet, .portlet-black .title, .blue-title-with-bullet, .portlet-blue .title {
background-image: url(grayTitleBack.png);
background-repeat: repeat-x;
height: 40px;
margin-bottom: 18px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;
}
.gray-title-with-bullet span, .portlet-gray .title span, .black-title-with-bullet span, .portlet-black .title span, .blue-title-with-bullet span, .portlet-blue .title span {
display: block;
background-image: url(bullet1.png);
background-repeat: no-repeat;
background-position: 12px 18px;
color: #000000;
text-shadow: 1px 1px #ffffff;
font: bold 11px Tahoma;
text-transform: uppercase;
padding: 15px 8px 5px 25px;
}
.portlet-gray .content, .portlet-black .content, .portlet-blue .content {
padding: 0px 25px 15px 25px;
}
button{
background-image: url("btnBack.png");
background-repeat: repeat-x;
color: #ffffff;
text-shadow: 1px 1px #333333;
border: 1px solid #333333;
height: 24px;
font: normal 11px Tahoma;
text-transform: uppercase;
-moz-border-radius: 2px;
border-radius: 2px;
}
.portlet-blue .sub-title, .portlet-gray .sub-title, .portlet-black .sub-title {
margin-bottom: 15px;
margin-top: 10px;
font: bold 11px Tahoma;
}
/**Error Messages**/
.error {
display: inline-block;
background-image: url(errorDown.png);
background-repeat: no-repeat;
padding: 7px 6px 4px 9px;
color: #ffffff;
font: normal 11px "Trebuchet MS";
position: absolute;
}
/**form styles**/
.input-field {
padding-bottom: 5px;
}
.input-field span {
width: 150px;
display: inline-block;
}
/**List Styles**/
.horizontal-list {
margin: 30px 15px 0px 15px;
float: right;
}
.horizontal-list li {
float: left;
padding-right: 16px;
list-style: none;
}
.horizontal-list li:first-child {
color: #dea0a8;
}
.horizontal-list li a {
font-size: 11px;
text-decoration: none;
cursor: pointer;
color: #f1f1f1;
padding: 0px 4px;
display: block;
-moz-border-radius: 4px;
border-radius: 4px;
}
.horizontal-list li a:hover {
font-size: 11px;
text-decoration: none;
cursor: pointer;
color: #d70000;
background-color: #f1f1f1;
padding: 0px 4px;
display: block;
-moz-border-radius: 4px;
border-radius: 4px;
} | 0.468547 | 0.175786 |
.mb-6, .my-6, .mb-8, .my-8, .mb-12, .my-12 {
margin-bottom: 1.5rem!important;
}
/* */
span.wizard {
width: 3em;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
margin-top: .5rem;
}
.important {
font-weight: bolder;
}
.btn-github {
color: #fff;
background-color: #4078c0;
border-color: #fff;
}
.btn-github:hover {
color: #fff;
background-color: #1b39c0;
border-color: #e6e6e6;
}
.btn-github:focus, .btn-github.focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-github.disabled, .btn-github:disabled {
color: #fff;
background-color: #2548c0;
border-color: #fff;
}
.btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
color: #fff;
background-color: #2d4373;
border-color: #dfdfdf;
}
.btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus,
.show > .btn-github.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-twitter {
color: #fff;
background-color: #1da1f2;
border-color: #fff;
}
.btn-twitter:hover {
color: #fff;
background-color: #0c7af2;
border-color: #e6e6e6;
}
.btn-twitter:focus, .btn-twitter.focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-twitter.disabled, .btn-twitter:disabled {
color: #fff;
background-color: #3b5998;
border-color: #fff;
}
.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
color: #fff;
background-color: #2d4373;
border-color: #dfdfdf;
}
.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus,
.show > .btn-twitter.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.badge-danger .badge-counter {
animation: bounce 0.7s ease infinite;
}
@keyframes bounce {
from {top: 1.55rem;}
50% {top: 0.55rem;}
to {top: 1.55rem;}
}
.flag-img-s {
max-height: 12px;
}
.input-like-text {
border: none;
display: inline;
font-family: inherit;
font-size: inherit;
background-color: transparent;
width: auto;
}
.bg-login-image {
background: url(../img/login.jpg) center;
background-size: cover;
}
.bg-register-image {
background: url(../img/register.jpg) center;
background-size: cover;
}
.form-control-error {
border-radius: 1rem;
font-size: smaller;
height: auto;
margin-bottom: 1rem;
} | static/css/main.css | .mb-6, .my-6, .mb-8, .my-8, .mb-12, .my-12 {
margin-bottom: 1.5rem!important;
}
/* */
span.wizard {
width: 3em;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
margin-top: .5rem;
}
.important {
font-weight: bolder;
}
.btn-github {
color: #fff;
background-color: #4078c0;
border-color: #fff;
}
.btn-github:hover {
color: #fff;
background-color: #1b39c0;
border-color: #e6e6e6;
}
.btn-github:focus, .btn-github.focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-github.disabled, .btn-github:disabled {
color: #fff;
background-color: #2548c0;
border-color: #fff;
}
.btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
color: #fff;
background-color: #2d4373;
border-color: #dfdfdf;
}
.btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus,
.show > .btn-github.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-twitter {
color: #fff;
background-color: #1da1f2;
border-color: #fff;
}
.btn-twitter:hover {
color: #fff;
background-color: #0c7af2;
border-color: #e6e6e6;
}
.btn-twitter:focus, .btn-twitter.focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-twitter.disabled, .btn-twitter:disabled {
color: #fff;
background-color: #3b5998;
border-color: #fff;
}
.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
color: #fff;
background-color: #2d4373;
border-color: #dfdfdf;
}
.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus,
.show > .btn-twitter.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.badge-danger .badge-counter {
animation: bounce 0.7s ease infinite;
}
@keyframes bounce {
from {top: 1.55rem;}
50% {top: 0.55rem;}
to {top: 1.55rem;}
}
.flag-img-s {
max-height: 12px;
}
.input-like-text {
border: none;
display: inline;
font-family: inherit;
font-size: inherit;
background-color: transparent;
width: auto;
}
.bg-login-image {
background: url(../img/login.jpg) center;
background-size: cover;
}
.bg-register-image {
background: url(../img/register.jpg) center;
background-size: cover;
}
.form-control-error {
border-radius: 1rem;
font-size: smaller;
height: auto;
margin-bottom: 1rem;
} | 0.253122 | 0.057998 |
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Arial", "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
line-height: 1.5;
text-align: justify;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.App {
width: 100%;
min-height: 100vh;
text-align: center;
position: relative;
}
.main-content {
width: 100%;
}
.magazine-header {
height: 60px;
width: 100%;
background-color: white;
box-shadow: 0 0 4px 0 rgba(55,69,77,.5);
z-index: 10;
transition: top .4s ease;
position: relative;
}
.container-wide {
height: 100%;
max-width: 1120px;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
padding: 0 20px;
margin-bottom: 0;
}
.fixed-header {
height: 100%;
max-width: 962px;
margin: 0 auto;
text-align: center;
position: relative;
padding: 4px 20px 5px;
}
.magazine-header .logo {
height: 28px;
position: absolute;
top: 30%;
left: 40%;
}
@media screen and (max-width: 767px) {
.magazine-header {
height: 54px;
}
.magazine-header .logo {
height: 24px;
left: 26%;
}
}
.banner-image {
position: relative;
}
.banner-image img {
width: 100%;
height: 550px;
}
.banner-image p {
position: absolute;
bottom: 32px;
left: 64px;
color: white;
font-size: 44px;
text-transform: uppercase;
font-weight: 500;
}
@media screen and (max-width: 767px) {
.banner-image img {
height: 200px;
}
.banner-image p {
font-size: 24px;
left: 32px;
bottom: 12px;
}
}
.trivago-post-wrapper {
}
.trivago-post-wrapper:hover, .trivago-post-wrapper:hover > * {
text-decoration: none;
}
.trivago-post {
height: 470px;
box-shadow: 0 1px 4px 0 rgba(55,69,77,.5);
margin-top: 16px;
border-radius: 4px;
padding: 8px;
transition: all .5s;
}
.trivago-post:hover {
box-shadow: 0 6px 10px 0 rgba(55,69,77,.5);
}
.trivago-post img {
height: 270px;
}
.trivago-post h2 {
font-size: 20px;
line-height: 25px;
color: #111111;
font-weight: 700;
font-style: normal;
margin-top: 8px;
margin-bottom: 8px;
}
.trivago-post .excerpt {
font-size: 16px;
color: #697379;
text-align: justify;
}
@media screen and (max-width: 767px) {
.trivago-post img {
height: 204px;
}
.trivago-post {
height: 440px;
}
.trivago-post h2 {
font-size: 16px;
color: #303030;
}
}
.post-title {
font-size: 44px;
line-height: 1.25;
font-weight: 700;
color: #303030;
}
.post-content {
font-size: 20px;
line-height: 30px;
color: #303030;
font-weight: 400;
text-align: justify;
}
@media screen and (max-width: 767px) {
.post-title {
font-size: 32px;
font-weight: 700;
text-align: justify;
}
.post-content {
font-size: 16px;
}
}
footer.footer {
width: 100%;
height: 200px;
background-color: #2D373C;
padding: 16px;
margin-top: 16px;
bottom: 0;
}
footer .footer-logo {
position: absolute;
bottom: 36px;
left: 43%;
}
@media screen and (max-width: 767px) {
footer.footer {
height: 100px;
}
footer .footer-logo {
bottom: 24px;
left: 27%;
}
} | src/styles/index.css | body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Arial", "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
line-height: 1.5;
text-align: justify;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.App {
width: 100%;
min-height: 100vh;
text-align: center;
position: relative;
}
.main-content {
width: 100%;
}
.magazine-header {
height: 60px;
width: 100%;
background-color: white;
box-shadow: 0 0 4px 0 rgba(55,69,77,.5);
z-index: 10;
transition: top .4s ease;
position: relative;
}
.container-wide {
height: 100%;
max-width: 1120px;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
padding: 0 20px;
margin-bottom: 0;
}
.fixed-header {
height: 100%;
max-width: 962px;
margin: 0 auto;
text-align: center;
position: relative;
padding: 4px 20px 5px;
}
.magazine-header .logo {
height: 28px;
position: absolute;
top: 30%;
left: 40%;
}
@media screen and (max-width: 767px) {
.magazine-header {
height: 54px;
}
.magazine-header .logo {
height: 24px;
left: 26%;
}
}
.banner-image {
position: relative;
}
.banner-image img {
width: 100%;
height: 550px;
}
.banner-image p {
position: absolute;
bottom: 32px;
left: 64px;
color: white;
font-size: 44px;
text-transform: uppercase;
font-weight: 500;
}
@media screen and (max-width: 767px) {
.banner-image img {
height: 200px;
}
.banner-image p {
font-size: 24px;
left: 32px;
bottom: 12px;
}
}
.trivago-post-wrapper {
}
.trivago-post-wrapper:hover, .trivago-post-wrapper:hover > * {
text-decoration: none;
}
.trivago-post {
height: 470px;
box-shadow: 0 1px 4px 0 rgba(55,69,77,.5);
margin-top: 16px;
border-radius: 4px;
padding: 8px;
transition: all .5s;
}
.trivago-post:hover {
box-shadow: 0 6px 10px 0 rgba(55,69,77,.5);
}
.trivago-post img {
height: 270px;
}
.trivago-post h2 {
font-size: 20px;
line-height: 25px;
color: #111111;
font-weight: 700;
font-style: normal;
margin-top: 8px;
margin-bottom: 8px;
}
.trivago-post .excerpt {
font-size: 16px;
color: #697379;
text-align: justify;
}
@media screen and (max-width: 767px) {
.trivago-post img {
height: 204px;
}
.trivago-post {
height: 440px;
}
.trivago-post h2 {
font-size: 16px;
color: #303030;
}
}
.post-title {
font-size: 44px;
line-height: 1.25;
font-weight: 700;
color: #303030;
}
.post-content {
font-size: 20px;
line-height: 30px;
color: #303030;
font-weight: 400;
text-align: justify;
}
@media screen and (max-width: 767px) {
.post-title {
font-size: 32px;
font-weight: 700;
text-align: justify;
}
.post-content {
font-size: 16px;
}
}
footer.footer {
width: 100%;
height: 200px;
background-color: #2D373C;
padding: 16px;
margin-top: 16px;
bottom: 0;
}
footer .footer-logo {
position: absolute;
bottom: 36px;
left: 43%;
}
@media screen and (max-width: 767px) {
footer.footer {
height: 100px;
}
footer .footer-logo {
bottom: 24px;
left: 27%;
}
} | 0.514156 | 0.108472 |
font-size:15px;
}
.pl table {
table-layout: fixed;
width: 100%;
}
.pl .dt {
width: 100%;
}
.plm {
vertical-align: bottom !important;
}
.plc, .pls {
vertical-align: top;
}
.plc {
padding: 0 20px;
}
.pls {
width: 160px;
background: #E5EDF2;
overflow: hidden;
border-right: 1px solid #C2D5E3;
}
.pls .favatar {
background: transparent;
height: auto;
border-width: 0px;
overflow: visible;
}
.avatar1{
margin:0 0 10px 20px;
}
.pls p, .pls .pil, .pls .o {
margin: 5px 10px 5px 20px;
}
.pls p em, .pls dt em {
color: #F26C4F;
}
.ie6 .pls dd img, .ie7 .pls dd img {
margin-top: 2px;
width: expression(this.width > 65 ? 65:true);
}
.ad .pls {
background: #C2D5E3;
padding: 0;
height: 4px;
}
.ad .plc {
background: #E5EDF2;
padding: 0;
overflow: hidden;
}
.pl .pnv .pls {
background: #E5EDF2;
border: solid #C2D5E3;
border-width: 0 1px 1px 0;
line-height: 16px;
}
.pl .pnv .tns p {
font-size: 12px;
}
.pl .pnv .plc {
border-bottom: 1px solid #C2D5E3;
}
.pnh {
padding: 11px 20px;
}
.tnv {
text-align: center;
vertical-align: middle;
}
#threadstamp {
position: relative;
width: 100%;
height: 0;
overflow: visible;
}
#threadstamp img {
position: absolute;
top: -20px;
right: 170px;
}
#pl_top .ad .pls, #pl_top .ad .plc {
height: 1px;
overflow: hidden;
}
#pl_top .pls {
text-indent: 15px;
}
.pi {
overflow: hidden;
margin-bottom: 10px;
padding: 10px 0;
height: 16px;
border-bottom: 1px dashed #CDCDCD;
}
.pi strong a {
float: right;
margin-top: -6px;
padding: 4px 6px;
border: 1px solid #FFF;
font-weight: 400;
}
.pi strong a:hover {
border-color: #CDCDCD;
}
.pls .pi {
padding-left: 15px;
}
.t_f, .t_f td {
font-size: 14px;
}
.plhin:hover .hin {
opacity: 1;
}
.pob {
line-height: 36px;
}
.pob em {
float: left;
}
.pob em a {
padding: 5px 10px 5px 25px;
}
.fastre {
background: url(http://localhost/ershou/tp5/public/static/home/img/fastreply.gif) no-repeat 0 50%;
}
.editp {
background: url(http://localhost/ershou/tp5/public/static/home/img/edit.gif) no-repeat 4px 50%;
} | public/static/home/css/forum_2.css | font-size:15px;
}
.pl table {
table-layout: fixed;
width: 100%;
}
.pl .dt {
width: 100%;
}
.plm {
vertical-align: bottom !important;
}
.plc, .pls {
vertical-align: top;
}
.plc {
padding: 0 20px;
}
.pls {
width: 160px;
background: #E5EDF2;
overflow: hidden;
border-right: 1px solid #C2D5E3;
}
.pls .favatar {
background: transparent;
height: auto;
border-width: 0px;
overflow: visible;
}
.avatar1{
margin:0 0 10px 20px;
}
.pls p, .pls .pil, .pls .o {
margin: 5px 10px 5px 20px;
}
.pls p em, .pls dt em {
color: #F26C4F;
}
.ie6 .pls dd img, .ie7 .pls dd img {
margin-top: 2px;
width: expression(this.width > 65 ? 65:true);
}
.ad .pls {
background: #C2D5E3;
padding: 0;
height: 4px;
}
.ad .plc {
background: #E5EDF2;
padding: 0;
overflow: hidden;
}
.pl .pnv .pls {
background: #E5EDF2;
border: solid #C2D5E3;
border-width: 0 1px 1px 0;
line-height: 16px;
}
.pl .pnv .tns p {
font-size: 12px;
}
.pl .pnv .plc {
border-bottom: 1px solid #C2D5E3;
}
.pnh {
padding: 11px 20px;
}
.tnv {
text-align: center;
vertical-align: middle;
}
#threadstamp {
position: relative;
width: 100%;
height: 0;
overflow: visible;
}
#threadstamp img {
position: absolute;
top: -20px;
right: 170px;
}
#pl_top .ad .pls, #pl_top .ad .plc {
height: 1px;
overflow: hidden;
}
#pl_top .pls {
text-indent: 15px;
}
.pi {
overflow: hidden;
margin-bottom: 10px;
padding: 10px 0;
height: 16px;
border-bottom: 1px dashed #CDCDCD;
}
.pi strong a {
float: right;
margin-top: -6px;
padding: 4px 6px;
border: 1px solid #FFF;
font-weight: 400;
}
.pi strong a:hover {
border-color: #CDCDCD;
}
.pls .pi {
padding-left: 15px;
}
.t_f, .t_f td {
font-size: 14px;
}
.plhin:hover .hin {
opacity: 1;
}
.pob {
line-height: 36px;
}
.pob em {
float: left;
}
.pob em a {
padding: 5px 10px 5px 25px;
}
.fastre {
background: url(http://localhost/ershou/tp5/public/static/home/img/fastreply.gif) no-repeat 0 50%;
}
.editp {
background: url(http://localhost/ershou/tp5/public/static/home/img/edit.gif) no-repeat 4px 50%;
} | 0.491212 | 0.175326 |
Make the font larger too.*/
body{
margin:1%;
padding:1%;
font-size:150%;
font-family: 'PT Sans', Arial, Helvetica, sans-serif;
line-height: 1.25;
background: url("../images/background.jpeg") #f1f1f1;
}
/*Make the h1 heading bigger with a bold font*/
h1{
font-size: 2em;
font-weight: bold;
font-family: 'PT Sans', Arial, Helvetica, sans-serif;
}
.active {
background: white;
font-weight: bold;
text-align: center;
transform: rotate(-0.02turn);
box-shadow: 5px 5px 10px 2px rgba(221, 193, 99, 0.596);
}
.active a{
text-decoration: none;
}
/* visited link */
a:visited {
color: #0000FF;
}
/* mouse over link */
a:hover {
color: brown;
}
/* selected link */
a:active {
color: #0000FF;
}
/*Style the images*/
img{
height: 400px;
width: auto;
/*width: 200px;
*/
max-width: 60%;
border: 3px solid blue;
padding: 25px;
border-radius: 10px;
margin: 10px;
object-fit: cover;
/* position:relative; */
/* position:absolute; */
display: block;
margin-left: auto;
margin-right: auto;
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: swinging 4.5s ease-in-out forwards infinite;
animation: swinging 4.5s ease-in-out forwards infinite;
}
img:hover {
animation-play-state: paused;
}
@keyframes swinging {
0% {
transform: rotate(10deg);
}
50% {
transform: rotate(-10deg);
}
100% {
transform: rotate(10deg);
}
}
/*Make the h2 heading match h1*/
h2{
font-size: 1.5em;
}
/*Improve the spacing for paragraphs AND headings*/
p, h1, h2 {
padding: 10px;
}
/*Add borders around the main components and some
space too*/
header, main, nav, h1, footer{
border: 0px solid grey;
margin: 10px 0;
}
#gallery-main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
/* align-items: center; */
justify-content: center;
padding: 10px;
}
#gallery-main img{
border: solid 5px rgba(0, 0, 255, 0.363);
margin: 8px;
width: 300px;
padding: 5px;
align-self:center;
}
/*Change the styling for all of the list
items in the nav section*/
nav li{
background-color: #a777ff;
padding:10px;
border:1px solid rgb(185, 172, 112);
display: inline-block;
width: 22%;
border-radius: 30px;
text-align:center;
}
/*Added this so the links stay the same color*/
/* a:visited{color:#0000FF} */
a.skip-link {
background-color: #8b4dff;
border:1px solid rgb(185, 172, 112);
padding:10px;
color: white;
font-weight: 700;
display: inline-block;
position: absolute;
top: -50px;
font-size: 20px;
/* transform: translateY(-100%);
transition: transform 0.3s; */
}
.skip-link:focus {
top:20px;
}
@media screen and (prefers-reduced-motion: reduce){
img{
animation:none;
}
} | css/style-future.css | Make the font larger too.*/
body{
margin:1%;
padding:1%;
font-size:150%;
font-family: 'PT Sans', Arial, Helvetica, sans-serif;
line-height: 1.25;
background: url("../images/background.jpeg") #f1f1f1;
}
/*Make the h1 heading bigger with a bold font*/
h1{
font-size: 2em;
font-weight: bold;
font-family: 'PT Sans', Arial, Helvetica, sans-serif;
}
.active {
background: white;
font-weight: bold;
text-align: center;
transform: rotate(-0.02turn);
box-shadow: 5px 5px 10px 2px rgba(221, 193, 99, 0.596);
}
.active a{
text-decoration: none;
}
/* visited link */
a:visited {
color: #0000FF;
}
/* mouse over link */
a:hover {
color: brown;
}
/* selected link */
a:active {
color: #0000FF;
}
/*Style the images*/
img{
height: 400px;
width: auto;
/*width: 200px;
*/
max-width: 60%;
border: 3px solid blue;
padding: 25px;
border-radius: 10px;
margin: 10px;
object-fit: cover;
/* position:relative; */
/* position:absolute; */
display: block;
margin-left: auto;
margin-right: auto;
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: swinging 4.5s ease-in-out forwards infinite;
animation: swinging 4.5s ease-in-out forwards infinite;
}
img:hover {
animation-play-state: paused;
}
@keyframes swinging {
0% {
transform: rotate(10deg);
}
50% {
transform: rotate(-10deg);
}
100% {
transform: rotate(10deg);
}
}
/*Make the h2 heading match h1*/
h2{
font-size: 1.5em;
}
/*Improve the spacing for paragraphs AND headings*/
p, h1, h2 {
padding: 10px;
}
/*Add borders around the main components and some
space too*/
header, main, nav, h1, footer{
border: 0px solid grey;
margin: 10px 0;
}
#gallery-main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
/* align-items: center; */
justify-content: center;
padding: 10px;
}
#gallery-main img{
border: solid 5px rgba(0, 0, 255, 0.363);
margin: 8px;
width: 300px;
padding: 5px;
align-self:center;
}
/*Change the styling for all of the list
items in the nav section*/
nav li{
background-color: #a777ff;
padding:10px;
border:1px solid rgb(185, 172, 112);
display: inline-block;
width: 22%;
border-radius: 30px;
text-align:center;
}
/*Added this so the links stay the same color*/
/* a:visited{color:#0000FF} */
a.skip-link {
background-color: #8b4dff;
border:1px solid rgb(185, 172, 112);
padding:10px;
color: white;
font-weight: 700;
display: inline-block;
position: absolute;
top: -50px;
font-size: 20px;
/* transform: translateY(-100%);
transition: transform 0.3s; */
}
.skip-link:focus {
top:20px;
}
@media screen and (prefers-reduced-motion: reduce){
img{
animation:none;
}
} | 0.256832 | 0.113949 |
body {background-color: #eff0f2}
hr {
margin-top: 40px;
margin-bottom: 40px;
border-top: 2px dashed #bdc3c7;
}
.mt20 {margin-top: 20px}
.mb20 {margin-bottom: 20px}
.text-silent {
color: #bdc3c7;
font-weight: 300;
}
.terminal {
margin-top: 20px;
height: 400px;
padding: 20px;
overflow-y: auto;
font-size: 13px;
text-transform: none;
}
.terminal .cmd {
font-weight: bold;
margin: 30px 0 15px 0;
color: #ffeea9;
}
.terminal .success {
font-weight: bold;
margin: 30px 0 15px 0;
color: #1ABC9C;
font-size: 30px;
}
.terminal .error {
font-weight: bold;
margin: 30px 0 15px 0;
color: #ff6d5e;
font-size: 20px;
}
.terminal .response {padding-left: 20px}
.table > thead > tr > th {border-bottom: 1px solid #ddd}
.pagination {background: #bdc3c7}
.modal-body {background-color: #eff0f2}
.schema-item {margin-bottom: 20px}
.entity-item {padding: 15px}
.pull-right .pagination {margin-top: 0px}
.search-container {
position: relative;
margin-right: 12px;
}
.entity-search {
position: absolute;
top: -1px;
right: 0;
width: 355px;
z-index: 1;
}
.attribute-form, .relationship-form {
display: inline-block;
text-align: center;
}
.breadcrumb .table-hover > tbody > tr:hover {
background-color: #eff0f2;
}
a {cursor: pointer}
th {font-weight: 500}
/*removes modal fade animation*/
.modal.fade {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.field-relationship-reversed {min-height: 70px}
.form-control[readonly] {
background-color: #eff0f2;
color: #3A4971;
}
.palette-custom-asphalt {
background-color: #6f849a;
}
.modal-backdrop {
background-color: #ffffff;
}
/* .modal-fullscreen */
/* source:http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-transparent-and-fullscreen-modals */
.modal-fullscreen {
background: transparent;
}
.modal-fullscreen .modal-content {
background: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.modal-fullscreen .modal-body {background: transparent;}
.modal-backdrop.modal-backdrop-fullscreen {
background: #eff0f2;
}
.modal-backdrop.modal-backdrop-fullscreen.in {
opacity: 1;
filter: alpha(opacity=1);
}
.modal-fullscreen .modal-dialog {
margin: 0;
margin-right: auto;
margin-left: auto;
width: 100%;
}
@media (min-width: 768px) {
.modal-fullscreen .modal-dialog {
width: 750px;
}
}
@media (min-width: 992px) {
.modal-fullscreen .modal-dialog {
width: 970px;
}
}
@media (min-width: 1200px) {
.modal-fullscreen .modal-dialog {
width: 1170px;
}
} | vendor/tunecino/yii2-schema-builder/assets/main.css | body {background-color: #eff0f2}
hr {
margin-top: 40px;
margin-bottom: 40px;
border-top: 2px dashed #bdc3c7;
}
.mt20 {margin-top: 20px}
.mb20 {margin-bottom: 20px}
.text-silent {
color: #bdc3c7;
font-weight: 300;
}
.terminal {
margin-top: 20px;
height: 400px;
padding: 20px;
overflow-y: auto;
font-size: 13px;
text-transform: none;
}
.terminal .cmd {
font-weight: bold;
margin: 30px 0 15px 0;
color: #ffeea9;
}
.terminal .success {
font-weight: bold;
margin: 30px 0 15px 0;
color: #1ABC9C;
font-size: 30px;
}
.terminal .error {
font-weight: bold;
margin: 30px 0 15px 0;
color: #ff6d5e;
font-size: 20px;
}
.terminal .response {padding-left: 20px}
.table > thead > tr > th {border-bottom: 1px solid #ddd}
.pagination {background: #bdc3c7}
.modal-body {background-color: #eff0f2}
.schema-item {margin-bottom: 20px}
.entity-item {padding: 15px}
.pull-right .pagination {margin-top: 0px}
.search-container {
position: relative;
margin-right: 12px;
}
.entity-search {
position: absolute;
top: -1px;
right: 0;
width: 355px;
z-index: 1;
}
.attribute-form, .relationship-form {
display: inline-block;
text-align: center;
}
.breadcrumb .table-hover > tbody > tr:hover {
background-color: #eff0f2;
}
a {cursor: pointer}
th {font-weight: 500}
/*removes modal fade animation*/
.modal.fade {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.field-relationship-reversed {min-height: 70px}
.form-control[readonly] {
background-color: #eff0f2;
color: #3A4971;
}
.palette-custom-asphalt {
background-color: #6f849a;
}
.modal-backdrop {
background-color: #ffffff;
}
/* .modal-fullscreen */
/* source:http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-transparent-and-fullscreen-modals */
.modal-fullscreen {
background: transparent;
}
.modal-fullscreen .modal-content {
background: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.modal-fullscreen .modal-body {background: transparent;}
.modal-backdrop.modal-backdrop-fullscreen {
background: #eff0f2;
}
.modal-backdrop.modal-backdrop-fullscreen.in {
opacity: 1;
filter: alpha(opacity=1);
}
.modal-fullscreen .modal-dialog {
margin: 0;
margin-right: auto;
margin-left: auto;
width: 100%;
}
@media (min-width: 768px) {
.modal-fullscreen .modal-dialog {
width: 750px;
}
}
@media (min-width: 992px) {
.modal-fullscreen .modal-dialog {
width: 970px;
}
}
@media (min-width: 1200px) {
.modal-fullscreen .modal-dialog {
width: 1170px;
}
} | 0.399226 | 0.07843 |
.background_linen2,
.hover_background_linen2:hover,
.active_background_linen2:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(238, 204, 170)), color-stop(100%, rgb(224, 163, 102)));
background-image: -webkit-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -o-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -ms-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: linear-gradient(to bottom, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeccaa', endColorstr='#e0a366',GradientType=0 );
}
.background_linen2h,
.hover_background_linen2h:hover,
.active_background_linen2h:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(252, 245, 238)), color-stop(100%, rgb(235, 196, 156)));
background-image: -webkit-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -o-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -ms-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: linear-gradient(to bottom, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcf5ee', endColorstr='#ebc49c',GradientType=0 );
}
.background_linen2a,
.hover_background_linen2a:hover,
.active_background_linen2a:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(235, 196, 156)), color-stop(100%, rgb(252, 245, 238)));
background-image: -webkit-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -o-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -ms-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: linear-gradient(to bottom, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebc49c', endColorstr='#fcf5ee',GradientType=0 );
}
.background_linen2s,
.hover_background_linen2s:hover,
.active_background_linen2s:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(252, 245, 238)));
background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcf5ee',GradientType=0 );
}
.background_color_linen2,
.hover_background_color_linen2:hover,
.active_background_color_linen2:active:hover {
background-color:#e0a366;
}
.background_first_color_linen2,
.hover_background_first_color_linen2:hover,
.active_background_first_color_linen2:active:hover {
background-color:#eeccaa;
}
.background_last_color_linen2,
.hover_background_last_color_linen2:hover,
.active_background_color_last_linen2:active:hover {
background-color:#e0a366;
}
/* ------------------------------ color settings -------------------------------*/
.color_linen2,
.hover_color_linen2:hover,
.active_color_linen2:active:hover {
color: #282828;
}
.color_linen2h,
.hover_color_linen2h:hover,
.active_color_linen2h:active:hover {
color: #282828;
}
.color_linen2a,
.hover_color_linen2a:hover,
.active_color_linen2a:active:hover {
color: #ff0;
}
.color_linen2s,
.hover_color_linen2s:hover,
.active_color_linen2s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_linen2,
.hover_border_linen2:hover,
.active_border_linen2:active:hover {
border-color: #e0a366 #e0a366 #e0a366 #e0a366;
}
.border_linen2h,
.hover_border_linen2h:hover,
.active_border_linen2h:active:hover {
border-color: #db934b #db934b #db934b #db934b;
}
.border_linen2a,
.hover_border_linen2a:hover,
.active_border_linen2a:active:hover {
border-color: #d68330 #d68330 #d68330 #d68330;
}
.border_linen2s,
.hover_border_linen2s:hover,
.active_border_linen2s:active:hover {
border-color: #fcf5ee #fcf5ee #fcf5ee #fcf5ee;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_linen2,
.hover_shadow_expand_linen2:hover,
.active_shadow_expand_linen2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
}
.shadow_expand_linen2h,
.hover_shadow_expand_linen2h:hover,
.active_shadow_expand_linen2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
}
.shadow_expand_linen2a,
.hover_shadow_expand_linen2a:hover,
.active_shadow_expand_linen2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
}
.shadow_expand_linen2s,
.hover_shadow_expand_linen2s:hover,
.active_shadow_expand_linen2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_linen2,
.hover_shadow_left_linen2:hover,
.active_shadow_left_linen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_left_linen2h,
.hover_shadow_left_linen2h:hover,
.active_shadow_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_left_linen2a,
.hover_shadow_left_linen2a:hover,
.active_shadow_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_left_linen2s,
.hover_shadow_left_linen2s:hover,
.active_shadow_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_linen2,
.hover_shadow_right_linen2:hover,
.active_shadow_right_linen2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
}
.shadow_right_linen2h,
.hover_shadow_right_linen2h:hover,
.active_shadow_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
}
.shadow_right_linen2a,
.hover_shadow_right_linen2a:hover,
.active_shadow_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
}
.shadow_right_linen2s,
.hover_shadow_right_linen2s:hover,
.active_shadow_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_linen2,
.hover_shadow_top_linen2:hover,
.active_shadow_top_linen2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_linen2h,
.hover_shadow_top_linen2h:hover,
.active_shadow_top_linen2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_linen2a,
.hover_shadow_top_linen2a:hover,
.active_shadow_top_linen2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_linen2s,
.hover_shadow_top_linen2s:hover,
.active_shadow_top_linen2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_linen2,
.hover_shadow_bottom_linen2:hover,
.active_shadow_bottom_linen2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_linen2h,
.hover_shadow_bottom_linen2h:hover,
.active_shadow_bottom_linen2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_linen2a,
.hover_shadow_bottom_linen2a:hover,
.active_shadow_bottom_linen2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_linen2s,
.hover_shadow_bottom_linen2s:hover,
.active_shadow_bottom_linen2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_linen2,
.hover_shadow_top_left_linen2:hover,
.active_shadow_top_left_linen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_left_linen2h,
.hover_shadow_top_left_linen2h:hover,
.active_shadow_top_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_left_linen2a,
.hover_shadow_top_left_linen2a:hover,
.active_shadow_top_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_left_linen2s,
.hover_shadow_top_left_linen2s:hover,
.active_shadow_top_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_linen2,
.hover_shadow_top_right_linen2:hover,
.active_shadow_top_right_linen2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_right_linen2h,
.hover_shadow_top_right_linen2h:hover,
.active_shadow_top_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_right_linen2a,
.hover_shadow_top_right_linen2a:hover,
.active_shadow_top_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_right_linen2s,
.hover_shadow_top_right_linen2s:hover,
.active_shadow_top_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_linen2,
.hover_shadow_bottom_left_linen2:hover,
.active_shadow_bottom_left_linen2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_left_linen2h,
.hover_shadow_bottom_left_linen2h:hover,
.active_shadow_bottom_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_left_linen2a,
.hover_shadow_bottom_left_linen2a:hover,
.active_shadow_bottom_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_left_linen2s,
.hover_shadow_bottom_left_linen2s:hover,
.active_shadow_bottom_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_linen2,
.hover_shadow_bottom_right_linen2:hover,
.active_shadow_bottom_right_linen2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_right_linen2h,
.hover_shadow_bottom_right_linen2h:hover,
.active_shadow_bottom_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_right_linen2a,
.hover_shadow_bottom_right_linen2a:hover,
.active_shadow_bottom_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_right_linen2s,
.hover_shadow_bottom_right_linen2s:hover,
.active_shadow_bottom_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
} | widgets/common/assets/gradients/simple/linen/linen2.css | .background_linen2,
.hover_background_linen2:hover,
.active_background_linen2:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(238, 204, 170)), color-stop(100%, rgb(224, 163, 102)));
background-image: -webkit-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -o-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: -ms-linear-gradient(top, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
background-image: linear-gradient(to bottom, rgb(238, 204, 170) 0%, rgb(224, 163, 102) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeccaa', endColorstr='#e0a366',GradientType=0 );
}
.background_linen2h,
.hover_background_linen2h:hover,
.active_background_linen2h:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(252, 245, 238)), color-stop(100%, rgb(235, 196, 156)));
background-image: -webkit-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -o-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: -ms-linear-gradient(top, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
background-image: linear-gradient(to bottom, rgb(252, 245, 238) 0%, rgb(235, 196, 156) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcf5ee', endColorstr='#ebc49c',GradientType=0 );
}
.background_linen2a,
.hover_background_linen2a:hover,
.active_background_linen2a:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(235, 196, 156)), color-stop(100%, rgb(252, 245, 238)));
background-image: -webkit-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -o-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: -ms-linear-gradient(top, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
background-image: linear-gradient(to bottom, rgb(235, 196, 156) 0%, rgb(252, 245, 238) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebc49c', endColorstr='#fcf5ee',GradientType=0 );
}
.background_linen2s,
.hover_background_linen2s:hover,
.active_background_linen2s:active:hover {
background: #e0a366;
background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(252, 245, 238)));
background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(252, 245, 238) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcf5ee',GradientType=0 );
}
.background_color_linen2,
.hover_background_color_linen2:hover,
.active_background_color_linen2:active:hover {
background-color:#e0a366;
}
.background_first_color_linen2,
.hover_background_first_color_linen2:hover,
.active_background_first_color_linen2:active:hover {
background-color:#eeccaa;
}
.background_last_color_linen2,
.hover_background_last_color_linen2:hover,
.active_background_color_last_linen2:active:hover {
background-color:#e0a366;
}
/* ------------------------------ color settings -------------------------------*/
.color_linen2,
.hover_color_linen2:hover,
.active_color_linen2:active:hover {
color: #282828;
}
.color_linen2h,
.hover_color_linen2h:hover,
.active_color_linen2h:active:hover {
color: #282828;
}
.color_linen2a,
.hover_color_linen2a:hover,
.active_color_linen2a:active:hover {
color: #ff0;
}
.color_linen2s,
.hover_color_linen2s:hover,
.active_color_linen2s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_linen2,
.hover_border_linen2:hover,
.active_border_linen2:active:hover {
border-color: #e0a366 #e0a366 #e0a366 #e0a366;
}
.border_linen2h,
.hover_border_linen2h:hover,
.active_border_linen2h:active:hover {
border-color: #db934b #db934b #db934b #db934b;
}
.border_linen2a,
.hover_border_linen2a:hover,
.active_border_linen2a:active:hover {
border-color: #d68330 #d68330 #d68330 #d68330;
}
.border_linen2s,
.hover_border_linen2s:hover,
.active_border_linen2s:active:hover {
border-color: #fcf5ee #fcf5ee #fcf5ee #fcf5ee;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_linen2,
.hover_shadow_expand_linen2:hover,
.active_shadow_expand_linen2:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
box-shadow: 0em 0em 1em 0.25em rgba(224, 163, 102, .39);
}
.shadow_expand_linen2h,
.hover_shadow_expand_linen2h:hover,
.active_shadow_expand_linen2h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
box-shadow: 0em 0em 1em 0.25em rgba(235, 196, 156, .50);
}
.shadow_expand_linen2a,
.hover_shadow_expand_linen2a:hover,
.active_shadow_expand_linen2a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .63);
}
.shadow_expand_linen2s,
.hover_shadow_expand_linen2s:hover,
.active_shadow_expand_linen2s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
box-shadow: 0em 0em 1em 0.25em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_linen2,
.hover_shadow_left_linen2:hover,
.active_shadow_left_linen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_left_linen2h,
.hover_shadow_left_linen2h:hover,
.active_shadow_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_left_linen2a,
.hover_shadow_left_linen2a:hover,
.active_shadow_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_left_linen2s,
.hover_shadow_left_linen2s:hover,
.active_shadow_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_linen2,
.hover_shadow_right_linen2:hover,
.active_shadow_right_linen2:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em 0em 1em rgba(224, 163, 102, .39);
}
.shadow_right_linen2h,
.hover_shadow_right_linen2h:hover,
.active_shadow_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em 0em 1em rgba(235, 196, 156, .50);
}
.shadow_right_linen2a,
.hover_shadow_right_linen2a:hover,
.active_shadow_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .63);
}
.shadow_right_linen2s,
.hover_shadow_right_linen2s:hover,
.active_shadow_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em 0em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_linen2,
.hover_shadow_top_linen2:hover,
.active_shadow_top_linen2:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_linen2h,
.hover_shadow_top_linen2h:hover,
.active_shadow_top_linen2h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_linen2a,
.hover_shadow_top_linen2a:hover,
.active_shadow_top_linen2a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_linen2s,
.hover_shadow_top_linen2s:hover,
.active_shadow_top_linen2s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_linen2,
.hover_shadow_bottom_linen2:hover,
.active_shadow_bottom_linen2:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_linen2h,
.hover_shadow_bottom_linen2h:hover,
.active_shadow_bottom_linen2h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_linen2a,
.hover_shadow_bottom_linen2a:hover,
.active_shadow_bottom_linen2a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_linen2s,
.hover_shadow_bottom_linen2s:hover,
.active_shadow_bottom_linen2s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0em 0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_linen2,
.hover_shadow_top_left_linen2:hover,
.active_shadow_top_left_linen2:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_left_linen2h,
.hover_shadow_top_left_linen2h:hover,
.active_shadow_top_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_left_linen2a,
.hover_shadow_top_left_linen2a:hover,
.active_shadow_top_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_left_linen2s,
.hover_shadow_top_left_linen2s:hover,
.active_shadow_top_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_linen2,
.hover_shadow_top_right_linen2:hover,
.active_shadow_top_right_linen2:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em -0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_top_right_linen2h,
.hover_shadow_top_right_linen2h:hover,
.active_shadow_top_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em -0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_top_right_linen2a,
.hover_shadow_top_right_linen2a:hover,
.active_shadow_top_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_top_right_linen2s,
.hover_shadow_top_right_linen2s:hover,
.active_shadow_top_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em -0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_linen2,
.hover_shadow_bottom_left_linen2:hover,
.active_shadow_bottom_left_linen2:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: -0.5em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_left_linen2h,
.hover_shadow_bottom_left_linen2h:hover,
.active_shadow_bottom_left_linen2h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: -0.5em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_left_linen2a,
.hover_shadow_bottom_left_linen2a:hover,
.active_shadow_bottom_left_linen2a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_left_linen2s,
.hover_shadow_bottom_left_linen2s:hover,
.active_shadow_bottom_left_linen2s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: -0.5em 0.5em 1em rgba(252, 245, 238, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_linen2,
.hover_shadow_bottom_right_linen2:hover,
.active_shadow_bottom_right_linen2:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
box-shadow: 0.5em 0.5em 1em rgba(224, 163, 102, .39);
}
.shadow_bottom_right_linen2h,
.hover_shadow_bottom_right_linen2h:hover,
.active_shadow_bottom_right_linen2h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
box-shadow: 0.5em 0.5em 1em rgba(235, 196, 156, .50);
}
.shadow_bottom_right_linen2a,
.hover_shadow_bottom_right_linen2a:hover,
.active_shadow_bottom_right_linen2a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .63);
}
.shadow_bottom_right_linen2s,
.hover_shadow_bottom_right_linen2s:hover,
.active_shadow_bottom_right_linen2s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
box-shadow: 0.5em 0.5em 1em rgba(252, 245, 238, .78);
} | 0.476823 | 0.132066 |
.head {
background-color: #12d5b5;
height: 1.06666667rem;
line-height: 1.06666667rem;
padding: 0 7px;
}
.head .text {
color: #fff;
}
.head .custom {
background-color: #feae11;
color: #fff;
border-color: #feae11;
border-style: dashed;
float: right;
margin-top: 0.26666667rem;
padding-left: 0.66666667rem;
padding-right: 0.66666667rem;
}
.head .back-btn {
font-size: 0.53333333rem;
width: 1rem;
left: 0rem;
}
.footer {
border-top: #d4d4d4;
padding: 0;
margin: 0;
position: fixed;
bottom: 0;
height: 40px;
line-height: 40px;
left: 0;
right: 0;
font-size: 0;
}
.footer li {
font-size: 20px;
width: 33.333%;
color: #9f9e9e;
}
.footer li.select {
background-color: #dbf9f4;
color: #01c2a3;
}
.footer .icon-document {
background: url(../image/document.png) no-repeat center center;
width: 25px;
height: 25px;
}
.footer .icon-search {
background: url(../image/search.png) no-repeat center center;
width: 25px;
height: 25px;
}
.footer .icon-my {
background: url(../image/my.png) no-repeat center center;
width: 25px;
height: 25px;
}
.position-list {
margin: 0;
padding: 0;
}
.position-list .item {
margin: 0 0;
padding: 7px 3px;
list-style: none;
border-bottom: 1px solid #ddd;
}
.position-list .item .logo {
width: 1.73333333rem;
height: 1.73333333rem;
margin-right: 13px;
}
.position-list .item .title {
margin: 0;
}
.position-list .item .desc {
margin: 0;
}
.position-list .item .icon {
width: 0.8rem;
height: 0.74666667rem;
right: 0;
top: 50%;
margin-top: -0.37333333rem;
margin-right: 0.32rem;
}
.position-list .item .star {
background: url(../image/star.png) no-repeat center center;
}
.position-list .item .star-active {
background: url(../image/star-active.png) no-repeat center center;
}
/** common */
/* The starting CSS styles for the enter animation */
.ng-enter {
transition: 0.5s linear all;
opacity: 0;
}
/* The finishing CSS styles for the enter animation */
.ng-enter.ng-enter-active {
opacity: 1;
}
.bg-w {
background-color: #fff;
}
.c-w {
color: #fff;
}
.c-r {
color: red;
}
.f-r {
float: right;
}
.f-l {
float: left;
}
.clear {
clear: both;
}
.d-ib {
display: inline-block;
}
.d-b {
display: block;
}
.d-n {
display: none;
}
.p-a {
position: absolute;
}
.p-r {
position: relative;
}
.ta-l {
text-align: left;
}
.ta-c {
text-align: center;
}
.ta-r {
text-align: right;
}
.va-t {
vertical-align: top;
}
.va-m {
vertical-align: middle;
}
.va-b {
vertical-align: bottom;
}
/** 简历投递按钮 */
.bottom-btn {
position: fixed;
height: 1.06666667rem;
width: 100%;
bottom: 0rem;
left: 0rem;
right: 0rem;
color: #fff;
border-width: 0;
background-color: #12d5b5;
}
/** 工作列表 */
.job {
margin-top: 10px;
}
.job .title {
font-size: 0.42666667rem;
padding-left: 10px;
border-bottom: 1px solid #ccc;
height: 1.06666667rem;
line-height: 1.06666667rem;
}
.job .desc {
padding: 10px 0 10px 10px;
margin-left: 0;
}
/** job */
.company-info {
padding: 20px 15px 13px 85px;
}
.company-info .logo {
width: 1.6rem;
height: 1.6rem;
left: 15px;
bottom: 10px;
}
.company-info p {
padding-top: 0;
}
.position-claz {
background-color: #fff;
border-top: 1px solid #d4d4d4;
padding: 13px 9px 5px 9px;
}
.position-claz .job-title {
padding: 0 0 35px 0;
}
.position-claz .category {
background-color: #def8f5;
border-radius: 20px;
padding: 10px 23px;
margin-right: 11px;
}
.position-claz .category.active {
background-color: #12d5b5;
color: #fff;
}
.position-claz .job-list {
border-top: 1px solid #d4d4d4;
margin: 5px 0 0 0;
padding: 0;
}
.position-claz .job-list .salary {
color: red;
right: 10px;
top: 15px;
}
.position-claz .job-list .job-item {
padding: 10px 0;
}
.position-claz .job-list .job-info {
height: 26px;
line-height: 26px;
}
/** 职位信息 */
.position-info {
border-bottom: 1px solid #ccc;
padding: 26px 10px 18px 10px;
}
.position-info .ml {
margin-left: 20px;
}
.position-info .star {
right: 24px;
top: 40px;
}
/** index */
.search-bar {
background-color: #12d5b5;
height: 40px;
line-height: 40px;
padding: 0 7px;
position: fixed;
left: 0;
right: 0;
top: 0;
width: 100%;
}
.search-bar .search-btn {
background-color: #12d5b5;
height: 40px;
line-height: 40px;
}
.search-bar .search-btn.search-cancel {
width: 13%;
color: #fff;
}
.search-bar .search-btn.search-go {
width: 17%;
color: #9f9e9e;
}
.search-bar .search-btn.search-go-icon {
height: 30px;
width: 30px;
transform: scale(0.6);
}
.search-bar .search-input {
height: 30px;
width: 70%;
vertical-align: middle;
display: inline-block;
border-radius: 15px;
border-style: none;
/** 消除浏览器默认边框*/
outline-style: none;
/** 不显示浏览器默认轮廓*/
padding-left: 20px;
/** 左内边距*/
position: relative;
/** 居中*/
top: 5px;
}
.search-bar-replace {
height: 80px;
}
.tab {
position: fixed;
top: 40px;
left: 0;
right: 0;
background-color: #f7f7f7;
font-size: 0;
/** 消除inline-block默认边距问题*/
}
.tab .tab-item {
font-size: 0.37333333rem;
height: 40px;
line-height: 40px;
width: 33.33%;
text-align: center;
}
.tab .tab-item.active {
border-bottom: 2px solid #12d5b5;
}
.sheet {
position: fixed;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
z-index: 99;
}
.sheet .sheet-wrap {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 100;
padding: 8px;
}
.sheet .sheet-wrap .sheet-items {
max-height: 500px;
overflow-y: scroll;
border-radius: 5px;
margin-bottom: 8px;
}
.sheet .sheet-wrap .sheet-items .sheet-btn {
border-bottom: 1px solid #d4d4d4;
}
.sheet .sheet-wrap .sheet-btn,
.sheet .sheet-wrap .sheet-cancel {
height: 1.33333333rem;
line-height: 1.33333333rem;
font-size: 0.42666667rem;
width: 100%;
background-color: #f1f2f3;
color: #1063e5;
}
/** user */
.login {
background-image: url('../../image/background.png');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.login form {
margin-top: 6.93333333rem;
}
.login form .form-line,
.login form button {
margin-left: auto;
margin-right: auto;
}
.login form .ng-invalid + span {
background-color: transparent;
position: absolute;
color: red;
right: 0;
height: 100%;
font-size: 12px;
}
.login form .form-line {
width: 8rem;
height: 1.06666667rem;
line-height: 1.06666667rem;
color: #fff;
box-sizing: content-box;
font-size: 0;
}
.login form .form-line:first-child {
border-bottom: 1px solid #fff;
}
.login form .form-line .account,
.login form .form-line .lock {
width: 23px;
height: 24px;
width: 1.46666667rem;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
position: relative;
margin-top: -11px;
background-position: 15px 8px;
background-repeat: no-repeat;
}
.login form .form-line .account {
background-image: url('../../image/account.png');
}
.login form .form-line .lock {
background-image: url('../../image/lock.png');
}
.login form .form-line input {
color: #fff;
text-indent: 15px;
background-color: rgba(0, 0, 0, 0.2);
border-width: 0;
outline: none;
height: 100%;
width: 6.53333333rem;
font-size: 0.37333333rem;
box-sizing: border-box;
}
.login form .form-line input::-webkit-input-placeholder {
color: #fff;
text-indent: 15px;
}
.login form .form-line input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #fff;
text-indent: 15px;
}
.login form .form-line input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #fff;
text-indent: 15px;
}
.login form .form-line input:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #fff;
text-indent: 15px;
}
.login form button {
width: 8rem;
height: 0.93333333rem;
font-weight: bold;
font-size: 22px;
}
.login form button.login-btn {
margin-top: 75px;
background-color: #12d5b5;
color: #fff;
}
.login form button.register-btn {
margin-top: 20px;
background-color: rgba(18, 213, 181, 0.2);
color: #12d5b5;
border: 1px solid #12d5b5;
}
.register {
background-image: url('../../image/background.png');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.register form {
margin-top: 1.46666667rem;
}
.register form .form-line,
.register form button {
margin-left: auto;
margin-right: auto;
}
.register form .ng-invalid + span {
background-color: transparent;
position: absolute;
color: red;
right: 0;
height: 100%;
font-size: 12px;
}
.register form .form-line {
width: 8rem;
height: 1.06666667rem;
line-height: 1.06666667rem;
color: #fff;
box-sizing: content-box;
font-size: 0;
}
.register form .form-line:first-child {
border-bottom: 1px solid #fff;
}
.register form .form-line .account,
.register form .form-line .lock {
width: 23px;
height: 24px;
width: 1.46666667rem;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
position: relative;
margin-top: -11px;
background-position: 15px 8px;
background-repeat: no-repeat;
}
.register form .form-line .account {
background-image: url('../../image/account.png');
}
.register form .form-line .lock {
background-image: url('../../image/lock.png');
}
.register form .form-line input {
color: #fff;
text-indent: 15px;
background-color: rgba(0, 0, 0, 0.2);
border-width: 0;
outline: none;
height: 100%;
width: 6.53333333rem;
font-size: 0.37333333rem;
box-sizing: border-box;
}
.register form .form-line input::-webkit-input-placeholder {
color: #fff;
text-indent: 15px;
}
.register form .form-line input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #fff;
text-indent: 15px;
}
.register form .form-line input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #fff;
text-indent: 15px;
}
.register form .form-line input:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #fff;
text-indent: 15px;
}
.register form .send-wrap {
margin: 60px auto;
}
.register form .send-wrap .code-wrap {
margin-right: 20px;
position: relative;
display: inline;
}
.register form .send-wrap .code-wrap input {
width: 5.33333333rem;
height: 100%;
}
.register form .send-wrap .code-wrap span {
margin-top: .45rem;
}
.register form .send-wrap .send {
width: 2.13333333rem;
font-size: 0.42666667rem;
}
.register form .send-wrap .send.disabled {
color: #d4d4d4;
border-color: #d4d4d4;
}
.register form button {
width: 8rem;
height: 0.93333333rem;
font-weight: bold;
font-size: 22px;
}
.register form button.login-btn {
margin-top: 75px;
background-color: #12d5b5;
color: #fff;
}
.register form button.register-btn {
margin-top: 20px;
background-color: rgba(18, 213, 181, 0.2);
color: #12d5b5;
border: 1px solid #12d5b5;
}
.person .user {
margin-top: 1.6rem;
margin-left: auto;
margin-right: auto;
}
.person .name {
margin-top: 0.53333333rem;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.person .btns {
margin-top: 1.06666667rem;
}
.person .btns button {
color: #fff;
font-size: 0.42666667rem;
}
.person .btns .blue-btn {
background-color: #12d5b5;
width: 4rem;
height: 2.53333333rem;
}
.person .btns .blue-btn:first-child {
margin-right: 0.32rem;
}
.person .btns .blue-btn:nth-child(2) {
margin-left: 0.32rem;
}
.person .btns .red-btn {
background-color: red;
margin-top: 0.53333333rem;
width: 9.06666667rem;
height: 1.06666667rem;
}
.person .btns .login-btn {
background-color: #12d5b5;
margin-top: 4rem;
width: 9.06666667rem;
height: 1.06666667rem;
}
.post {
margin-top: 40px;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
font-size: 0.42666667rem;
background-color: #eee;
}
@media screen and (min-width: 1024px) {
.pc {
position: relative;
width: 640px;
margin-left: auto;
margin-right: auto;
}
.pc .footer,
.pc .search-bar,
.pc .tab,
.pc .bottom-btn,
.pc .sheet-wrap {
max-width: 640px;
margin: 0 auto;
}
}
button {
outline-width: 0;
border-width: 0;
}
ul {
list-style-type: none;
} | build/css/index.css | .head {
background-color: #12d5b5;
height: 1.06666667rem;
line-height: 1.06666667rem;
padding: 0 7px;
}
.head .text {
color: #fff;
}
.head .custom {
background-color: #feae11;
color: #fff;
border-color: #feae11;
border-style: dashed;
float: right;
margin-top: 0.26666667rem;
padding-left: 0.66666667rem;
padding-right: 0.66666667rem;
}
.head .back-btn {
font-size: 0.53333333rem;
width: 1rem;
left: 0rem;
}
.footer {
border-top: #d4d4d4;
padding: 0;
margin: 0;
position: fixed;
bottom: 0;
height: 40px;
line-height: 40px;
left: 0;
right: 0;
font-size: 0;
}
.footer li {
font-size: 20px;
width: 33.333%;
color: #9f9e9e;
}
.footer li.select {
background-color: #dbf9f4;
color: #01c2a3;
}
.footer .icon-document {
background: url(../image/document.png) no-repeat center center;
width: 25px;
height: 25px;
}
.footer .icon-search {
background: url(../image/search.png) no-repeat center center;
width: 25px;
height: 25px;
}
.footer .icon-my {
background: url(../image/my.png) no-repeat center center;
width: 25px;
height: 25px;
}
.position-list {
margin: 0;
padding: 0;
}
.position-list .item {
margin: 0 0;
padding: 7px 3px;
list-style: none;
border-bottom: 1px solid #ddd;
}
.position-list .item .logo {
width: 1.73333333rem;
height: 1.73333333rem;
margin-right: 13px;
}
.position-list .item .title {
margin: 0;
}
.position-list .item .desc {
margin: 0;
}
.position-list .item .icon {
width: 0.8rem;
height: 0.74666667rem;
right: 0;
top: 50%;
margin-top: -0.37333333rem;
margin-right: 0.32rem;
}
.position-list .item .star {
background: url(../image/star.png) no-repeat center center;
}
.position-list .item .star-active {
background: url(../image/star-active.png) no-repeat center center;
}
/** common */
/* The starting CSS styles for the enter animation */
.ng-enter {
transition: 0.5s linear all;
opacity: 0;
}
/* The finishing CSS styles for the enter animation */
.ng-enter.ng-enter-active {
opacity: 1;
}
.bg-w {
background-color: #fff;
}
.c-w {
color: #fff;
}
.c-r {
color: red;
}
.f-r {
float: right;
}
.f-l {
float: left;
}
.clear {
clear: both;
}
.d-ib {
display: inline-block;
}
.d-b {
display: block;
}
.d-n {
display: none;
}
.p-a {
position: absolute;
}
.p-r {
position: relative;
}
.ta-l {
text-align: left;
}
.ta-c {
text-align: center;
}
.ta-r {
text-align: right;
}
.va-t {
vertical-align: top;
}
.va-m {
vertical-align: middle;
}
.va-b {
vertical-align: bottom;
}
/** 简历投递按钮 */
.bottom-btn {
position: fixed;
height: 1.06666667rem;
width: 100%;
bottom: 0rem;
left: 0rem;
right: 0rem;
color: #fff;
border-width: 0;
background-color: #12d5b5;
}
/** 工作列表 */
.job {
margin-top: 10px;
}
.job .title {
font-size: 0.42666667rem;
padding-left: 10px;
border-bottom: 1px solid #ccc;
height: 1.06666667rem;
line-height: 1.06666667rem;
}
.job .desc {
padding: 10px 0 10px 10px;
margin-left: 0;
}
/** job */
.company-info {
padding: 20px 15px 13px 85px;
}
.company-info .logo {
width: 1.6rem;
height: 1.6rem;
left: 15px;
bottom: 10px;
}
.company-info p {
padding-top: 0;
}
.position-claz {
background-color: #fff;
border-top: 1px solid #d4d4d4;
padding: 13px 9px 5px 9px;
}
.position-claz .job-title {
padding: 0 0 35px 0;
}
.position-claz .category {
background-color: #def8f5;
border-radius: 20px;
padding: 10px 23px;
margin-right: 11px;
}
.position-claz .category.active {
background-color: #12d5b5;
color: #fff;
}
.position-claz .job-list {
border-top: 1px solid #d4d4d4;
margin: 5px 0 0 0;
padding: 0;
}
.position-claz .job-list .salary {
color: red;
right: 10px;
top: 15px;
}
.position-claz .job-list .job-item {
padding: 10px 0;
}
.position-claz .job-list .job-info {
height: 26px;
line-height: 26px;
}
/** 职位信息 */
.position-info {
border-bottom: 1px solid #ccc;
padding: 26px 10px 18px 10px;
}
.position-info .ml {
margin-left: 20px;
}
.position-info .star {
right: 24px;
top: 40px;
}
/** index */
.search-bar {
background-color: #12d5b5;
height: 40px;
line-height: 40px;
padding: 0 7px;
position: fixed;
left: 0;
right: 0;
top: 0;
width: 100%;
}
.search-bar .search-btn {
background-color: #12d5b5;
height: 40px;
line-height: 40px;
}
.search-bar .search-btn.search-cancel {
width: 13%;
color: #fff;
}
.search-bar .search-btn.search-go {
width: 17%;
color: #9f9e9e;
}
.search-bar .search-btn.search-go-icon {
height: 30px;
width: 30px;
transform: scale(0.6);
}
.search-bar .search-input {
height: 30px;
width: 70%;
vertical-align: middle;
display: inline-block;
border-radius: 15px;
border-style: none;
/** 消除浏览器默认边框*/
outline-style: none;
/** 不显示浏览器默认轮廓*/
padding-left: 20px;
/** 左内边距*/
position: relative;
/** 居中*/
top: 5px;
}
.search-bar-replace {
height: 80px;
}
.tab {
position: fixed;
top: 40px;
left: 0;
right: 0;
background-color: #f7f7f7;
font-size: 0;
/** 消除inline-block默认边距问题*/
}
.tab .tab-item {
font-size: 0.37333333rem;
height: 40px;
line-height: 40px;
width: 33.33%;
text-align: center;
}
.tab .tab-item.active {
border-bottom: 2px solid #12d5b5;
}
.sheet {
position: fixed;
left: 0;
right: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
z-index: 99;
}
.sheet .sheet-wrap {
width: 100%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 100;
padding: 8px;
}
.sheet .sheet-wrap .sheet-items {
max-height: 500px;
overflow-y: scroll;
border-radius: 5px;
margin-bottom: 8px;
}
.sheet .sheet-wrap .sheet-items .sheet-btn {
border-bottom: 1px solid #d4d4d4;
}
.sheet .sheet-wrap .sheet-btn,
.sheet .sheet-wrap .sheet-cancel {
height: 1.33333333rem;
line-height: 1.33333333rem;
font-size: 0.42666667rem;
width: 100%;
background-color: #f1f2f3;
color: #1063e5;
}
/** user */
.login {
background-image: url('../../image/background.png');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.login form {
margin-top: 6.93333333rem;
}
.login form .form-line,
.login form button {
margin-left: auto;
margin-right: auto;
}
.login form .ng-invalid + span {
background-color: transparent;
position: absolute;
color: red;
right: 0;
height: 100%;
font-size: 12px;
}
.login form .form-line {
width: 8rem;
height: 1.06666667rem;
line-height: 1.06666667rem;
color: #fff;
box-sizing: content-box;
font-size: 0;
}
.login form .form-line:first-child {
border-bottom: 1px solid #fff;
}
.login form .form-line .account,
.login form .form-line .lock {
width: 23px;
height: 24px;
width: 1.46666667rem;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
position: relative;
margin-top: -11px;
background-position: 15px 8px;
background-repeat: no-repeat;
}
.login form .form-line .account {
background-image: url('../../image/account.png');
}
.login form .form-line .lock {
background-image: url('../../image/lock.png');
}
.login form .form-line input {
color: #fff;
text-indent: 15px;
background-color: rgba(0, 0, 0, 0.2);
border-width: 0;
outline: none;
height: 100%;
width: 6.53333333rem;
font-size: 0.37333333rem;
box-sizing: border-box;
}
.login form .form-line input::-webkit-input-placeholder {
color: #fff;
text-indent: 15px;
}
.login form .form-line input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #fff;
text-indent: 15px;
}
.login form .form-line input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #fff;
text-indent: 15px;
}
.login form .form-line input:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #fff;
text-indent: 15px;
}
.login form button {
width: 8rem;
height: 0.93333333rem;
font-weight: bold;
font-size: 22px;
}
.login form button.login-btn {
margin-top: 75px;
background-color: #12d5b5;
color: #fff;
}
.login form button.register-btn {
margin-top: 20px;
background-color: rgba(18, 213, 181, 0.2);
color: #12d5b5;
border: 1px solid #12d5b5;
}
.register {
background-image: url('../../image/background.png');
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
}
.register form {
margin-top: 1.46666667rem;
}
.register form .form-line,
.register form button {
margin-left: auto;
margin-right: auto;
}
.register form .ng-invalid + span {
background-color: transparent;
position: absolute;
color: red;
right: 0;
height: 100%;
font-size: 12px;
}
.register form .form-line {
width: 8rem;
height: 1.06666667rem;
line-height: 1.06666667rem;
color: #fff;
box-sizing: content-box;
font-size: 0;
}
.register form .form-line:first-child {
border-bottom: 1px solid #fff;
}
.register form .form-line .account,
.register form .form-line .lock {
width: 23px;
height: 24px;
width: 1.46666667rem;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
position: relative;
margin-top: -11px;
background-position: 15px 8px;
background-repeat: no-repeat;
}
.register form .form-line .account {
background-image: url('../../image/account.png');
}
.register form .form-line .lock {
background-image: url('../../image/lock.png');
}
.register form .form-line input {
color: #fff;
text-indent: 15px;
background-color: rgba(0, 0, 0, 0.2);
border-width: 0;
outline: none;
height: 100%;
width: 6.53333333rem;
font-size: 0.37333333rem;
box-sizing: border-box;
}
.register form .form-line input::-webkit-input-placeholder {
color: #fff;
text-indent: 15px;
}
.register form .form-line input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #fff;
text-indent: 15px;
}
.register form .form-line input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #fff;
text-indent: 15px;
}
.register form .form-line input:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #fff;
text-indent: 15px;
}
.register form .send-wrap {
margin: 60px auto;
}
.register form .send-wrap .code-wrap {
margin-right: 20px;
position: relative;
display: inline;
}
.register form .send-wrap .code-wrap input {
width: 5.33333333rem;
height: 100%;
}
.register form .send-wrap .code-wrap span {
margin-top: .45rem;
}
.register form .send-wrap .send {
width: 2.13333333rem;
font-size: 0.42666667rem;
}
.register form .send-wrap .send.disabled {
color: #d4d4d4;
border-color: #d4d4d4;
}
.register form button {
width: 8rem;
height: 0.93333333rem;
font-weight: bold;
font-size: 22px;
}
.register form button.login-btn {
margin-top: 75px;
background-color: #12d5b5;
color: #fff;
}
.register form button.register-btn {
margin-top: 20px;
background-color: rgba(18, 213, 181, 0.2);
color: #12d5b5;
border: 1px solid #12d5b5;
}
.person .user {
margin-top: 1.6rem;
margin-left: auto;
margin-right: auto;
}
.person .name {
margin-top: 0.53333333rem;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.person .btns {
margin-top: 1.06666667rem;
}
.person .btns button {
color: #fff;
font-size: 0.42666667rem;
}
.person .btns .blue-btn {
background-color: #12d5b5;
width: 4rem;
height: 2.53333333rem;
}
.person .btns .blue-btn:first-child {
margin-right: 0.32rem;
}
.person .btns .blue-btn:nth-child(2) {
margin-left: 0.32rem;
}
.person .btns .red-btn {
background-color: red;
margin-top: 0.53333333rem;
width: 9.06666667rem;
height: 1.06666667rem;
}
.person .btns .login-btn {
background-color: #12d5b5;
margin-top: 4rem;
width: 9.06666667rem;
height: 1.06666667rem;
}
.post {
margin-top: 40px;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
font-size: 0.42666667rem;
background-color: #eee;
}
@media screen and (min-width: 1024px) {
.pc {
position: relative;
width: 640px;
margin-left: auto;
margin-right: auto;
}
.pc .footer,
.pc .search-bar,
.pc .tab,
.pc .bottom-btn,
.pc .sheet-wrap {
max-width: 640px;
margin: 0 auto;
}
}
button {
outline-width: 0;
border-width: 0;
}
ul {
list-style-type: none;
} | 0.425486 | 0.072407 |
body {
background-image: url('beach.jpg');
background-repeat: no-repeat;
background-size: cover;
background-color: #d6f5ff;
}
#container {
height: 90vh;
background-color: rgba(250, 250, 250, 0.90);
margin: 25px;
padding: 20px;
border-radius: 10px;
}
#container>table{
height: 80vh;
}
#tryit {
margin-top: 50px;
width: 100%;
}
h1 {
color: #444444;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
}
h3 {
color: #4575b4;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
margin-right: 20px;
}
#accuracy, #valid {
color: #f46d43;
font-weight: bold;
}
.left_container {
width: 29.5%;
background-color: #74ADD1;
padding: 20px;
border-radius: 10px;
color: #fff;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
font-size: 18px;
}
.margin_container {
width: 1%;
}
.right_container {
width: 69.5%;
background-color: #ccdffa;
padding: 20px;
border-radius: 10px;
}
.text_dark {
color: #4575b4;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
}
#input_form{
width: 40%;
}
#input_form > table {
width: 100%;
}
#result{
width: 60%;
}
#result > div {
width: 75%;
margin: auto;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
font-size: 20px;
}
.result_text {
color: #4575b4;
}
.result_number {
color: #f46d43;
}
#error {
margin-top: 20px;
margin-bottom: 10px;
height: 30px;
color: #f46d43;
}
#button_container{
margin-top: 20px;
}
#button {
width: 50px;
padding: 8px 14px;
border-radius:10px;
border: solid #4575b4 2px;
color: #4575b4;
font-size: 16px;
font-weight: bold;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
}
#button:hover{
border: solid #fdfdfd 2px;
color: #fdfdfd;
background-color: #4575b4;
cursor: pointer;
} | web_interface/stylesheet.css |
body {
background-image: url('beach.jpg');
background-repeat: no-repeat;
background-size: cover;
background-color: #d6f5ff;
}
#container {
height: 90vh;
background-color: rgba(250, 250, 250, 0.90);
margin: 25px;
padding: 20px;
border-radius: 10px;
}
#container>table{
height: 80vh;
}
#tryit {
margin-top: 50px;
width: 100%;
}
h1 {
color: #444444;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
}
h3 {
color: #4575b4;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
margin-right: 20px;
}
#accuracy, #valid {
color: #f46d43;
font-weight: bold;
}
.left_container {
width: 29.5%;
background-color: #74ADD1;
padding: 20px;
border-radius: 10px;
color: #fff;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
font-size: 18px;
}
.margin_container {
width: 1%;
}
.right_container {
width: 69.5%;
background-color: #ccdffa;
padding: 20px;
border-radius: 10px;
}
.text_dark {
color: #4575b4;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
}
#input_form{
width: 40%;
}
#input_form > table {
width: 100%;
}
#result{
width: 60%;
}
#result > div {
width: 75%;
margin: auto;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
font-size: 20px;
}
.result_text {
color: #4575b4;
}
.result_number {
color: #f46d43;
}
#error {
margin-top: 20px;
margin-bottom: 10px;
height: 30px;
color: #f46d43;
}
#button_container{
margin-top: 20px;
}
#button {
width: 50px;
padding: 8px 14px;
border-radius:10px;
border: solid #4575b4 2px;
color: #4575b4;
font-size: 16px;
font-weight: bold;
font-family: "Lucinda Grande", "Lucinda Sans Unicode", 'Geneva', 'Verdana', sans-serif;
}
#button:hover{
border: solid #fdfdfd 2px;
color: #fdfdfd;
background-color: #4575b4;
cursor: pointer;
} | 0.133613 | 0.079068 |
@media (max-width: 2000px) {
.navbar-default {
background-color: #337ab7;
border-color: #337ab7;
height: 6vh;
}
.principal-header-logo {
width: 70vw;
}
.navbar-header {
float: none;
}
.navbar-left, .navbar-right {
float: none !important;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border: 0;
background-color: #337ab7;
border-color: #337ab7;
}
.container-fluid {
padding-right: 0px;
padding-left: 0px;
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-collapse.collapse {
display: none !important;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
background-color: #204d74 !important;
}
.navbar-nav {
float: none !important;
margin-top: 3vh;
margin-left: 1vw;
}
.navbar-nav > li {
float: none;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 2vh;
}
.collapse.in {
display: block !important;
}
.navbar-default .navbar-brand {
color: #ffffff !important;
font-size: 2.7vh;
margin-left: 15px !important;
font-family: Century Gothic;
}
.navbar-default .navbar-toggle {
border-color: #337ab7;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff;
width: 4vh;
height: 0.5vh;
}
.navbar-default .navbar-nav > li > a {
color: #ffffff;
font-size: 2vh;
}
.tela {
height: 100%;
padding: 0px;
}
.principal {
height: 80%;
padding-left: 0vw;
padding: 0px;
margin-top: 10vh;
}
.principal-header {
height: 80%;
padding-left: 0vw;
padding-top: 5vh;
}
.principal-header-logo {
width: 70vw;
padding-top: 25vh;
}
.principal-content {
height: 60%;
width: 100%;
padding-top: 5vh;
}
.principal-footer {
height: 20%;
width: 100%;
position: absolute;
padding-top: 5vh;
}
.principal-content-grid-linha1 {
height: 6vh;
}
.principal-content-grid-linha2 {
height: 6vh;
padding-top: 15vh;
}
.principal-content-mesacomanda {
margin: auto;
width: 100%;
height: 6vh;
padding: 0px;
}
.principal-footer-botoes {
width: 85vw !important;
margin-left: 2vw !important;
padding-left: 1vh !important;
margin-bottom: 1vh !important;
height: 6vh !important;
}
.principal-img-button-vertical {
height: 22vh !important;
margin: 1vh 1vh;
}
.principal-img-button-horizontal {
height: 14vh !important;
margin: 1vh 1vh;
}
.principal-img-button-horizontal-mesacomanda {
width: 40vh !important;
margin: 1vh 1vh;
}
.input-pesquisa {
background-color: #32383D;
font-family: Century Gothic;
font-size: 2vh;
width: 100%;
height: 5vh;
color: #ffffff;
border: 1px solid #ccc;
border-color: #32383D;
float: right;
margin-bottom: 3.5vh;
}
.w3-btn {
background-color: rgba(0, 0, 0, 0) !important;
border-radius: 100px;
}
.font14 {
font-size: 5vh;
}
.font13 {
font-size: 4vh;
}
.font12 {
font-size: 3vh;
}
.btn-primary {
color: #fff;
background-color: #337ab7 !important;
border-color: #337ab7 !important;
border-radius: 36px!important;
}
.btn-primary:hover {
color: #fff;
background-color: #204d74 !important;
border-color: #204d74 !important;
border-radius: 36px!important;
}
.menu-navbar{
font-family: "Century Gothic";
color: #fff;
background-color: #337ab7;
height: 5vh;
}
.menu-titulo{
height: 5vh;
font-family: "Century Gothic";
color: #fff;
font-size: 3vh;
}
.icon-Voltar2:before {
font-size: 4vh;
color: #fff;
}
} | www/css/principal.css | @media (max-width: 2000px) {
.navbar-default {
background-color: #337ab7;
border-color: #337ab7;
height: 6vh;
}
.principal-header-logo {
width: 70vw;
}
.navbar-header {
float: none;
}
.navbar-left, .navbar-right {
float: none !important;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border: 0;
background-color: #337ab7;
border-color: #337ab7;
}
.container-fluid {
padding-right: 0px;
padding-left: 0px;
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-collapse.collapse {
display: none !important;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
background-color: #204d74 !important;
}
.navbar-nav {
float: none !important;
margin-top: 3vh;
margin-left: 1vw;
}
.navbar-nav > li {
float: none;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 2vh;
}
.collapse.in {
display: block !important;
}
.navbar-default .navbar-brand {
color: #ffffff !important;
font-size: 2.7vh;
margin-left: 15px !important;
font-family: Century Gothic;
}
.navbar-default .navbar-toggle {
border-color: #337ab7;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #ffffff;
width: 4vh;
height: 0.5vh;
}
.navbar-default .navbar-nav > li > a {
color: #ffffff;
font-size: 2vh;
}
.tela {
height: 100%;
padding: 0px;
}
.principal {
height: 80%;
padding-left: 0vw;
padding: 0px;
margin-top: 10vh;
}
.principal-header {
height: 80%;
padding-left: 0vw;
padding-top: 5vh;
}
.principal-header-logo {
width: 70vw;
padding-top: 25vh;
}
.principal-content {
height: 60%;
width: 100%;
padding-top: 5vh;
}
.principal-footer {
height: 20%;
width: 100%;
position: absolute;
padding-top: 5vh;
}
.principal-content-grid-linha1 {
height: 6vh;
}
.principal-content-grid-linha2 {
height: 6vh;
padding-top: 15vh;
}
.principal-content-mesacomanda {
margin: auto;
width: 100%;
height: 6vh;
padding: 0px;
}
.principal-footer-botoes {
width: 85vw !important;
margin-left: 2vw !important;
padding-left: 1vh !important;
margin-bottom: 1vh !important;
height: 6vh !important;
}
.principal-img-button-vertical {
height: 22vh !important;
margin: 1vh 1vh;
}
.principal-img-button-horizontal {
height: 14vh !important;
margin: 1vh 1vh;
}
.principal-img-button-horizontal-mesacomanda {
width: 40vh !important;
margin: 1vh 1vh;
}
.input-pesquisa {
background-color: #32383D;
font-family: Century Gothic;
font-size: 2vh;
width: 100%;
height: 5vh;
color: #ffffff;
border: 1px solid #ccc;
border-color: #32383D;
float: right;
margin-bottom: 3.5vh;
}
.w3-btn {
background-color: rgba(0, 0, 0, 0) !important;
border-radius: 100px;
}
.font14 {
font-size: 5vh;
}
.font13 {
font-size: 4vh;
}
.font12 {
font-size: 3vh;
}
.btn-primary {
color: #fff;
background-color: #337ab7 !important;
border-color: #337ab7 !important;
border-radius: 36px!important;
}
.btn-primary:hover {
color: #fff;
background-color: #204d74 !important;
border-color: #204d74 !important;
border-radius: 36px!important;
}
.menu-navbar{
font-family: "Century Gothic";
color: #fff;
background-color: #337ab7;
height: 5vh;
}
.menu-titulo{
height: 5vh;
font-family: "Century Gothic";
color: #fff;
font-size: 3vh;
}
.icon-Voltar2:before {
font-size: 4vh;
color: #fff;
}
} | 0.450601 | 0.090615 |
.rcp,
.rcp div,
.rcp button {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
user-select: none;
box-sizing: border-box;
}
.rcp {
display: block;
overflow: hidden;
width: 280px;
height: 280px;
position: relative;
transform: scale(1.001);
transition: transform 0.15s cubic-bezier(0.68, 0, 0.47, 2);
}
.rcp:focus {
outline: 0;
}
.rcp:hover .rcp__knob {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.19), 0 0 10px rgba(0, 0, 0, 0.24);
}
.rcp.dragging {
transform: scale(1.04);
}
.rcp.disabled {
cursor: not-allowed;
transform: scale(0.96);
}
.rcp.dragging .rcp__rotator {
z-index: 1;
}
.rcp__palette {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-size: 100% 100%;
background-image: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
/**
* @hack: MS Edge 18 (not the Chromium based one) has a bug with mask-image and
* transforms. When `transform: scale(1.04)` is applied the mask-image scales too
* but its position is incorrect now. Otherwise the much shorter radial-gradient mask
* could've been used:
* mask-image: radial-gradient(circle at 50% 50%, transparent 53.5%, black 54%);
*
* Instead, below is an base64 inlined SVG:
* <?xml version="1.0" encoding="UTF-8"?>
* <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 100 100">
* <defs>
* <mask id="mask" x="0" y="0" width="100" height="100">
* <rect x="0" y="0" width="100" height="100" fill="#fff"/>
* <circle cx="50" cy="50" r="38" />
* </mask>
* </defs>
*
* <rect x="0" y="0" width="100" height="100" mask="url(#mask)"/>
* </svg>
*/
mask-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiPgogICAgPGRlZnM+CiAgICAgICAgPG1hc2sgaWQ9Im1hc2siIHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj4KICAgICAgICAgICAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9IiNmZmYiLz4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iMzgiIC8+CiAgICAgICAgPC9tYXNrPgogICAgPC9kZWZzPgoKICAgIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBtYXNrPSJ1cmwoI21hc2spIi8+Cjwvc3ZnPgo=');
border-radius: 50%;
overflow: hidden;
will-change: transform, opacity;
transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1), opacity 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
.rcp__palette.in {
transform: scale(1);
opacity: 1;
}
.rcp__palette.out {
transform: scale(0);
opacity: 0;
}
.disabled .rcp__palette {
background-image: radial-gradient(#808080, #fff) !important;
}
.rcp__rotator {
width: 100%;
height: 100%;
position: absolute;
}
.rcp__knob {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.12), 0 0 5px rgba(0, 0, 0, 0.16);
border-radius: 50%;
position: absolute;
width: 7%;
height: 7%;
top: 2.5%;
left: 46.5%;
background-color: #fff;
transition: transform 0.4s cubic-bezier(0.35, 0, 0.25, 1);
outline: 0;
border-style: none;
}
.rcp__knob.in {
transform: scale(1);
}
.rcp__knob.out {
transform: scale(0);
}
.disabled .rcp__knob {
box-shadow: none !important;
pointer-events: none;
}
.rcp__well {
position: absolute;
width: 25%;
height: 25%;
top: 37.5%;
left: 37.5%;
padding: 0;
margin: 0;
border-radius: 50%;
background-color: #ff0000;
outline: 0;
cursor: pointer;
overflow: visible;
border: 6px solid #fff;
box-shadow: 0 0 0 1px #b2b2b2;
}
.rcp__well::-moz-focus-inner {
border: 0;
}
.rcp__well:hover {
box-shadow: 0 0 1px 1px #333;
}
.rcp__well:focus {
box-shadow: 0 0 1px 2px #b2b2b2;
}
.rcp__well.pressed {
animation: rcp-beat 0.4s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}
.disabled .rcp__well {
background-color: #bfbfbf !important;
pointer-events: none;
}
.rcp__ripple {
width: 20%;
height: 20%;
border-radius: 50%;
border: #ff0000 solid 8px;
opacity: 0;
position: absolute;
top: 40%;
left: 40%;
z-index: -1;
}
.rcp__ripple.rippling {
z-index: 0;
animation: rcp-ripple 0.5s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}
@keyframes rcp-ripple {
0% {
transform: scale(1);
opacity: 0.3;
}
50% {
opacity: 0.1;
}
100% {
opacity: 0;
border-width: 0;
transform: scale(3.8);
}
}
@keyframes rcp-beat {
0% {
transform: scale(1);
}
25% {
transform: scale(0.8);
}
50% {
transform: scale(1);
}
100% {
transform: scale(1);
}
} | src/ColorPicker/style.css | .rcp,
.rcp div,
.rcp button {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
user-select: none;
box-sizing: border-box;
}
.rcp {
display: block;
overflow: hidden;
width: 280px;
height: 280px;
position: relative;
transform: scale(1.001);
transition: transform 0.15s cubic-bezier(0.68, 0, 0.47, 2);
}
.rcp:focus {
outline: 0;
}
.rcp:hover .rcp__knob {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.19), 0 0 10px rgba(0, 0, 0, 0.24);
}
.rcp.dragging {
transform: scale(1.04);
}
.rcp.disabled {
cursor: not-allowed;
transform: scale(0.96);
}
.rcp.dragging .rcp__rotator {
z-index: 1;
}
.rcp__palette {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-size: 100% 100%;
background-image: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
/**
* @hack: MS Edge 18 (not the Chromium based one) has a bug with mask-image and
* transforms. When `transform: scale(1.04)` is applied the mask-image scales too
* but its position is incorrect now. Otherwise the much shorter radial-gradient mask
* could've been used:
* mask-image: radial-gradient(circle at 50% 50%, transparent 53.5%, black 54%);
*
* Instead, below is an base64 inlined SVG:
* <?xml version="1.0" encoding="UTF-8"?>
* <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 100 100">
* <defs>
* <mask id="mask" x="0" y="0" width="100" height="100">
* <rect x="0" y="0" width="100" height="100" fill="#fff"/>
* <circle cx="50" cy="50" r="38" />
* </mask>
* </defs>
*
* <rect x="0" y="0" width="100" height="100" mask="url(#mask)"/>
* </svg>
*/
mask-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiPgogICAgPGRlZnM+CiAgICAgICAgPG1hc2sgaWQ9Im1hc2siIHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj4KICAgICAgICAgICAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9IiNmZmYiLz4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iMzgiIC8+CiAgICAgICAgPC9tYXNrPgogICAgPC9kZWZzPgoKICAgIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBtYXNrPSJ1cmwoI21hc2spIi8+Cjwvc3ZnPgo=');
border-radius: 50%;
overflow: hidden;
will-change: transform, opacity;
transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1), opacity 0.5s cubic-bezier(0.35, 0, 0.25, 1);
}
.rcp__palette.in {
transform: scale(1);
opacity: 1;
}
.rcp__palette.out {
transform: scale(0);
opacity: 0;
}
.disabled .rcp__palette {
background-image: radial-gradient(#808080, #fff) !important;
}
.rcp__rotator {
width: 100%;
height: 100%;
position: absolute;
}
.rcp__knob {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.12), 0 0 5px rgba(0, 0, 0, 0.16);
border-radius: 50%;
position: absolute;
width: 7%;
height: 7%;
top: 2.5%;
left: 46.5%;
background-color: #fff;
transition: transform 0.4s cubic-bezier(0.35, 0, 0.25, 1);
outline: 0;
border-style: none;
}
.rcp__knob.in {
transform: scale(1);
}
.rcp__knob.out {
transform: scale(0);
}
.disabled .rcp__knob {
box-shadow: none !important;
pointer-events: none;
}
.rcp__well {
position: absolute;
width: 25%;
height: 25%;
top: 37.5%;
left: 37.5%;
padding: 0;
margin: 0;
border-radius: 50%;
background-color: #ff0000;
outline: 0;
cursor: pointer;
overflow: visible;
border: 6px solid #fff;
box-shadow: 0 0 0 1px #b2b2b2;
}
.rcp__well::-moz-focus-inner {
border: 0;
}
.rcp__well:hover {
box-shadow: 0 0 1px 1px #333;
}
.rcp__well:focus {
box-shadow: 0 0 1px 2px #b2b2b2;
}
.rcp__well.pressed {
animation: rcp-beat 0.4s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}
.disabled .rcp__well {
background-color: #bfbfbf !important;
pointer-events: none;
}
.rcp__ripple {
width: 20%;
height: 20%;
border-radius: 50%;
border: #ff0000 solid 8px;
opacity: 0;
position: absolute;
top: 40%;
left: 40%;
z-index: -1;
}
.rcp__ripple.rippling {
z-index: 0;
animation: rcp-ripple 0.5s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}
@keyframes rcp-ripple {
0% {
transform: scale(1);
opacity: 0.3;
}
50% {
opacity: 0.1;
}
100% {
opacity: 0;
border-width: 0;
transform: scale(3.8);
}
}
@keyframes rcp-beat {
0% {
transform: scale(1);
}
25% {
transform: scale(0.8);
}
50% {
transform: scale(1);
}
100% {
transform: scale(1);
}
} | 0.576184 | 0.217462 |
.browsehappy {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* Space out content a bit */
body {
padding-bottom: 20px;
}
#logo{
height:40px;
}
.navbar-brand {
padding:4px;
}
.ws-status{
margin-top: 10px;
position:absolute;
padding:10px;
}
.content{
padding-top: 60px;
}
.header,
.marketing,
.footer {
padding-left: 15px;
padding-right: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
padding-bottom: 19px;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 1024px) {
.container {
}
/* Remove the padding we set earlier */
.header,
.marketing,
.footer {
padding-left: 0;
padding-right: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
}
.fixed {
position: fixed;
}
#alert-markets, #alert-balances, #order-book-container-template {
display:none;
}
.ws-status {
display:none;
}
/* sidebar */
.bs-docs-sidebar {
padding-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
/* all links */
.bs-docs-sidebar .nav>li>a {
color: #999;
border-left: 2px solid transparent;
padding: 4px 20px;
font-size: 15px;
font-weight: 400;
}
/* nested links */
.bs-docs-sidebar .nav .nav>li>a {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 30px;
font-size: 14px;
}
/* active & hover links */
.bs-docs-sidebar .nav>.active>a,
.bs-docs-sidebar .nav>li>a:hover,
.bs-docs-sidebar .nav>li>a:focus {
color: #1e3e52;
text-decoration: none;
background-color: transparent;
border-left-color: #1e3e52;
}
/* all active links */
.bs-docs-sidebar .nav>.active>a,
.bs-docs-sidebar .nav>.active:hover>a,
.bs-docs-sidebar .nav>.active:focus>a {
font-weight: 700;
}
/* nested active links */
.bs-docs-sidebar .nav .nav>.active>a,
.bs-docs-sidebar .nav .nav>.active:hover>a,
.bs-docs-sidebar .nav .nav>.active:focus>a {
font-weight: 500;
}
/* hide inactive nested list */
.bs-docs-sidebar .nav ul.nav {
display: block;
}
/* show active nested list */
.bs-docs-sidebar .nav>.active>ul.nav {
display: block;
} | app/styles/main.css | .browsehappy {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* Space out content a bit */
body {
padding-bottom: 20px;
}
#logo{
height:40px;
}
.navbar-brand {
padding:4px;
}
.ws-status{
margin-top: 10px;
position:absolute;
padding:10px;
}
.content{
padding-top: 60px;
}
.header,
.marketing,
.footer {
padding-left: 15px;
padding-right: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
padding-bottom: 19px;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 1024px) {
.container {
}
/* Remove the padding we set earlier */
.header,
.marketing,
.footer {
padding-left: 0;
padding-right: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
}
.fixed {
position: fixed;
}
#alert-markets, #alert-balances, #order-book-container-template {
display:none;
}
.ws-status {
display:none;
}
/* sidebar */
.bs-docs-sidebar {
padding-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
/* all links */
.bs-docs-sidebar .nav>li>a {
color: #999;
border-left: 2px solid transparent;
padding: 4px 20px;
font-size: 15px;
font-weight: 400;
}
/* nested links */
.bs-docs-sidebar .nav .nav>li>a {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 30px;
font-size: 14px;
}
/* active & hover links */
.bs-docs-sidebar .nav>.active>a,
.bs-docs-sidebar .nav>li>a:hover,
.bs-docs-sidebar .nav>li>a:focus {
color: #1e3e52;
text-decoration: none;
background-color: transparent;
border-left-color: #1e3e52;
}
/* all active links */
.bs-docs-sidebar .nav>.active>a,
.bs-docs-sidebar .nav>.active:hover>a,
.bs-docs-sidebar .nav>.active:focus>a {
font-weight: 700;
}
/* nested active links */
.bs-docs-sidebar .nav .nav>.active>a,
.bs-docs-sidebar .nav .nav>.active:hover>a,
.bs-docs-sidebar .nav .nav>.active:focus>a {
font-weight: 500;
}
/* hide inactive nested list */
.bs-docs-sidebar .nav ul.nav {
display: block;
}
/* show active nested list */
.bs-docs-sidebar .nav>.active>ul.nav {
display: block;
} | 0.218669 | 0.092852 |
@font-face {
font-family: Zawgyi;
src: url("../fonts/zawgyi.ttf")
}
@font-face {
font-family: Pds;
src: url("../fonts/pds.ttf")
}
body {
font-family: Pds;
}
/**
/font-family: Zawgyi;
**/
.hide {
display: none;
}
/*--------------------------*/
.homecontainer {
width: 100%;
margin: 100px auto;
max-height: 600px;
min-height: 400px;
}
.progressbar {
margin: 0;
padding: 0;
counter-reset: step;
}
.progressbar li {
list-style-type: none;
width: 20%;
float: left;
font-size: 16px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
}
.progressbar li:before {
width: 60px;
height: 60px;
content: counter(step);
counter-increment: step;
line-height: 50px;
border: 3px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
cursor: pointer;
}
.progressbar li.active:before {
width: 60px;
height: 60px;
content: counter(step);
counter-increment: step;
line-height: 50px;
border: 3px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
cursor: pointer;
box-shadow: 0px 0px 10px 10px rgb(4, 124, 186);
}
.progressbar li:after {
width: 100%;
height: 3px;
content: '';
position: absolute;
background-color: #7d7d7d;
margin-top: 18px;
left: -50%;
z-index: -1;
cursor: pointer;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: green;
}
.progressbar li.active:before {
border-color: #55b776;
}
.progressbar li.active + li:after {
background-color: #55b776;
}
.progressbar li:after {
width: 100%;
height: 3px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 50px;
left: -50%;
z-index: -1;
cursor: pointer;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: green;
}
.progressbar li.active:before {
border-color: #55b776;
}
.progressbar li.active + li:after {
background-color: #55b776;
}
.progressbar li:after {
width: 100%;
height: 2px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 15px;
left: -50%;
z-index: -1;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: rgb(4, 124, 186);
}
.progressbar li.active:before {
border-color: rgb(4, 124, 186);
}
.progressbar li.active + li:after {
background-color: rgb(4, 124, 186);
}
/* ----------------------------- */
.title_text {
margin-top: 5px;
}
/*------------------------*/
#nav_id {
background-color: rgb(4, 124, 186);
}
#header_id {
color: white;
}
.own_thead_class {
background-color: rgba(4, 124, 186);
color: white;
} | public/client/css/teamcs.css | @font-face {
font-family: Zawgyi;
src: url("../fonts/zawgyi.ttf")
}
@font-face {
font-family: Pds;
src: url("../fonts/pds.ttf")
}
body {
font-family: Pds;
}
/**
/font-family: Zawgyi;
**/
.hide {
display: none;
}
/*--------------------------*/
.homecontainer {
width: 100%;
margin: 100px auto;
max-height: 600px;
min-height: 400px;
}
.progressbar {
margin: 0;
padding: 0;
counter-reset: step;
}
.progressbar li {
list-style-type: none;
width: 20%;
float: left;
font-size: 16px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
}
.progressbar li:before {
width: 60px;
height: 60px;
content: counter(step);
counter-increment: step;
line-height: 50px;
border: 3px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
cursor: pointer;
}
.progressbar li.active:before {
width: 60px;
height: 60px;
content: counter(step);
counter-increment: step;
line-height: 50px;
border: 3px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
cursor: pointer;
box-shadow: 0px 0px 10px 10px rgb(4, 124, 186);
}
.progressbar li:after {
width: 100%;
height: 3px;
content: '';
position: absolute;
background-color: #7d7d7d;
margin-top: 18px;
left: -50%;
z-index: -1;
cursor: pointer;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: green;
}
.progressbar li.active:before {
border-color: #55b776;
}
.progressbar li.active + li:after {
background-color: #55b776;
}
.progressbar li:after {
width: 100%;
height: 3px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 50px;
left: -50%;
z-index: -1;
cursor: pointer;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: green;
}
.progressbar li.active:before {
border-color: #55b776;
}
.progressbar li.active + li:after {
background-color: #55b776;
}
.progressbar li:after {
width: 100%;
height: 2px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 15px;
left: -50%;
z-index: -1;
}
.progressbar li:first-child:after {
content: none;
}
.progressbar li.active {
color: rgb(4, 124, 186);
}
.progressbar li.active:before {
border-color: rgb(4, 124, 186);
}
.progressbar li.active + li:after {
background-color: rgb(4, 124, 186);
}
/* ----------------------------- */
.title_text {
margin-top: 5px;
}
/*------------------------*/
#nav_id {
background-color: rgb(4, 124, 186);
}
#header_id {
color: white;
}
.own_thead_class {
background-color: rgba(4, 124, 186);
color: white;
} | 0.354992 | 0.058319 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: white;
font-family: Helvetica, Arial, sans-serif;
}
header {
background-color: lightgoldenrodyellow;
}
.project-title{
align-self: center;
font-size: 72px;
}
.divider {
background-color: steelblue;
padding: 1%;
font-weight: bold;
}
.greeting {
display: flex;
justify-content: space-between;
align-items: center;
}
.titlecard {
display: flex;
justify-content: space-around;
align-items: flex-end;
padding: 1%;
}
nav {
width: 10%;
display: flex;
justify-content: flex-end;
align-items: center;
}
nav a {
margin-right: 10px;
}
a {
text-decoration: none;
transition: color .1s;
color: black;
font-weight: bold;
}
a:hover {
color: white;
}
.nameplate {
width: 100%;
align-content: center;
display: flex;
align-items: center;
flex-direction: column;
}
.stats-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
td {
font-size: 24px;
padding: 10px;
text-align: center;
}
.perk-card {
display: flex;
flex-direction: column;
margin: .5%;
}
.perk-card:nth-child(even) {
background-color: #e6f9ff
}
.perk-card-header {
display: flex;
padding: .5%;
margin: 0;
}
.perk-card-header p {
padding-right: 2%;
}
.perk-card-body {
padding: .5%;
margin: 0;
}
.body-text {
padding: 1%;
}
.body-text p {
margin-bottom: 1%;
}
.btn-no-style {
background: none;
border: none;
cursor: pointer;
text-decoration: none;
font-size: 100%;
font-weight: bold;
transition: color .1s;
}
.btn-no-style:hover {
color: white;
background-color:steelblue;
}
.link-button {
background-color: steelblue;
padding: .75%;
border-radius: 7px;
transition: color .1s;
margin: 1%;
}
.link-button:hover {
background-color: lightskyblue;
color: black;
}
.section-divider {
margin-top: 2%;
}
.character-list {
padding: 0 4%;
}
.character-entry {
margin-bottom: 2%;
padding: 1% 0;
font-size: 24px;
}
.character-entry:nth-child(odd) {
background-color: #e6f9ff
}
.character-name:hover {
color: black;
}
.hidden {
display: none;
}
.welcome-forms {
display: flex;
justify-content: center;
}
.welcome-form-wrapper {
margin: 50px;
}
label {
display: block;
}
input {
padding: .5%;
border-radius: 5px;
border: 1px solid #ccc;
width: 300px;
height: 30px;
margin-bottom: 1%;
font-size: 14px;
}
button {
background-color: steelblue;
font-weight: bold;
text-decoration: none;
border: none;
border-radius: 7px;
}
button:hover {
background-color: lightskyblue;
transition: color .1s;
}
.login-toggle-link {
margin-left: 40%;
font-size: 14px;
font-weight: lighter;
font-style: italic;
}
.login-toggle-link:hover{
color: black;
}
.character-buttons {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.char-button {
margin: 1%;
padding: .75%;
font-weight: bold;
font-size: 100%;
}
.login-button, .signup-button {
padding: 2.5%;
}
form {
margin-top: 1%;
}
.stat-btn {
padding: 4% 6%;
font-size: 20px;
margin: 0 3.5%;
}
.special-stats {
width: 50%;
}
table {
width: 100%;
}
.available-points {
display: flex;
flex-direction: column;
align-items: center;
margin: 1%;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: var(--secondary-color);
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: steelblue;
}
.modal-body {
padding: 2px 16px;
height: 100px;
font-size: 20px;
}
.modal-footer {
padding: 2px 16px;
background-color: steelblue;
display: flex;
justify-content: space-between;
}
ul {
list-style: none;
}
li {
font-size: 20px;
margin: 1%;
}
.character-perk:nth-child(odd) {
background-color: #e6f9ff
}
.modal-buttons {
width: 25%;
display: flex;
justify-content: flex-end;
}
.modal-buttons button {
padding: 5%;
}
.character-data label, p {
font-weight: bold;
}
.homepage-list li{
font-size: 14px;
list-style-type: circle;
}
@media screen and (max-width: 980px) {
.titlecard {
flex-direction: column;
}
.titlecard img {
width: 100%;
}
.link-button {
padding: 3%;
}
.body-text p{
margin-bottom: 3%;
}
.section-divider {
margin-top: 5%;
}
.char-button {
padding: 3%;
}
.modal-body {
height: auto;
}
.modal-footer {
flex-direction: column;
align-items: center;
}
.modal-buttons {
width: 100%;
}
.modal-buttons .char-button {
width: 50%;
}
.special-stats {
width: 100%;
}
.stat-btn {
padding: 5% 10%;
}
} | public/stylesheets/style.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: white;
font-family: Helvetica, Arial, sans-serif;
}
header {
background-color: lightgoldenrodyellow;
}
.project-title{
align-self: center;
font-size: 72px;
}
.divider {
background-color: steelblue;
padding: 1%;
font-weight: bold;
}
.greeting {
display: flex;
justify-content: space-between;
align-items: center;
}
.titlecard {
display: flex;
justify-content: space-around;
align-items: flex-end;
padding: 1%;
}
nav {
width: 10%;
display: flex;
justify-content: flex-end;
align-items: center;
}
nav a {
margin-right: 10px;
}
a {
text-decoration: none;
transition: color .1s;
color: black;
font-weight: bold;
}
a:hover {
color: white;
}
.nameplate {
width: 100%;
align-content: center;
display: flex;
align-items: center;
flex-direction: column;
}
.stats-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
td {
font-size: 24px;
padding: 10px;
text-align: center;
}
.perk-card {
display: flex;
flex-direction: column;
margin: .5%;
}
.perk-card:nth-child(even) {
background-color: #e6f9ff
}
.perk-card-header {
display: flex;
padding: .5%;
margin: 0;
}
.perk-card-header p {
padding-right: 2%;
}
.perk-card-body {
padding: .5%;
margin: 0;
}
.body-text {
padding: 1%;
}
.body-text p {
margin-bottom: 1%;
}
.btn-no-style {
background: none;
border: none;
cursor: pointer;
text-decoration: none;
font-size: 100%;
font-weight: bold;
transition: color .1s;
}
.btn-no-style:hover {
color: white;
background-color:steelblue;
}
.link-button {
background-color: steelblue;
padding: .75%;
border-radius: 7px;
transition: color .1s;
margin: 1%;
}
.link-button:hover {
background-color: lightskyblue;
color: black;
}
.section-divider {
margin-top: 2%;
}
.character-list {
padding: 0 4%;
}
.character-entry {
margin-bottom: 2%;
padding: 1% 0;
font-size: 24px;
}
.character-entry:nth-child(odd) {
background-color: #e6f9ff
}
.character-name:hover {
color: black;
}
.hidden {
display: none;
}
.welcome-forms {
display: flex;
justify-content: center;
}
.welcome-form-wrapper {
margin: 50px;
}
label {
display: block;
}
input {
padding: .5%;
border-radius: 5px;
border: 1px solid #ccc;
width: 300px;
height: 30px;
margin-bottom: 1%;
font-size: 14px;
}
button {
background-color: steelblue;
font-weight: bold;
text-decoration: none;
border: none;
border-radius: 7px;
}
button:hover {
background-color: lightskyblue;
transition: color .1s;
}
.login-toggle-link {
margin-left: 40%;
font-size: 14px;
font-weight: lighter;
font-style: italic;
}
.login-toggle-link:hover{
color: black;
}
.character-buttons {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.char-button {
margin: 1%;
padding: .75%;
font-weight: bold;
font-size: 100%;
}
.login-button, .signup-button {
padding: 2.5%;
}
form {
margin-top: 1%;
}
.stat-btn {
padding: 4% 6%;
font-size: 20px;
margin: 0 3.5%;
}
.special-stats {
width: 50%;
}
table {
width: 100%;
}
.available-points {
display: flex;
flex-direction: column;
align-items: center;
margin: 1%;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 80%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
/* The Close Button */
.close {
color: var(--secondary-color);
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: steelblue;
}
.modal-body {
padding: 2px 16px;
height: 100px;
font-size: 20px;
}
.modal-footer {
padding: 2px 16px;
background-color: steelblue;
display: flex;
justify-content: space-between;
}
ul {
list-style: none;
}
li {
font-size: 20px;
margin: 1%;
}
.character-perk:nth-child(odd) {
background-color: #e6f9ff
}
.modal-buttons {
width: 25%;
display: flex;
justify-content: flex-end;
}
.modal-buttons button {
padding: 5%;
}
.character-data label, p {
font-weight: bold;
}
.homepage-list li{
font-size: 14px;
list-style-type: circle;
}
@media screen and (max-width: 980px) {
.titlecard {
flex-direction: column;
}
.titlecard img {
width: 100%;
}
.link-button {
padding: 3%;
}
.body-text p{
margin-bottom: 3%;
}
.section-divider {
margin-top: 5%;
}
.char-button {
padding: 3%;
}
.modal-body {
height: auto;
}
.modal-footer {
flex-direction: column;
align-items: center;
}
.modal-buttons {
width: 100%;
}
.modal-buttons .char-button {
width: 50%;
}
.special-stats {
width: 100%;
}
.stat-btn {
padding: 5% 10%;
}
} | 0.602412 | 0.136292 |
:root {
--side-bar-bg-color: #fafafa;
--control-text-color: #777;
--color-primary-light: #B5E3FF;
--color-primary-normal: #03A9F4;
--color-primary-dark: #0288D1;
--color-accent-light: #CFD8DC;
--color-accent-normal: #607D8B;
--color-accent-dark: #455A64;
--color-text-primary: rgb(51, 51, 51);
--color-text-secondary: #757575;
--color-divider: #BDBDBD;
--standard-radius: 1rem;
}
@include-when-export url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@include-when-export url(https://fonts.googleapis.com/css?family=Assistant:200,300,400,600,700,800&subset=hebrew);
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Light Italic'), local('OpenSansHebrew-LightItalic'),
url('./proffesura/OpenSansHebrew-LightItalic.ttf') format('truetype');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew Extra';
src: local('Open Sans Hebrew Extra Bold Italic'), local('OpenSansHebrewExtraBold-Italic'),
url('./proffesura/OpenSansHebrewExtraBold-Italic.ttf') format('truetype');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Italic'), local('OpenSansHebrew-Italic'),
url('./proffesura/OpenSansHebrew-Italic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Bold'), local('OpenSansHebrew-Bold'),
url('./proffesura/OpenSansHebrew-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Light'), local('OpenSansHebrew-Light'),
url('./proffesura/OpenSansHebrew-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew Extra';
src: local('Open Sans Hebrew Extra Bold'), local('OpenSansHebrew-ExtraBold'),
url('./proffesura/OpenSansHebrew-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Bold Italic'), local('OpenSansHebrew-BoldItalic'),
url('./proffesura/OpenSansHebrew-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew'), local('OpenSansHebrew-Regular'),
url('./proffesura/OpenSansHebrew-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Black'), local('AlmoniDLAAA-Black'),
url('./proffesura/AlmoniDLAAA-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Light'), local('AlmoniDLAAA-Light'),
url('./proffesura/AlmoniDLAAA-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA'), local('AlmoniDLAAA'),
url('./proffesura/AlmoniDLAAA.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Light'), local('AlmoniTzarAAA-Light'),
url('./proffesura/AlmoniTzarAAA-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Bold'), local('AlmoniTzarAAA-Bold'),
url('./proffesura/AlmoniTzarAAA-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA'), local('AlmoniTzarAAA'),
url('./proffesura/AlmoniTzarAAA.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Thin'), local('AlmoniTzarAAA-Thin'),
url('./proffesura/AlmoniTzarAAA-Thin.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA ExtraLight'), local('AlmoniTzarAAA-ExtraLight'),
url('./proffesura/AlmoniTzarAAA-ExtraLight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Bold'), local('AlmoniDLAAA-Bold'),
url('./proffesura/AlmoniDLAAA-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-Regular'),
url('./proffesura/Assistant-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-Light'),
url('./proffesura/Assistant-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-SemiBold'),
url('./proffesura/Assistant-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant Bold'), local('Assistant-Bold'),
url('./proffesura/Assistant-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-ExtraLight'),
url('./proffesura/Assistant-ExtraLight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-ExtraBold'),
url('./proffesura/Assistant-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
html {
font-size: 16px;
}
body {
font-family: "Assistant", "Open Sans Hebrew","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
color: rgb(51, 51, 51);
line-height: 1.6;
}
#write{
max-width: 860px;
margin: 0 auto;
padding: 20px 30px 40px 30px;
padding-top: 20px;
padding-bottom: 100px;
direction: rtl;
color: var(--color-text-primary);
}
#write > ul:first-child,
#write > ol:first-child{
margin-top: 30px;
}
body > *:first-child {
margin-top: 0 !important;
}
body > *:last-child {
margin-bottom: 0 !important;
}
a {
color: #4183C4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
margin-top: 1rem;
margin-bottom: 1rem;
font-weight: bold;
line-height: 1.4;
cursor: text;
}
h1:hover a.anchor,
h2:hover a.anchor,
h3:hover a.anchor,
h4:hover a.anchor,
h5:hover a.anchor,
h6:hover a.anchor {
text-decoration: none;
}
h1 tt,
h1 code {
font-size: inherit;
}
h2 tt,
h2 code {
font-size: inherit;
}
h3 tt,
h3 code {
font-size: inherit;
}
h4 tt,
h4 code {
font-size: inherit;
}
h5 tt,
h5 code {
font-size: inherit;
}
h6 tt,
h6 code {
font-size: inherit;
}
h1 {
padding-bottom: .3em;
font-size: 3em;
line-height: 1.2;
border-bottom: 1px solid #eee;
font-family: 'Almoni DL AAA';
font-weight: 900;
}
h2 {
padding-bottom: .3em;
font-size: 2em;
line-height: 1.225;
border-bottom: 1px solid var(--color-primary-light);
font-family: 'Almoni Tzar AAA', 'Open Sans Hebrew';
font-weight: 400;
}
h3 {
font-size: 1.5em;
line-height: 1.43;
font-family: 'Open Sans Hebrew';
}
h4 {
font-size: 1.25em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 1em;
color: #777;
}
#write h1 {
background-color: var(--color-primary-light);
border-radius: var(--standard-radius) var(--standard-radius) 0 0;
font-size: 5.25em;
margin-bottom: 0;
padding-bottom: 0;
}
#write h2 {
font-size: 2.25em;
padding: 0rem;
padding-right: 0.5rem;
margin: 0.1rem;
border-bottom: none;
border-right: 0.5rem solid var(--color-accent-light);
}
#write h1, #write h1 + h2 {
border: none;
background-color: var(--color-primary-light);
margin: 0;
padding-top: 0;
padding-right: 1rem;
padding-left: 1rem;
}
#write h1 + h2 {
padding-bottom: 0.3rem;
}
#write h3 {
font-size: 110%;
font-size: 1.65em;
font-weight: 800;
font-size: 1.5em;
margin: 0.5rem 0 0.5rem 0;
}
ol li p:first-of-type{
font-weight: 800;
font-size: 1.20em;
margin: 0.5rem 0 0 0;
font-family: 'Open Sans Hebrew';
}
ol li {
list-style: none;
counter-increment: main-counter;
}
ol {
counter-reset: main-counter;
}
ol>li>p:first-of-type::before {
content: counter(main-counter);
color: var(--color-primary-normal);
display: inline-block;
margin-left: 0.5rem;
margin-right: -1em;
font-weight: 200;
justify-content: right;
}
ul li p, ul li{
font-weight: 400;
list-style-type: disc;
margin: 0;
font-size: 1rem;
font-family: 'Assistant';
}
ul li{
counter-increment: sub-counter;
}
li
#write p, td{
font-size: 110%;
}
p,
blockquote,
ul,
ol,
dl,
table{
margin: 0.8em 0;
}
li>ol,
li>ul {
margin: 0 0;
}
hr {
height: 2px;
padding: 0;
margin: 16px 0;
background-color: #e7e7e7;
border: 0 none;
overflow: hidden;
box-sizing: content-box;
}
body > h2:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child + h2 {
margin-top: 0;
padding-top: 0;
}
body > h3:first-child,
body > h4:first-child,
body > h5:first-child,
body > h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1,
a:first-child h2,
a:first-child h3,
a:first-child h4,
a:first-child h5,
a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
margin-top: 0;
}
li p.first {
display: inline-block;
}
ul,
ol {
padding-right: 30px;
}
li {
counter-increment: li
}
ul:first-child,
ol:first-child {
margin-top: 0;
}
ul:last-child,
ol:last-child {
margin-bottom: 0;
}
blockquote {
border-right: 4px solid #dfe2e5;
padding: 0 15px;
color: #777777;
}
blockquote blockquote {
padding-left: 0;
}
table {
padding: 0;
word-break: initial;
border-collapse: separate;
border-radius: var(--standard-radius);
border: 1px none var(--color-divider);
}
table tr {
border-top: 1px solid var(--color-divider);
margin: 0;
padding: 0;
}
#write table tr:nth-child(2n+1) {
background-color: #f8f8f8;
}
#write thead td,
#write thead th {
background-color: var(--color-primary-light);
}
table tr th {
font-weight: 800;
font-family: 'Assistant';
font-size: 1.2rem;
border: 1px solid var(--color-divider);
text-align: right;
margin: 0;
padding: 0.5rem 1rem;
}
table tr td {
border: 1px solid var(--color-divider);
text-align: right;
margin: 0;
padding: 0.5rem 1rem;
}
#write thead>tr>th:first-child,
#write thead>tr>td:first-child {
border-top-right-radius: var(--standard-radius);
}
#write thead>tr>th:last-child,
#write thead>tr>td:last-child {
border-top-left-radius: var(--standard-radius);
}
#write tbody>tr:last-child>th:first-child,
#write tbody>tr:last-child>td:first-child {
border-bottom-right-radius: var(--standard-radius);
}
#write tbody>tr:last-child>th:last-child,
#write tbody>tr:last-child>td:last-child {
border-bottom-left-radius: var(--standard-radius);
}
table tr th:first-child,
table tr td:first-child {
margin-top: 0;
}
table tr th:last-child,
table tr td:last-child {
margin-bottom: 0;
}
.CodeMirror-lines {
padding-right: 4px;
}
.code-tooltip {
box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);
border-top: 1px solid #eef2f2;
}
.md-fences,
code,
tt {
border: 0 solid #e7eaed;
background-color: #f8f8f8;
border-radius: 0;
padding: 0;
padding: 2px 4px 0px 4px;
font-size: 0.9em;
direction: ltr
}
code {
background-color: #f3f4f4;
padding: 0.3rem;
}
.md-fences {
margin-bottom: 15px;
margin-top: 15px;
padding: 0.2em 1em;
padding-top: 8px;
padding-bottom: 6px;
}
.md-task-list-item > input {
margin-right: -1.3em;
position: absolute;
right: 0;
}
@media screen and (min-width: 914px) {
/*body {
width: 854px;
margin: 0 auto;
}*/
}
@media print {
html {
font-size: 13px;
}
table,
pre {
page-break-inside: avoid;
}
pre {
word-wrap: break-word;
}
}
.md-fences {
background-color: #f8f8f8;
}
#write pre.md-meta-block {
padding: 1rem;
font-size: 85%;
line-height: 1.45;
background-color: #f7f7f7;
border: 0;
border-radius: 3px;
color: #777777;
margin-top: 0 !important;
}
.mathjax-block>.code-tooltip {
bottom: .375rem;
}
.md-mathjax-midline {
background: #fafafa;
}
#write>h3.md-focus:before{
right: -1.5625rem;
top: .375rem;
}
#write>h4.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
#write>h5.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
#write>h6.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
.md-image>.md-meta {
/*border: 1px solid #ddd;*/
border-radius: 3px;
padding: 2px 0px 0px 4px;
font-size: 0.9em;
color: inherit;
}
.md-tag {
color: #a7a7a7;
opacity: 1;
}
.md-toc {
margin-top:20px;
padding-bottom:20px;
}
.sidebar-tabs {
border-bottom: none;
}
#typora-quick-open {
border: 1px solid #ddd;
background-color: #f8f8f8;
}
#typora-quick-open-item {
background-color: #FAFAFA;
border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
border-style: solid;
border-width: 1px;
}
/** focus mode */
.on-focus-mode blockquote {
border-right-color: rgba(85, 85, 85, 0.12);
}
header, .context-menu, .megamenu-content, footer{
font-family: "Segoe UI", "Arial", sans-serif;
}
.file-node-content:hover .file-node-icon,
.file-node-content:hover .file-node-open-state{
visibility: visible;
}
.mac-seamless-mode #typora-sidebar {
background-color: #fafafa;
background-color: var(--side-bar-bg-color);
}
.md-lang {
color: #b4654d;
}
.html-for-mac .context-menu {
--item-hover-bg-color: #E6F0FE;
} | proffesura.css | :root {
--side-bar-bg-color: #fafafa;
--control-text-color: #777;
--color-primary-light: #B5E3FF;
--color-primary-normal: #03A9F4;
--color-primary-dark: #0288D1;
--color-accent-light: #CFD8DC;
--color-accent-normal: #607D8B;
--color-accent-dark: #455A64;
--color-text-primary: rgb(51, 51, 51);
--color-text-secondary: #757575;
--color-divider: #BDBDBD;
--standard-radius: 1rem;
}
@include-when-export url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@include-when-export url(https://fonts.googleapis.com/css?family=Assistant:200,300,400,600,700,800&subset=hebrew);
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Light Italic'), local('OpenSansHebrew-LightItalic'),
url('./proffesura/OpenSansHebrew-LightItalic.ttf') format('truetype');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew Extra';
src: local('Open Sans Hebrew Extra Bold Italic'), local('OpenSansHebrewExtraBold-Italic'),
url('./proffesura/OpenSansHebrewExtraBold-Italic.ttf') format('truetype');
font-weight: 800;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Italic'), local('OpenSansHebrew-Italic'),
url('./proffesura/OpenSansHebrew-Italic.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Bold'), local('OpenSansHebrew-Bold'),
url('./proffesura/OpenSansHebrew-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Light'), local('OpenSansHebrew-Light'),
url('./proffesura/OpenSansHebrew-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew Extra';
src: local('Open Sans Hebrew Extra Bold'), local('OpenSansHebrew-ExtraBold'),
url('./proffesura/OpenSansHebrew-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew Bold Italic'), local('OpenSansHebrew-BoldItalic'),
url('./proffesura/OpenSansHebrew-BoldItalic.ttf') format('truetype');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Open Sans Hebrew';
src: local('Open Sans Hebrew'), local('OpenSansHebrew-Regular'),
url('./proffesura/OpenSansHebrew-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Black'), local('AlmoniDLAAA-Black'),
url('./proffesura/AlmoniDLAAA-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Light'), local('AlmoniDLAAA-Light'),
url('./proffesura/AlmoniDLAAA-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA'), local('AlmoniDLAAA'),
url('./proffesura/AlmoniDLAAA.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Light'), local('AlmoniTzarAAA-Light'),
url('./proffesura/AlmoniTzarAAA-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Bold'), local('AlmoniTzarAAA-Bold'),
url('./proffesura/AlmoniTzarAAA-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA'), local('AlmoniTzarAAA'),
url('./proffesura/AlmoniTzarAAA.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA Thin'), local('AlmoniTzarAAA-Thin'),
url('./proffesura/AlmoniTzarAAA-Thin.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Almoni Tzar AAA';
src: local('Almoni Tzar AAA ExtraLight'), local('AlmoniTzarAAA-ExtraLight'),
url('./proffesura/AlmoniTzarAAA-ExtraLight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Almoni DL AAA';
src: local('Almoni DL AAA Bold'), local('AlmoniDLAAA-Bold'),
url('./proffesura/AlmoniDLAAA-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-Regular'),
url('./proffesura/Assistant-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-Light'),
url('./proffesura/Assistant-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-SemiBold'),
url('./proffesura/Assistant-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant Bold'), local('Assistant-Bold'),
url('./proffesura/Assistant-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-ExtraLight'),
url('./proffesura/Assistant-ExtraLight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Assistant';
src: local('Assistant-ExtraBold'),
url('./proffesura/Assistant-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
html {
font-size: 16px;
}
body {
font-family: "Assistant", "Open Sans Hebrew","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
color: rgb(51, 51, 51);
line-height: 1.6;
}
#write{
max-width: 860px;
margin: 0 auto;
padding: 20px 30px 40px 30px;
padding-top: 20px;
padding-bottom: 100px;
direction: rtl;
color: var(--color-text-primary);
}
#write > ul:first-child,
#write > ol:first-child{
margin-top: 30px;
}
body > *:first-child {
margin-top: 0 !important;
}
body > *:last-child {
margin-bottom: 0 !important;
}
a {
color: #4183C4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
margin-top: 1rem;
margin-bottom: 1rem;
font-weight: bold;
line-height: 1.4;
cursor: text;
}
h1:hover a.anchor,
h2:hover a.anchor,
h3:hover a.anchor,
h4:hover a.anchor,
h5:hover a.anchor,
h6:hover a.anchor {
text-decoration: none;
}
h1 tt,
h1 code {
font-size: inherit;
}
h2 tt,
h2 code {
font-size: inherit;
}
h3 tt,
h3 code {
font-size: inherit;
}
h4 tt,
h4 code {
font-size: inherit;
}
h5 tt,
h5 code {
font-size: inherit;
}
h6 tt,
h6 code {
font-size: inherit;
}
h1 {
padding-bottom: .3em;
font-size: 3em;
line-height: 1.2;
border-bottom: 1px solid #eee;
font-family: 'Almoni DL AAA';
font-weight: 900;
}
h2 {
padding-bottom: .3em;
font-size: 2em;
line-height: 1.225;
border-bottom: 1px solid var(--color-primary-light);
font-family: 'Almoni Tzar AAA', 'Open Sans Hebrew';
font-weight: 400;
}
h3 {
font-size: 1.5em;
line-height: 1.43;
font-family: 'Open Sans Hebrew';
}
h4 {
font-size: 1.25em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 1em;
color: #777;
}
#write h1 {
background-color: var(--color-primary-light);
border-radius: var(--standard-radius) var(--standard-radius) 0 0;
font-size: 5.25em;
margin-bottom: 0;
padding-bottom: 0;
}
#write h2 {
font-size: 2.25em;
padding: 0rem;
padding-right: 0.5rem;
margin: 0.1rem;
border-bottom: none;
border-right: 0.5rem solid var(--color-accent-light);
}
#write h1, #write h1 + h2 {
border: none;
background-color: var(--color-primary-light);
margin: 0;
padding-top: 0;
padding-right: 1rem;
padding-left: 1rem;
}
#write h1 + h2 {
padding-bottom: 0.3rem;
}
#write h3 {
font-size: 110%;
font-size: 1.65em;
font-weight: 800;
font-size: 1.5em;
margin: 0.5rem 0 0.5rem 0;
}
ol li p:first-of-type{
font-weight: 800;
font-size: 1.20em;
margin: 0.5rem 0 0 0;
font-family: 'Open Sans Hebrew';
}
ol li {
list-style: none;
counter-increment: main-counter;
}
ol {
counter-reset: main-counter;
}
ol>li>p:first-of-type::before {
content: counter(main-counter);
color: var(--color-primary-normal);
display: inline-block;
margin-left: 0.5rem;
margin-right: -1em;
font-weight: 200;
justify-content: right;
}
ul li p, ul li{
font-weight: 400;
list-style-type: disc;
margin: 0;
font-size: 1rem;
font-family: 'Assistant';
}
ul li{
counter-increment: sub-counter;
}
li
#write p, td{
font-size: 110%;
}
p,
blockquote,
ul,
ol,
dl,
table{
margin: 0.8em 0;
}
li>ol,
li>ul {
margin: 0 0;
}
hr {
height: 2px;
padding: 0;
margin: 16px 0;
background-color: #e7e7e7;
border: 0 none;
overflow: hidden;
box-sizing: content-box;
}
body > h2:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child + h2 {
margin-top: 0;
padding-top: 0;
}
body > h3:first-child,
body > h4:first-child,
body > h5:first-child,
body > h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1,
a:first-child h2,
a:first-child h3,
a:first-child h4,
a:first-child h5,
a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
margin-top: 0;
}
li p.first {
display: inline-block;
}
ul,
ol {
padding-right: 30px;
}
li {
counter-increment: li
}
ul:first-child,
ol:first-child {
margin-top: 0;
}
ul:last-child,
ol:last-child {
margin-bottom: 0;
}
blockquote {
border-right: 4px solid #dfe2e5;
padding: 0 15px;
color: #777777;
}
blockquote blockquote {
padding-left: 0;
}
table {
padding: 0;
word-break: initial;
border-collapse: separate;
border-radius: var(--standard-radius);
border: 1px none var(--color-divider);
}
table tr {
border-top: 1px solid var(--color-divider);
margin: 0;
padding: 0;
}
#write table tr:nth-child(2n+1) {
background-color: #f8f8f8;
}
#write thead td,
#write thead th {
background-color: var(--color-primary-light);
}
table tr th {
font-weight: 800;
font-family: 'Assistant';
font-size: 1.2rem;
border: 1px solid var(--color-divider);
text-align: right;
margin: 0;
padding: 0.5rem 1rem;
}
table tr td {
border: 1px solid var(--color-divider);
text-align: right;
margin: 0;
padding: 0.5rem 1rem;
}
#write thead>tr>th:first-child,
#write thead>tr>td:first-child {
border-top-right-radius: var(--standard-radius);
}
#write thead>tr>th:last-child,
#write thead>tr>td:last-child {
border-top-left-radius: var(--standard-radius);
}
#write tbody>tr:last-child>th:first-child,
#write tbody>tr:last-child>td:first-child {
border-bottom-right-radius: var(--standard-radius);
}
#write tbody>tr:last-child>th:last-child,
#write tbody>tr:last-child>td:last-child {
border-bottom-left-radius: var(--standard-radius);
}
table tr th:first-child,
table tr td:first-child {
margin-top: 0;
}
table tr th:last-child,
table tr td:last-child {
margin-bottom: 0;
}
.CodeMirror-lines {
padding-right: 4px;
}
.code-tooltip {
box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);
border-top: 1px solid #eef2f2;
}
.md-fences,
code,
tt {
border: 0 solid #e7eaed;
background-color: #f8f8f8;
border-radius: 0;
padding: 0;
padding: 2px 4px 0px 4px;
font-size: 0.9em;
direction: ltr
}
code {
background-color: #f3f4f4;
padding: 0.3rem;
}
.md-fences {
margin-bottom: 15px;
margin-top: 15px;
padding: 0.2em 1em;
padding-top: 8px;
padding-bottom: 6px;
}
.md-task-list-item > input {
margin-right: -1.3em;
position: absolute;
right: 0;
}
@media screen and (min-width: 914px) {
/*body {
width: 854px;
margin: 0 auto;
}*/
}
@media print {
html {
font-size: 13px;
}
table,
pre {
page-break-inside: avoid;
}
pre {
word-wrap: break-word;
}
}
.md-fences {
background-color: #f8f8f8;
}
#write pre.md-meta-block {
padding: 1rem;
font-size: 85%;
line-height: 1.45;
background-color: #f7f7f7;
border: 0;
border-radius: 3px;
color: #777777;
margin-top: 0 !important;
}
.mathjax-block>.code-tooltip {
bottom: .375rem;
}
.md-mathjax-midline {
background: #fafafa;
}
#write>h3.md-focus:before{
right: -1.5625rem;
top: .375rem;
}
#write>h4.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
#write>h5.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
#write>h6.md-focus:before{
right: -1.5625rem;
top: .285714286rem;
}
.md-image>.md-meta {
/*border: 1px solid #ddd;*/
border-radius: 3px;
padding: 2px 0px 0px 4px;
font-size: 0.9em;
color: inherit;
}
.md-tag {
color: #a7a7a7;
opacity: 1;
}
.md-toc {
margin-top:20px;
padding-bottom:20px;
}
.sidebar-tabs {
border-bottom: none;
}
#typora-quick-open {
border: 1px solid #ddd;
background-color: #f8f8f8;
}
#typora-quick-open-item {
background-color: #FAFAFA;
border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
border-style: solid;
border-width: 1px;
}
/** focus mode */
.on-focus-mode blockquote {
border-right-color: rgba(85, 85, 85, 0.12);
}
header, .context-menu, .megamenu-content, footer{
font-family: "Segoe UI", "Arial", sans-serif;
}
.file-node-content:hover .file-node-icon,
.file-node-content:hover .file-node-open-state{
visibility: visible;
}
.mac-seamless-mode #typora-sidebar {
background-color: #fafafa;
background-color: var(--side-bar-bg-color);
}
.md-lang {
color: #b4654d;
}
.html-for-mac .context-menu {
--item-hover-bg-color: #E6F0FE;
} | 0.393618 | 0.149562 |
*,
.filter_input_label {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.special_main_wrapper {
background-image: linear-gradient(180deg, rgba(13, 21, 30, 0), #0d151e), url(../images/log_in_back.png);
background-color: #0d151e;
background-repeat: no-repeat;
background-size: cover;
}
.footer_social_link a svg path:hover {
fill: #d2be8b;
}
.active_body {
overflow: hidden;
}
.personal_area {
width: 100%;
background-position-y: 48%;
background-repeat: no-repeat;
padding-bottom: 120px;
padding-top: 70px;
position: relative;
}
.persoanl_area_link,
.personal_area_list_btn {
font-style: normal;
line-height: 18px;
padding: 15px 10px;
font-family: Inter, sans-serif;
}
.personal_area_wrapper {
max-width: 1222px;
width: 100%;
margin: 0 auto;
}
.personal_are_title {
margin-bottom: 33px;
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 36px;
letter-spacing: -0.022em;
color: #dadada;
text-align: left;
}
.personal_area_list_wrapper {
display: -ms-flexbox;
display: flex;
max-width: 1222px;
width: 100%;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
}
.persoanl_area_link {
font-weight: 600;
font-size: 14px;
color: #9b8e6c;
cursor: pointer;
text-decoration: none;
}
.persoanl_area_link.active,
.persoanl_area_link:hover {
background: #1f262e;
color: #e5d6a0;
}
.personal_area_list {
list-style: none;
}
.personal_area_list_btn {
font-weight: 600;
font-size: 14px;
color: #9b8e6c;
cursor: pointer;
outline: 0;
background: 0 0;
border: none;
}
.personal_area_list_btn:hover {
background: #1f262e;
color: #e5d6a0;
}
.personal_area_main_nav {
margin-bottom: 41px;
}
.hidden_svg,
.mobile_personal_area_change_password_status_links_wrapper,
.personal_area_mobile_nav_wrapper {
display: none;
}
.completed_projects_items_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.completed_project_first_item {
width: 279px;
margin-right: 40px;
margin-bottom: 32px;
}
.small_item_title_svg_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 8px;
}
.hiiden_title,
.small_item_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 130%;
color: #f0f0f0;
}
.filter_input_span,
.filter_of_catagories_wrapper_title,
.first_item_title {
font-family: Open Sans, sans-serif;
font-style: normal;
}
.first_item_title {
font-weight: 600;
font-size: 17px;
line-height: 22px;
color: #f0f0f0;
margin-bottom: 19px;
}
.filter_of_catagories_wrapper_title {
font-weight: 700;
font-size: 15px;
line-height: 16px;
letter-spacing: -0.03em;
color: #e5d6a0;
margin-bottom: 18px;
}
.filter_of_catagories_wrapper_check_inputs {
margin-bottom: 47px;
}
.check_input_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
margin-bottom: 16px;
}
.filter_input_span {
font-weight: 400;
font-size: 14px;
line-height: 16px;
letter-spacing: -0.03em;
color: #f0f0f0;
}
.filter_btn1,
.filter_btn2 {
border: 1px solid #e5d6a0;
font-family: Open Sans, sans-serif;
color: #e5d6a0;
outline: 0;
line-height: 18px;
background: 0 0;
font-style: normal;
font-size: 14px;
}
.filter_btn1:hover {
background: #e5d6a0;
color: #1f262e;
}
.filter_btn2:hover {
background: #e5d6a0;
color: #1f262e;
}
.filter_input_label {
width: 16px;
height: 16px;
border: 1px solid #e5d6a0;
box-sizing: border-box;
display: inline-block;
position: relative;
}
.filter_inputs_btns_wrapper,
.small_item_img_text_wrapper {
display: -ms-flexbox;
}
.filter_inputs_btns_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.filter_btn1 {
width: 122px;
margin-right: 8px;
}
.filter_btn1,
.filter_btn2 {
height: 40px;
cursor: pointer;
font-weight: 600;
}
.filter_btn2 {
width: 181px;
}
.completed_project_small_item {
max-width: 880px;
width: 100%;
padding: 40px;
background: #1f262e;
margin-bottom: 24px;
}
.completed_project_second_item {
height: 2003px;
overflow-y: scroll;
}
.completed_project_second_item::-webkit-scrollbar {
width: 2px;
}
.completed_project_second_item::-webkit-scrollbar-track {
border-radius: 2px;
}
.completed_project_second_item::-webkit-scrollbar-thumb {
border-radius: 2px;
background: #9b8e6c;
}
.small_item_img_text_wrapper {
display: flex;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 40px;
}
.hidden_city,
.hidden_img,
.hidden_price {
display: none;
}
.small_item_img {
margin-right: 40px;
}
.hidden_img,
.star_svg {
margin-right: 8px;
}
.smal_item_text_wrapper {
max-width: 599px;
width: 100%;
}
.small_item_info1,
.small_item_info2 {
display: -ms-flexbox;
-webkit-box-align: center;
}
.small_item_info1 {
font-weight: 700;
font-size: 16px;
color: #a5aab7;
margin-bottom: 8px;
}
.small_item_info1,
.small_item_info2 {
font-family: Inter, sans-serif;
font-style: normal;
line-height: 18px;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info2 {
font-weight: 600;
font-size: 36px;
color: #e5d6a0;
margin-bottom: 10px;
}
.small_item_info3,
.small_item_info3 span {
font-size: 16px;
font-family: Inter, sans-serif;
}
.small_item_info3,
.small_item_info_svg_wrapper {
display: -ms-flexbox;
}
.small_item_info_svg_wrapper {
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 16px;
}
.small_item_info3,
.small_item_info_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info3 {
font-style: normal;
font-weight: 500;
color: #fff;
}
.small_item_info3 span,
.small_item_info4_svg_wrapper {
display: -ms-flexbox;
-webkit-box-align: center;
}
.small_item_info3 span {
font-style: normal;
font-weight: 700;
color: #a5aab7;
}
.small_item_info3 span,
.small_item_info4_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info4 {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 18px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
color: #e5d6a0;
margin-left: 8px;
}
.small_item_show_more_text,
.small_item_show_more_text2 {
line-height: 24px;
letter-spacing: -0.011em;
color: #f0f0f0;
font-size: 16px;
font-family: Inter, sans-serif;
font-weight: 400;
}
.small_item_show_more_text_wrapper {
margin-bottom: 41px;
}
.small_item_show_more_text {
font-style: normal;
display: inline-block;
}
.small_item_show_more_text2 {
font-style: normal;
display: none;
}
.small_item_show_more_text2.open {
display: block;
}
.read_more_btn {
display: inline-block;
color: #e5d6a0;
background: 0 0;
border: none;
cursor: pointer;
}
.small_item_star_number_wrapper,
.star_svg_wrapper {
display: -ms-flexbox;
}
.small_item_star_number_wrapper {
-ms-flex-pack: justify;
justify-content: space-between;
}
.small_item_star_number_wrapper,
.star_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_star_date {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 18px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
color: #dadada;
}
.sign_up_check_input_wrapper.active .sign_up_input_label:after {
content: "";
width: 8px;
height: 8px;
background: #e5d6a0;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
transform: translate(35%, 34%);
}
.check_input_wrapper.active .filter_input_span {
color: #e5d6a0;
}
.check_input_wrapper.active .filter_input_label:after {
content: "";
width: 8px;
height: 8px;
background: #e5d6a0;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
transform: translate(35%, 34%);
}
.jq-ry-group-wrapper {
position: relative;
width: 100px;
}
.jq-ry-normal-group {
position: relative;
z-index: 1;
}
.active_star {
position: absolute;
left: 0;
top: 0;
z-index: 2;
overflow: hidden;
}
.jq-ry-rated-group {
width: 100px;
}
.jq-ry-normal-group.jq-ry-group svg,
.jq-ry-rated-group.jq-ry-group svg {
width: 18px !important;
height: 18px !important;
}
.hidden_first_project {
display: none;
}
.bookmarks_second_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: -0.006em;
color: #dadada;
margin-right: 10px;
}
.bookmarks_title,
.faq_main_title {
font-family: Inter, sans-serif;
font-style: normal;
color: #d2be8b;
letter-spacing: -0.022em;
}
.bookmarks_svg_title_wrapper {
display: -ms-flexbox;
display: flex;
}
.bookmarks_title {
font-weight: 700;
font-size: 24px;
line-height: 48px;
}
.personal_bookmarks_wrapper {
width: 100%;
position: relative;
display: none;
}
@media (min-width: 769px) and (max-width: 1285px) {
.personal_area_list.persoanl_area_link {
width: 48%;
}
.personal_area_list_wrapper {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.personal_area_main_nav {
margin-bottom: 41px;
width: 80%;
}
}
@media (max-width: 1285px) {
.personal_area_wrapper {
width: 93% !important;
}
.faq_main_title {
display: block !important;
}
.personal_are_title {
margin-bottom: unset !important;
}
}
@media (max-width: 768px) {
.balance_item.first_balance_item .chart{
width: 214px!important;
height: 214px!important;
}
.personal_area_mobile_nav_wrapper,
.terms_of_use_main_title {
display: block !important;
}
.mobile_persoanl_area_link,
.mobile_personal_area_list_btn {
font-style: normal;
font-weight: 600;
font-size: 14px;
cursor: pointer;
text-decoration: none;
}
.persoanl_area_link {
padding: 15px 5px !important;
}
.personal_area_main_nav {
display: none !important;
}
.personal_title_nav_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
}
.mobile_personal_area_box {
width: 48px;
height: 32px;
background: #1f262e;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
.mobile_personal_area_box:hover {
border: 1px solid #e5d6a0;
}
.personal_mobile_nav_list_wrapper {
position: fixed;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
top: -3px;
left: 0;
background: #0d151e;
text-align: center;
box-sizing: border-box;
height: 100vh;
z-index: 1;
-ms-flex-pack: center !important;
justify-content: center !important;
overflow-y: scroll;
display: none;
padding: 40px 40px 119px;
}
.personal_area_list_wrapper {
max-width: unset !important;
width: unset !important;
-ms-flex-direction: column;
flex-direction: column;
}
.personal_area_list {
padding-bottom: 19px;
}
.perosnal_line {
margin-bottom: 19px;
max-width: 687px;
width: 100%;
height: 0;
border: 1px solid #1c2733;
}
.mobile_persoanl_area_link {
font-family: Inter, sans-serif;
line-height: 18px;
color: #dadada;
padding: 15px 10px;
}
.mobile_persoanl_area_link:hover {
color: #e5d6a0;
}
.mobile_persoanl_area_link.active {
background: #1f262e;
color: #e5d6a0;
}
.mobile_personal_area_list_btn {
font-family: Inter, sans-serif;
line-height: 18px;
color: #dadada;
outline: 0;
border: none;
background: 0 0;
}
.mobile_personal_area_list_btn:hover {
color: #e5d6a0;
}
}
@media (min-width: 426px) and (max-width: 1285px) {
.personal_title_nav_wrapper {
margin-bottom: 58px !important;
}
}
@media (min-width: 687px) and (max-width: 755px) {
.perosnal_area_phone_mail_wrapper {
margin-right: unset !important;
margin-bottom: 30px;
}
.mobile_personal_area_change_password_status_links_wrapper {
display: -ms-flexbox !important;
display: flex !important;
}
.personal_area_change_password_status_links_wrapper {
display: none !important;
}
.perosnal_area_phone_passport_info_details_wrapper {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: unset !important;
align-items: unset !important;
margin-bottom: 40px;
}
.personal_area_name_info_wrapper {
margin-right: unset !important;
}
.personal_area_image_link_wrapper {
margin-right: 50px !important;
}
.personal_area_password_status_link {
width: 180px !important;
}
.personal_area_img_link {
width: 213px !important;
padding: 19px 0 !important;
}
.personal_area_img2 img {
width: 171px !important;
}
.personal_area_img1 img {
width: 38px !important;
}
.personal_area_img3 {
display: block !important;
position: relative;
left: 92%;
bottom: 17px;
width: 38px;
}
.personal_area_images_wrapper {
margin-bottom: 5px !important;
}
.personal_area_img2 {
width: 171px !important;
}
}
@media (max-width: 768px) {
.personal_area {
min-height: 730px !important;
padding-bottom: 50px !important;
}
.personal_area_terms_of_use {
padding-top: 40px !important;
padding-bottom: 70px !important;
}
}
@media (min-width: 501px) and (max-width: 730px) {
.personal_are_title {
font-size: 32px !important;
}
}
@media (min-width: 426px) and (max-width: 500px) {
.personal_are_title {
font-size: 28px !important;
}
}
@media (min-width: 361px) and (max-width: 425px) {
.personal_are_title {
font-size: 26px !important;
margin-bottom: 24px !important;
}
}
@media (max-width: 360px) {
.personal_are_title {
font-size: 24px !important;
}
}
.second_box {
background: #0d151e;
border: 1px solid #e5d6a0;
}
@media (min-width: 426px) and (max-width: 768px) {
.special_main_wrapper {
min-height: unset !important;
background-image: url(../images/log_in_second_img.png) !important;
}
}
@media (max-width: 425px) {
.personal_mobile_nav_list_wrapper {
padding: 24px 24px 100px !important;
}
.personal_title_nav_wrapper {
margin-bottom: 20px !important;
}
#doughnutChart svg,
.chart {
width: 148px !important;
height: 148px !important;
}
.first_balance_item {
margin: 0 auto 40px;
display: block;
}
.special_main_wrapper {
background-image: url(../images/mobile_confirm.png) !important;
min-height: unset !important;
}
}
@media (max-width: 1030px) {
.completed_project_small_item {
max-width: unset !important;
}
.top {
min-height: 170px !important;
}
.completed_projects_items_wrapper {
-ms-flex-direction: column;
flex-direction: column;
}
.hidden_second_project {
display: none !important;
}
.hidden_first_project.open {
display: block !important;
}
.completed_project_first_item {
margin-right: unset !important;
margin-left: unset !important;
width: 80% !important;
margin-bottom: 40px;
}
.bookmarks_childs_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
}
.bookmarks_svg_wrapper svg.active {
transform: rotate(-180deg);
}
.personal_bookmarks_wrapper {
display: block !important;
}
}
.faq_line,
.personal_area_faq_items_wrapper {
max-width: 608px;
width: 100%;
}
@media (min-width: 426px) and (max-width: 1030px) {
.personal_area {
padding-top: 50px !important;
}
}
@media (min-width: 1031px) and (max-width: 1030px) {
.personal_area {
padding-top: 135px !important;
}
}
@media (max-width: 690px) {
/*.small_item_info_svg_wrapper {*/
/* -ms-flex-wrap: wrap;*/
/* flex-wrap: wrap;*/
/* -ms-flex-align: end !important;*/
/* align-items: flex-end !important;*/
/* -ms-flex-pack: end !important;*/
/*}*/
.small_item_info3 {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: unset !important;
align-items: unset !important;
}
.small_item_info3 span {
margin-bottom: 5px;
}
}
@media (min-width:551px) and (max-width:700px){
.small_item_info2 {
font-size: 30px !important;
}
}
@media (min-width: 481px) and (max-width: 550px) {
.small_item_title {
font-size: 20px !important;
}
.small_item_info2 {
font-size: 26px !important;
}
.balance_diagram_number,
.faq_main_title,
.terms_of_use_main_title {
font-size: 22px !important;
}
}
@media (min-width: 426px) and (max-width: 480px) {
.small_item_info2 {
font-size: 22px !important;
}
.balance_diagram_number {
font-size: 20px !important;
}
.small_item_title {
font-size: px !important;
}
.small_item_img_text_wrapper {
margin-bottom: 20px !important;
}
.small_item_show_more_text_wrapper {
margin-bottom: 25px;
}
.faq_main_title,
.terms_of_use_main_title {
font-size: 20px !important;
}
}
@media (min-width: 361px) and (max-width: 425px) {
.hiiden_title {
display: block !important;
font-size: 16px !important;
}
.small_item_title {
display: none !important;
}
.small_item_info2 {
font-size: 22px !important;
}
}
@media (max-width: 360px) {
.hiiden_title {
font-size: 14px !important;
display: block !important;
}
.small_item_title {
display: none !important;
}
.small_item_info2 {
font-size: 18px !important;
}
}
.hiiden_title {
display: none;
}
@media (max-width: 470px) {
.personal_area {
padding-top: 30px !important;
}
.balacne_diagram_hidden_title {
font-size: 14px !important;
}
.balacne_diagram_hidden_info {
font-size: 16px !important;
}
.balance_diagram_number,
.faq_main_title,
.terms_of_use_main_title {
font-size: 18px !important;
}
.balance_diagram_number svg {
width: 10px !important;
height: 12px !important;
}
.terms_of_use_main_title {
line-height: unset !important;
}
/*.completed_project_second_item {*/
/* padding: 20px!important;*/
/*}*/
.small_item_svg_wrapper svg {
width: 20px !important;
height: 20px !important;
}
.hidden_img {
display: block !important;
}
.small_item_img,
.small_item_info1,
.small_item_info2,
.small_item_info_svg_wrapper {
display: none !important;
}
.hidden_city,
.hidden_price {
display: block !important;
font-family: Inter, sans-serif;
font-style: normal;
}
.hidden_price {
font-weight: 700;
font-size: 14px;
line-height: 18px;
color: #e5d6a0;
margin-bottom: 6px;
}
.hidden_city {
font-weight: 400;
font-size: 12px;
line-height: 16px;
letter-spacing: -0.01em;
color: #f0f0f0;
}
}
@media (min-width: 426px) and (max-width: 690px) {
.small_item_show_more_text,
.small_item_show_more_text2,
.small_item_star_date {
font-size: 14px !important;
}
}
@media (max-width: 425px) {
.completed_project_small_item {
padding: 10px !important;
}
.small_item_show_more_text,
.small_item_show_more_text2,
.small_item_star_date {
font-size: 12px !important;
}
.small_item_img_text_wrapper {
margin-bottom: 10px !important;
}
.small_item_show_more_text_wrapper {
margin-bottom: 16px !important;
}
}
@media (max-width: 370px) {
.bookmarks_title {
margin-bottom: 8px;
}
.bookmarks_childs_wrapper {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 20px;
}
}
.personal_area_faq {
width: 100%;
}
.personal_area_faq_title_svg_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 16px;
}
.faq_line {
border: 1px solid #848993;
box-sizing: border-box;
}
.faq_line:not(:last-child),
.personal_area_faq_item {
margin-bottom: 27px;
}
.personal_area_faq_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 15px;
line-height: 22px;
color: #f0f0f0;
}
.personal_area_faq_hidden_info {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #bcbcbc;
display: none;
}
.faq_main_title,
.terms_of_use_main_title {
font-weight: 700;
line-height: 48px;
display: none;
}
.personal_area_faq_hidden_info.open {
display: block !important;
}
.personal_area_faq_svg svg.active {
transform: rotate(-180deg);
}
.personal_area_faq_title.active {
color: #e5d6a0;
}
.faq_main_title {
font-size: 24px;
margin-bottom: 16px;
}
.terms_of_use_personal_area_item_info,
.terms_of_use_personal_area_item_title {
font-size: 14px;
color: #dadada;
font-style: normal;
font-family: Inter, sans-serif;
}
@media (min-width: 426px) and (max-width: 768px) {
.personal_area_faq {
padding-top: 40px !important;
padding-bottom: 48px !important;
}
}
@media (min-width: 371px) and (max-width: 425px) {
.personal_area_faq {
padding-top: 30px !important;
padding-bottom: 40px !important;
}
}
@media (max-width: 370px) {
.personal_area_faq {
padding-top: 20px !important;
padding-bottom: px !important;
}
}
.personal_area_terms_of_use {
padding-top: 64px;
padding-bottom: 57px;
}
.terms_of_use_personal_area_item_title {
font-weight: 700;
margin-bottom: 10px;
}
.terms_of_use_personal_area_item_info {
font-weight: 400;
}
.terms_of_use_personal_area_item {
margin-bottom: 5px;
}
.terms_of_use_main_title {
margin-bottom: 16px;
font-family: Inter, sans-serif;
font-style: normal;
font-size: 24px;
letter-spacing: -0.022em;
color: #d2be8b;
}
.chart {
width: 292px;
height: 292px;
border: 60px solid #A5AAB7;
border-radius: 50%;
}
.doughnutTip {
position: absolute;
min-width: 30px;
max-width: 300px;
padding: 5px 15px;
border-radius: 1px;
background: rgba(0, 0, 0, 0.8);
color: #ddd;
font-size: 17px;
text-shadow: 0 1px 0 #000;
text-transform: uppercase;
text-align: center;
line-height: 1.3;
letter-spacing: 0.06em;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
pointer-events: none;
}
.doughnutTip:after {
position: absolute;
left: 50%;
bottom: -6px;
content: "";
height: 0;
margin: 0 0 0 -6px;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-top: 6px solid rgba(0, 0, 0, 0.7);
line-height: 0;
}
.doughnutSummaryTitle {
position: absolute;
top: 50%;
width: 100%;
margin-top: -27%;
font-size: 22px;
letter-spacing: 0.06em;
}
.doughnutSummaryNumber {
position: absolute;
top: 50%;
width: 100%;
margin-top: -15%;
font-size: 55px;
}
.chart path:hover {
opacity: 0.65;
}
.hidden_div {
display: none;
}
.hidden_div.open {
display: block !important;
}
#doughnutChart svg {
width: 292px;
height: 292px;
}
.doughnutSummary {
position: absolute;
top: 50%;
left: 50%;
color: #d5d5d5;
text-align: center;
text-shadow: 0 -1px 0 #111;
cursor: default;
display: none !important;
}
.balance_items_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
/*max-width: 1031px;*/
width: 100%;
justify-content: space-evenly;
}
.balance_line,
.second_balance_item {
max-width: 608px;
width: 100%;
}
.balance_line {
opacity: 0.3;
border: 1px solid #dadada;
}
.balance_line:not(:last-child) {
margin-bottom: 26px;
}
.balance_diagram_number_texts_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
margin-bottom: 24px;
}
.balance_diagram_text {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 22px;
color: #f0f0f0;
}
.balacne_diagram_hidden_info,
.balacne_diagram_hidden_title,
.balance_diagram_number {
font-family: Open Sans, sans-serif;
font-style: normal;
}
.on_account {
color: #a5aab7 !important;
}
.balance_diagram_number {
font-weight: 700;
font-size: 24px;
line-height: 22px;
color: #f0f0f0;
}
.balance_diagram_number svg {
margin-left: 3px;
}
.balance_diagram_hidden_img_text_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.balance_diagrams_hidden_item {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 20px;
}
.balance_diagram_hidden_img {
width: 48px;
height: 48px;
margin-right: 16px;
}
.balance_diagram_hidden_img img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.balacne_diagram_hidden_title {
font-weight: 600;
font-size: 16px;
line-height: 18px;
color: #dadada;
margin-bottom: 12px;
}
.balacne_diagram_hidden_info {
font-weight: 700;
font-size: 18px;
line-height: 18px;
color: #e5d6a0;
}
.balance_diagram_hidden_date {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 18px;
color: #dadada;
}
.svg_number_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.balance_diagram_number.invested {
margin-right: 16px;
}
.balance_diagrams_hidden_div {
display: none;
}
.balance_diagrams_hidden_div.open {
display: block !important;
}
.open_diagram_div.active .open_svg {
transform: rotate(-180deg);
}
.open_diagram_div.active .invested {
color: #e5d6a0;
}
.open_diagram_div.active .invested_svg path {
stroke: #e5d6a0;
}
@media (min-width: 1131px) and (max-width: 1920px) {
.first_balance_item {
margin-right: 40px !important;
}
}
@media (min-width: 801px) and (max-width: 1130px) {
.first_balance_item {
margin-right: 40px !important;
}
}
@media (min-width: 426px) and (max-width: 800px) {
.first_balance_item {
margin: 0 auto 60px;
display: block;
}
}
@media (max-width: 800px) {
.balance_items_wrapper {
-ms-flex-direction: column;
flex-direction: column;
}
.balance_line,
.second_balance_item {
max-width: unset !important;
}
}
.personal_area_mobile_svg{
display: flex;
align-items: center;
}
@media (max-width: 540px) {
.completed_projects_items_wrapper {
margin: 0;
}
}
@media (max-width: 426px){
.balance_item.first_balance_item .chart{
width: 148px!important;
height: 148px!important;
border:29px solid #A5AAB7!important;
}
}
.personal_area_faq_svg{
cursor: pointer;
}
.personal_area{
background-attachment: fixed;
}
@media (min-width:1031px) and (max-width:1088px){
/*.special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 39%;*/
/* }*/
/*.small_item_info3 {*/
/* width: 100%;*/
/* margin-bottom: 10px;*/
/*}*/
.special_project_item .small_item_info1{
margin-bottom:unset!important;
}
.special_project_item .small_item_info2 {
font-size: 28px!important;
margin-bottom: 3px!important;
}
.special_project_item .small_item_info_svg_wrapper {
margin-bottom: 28px!important;
}
}
@media(max-width:710px){
.small_item_info3{
align-items: unset!important;
}
}
@media (min-width: 426px) and (max-width:550px){
.small_item_svg_wrapper svg{
width: 28px!important;
height: 28px!important;
}
.removeBookmark {
position: absolute;
right: 20px!important;
}
}
@media (max-width:425px){
.small_item_svg_wrapper svg{
width: 24px!important;
height: 24px!important;
}
.removeBookmark {
position: absolute;
right: 20px!important;
}
}
.completed_project_investment{
position: relative;
}
/*.completed_project_investment .small_item_info4_svg_wrapper {*/
/* position: absolute;*/
/* right: 40px;*/
/*}*/
/*@media (min-width:530px) and (max-width:600px){*/
/* .special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 37%;*/
/* }*/
/*}*/
/*@media (min-width:481px) and (max-width:529px){*/
/* .special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 36%;*/
/* }*/
/*}*/
/* @media (max-width:480px){*/
/* .completed_project_investment .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 36%;*/
/* }*/
/*}*/
@media (min-width:446px) and (max-width:600px){
.small_item_img {
width: 130px!important;
height: 130px!important;
margin-right: 15px!important;
}
}
@media (max-width:445px){
.small_item_img {
width: 110px!important;
height: 110px!important;
margin-right: 10px!important;
}
}
@media(max-width:600px){
.completed_project_investment .small_item_info_svg_wrapper{
margin-bottom: 15px!important;
}
/*.completed_project_investment .small_item_info3{*/
/* margin-bottom: 10px!important;*/
/* }*/
.completed_project_investment .small_item_title_svg_wrapper{
margin-bottom: 3px!important;
}
.completed_project_investment .small_item_info1{
margin-bottom: 3px!important;
}
.small_item_info4_svg svg {
width: 18px!important;
height: 18px!important;
}
.small_item_info4{
font-size: 20px!important;
}
}
@media (min-width: 551px) and (max-width:700px){
.small_item_info2{
font-size: 26px!important;
margin-bottom: 6px!important;
}
}
@media (min-width: 481px) and (max-width:550px){
.small_item_info2{
font-size: 24px!important;
margin-bottom: 4px!important;
}
}
@media (min-width: 426px) and (max-width:480px){
.small_item_info2{
font-size: 22px!important;
margin-bottom: 3px!important;
}
}
@media (min-width: 361px) and (max-width:425px){
.small_item_info2{
font-size: 20px!important;
margin-bottom: 3px!important;
}
}
@media (max-width:360px){
.small_item_info2{
font-size: 18px!important;
margin-bottom: 3px!important;
}
}
@media (max-width: 710px) {
.small_item_info3 span{
display: none;
}
}
@media(max-width:501px){
.small_item_info3{
font-size: 14px!important;
}
} | public/website/css/personal_area_second.css | *,
.filter_input_label {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.special_main_wrapper {
background-image: linear-gradient(180deg, rgba(13, 21, 30, 0), #0d151e), url(../images/log_in_back.png);
background-color: #0d151e;
background-repeat: no-repeat;
background-size: cover;
}
.footer_social_link a svg path:hover {
fill: #d2be8b;
}
.active_body {
overflow: hidden;
}
.personal_area {
width: 100%;
background-position-y: 48%;
background-repeat: no-repeat;
padding-bottom: 120px;
padding-top: 70px;
position: relative;
}
.persoanl_area_link,
.personal_area_list_btn {
font-style: normal;
line-height: 18px;
padding: 15px 10px;
font-family: Inter, sans-serif;
}
.personal_area_wrapper {
max-width: 1222px;
width: 100%;
margin: 0 auto;
}
.personal_are_title {
margin-bottom: 33px;
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 36px;
letter-spacing: -0.022em;
color: #dadada;
text-align: left;
}
.personal_area_list_wrapper {
display: -ms-flexbox;
display: flex;
max-width: 1222px;
width: 100%;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
}
.persoanl_area_link {
font-weight: 600;
font-size: 14px;
color: #9b8e6c;
cursor: pointer;
text-decoration: none;
}
.persoanl_area_link.active,
.persoanl_area_link:hover {
background: #1f262e;
color: #e5d6a0;
}
.personal_area_list {
list-style: none;
}
.personal_area_list_btn {
font-weight: 600;
font-size: 14px;
color: #9b8e6c;
cursor: pointer;
outline: 0;
background: 0 0;
border: none;
}
.personal_area_list_btn:hover {
background: #1f262e;
color: #e5d6a0;
}
.personal_area_main_nav {
margin-bottom: 41px;
}
.hidden_svg,
.mobile_personal_area_change_password_status_links_wrapper,
.personal_area_mobile_nav_wrapper {
display: none;
}
.completed_projects_items_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.completed_project_first_item {
width: 279px;
margin-right: 40px;
margin-bottom: 32px;
}
.small_item_title_svg_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 8px;
}
.hiiden_title,
.small_item_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 130%;
color: #f0f0f0;
}
.filter_input_span,
.filter_of_catagories_wrapper_title,
.first_item_title {
font-family: Open Sans, sans-serif;
font-style: normal;
}
.first_item_title {
font-weight: 600;
font-size: 17px;
line-height: 22px;
color: #f0f0f0;
margin-bottom: 19px;
}
.filter_of_catagories_wrapper_title {
font-weight: 700;
font-size: 15px;
line-height: 16px;
letter-spacing: -0.03em;
color: #e5d6a0;
margin-bottom: 18px;
}
.filter_of_catagories_wrapper_check_inputs {
margin-bottom: 47px;
}
.check_input_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
margin-bottom: 16px;
}
.filter_input_span {
font-weight: 400;
font-size: 14px;
line-height: 16px;
letter-spacing: -0.03em;
color: #f0f0f0;
}
.filter_btn1,
.filter_btn2 {
border: 1px solid #e5d6a0;
font-family: Open Sans, sans-serif;
color: #e5d6a0;
outline: 0;
line-height: 18px;
background: 0 0;
font-style: normal;
font-size: 14px;
}
.filter_btn1:hover {
background: #e5d6a0;
color: #1f262e;
}
.filter_btn2:hover {
background: #e5d6a0;
color: #1f262e;
}
.filter_input_label {
width: 16px;
height: 16px;
border: 1px solid #e5d6a0;
box-sizing: border-box;
display: inline-block;
position: relative;
}
.filter_inputs_btns_wrapper,
.small_item_img_text_wrapper {
display: -ms-flexbox;
}
.filter_inputs_btns_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.filter_btn1 {
width: 122px;
margin-right: 8px;
}
.filter_btn1,
.filter_btn2 {
height: 40px;
cursor: pointer;
font-weight: 600;
}
.filter_btn2 {
width: 181px;
}
.completed_project_small_item {
max-width: 880px;
width: 100%;
padding: 40px;
background: #1f262e;
margin-bottom: 24px;
}
.completed_project_second_item {
height: 2003px;
overflow-y: scroll;
}
.completed_project_second_item::-webkit-scrollbar {
width: 2px;
}
.completed_project_second_item::-webkit-scrollbar-track {
border-radius: 2px;
}
.completed_project_second_item::-webkit-scrollbar-thumb {
border-radius: 2px;
background: #9b8e6c;
}
.small_item_img_text_wrapper {
display: flex;
-ms-flex-align: start;
align-items: flex-start;
margin-bottom: 40px;
}
.hidden_city,
.hidden_img,
.hidden_price {
display: none;
}
.small_item_img {
margin-right: 40px;
}
.hidden_img,
.star_svg {
margin-right: 8px;
}
.smal_item_text_wrapper {
max-width: 599px;
width: 100%;
}
.small_item_info1,
.small_item_info2 {
display: -ms-flexbox;
-webkit-box-align: center;
}
.small_item_info1 {
font-weight: 700;
font-size: 16px;
color: #a5aab7;
margin-bottom: 8px;
}
.small_item_info1,
.small_item_info2 {
font-family: Inter, sans-serif;
font-style: normal;
line-height: 18px;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info2 {
font-weight: 600;
font-size: 36px;
color: #e5d6a0;
margin-bottom: 10px;
}
.small_item_info3,
.small_item_info3 span {
font-size: 16px;
font-family: Inter, sans-serif;
}
.small_item_info3,
.small_item_info_svg_wrapper {
display: -ms-flexbox;
}
.small_item_info_svg_wrapper {
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 16px;
}
.small_item_info3,
.small_item_info_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info3 {
font-style: normal;
font-weight: 500;
color: #fff;
}
.small_item_info3 span,
.small_item_info4_svg_wrapper {
display: -ms-flexbox;
-webkit-box-align: center;
}
.small_item_info3 span {
font-style: normal;
font-weight: 700;
color: #a5aab7;
}
.small_item_info3 span,
.small_item_info4_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_info4 {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 18px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
color: #e5d6a0;
margin-left: 8px;
}
.small_item_show_more_text,
.small_item_show_more_text2 {
line-height: 24px;
letter-spacing: -0.011em;
color: #f0f0f0;
font-size: 16px;
font-family: Inter, sans-serif;
font-weight: 400;
}
.small_item_show_more_text_wrapper {
margin-bottom: 41px;
}
.small_item_show_more_text {
font-style: normal;
display: inline-block;
}
.small_item_show_more_text2 {
font-style: normal;
display: none;
}
.small_item_show_more_text2.open {
display: block;
}
.read_more_btn {
display: inline-block;
color: #e5d6a0;
background: 0 0;
border: none;
cursor: pointer;
}
.small_item_star_number_wrapper,
.star_svg_wrapper {
display: -ms-flexbox;
}
.small_item_star_number_wrapper {
-ms-flex-pack: justify;
justify-content: space-between;
}
.small_item_star_number_wrapper,
.star_svg_wrapper {
display: flex;
-ms-flex-align: center;
align-items: center;
}
.small_item_star_date {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 18px;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
color: #dadada;
}
.sign_up_check_input_wrapper.active .sign_up_input_label:after {
content: "";
width: 8px;
height: 8px;
background: #e5d6a0;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
transform: translate(35%, 34%);
}
.check_input_wrapper.active .filter_input_span {
color: #e5d6a0;
}
.check_input_wrapper.active .filter_input_label:after {
content: "";
width: 8px;
height: 8px;
background: #e5d6a0;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: absolute;
transform: translate(35%, 34%);
}
.jq-ry-group-wrapper {
position: relative;
width: 100px;
}
.jq-ry-normal-group {
position: relative;
z-index: 1;
}
.active_star {
position: absolute;
left: 0;
top: 0;
z-index: 2;
overflow: hidden;
}
.jq-ry-rated-group {
width: 100px;
}
.jq-ry-normal-group.jq-ry-group svg,
.jq-ry-rated-group.jq-ry-group svg {
width: 18px !important;
height: 18px !important;
}
.hidden_first_project {
display: none;
}
.bookmarks_second_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: -0.006em;
color: #dadada;
margin-right: 10px;
}
.bookmarks_title,
.faq_main_title {
font-family: Inter, sans-serif;
font-style: normal;
color: #d2be8b;
letter-spacing: -0.022em;
}
.bookmarks_svg_title_wrapper {
display: -ms-flexbox;
display: flex;
}
.bookmarks_title {
font-weight: 700;
font-size: 24px;
line-height: 48px;
}
.personal_bookmarks_wrapper {
width: 100%;
position: relative;
display: none;
}
@media (min-width: 769px) and (max-width: 1285px) {
.personal_area_list.persoanl_area_link {
width: 48%;
}
.personal_area_list_wrapper {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.personal_area_main_nav {
margin-bottom: 41px;
width: 80%;
}
}
@media (max-width: 1285px) {
.personal_area_wrapper {
width: 93% !important;
}
.faq_main_title {
display: block !important;
}
.personal_are_title {
margin-bottom: unset !important;
}
}
@media (max-width: 768px) {
.balance_item.first_balance_item .chart{
width: 214px!important;
height: 214px!important;
}
.personal_area_mobile_nav_wrapper,
.terms_of_use_main_title {
display: block !important;
}
.mobile_persoanl_area_link,
.mobile_personal_area_list_btn {
font-style: normal;
font-weight: 600;
font-size: 14px;
cursor: pointer;
text-decoration: none;
}
.persoanl_area_link {
padding: 15px 5px !important;
}
.personal_area_main_nav {
display: none !important;
}
.personal_title_nav_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
}
.mobile_personal_area_box {
width: 48px;
height: 32px;
background: #1f262e;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
.mobile_personal_area_box:hover {
border: 1px solid #e5d6a0;
}
.personal_mobile_nav_list_wrapper {
position: fixed;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
top: -3px;
left: 0;
background: #0d151e;
text-align: center;
box-sizing: border-box;
height: 100vh;
z-index: 1;
-ms-flex-pack: center !important;
justify-content: center !important;
overflow-y: scroll;
display: none;
padding: 40px 40px 119px;
}
.personal_area_list_wrapper {
max-width: unset !important;
width: unset !important;
-ms-flex-direction: column;
flex-direction: column;
}
.personal_area_list {
padding-bottom: 19px;
}
.perosnal_line {
margin-bottom: 19px;
max-width: 687px;
width: 100%;
height: 0;
border: 1px solid #1c2733;
}
.mobile_persoanl_area_link {
font-family: Inter, sans-serif;
line-height: 18px;
color: #dadada;
padding: 15px 10px;
}
.mobile_persoanl_area_link:hover {
color: #e5d6a0;
}
.mobile_persoanl_area_link.active {
background: #1f262e;
color: #e5d6a0;
}
.mobile_personal_area_list_btn {
font-family: Inter, sans-serif;
line-height: 18px;
color: #dadada;
outline: 0;
border: none;
background: 0 0;
}
.mobile_personal_area_list_btn:hover {
color: #e5d6a0;
}
}
@media (min-width: 426px) and (max-width: 1285px) {
.personal_title_nav_wrapper {
margin-bottom: 58px !important;
}
}
@media (min-width: 687px) and (max-width: 755px) {
.perosnal_area_phone_mail_wrapper {
margin-right: unset !important;
margin-bottom: 30px;
}
.mobile_personal_area_change_password_status_links_wrapper {
display: -ms-flexbox !important;
display: flex !important;
}
.personal_area_change_password_status_links_wrapper {
display: none !important;
}
.perosnal_area_phone_passport_info_details_wrapper {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: unset !important;
align-items: unset !important;
margin-bottom: 40px;
}
.personal_area_name_info_wrapper {
margin-right: unset !important;
}
.personal_area_image_link_wrapper {
margin-right: 50px !important;
}
.personal_area_password_status_link {
width: 180px !important;
}
.personal_area_img_link {
width: 213px !important;
padding: 19px 0 !important;
}
.personal_area_img2 img {
width: 171px !important;
}
.personal_area_img1 img {
width: 38px !important;
}
.personal_area_img3 {
display: block !important;
position: relative;
left: 92%;
bottom: 17px;
width: 38px;
}
.personal_area_images_wrapper {
margin-bottom: 5px !important;
}
.personal_area_img2 {
width: 171px !important;
}
}
@media (max-width: 768px) {
.personal_area {
min-height: 730px !important;
padding-bottom: 50px !important;
}
.personal_area_terms_of_use {
padding-top: 40px !important;
padding-bottom: 70px !important;
}
}
@media (min-width: 501px) and (max-width: 730px) {
.personal_are_title {
font-size: 32px !important;
}
}
@media (min-width: 426px) and (max-width: 500px) {
.personal_are_title {
font-size: 28px !important;
}
}
@media (min-width: 361px) and (max-width: 425px) {
.personal_are_title {
font-size: 26px !important;
margin-bottom: 24px !important;
}
}
@media (max-width: 360px) {
.personal_are_title {
font-size: 24px !important;
}
}
.second_box {
background: #0d151e;
border: 1px solid #e5d6a0;
}
@media (min-width: 426px) and (max-width: 768px) {
.special_main_wrapper {
min-height: unset !important;
background-image: url(../images/log_in_second_img.png) !important;
}
}
@media (max-width: 425px) {
.personal_mobile_nav_list_wrapper {
padding: 24px 24px 100px !important;
}
.personal_title_nav_wrapper {
margin-bottom: 20px !important;
}
#doughnutChart svg,
.chart {
width: 148px !important;
height: 148px !important;
}
.first_balance_item {
margin: 0 auto 40px;
display: block;
}
.special_main_wrapper {
background-image: url(../images/mobile_confirm.png) !important;
min-height: unset !important;
}
}
@media (max-width: 1030px) {
.completed_project_small_item {
max-width: unset !important;
}
.top {
min-height: 170px !important;
}
.completed_projects_items_wrapper {
-ms-flex-direction: column;
flex-direction: column;
}
.hidden_second_project {
display: none !important;
}
.hidden_first_project.open {
display: block !important;
}
.completed_project_first_item {
margin-right: unset !important;
margin-left: unset !important;
width: 80% !important;
margin-bottom: 40px;
}
.bookmarks_childs_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
}
.bookmarks_svg_wrapper svg.active {
transform: rotate(-180deg);
}
.personal_bookmarks_wrapper {
display: block !important;
}
}
.faq_line,
.personal_area_faq_items_wrapper {
max-width: 608px;
width: 100%;
}
@media (min-width: 426px) and (max-width: 1030px) {
.personal_area {
padding-top: 50px !important;
}
}
@media (min-width: 1031px) and (max-width: 1030px) {
.personal_area {
padding-top: 135px !important;
}
}
@media (max-width: 690px) {
/*.small_item_info_svg_wrapper {*/
/* -ms-flex-wrap: wrap;*/
/* flex-wrap: wrap;*/
/* -ms-flex-align: end !important;*/
/* align-items: flex-end !important;*/
/* -ms-flex-pack: end !important;*/
/*}*/
.small_item_info3 {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: unset !important;
align-items: unset !important;
}
.small_item_info3 span {
margin-bottom: 5px;
}
}
@media (min-width:551px) and (max-width:700px){
.small_item_info2 {
font-size: 30px !important;
}
}
@media (min-width: 481px) and (max-width: 550px) {
.small_item_title {
font-size: 20px !important;
}
.small_item_info2 {
font-size: 26px !important;
}
.balance_diagram_number,
.faq_main_title,
.terms_of_use_main_title {
font-size: 22px !important;
}
}
@media (min-width: 426px) and (max-width: 480px) {
.small_item_info2 {
font-size: 22px !important;
}
.balance_diagram_number {
font-size: 20px !important;
}
.small_item_title {
font-size: px !important;
}
.small_item_img_text_wrapper {
margin-bottom: 20px !important;
}
.small_item_show_more_text_wrapper {
margin-bottom: 25px;
}
.faq_main_title,
.terms_of_use_main_title {
font-size: 20px !important;
}
}
@media (min-width: 361px) and (max-width: 425px) {
.hiiden_title {
display: block !important;
font-size: 16px !important;
}
.small_item_title {
display: none !important;
}
.small_item_info2 {
font-size: 22px !important;
}
}
@media (max-width: 360px) {
.hiiden_title {
font-size: 14px !important;
display: block !important;
}
.small_item_title {
display: none !important;
}
.small_item_info2 {
font-size: 18px !important;
}
}
.hiiden_title {
display: none;
}
@media (max-width: 470px) {
.personal_area {
padding-top: 30px !important;
}
.balacne_diagram_hidden_title {
font-size: 14px !important;
}
.balacne_diagram_hidden_info {
font-size: 16px !important;
}
.balance_diagram_number,
.faq_main_title,
.terms_of_use_main_title {
font-size: 18px !important;
}
.balance_diagram_number svg {
width: 10px !important;
height: 12px !important;
}
.terms_of_use_main_title {
line-height: unset !important;
}
/*.completed_project_second_item {*/
/* padding: 20px!important;*/
/*}*/
.small_item_svg_wrapper svg {
width: 20px !important;
height: 20px !important;
}
.hidden_img {
display: block !important;
}
.small_item_img,
.small_item_info1,
.small_item_info2,
.small_item_info_svg_wrapper {
display: none !important;
}
.hidden_city,
.hidden_price {
display: block !important;
font-family: Inter, sans-serif;
font-style: normal;
}
.hidden_price {
font-weight: 700;
font-size: 14px;
line-height: 18px;
color: #e5d6a0;
margin-bottom: 6px;
}
.hidden_city {
font-weight: 400;
font-size: 12px;
line-height: 16px;
letter-spacing: -0.01em;
color: #f0f0f0;
}
}
@media (min-width: 426px) and (max-width: 690px) {
.small_item_show_more_text,
.small_item_show_more_text2,
.small_item_star_date {
font-size: 14px !important;
}
}
@media (max-width: 425px) {
.completed_project_small_item {
padding: 10px !important;
}
.small_item_show_more_text,
.small_item_show_more_text2,
.small_item_star_date {
font-size: 12px !important;
}
.small_item_img_text_wrapper {
margin-bottom: 10px !important;
}
.small_item_show_more_text_wrapper {
margin-bottom: 16px !important;
}
}
@media (max-width: 370px) {
.bookmarks_title {
margin-bottom: 8px;
}
.bookmarks_childs_wrapper {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 20px;
}
}
.personal_area_faq {
width: 100%;
}
.personal_area_faq_title_svg_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 16px;
}
.faq_line {
border: 1px solid #848993;
box-sizing: border-box;
}
.faq_line:not(:last-child),
.personal_area_faq_item {
margin-bottom: 27px;
}
.personal_area_faq_title {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 15px;
line-height: 22px;
color: #f0f0f0;
}
.personal_area_faq_hidden_info {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #bcbcbc;
display: none;
}
.faq_main_title,
.terms_of_use_main_title {
font-weight: 700;
line-height: 48px;
display: none;
}
.personal_area_faq_hidden_info.open {
display: block !important;
}
.personal_area_faq_svg svg.active {
transform: rotate(-180deg);
}
.personal_area_faq_title.active {
color: #e5d6a0;
}
.faq_main_title {
font-size: 24px;
margin-bottom: 16px;
}
.terms_of_use_personal_area_item_info,
.terms_of_use_personal_area_item_title {
font-size: 14px;
color: #dadada;
font-style: normal;
font-family: Inter, sans-serif;
}
@media (min-width: 426px) and (max-width: 768px) {
.personal_area_faq {
padding-top: 40px !important;
padding-bottom: 48px !important;
}
}
@media (min-width: 371px) and (max-width: 425px) {
.personal_area_faq {
padding-top: 30px !important;
padding-bottom: 40px !important;
}
}
@media (max-width: 370px) {
.personal_area_faq {
padding-top: 20px !important;
padding-bottom: px !important;
}
}
.personal_area_terms_of_use {
padding-top: 64px;
padding-bottom: 57px;
}
.terms_of_use_personal_area_item_title {
font-weight: 700;
margin-bottom: 10px;
}
.terms_of_use_personal_area_item_info {
font-weight: 400;
}
.terms_of_use_personal_area_item {
margin-bottom: 5px;
}
.terms_of_use_main_title {
margin-bottom: 16px;
font-family: Inter, sans-serif;
font-style: normal;
font-size: 24px;
letter-spacing: -0.022em;
color: #d2be8b;
}
.chart {
width: 292px;
height: 292px;
border: 60px solid #A5AAB7;
border-radius: 50%;
}
.doughnutTip {
position: absolute;
min-width: 30px;
max-width: 300px;
padding: 5px 15px;
border-radius: 1px;
background: rgba(0, 0, 0, 0.8);
color: #ddd;
font-size: 17px;
text-shadow: 0 1px 0 #000;
text-transform: uppercase;
text-align: center;
line-height: 1.3;
letter-spacing: 0.06em;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
pointer-events: none;
}
.doughnutTip:after {
position: absolute;
left: 50%;
bottom: -6px;
content: "";
height: 0;
margin: 0 0 0 -6px;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-top: 6px solid rgba(0, 0, 0, 0.7);
line-height: 0;
}
.doughnutSummaryTitle {
position: absolute;
top: 50%;
width: 100%;
margin-top: -27%;
font-size: 22px;
letter-spacing: 0.06em;
}
.doughnutSummaryNumber {
position: absolute;
top: 50%;
width: 100%;
margin-top: -15%;
font-size: 55px;
}
.chart path:hover {
opacity: 0.65;
}
.hidden_div {
display: none;
}
.hidden_div.open {
display: block !important;
}
#doughnutChart svg {
width: 292px;
height: 292px;
}
.doughnutSummary {
position: absolute;
top: 50%;
left: 50%;
color: #d5d5d5;
text-align: center;
text-shadow: 0 -1px 0 #111;
cursor: default;
display: none !important;
}
.balance_items_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
/*max-width: 1031px;*/
width: 100%;
justify-content: space-evenly;
}
.balance_line,
.second_balance_item {
max-width: 608px;
width: 100%;
}
.balance_line {
opacity: 0.3;
border: 1px solid #dadada;
}
.balance_line:not(:last-child) {
margin-bottom: 26px;
}
.balance_diagram_number_texts_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
margin-bottom: 24px;
}
.balance_diagram_text {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 22px;
color: #f0f0f0;
}
.balacne_diagram_hidden_info,
.balacne_diagram_hidden_title,
.balance_diagram_number {
font-family: Open Sans, sans-serif;
font-style: normal;
}
.on_account {
color: #a5aab7 !important;
}
.balance_diagram_number {
font-weight: 700;
font-size: 24px;
line-height: 22px;
color: #f0f0f0;
}
.balance_diagram_number svg {
margin-left: 3px;
}
.balance_diagram_hidden_img_text_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.balance_diagrams_hidden_item {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 20px;
}
.balance_diagram_hidden_img {
width: 48px;
height: 48px;
margin-right: 16px;
}
.balance_diagram_hidden_img img {
width: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.balacne_diagram_hidden_title {
font-weight: 600;
font-size: 16px;
line-height: 18px;
color: #dadada;
margin-bottom: 12px;
}
.balacne_diagram_hidden_info {
font-weight: 700;
font-size: 18px;
line-height: 18px;
color: #e5d6a0;
}
.balance_diagram_hidden_date {
font-family: Inter, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 18px;
color: #dadada;
}
.svg_number_wrapper {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.balance_diagram_number.invested {
margin-right: 16px;
}
.balance_diagrams_hidden_div {
display: none;
}
.balance_diagrams_hidden_div.open {
display: block !important;
}
.open_diagram_div.active .open_svg {
transform: rotate(-180deg);
}
.open_diagram_div.active .invested {
color: #e5d6a0;
}
.open_diagram_div.active .invested_svg path {
stroke: #e5d6a0;
}
@media (min-width: 1131px) and (max-width: 1920px) {
.first_balance_item {
margin-right: 40px !important;
}
}
@media (min-width: 801px) and (max-width: 1130px) {
.first_balance_item {
margin-right: 40px !important;
}
}
@media (min-width: 426px) and (max-width: 800px) {
.first_balance_item {
margin: 0 auto 60px;
display: block;
}
}
@media (max-width: 800px) {
.balance_items_wrapper {
-ms-flex-direction: column;
flex-direction: column;
}
.balance_line,
.second_balance_item {
max-width: unset !important;
}
}
.personal_area_mobile_svg{
display: flex;
align-items: center;
}
@media (max-width: 540px) {
.completed_projects_items_wrapper {
margin: 0;
}
}
@media (max-width: 426px){
.balance_item.first_balance_item .chart{
width: 148px!important;
height: 148px!important;
border:29px solid #A5AAB7!important;
}
}
.personal_area_faq_svg{
cursor: pointer;
}
.personal_area{
background-attachment: fixed;
}
@media (min-width:1031px) and (max-width:1088px){
/*.special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 39%;*/
/* }*/
/*.small_item_info3 {*/
/* width: 100%;*/
/* margin-bottom: 10px;*/
/*}*/
.special_project_item .small_item_info1{
margin-bottom:unset!important;
}
.special_project_item .small_item_info2 {
font-size: 28px!important;
margin-bottom: 3px!important;
}
.special_project_item .small_item_info_svg_wrapper {
margin-bottom: 28px!important;
}
}
@media(max-width:710px){
.small_item_info3{
align-items: unset!important;
}
}
@media (min-width: 426px) and (max-width:550px){
.small_item_svg_wrapper svg{
width: 28px!important;
height: 28px!important;
}
.removeBookmark {
position: absolute;
right: 20px!important;
}
}
@media (max-width:425px){
.small_item_svg_wrapper svg{
width: 24px!important;
height: 24px!important;
}
.removeBookmark {
position: absolute;
right: 20px!important;
}
}
.completed_project_investment{
position: relative;
}
/*.completed_project_investment .small_item_info4_svg_wrapper {*/
/* position: absolute;*/
/* right: 40px;*/
/*}*/
/*@media (min-width:530px) and (max-width:600px){*/
/* .special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 37%;*/
/* }*/
/*}*/
/*@media (min-width:481px) and (max-width:529px){*/
/* .special_project_item .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 36%;*/
/* }*/
/*}*/
/* @media (max-width:480px){*/
/* .completed_project_investment .small_item_info4_svg_wrapper {*/
/* right: unset!important;*/
/* top: 36%;*/
/* }*/
/*}*/
@media (min-width:446px) and (max-width:600px){
.small_item_img {
width: 130px!important;
height: 130px!important;
margin-right: 15px!important;
}
}
@media (max-width:445px){
.small_item_img {
width: 110px!important;
height: 110px!important;
margin-right: 10px!important;
}
}
@media(max-width:600px){
.completed_project_investment .small_item_info_svg_wrapper{
margin-bottom: 15px!important;
}
/*.completed_project_investment .small_item_info3{*/
/* margin-bottom: 10px!important;*/
/* }*/
.completed_project_investment .small_item_title_svg_wrapper{
margin-bottom: 3px!important;
}
.completed_project_investment .small_item_info1{
margin-bottom: 3px!important;
}
.small_item_info4_svg svg {
width: 18px!important;
height: 18px!important;
}
.small_item_info4{
font-size: 20px!important;
}
}
@media (min-width: 551px) and (max-width:700px){
.small_item_info2{
font-size: 26px!important;
margin-bottom: 6px!important;
}
}
@media (min-width: 481px) and (max-width:550px){
.small_item_info2{
font-size: 24px!important;
margin-bottom: 4px!important;
}
}
@media (min-width: 426px) and (max-width:480px){
.small_item_info2{
font-size: 22px!important;
margin-bottom: 3px!important;
}
}
@media (min-width: 361px) and (max-width:425px){
.small_item_info2{
font-size: 20px!important;
margin-bottom: 3px!important;
}
}
@media (max-width:360px){
.small_item_info2{
font-size: 18px!important;
margin-bottom: 3px!important;
}
}
@media (max-width: 710px) {
.small_item_info3 span{
display: none;
}
}
@media(max-width:501px){
.small_item_info3{
font-size: 14px!important;
}
} | 0.348202 | 0.085595 |
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
height: 100vh;
width: 100vw;
margin: 0;
overflow: hidden;
background-color:#9bd3e9;
color: #111;
font-family: Arial, Helvetica, sans-serif;
display: grid;
place-content: center;
}
h1 {
width: 100%;
margin: 0 0 30px;
font-size: 6vw;
font-family: "Mountains of Christmas", cursive;
text-align: center;
flex-shrink: 0;
color: #55901e;
}
h2 {
margin-left: 20px;
font-family: "Mountains of Christmas", cursive;
color: #55901e;
}
.join {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
border-radius: 20px;
background-color: white;
border: 10px solid #e23857;
border-image: repeating-linear-gradient(-45deg, white, white 10px, #e23857 10px, #e23857 20px) 10;
}
.join:before {
content: "";
position: absolute;
top: -10px;
left: 50%;
width: 260px;
height: 260px;
border-radius: 50%;
transform: translate(-50%, -230px);
background: url(./assets/tree.png) center 40% no-repeat #9bd3e9;
background-size: 200%;
border: 10px solid white;
box-shadow: inset 0px -4px 20px 10px rgba(0,0,0,0.7), 0px 5px 15px 10px rgba(0,0,0,0.2);
}
.join:after {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 220px;
height: 220px;
border-radius: 50%;
box-shadow: inset 0px 15px white, inset 0px 15px 1px 1px white;
transform: translate(-50%, -225px);
opacity: 0.7;
filter: blur(4px);
}
.join-form {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
max-width: 600px;
min-width: 320px;
text-align: center;
}
.join-form label {
width: max-content;
flex-shrink: 0;
font-size: 1.4em;
font-weight: bold;
}
.join-form input {
padding: 15px;
border-radius: 5px;
border: 0;
font-size: 1.1em;
text-align: center;
letter-spacing: 2px;
color: #555;
box-shadow: inset 0px 1px 2px 1px rgba(0, 0, 0, 0.4);
}
.join-form button {
display: block;
padding: 15px;
border-radius: 5px;
border: 0;
font-size: 1.1em;
color: white;
background-color: #55901e;
cursor: pointer;
flex-shrink: 0;
}
.join-form button:hover {
background-color: #3f6f12;
}
.board-holder {
height: 100vh;
width: 100vw;
background-color: white;
border: 10px solid #e23857;
border-image: repeating-linear-gradient(-45deg, white, white 10px, #e23857 10px, #e23857 20px) 10;
}
.board-holder h1 {
position: absolute;
top: 20px;
left: 24px;
width: max-content;
margin: 0;
text-align: left;
font-size: 3em;
color: #3694a7;
z-index: 3;
}
.hidden {
display: none;
}
.users {
z-index: 999;
position: absolute;
top: 20px;
right: 24px;
display: flex;
justify-items: center;
align-items: center;
}
.users-icon {
display: block;
width: 60px;
height: 60px;
margin: 0;
border-radius: 50%;
border: 2px solid #3694a7;
list-style: none;
background: url(./assets/avatar.png) center no-repeat;
background-size: 44px;
}
.users-number {
margin-left: 10px;
font-family: "Mountains of Christmas", cursive;
font-size: 2em;
font-weight: bold;
color: #3694a7;
}
#decoratedImage {
position: relative;
width: 100%;
height: calc(100vh - 200px);
padding: 40px;
background-color:#9bd3e9;
}
.contents {
width: calc((100vh - 200px) * 0.6565);
height: calc(100vh - 200px);
position: relative;
margin: 0 auto;
}
.background {
position: absolute;
bottom: 0;
left: 50%;
display: block;
height: calc(100% - 40px);
margin: 0 auto;
transform: translate(-50%, 0);
}
.item {
width: 3vh;
max-width: 40px;
}
.decoration-selector {
display: flex;
width: calc(100vw - 40px);
margin: 0 20px;
}
.decoration-selector-select {
width: max-content;
padding: 10px;
flex-shrink: 0;
}
.decorations {
width: calc(100vw - 200px);
display: flex;
list-style: none;
padding: 0;
margin: 0;
overflow-x: auto;
}
.decoration {
margin: 10px;
}
.decoration-img {
max-width: 40px;
max-height: 40px;
}
.lights-options, .user-interaction {
display: flex;
flex-direction: column;
width: max-content;
position: absolute;
left: 24px;
top: 90px;
z-index: 3;
}
.user-interaction {
left: auto;
right: 24px;
}
.lights, .share, .screenshot {
margin: 5px 0;
padding: 8px 10px 6px;
border-radius: 5px;
border: 2px solid white;
text-align: center;
font-weight: bold;
font-size: 1em;
background-color: #9bd3e9;
color: white;
}
.lights:hover, .share:hover, .screenshot:hover {
background-color: #3694a7;
}
.lights-radio {
visibility: hidden;
position: absolute;
}
.lights-radio:checked+label {
box-shadow: 0px 0px 19px 0px white;
}
.trash {
width: 200px;
position: absolute;
bottom: -20px;
right: 0;
height: 130px;
background: url(./assets/bin.png) no-repeat center;
background-size: 100%;
}
.decoration {
display: none;
}
[data-filter="bauble"] .bauble,
[data-filter="star"] .star,
[data-filter="other"] .other
{
display: block;
}
footer {
display: flex;
align-items: center;
position: absolute;
bottom: 130px;
right: 24px;
font-size: 0.7em;
}
.logo {
display: inline-block;
width: 80px;
height: 40px;
margin-left: 10px;
color: transparent;
background: url(./assets/ably-logo-full-rbg-pos.png) no-repeat center right;
background-size: contain;
}
.snowflake {
color: #fff;
font-size: 1em;
font-family: Arial, sans-serif;
text-shadow: 0 0 5px #000;
}
@keyframes snowflakes-fall {
0% {
top: -10%;
}
100% {
top: 100%;
}
}
@keyframes snowflakes-shake {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(80px);
}
}
.snowflake {
position: fixed;
top: -10%;
z-index: 9999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
-webkit-animation-name: snowflakes-fall, snowflakes-shake;
-webkit-animation-duration: 10s, 3s;
-webkit-animation-timing-function: linear, ease-in-out;
-webkit-animation-iteration-count: infinite, infinite;
-webkit-animation-play-state: running, running;
animation-name: snowflakes-fall, snowflakes-shake;
animation-duration: 10s, 3s;
animation-timing-function: linear, ease-in-out;
animation-iteration-count: infinite, infinite;
animation-play-state: running, running;
}
.snowflake:nth-of-type(0) {
left: 1%;
-webkit-animation-delay: 0s, 0s;
animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
left: 10%;
-webkit-animation-delay: 1s, 1s;
animation-delay: 1s, 1s;
}
.snowflake:nth-of-type(2) {
left: 20%;
-webkit-animation-delay: 6s, 0.5s;
animation-delay: 6s, 0.5s;
}
.snowflake:nth-of-type(3) {
left: 30%;
-webkit-animation-delay: 4s, 2s;
animation-delay: 4s, 2s;
}
.snowflake:nth-of-type(4) {
left: 40%;
-webkit-animation-delay: 2s, 2s;
animation-delay: 2s, 2s;
}
.snowflake:nth-of-type(5) {
left: 50%;
-webkit-animation-delay: 8s, 3s;
animation-delay: 8s, 3s;
}
.snowflake:nth-of-type(6) {
left: 60%;
-webkit-animation-delay: 6s, 2s;
animation-delay: 6s, 2s;
}
.snowflake:nth-of-type(7) {
left: 70%;
-webkit-animation-delay: 2.5s, 1s;
animation-delay: 2.5s, 1s;
}
.snowflake:nth-of-type(8) {
left: 80%;
-webkit-animation-delay: 1s, 0s;
animation-delay: 1s, 0s;
}
.snowflake:nth-of-type(9) {
left: 90%;
-webkit-animation-delay: 3s, 1.5s;
animation-delay: 3s, 1.5s;
}
.snowflake:nth-of-type(10) {
left: 25%;
-webkit-animation-delay: 2s, 0s;
animation-delay: 2s, 0s;
}
.snowflake:nth-of-type(11) {
left: 65%;
-webkit-animation-delay: 4s, 2.5s;
animation-delay: 4s, 2.5s;
}
@media (max-width: 548px) {
#decoratedImage {
padding: 0;
}
.background, .contents {
width: calc(100vw - 46px);
}
.background {
height: auto;
}
} | app/style.css |
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
height: 100vh;
width: 100vw;
margin: 0;
overflow: hidden;
background-color:#9bd3e9;
color: #111;
font-family: Arial, Helvetica, sans-serif;
display: grid;
place-content: center;
}
h1 {
width: 100%;
margin: 0 0 30px;
font-size: 6vw;
font-family: "Mountains of Christmas", cursive;
text-align: center;
flex-shrink: 0;
color: #55901e;
}
h2 {
margin-left: 20px;
font-family: "Mountains of Christmas", cursive;
color: #55901e;
}
.join {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px;
border-radius: 20px;
background-color: white;
border: 10px solid #e23857;
border-image: repeating-linear-gradient(-45deg, white, white 10px, #e23857 10px, #e23857 20px) 10;
}
.join:before {
content: "";
position: absolute;
top: -10px;
left: 50%;
width: 260px;
height: 260px;
border-radius: 50%;
transform: translate(-50%, -230px);
background: url(./assets/tree.png) center 40% no-repeat #9bd3e9;
background-size: 200%;
border: 10px solid white;
box-shadow: inset 0px -4px 20px 10px rgba(0,0,0,0.7), 0px 5px 15px 10px rgba(0,0,0,0.2);
}
.join:after {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 220px;
height: 220px;
border-radius: 50%;
box-shadow: inset 0px 15px white, inset 0px 15px 1px 1px white;
transform: translate(-50%, -225px);
opacity: 0.7;
filter: blur(4px);
}
.join-form {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
max-width: 600px;
min-width: 320px;
text-align: center;
}
.join-form label {
width: max-content;
flex-shrink: 0;
font-size: 1.4em;
font-weight: bold;
}
.join-form input {
padding: 15px;
border-radius: 5px;
border: 0;
font-size: 1.1em;
text-align: center;
letter-spacing: 2px;
color: #555;
box-shadow: inset 0px 1px 2px 1px rgba(0, 0, 0, 0.4);
}
.join-form button {
display: block;
padding: 15px;
border-radius: 5px;
border: 0;
font-size: 1.1em;
color: white;
background-color: #55901e;
cursor: pointer;
flex-shrink: 0;
}
.join-form button:hover {
background-color: #3f6f12;
}
.board-holder {
height: 100vh;
width: 100vw;
background-color: white;
border: 10px solid #e23857;
border-image: repeating-linear-gradient(-45deg, white, white 10px, #e23857 10px, #e23857 20px) 10;
}
.board-holder h1 {
position: absolute;
top: 20px;
left: 24px;
width: max-content;
margin: 0;
text-align: left;
font-size: 3em;
color: #3694a7;
z-index: 3;
}
.hidden {
display: none;
}
.users {
z-index: 999;
position: absolute;
top: 20px;
right: 24px;
display: flex;
justify-items: center;
align-items: center;
}
.users-icon {
display: block;
width: 60px;
height: 60px;
margin: 0;
border-radius: 50%;
border: 2px solid #3694a7;
list-style: none;
background: url(./assets/avatar.png) center no-repeat;
background-size: 44px;
}
.users-number {
margin-left: 10px;
font-family: "Mountains of Christmas", cursive;
font-size: 2em;
font-weight: bold;
color: #3694a7;
}
#decoratedImage {
position: relative;
width: 100%;
height: calc(100vh - 200px);
padding: 40px;
background-color:#9bd3e9;
}
.contents {
width: calc((100vh - 200px) * 0.6565);
height: calc(100vh - 200px);
position: relative;
margin: 0 auto;
}
.background {
position: absolute;
bottom: 0;
left: 50%;
display: block;
height: calc(100% - 40px);
margin: 0 auto;
transform: translate(-50%, 0);
}
.item {
width: 3vh;
max-width: 40px;
}
.decoration-selector {
display: flex;
width: calc(100vw - 40px);
margin: 0 20px;
}
.decoration-selector-select {
width: max-content;
padding: 10px;
flex-shrink: 0;
}
.decorations {
width: calc(100vw - 200px);
display: flex;
list-style: none;
padding: 0;
margin: 0;
overflow-x: auto;
}
.decoration {
margin: 10px;
}
.decoration-img {
max-width: 40px;
max-height: 40px;
}
.lights-options, .user-interaction {
display: flex;
flex-direction: column;
width: max-content;
position: absolute;
left: 24px;
top: 90px;
z-index: 3;
}
.user-interaction {
left: auto;
right: 24px;
}
.lights, .share, .screenshot {
margin: 5px 0;
padding: 8px 10px 6px;
border-radius: 5px;
border: 2px solid white;
text-align: center;
font-weight: bold;
font-size: 1em;
background-color: #9bd3e9;
color: white;
}
.lights:hover, .share:hover, .screenshot:hover {
background-color: #3694a7;
}
.lights-radio {
visibility: hidden;
position: absolute;
}
.lights-radio:checked+label {
box-shadow: 0px 0px 19px 0px white;
}
.trash {
width: 200px;
position: absolute;
bottom: -20px;
right: 0;
height: 130px;
background: url(./assets/bin.png) no-repeat center;
background-size: 100%;
}
.decoration {
display: none;
}
[data-filter="bauble"] .bauble,
[data-filter="star"] .star,
[data-filter="other"] .other
{
display: block;
}
footer {
display: flex;
align-items: center;
position: absolute;
bottom: 130px;
right: 24px;
font-size: 0.7em;
}
.logo {
display: inline-block;
width: 80px;
height: 40px;
margin-left: 10px;
color: transparent;
background: url(./assets/ably-logo-full-rbg-pos.png) no-repeat center right;
background-size: contain;
}
.snowflake {
color: #fff;
font-size: 1em;
font-family: Arial, sans-serif;
text-shadow: 0 0 5px #000;
}
@keyframes snowflakes-fall {
0% {
top: -10%;
}
100% {
top: 100%;
}
}
@keyframes snowflakes-shake {
0%,
100% {
transform: translateX(0);
}
50% {
transform: translateX(80px);
}
}
.snowflake {
position: fixed;
top: -10%;
z-index: 9999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
-webkit-animation-name: snowflakes-fall, snowflakes-shake;
-webkit-animation-duration: 10s, 3s;
-webkit-animation-timing-function: linear, ease-in-out;
-webkit-animation-iteration-count: infinite, infinite;
-webkit-animation-play-state: running, running;
animation-name: snowflakes-fall, snowflakes-shake;
animation-duration: 10s, 3s;
animation-timing-function: linear, ease-in-out;
animation-iteration-count: infinite, infinite;
animation-play-state: running, running;
}
.snowflake:nth-of-type(0) {
left: 1%;
-webkit-animation-delay: 0s, 0s;
animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
left: 10%;
-webkit-animation-delay: 1s, 1s;
animation-delay: 1s, 1s;
}
.snowflake:nth-of-type(2) {
left: 20%;
-webkit-animation-delay: 6s, 0.5s;
animation-delay: 6s, 0.5s;
}
.snowflake:nth-of-type(3) {
left: 30%;
-webkit-animation-delay: 4s, 2s;
animation-delay: 4s, 2s;
}
.snowflake:nth-of-type(4) {
left: 40%;
-webkit-animation-delay: 2s, 2s;
animation-delay: 2s, 2s;
}
.snowflake:nth-of-type(5) {
left: 50%;
-webkit-animation-delay: 8s, 3s;
animation-delay: 8s, 3s;
}
.snowflake:nth-of-type(6) {
left: 60%;
-webkit-animation-delay: 6s, 2s;
animation-delay: 6s, 2s;
}
.snowflake:nth-of-type(7) {
left: 70%;
-webkit-animation-delay: 2.5s, 1s;
animation-delay: 2.5s, 1s;
}
.snowflake:nth-of-type(8) {
left: 80%;
-webkit-animation-delay: 1s, 0s;
animation-delay: 1s, 0s;
}
.snowflake:nth-of-type(9) {
left: 90%;
-webkit-animation-delay: 3s, 1.5s;
animation-delay: 3s, 1.5s;
}
.snowflake:nth-of-type(10) {
left: 25%;
-webkit-animation-delay: 2s, 0s;
animation-delay: 2s, 0s;
}
.snowflake:nth-of-type(11) {
left: 65%;
-webkit-animation-delay: 4s, 2.5s;
animation-delay: 4s, 2.5s;
}
@media (max-width: 548px) {
#decoratedImage {
padding: 0;
}
.background, .contents {
width: calc(100vw - 46px);
}
.background {
height: auto;
}
} | 0.663451 | 0.149842 |
.myReH{
width:690px;
height:90px;
background:#4698ff;
font:30px/90px "微软雅黑";
color:white;
text-align: center;
padding:0 30px 0 30px;
position:relative;
}
.inHL{
position: absolute;
top: 32px;
left: 30px;
width: 27px;
height: 27px;
border: 6px solid white;
border-bottom: none;
border-right: none;
transform:rotate(-45deg);
-ms-transform:rotate(-45deg); /* IE 9 */
-moz-transform:rotate(-45deg); /* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); /* Opera */
}
.ReDH{
width:690px;
height:90px;
background:#4698ff;
font:30px/90px "微软雅黑";
color:white;
text-align: center;
padding:0 30px 0 30px;
position:relative;
}
.inHL{
position: absolute;
top: 32px;
left: 30px;
width: 27px;
height: 27px;
border: 6px solid white;
border-bottom: none;
border-right: none;
transform:rotate(-45deg);
-ms-transform:rotate(-45deg); /* IE 9 */
-moz-transform:rotate(-45deg); /* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); /* Opera */
}
.dtDetails{
width:690px;
height:140px;
background:white;
margin: 20px auto 0;
}
.dtLf{
width:194px;
height:140px;
background:url(../images/discounts.png) -3px 0px;
}
.dtLf div span:nth-child(1){
display:inline-block;
font:48px "微软雅黑";
}
.dtLf div span:nth-child(2){
display:inline-block;
font:60px "微软雅黑";
}
.dtLf>div:nth-child(2){
font:26px "微软雅黑";
text-align: right;
padding-right:13px;
color:white;
}
.dtLf>div:nth-child(1){
text-align: center;
padding-top:18px;
color:white;
}
.dtRt>div:nth-child(1){
font:30px "微软雅黑";
color:#353535;
margin:20px 0 30px 20px;
}
.dtRt>div:nth-child(2){
font:24px "微软雅黑";
color:#9f9f9f;
margin:0px 0 0px 20px;
}
.dtRt{
position:relative;
}
.arrows{
position: absolute;
top: 52px;
right: -194px;
width: 25px;
height: 25px;
border: 4px solid #d0d0d0;
border-bottom: none;
border-right: none;
transform:rotate(135deg);
-ms-transform:rotate(135deg); /* IE 9 */
-moz-transform:rotate(135deg); /* Firefox */
-webkit-transform:rotate(135deg); /* Safari 和 Chrome */
-o-transform:rotate(135deg); /* Opera */
}
.due{
position: absolute;
top: 15px;
left: 361px;
width: 115px;
height: 115px;
background: url(../images/employ.png)no-repeat 4px 1px;
}
.employ{
position: absolute;
top: 15px;
left: 361px;
width: 115px;
height: 115px;
background: url(../images/due.png)no-repeat 4px 1px;
}
.border{
height: 4px;
width: 99px;
background: #02A8F3;
position: absolute;
bottom: 0px;
left: 82px;
}
.cut{
width:660px;
height:88px;
background:white;
padding:0 45px 0 45px;
position:relative;
}
.cut li{
width:220px;
height:88px;
font:30px/88px "微软雅黑";
}
.cut li:nth-child(2){
width: 173px;
padding-left: 46px;
}
.cut li:nth-child(1){
width: 180px;
padding-left:40px;
}
.cut li:nth-child(3){
text-align: right;
width:180px;
padding-right:40px;
} | public/home/css/disTicket.css | .myReH{
width:690px;
height:90px;
background:#4698ff;
font:30px/90px "微软雅黑";
color:white;
text-align: center;
padding:0 30px 0 30px;
position:relative;
}
.inHL{
position: absolute;
top: 32px;
left: 30px;
width: 27px;
height: 27px;
border: 6px solid white;
border-bottom: none;
border-right: none;
transform:rotate(-45deg);
-ms-transform:rotate(-45deg); /* IE 9 */
-moz-transform:rotate(-45deg); /* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); /* Opera */
}
.ReDH{
width:690px;
height:90px;
background:#4698ff;
font:30px/90px "微软雅黑";
color:white;
text-align: center;
padding:0 30px 0 30px;
position:relative;
}
.inHL{
position: absolute;
top: 32px;
left: 30px;
width: 27px;
height: 27px;
border: 6px solid white;
border-bottom: none;
border-right: none;
transform:rotate(-45deg);
-ms-transform:rotate(-45deg); /* IE 9 */
-moz-transform:rotate(-45deg); /* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); /* Opera */
}
.dtDetails{
width:690px;
height:140px;
background:white;
margin: 20px auto 0;
}
.dtLf{
width:194px;
height:140px;
background:url(../images/discounts.png) -3px 0px;
}
.dtLf div span:nth-child(1){
display:inline-block;
font:48px "微软雅黑";
}
.dtLf div span:nth-child(2){
display:inline-block;
font:60px "微软雅黑";
}
.dtLf>div:nth-child(2){
font:26px "微软雅黑";
text-align: right;
padding-right:13px;
color:white;
}
.dtLf>div:nth-child(1){
text-align: center;
padding-top:18px;
color:white;
}
.dtRt>div:nth-child(1){
font:30px "微软雅黑";
color:#353535;
margin:20px 0 30px 20px;
}
.dtRt>div:nth-child(2){
font:24px "微软雅黑";
color:#9f9f9f;
margin:0px 0 0px 20px;
}
.dtRt{
position:relative;
}
.arrows{
position: absolute;
top: 52px;
right: -194px;
width: 25px;
height: 25px;
border: 4px solid #d0d0d0;
border-bottom: none;
border-right: none;
transform:rotate(135deg);
-ms-transform:rotate(135deg); /* IE 9 */
-moz-transform:rotate(135deg); /* Firefox */
-webkit-transform:rotate(135deg); /* Safari 和 Chrome */
-o-transform:rotate(135deg); /* Opera */
}
.due{
position: absolute;
top: 15px;
left: 361px;
width: 115px;
height: 115px;
background: url(../images/employ.png)no-repeat 4px 1px;
}
.employ{
position: absolute;
top: 15px;
left: 361px;
width: 115px;
height: 115px;
background: url(../images/due.png)no-repeat 4px 1px;
}
.border{
height: 4px;
width: 99px;
background: #02A8F3;
position: absolute;
bottom: 0px;
left: 82px;
}
.cut{
width:660px;
height:88px;
background:white;
padding:0 45px 0 45px;
position:relative;
}
.cut li{
width:220px;
height:88px;
font:30px/88px "微软雅黑";
}
.cut li:nth-child(2){
width: 173px;
padding-left: 46px;
}
.cut li:nth-child(1){
width: 180px;
padding-left:40px;
}
.cut li:nth-child(3){
text-align: right;
width:180px;
padding-right:40px;
} | 0.161849 | 0.062646 |
.main-wrapper {
display: flex;
flex-direction: column;
padding-bottom: 20px;
}
.top a{
color: red;
}
* {
scrollbar-width: thin;
scrollbar-color: #ff0000 transparent;
}
*::-webkit-scrollbar {
width: 5px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: #ff0000;
border-radius: 20px;
border: transparent;
}
.wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
.repo_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 80px;
}
.repo-container {
margin-top: 30px;
background-color: rgb(27, 27, 27);
border-radius: 5px;
padding: 15px;
color: #fff;
width: 350px;
margin-right: 10px;
}
form {
width: 500px;
margin: 10px auto;
}
input[type="text"],
input[type="text"]:focus,
input[type="email"],
input[type="email"]:focus,
textarea[type="text"],
textarea[type="text"]:focus {
background: transparent;
border: rgb(1, 1, 1);
border-bottom: 4px solid #ff0000;
color: #fff;
font-size: 20px;
outline: none;
padding-bottom: 10px;
}
form input {
width: 80%;
padding-left: 20px;
}
form .searchBtn {
background-color: #ff0000;
color: #fff;
padding: 10px;
font-size: 15px;
font-weight: 600;
margin-left: 5px;
}
.repo_name {
margin: 10px 0px;
font-size: 20px;
font-weight: 600;
}
.repo_description {
font-size: 16px;
padding-bottom: 10px;
height: 100px;
overflow: scroll;
overflow-x: hidden;
}
.repo_info {
margin: 20px 0px;
display: flex;
}
.repo_owner {
display: flex;
justify-content: flex-start;
}
.repo_owner h6 {
margin-top: 2px;
}
.repo_owner span {
text-transform: capitalize;
margin-left: 5px;
}
.repo_owner span a {
text-decoration: none;
padding: 5px;
color: #ff0000;
}
.repo_owner span a:hover {
color: #fff;
background-color: #ff0000;
}
.repo_info .info {
margin-right: 20px;
}
.info img {
margin-right: 6px;
height: 20px;
}
.info span {
font-size: 14px;
}
.repo_date-info {
font-size: 17px;
margin: 10px 0px 5px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
.searchRepoBtn {
border: none;
color: #fff;
font-size: 17px;
font-weight: 600;
}
.searchRepoBtn:hover {
background-color: red;
color: #fff;
}
.error {
color: red;
}
@media screen and (max-width: 600px) {
form {
width: 100%;
}
form input {
width: 300px;
}
.searchBtn {
margin-top: 5px;
}
} | src/app/components/github-user-repo-details/github-user-repo-details.component.css | .main-wrapper {
display: flex;
flex-direction: column;
padding-bottom: 20px;
}
.top a{
color: red;
}
* {
scrollbar-width: thin;
scrollbar-color: #ff0000 transparent;
}
*::-webkit-scrollbar {
width: 5px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: #ff0000;
border-radius: 20px;
border: transparent;
}
.wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
.repo_wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 80px;
}
.repo-container {
margin-top: 30px;
background-color: rgb(27, 27, 27);
border-radius: 5px;
padding: 15px;
color: #fff;
width: 350px;
margin-right: 10px;
}
form {
width: 500px;
margin: 10px auto;
}
input[type="text"],
input[type="text"]:focus,
input[type="email"],
input[type="email"]:focus,
textarea[type="text"],
textarea[type="text"]:focus {
background: transparent;
border: rgb(1, 1, 1);
border-bottom: 4px solid #ff0000;
color: #fff;
font-size: 20px;
outline: none;
padding-bottom: 10px;
}
form input {
width: 80%;
padding-left: 20px;
}
form .searchBtn {
background-color: #ff0000;
color: #fff;
padding: 10px;
font-size: 15px;
font-weight: 600;
margin-left: 5px;
}
.repo_name {
margin: 10px 0px;
font-size: 20px;
font-weight: 600;
}
.repo_description {
font-size: 16px;
padding-bottom: 10px;
height: 100px;
overflow: scroll;
overflow-x: hidden;
}
.repo_info {
margin: 20px 0px;
display: flex;
}
.repo_owner {
display: flex;
justify-content: flex-start;
}
.repo_owner h6 {
margin-top: 2px;
}
.repo_owner span {
text-transform: capitalize;
margin-left: 5px;
}
.repo_owner span a {
text-decoration: none;
padding: 5px;
color: #ff0000;
}
.repo_owner span a:hover {
color: #fff;
background-color: #ff0000;
}
.repo_info .info {
margin-right: 20px;
}
.info img {
margin-right: 6px;
height: 20px;
}
.info span {
font-size: 14px;
}
.repo_date-info {
font-size: 17px;
margin: 10px 0px 5px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
.searchRepoBtn {
border: none;
color: #fff;
font-size: 17px;
font-weight: 600;
}
.searchRepoBtn:hover {
background-color: red;
color: #fff;
}
.error {
color: red;
}
@media screen and (max-width: 600px) {
form {
width: 100%;
}
form input {
width: 300px;
}
.searchBtn {
margin-top: 5px;
}
} | 0.457137 | 0.059292 |
@font-face {
font-family: "Ionicons";
src: url("../fonts/ionicons.eot?v=1.5.2");
src: url("../fonts/ionicons.eot?v=1.5.2#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.5.2") format("truetype"), url("../fonts/ionicons.woff?v=1.5.2") format("woff"), url("../fonts/ionicons.svg?v=1.5.2#Ionicons") format("svg");
font-weight: normal;
font-style: normal;
}
.ion,
.ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-contact:before,
.ion-android-alarm:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down-left:before,
.ion-android-arrow-down-right:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up-left:before,
.ion-android-arrow-up-right:before,
.ion-android-battery:before,
.ion-android-book:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-chat:before,
.ion-android-checkmark:before,
.ion-android-clock:before,
.ion-android-close:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-data:before,
.ion-android-developer:before,
.ion-android-display:before,
.ion-android-download:before,
.ion-android-drawer:before,
.ion-android-dropdown:before,
.ion-android-earth:before,
.ion-android-folder:before,
.ion-android-forums:before,
.ion-android-friends:before,
.ion-android-hand:before,
.ion-android-image:before,
.ion-android-inbox:before,
.ion-android-information:before,
.ion-android-keypad:before,
.ion-android-lightbulb:before,
.ion-android-locate:before,
.ion-android-location:before,
.ion-android-mail:before,
.ion-android-microphone:before,
.ion-android-mixer:before,
.ion-android-more:before,
.ion-android-note:before,
.ion-android-playstore:before,
.ion-android-printer:before,
.ion-android-promotion:before,
.ion-android-reminder:before,
.ion-android-remove:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-social:before,
.ion-android-social-user:before,
.ion-android-sort:before,
.ion-android-stair-drawer:before,
.ion-android-star:before,
.ion-android-stopwatch:before,
.ion-android-storage:before,
.ion-android-system-back:before,
.ion-android-system-home:before,
.ion-android-system-windows:before,
.ion-android-timer:before,
.ion-android-trash:before,
.ion-android-user-menu:before,
.ion-android-volume:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-flask:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-game-controller-a:before,
.ion-game-controller-b:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-icon-social-google-plus:before,
.ion-icon-social-google-plus-outline:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios7-alarm:before,
.ion-ios7-alarm-outline:before,
.ion-ios7-albums:before,
.ion-ios7-albums-outline:before,
.ion-ios7-americanfootball:before,
.ion-ios7-americanfootball-outline:before,
.ion-ios7-analytics:before,
.ion-ios7-analytics-outline:before,
.ion-ios7-arrow-back:before,
.ion-ios7-arrow-down:before,
.ion-ios7-arrow-forward:before,
.ion-ios7-arrow-left:before,
.ion-ios7-arrow-right:before,
.ion-ios7-arrow-thin-down:before,
.ion-ios7-arrow-thin-left:before,
.ion-ios7-arrow-thin-right:before,
.ion-ios7-arrow-thin-up:before,
.ion-ios7-arrow-up:before,
.ion-ios7-at:before,
.ion-ios7-at-outline:before,
.ion-ios7-barcode:before,
.ion-ios7-barcode-outline:before,
.ion-ios7-baseball:before,
.ion-ios7-baseball-outline:before,
.ion-ios7-basketball:before,
.ion-ios7-basketball-outline:before,
.ion-ios7-bell:before,
.ion-ios7-bell-outline:before,
.ion-ios7-bolt:before,
.ion-ios7-bolt-outline:before,
.ion-ios7-bookmarks:before,
.ion-ios7-bookmarks-outline:before,
.ion-ios7-box:before,
.ion-ios7-box-outline:before,
.ion-ios7-briefcase:before,
.ion-ios7-briefcase-outline:before,
.ion-ios7-browsers:before,
.ion-ios7-browsers-outline:before,
.ion-ios7-calculator:before,
.ion-ios7-calculator-outline:before,
.ion-ios7-calendar:before,
.ion-ios7-calendar-outline:before,
.ion-ios7-camera:before,
.ion-ios7-camera-outline:before,
.ion-ios7-cart:before,
.ion-ios7-cart-outline:before,
.ion-ios7-chatboxes:before,
.ion-ios7-chatboxes-outline:before,
.ion-ios7-chatbubble:before,
.ion-ios7-chatbubble-outline:before,
.ion-ios7-checkmark:before,
.ion-ios7-checkmark-empty:before,
.ion-ios7-checkmark-outline:before,
.ion-ios7-circle-filled:before,
.ion-ios7-circle-outline:before,
.ion-ios7-clock:before,
.ion-ios7-clock-outline:before,
.ion-ios7-close:before,
.ion-ios7-close-empty:before,
.ion-ios7-close-outline:before,
.ion-ios7-cloud:before,
.ion-ios7-cloud-download:before,
.ion-ios7-cloud-download-outline:before,
.ion-ios7-cloud-outline:before,
.ion-ios7-cloud-upload:before,
.ion-ios7-cloud-upload-outline:before,
.ion-ios7-cloudy:before,
.ion-ios7-cloudy-night:before,
.ion-ios7-cloudy-night-outline:before,
.ion-ios7-cloudy-outline:before,
.ion-ios7-cog:before,
.ion-ios7-cog-outline:before,
.ion-ios7-compose:before,
.ion-ios7-compose-outline:before,
.ion-ios7-contact:before,
.ion-ios7-contact-outline:before,
.ion-ios7-copy:before,
.ion-ios7-copy-outline:before,
.ion-ios7-download:before,
.ion-ios7-download-outline:before,
.ion-ios7-drag:before,
.ion-ios7-email:before,
.ion-ios7-email-outline:before,
.ion-ios7-expand:before,
.ion-ios7-eye:before,
.ion-ios7-eye-outline:before,
.ion-ios7-fastforward:before,
.ion-ios7-fastforward-outline:before,
.ion-ios7-filing:before,
.ion-ios7-filing-outline:before,
.ion-ios7-film:before,
.ion-ios7-film-outline:before,
.ion-ios7-flag:before,
.ion-ios7-flag-outline:before,
.ion-ios7-folder:before,
.ion-ios7-folder-outline:before,
.ion-ios7-football:before,
.ion-ios7-football-outline:before,
.ion-ios7-gear:before,
.ion-ios7-gear-outline:before,
.ion-ios7-glasses:before,
.ion-ios7-glasses-outline:before,
.ion-ios7-heart:before,
.ion-ios7-heart-outline:before,
.ion-ios7-help:before,
.ion-ios7-help-empty:before,
.ion-ios7-help-outline:before,
.ion-ios7-home:before,
.ion-ios7-home-outline:before,
.ion-ios7-infinite:before,
.ion-ios7-infinite-outline:before,
.ion-ios7-information:before,
.ion-ios7-information-empty:before,
.ion-ios7-information-outline:before,
.ion-ios7-ionic-outline:before,
.ion-ios7-keypad:before,
.ion-ios7-keypad-outline:before,
.ion-ios7-lightbulb:before,
.ion-ios7-lightbulb-outline:before,
.ion-ios7-location:before,
.ion-ios7-location-outline:before,
.ion-ios7-locked:before,
.ion-ios7-locked-outline:before,
.ion-ios7-loop:before,
.ion-ios7-loop-strong:before,
.ion-ios7-medkit:before,
.ion-ios7-medkit-outline:before,
.ion-ios7-mic:before,
.ion-ios7-mic-off:before,
.ion-ios7-mic-outline:before,
.ion-ios7-minus:before,
.ion-ios7-minus-empty:before,
.ion-ios7-minus-outline:before,
.ion-ios7-monitor:before,
.ion-ios7-monitor-outline:before,
.ion-ios7-moon:before,
.ion-ios7-moon-outline:before,
.ion-ios7-more:before,
.ion-ios7-more-outline:before,
.ion-ios7-musical-note:before,
.ion-ios7-musical-notes:before,
.ion-ios7-navigate:before,
.ion-ios7-navigate-outline:before,
.ion-ios7-paper:before,
.ion-ios7-paper-outline:before,
.ion-ios7-paperplane:before,
.ion-ios7-paperplane-outline:before,
.ion-ios7-partlysunny:before,
.ion-ios7-partlysunny-outline:before,
.ion-ios7-pause:before,
.ion-ios7-pause-outline:before,
.ion-ios7-paw:before,
.ion-ios7-paw-outline:before,
.ion-ios7-people:before,
.ion-ios7-people-outline:before,
.ion-ios7-person:before,
.ion-ios7-person-outline:before,
.ion-ios7-personadd:before,
.ion-ios7-personadd-outline:before,
.ion-ios7-photos:before,
.ion-ios7-photos-outline:before,
.ion-ios7-pie:before,
.ion-ios7-pie-outline:before,
.ion-ios7-play:before,
.ion-ios7-play-outline:before,
.ion-ios7-plus:before,
.ion-ios7-plus-empty:before,
.ion-ios7-plus-outline:before,
.ion-ios7-pricetag:before,
.ion-ios7-pricetag-outline:before,
.ion-ios7-pricetags:before,
.ion-ios7-pricetags-outline:before,
.ion-ios7-printer:before,
.ion-ios7-printer-outline:before,
.ion-ios7-pulse:before,
.ion-ios7-pulse-strong:before,
.ion-ios7-rainy:before,
.ion-ios7-rainy-outline:before,
.ion-ios7-recording:before,
.ion-ios7-recording-outline:before,
.ion-ios7-redo:before,
.ion-ios7-redo-outline:before,
.ion-ios7-refresh:before,
.ion-ios7-refresh-empty:before,
.ion-ios7-refresh-outline:before,
.ion-ios7-reload:before,
.ion-ios7-reverse-camera:before,
.ion-ios7-reverse-camera-outline:before,
.ion-ios7-rewind:before,
.ion-ios7-rewind-outline:before,
.ion-ios7-search:before,
.ion-ios7-search-strong:before,
.ion-ios7-settings:before,
.ion-ios7-settings-strong:before,
.ion-ios7-shrink:before,
.ion-ios7-skipbackward:before,
.ion-ios7-skipbackward-outline:before,
.ion-ios7-skipforward:before,
.ion-ios7-skipforward-outline:before,
.ion-ios7-snowy:before,
.ion-ios7-speedometer:before,
.ion-ios7-speedometer-outline:before,
.ion-ios7-star:before,
.ion-ios7-star-half:before,
.ion-ios7-star-outline:before,
.ion-ios7-stopwatch:before,
.ion-ios7-stopwatch-outline:before,
.ion-ios7-sunny:before,
.ion-ios7-sunny-outline:before,
.ion-ios7-telephone:before,
.ion-ios7-telephone-outline:before,
.ion-ios7-tennisball:before,
.ion-ios7-tennisball-outline:before,
.ion-ios7-thunderstorm:before,
.ion-ios7-thunderstorm-outline:before,
.ion-ios7-time:before,
.ion-ios7-time-outline:before,
.ion-ios7-timer:before,
.ion-ios7-timer-outline:before,
.ion-ios7-toggle:before,
.ion-ios7-toggle-outline:before,
.ion-ios7-trash:before,
.ion-ios7-trash-outline:before,
.ion-ios7-undo:before,
.ion-ios7-undo-outline:before,
.ion-ios7-unlocked:before,
.ion-ios7-unlocked-outline:before,
.ion-ios7-upload:before,
.ion-ios7-upload-outline:before,
.ion-ios7-videocam:before,
.ion-ios7-videocam-outline:before,
.ion-ios7-volume-high:before,
.ion-ios7-volume-low:before,
.ion-ios7-wineglass:before,
.ion-ios7-wineglass-outline:before,
.ion-ios7-world:before,
.ion-ios7-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-size: inherit;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ion-spin,
.ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading {
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s infinite linear;
-o-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg);
}
100% {
-ms-transform: rotate(359deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
.ion-loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start);
}
.ion-alert:before {
content: "\f101";
}
.ion-alert-circled:before {
content: "\f100";
}
.ion-android-add:before {
content: "\f2c7";
}
.ion-android-add-contact:before {
content: "\f2c6";
}
.ion-android-alarm:before {
content: "\f2c8";
}
.ion-android-archive:before {
content: "\f2c9";
}
.ion-android-arrow-back:before {
content: "\f2ca";
}
.ion-android-arrow-down-left:before {
content: "\f2cb";
}
.ion-android-arrow-down-right:before {
content: "\f2cc";
}
.ion-android-arrow-forward:before {
content: "\f30f";
}
.ion-android-arrow-up-left:before {
content: "\f2cd";
}
.ion-android-arrow-up-right:before {
content: "\f2ce";
}
.ion-android-battery:before {
content: "\f2cf";
}
.ion-android-book:before {
content: "\f2d0";
}
.ion-android-calendar:before {
content: "\f2d1";
}
.ion-android-call:before {
content: "\f2d2";
}
.ion-android-camera:before {
content: "\f2d3";
}
.ion-android-chat:before {
content: "\f2d4";
}
.ion-android-checkmark:before {
content: "\f2d5";
}
.ion-android-clock:before {
content: "\f2d6";
}
.ion-android-close:before {
content: "\f2d7";
}
.ion-android-contact:before {
content: "\f2d8";
}
.ion-android-contacts:before {
content: "\f2d9";
}
.ion-android-data:before {
content: "\f2da";
}
.ion-android-developer:before {
content: "\f2db";
}
.ion-android-display:before {
content: "\f2dc";
}
.ion-android-download:before {
content: "\f2dd";
}
.ion-android-drawer:before {
content: "\f310";
}
.ion-android-dropdown:before {
content: "\f2de";
}
.ion-android-earth:before {
content: "\f2df";
}
.ion-android-folder:before {
content: "\f2e0";
}
.ion-android-forums:before {
content: "\f2e1";
}
.ion-android-friends:before {
content: "\f2e2";
}
.ion-android-hand:before {
content: "\f2e3";
}
.ion-android-image:before {
content: "\f2e4";
}
.ion-android-inbox:before {
content: "\f2e5";
}
.ion-android-information:before {
content: "\f2e6";
}
.ion-android-keypad:before {
content: "\f2e7";
}
.ion-android-lightbulb:before {
content: "\f2e8";
}
.ion-android-locate:before {
content: "\f2e9";
}
.ion-android-location:before {
content: "\f2ea";
}
.ion-android-mail:before {
content: "\f2eb";
}
.ion-android-microphone:before {
content: "\f2ec";
}
.ion-android-mixer:before {
content: "\f2ed";
}
.ion-android-more:before {
content: "\f2ee";
}
.ion-android-note:before {
content: "\f2ef";
}
.ion-android-playstore:before {
content: "\f2f0";
}
.ion-android-printer:before {
content: "\f2f1";
}
.ion-android-promotion:before {
content: "\f2f2";
}
.ion-android-reminder:before {
content: "\f2f3";
}
.ion-android-remove:before {
content: "\f2f4";
}
.ion-android-search:before {
content: "\f2f5";
}
.ion-android-send:before {
content: "\f2f6";
}
.ion-android-settings:before {
content: "\f2f7";
}
.ion-android-share:before {
content: "\f2f8";
}
.ion-android-social:before {
content: "\f2fa";
}
.ion-android-social-user:before {
content: "\f2f9";
}
.ion-android-sort:before {
content: "\f2fb";
}
.ion-android-stair-drawer:before {
content: "\f311";
}
.ion-android-star:before {
content: "\f2fc";
}
.ion-android-stopwatch:before {
content: "\f2fd";
}
.ion-android-storage:before {
content: "\f2fe";
}
.ion-android-system-back:before {
content: "\f2ff";
}
.ion-android-system-home:before {
content: "\f300";
}
.ion-android-system-windows:before {
content: "\f301";
}
.ion-android-timer:before {
content: "\f302";
}
.ion-android-trash:before {
content: "\f303";
}
.ion-android-user-menu:before {
content: "\f312";
}
.ion-android-volume:before {
content: "\f304";
}
.ion-android-wifi:before {
content: "\f305";
}
.ion-aperture:before {
content: "\f313";
}
.ion-archive:before {
content: "\f102";
}
.ion-arrow-down-a:before {
content: "\f103";
}
.ion-arrow-down-b:before {
content: "\f104";
}
.ion-arrow-down-c:before {
content: "\f105";
}
.ion-arrow-expand:before {
content: "\f25e";
}
.ion-arrow-graph-down-left:before {
content: "\f25f";
}
.ion-arrow-graph-down-right:before {
content: "\f260";
}
.ion-arrow-graph-up-left:before {
content: "\f261";
}
.ion-arrow-graph-up-right:before {
content: "\f262";
}
.ion-arrow-left-a:before {
content: "\f106";
}
.ion-arrow-left-b:before {
content: "\f107";
}
.ion-arrow-left-c:before {
content: "\f108";
}
.ion-arrow-move:before {
content: "\f263";
}
.ion-arrow-resize:before {
content: "\f264";
}
.ion-arrow-return-left:before {
content: "\f265";
}
.ion-arrow-return-right:before {
content: "\f266";
}
.ion-arrow-right-a:before {
content: "\f109";
}
.ion-arrow-right-b:before {
content: "\f10a";
}
.ion-arrow-right-c:before {
content: "\f10b";
}
.ion-arrow-shrink:before {
content: "\f267";
}
.ion-arrow-swap:before {
content: "\f268";
}
.ion-arrow-up-a:before {
content: "\f10c";
}
.ion-arrow-up-b:before {
content: "\f10d";
}
.ion-arrow-up-c:before {
content: "\f10e";
}
.ion-asterisk:before {
content: "\f314";
}
.ion-at:before {
content: "\f10f";
}
.ion-bag:before {
content: "\f110";
}
.ion-battery-charging:before {
content: "\f111";
}
.ion-battery-empty:before {
content: "\f112";
}
.ion-battery-full:before {
content: "\f113";
}
.ion-battery-half:before {
content: "\f114";
}
.ion-battery-low:before {
content: "\f115";
}
.ion-beaker:before {
content: "\f269";
}
.ion-beer:before {
content: "\f26a";
}
.ion-bluetooth:before {
content: "\f116";
}
.ion-bonfire:before {
content: "\f315";
}
.ion-bookmark:before {
content: "\f26b";
}
.ion-briefcase:before {
content: "\f26c";
}
.ion-bug:before {
content: "\f2be";
}
.ion-calculator:before {
content: "\f26d";
}
.ion-calendar:before {
content: "\f117";
}
.ion-camera:before {
content: "\f118";
}
.ion-card:before {
content: "\f119";
}
.ion-cash:before {
content: "\f316";
}
.ion-chatbox:before {
content: "\f11b";
}
.ion-chatbox-working:before {
content: "\f11a";
}
.ion-chatboxes:before {
content: "\f11c";
}
.ion-chatbubble:before {
content: "\f11e";
}
.ion-chatbubble-working:before {
content: "\f11d";
}
.ion-chatbubbles:before {
content: "\f11f";
}
.ion-checkmark:before {
content: "\f122";
}
.ion-checkmark-circled:before {
content: "\f120";
}
.ion-checkmark-round:before {
content: "\f121";
}
.ion-chevron-down:before {
content: "\f123";
}
.ion-chevron-left:before {
content: "\f124";
}
.ion-chevron-right:before {
content: "\f125";
}
.ion-chevron-up:before {
content: "\f126";
}
.ion-clipboard:before {
content: "\f127";
}
.ion-clock:before {
content: "\f26e";
}
.ion-close:before {
content: "\f12a";
}
.ion-close-circled:before {
content: "\f128";
}
.ion-close-round:before {
content: "\f129";
}
.ion-closed-captioning:before {
content: "\f317";
}
.ion-cloud:before {
content: "\f12b";
}
.ion-code:before {
content: "\f271";
}
.ion-code-download:before {
content: "\f26f";
}
.ion-code-working:before {
content: "\f270";
}
.ion-coffee:before {
content: "\f272";
}
.ion-compass:before {
content: "\f273";
}
.ion-compose:before {
content: "\f12c";
}
.ion-connection-bars:before {
content: "\f274";
}
.ion-contrast:before {
content: "\f275";
}
.ion-cube:before {
content: "\f318";
}
.ion-disc:before {
content: "\f12d";
}
.ion-document:before {
content: "\f12f";
}
.ion-document-text:before {
content: "\f12e";
}
.ion-drag:before {
content: "\f130";
}
.ion-earth:before {
content: "\f276";
}
.ion-edit:before {
content: "\f2bf";
}
.ion-egg:before {
content: "\f277";
}
.ion-eject:before {
content: "\f131";
}
.ion-email:before {
content: "\f132";
}
.ion-eye:before {
content: "\f133";
}
.ion-eye-disabled:before {
content: "\f306";
}
.ion-female:before {
content: "\f278";
}
.ion-filing:before {
content: "\f134";
}
.ion-film-marker:before {
content: "\f135";
}
.ion-fireball:before {
content: "\f319";
}
.ion-flag:before {
content: "\f279";
}
.ion-flame:before {
content: "\f31a";
}
.ion-flash:before {
content: "\f137";
}
.ion-flash-off:before {
content: "\f136";
}
.ion-flask:before {
content: "\f138";
}
.ion-folder:before {
content: "\f139";
}
.ion-fork:before {
content: "\f27a";
}
.ion-fork-repo:before {
content: "\f2c0";
}
.ion-forward:before {
content: "\f13a";
}
.ion-funnel:before {
content: "\f31b";
}
.ion-game-controller-a:before {
content: "\f13b";
}
.ion-game-controller-b:before {
content: "\f13c";
}
.ion-gear-a:before {
content: "\f13d";
}
.ion-gear-b:before {
content: "\f13e";
}
.ion-grid:before {
content: "\f13f";
}
.ion-hammer:before {
content: "\f27b";
}
.ion-happy:before {
content: "\f31c";
}
.ion-headphone:before {
content: "\f140";
}
.ion-heart:before {
content: "\f141";
}
.ion-heart-broken:before {
content: "\f31d";
}
.ion-help:before {
content: "\f143";
}
.ion-help-buoy:before {
content: "\f27c";
}
.ion-help-circled:before {
content: "\f142";
}
.ion-home:before {
content: "\f144";
}
.ion-icecream:before {
content: "\f27d";
}
.ion-icon-social-google-plus:before {
content: "\f146";
}
.ion-icon-social-google-plus-outline:before {
content: "\f145";
}
.ion-image:before {
content: "\f147";
}
.ion-images:before {
content: "\f148";
}
.ion-information:before {
content: "\f14a";
}
.ion-information-circled:before {
content: "\f149";
}
.ion-ionic:before {
content: "\f14b";
}
.ion-ios7-alarm:before {
content: "\f14d";
}
.ion-ios7-alarm-outline:before {
content: "\f14c";
}
.ion-ios7-albums:before {
content: "\f14f";
}
.ion-ios7-albums-outline:before {
content: "\f14e";
}
.ion-ios7-americanfootball:before {
content: "\f31f";
}
.ion-ios7-americanfootball-outline:before {
content: "\f31e";
}
.ion-ios7-analytics:before {
content: "\f321";
}
.ion-ios7-analytics-outline:before {
content: "\f320";
}
.ion-ios7-arrow-back:before {
content: "\f150";
}
.ion-ios7-arrow-down:before {
content: "\f151";
}
.ion-ios7-arrow-forward:before {
content: "\f152";
}
.ion-ios7-arrow-left:before {
content: "\f153";
}
.ion-ios7-arrow-right:before {
content: "\f154";
}
.ion-ios7-arrow-thin-down:before {
content: "\f27e";
}
.ion-ios7-arrow-thin-left:before {
content: "\f27f";
}
.ion-ios7-arrow-thin-right:before {
content: "\f280";
}
.ion-ios7-arrow-thin-up:before {
content: "\f281";
}
.ion-ios7-arrow-up:before {
content: "\f155";
}
.ion-ios7-at:before {
content: "\f157";
}
.ion-ios7-at-outline:before {
content: "\f156";
}
.ion-ios7-barcode:before {
content: "\f323";
}
.ion-ios7-barcode-outline:before {
content: "\f322";
}
.ion-ios7-baseball:before {
content: "\f325";
}
.ion-ios7-baseball-outline:before {
content: "\f324";
}
.ion-ios7-basketball:before {
content: "\f327";
}
.ion-ios7-basketball-outline:before {
content: "\f326";
}
.ion-ios7-bell:before {
content: "\f159";
}
.ion-ios7-bell-outline:before {
content: "\f158";
}
.ion-ios7-bolt:before {
content: "\f15b";
}
.ion-ios7-bolt-outline:before {
content: "\f15a";
}
.ion-ios7-bookmarks:before {
content: "\f15d";
}
.ion-ios7-bookmarks-outline:before {
content: "\f15c";
}
.ion-ios7-box:before {
content: "\f15f";
}
.ion-ios7-box-outline:before {
content: "\f15e";
}
.ion-ios7-briefcase:before {
content: "\f283";
}
.ion-ios7-briefcase-outline:before {
content: "\f282";
}
.ion-ios7-browsers:before {
content: "\f161";
}
.ion-ios7-browsers-outline:before {
content: "\f160";
}
.ion-ios7-calculator:before {
content: "\f285";
}
.ion-ios7-calculator-outline:before {
content: "\f284";
}
.ion-ios7-calendar:before {
content: "\f163";
}
.ion-ios7-calendar-outline:before {
content: "\f162";
}
.ion-ios7-camera:before {
content: "\f165";
}
.ion-ios7-camera-outline:before {
content: "\f164";
}
.ion-ios7-cart:before {
content: "\f167";
}
.ion-ios7-cart-outline:before {
content: "\f166";
}
.ion-ios7-chatboxes:before {
content: "\f169";
}
.ion-ios7-chatboxes-outline:before {
content: "\f168";
}
.ion-ios7-chatbubble:before {
content: "\f16b";
}
.ion-ios7-chatbubble-outline:before {
content: "\f16a";
}
.ion-ios7-checkmark:before {
content: "\f16e";
}
.ion-ios7-checkmark-empty:before {
content: "\f16c";
}
.ion-ios7-checkmark-outline:before {
content: "\f16d";
}
.ion-ios7-circle-filled:before {
content: "\f16f";
}
.ion-ios7-circle-outline:before {
content: "\f170";
}
.ion-ios7-clock:before {
content: "\f172";
}
.ion-ios7-clock-outline:before {
content: "\f171";
}
.ion-ios7-close:before {
content: "\f2bc";
}
.ion-ios7-close-empty:before {
content: "\f2bd";
}
.ion-ios7-close-outline:before {
content: "\f2bb";
}
.ion-ios7-cloud:before {
content: "\f178";
}
.ion-ios7-cloud-download:before {
content: "\f174";
}
.ion-ios7-cloud-download-outline:before {
content: "\f173";
}
.ion-ios7-cloud-outline:before {
content: "\f175";
}
.ion-ios7-cloud-upload:before {
content: "\f177";
}
.ion-ios7-cloud-upload-outline:before {
content: "\f176";
}
.ion-ios7-cloudy:before {
content: "\f17a";
}
.ion-ios7-cloudy-night:before {
content: "\f308";
}
.ion-ios7-cloudy-night-outline:before {
content: "\f307";
}
.ion-ios7-cloudy-outline:before {
content: "\f179";
}
.ion-ios7-cog:before {
content: "\f17c";
}
.ion-ios7-cog-outline:before {
content: "\f17b";
}
.ion-ios7-compose:before {
content: "\f17e";
}
.ion-ios7-compose-outline:before {
content: "\f17d";
}
.ion-ios7-contact:before {
content: "\f180";
}
.ion-ios7-contact-outline:before {
content: "\f17f";
}
.ion-ios7-copy:before {
content: "\f182";
}
.ion-ios7-copy-outline:before {
content: "\f181";
}
.ion-ios7-download:before {
content: "\f184";
}
.ion-ios7-download-outline:before {
content: "\f183";
}
.ion-ios7-drag:before {
content: "\f185";
}
.ion-ios7-email:before {
content: "\f187";
}
.ion-ios7-email-outline:before {
content: "\f186";
}
.ion-ios7-expand:before {
content: "\f30d";
}
.ion-ios7-eye:before {
content: "\f189";
}
.ion-ios7-eye-outline:before {
content: "\f188";
}
.ion-ios7-fastforward:before {
content: "\f18b";
}
.ion-ios7-fastforward-outline:before {
content: "\f18a";
}
.ion-ios7-filing:before {
content: "\f18d";
}
.ion-ios7-filing-outline:before {
content: "\f18c";
}
.ion-ios7-film:before {
content: "\f18f";
}
.ion-ios7-film-outline:before {
content: "\f18e";
}
.ion-ios7-flag:before {
content: "\f191";
}
.ion-ios7-flag-outline:before {
content: "\f190";
}
.ion-ios7-folder:before {
content: "\f193";
}
.ion-ios7-folder-outline:before {
content: "\f192";
}
.ion-ios7-football:before {
content: "\f329";
}
.ion-ios7-football-outline:before {
content: "\f328";
}
.ion-ios7-gear:before {
content: "\f195";
}
.ion-ios7-gear-outline:before {
content: "\f194";
}
.ion-ios7-glasses:before {
content: "\f197";
}
.ion-ios7-glasses-outline:before {
content: "\f196";
}
.ion-ios7-heart:before {
content: "\f199";
}
.ion-ios7-heart-outline:before {
content: "\f198";
}
.ion-ios7-help:before {
content: "\f19c";
}
.ion-ios7-help-empty:before {
content: "\f19a";
}
.ion-ios7-help-outline:before {
content: "\f19b";
}
.ion-ios7-home:before {
content: "\f32b";
}
.ion-ios7-home-outline:before {
content: "\f32a";
}
.ion-ios7-infinite:before {
content: "\f19e";
}
.ion-ios7-infinite-outline:before {
content: "\f19d";
}
.ion-ios7-information:before {
content: "\f1a1";
}
.ion-ios7-information-empty:before {
content: "\f19f";
}
.ion-ios7-information-outline:before {
content: "\f1a0";
}
.ion-ios7-ionic-outline:before {
content: "\f1a2";
}
.ion-ios7-keypad:before {
content: "\f1a4";
}
.ion-ios7-keypad-outline:before {
content: "\f1a3";
}
.ion-ios7-lightbulb:before {
content: "\f287";
}
.ion-ios7-lightbulb-outline:before {
content: "\f286";
}
.ion-ios7-location:before {
content: "\f1a6";
}
.ion-ios7-location-outline:before {
content: "\f1a5";
}
.ion-ios7-locked:before {
content: "\f1a8";
}
.ion-ios7-locked-outline:before {
content: "\f1a7";
}
.ion-ios7-loop:before {
content: "\f32d";
}
.ion-ios7-loop-strong:before {
content: "\f32c";
}
.ion-ios7-medkit:before {
content: "\f289";
}
.ion-ios7-medkit-outline:before {
content: "\f288";
}
.ion-ios7-mic:before {
content: "\f1ab";
}
.ion-ios7-mic-off:before {
content: "\f1a9";
}
.ion-ios7-mic-outline:before {
content: "\f1aa";
}
.ion-ios7-minus:before {
content: "\f1ae";
}
.ion-ios7-minus-empty:before {
content: "\f1ac";
}
.ion-ios7-minus-outline:before {
content: "\f1ad";
}
.ion-ios7-monitor:before {
content: "\f1b0";
}
.ion-ios7-monitor-outline:before {
content: "\f1af";
}
.ion-ios7-moon:before {
content: "\f1b2";
}
.ion-ios7-moon-outline:before {
content: "\f1b1";
}
.ion-ios7-more:before {
content: "\f1b4";
}
.ion-ios7-more-outline:before {
content: "\f1b3";
}
.ion-ios7-musical-note:before {
content: "\f1b5";
}
.ion-ios7-musical-notes:before {
content: "\f1b6";
}
.ion-ios7-navigate:before {
content: "\f1b8";
}
.ion-ios7-navigate-outline:before {
content: "\f1b7";
}
.ion-ios7-paper:before {
content: "\f32f";
}
.ion-ios7-paper-outline:before {
content: "\f32e";
}
.ion-ios7-paperplane:before {
content: "\f1ba";
}
.ion-ios7-paperplane-outline:before {
content: "\f1b9";
}
.ion-ios7-partlysunny:before {
content: "\f1bc";
}
.ion-ios7-partlysunny-outline:before {
content: "\f1bb";
}
.ion-ios7-pause:before {
content: "\f1be";
}
.ion-ios7-pause-outline:before {
content: "\f1bd";
}
.ion-ios7-paw:before {
content: "\f331";
}
.ion-ios7-paw-outline:before {
content: "\f330";
}
.ion-ios7-people:before {
content: "\f1c0";
}
.ion-ios7-people-outline:before {
content: "\f1bf";
}
.ion-ios7-person:before {
content: "\f1c2";
}
.ion-ios7-person-outline:before {
content: "\f1c1";
}
.ion-ios7-personadd:before {
content: "\f1c4";
}
.ion-ios7-personadd-outline:before {
content: "\f1c3";
}
.ion-ios7-photos:before {
content: "\f1c6";
}
.ion-ios7-photos-outline:before {
content: "\f1c5";
}
.ion-ios7-pie:before {
content: "\f28b";
}
.ion-ios7-pie-outline:before {
content: "\f28a";
}
.ion-ios7-play:before {
content: "\f1c8";
}
.ion-ios7-play-outline:before {
content: "\f1c7";
}
.ion-ios7-plus:before {
content: "\f1cb";
}
.ion-ios7-plus-empty:before {
content: "\f1c9";
}
.ion-ios7-plus-outline:before {
content: "\f1ca";
}
.ion-ios7-pricetag:before {
content: "\f28d";
}
.ion-ios7-pricetag-outline:before {
content: "\f28c";
}
.ion-ios7-pricetags:before {
content: "\f333";
}
.ion-ios7-pricetags-outline:before {
content: "\f332";
}
.ion-ios7-printer:before {
content: "\f1cd";
}
.ion-ios7-printer-outline:before {
content: "\f1cc";
}
.ion-ios7-pulse:before {
content: "\f335";
}
.ion-ios7-pulse-strong:before {
content: "\f334";
}
.ion-ios7-rainy:before {
content: "\f1cf";
}
.ion-ios7-rainy-outline:before {
content: "\f1ce";
}
.ion-ios7-recording:before {
content: "\f1d1";
}
.ion-ios7-recording-outline:before {
content: "\f1d0";
}
.ion-ios7-redo:before {
content: "\f1d3";
}
.ion-ios7-redo-outline:before {
content: "\f1d2";
}
.ion-ios7-refresh:before {
content: "\f1d6";
}
.ion-ios7-refresh-empty:before {
content: "\f1d4";
}
.ion-ios7-refresh-outline:before {
content: "\f1d5";
}
.ion-ios7-reload:before {
content: "\f28e";
}
.ion-ios7-reverse-camera:before {
content: "\f337";
}
.ion-ios7-reverse-camera-outline:before {
content: "\f336";
}
.ion-ios7-rewind:before {
content: "\f1d8";
}
.ion-ios7-rewind-outline:before {
content: "\f1d7";
}
.ion-ios7-search:before {
content: "\f1da";
}
.ion-ios7-search-strong:before {
content: "\f1d9";
}
.ion-ios7-settings:before {
content: "\f339";
}
.ion-ios7-settings-strong:before {
content: "\f338";
}
.ion-ios7-shrink:before {
content: "\f30e";
}
.ion-ios7-skipbackward:before {
content: "\f1dc";
}
.ion-ios7-skipbackward-outline:before {
content: "\f1db";
}
.ion-ios7-skipforward:before {
content: "\f1de";
}
.ion-ios7-skipforward-outline:before {
content: "\f1dd";
}
.ion-ios7-snowy:before {
content: "\f309";
}
.ion-ios7-speedometer:before {
content: "\f290";
}
.ion-ios7-speedometer-outline:before {
content: "\f28f";
}
.ion-ios7-star:before {
content: "\f1e0";
}
.ion-ios7-star-half:before {
content: "\f33a";
}
.ion-ios7-star-outline:before {
content: "\f1df";
}
.ion-ios7-stopwatch:before {
content: "\f1e2";
}
.ion-ios7-stopwatch-outline:before {
content: "\f1e1";
}
.ion-ios7-sunny:before {
content: "\f1e4";
}
.ion-ios7-sunny-outline:before {
content: "\f1e3";
}
.ion-ios7-telephone:before {
content: "\f1e6";
}
.ion-ios7-telephone-outline:before {
content: "\f1e5";
}
.ion-ios7-tennisball:before {
content: "\f33c";
}
.ion-ios7-tennisball-outline:before {
content: "\f33b";
}
.ion-ios7-thunderstorm:before {
content: "\f1e8";
}
.ion-ios7-thunderstorm-outline:before {
content: "\f1e7";
}
.ion-ios7-time:before {
content: "\f292";
}
.ion-ios7-time-outline:before {
content: "\f291";
}
.ion-ios7-timer:before {
content: "\f1ea";
}
.ion-ios7-timer-outline:before {
content: "\f1e9";
}
.ion-ios7-toggle:before {
content: "\f33e";
}
.ion-ios7-toggle-outline:before {
content: "\f33d";
}
.ion-ios7-trash:before {
content: "\f1ec";
}
.ion-ios7-trash-outline:before {
content: "\f1eb";
}
.ion-ios7-undo:before {
content: "\f1ee";
}
.ion-ios7-undo-outline:before {
content: "\f1ed";
}
.ion-ios7-unlocked:before {
content: "\f1f0";
}
.ion-ios7-unlocked-outline:before {
content: "\f1ef";
}
.ion-ios7-upload:before {
content: "\f1f2";
}
.ion-ios7-upload-outline:before {
content: "\f1f1";
}
.ion-ios7-videocam:before {
content: "\f1f4";
}
.ion-ios7-videocam-outline:before {
content: "\f1f3";
}
.ion-ios7-volume-high:before {
content: "\f1f5";
}
.ion-ios7-volume-low:before {
content: "\f1f6";
}
.ion-ios7-wineglass:before {
content: "\f294";
}
.ion-ios7-wineglass-outline:before {
content: "\f293";
}
.ion-ios7-world:before {
content: "\f1f8";
}
.ion-ios7-world-outline:before {
content: "\f1f7";
}
.ion-ipad:before {
content: "\f1f9";
}
.ion-iphone:before {
content: "\f1fa";
}
.ion-ipod:before {
content: "\f1fb";
}
.ion-jet:before {
content: "\f295";
}
.ion-key:before {
content: "\f296";
}
.ion-knife:before {
content: "\f297";
}
.ion-laptop:before {
content: "\f1fc";
}
.ion-leaf:before {
content: "\f1fd";
}
.ion-levels:before {
content: "\f298";
}
.ion-lightbulb:before {
content: "\f299";
}
.ion-link:before {
content: "\f1fe";
}
.ion-load-a:before {
content: "\f29a";
}
.ion-load-b:before {
content: "\f29b";
}
.ion-load-c:before {
content: "\f29c";
}
.ion-load-d:before {
content: "\f29d";
}
.ion-location:before {
content: "\f1ff";
}
.ion-locked:before {
content: "\f200";
}
.ion-log-in:before {
content: "\f29e";
}
.ion-log-out:before {
content: "\f29f";
}
.ion-loop:before {
content: "\f201";
}
.ion-magnet:before {
content: "\f2a0";
}
.ion-male:before {
content: "\f2a1";
}
.ion-man:before {
content: "\f202";
}
.ion-map:before {
content: "\f203";
}
.ion-medkit:before {
content: "\f2a2";
}
.ion-merge:before {
content: "\f33f";
}
.ion-mic-a:before {
content: "\f204";
}
.ion-mic-b:before {
content: "\f205";
}
.ion-mic-c:before {
content: "\f206";
}
.ion-minus:before {
content: "\f209";
}
.ion-minus-circled:before {
content: "\f207";
}
.ion-minus-round:before {
content: "\f208";
}
.ion-model-s:before {
content: "\f2c1";
}
.ion-monitor:before {
content: "\f20a";
}
.ion-more:before {
content: "\f20b";
}
.ion-mouse:before {
content: "\f340";
}
.ion-music-note:before {
content: "\f20c";
}
.ion-navicon:before {
content: "\f20e";
}
.ion-navicon-round:before {
content: "\f20d";
}
.ion-navigate:before {
content: "\f2a3";
}
.ion-network:before {
content: "\f341";
}
.ion-no-smoking:before {
content: "\f2c2";
}
.ion-nuclear:before {
content: "\f2a4";
}
.ion-outlet:before {
content: "\f342";
}
.ion-paper-airplane:before {
content: "\f2c3";
}
.ion-paperclip:before {
content: "\f20f";
}
.ion-pause:before {
content: "\f210";
}
.ion-person:before {
content: "\f213";
}
.ion-person-add:before {
content: "\f211";
}
.ion-person-stalker:before {
content: "\f212";
}
.ion-pie-graph:before {
content: "\f2a5";
}
.ion-pin:before {
content: "\f2a6";
}
.ion-pinpoint:before {
content: "\f2a7";
}
.ion-pizza:before {
content: "\f2a8";
}
.ion-plane:before {
content: "\f214";
}
.ion-planet:before {
content: "\f343";
}
.ion-play:before {
content: "\f215";
}
.ion-playstation:before {
content: "\f30a";
}
.ion-plus:before {
content: "\f218";
}
.ion-plus-circled:before {
content: "\f216";
}
.ion-plus-round:before {
content: "\f217";
}
.ion-podium:before {
content: "\f344";
}
.ion-pound:before {
content: "\f219";
}
.ion-power:before {
content: "\f2a9";
}
.ion-pricetag:before {
content: "\f2aa";
}
.ion-pricetags:before {
content: "\f2ab";
}
.ion-printer:before {
content: "\f21a";
}
.ion-pull-request:before {
content: "\f345";
}
.ion-qr-scanner:before {
content: "\f346";
}
.ion-quote:before {
content: "\f347";
}
.ion-radio-waves:before {
content: "\f2ac";
}
.ion-record:before {
content: "\f21b";
}
.ion-refresh:before {
content: "\f21c";
}
.ion-reply:before {
content: "\f21e";
}
.ion-reply-all:before {
content: "\f21d";
}
.ion-ribbon-a:before {
content: "\f348";
}
.ion-ribbon-b:before {
content: "\f349";
}
.ion-sad:before {
content: "\f34a";
}
.ion-scissors:before {
content: "\f34b";
}
.ion-search:before {
content: "\f21f";
}
.ion-settings:before {
content: "\f2ad";
}
.ion-share:before {
content: "\f220";
}
.ion-shuffle:before {
content: "\f221";
}
.ion-skip-backward:before {
content: "\f222";
}
.ion-skip-forward:before {
content: "\f223";
}
.ion-social-android:before {
content: "\f225";
}
.ion-social-android-outline:before {
content: "\f224";
}
.ion-social-apple:before {
content: "\f227";
}
.ion-social-apple-outline:before {
content: "\f226";
}
.ion-social-bitcoin:before {
content: "\f2af";
}
.ion-social-bitcoin-outline:before {
content: "\f2ae";
}
.ion-social-buffer:before {
content: "\f229";
}
.ion-social-buffer-outline:before {
content: "\f228";
}
.ion-social-designernews:before {
content: "\f22b";
}
.ion-social-designernews-outline:before {
content: "\f22a";
}
.ion-social-dribbble:before {
content: "\f22d";
}
.ion-social-dribbble-outline:before {
content: "\f22c";
}
.ion-social-dropbox:before {
content: "\f22f";
}
.ion-social-dropbox-outline:before {
content: "\f22e";
}
.ion-social-facebook:before {
content: "\f231";
}
.ion-social-facebook-outline:before {
content: "\f230";
}
.ion-social-foursquare:before {
content: "\f34d";
}
.ion-social-foursquare-outline:before {
content: "\f34c";
}
.ion-social-freebsd-devil:before {
content: "\f2c4";
}
.ion-social-github:before {
content: "\f233";
}
.ion-social-github-outline:before {
content: "\f232";
}
.ion-social-google:before {
content: "\f34f";
}
.ion-social-google-outline:before {
content: "\f34e";
}
.ion-social-googleplus:before {
content: "\f235";
}
.ion-social-googleplus-outline:before {
content: "\f234";
}
.ion-social-hackernews:before {
content: "\f237";
}
.ion-social-hackernews-outline:before {
content: "\f236";
}
.ion-social-instagram:before {
content: "\f351";
}
.ion-social-instagram-outline:before {
content: "\f350";
}
.ion-social-linkedin:before {
content: "\f239";
}
.ion-social-linkedin-outline:before {
content: "\f238";
}
.ion-social-pinterest:before {
content: "\f2b1";
}
.ion-social-pinterest-outline:before {
content: "\f2b0";
}
.ion-social-reddit:before {
content: "\f23b";
}
.ion-social-reddit-outline:before {
content: "\f23a";
}
.ion-social-rss:before {
content: "\f23d";
}
.ion-social-rss-outline:before {
content: "\f23c";
}
.ion-social-skype:before {
content: "\f23f";
}
.ion-social-skype-outline:before {
content: "\f23e";
}
.ion-social-tumblr:before {
content: "\f241";
}
.ion-social-tumblr-outline:before {
content: "\f240";
}
.ion-social-tux:before {
content: "\f2c5";
}
.ion-social-twitter:before {
content: "\f243";
}
.ion-social-twitter-outline:before {
content: "\f242";
}
.ion-social-usd:before {
content: "\f353";
}
.ion-social-usd-outline:before {
content: "\f352";
}
.ion-social-vimeo:before {
content: "\f245";
}
.ion-social-vimeo-outline:before {
content: "\f244";
}
.ion-social-windows:before {
content: "\f247";
}
.ion-social-windows-outline:before {
content: "\f246";
}
.ion-social-wordpress:before {
content: "\f249";
}
.ion-social-wordpress-outline:before {
content: "\f248";
}
.ion-social-yahoo:before {
content: "\f24b";
}
.ion-social-yahoo-outline:before {
content: "\f24a";
}
.ion-social-youtube:before {
content: "\f24d";
}
.ion-social-youtube-outline:before {
content: "\f24c";
}
.ion-speakerphone:before {
content: "\f2b2";
}
.ion-speedometer:before {
content: "\f2b3";
}
.ion-spoon:before {
content: "\f2b4";
}
.ion-star:before {
content: "\f24e";
}
.ion-stats-bars:before {
content: "\f2b5";
}
.ion-steam:before {
content: "\f30b";
}
.ion-stop:before {
content: "\f24f";
}
.ion-thermometer:before {
content: "\f2b6";
}
.ion-thumbsdown:before {
content: "\f250";
}
.ion-thumbsup:before {
content: "\f251";
}
.ion-toggle:before {
content: "\f355";
}
.ion-toggle-filled:before {
content: "\f354";
}
.ion-trash-a:before {
content: "\f252";
}
.ion-trash-b:before {
content: "\f253";
}
.ion-trophy:before {
content: "\f356";
}
.ion-umbrella:before {
content: "\f2b7";
}
.ion-university:before {
content: "\f357";
}
.ion-unlocked:before {
content: "\f254";
}
.ion-upload:before {
content: "\f255";
}
.ion-usb:before {
content: "\f2b8";
}
.ion-videocamera:before {
content: "\f256";
}
.ion-volume-high:before {
content: "\f257";
}
.ion-volume-low:before {
content: "\f258";
}
.ion-volume-medium:before {
content: "\f259";
}
.ion-volume-mute:before {
content: "\f25a";
}
.ion-wand:before {
content: "\f358";
}
.ion-waterdrop:before {
content: "\f25b";
}
.ion-wifi:before {
content: "\f25c";
}
.ion-wineglass:before {
content: "\f2b9";
}
.ion-woman:before {
content: "\f25d";
}
.ion-wrench:before {
content: "\f2ba";
}
.ion-xbox:before {
content: "\f30c";
}
.display-flex {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.display-inline-flex {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: 500;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: 500;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
overflow: hidden;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
background-color: #efeff4;
color: #000000;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 17px;
line-height: 1.4;
margin: 0;
padding: 0;
overflow: hidden;
bottom: 0;
left: 0;
right: 0;
top: 0;
text-rendering: optimizeLegibility;
word-wrap: break-word;
-webkit-user-drag: none;
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
}
@media (max-height: 480px), (max-width: 320px) {
body {
font-size: 15px;
}
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
resize: none;
}
a {
color: #007aff;
cursor: pointer;
text-decoration: none;
}
a:hover,
a:focus {
color: #3395ff;
text-decoration: none;
}
a:focus {
outline: none;
text-decoration: none;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
.ion:before {
font-size: 16px;
}
.ion-xs {
font-size: 8px !important;
}
.ion-sm {
font-size: 12px !important;
}
.ion-md {
font-size: 16px !important;
}
.ion-lg {
font-size: 24px !important;
}
.ion-xl {
font-size: 32px !important;
}
.ion-xxl {
font-size: 64px !important;
}
.ion-xxxl {
font-size: 128px !important;
}
p {
margin: 0 0 .66em;
}
hr.dashed {
border-top-style: dashed;
}
hr.dotted {
border-top-style: dotted;
}
.text-overflow {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-overflow--reverse {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
direction: rtl;
text-align: left;
}
.view-feedback {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
top: 50%;
padding-left: 10%;
padding-right: 10%;
text-align: center;
width: 100%;
margin-top: -22px;
}
.view-feedback-icon {
font-size: 64px;
}
.view-feedback-icon.muted {
color: #999999;
}
.view-feedback-icon.primary {
color: #007aff;
}
.view-feedback-icon.success {
color: #4cd964;
}
.view-feedback-icon.warning {
color: #ffcc00;
}
.view-feedback-icon.danger {
color: #e74c3c;
}
.view-feedback-header,
.view-feedback-subheader {
font-weight: 500;
margin-bottom: .5em;
}
.view-feedback-header {
color: #666666;
font-size: 1.2em;
}
.view-feedback-subheader {
color: #999999;
font-size: .8em;
text-transform: uppercase;
}
.view-feedback-text {
color: #666666;
}
.view-feedback-action {
color: #007aff;
display: inline-block;
margin-top: 1em;
padding: 5px;
}
.list-unstyled {
list-style: none;
margin: 0;
padding: 0;
}
.list-unstyled > li {
margin: 0;
padding: 0;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-caps,
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-thin {
font-weight: 100;
}
.text-slim {
font-weight: 300;
}
.text-regular {
font-weight: 400;
}
.text-medium {
font-weight: 500;
}
.text-bold {
font-weight: 600;
}
.text-monospace {
font-family: Courier, monospace;
}
.text-xs {
font-size: 13px;
}
.text-sm {
font-size: 15px;
}
.text-md {
font-size: 17px;
}
.text-lg {
font-size: 20px;
}
.text-huge {
font-size: 24px;
line-height: 1;
}
.text-massive {
font-size: 32px;
line-height: 1;
}
.text-muted,
.btn-link.text-muted {
color: #999999;
}
.text-dimmed,
.btn-link.text-dimmed {
color: #666666;
}
.text-base,
.btn-link.text-base {
color: #333333;
}
.text-danger,
.btn-link.text-danger {
color: #999999;
}
.text-danger:hover,
.btn-link.text-danger:hover,
.text-danger:focus,
.btn-link.text-danger:focus {
color: #e74c3c;
}
.text-error,
.btn-link.text-error {
color: #e74c3c;
}
.text-error:hover,
.btn-link.text-error:hover,
.text-error:focus,
.btn-link.text-error:focus {
color: #e74c3c;
}
.text-primary,
.btn-link.text-primary {
color: #007aff;
}
a.text-primary:hover,
a.btn-link.text-primary:hover,
a.text-primary:focus,
a.btn-link.text-primary:focus,
button.text-primary:hover,
button.btn-link.text-primary:hover,
button.text-primary:focus,
button.btn-link.text-primary:focus {
color: #3395ff;
}
.text-success,
.btn-link.text-success {
color: #4cd964;
}
a.text-success:hover,
a.btn-link.text-success:hover,
a.text-success:focus,
a.btn-link.text-success:focus,
button.text-success:hover,
button.btn-link.text-success:hover,
button.text-success:focus,
button.btn-link.text-success:focus {
color: #76e288;
}
.text-info,
.btn-link.text-info {
color: #007aff;
}
a.text-info:hover,
a.btn-link.text-info:hover,
a.text-info:focus,
a.btn-link.text-info:focus,
button.text-info:hover,
button.btn-link.text-info:hover,
button.text-info:focus,
button.btn-link.text-info:focus {
color: #3395ff;
}
.text-warning,
.btn-link.text-warning {
color: #ffcc00;
}
a.text-warning:hover,
a.btn-link.text-warning:hover,
a.text-warning:focus,
a.btn-link.text-warning:focus,
button.text-warning:hover,
button.btn-link.text-warning:hover,
button.text-warning:focus,
button.btn-link.text-warning:focus {
color: #ffd633;
}
.inline {
display: inline;
}
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.collapse-left {
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important;
}
.collapse-right {
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
.visually-hidden {
-webkit-transition: opacity 150ms, visibility 150ms;
-o-transition: opacity 150ms, visibility 150ms;
transition: opacity 150ms, visibility 150ms;
opacity: 0;
pointer-events: none;
visibility: hidden;
}
.u-round-none {
border-radius: 0 !important;
}
.u-round {
border-radius: 8px;
}
.u-round-bottom {
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.u-round-top {
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.u-crop {
overflow: hidden;
}
.u-scrollable {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.u-selectable {
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.v-center {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
top: 50%;
}
.mt-5 {
margin-top: 5px;
}
.mr-5 {
margin-right: 5px;
}
.mb-5 {
margin-bottom: 5px;
}
.ml-5 {
margin-left: 5px;
}
.mt-1 {
margin-top: 10px;
}
.mr-1 {
margin-right: 10px;
}
.mb-1 {
margin-bottom: 10px;
}
.ml-1 {
margin-left: 10px;
}
.mt-2 {
margin-top: 20px;
}
.mr-2 {
margin-right: 20px;
}
.mb-2 {
margin-bottom: 20px;
}
.ml-2 {
margin-left: 20px;
}
.mv-1 {
margin-bottom: 10px;
margin-top: 10px;
}
.mv-2 {
margin-bottom: 20px;
margin-top: 20px;
}
.mv-3 {
margin-bottom: 30px;
margin-top: 30px;
}
.mh-1 {
margin-left: 10px;
margin-right: 10px;
}
.mh-2 {
margin-left: 20px;
margin-right: 20px;
}
.mh-3 {
margin-left: 30px;
margin-right: 30px;
}
.pt-1 {
padding-top: 10px;
}
.pr-1 {
padding-right: 10px;
}
.pb-1 {
padding-bottom: 10px;
}
.pl-1 {
padding-left: 10px;
}
.pt-2 {
padding-top: 20px;
}
.pr-2 {
padding-right: 20px;
}
.pb-2 {
padding-bottom: 20px;
}
.pl-2 {
padding-left: 20px;
}
.pv-1 {
padding-bottom: 10px;
padding-top: 10px;
}
.pv-2 {
padding-bottom: 20px;
padding-top: 20px;
}
.pv-3 {
padding-bottom: 30px;
padding-top: 30px;
}
.ph-1 {
padding-left: 10px;
padding-right: 10px;
}
.ph-2 {
padding-left: 20px;
padding-right: 20px;
}
.ph-3 {
padding-left: 30px;
padding-right: 30px;
}
.mt-0 {
margin-top: 0 !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mv-0 {
margin-bottom: 0 !important;
margin-top: 0 !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pl-0 {
padding-left: 0 !important;
}
.pr-0 {
padding-right: 0 !important;
}
.pv-0 {
padding-bottom: 0 !important;
padding-top: 0 !important;
}
@-webkit-keyframes artificial {
from {
opacity: .99;
}
to {
opacity: 1;
}
}
@keyframes artificial {
from {
opacity: .99;
}
to {
opacity: 1;
}
}
@-webkit-keyframes viewShowFromLeftEnter {
from {
-webkit-transform: translate3d(-100%, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromLeftEnter {
from {
transform: translate3d(-100%, 0, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromLeftLeave {
to {
opacity: .75;
-webkit-transform: translate3d(25%, 0, 0);
}
}
@keyframes viewShowFromLeftLeave {
to {
opacity: .75;
transform: translate3d(25%, 0, 0);
}
}
@-webkit-keyframes viewShowFromRightEnter {
from {
-webkit-transform: translate3d(100%, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromRightEnter {
from {
transform: translate3d(100%, 0, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromRightLeave {
to {
opacity: .75;
-webkit-transform: translate3d(-25%, 0, 0);
}
}
@keyframes viewShowFromRightLeave {
to {
opacity: .75;
transform: translate3d(-25%, 0, 0);
}
}
@-webkit-keyframes viewShowFromTopEnter {
from {
-webkit-transform: translate3d(0, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromTopEnter {
from {
transform: translate3d(0, -100%, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromBottomEnter {
from {
-webkit-transform: translate3d(0, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromBottomEnter {
from {
transform: translate3d(0, 100%, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromLeftLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(-100%, 0, 0);
}
}
@keyframes viewRevealFromLeftLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(-100%, 0, 0);
}
}
@-webkit-keyframes viewRevealFromLeftEnter {
from {
opacity: .75;
-webkit-transform: translate3d(25%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewRevealFromLeftEnter {
from {
opacity: .75;
transform: translate3d(25%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromRightLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(100%, 0, 0);
}
}
@keyframes viewRevealFromRightLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(100%, 0, 0);
}
}
@-webkit-keyframes viewRevealFromRightEnter {
from {
opacity: .75;
-webkit-transform: translate3d(-25%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewRevealFromRightEnter {
from {
opacity: .75;
transform: translate3d(-25%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromTopLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(0, -100%, 0);
}
}
@keyframes viewRevealFromTopLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, -100%, 0);
}
}
@-webkit-keyframes viewRevealFromBottomLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(0, 100%, 0);
}
}
@keyframes viewRevealFromBottomLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, 100%, 0);
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fade {
to {
opacity: 0;
}
}
@keyframes fade {
to {
opacity: 0;
}
}
@-webkit-keyframes fadeExpand {
to {
opacity: 0;
-webkit-transform: scale(1.5);
}
}
@keyframes fadeExpand {
to {
opacity: 0;
transform: scale(1.5);
}
}
@-webkit-keyframes fadeContract {
to {
opacity: 0;
-webkit-transform: scale(0.35);
}
}
@keyframes fadeContract {
to {
opacity: 0;
transform: scale(0.35);
}
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@-webkit-keyframes pulse {
50% {
opacity: .25;
}
}
@keyframes pulse {
50% {
opacity: .25;
}
}
.field-label {
color: #666666;
line-height: 20px;
width: 35%;
}
.field-control {
line-height: 20px;
position: relative;
width: 65%;
}
.field {
background: none transparent;
border: 0 none;
box-shadow: none;
color: #000000;
display: inline-block;
line-height: 1;
outline: none;
min-height: 20px;
margin: 0;
padding: 0;
width: 100%;
-webkit-appearance: none;
}
.field::-moz-placeholder {
color: #c7c7cd;
opacity: 1;
}
.field:-ms-input-placeholder {
color: #c7c7cd;
}
.field::-webkit-input-placeholder {
color: #c7c7cd;
}
div.field {
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.form-control-with-toggle {
padding: 14px 0;
position: relative;
}
.form-control-toggle {
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
border-radius: 8px;
border: 0 none;
display: inline-block;
font-weight: 500;
padding: 14px 16px;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
-webkit-box-shadow: none;
box-shadow: none;
border-color: transparent;
border-radius: 0;
color: #007aff;
cursor: pointer;
position: absolute;
right: 0;
top: 0;
}
.form-control-toggle,
.form-control-toggle:active,
.form-control-toggle[disabled],
fieldset[disabled] .form-control-toggle {
background-color: transparent;
}
.form-control-toggle:hover,
.form-control-toggle:active,
.form-control-toggle:focus {
color: #3395ff;
background-color: transparent;
}
.select-field {
background: none transparent;
border: 0 none;
box-shadow: none;
display: inline-block;
line-height: 1;
min-height: 20px;
margin: 0;
padding: 0;
color: #000000;
font-size: inherit;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.4;
outline: none;
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.select-field::-moz-placeholder {
color: #c7c7cd;
opacity: 1;
}
.select-field:-ms-input-placeholder {
color: #c7c7cd;
}
.select-field::-webkit-input-placeholder {
color: #c7c7cd;
}
div.select-field {
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.select-field:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
.select-field:focus + .select-field-indicator .select-field-indicator-arrow {
border-top-color: #666666;
}
.select-field-indicator,
.select-field-indicator-arrow {
bottom: 1px;
content: '';
display: inline-block;
right: 1px;
top: 1px;
position: absolute;
pointer-events: none;
}
.select-field-indicator {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px;
background-color: white;
width: 1.5em;
}
.select-field-indicator-arrow {
width: 0;
height: 0;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 4px solid transparent;
border-top-color: #c7c7cd;
border-bottom-width: 0;
right: 4px;
text-align: center;
top: 50%;
}
.g-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -5px;
margin-right: -5px;
}
.g-col {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
padding-left: 5px;
padding-right: 5px;
}
.g-one-whole,
.g-one-half,
.g-one-quarter,
.g-three-quarters,
.g-one-third,
.g-two-thirds,
.g-one-fifth,
.g-two-fifths,
.g-three-fifths,
.g-four-fifths,
.g-one-sixth,
.g-five-sixths {
-webkit-flex: 0;
-ms-flex: 0;
flex: 0;
}
.g-one-whole {
width: 100%;
}
.g-one-half,
.g-two-quarters,
.g-three-sixths {
width: 50%;
}
.g-one-quarter {
width: 25%;
}
.g-three-quarters {
width: 75%;
}
.g-one-third,
.g-two-sixths {
width: 33.333%;
}
.g-two-thirds,
.g-four-sixths {
width: 66.666%;
}
.g-one-fifth {
width: 20%;
}
.g-two-fifths {
width: 40%;
}
.g-three-fifths {
width: 60%;
}
.g-four-fifths {
width: 80%;
}
.g-one-sixth {
width: 16.666%;
}
.g-five-sixths {
width: 83.333%;
}
#app,
html,
body {
width: 100%;
height: 100%;
background: #efeff4;
overflow: hidden;
position: fixed;
}
.app-wrapper {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
overflow: hidden;
position: fixed;
}
@media only screen and (min-width: 480px) {
.app-wrapper {
width: 376px;
height: 668px;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
box-shadow: 0 0 12px -1px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
left: 50%;
top: 50%;
}
}
.FlexLayout {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.springy-scrolling {
position: relative;
}
.springy-scrolling:before,
.springy-scrolling:after {
width: 1px;
height: 1px;
content: "";
position: absolute;
}
.springy-scrolling:before {
bottom: -1px;
}
.springy-scrolling:after {
top: -1px;
}
.view {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #efeff4;
overflow: hidden;
position: fixed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.view-processing {
pointer-events: none;
}
.view-processing:after {
-webkit-animation: fadeIn 150ms;
-o-animation: fadeIn 150ms;
animation: fadeIn 150ms;
position: absolute;
top: 20px;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.66);
content: "";
z-index: 2;
}
.is-native-app .view {
padding-top: 20px;
}
.is-native-app .view .Headerbar:before {
background-color: #f6f6f7;
content: "";
display: block !important;
height: 20px;
left: 0;
position: fixed;
top: 0;
width: 100%;
}
.is-native-app .view .Headerbar.green:before {
background-color: #4cd964;
}
.is-native-app .view .Headerbar.blue:before,
.is-native-app .view .Headerbar.primary:before {
background-color: #007aff;
}
.is-native-app .view .Headerbar.light-blue:before {
background-color: #5ac8fa;
}
.is-native-app .view .Headerbar.yellow:before {
background-color: #ffcc00;
}
.is-native-app .view .Headerbar.orange:before {
background-color: #ff9500;
}
.is-native-app .view .Headerbar.red:before {
background-color: #ff3b30;
}
.is-native-app .view .Headerbar.pink:before {
background-color: #ff2d55;
}
.is-native-app .view .Headerbar.purple:before {
background-color: #5856d6;
}
.view-inner {
margin: 14px 16px;
}
.view-transition-none-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-none-leave {
-webkit-animation: fade 10ms;
-o-animation: fade 10ms;
animation: fade 10ms;
}
.view-transition-fade-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-leave {
-webkit-animation: fade 380ms;
-o-animation: fade 380ms;
animation: fade 380ms;
}
.view-transition-fade-expand-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-expand-leave {
-webkit-animation: fadeExpand 320ms;
-o-animation: fadeExpand 320ms;
animation: fadeExpand 320ms;
}
.view-transition-fade-contract-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-contract-leave {
-webkit-animation: fadeContract 320ms;
-o-animation: fadeContract 320ms;
animation: fadeContract 320ms;
}
.view-transition-show-from-top-enter,
.view-transition-show-from-right-enter,
.view-transition-show-from-bottom-enter,
.view-transition-show-from-left-enter {
z-index: 20;
}
.view-transition-show-from-top-leave,
.view-transition-show-from-right-leave,
.view-transition-show-from-bottom-leave,
.view-transition-show-from-left-leave {
z-index: 10;
}
.view-transition-show-from-top-enter,
.view-transition-show-from-top-leave,
.view-transition-show-from-bottom-enter,
.view-transition-show-from-bottom-leave {
-webkit-animation-duration: 380ms;
animation-duration: 380ms;
-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.view-transition-show-from-left-enter,
.view-transition-show-from-left-leave,
.view-transition-show-from-right-enter,
.view-transition-show-from-right-leave {
-webkit-animation-duration: 320ms;
animation-duration: 320ms;
-webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.view-transition-show-from-top-leave,
.view-transition-show-from-bottom-leave {
-webkit-animation-name: artificial;
animation-name: artificial;
}
.view-transition-show-from-top-enter {
-webkit-animation-name: viewShowFromTopEnter;
animation-name: viewShowFromTopEnter;
}
.view-transition-show-from-right-enter {
-webkit-animation-name: viewShowFromRightEnter;
animation-name: viewShowFromRightEnter;
}
.view-transition-show-from-bottom-enter {
-webkit-animation-name: viewShowFromBottomEnter;
animation-name: viewShowFromBottomEnter;
}
.view-transition-show-from-left-enter {
-webkit-animation-name: viewShowFromLeftEnter;
animation-name: viewShowFromLeftEnter;
}
.view-transition-show-from-left-leave {
-webkit-animation-name: viewShowFromLeftLeave;
animation-name: viewShowFromLeftLeave;
}
.view-transition-show-from-right-leave {
-webkit-animation-name: viewShowFromRightLeave;
animation-name: viewShowFromRightLeave;
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-right-enter,
.view-transition-reveal-from-bottom-enter,
.view-transition-reveal-from-left-enter {
z-index: 10;
}
.view-transition-reveal-from-top-leave,
.view-transition-reveal-from-right-leave,
.view-transition-reveal-from-bottom-leave,
.view-transition-reveal-from-left-leave {
z-index: 20;
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-top-leave,
.view-transition-reveal-from-bottom-enter,
.view-transition-reveal-from-bottom-leave {
-webkit-animation-duration: 380ms;
animation-duration: 380ms;
-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.view-transition-reveal-from-left-enter,
.view-transition-reveal-from-left-leave,
.view-transition-reveal-from-right-enter,
.view-transition-reveal-from-right-leave {
-webkit-animation-duration: 320ms;
animation-duration: 320ms;
-webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-bottom-enter {
-webkit-animation-name: artificial;
animation-name: artificial;
}
.view-transition-reveal-from-top-leave {
-webkit-animation-name: viewRevealFromTopLeave;
animation-name: viewRevealFromTopLeave;
}
.view-transition-reveal-from-right-leave {
-webkit-animation-name: viewRevealFromRightLeave;
animation-name: viewRevealFromRightLeave;
}
.view-transition-reveal-from-bottom-leave {
-webkit-animation-name: viewRevealFromBottomLeave;
animation-name: viewRevealFromBottomLeave;
}
.view-transition-reveal-from-left-leave {
-webkit-animation-name: viewRevealFromLeftLeave;
animation-name: viewRevealFromLeftLeave;
}
.view-transition-reveal-from-left-enter {
-webkit-animation-name: viewRevealFromLeftEnter;
animation-name: viewRevealFromLeftEnter;
}
.view-transition-reveal-from-right-enter {
-webkit-animation-name: viewRevealFromRightEnter;
animation-name: viewRevealFromRightEnter;
}
.statusbar {
width: 100%;
height: 20px;
background-color: #f6f6f7;
}
.alertbar {
background-color: #999999;
color: white;
font-size: 15px;
font-weight: 500;
height: 30px;
line-height: 30px;
position: relative;
text-align: center;
}
.alertbar.primary {
background-color: #007aff;
}
.alertbar.success {
background-color: #4cd964;
}
.alertbar.warning {
background-color: #ffcc00;
}
.alertbar.danger {
background-color: #e74c3c;
}
.alertbar:after {
-webkit-animation: pulse 2s linear infinite;
-o-animation: pulse 2s linear infinite;
animation: pulse 2s linear infinite;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
content: "";
opacity: 0;
z-index: 1;
}
.alertbar-text {
position: relative;
z-index: 2;
}
button {
padding: 0;
}
.btn {
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
border-radius: 8px;
border: 0 none;
display: inline-block;
font-weight: 500;
padding: 14px 16px;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
}
.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
border-color: transparent;
border-radius: 0;
color: #007aff;
cursor: pointer;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
}
.btn-link:hover,
.btn-link:active,
.btn-link:focus {
color: #3395ff;
background-color: transparent;
}
.btn-default {
background-image: -webkit-linear-gradient(top, #eeeeee 0%, #dddddd 100%);
background-image: -o-linear-gradient(top, #eeeeee 0%, #dddddd 100%);
background-image: linear-gradient(to bottom, #eeeeee 0%, #dddddd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
color: #000000;
}
.btn-default:hover,
.btn-default:focus {
background-image: -webkit-linear-gradient(top, #f6f6f6 0%, #e6e6e6 100%);
background-image: -o-linear-gradient(top, #f6f6f6 0%, #e6e6e6 100%);
background-image: linear-gradient(to bottom, #f6f6f6 0%, #e6e6e6 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0);
color: #000000;
}
.btn-default:active,
.btn-default.active {
background: #ddd;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125);
}
.btn-primary {
background-image: -webkit-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: -o-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: linear-gradient(to bottom, #1485ff 0%, #0070eb 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1485ff', endColorstr='#ff0070eb', GradientType=0);
background-color: #007aff;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-primary:hover,
.btn-primary:focus {
background-image: -webkit-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: -o-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: linear-gradient(to bottom, #298fff 0%, #007aff 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff298fff', endColorstr='#ff007aff', GradientType=0);
background-color: #1a87ff;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-primary:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #006ee6;
}
.btn-success {
background-image: -webkit-linear-gradient(top, #5ddd73 0%, #3bd555 100%);
background-image: -o-linear-gradient(top, #5ddd73 0%, #3bd555 100%);
background-image: linear-gradient(to bottom, #5ddd73 0%, #3bd555 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5ddd73', endColorstr='#ff3bd555', GradientType=0);
background-color: #4cd964;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-success:hover,
.btn-success:focus {
background-image: -webkit-linear-gradient(top, #6ee081 0%, #4cd964 100%);
background-image: -o-linear-gradient(top, #6ee081 0%, #4cd964 100%);
background-image: linear-gradient(to bottom, #6ee081 0%, #4cd964 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6ee081', endColorstr='#ff4cd964', GradientType=0);
background-color: #61dd76;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-success:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #37d552;
}
.btn-info {
background-image: -webkit-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: -o-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: linear-gradient(to bottom, #1485ff 0%, #0070eb 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1485ff', endColorstr='#ff0070eb', GradientType=0);
background-color: #007aff;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-info:hover,
.btn-info:focus {
background-image: -webkit-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: -o-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: linear-gradient(to bottom, #298fff 0%, #007aff 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff298fff', endColorstr='#ff007aff', GradientType=0);
background-color: #1a87ff;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-info:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #006ee6;
}
.btn-warning {
background-image: -webkit-linear-gradient(top, #ffd014 0%, #ebbc00 100%);
background-image: -o-linear-gradient(top, #ffd014 0%, #ebbc00 100%);
background-image: linear-gradient(to bottom, #ffd014 0%, #ebbc00 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd014', endColorstr='#ffebbc00', GradientType=0);
background-color: #ffcc00;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-warning:hover,
.btn-warning:focus {
background-image: -webkit-linear-gradient(top, #ffd429 0%, #ffcc00 100%);
background-image: -o-linear-gradient(top, #ffd429 0%, #ffcc00 100%);
background-image: linear-gradient(to bottom, #ffd429 0%, #ffcc00 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd429', endColorstr='#ffffcc00', GradientType=0);
background-color: #ffd11a;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-warning:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #e6b800;
}
.btn-danger {
background-image: -webkit-linear-gradient(top, #e95d4e 0%, #e53b2a 100%);
background-image: -o-linear-gradient(top, #e95d4e 0%, #e53b2a 100%);
background-image: linear-gradient(to bottom, #e95d4e 0%, #e53b2a 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe95d4e', endColorstr='#ffe53b2a', GradientType=0);
background-color: #e74c3c;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-danger:hover,
.btn-danger:focus {
background-image: -webkit-linear-gradient(top, #eb6d60 0%, #e74c3c 100%);
background-image: -o-linear-gradient(top, #eb6d60 0%, #e74c3c 100%);
background-image: linear-gradient(to bottom, #eb6d60 0%, #e74c3c 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeb6d60', endColorstr='#ffe74c3c', GradientType=0);
background-color: #ea6153;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-danger:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #e43725;
}
.btn-block {
display: block;
width: 100%;
}
.panel-button {
background-color: white;
border: 0 none;
font-weight: normal;
line-height: 1;
outline: none;
text-decoration: none;
-webkit-appearance: none;
color: #000000;
display: block;
margin-bottom: 34px;
padding: 14px 16px;
position: relative;
text-align: center;
width: 100%;
}
.panel-button:after,
.panel-button:before {
width: 100%;
height: 1px;
background-color: rgba(0, 0, 0, 0.17);
content: " ";
left: 0;
position: absolute;
}
.panel-button:before {
top: -1px;
}
.panel-button:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.panel-button:after,
.panel-button:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.panel-button:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.panel-button:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.panel-button.muted {
color: #666666;
}
.panel-button.primary {
color: #007aff;
font-weight: 500;
}
.panel-button.info {
color: #007aff;
}
.panel-button.success {
color: #4cd964;
}
.panel-button.warning {
color: #ffcc00;
}
.panel-button.danger {
color: #e74c3c;
}
.panel-button + .panel-button {
margin-top: -17px;
}
.panel-button.Tappable-active {
background-color: #eeeeee;
}
.panel-button.disabled,
.panel-button[disabled] {
pointer-events: none;
opacity: .5;
}
.panel-button--first {
margin-top: 34px;
}
.loading-button-icon,
.loading-button-text {
-webkit-transition: opacity 400ms;
-o-transition: opacity 400ms;
transition: opacity 400ms;
}
.loading-button-icon-wrapper {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
margin-left: -12px;
left: 50%;
height: 100%;
position: absolute;
top: 0;
}
.loading-button-icon {
width: 24px;
height: 24px;
margin: auto;
position: relative;
-webkit-transition-delay: 200ms;
transition-delay: 200ms;
opacity: 0;
}
.loading-button-icon:before,
.loading-button-icon:after {
width: 24px;
height: 24px;
content: "";
border-radius: 50%;
border: 3px solid #007aff;
left: 0;
opacity: .33;
position: absolute;
top: 0;
}
.loading-button-icon:after {
-webkit-animation: spin 500ms linear infinite;
-o-animation: spin 500ms linear infinite;
animation: spin 500ms linear infinite;
border-color: transparent;
border-top-color: #007aff;
display: inline-block;
opacity: 1;
}
.loading-button.is-loading .loading-button-icon {
opacity: 1;
}
.loading-button.is-loading .loading-button-text {
opacity: 0;
}
.action-buttons {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: 'row nowrap';
-ms-flex-flow: 'row nowrap';
flex-flow: 'row nowrap';
}
.action-buttons + .action-buttons {
border-top: 1px solid #d1d1df;
}
.action-button-cell {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
border-left: 1px solid #d1d1df;
text-align: center;
}
.action-button-cell:first-child {
border-left: none;
}
.action-button {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
justify-content: center;
background: none transparent;
border: 0 none;
cursor: pointer;
min-height: 70px;
padding: 5px;
position: relative;
text-align: center;
width: 100%;
-webkit-appearance: none;
}
.action-button.disabled,
.action-button[disabled] {
pointer-events: none;
}
.action-button.disabled:before,
.action-button[disabled]:before,
.action-button.disabled > .action-button-label,
.action-button[disabled] > .action-button-label {
color: #cccccc;
}
.action-button.Tappable-active {
background-color: #eeeeee;
}
.action-button:before {
color: #007aff;
display: inline-block;
font-size: 32px;
height: 32px;
line-height: 1;
}
.action-button-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 15px;
font-weight: 500;
}
.action-buttons.special {
box-shadow: 0 0 0 1px #e6b800;
}
.action-buttons.special .action-button-cell {
border-color: #d9ad00;
}
.action-buttons.special .action-button {
background-color: #ffcc00;
}
.action-buttons.special .action-button-icon {
color: #000000;
}
.scan-button {
width: 100%;
height: 60px;
background-color: #007aff;
border: 0 none;
color: white;
display: block;
font-weight: 500;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
}
.scan-button.loading,
.scan-button.Tappable-active {
background-color: #0062cc;
}
.scan-button.loading .scan-button-icon,
.scan-button.Tappable-active .scan-button-icon {
background-color: #cce4ff;
box-shadow: 0 0 0 4px #0062cc;
}
.scan-button.loading {
-webkit-transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
-o-transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
-webkit-transform: translateY(125%);
-ms-transform: translateY(125%);
-o-transform: translateY(125%);
transform: translateY(125%);
}
.scan-button[disabled],
.scan-button.disabled {
background-color: #666666;
opacity: .2;
pointer-events: none;
}
.scan-button[disabled] .scan-button-icon,
.scan-button.disabled .scan-button-icon {
box-shadow: 0 0 0 4px #666666;
}
.scan-button-icon {
display: inline-block;
vertical-align: middle;
width: 70px;
height: 70px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 0 0 4px #007aff;
color: #000000;
font-size: 32px;
left: 50%;
line-height: 70px;
margin-left: -35px;
margin-top: -35px;
position: absolute;
top: 50%;
}
.scan-button-icon > svg {
display: inline-block;
vertical-align: middle;
width: 32px;
height: 32px;
margin-top: -7px;
}
.scan-button-labels {
width: 100%;
height: 100%;
display: table;
table-layout: fixed;
}
.scan-button-label {
background: 0 0;
border: none;
display: table-cell;
padding: 0 16px;
vertical-align: middle;
text-align: center;
}
.scan-button-label-icon {
width: 70px;
}
.scan-button-label-left {
text-align: right;
}
.scan-button-label-right {
text-align: left;
}
.list-item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
color: #000000;
line-height: 1;
overflow: hidden;
padding: 14px 16px;
position: relative;
z-index: 1;
}
.list-item:before {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
background-color: #bfbfc3;
content: " ";
left: 0;
position: absolute;
top: 0;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.list-item:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.list-item:first-child:before,
.list-item.is-first:before {
display: none;
}
.ios-list .list-item:before {
left: 16px;
}
.icon-list .list-item {
padding-left: 61px;
}
.icon-list .list-item:before {
left: 61px;
}
.avatar-list .list-item {
padding-left: 72px;
}
.avatar-list .list-item:before {
left: 72px;
}
.list-item:hover,
.list-item:active,
.list-item:focus {
color: #000000;
text-decoration: none;
}
.list-item.Tappable-active {
background-color: #eeeeee;
}
.list-item.is-tappable:after {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-size: inherit;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #cccccc;
content: "\f125";
font-size: 16px;
-webkit-align-items: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 100%;
position: absolute;
right: 10px;
top: 0;
}
.list-item-title {
display: inline-block;
vertical-align: middle;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: -2px;
padding-bottom: 2px;
}
.list-item-subtitle {
color: #666666;
font-size: 85%;
font-weight: 300;
}
.center-align-left,
.center-align-right {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
height: 100%;
position: absolute;
top: 0;
}
.center-align-left {
left: 16px;
}
.center-align-right {
right: 16px;
}
.item-note {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
height: 100%;
padding: 0 5px;
position: absolute;
right: 0;
top: 0;
}
.item-note.is-muted .item-note-label {
color: #999;
}
.item-note.is-muted .item-note-icon {
color: #ccc;
}
.item-note.is-primary {
color: #007aff;
}
.item-note.is-primary .item-note-label,
.item-note.is-primary .item-note-icon {
color: #007aff;
}
.item-note.item-note-icon,
.item-note.item-note-label {
padding-left: 10px;
padding-right: 10px;
}
.item-note-icon,
.item-note-label {
display: inline-block;
vertical-align: top;
padding: 14px 5px;
}
.item-note-label {
color: #999;
}
.item-note-icon {
color: #ccc;
}
.list-item-icon-left,
.list-item-icon-right {
min-height: 40px;
}
.list-icon {
display: inline-block;
vertical-align: middle;
width: 29px;
height: 29px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
line-height: 29px;
position: absolute;
top: 50%;
text-align: center;
}
.list-icon:before {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
font-size: 16px;
height: 100%;
}
.list-icon.left {
left: 16px;
}
.list-icon.left.flush {
left: 0;
}
.list-icon.right {
right: 16px;
}
.list-icon.right.flush {
right: 0;
}
.list-avatar {
display: inline-block;
vertical-align: middle;
width: 40px;
height: 40px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
background-color: #b3b3b3;
border-radius: 50%;
color: white;
font-size: 24px;
line-height: 40px;
left: 16px;
position: absolute;
text-align: center;
top: 50%;
}
.list-avatar > img {
border-radius: 50%;
display: block;
height: auto;
max-width: 100%;
}
.list-header {
background-color: white;
background-color: #efeff4;
color: #4d4d4d;
display: block;
font-size: 13px;
font-weight: 500;
line-height: 1.1;
margin: 0;
padding: 7px 16px;
position: relative;
text-transform: uppercase;
}
.list-header:after,
.list-header:before {
width: 100%;
height: 1px;
background-color: #bfbfc3;
content: " ";
left: 0;
position: absolute;
}
.list-header:before {
top: -1px;
}
.list-header:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.list-header:after,
.list-header:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.list-header:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.list-header:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.loading-overlay {
background-color: rgba(0, 0, 0, 0.66);
bottom: 0;
left: 0;
overflow: hidden;
position: fixed;
right: 0;
top: 0;
z-index: 11;
}
.loading-spinner,
.loading-spinner-indicator {
width: 100px;
height: 100px;
border-radius: 50%;
border: 10px solid rgba(255, 255, 255, 0.5);
left: 50%;
margin-left: -50px;
margin-top: -50px;
position: absolute;
top: 50%;
}
.loading-spinner-indicator {
-webkit-animation: spin 500ms linear infinite;
-o-animation: spin 500ms linear infinite;
animation: spin 500ms linear infinite;
border-color: transparent;
border-top-color: white;
}
.Footerbar {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background-color: white;
background-color: #f6f6f7;
color: #222222;
height: 44px;
margin: 0;
position: relative;
z-index: 3;
}
.Footerbar:after {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
background-color: rgba(0, 0, 0, 0.3);
top: -1px;
content: " ";
left: 0;
position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.Footerbar:after {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.Footerbar.green,
.Footerbar.blue,
.Footerbar.primary,
.Footerbar.light-blue,
.Footerbar.yellow,
.Footerbar.orange,
.Footerbar.red,
.Footerbar.pink,
.Footerbar.purple {
color: #ffffff;
}
.Footerbar.green:after,
.Footerbar.blue:after,
.Footerbar.primary:after,
.Footerbar.light-blue:after,
.Footerbar.yellow:after,
.Footerbar.orange:after,
.Footerbar.red:after,
.Footerbar.pink:after,
.Footerbar.purple:after {
display: none;
}
.Footerbar.green .Footerbar-button,
.Footerbar.blue .Footerbar-button,
.Footerbar.primary .Footerbar-button,
.Footerbar.light-blue .Footerbar-button,
.Footerbar.yellow .Footerbar-button,
.Footerbar.orange .Footerbar-button,
.Footerbar.red .Footerbar-button,
.Footerbar.pink .Footerbar-button,
.Footerbar.purple .Footerbar-button {
color: rgba(255, 255, 255, 0.8);
}
.Footerbar.green .Footerbar-button.disabled,
.Footerbar.blue .Footerbar-button.disabled,
.Footerbar.primary .Footerbar-button.disabled,
.Footerbar.light-blue .Footerbar-button.disabled,
.Footerbar.yellow .Footerbar-button.disabled,
.Footerbar.orange .Footerbar-button.disabled,
.Footerbar.red .Footerbar-button.disabled,
.Footerbar.pink .Footerbar-button.disabled,
.Footerbar.purple .Footerbar-button.disabled,
.Footerbar.green .Footerbar-button[disabled],
.Footerbar.blue .Footerbar-button[disabled],
.Footerbar.primary .Footerbar-button[disabled],
.Footerbar.light-blue .Footerbar-button[disabled],
.Footerbar.yellow .Footerbar-button[disabled],
.Footerbar.orange .Footerbar-button[disabled],
.Footerbar.red .Footerbar-button[disabled],
.Footerbar.pink .Footerbar-button[disabled],
.Footerbar.purple .Footerbar-button[disabled] {
color: rgba(255, 255, 255, 0.4);
}
.Footerbar.green {
background-color: #4cd964;
}
.Footerbar.blue,
.Footerbar.primary {
background-color: #007aff;
}
.Footerbar.light-blue {
background-color: #5ac8fa;
}
.Footerbar.yellow {
background-color: #ffcc00;
}
.Footerbar.orange {
background-color: #ff9500;
}
.Footerbar.red {
background-color: #ff3b30;
}
.Footerbar.pink {
background-color: #ff2d55;
}
.Footerbar.purple {
background-color: #5856d6;
}
.Footerbar.yellow {
color: #222222;
}
.Footerbar.yellow .Footerbar-button {
color: rgba(0, 0, 0, 0.8);
}
.Footerbar.yellow .Footerbar-button.disabled,
.Footerbar.yellow .Footerbar-button[disabled] {
color: rgba(0, 0, 0, 0.4);
}
.Footerbar-button {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
background: none transparent;
border: 0 none;
color: #007aff;
cursor: pointer;
padding: 0 5px;
position: relative;
text-align: center;
width: 100%;
-webkit-appearance: none;
}
.Footerbar-button.disabled,
.Footerbar-button[disabled] {
pointer-events: none;
}
.Footerbar-button.disabled:before,
.Footerbar-button[disabled]:before,
.Footerbar-button.disabled > .Footerbar-button-label,
.Footerbar-button[disabled] > .Footerbar-button-label {
color: #cccccc;
}
.Footerbar-button.Tappable-active {
background-color: #eeeeee;
}
.Footerbar-button:before {
color: inherit;
display: inline-block;
font-size: 32px;
height: 32px;
line-height: 1;
}
.Footerbar-button.selectable {
color: #666666;
}
.Footerbar-button.selected {
color: #007aff;
}
.Footerbar-button-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: #000000;
font-size: 13px;
}
.Headerbar {
background-color: white;
background-color: #f6f6f7;
color: #222222;
height: 44px;
line-height: 44px;
margin: 0;
position: relative;
z-index: 3;
}
.Headerbar:after {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
background-color: rgba(0, 0, 0, 0.3);
bottom: -1px;
content: " ";
left: 0;
position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.Headerbar:after {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.Headerbar.green,
.Headerbar.blue,
.Headerbar.primary,
.Headerbar.light-blue,
.Headerbar.yellow,
.Headerbar.orange,
.Headerbar.red,
.Headerbar.pink,
.Headerbar.purple {
color: #ffffff;
}
.Headerbar.green:after,
.Headerbar.blue:after,
.Headerbar.primary:after,
.Headerbar.light-blue:after,
.Headerbar.yellow:after,
.Headerbar.orange:after,
.Headerbar.red:after,
.Headerbar.pink:after,
.Headerbar.purple:after {
display: none;
}
.Headerbar.green .Headerbar-button,
.Headerbar.blue .Headerbar-button,
.Headerbar.primary .Headerbar-button,
.Headerbar.light-blue .Headerbar-button,
.Headerbar.yellow .Headerbar-button,
.Headerbar.orange .Headerbar-button,
.Headerbar.red .Headerbar-button,
.Headerbar.pink .Headerbar-button,
.Headerbar.purple .Headerbar-button {
color: rgba(255, 255, 255, 0.8);
}
.Headerbar.green .Headerbar-button.disabled,
.Headerbar.blue .Headerbar-button.disabled,
.Headerbar.primary .Headerbar-button.disabled,
.Headerbar.light-blue .Headerbar-button.disabled,
.Headerbar.yellow .Headerbar-button.disabled,
.Headerbar.orange .Headerbar-button.disabled,
.Headerbar.red .Headerbar-button.disabled,
.Headerbar.pink .Headerbar-button.disabled,
.Headerbar.purple .Headerbar-button.disabled,
.Headerbar.green .Headerbar-button[disabled],
.Headerbar.blue .Headerbar-button[disabled],
.Headerbar.primary .Headerbar-button[disabled],
.Headerbar.light-blue .Headerbar-button[disabled],
.Headerbar.yellow .Headerbar-button[disabled],
.Headerbar.orange .Headerbar-button[disabled],
.Headerbar.red .Headerbar-button[disabled],
.Headerbar.pink .Headerbar-button[disabled],
.Headerbar.purple .Headerbar-button[disabled] {
color: rgba(255, 255, 255, 0.4);
}
.Headerbar.green {
background-color: #4cd964;
}
.Headerbar.blue,
.Headerbar.primary {
background-color: #007aff;
}
.Headerbar.light-blue {
background-color: #5ac8fa;
}
.Headerbar.yellow {
background-color: #ffcc00;
}
.Headerbar.orange {
background-color: #ff9500;
}
.Headerbar.red {
background-color: #ff3b30;
}
.Headerbar.pink {
background-color: #ff2d55;
}
.Headerbar.purple {
background-color: #5856d6;
}
.Headerbar.yellow {
color: #222222;
}
.Headerbar.yellow .Headerbar-button {
color: rgba(0, 0, 0, 0.8);
}
.Headerbar.yellow .Headerbar-button.disabled,
.Headerbar.yellow .Headerbar-button[disabled] {
color: rgba(0, 0, 0, 0.4);
}
.Headerbar-button {
background: none transparent;
border: 0 none;
color: #007aff;
cursor: pointer;
left: 0;
line-height: 44px;
height: 44px;
padding-left: 10px;
padding-right: 10px;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
-webkit-appearance: none;
z-index: 2;
}
.Headerbar-button.is-primary {
font-weight: 500;
}
.Headerbar-button.right {
left: auto;
right: 0;
}
.Headerbar-button:hover {
color: #1a87ff;
}
.Headerbar-button:active,
.Headerbar-button:focus,
.Headerbar-button.Tappable-active {
color: #0062cc;
outline: none;
-webkit-appearance: none;
}
.Headerbar-button.disabled,
.Headerbar-button[disabled] {
color: #cccccc;
pointer-events: none;
}
.Headerbar-button:before {
font-size: 24px;
margin-right: 5px;
position: relative;
top: 3px;
}
.Headerbar-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: 500;
line-height: 44px;
height: 44px;
min-width: 44px;
padding-left: 10px;
padding-right: 10px;
position: absolute;
text-align: center;
width: 100%;
}
.Headerbar > .Toggle {
margin: 8px;
}
.Subheader > .Toggle {
margin: 0 8px;
}
.Headerbar-form {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
line-height: 1;
padding: 8px 0;
}
.Headerbar + .Headerbar-form {
padding-top: 0;
}
.Headerbar-form-field {
padding: 0 8px;
position: relative;
}
.Headerbar-form-field:only-child,
.Headerbar-form-field.is-primary {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.Headerbar-form-field + .Headerbar-form-field {
padding-left: 0;
}
.Headerbar-form-input {
-webkit-transition: background-color 200ms linear;
-o-transition: background-color 200ms linear;
transition: background-color 200ms linear;
background: rgba(0, 0, 0, 0.06);
border: 0;
border-radius: 5px;
color: #000000;
font-size: 15px;
height: 28px;
line-height: 28px;
margin: 0;
outline: none;
padding: 8px 16px;
width: 100%;
-webkit-appearance: none;
}
.Headerbar-form-input::-moz-placeholder {
color: #999999;
opacity: 1;
}
.Headerbar-form-input:-ms-input-placeholder {
color: #999999;
}
.Headerbar-form-input::-webkit-input-placeholder {
color: #999999;
}
.Headerbar-form-input:active {
background: rgba(0, 0, 0, 0.12);
}
/* helper mixin */
/* actual styles */
.Headerbar-form-icon .Headerbar-form-input {
padding-left: 24px;
}
.Headerbar-form-icon:before {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
color: #999999;
font-size: 16px;
height: 100%;
padding: 0 8px;
position: absolute;
left: 8px;
right: auto;
top: 0;
pointer-events: none;
}
.Headerbar-form-clear {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
color: #999999;
font-size: 16px;
height: 100%;
padding: 0 8px;
position: absolute;
left: auto;
right: 8px;
top: 0;
}
.Headerbar-form-clear.Tappable-active {
color: #999999;
}
.Keypad {
width: 100%;
height: 40%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
-o-transition: -o-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
bottom: 0;
padding: 1px;
position: fixed;
}
.Keypad.is-stowed {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.Keypad.is-black-translucent .Keypad-button {
background-color: rgba(0, 0, 0, 0.1);
color: white;
}
.Keypad.is-black-translucent .Keypad-button:active {
background-color: rgba(0, 0, 0, 0.1);
}
.Keypad.is-black-translucent .Keypad-button.is-auxiliary {
background-color: rgba(0, 0, 0, 0.15);
}
.Keypad.is-black-translucent .Keypad-button.is-auxiliary:active {
background-color: rgba(0, 0, 0, 0.2);
}
.Keypad.is-white-translucent .Keypad-button {
background-color: rgba(255, 255, 255, 0.45);
color: black;
}
.Keypad.is-white-translucent .Keypad-button:active {
background-color: rgba(255, 255, 255, 0.35);
}
.Keypad.is-white-translucent .Keypad-button.is-auxiliary {
background-color: rgba(255, 255, 255, 0.25);
}
.Keypad.is-white-translucent .Keypad-button.is-auxiliary:active {
background-color: rgba(255, 255, 255, 0.15);
}
.Keypad-cell {
width: 33.33%;
height: 25%;
padding: 1px;
}
.Keypad-button {
width: 100%;
height: 100%;
line-height: 1.1;
text-align: center;
border: none;
background: none;
outline: none;
-webkit-appearance: none;
background-color: #e0e0ea;
color: #000000;
}
.Keypad-button:active {
background-color: #d1d1df;
}
.Keypad-button.is-auxiliary {
background-color: #c2c2d5;
}
.Keypad-button.is-auxiliary:active {
background-color: #b3b3ca;
}
.Keypad-button[disabled] {
pointer-events: none;
}
.Keypad-button[disabled] .Keypad-button-primary-label,
.Keypad-button[disabled] .Keypad-button-secondary-label {
opacity: .3;
}
.Keypad-button-primary-label {
font-size: 1.4em;
}
.Keypad-button-secondary-label {
font-size: .8em;
}
.Modal {
-webkit-transition: all 300ms;
-o-transition: all 300ms;
transition: all 300ms;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: fixed;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
.Modal.visible {
visibility: visible;
opacity: 1;
}
.Modal-dialog {
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: rgba(255, 255, 255, 0.95);
border-radius: 8px;
left: 50%;
max-width: 90%;
padding: 20px;
position: fixed;
top: 50%;
width: 300px;
z-index: 1200;
}
.Modal-backdrop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
opacity: .33;
position: fixed;
z-index: 1100;
}
.Modal-header {
font-weight: 500;
}
.Modal-text {
font-size: 15px;
}
.Modal-icon {
width: 46px;
height: 46px;
display: inline-block;
line-height: 46px;
margin-bottom: 5px;
}
.Modal-icon:before {
font-size: 46px;
}
.Modal-icon.muted {
color: #999999;
}
.Modal-icon.primary {
color: #007aff;
}
.Modal-icon.success {
color: #4cd964;
}
.Modal-icon.warning {
color: #ffcc00;
}
.Modal-icon.danger {
color: #e74c3c;
}
.Modal-loading {
text-align: center;
}
.Modal-loading.Modal-dialog {
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
border-radius: 16px;
left: 50%;
margin: -60px 0 0 -60px;
padding: 15px;
top: 50%;
width: 120px;
}
.Modal-loading .Modal-icon {
-webkit-animation: spin 1s linear infinite;
-o-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
.Modal-actions {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
border-top: 1px solid #d1d1df;
margin: 20px -20px -20px;
}
.Modal-action {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
color: #007aff;
padding: 10px;
text-align: center;
}
.Modal-action + .Modal-action {
border-left: 1px solid #d1d1df;
}
.Modal-action:first-child {
border-bottom-left-radius: 8px;
}
.Modal-action:last-child {
border-bottom-right-radius: 8px;
}
.Modal-action.Tappable-active {
background-color: #efeff4;
}
.Modal-action-primary {
font-weight: 500;
}
.panel {
background-color: white;
position: relative;
margin-bottom: 34px;
}
.panel:after,
.panel:before {
width: 100%;
height: 1px;
background-color: rgba(0, 0, 0, 0.17);
content: " ";
left: 0;
position: absolute;
}
.panel:before {
top: -1px;
}
.panel:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.panel:after,
.panel:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.panel:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.panel:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.view-inner > .panel {
border-radius: 8px;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.panel--first {
margin-top: 34px;
}
.panel-header {
color: #4d4d4d;
font-size: 80%;
line-height: 1;
margin-bottom: 10px;
margin-top: 34px;
padding-left: 16px;
padding-right: 16px;
}
.panel-inner {
padding: 14px 16px;
}
.panel-inner + .panel-inner {
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.panel-inner.is-first {
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.panel-inner.is-last {
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.Passcode {
margin: 0 auto;
max-width: 190px;
text-align: center;
width: 70%;
}
.Passcode-fields {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.Passcode-field {
-webkit-flex: 1 0 0;
-ms-flex: 1 0 0;
flex: 1 0 0;
margin: 4px;
position: relative;
}
.Passcode-input {
background: none;
border: none;
border-radius: 0;
box-shadow: inset 0 -4px 0 currentColor;
bottom: 0;
height: 60px;
left: 4px;
right: 4px;
position: relative;
text-align: center;
width: 100%;
}
.Passcode-input:after {
width: 16px;
height: 16px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
background-color: currentColor;
border-radius: 50%;
content: "";
display: none;
margin: 0 auto;
top: 50%;
}
.Passcode-input,
.Passcode-input:hover,
.Passcode-input:active,
.Passcode-input:focus {
outline: none;
-webkit-appearance: none;
}
.Passcode-input.has-value {
box-shadow: none;
}
.Passcode-input.has-value:after {
display: block;
}
.Toggle {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 13px;
}
.Toggle-item {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
background-color: white;
border: none;
box-shadow: 0 0 0 1px #007aff;
color: #007aff;
cursor: pointer;
display: table-cell;
line-height: 29px;
text-align: center;
}
.Toggle-item:first-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.Toggle-item:last-child {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.Toggle-item.Tappable-active {
background-color: #eeeeee;
}
.Toggle > .Toggle-item,
.Toggle.blue > .Toggle-item,
.Toggle.primary > .Toggle-item {
box-shadow: 0 0 0 1px #007aff;
color: #007aff;
}
.Toggle > .Toggle-item.active,
.Toggle.blue > .Toggle-item.active,
.Toggle.primary > .Toggle-item.active {
background-color: #007aff;
color: white;
}
.Toggle.muted > .Toggle-item {
box-shadow: 0 0 0 1px #999999;
color: #999999;
}
.Toggle.muted > .Toggle-item.active {
background-color: #999999;
color: white;
}
.Toggle.green > .Toggle-item {
box-shadow: 0 0 0 1px #4cd964;
color: #4cd964;
}
.Toggle.green > .Toggle-item.active {
background-color: #4cd964;
color: white;
}
.Toggle.light-blue > .Toggle-item {
box-shadow: 0 0 0 1px #5ac8fa;
color: #5ac8fa;
}
.Toggle.light-blue > .Toggle-item.active {
background-color: #5ac8fa;
color: white;
}
.Toggle.yellow > .Toggle-item {
box-shadow: 0 0 0 1px #ffcc00;
color: #ffcc00;
}
.Toggle.yellow > .Toggle-item.active {
background-color: #ffcc00;
color: white;
}
.Toggle.orange > .Toggle-item {
box-shadow: 0 0 0 1px #ff9500;
color: #ff9500;
}
.Toggle.orange > .Toggle-item.active {
background-color: #ff9500;
color: white;
}
.Toggle.red > .Toggle-item {
box-shadow: 0 0 0 1px #ff3b30;
color: #ff3b30;
}
.Toggle.red > .Toggle-item.active {
background-color: #ff3b30;
color: white;
}
.Toggle.pink > .Toggle-item {
box-shadow: 0 0 0 1px #ff2d55;
color: #ff2d55;
}
.Toggle.pink > .Toggle-item.active {
background-color: #ff2d55;
color: white;
}
.Toggle.purple > .Toggle-item {
box-shadow: 0 0 0 1px #5856d6;
color: #5856d6;
}
.Toggle.purple > .Toggle-item.active {
background-color: #5856d6;
color: white;
} | platforms/ios/www/css/app.css | @font-face {
font-family: "Ionicons";
src: url("../fonts/ionicons.eot?v=1.5.2");
src: url("../fonts/ionicons.eot?v=1.5.2#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=1.5.2") format("truetype"), url("../fonts/ionicons.woff?v=1.5.2") format("woff"), url("../fonts/ionicons.svg?v=1.5.2#Ionicons") format("svg");
font-weight: normal;
font-style: normal;
}
.ion,
.ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-contact:before,
.ion-android-alarm:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down-left:before,
.ion-android-arrow-down-right:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up-left:before,
.ion-android-arrow-up-right:before,
.ion-android-battery:before,
.ion-android-book:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-chat:before,
.ion-android-checkmark:before,
.ion-android-clock:before,
.ion-android-close:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-data:before,
.ion-android-developer:before,
.ion-android-display:before,
.ion-android-download:before,
.ion-android-drawer:before,
.ion-android-dropdown:before,
.ion-android-earth:before,
.ion-android-folder:before,
.ion-android-forums:before,
.ion-android-friends:before,
.ion-android-hand:before,
.ion-android-image:before,
.ion-android-inbox:before,
.ion-android-information:before,
.ion-android-keypad:before,
.ion-android-lightbulb:before,
.ion-android-locate:before,
.ion-android-location:before,
.ion-android-mail:before,
.ion-android-microphone:before,
.ion-android-mixer:before,
.ion-android-more:before,
.ion-android-note:before,
.ion-android-playstore:before,
.ion-android-printer:before,
.ion-android-promotion:before,
.ion-android-reminder:before,
.ion-android-remove:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-social:before,
.ion-android-social-user:before,
.ion-android-sort:before,
.ion-android-stair-drawer:before,
.ion-android-star:before,
.ion-android-stopwatch:before,
.ion-android-storage:before,
.ion-android-system-back:before,
.ion-android-system-home:before,
.ion-android-system-windows:before,
.ion-android-timer:before,
.ion-android-trash:before,
.ion-android-user-menu:before,
.ion-android-volume:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-flask:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-game-controller-a:before,
.ion-game-controller-b:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-icon-social-google-plus:before,
.ion-icon-social-google-plus-outline:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios7-alarm:before,
.ion-ios7-alarm-outline:before,
.ion-ios7-albums:before,
.ion-ios7-albums-outline:before,
.ion-ios7-americanfootball:before,
.ion-ios7-americanfootball-outline:before,
.ion-ios7-analytics:before,
.ion-ios7-analytics-outline:before,
.ion-ios7-arrow-back:before,
.ion-ios7-arrow-down:before,
.ion-ios7-arrow-forward:before,
.ion-ios7-arrow-left:before,
.ion-ios7-arrow-right:before,
.ion-ios7-arrow-thin-down:before,
.ion-ios7-arrow-thin-left:before,
.ion-ios7-arrow-thin-right:before,
.ion-ios7-arrow-thin-up:before,
.ion-ios7-arrow-up:before,
.ion-ios7-at:before,
.ion-ios7-at-outline:before,
.ion-ios7-barcode:before,
.ion-ios7-barcode-outline:before,
.ion-ios7-baseball:before,
.ion-ios7-baseball-outline:before,
.ion-ios7-basketball:before,
.ion-ios7-basketball-outline:before,
.ion-ios7-bell:before,
.ion-ios7-bell-outline:before,
.ion-ios7-bolt:before,
.ion-ios7-bolt-outline:before,
.ion-ios7-bookmarks:before,
.ion-ios7-bookmarks-outline:before,
.ion-ios7-box:before,
.ion-ios7-box-outline:before,
.ion-ios7-briefcase:before,
.ion-ios7-briefcase-outline:before,
.ion-ios7-browsers:before,
.ion-ios7-browsers-outline:before,
.ion-ios7-calculator:before,
.ion-ios7-calculator-outline:before,
.ion-ios7-calendar:before,
.ion-ios7-calendar-outline:before,
.ion-ios7-camera:before,
.ion-ios7-camera-outline:before,
.ion-ios7-cart:before,
.ion-ios7-cart-outline:before,
.ion-ios7-chatboxes:before,
.ion-ios7-chatboxes-outline:before,
.ion-ios7-chatbubble:before,
.ion-ios7-chatbubble-outline:before,
.ion-ios7-checkmark:before,
.ion-ios7-checkmark-empty:before,
.ion-ios7-checkmark-outline:before,
.ion-ios7-circle-filled:before,
.ion-ios7-circle-outline:before,
.ion-ios7-clock:before,
.ion-ios7-clock-outline:before,
.ion-ios7-close:before,
.ion-ios7-close-empty:before,
.ion-ios7-close-outline:before,
.ion-ios7-cloud:before,
.ion-ios7-cloud-download:before,
.ion-ios7-cloud-download-outline:before,
.ion-ios7-cloud-outline:before,
.ion-ios7-cloud-upload:before,
.ion-ios7-cloud-upload-outline:before,
.ion-ios7-cloudy:before,
.ion-ios7-cloudy-night:before,
.ion-ios7-cloudy-night-outline:before,
.ion-ios7-cloudy-outline:before,
.ion-ios7-cog:before,
.ion-ios7-cog-outline:before,
.ion-ios7-compose:before,
.ion-ios7-compose-outline:before,
.ion-ios7-contact:before,
.ion-ios7-contact-outline:before,
.ion-ios7-copy:before,
.ion-ios7-copy-outline:before,
.ion-ios7-download:before,
.ion-ios7-download-outline:before,
.ion-ios7-drag:before,
.ion-ios7-email:before,
.ion-ios7-email-outline:before,
.ion-ios7-expand:before,
.ion-ios7-eye:before,
.ion-ios7-eye-outline:before,
.ion-ios7-fastforward:before,
.ion-ios7-fastforward-outline:before,
.ion-ios7-filing:before,
.ion-ios7-filing-outline:before,
.ion-ios7-film:before,
.ion-ios7-film-outline:before,
.ion-ios7-flag:before,
.ion-ios7-flag-outline:before,
.ion-ios7-folder:before,
.ion-ios7-folder-outline:before,
.ion-ios7-football:before,
.ion-ios7-football-outline:before,
.ion-ios7-gear:before,
.ion-ios7-gear-outline:before,
.ion-ios7-glasses:before,
.ion-ios7-glasses-outline:before,
.ion-ios7-heart:before,
.ion-ios7-heart-outline:before,
.ion-ios7-help:before,
.ion-ios7-help-empty:before,
.ion-ios7-help-outline:before,
.ion-ios7-home:before,
.ion-ios7-home-outline:before,
.ion-ios7-infinite:before,
.ion-ios7-infinite-outline:before,
.ion-ios7-information:before,
.ion-ios7-information-empty:before,
.ion-ios7-information-outline:before,
.ion-ios7-ionic-outline:before,
.ion-ios7-keypad:before,
.ion-ios7-keypad-outline:before,
.ion-ios7-lightbulb:before,
.ion-ios7-lightbulb-outline:before,
.ion-ios7-location:before,
.ion-ios7-location-outline:before,
.ion-ios7-locked:before,
.ion-ios7-locked-outline:before,
.ion-ios7-loop:before,
.ion-ios7-loop-strong:before,
.ion-ios7-medkit:before,
.ion-ios7-medkit-outline:before,
.ion-ios7-mic:before,
.ion-ios7-mic-off:before,
.ion-ios7-mic-outline:before,
.ion-ios7-minus:before,
.ion-ios7-minus-empty:before,
.ion-ios7-minus-outline:before,
.ion-ios7-monitor:before,
.ion-ios7-monitor-outline:before,
.ion-ios7-moon:before,
.ion-ios7-moon-outline:before,
.ion-ios7-more:before,
.ion-ios7-more-outline:before,
.ion-ios7-musical-note:before,
.ion-ios7-musical-notes:before,
.ion-ios7-navigate:before,
.ion-ios7-navigate-outline:before,
.ion-ios7-paper:before,
.ion-ios7-paper-outline:before,
.ion-ios7-paperplane:before,
.ion-ios7-paperplane-outline:before,
.ion-ios7-partlysunny:before,
.ion-ios7-partlysunny-outline:before,
.ion-ios7-pause:before,
.ion-ios7-pause-outline:before,
.ion-ios7-paw:before,
.ion-ios7-paw-outline:before,
.ion-ios7-people:before,
.ion-ios7-people-outline:before,
.ion-ios7-person:before,
.ion-ios7-person-outline:before,
.ion-ios7-personadd:before,
.ion-ios7-personadd-outline:before,
.ion-ios7-photos:before,
.ion-ios7-photos-outline:before,
.ion-ios7-pie:before,
.ion-ios7-pie-outline:before,
.ion-ios7-play:before,
.ion-ios7-play-outline:before,
.ion-ios7-plus:before,
.ion-ios7-plus-empty:before,
.ion-ios7-plus-outline:before,
.ion-ios7-pricetag:before,
.ion-ios7-pricetag-outline:before,
.ion-ios7-pricetags:before,
.ion-ios7-pricetags-outline:before,
.ion-ios7-printer:before,
.ion-ios7-printer-outline:before,
.ion-ios7-pulse:before,
.ion-ios7-pulse-strong:before,
.ion-ios7-rainy:before,
.ion-ios7-rainy-outline:before,
.ion-ios7-recording:before,
.ion-ios7-recording-outline:before,
.ion-ios7-redo:before,
.ion-ios7-redo-outline:before,
.ion-ios7-refresh:before,
.ion-ios7-refresh-empty:before,
.ion-ios7-refresh-outline:before,
.ion-ios7-reload:before,
.ion-ios7-reverse-camera:before,
.ion-ios7-reverse-camera-outline:before,
.ion-ios7-rewind:before,
.ion-ios7-rewind-outline:before,
.ion-ios7-search:before,
.ion-ios7-search-strong:before,
.ion-ios7-settings:before,
.ion-ios7-settings-strong:before,
.ion-ios7-shrink:before,
.ion-ios7-skipbackward:before,
.ion-ios7-skipbackward-outline:before,
.ion-ios7-skipforward:before,
.ion-ios7-skipforward-outline:before,
.ion-ios7-snowy:before,
.ion-ios7-speedometer:before,
.ion-ios7-speedometer-outline:before,
.ion-ios7-star:before,
.ion-ios7-star-half:before,
.ion-ios7-star-outline:before,
.ion-ios7-stopwatch:before,
.ion-ios7-stopwatch-outline:before,
.ion-ios7-sunny:before,
.ion-ios7-sunny-outline:before,
.ion-ios7-telephone:before,
.ion-ios7-telephone-outline:before,
.ion-ios7-tennisball:before,
.ion-ios7-tennisball-outline:before,
.ion-ios7-thunderstorm:before,
.ion-ios7-thunderstorm-outline:before,
.ion-ios7-time:before,
.ion-ios7-time-outline:before,
.ion-ios7-timer:before,
.ion-ios7-timer-outline:before,
.ion-ios7-toggle:before,
.ion-ios7-toggle-outline:before,
.ion-ios7-trash:before,
.ion-ios7-trash-outline:before,
.ion-ios7-undo:before,
.ion-ios7-undo-outline:before,
.ion-ios7-unlocked:before,
.ion-ios7-unlocked-outline:before,
.ion-ios7-upload:before,
.ion-ios7-upload-outline:before,
.ion-ios7-videocam:before,
.ion-ios7-videocam-outline:before,
.ion-ios7-volume-high:before,
.ion-ios7-volume-low:before,
.ion-ios7-wineglass:before,
.ion-ios7-wineglass-outline:before,
.ion-ios7-world:before,
.ion-ios7-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-size: inherit;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.ion-spin,
.ion-loading-a,
.ion-loading-b,
.ion-loading-c,
.ion-loading-d,
.ion-looping,
.ion-refreshing,
.ion-ios7-reloading {
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s infinite linear;
-o-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg);
}
100% {
-ms-transform: rotate(359deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
.ion-loading-a {
-webkit-animation-timing-function: steps(8, start);
-moz-animation-timing-function: steps(8, start);
animation-timing-function: steps(8, start);
}
.ion-alert:before {
content: "\f101";
}
.ion-alert-circled:before {
content: "\f100";
}
.ion-android-add:before {
content: "\f2c7";
}
.ion-android-add-contact:before {
content: "\f2c6";
}
.ion-android-alarm:before {
content: "\f2c8";
}
.ion-android-archive:before {
content: "\f2c9";
}
.ion-android-arrow-back:before {
content: "\f2ca";
}
.ion-android-arrow-down-left:before {
content: "\f2cb";
}
.ion-android-arrow-down-right:before {
content: "\f2cc";
}
.ion-android-arrow-forward:before {
content: "\f30f";
}
.ion-android-arrow-up-left:before {
content: "\f2cd";
}
.ion-android-arrow-up-right:before {
content: "\f2ce";
}
.ion-android-battery:before {
content: "\f2cf";
}
.ion-android-book:before {
content: "\f2d0";
}
.ion-android-calendar:before {
content: "\f2d1";
}
.ion-android-call:before {
content: "\f2d2";
}
.ion-android-camera:before {
content: "\f2d3";
}
.ion-android-chat:before {
content: "\f2d4";
}
.ion-android-checkmark:before {
content: "\f2d5";
}
.ion-android-clock:before {
content: "\f2d6";
}
.ion-android-close:before {
content: "\f2d7";
}
.ion-android-contact:before {
content: "\f2d8";
}
.ion-android-contacts:before {
content: "\f2d9";
}
.ion-android-data:before {
content: "\f2da";
}
.ion-android-developer:before {
content: "\f2db";
}
.ion-android-display:before {
content: "\f2dc";
}
.ion-android-download:before {
content: "\f2dd";
}
.ion-android-drawer:before {
content: "\f310";
}
.ion-android-dropdown:before {
content: "\f2de";
}
.ion-android-earth:before {
content: "\f2df";
}
.ion-android-folder:before {
content: "\f2e0";
}
.ion-android-forums:before {
content: "\f2e1";
}
.ion-android-friends:before {
content: "\f2e2";
}
.ion-android-hand:before {
content: "\f2e3";
}
.ion-android-image:before {
content: "\f2e4";
}
.ion-android-inbox:before {
content: "\f2e5";
}
.ion-android-information:before {
content: "\f2e6";
}
.ion-android-keypad:before {
content: "\f2e7";
}
.ion-android-lightbulb:before {
content: "\f2e8";
}
.ion-android-locate:before {
content: "\f2e9";
}
.ion-android-location:before {
content: "\f2ea";
}
.ion-android-mail:before {
content: "\f2eb";
}
.ion-android-microphone:before {
content: "\f2ec";
}
.ion-android-mixer:before {
content: "\f2ed";
}
.ion-android-more:before {
content: "\f2ee";
}
.ion-android-note:before {
content: "\f2ef";
}
.ion-android-playstore:before {
content: "\f2f0";
}
.ion-android-printer:before {
content: "\f2f1";
}
.ion-android-promotion:before {
content: "\f2f2";
}
.ion-android-reminder:before {
content: "\f2f3";
}
.ion-android-remove:before {
content: "\f2f4";
}
.ion-android-search:before {
content: "\f2f5";
}
.ion-android-send:before {
content: "\f2f6";
}
.ion-android-settings:before {
content: "\f2f7";
}
.ion-android-share:before {
content: "\f2f8";
}
.ion-android-social:before {
content: "\f2fa";
}
.ion-android-social-user:before {
content: "\f2f9";
}
.ion-android-sort:before {
content: "\f2fb";
}
.ion-android-stair-drawer:before {
content: "\f311";
}
.ion-android-star:before {
content: "\f2fc";
}
.ion-android-stopwatch:before {
content: "\f2fd";
}
.ion-android-storage:before {
content: "\f2fe";
}
.ion-android-system-back:before {
content: "\f2ff";
}
.ion-android-system-home:before {
content: "\f300";
}
.ion-android-system-windows:before {
content: "\f301";
}
.ion-android-timer:before {
content: "\f302";
}
.ion-android-trash:before {
content: "\f303";
}
.ion-android-user-menu:before {
content: "\f312";
}
.ion-android-volume:before {
content: "\f304";
}
.ion-android-wifi:before {
content: "\f305";
}
.ion-aperture:before {
content: "\f313";
}
.ion-archive:before {
content: "\f102";
}
.ion-arrow-down-a:before {
content: "\f103";
}
.ion-arrow-down-b:before {
content: "\f104";
}
.ion-arrow-down-c:before {
content: "\f105";
}
.ion-arrow-expand:before {
content: "\f25e";
}
.ion-arrow-graph-down-left:before {
content: "\f25f";
}
.ion-arrow-graph-down-right:before {
content: "\f260";
}
.ion-arrow-graph-up-left:before {
content: "\f261";
}
.ion-arrow-graph-up-right:before {
content: "\f262";
}
.ion-arrow-left-a:before {
content: "\f106";
}
.ion-arrow-left-b:before {
content: "\f107";
}
.ion-arrow-left-c:before {
content: "\f108";
}
.ion-arrow-move:before {
content: "\f263";
}
.ion-arrow-resize:before {
content: "\f264";
}
.ion-arrow-return-left:before {
content: "\f265";
}
.ion-arrow-return-right:before {
content: "\f266";
}
.ion-arrow-right-a:before {
content: "\f109";
}
.ion-arrow-right-b:before {
content: "\f10a";
}
.ion-arrow-right-c:before {
content: "\f10b";
}
.ion-arrow-shrink:before {
content: "\f267";
}
.ion-arrow-swap:before {
content: "\f268";
}
.ion-arrow-up-a:before {
content: "\f10c";
}
.ion-arrow-up-b:before {
content: "\f10d";
}
.ion-arrow-up-c:before {
content: "\f10e";
}
.ion-asterisk:before {
content: "\f314";
}
.ion-at:before {
content: "\f10f";
}
.ion-bag:before {
content: "\f110";
}
.ion-battery-charging:before {
content: "\f111";
}
.ion-battery-empty:before {
content: "\f112";
}
.ion-battery-full:before {
content: "\f113";
}
.ion-battery-half:before {
content: "\f114";
}
.ion-battery-low:before {
content: "\f115";
}
.ion-beaker:before {
content: "\f269";
}
.ion-beer:before {
content: "\f26a";
}
.ion-bluetooth:before {
content: "\f116";
}
.ion-bonfire:before {
content: "\f315";
}
.ion-bookmark:before {
content: "\f26b";
}
.ion-briefcase:before {
content: "\f26c";
}
.ion-bug:before {
content: "\f2be";
}
.ion-calculator:before {
content: "\f26d";
}
.ion-calendar:before {
content: "\f117";
}
.ion-camera:before {
content: "\f118";
}
.ion-card:before {
content: "\f119";
}
.ion-cash:before {
content: "\f316";
}
.ion-chatbox:before {
content: "\f11b";
}
.ion-chatbox-working:before {
content: "\f11a";
}
.ion-chatboxes:before {
content: "\f11c";
}
.ion-chatbubble:before {
content: "\f11e";
}
.ion-chatbubble-working:before {
content: "\f11d";
}
.ion-chatbubbles:before {
content: "\f11f";
}
.ion-checkmark:before {
content: "\f122";
}
.ion-checkmark-circled:before {
content: "\f120";
}
.ion-checkmark-round:before {
content: "\f121";
}
.ion-chevron-down:before {
content: "\f123";
}
.ion-chevron-left:before {
content: "\f124";
}
.ion-chevron-right:before {
content: "\f125";
}
.ion-chevron-up:before {
content: "\f126";
}
.ion-clipboard:before {
content: "\f127";
}
.ion-clock:before {
content: "\f26e";
}
.ion-close:before {
content: "\f12a";
}
.ion-close-circled:before {
content: "\f128";
}
.ion-close-round:before {
content: "\f129";
}
.ion-closed-captioning:before {
content: "\f317";
}
.ion-cloud:before {
content: "\f12b";
}
.ion-code:before {
content: "\f271";
}
.ion-code-download:before {
content: "\f26f";
}
.ion-code-working:before {
content: "\f270";
}
.ion-coffee:before {
content: "\f272";
}
.ion-compass:before {
content: "\f273";
}
.ion-compose:before {
content: "\f12c";
}
.ion-connection-bars:before {
content: "\f274";
}
.ion-contrast:before {
content: "\f275";
}
.ion-cube:before {
content: "\f318";
}
.ion-disc:before {
content: "\f12d";
}
.ion-document:before {
content: "\f12f";
}
.ion-document-text:before {
content: "\f12e";
}
.ion-drag:before {
content: "\f130";
}
.ion-earth:before {
content: "\f276";
}
.ion-edit:before {
content: "\f2bf";
}
.ion-egg:before {
content: "\f277";
}
.ion-eject:before {
content: "\f131";
}
.ion-email:before {
content: "\f132";
}
.ion-eye:before {
content: "\f133";
}
.ion-eye-disabled:before {
content: "\f306";
}
.ion-female:before {
content: "\f278";
}
.ion-filing:before {
content: "\f134";
}
.ion-film-marker:before {
content: "\f135";
}
.ion-fireball:before {
content: "\f319";
}
.ion-flag:before {
content: "\f279";
}
.ion-flame:before {
content: "\f31a";
}
.ion-flash:before {
content: "\f137";
}
.ion-flash-off:before {
content: "\f136";
}
.ion-flask:before {
content: "\f138";
}
.ion-folder:before {
content: "\f139";
}
.ion-fork:before {
content: "\f27a";
}
.ion-fork-repo:before {
content: "\f2c0";
}
.ion-forward:before {
content: "\f13a";
}
.ion-funnel:before {
content: "\f31b";
}
.ion-game-controller-a:before {
content: "\f13b";
}
.ion-game-controller-b:before {
content: "\f13c";
}
.ion-gear-a:before {
content: "\f13d";
}
.ion-gear-b:before {
content: "\f13e";
}
.ion-grid:before {
content: "\f13f";
}
.ion-hammer:before {
content: "\f27b";
}
.ion-happy:before {
content: "\f31c";
}
.ion-headphone:before {
content: "\f140";
}
.ion-heart:before {
content: "\f141";
}
.ion-heart-broken:before {
content: "\f31d";
}
.ion-help:before {
content: "\f143";
}
.ion-help-buoy:before {
content: "\f27c";
}
.ion-help-circled:before {
content: "\f142";
}
.ion-home:before {
content: "\f144";
}
.ion-icecream:before {
content: "\f27d";
}
.ion-icon-social-google-plus:before {
content: "\f146";
}
.ion-icon-social-google-plus-outline:before {
content: "\f145";
}
.ion-image:before {
content: "\f147";
}
.ion-images:before {
content: "\f148";
}
.ion-information:before {
content: "\f14a";
}
.ion-information-circled:before {
content: "\f149";
}
.ion-ionic:before {
content: "\f14b";
}
.ion-ios7-alarm:before {
content: "\f14d";
}
.ion-ios7-alarm-outline:before {
content: "\f14c";
}
.ion-ios7-albums:before {
content: "\f14f";
}
.ion-ios7-albums-outline:before {
content: "\f14e";
}
.ion-ios7-americanfootball:before {
content: "\f31f";
}
.ion-ios7-americanfootball-outline:before {
content: "\f31e";
}
.ion-ios7-analytics:before {
content: "\f321";
}
.ion-ios7-analytics-outline:before {
content: "\f320";
}
.ion-ios7-arrow-back:before {
content: "\f150";
}
.ion-ios7-arrow-down:before {
content: "\f151";
}
.ion-ios7-arrow-forward:before {
content: "\f152";
}
.ion-ios7-arrow-left:before {
content: "\f153";
}
.ion-ios7-arrow-right:before {
content: "\f154";
}
.ion-ios7-arrow-thin-down:before {
content: "\f27e";
}
.ion-ios7-arrow-thin-left:before {
content: "\f27f";
}
.ion-ios7-arrow-thin-right:before {
content: "\f280";
}
.ion-ios7-arrow-thin-up:before {
content: "\f281";
}
.ion-ios7-arrow-up:before {
content: "\f155";
}
.ion-ios7-at:before {
content: "\f157";
}
.ion-ios7-at-outline:before {
content: "\f156";
}
.ion-ios7-barcode:before {
content: "\f323";
}
.ion-ios7-barcode-outline:before {
content: "\f322";
}
.ion-ios7-baseball:before {
content: "\f325";
}
.ion-ios7-baseball-outline:before {
content: "\f324";
}
.ion-ios7-basketball:before {
content: "\f327";
}
.ion-ios7-basketball-outline:before {
content: "\f326";
}
.ion-ios7-bell:before {
content: "\f159";
}
.ion-ios7-bell-outline:before {
content: "\f158";
}
.ion-ios7-bolt:before {
content: "\f15b";
}
.ion-ios7-bolt-outline:before {
content: "\f15a";
}
.ion-ios7-bookmarks:before {
content: "\f15d";
}
.ion-ios7-bookmarks-outline:before {
content: "\f15c";
}
.ion-ios7-box:before {
content: "\f15f";
}
.ion-ios7-box-outline:before {
content: "\f15e";
}
.ion-ios7-briefcase:before {
content: "\f283";
}
.ion-ios7-briefcase-outline:before {
content: "\f282";
}
.ion-ios7-browsers:before {
content: "\f161";
}
.ion-ios7-browsers-outline:before {
content: "\f160";
}
.ion-ios7-calculator:before {
content: "\f285";
}
.ion-ios7-calculator-outline:before {
content: "\f284";
}
.ion-ios7-calendar:before {
content: "\f163";
}
.ion-ios7-calendar-outline:before {
content: "\f162";
}
.ion-ios7-camera:before {
content: "\f165";
}
.ion-ios7-camera-outline:before {
content: "\f164";
}
.ion-ios7-cart:before {
content: "\f167";
}
.ion-ios7-cart-outline:before {
content: "\f166";
}
.ion-ios7-chatboxes:before {
content: "\f169";
}
.ion-ios7-chatboxes-outline:before {
content: "\f168";
}
.ion-ios7-chatbubble:before {
content: "\f16b";
}
.ion-ios7-chatbubble-outline:before {
content: "\f16a";
}
.ion-ios7-checkmark:before {
content: "\f16e";
}
.ion-ios7-checkmark-empty:before {
content: "\f16c";
}
.ion-ios7-checkmark-outline:before {
content: "\f16d";
}
.ion-ios7-circle-filled:before {
content: "\f16f";
}
.ion-ios7-circle-outline:before {
content: "\f170";
}
.ion-ios7-clock:before {
content: "\f172";
}
.ion-ios7-clock-outline:before {
content: "\f171";
}
.ion-ios7-close:before {
content: "\f2bc";
}
.ion-ios7-close-empty:before {
content: "\f2bd";
}
.ion-ios7-close-outline:before {
content: "\f2bb";
}
.ion-ios7-cloud:before {
content: "\f178";
}
.ion-ios7-cloud-download:before {
content: "\f174";
}
.ion-ios7-cloud-download-outline:before {
content: "\f173";
}
.ion-ios7-cloud-outline:before {
content: "\f175";
}
.ion-ios7-cloud-upload:before {
content: "\f177";
}
.ion-ios7-cloud-upload-outline:before {
content: "\f176";
}
.ion-ios7-cloudy:before {
content: "\f17a";
}
.ion-ios7-cloudy-night:before {
content: "\f308";
}
.ion-ios7-cloudy-night-outline:before {
content: "\f307";
}
.ion-ios7-cloudy-outline:before {
content: "\f179";
}
.ion-ios7-cog:before {
content: "\f17c";
}
.ion-ios7-cog-outline:before {
content: "\f17b";
}
.ion-ios7-compose:before {
content: "\f17e";
}
.ion-ios7-compose-outline:before {
content: "\f17d";
}
.ion-ios7-contact:before {
content: "\f180";
}
.ion-ios7-contact-outline:before {
content: "\f17f";
}
.ion-ios7-copy:before {
content: "\f182";
}
.ion-ios7-copy-outline:before {
content: "\f181";
}
.ion-ios7-download:before {
content: "\f184";
}
.ion-ios7-download-outline:before {
content: "\f183";
}
.ion-ios7-drag:before {
content: "\f185";
}
.ion-ios7-email:before {
content: "\f187";
}
.ion-ios7-email-outline:before {
content: "\f186";
}
.ion-ios7-expand:before {
content: "\f30d";
}
.ion-ios7-eye:before {
content: "\f189";
}
.ion-ios7-eye-outline:before {
content: "\f188";
}
.ion-ios7-fastforward:before {
content: "\f18b";
}
.ion-ios7-fastforward-outline:before {
content: "\f18a";
}
.ion-ios7-filing:before {
content: "\f18d";
}
.ion-ios7-filing-outline:before {
content: "\f18c";
}
.ion-ios7-film:before {
content: "\f18f";
}
.ion-ios7-film-outline:before {
content: "\f18e";
}
.ion-ios7-flag:before {
content: "\f191";
}
.ion-ios7-flag-outline:before {
content: "\f190";
}
.ion-ios7-folder:before {
content: "\f193";
}
.ion-ios7-folder-outline:before {
content: "\f192";
}
.ion-ios7-football:before {
content: "\f329";
}
.ion-ios7-football-outline:before {
content: "\f328";
}
.ion-ios7-gear:before {
content: "\f195";
}
.ion-ios7-gear-outline:before {
content: "\f194";
}
.ion-ios7-glasses:before {
content: "\f197";
}
.ion-ios7-glasses-outline:before {
content: "\f196";
}
.ion-ios7-heart:before {
content: "\f199";
}
.ion-ios7-heart-outline:before {
content: "\f198";
}
.ion-ios7-help:before {
content: "\f19c";
}
.ion-ios7-help-empty:before {
content: "\f19a";
}
.ion-ios7-help-outline:before {
content: "\f19b";
}
.ion-ios7-home:before {
content: "\f32b";
}
.ion-ios7-home-outline:before {
content: "\f32a";
}
.ion-ios7-infinite:before {
content: "\f19e";
}
.ion-ios7-infinite-outline:before {
content: "\f19d";
}
.ion-ios7-information:before {
content: "\f1a1";
}
.ion-ios7-information-empty:before {
content: "\f19f";
}
.ion-ios7-information-outline:before {
content: "\f1a0";
}
.ion-ios7-ionic-outline:before {
content: "\f1a2";
}
.ion-ios7-keypad:before {
content: "\f1a4";
}
.ion-ios7-keypad-outline:before {
content: "\f1a3";
}
.ion-ios7-lightbulb:before {
content: "\f287";
}
.ion-ios7-lightbulb-outline:before {
content: "\f286";
}
.ion-ios7-location:before {
content: "\f1a6";
}
.ion-ios7-location-outline:before {
content: "\f1a5";
}
.ion-ios7-locked:before {
content: "\f1a8";
}
.ion-ios7-locked-outline:before {
content: "\f1a7";
}
.ion-ios7-loop:before {
content: "\f32d";
}
.ion-ios7-loop-strong:before {
content: "\f32c";
}
.ion-ios7-medkit:before {
content: "\f289";
}
.ion-ios7-medkit-outline:before {
content: "\f288";
}
.ion-ios7-mic:before {
content: "\f1ab";
}
.ion-ios7-mic-off:before {
content: "\f1a9";
}
.ion-ios7-mic-outline:before {
content: "\f1aa";
}
.ion-ios7-minus:before {
content: "\f1ae";
}
.ion-ios7-minus-empty:before {
content: "\f1ac";
}
.ion-ios7-minus-outline:before {
content: "\f1ad";
}
.ion-ios7-monitor:before {
content: "\f1b0";
}
.ion-ios7-monitor-outline:before {
content: "\f1af";
}
.ion-ios7-moon:before {
content: "\f1b2";
}
.ion-ios7-moon-outline:before {
content: "\f1b1";
}
.ion-ios7-more:before {
content: "\f1b4";
}
.ion-ios7-more-outline:before {
content: "\f1b3";
}
.ion-ios7-musical-note:before {
content: "\f1b5";
}
.ion-ios7-musical-notes:before {
content: "\f1b6";
}
.ion-ios7-navigate:before {
content: "\f1b8";
}
.ion-ios7-navigate-outline:before {
content: "\f1b7";
}
.ion-ios7-paper:before {
content: "\f32f";
}
.ion-ios7-paper-outline:before {
content: "\f32e";
}
.ion-ios7-paperplane:before {
content: "\f1ba";
}
.ion-ios7-paperplane-outline:before {
content: "\f1b9";
}
.ion-ios7-partlysunny:before {
content: "\f1bc";
}
.ion-ios7-partlysunny-outline:before {
content: "\f1bb";
}
.ion-ios7-pause:before {
content: "\f1be";
}
.ion-ios7-pause-outline:before {
content: "\f1bd";
}
.ion-ios7-paw:before {
content: "\f331";
}
.ion-ios7-paw-outline:before {
content: "\f330";
}
.ion-ios7-people:before {
content: "\f1c0";
}
.ion-ios7-people-outline:before {
content: "\f1bf";
}
.ion-ios7-person:before {
content: "\f1c2";
}
.ion-ios7-person-outline:before {
content: "\f1c1";
}
.ion-ios7-personadd:before {
content: "\f1c4";
}
.ion-ios7-personadd-outline:before {
content: "\f1c3";
}
.ion-ios7-photos:before {
content: "\f1c6";
}
.ion-ios7-photos-outline:before {
content: "\f1c5";
}
.ion-ios7-pie:before {
content: "\f28b";
}
.ion-ios7-pie-outline:before {
content: "\f28a";
}
.ion-ios7-play:before {
content: "\f1c8";
}
.ion-ios7-play-outline:before {
content: "\f1c7";
}
.ion-ios7-plus:before {
content: "\f1cb";
}
.ion-ios7-plus-empty:before {
content: "\f1c9";
}
.ion-ios7-plus-outline:before {
content: "\f1ca";
}
.ion-ios7-pricetag:before {
content: "\f28d";
}
.ion-ios7-pricetag-outline:before {
content: "\f28c";
}
.ion-ios7-pricetags:before {
content: "\f333";
}
.ion-ios7-pricetags-outline:before {
content: "\f332";
}
.ion-ios7-printer:before {
content: "\f1cd";
}
.ion-ios7-printer-outline:before {
content: "\f1cc";
}
.ion-ios7-pulse:before {
content: "\f335";
}
.ion-ios7-pulse-strong:before {
content: "\f334";
}
.ion-ios7-rainy:before {
content: "\f1cf";
}
.ion-ios7-rainy-outline:before {
content: "\f1ce";
}
.ion-ios7-recording:before {
content: "\f1d1";
}
.ion-ios7-recording-outline:before {
content: "\f1d0";
}
.ion-ios7-redo:before {
content: "\f1d3";
}
.ion-ios7-redo-outline:before {
content: "\f1d2";
}
.ion-ios7-refresh:before {
content: "\f1d6";
}
.ion-ios7-refresh-empty:before {
content: "\f1d4";
}
.ion-ios7-refresh-outline:before {
content: "\f1d5";
}
.ion-ios7-reload:before {
content: "\f28e";
}
.ion-ios7-reverse-camera:before {
content: "\f337";
}
.ion-ios7-reverse-camera-outline:before {
content: "\f336";
}
.ion-ios7-rewind:before {
content: "\f1d8";
}
.ion-ios7-rewind-outline:before {
content: "\f1d7";
}
.ion-ios7-search:before {
content: "\f1da";
}
.ion-ios7-search-strong:before {
content: "\f1d9";
}
.ion-ios7-settings:before {
content: "\f339";
}
.ion-ios7-settings-strong:before {
content: "\f338";
}
.ion-ios7-shrink:before {
content: "\f30e";
}
.ion-ios7-skipbackward:before {
content: "\f1dc";
}
.ion-ios7-skipbackward-outline:before {
content: "\f1db";
}
.ion-ios7-skipforward:before {
content: "\f1de";
}
.ion-ios7-skipforward-outline:before {
content: "\f1dd";
}
.ion-ios7-snowy:before {
content: "\f309";
}
.ion-ios7-speedometer:before {
content: "\f290";
}
.ion-ios7-speedometer-outline:before {
content: "\f28f";
}
.ion-ios7-star:before {
content: "\f1e0";
}
.ion-ios7-star-half:before {
content: "\f33a";
}
.ion-ios7-star-outline:before {
content: "\f1df";
}
.ion-ios7-stopwatch:before {
content: "\f1e2";
}
.ion-ios7-stopwatch-outline:before {
content: "\f1e1";
}
.ion-ios7-sunny:before {
content: "\f1e4";
}
.ion-ios7-sunny-outline:before {
content: "\f1e3";
}
.ion-ios7-telephone:before {
content: "\f1e6";
}
.ion-ios7-telephone-outline:before {
content: "\f1e5";
}
.ion-ios7-tennisball:before {
content: "\f33c";
}
.ion-ios7-tennisball-outline:before {
content: "\f33b";
}
.ion-ios7-thunderstorm:before {
content: "\f1e8";
}
.ion-ios7-thunderstorm-outline:before {
content: "\f1e7";
}
.ion-ios7-time:before {
content: "\f292";
}
.ion-ios7-time-outline:before {
content: "\f291";
}
.ion-ios7-timer:before {
content: "\f1ea";
}
.ion-ios7-timer-outline:before {
content: "\f1e9";
}
.ion-ios7-toggle:before {
content: "\f33e";
}
.ion-ios7-toggle-outline:before {
content: "\f33d";
}
.ion-ios7-trash:before {
content: "\f1ec";
}
.ion-ios7-trash-outline:before {
content: "\f1eb";
}
.ion-ios7-undo:before {
content: "\f1ee";
}
.ion-ios7-undo-outline:before {
content: "\f1ed";
}
.ion-ios7-unlocked:before {
content: "\f1f0";
}
.ion-ios7-unlocked-outline:before {
content: "\f1ef";
}
.ion-ios7-upload:before {
content: "\f1f2";
}
.ion-ios7-upload-outline:before {
content: "\f1f1";
}
.ion-ios7-videocam:before {
content: "\f1f4";
}
.ion-ios7-videocam-outline:before {
content: "\f1f3";
}
.ion-ios7-volume-high:before {
content: "\f1f5";
}
.ion-ios7-volume-low:before {
content: "\f1f6";
}
.ion-ios7-wineglass:before {
content: "\f294";
}
.ion-ios7-wineglass-outline:before {
content: "\f293";
}
.ion-ios7-world:before {
content: "\f1f8";
}
.ion-ios7-world-outline:before {
content: "\f1f7";
}
.ion-ipad:before {
content: "\f1f9";
}
.ion-iphone:before {
content: "\f1fa";
}
.ion-ipod:before {
content: "\f1fb";
}
.ion-jet:before {
content: "\f295";
}
.ion-key:before {
content: "\f296";
}
.ion-knife:before {
content: "\f297";
}
.ion-laptop:before {
content: "\f1fc";
}
.ion-leaf:before {
content: "\f1fd";
}
.ion-levels:before {
content: "\f298";
}
.ion-lightbulb:before {
content: "\f299";
}
.ion-link:before {
content: "\f1fe";
}
.ion-load-a:before {
content: "\f29a";
}
.ion-load-b:before {
content: "\f29b";
}
.ion-load-c:before {
content: "\f29c";
}
.ion-load-d:before {
content: "\f29d";
}
.ion-location:before {
content: "\f1ff";
}
.ion-locked:before {
content: "\f200";
}
.ion-log-in:before {
content: "\f29e";
}
.ion-log-out:before {
content: "\f29f";
}
.ion-loop:before {
content: "\f201";
}
.ion-magnet:before {
content: "\f2a0";
}
.ion-male:before {
content: "\f2a1";
}
.ion-man:before {
content: "\f202";
}
.ion-map:before {
content: "\f203";
}
.ion-medkit:before {
content: "\f2a2";
}
.ion-merge:before {
content: "\f33f";
}
.ion-mic-a:before {
content: "\f204";
}
.ion-mic-b:before {
content: "\f205";
}
.ion-mic-c:before {
content: "\f206";
}
.ion-minus:before {
content: "\f209";
}
.ion-minus-circled:before {
content: "\f207";
}
.ion-minus-round:before {
content: "\f208";
}
.ion-model-s:before {
content: "\f2c1";
}
.ion-monitor:before {
content: "\f20a";
}
.ion-more:before {
content: "\f20b";
}
.ion-mouse:before {
content: "\f340";
}
.ion-music-note:before {
content: "\f20c";
}
.ion-navicon:before {
content: "\f20e";
}
.ion-navicon-round:before {
content: "\f20d";
}
.ion-navigate:before {
content: "\f2a3";
}
.ion-network:before {
content: "\f341";
}
.ion-no-smoking:before {
content: "\f2c2";
}
.ion-nuclear:before {
content: "\f2a4";
}
.ion-outlet:before {
content: "\f342";
}
.ion-paper-airplane:before {
content: "\f2c3";
}
.ion-paperclip:before {
content: "\f20f";
}
.ion-pause:before {
content: "\f210";
}
.ion-person:before {
content: "\f213";
}
.ion-person-add:before {
content: "\f211";
}
.ion-person-stalker:before {
content: "\f212";
}
.ion-pie-graph:before {
content: "\f2a5";
}
.ion-pin:before {
content: "\f2a6";
}
.ion-pinpoint:before {
content: "\f2a7";
}
.ion-pizza:before {
content: "\f2a8";
}
.ion-plane:before {
content: "\f214";
}
.ion-planet:before {
content: "\f343";
}
.ion-play:before {
content: "\f215";
}
.ion-playstation:before {
content: "\f30a";
}
.ion-plus:before {
content: "\f218";
}
.ion-plus-circled:before {
content: "\f216";
}
.ion-plus-round:before {
content: "\f217";
}
.ion-podium:before {
content: "\f344";
}
.ion-pound:before {
content: "\f219";
}
.ion-power:before {
content: "\f2a9";
}
.ion-pricetag:before {
content: "\f2aa";
}
.ion-pricetags:before {
content: "\f2ab";
}
.ion-printer:before {
content: "\f21a";
}
.ion-pull-request:before {
content: "\f345";
}
.ion-qr-scanner:before {
content: "\f346";
}
.ion-quote:before {
content: "\f347";
}
.ion-radio-waves:before {
content: "\f2ac";
}
.ion-record:before {
content: "\f21b";
}
.ion-refresh:before {
content: "\f21c";
}
.ion-reply:before {
content: "\f21e";
}
.ion-reply-all:before {
content: "\f21d";
}
.ion-ribbon-a:before {
content: "\f348";
}
.ion-ribbon-b:before {
content: "\f349";
}
.ion-sad:before {
content: "\f34a";
}
.ion-scissors:before {
content: "\f34b";
}
.ion-search:before {
content: "\f21f";
}
.ion-settings:before {
content: "\f2ad";
}
.ion-share:before {
content: "\f220";
}
.ion-shuffle:before {
content: "\f221";
}
.ion-skip-backward:before {
content: "\f222";
}
.ion-skip-forward:before {
content: "\f223";
}
.ion-social-android:before {
content: "\f225";
}
.ion-social-android-outline:before {
content: "\f224";
}
.ion-social-apple:before {
content: "\f227";
}
.ion-social-apple-outline:before {
content: "\f226";
}
.ion-social-bitcoin:before {
content: "\f2af";
}
.ion-social-bitcoin-outline:before {
content: "\f2ae";
}
.ion-social-buffer:before {
content: "\f229";
}
.ion-social-buffer-outline:before {
content: "\f228";
}
.ion-social-designernews:before {
content: "\f22b";
}
.ion-social-designernews-outline:before {
content: "\f22a";
}
.ion-social-dribbble:before {
content: "\f22d";
}
.ion-social-dribbble-outline:before {
content: "\f22c";
}
.ion-social-dropbox:before {
content: "\f22f";
}
.ion-social-dropbox-outline:before {
content: "\f22e";
}
.ion-social-facebook:before {
content: "\f231";
}
.ion-social-facebook-outline:before {
content: "\f230";
}
.ion-social-foursquare:before {
content: "\f34d";
}
.ion-social-foursquare-outline:before {
content: "\f34c";
}
.ion-social-freebsd-devil:before {
content: "\f2c4";
}
.ion-social-github:before {
content: "\f233";
}
.ion-social-github-outline:before {
content: "\f232";
}
.ion-social-google:before {
content: "\f34f";
}
.ion-social-google-outline:before {
content: "\f34e";
}
.ion-social-googleplus:before {
content: "\f235";
}
.ion-social-googleplus-outline:before {
content: "\f234";
}
.ion-social-hackernews:before {
content: "\f237";
}
.ion-social-hackernews-outline:before {
content: "\f236";
}
.ion-social-instagram:before {
content: "\f351";
}
.ion-social-instagram-outline:before {
content: "\f350";
}
.ion-social-linkedin:before {
content: "\f239";
}
.ion-social-linkedin-outline:before {
content: "\f238";
}
.ion-social-pinterest:before {
content: "\f2b1";
}
.ion-social-pinterest-outline:before {
content: "\f2b0";
}
.ion-social-reddit:before {
content: "\f23b";
}
.ion-social-reddit-outline:before {
content: "\f23a";
}
.ion-social-rss:before {
content: "\f23d";
}
.ion-social-rss-outline:before {
content: "\f23c";
}
.ion-social-skype:before {
content: "\f23f";
}
.ion-social-skype-outline:before {
content: "\f23e";
}
.ion-social-tumblr:before {
content: "\f241";
}
.ion-social-tumblr-outline:before {
content: "\f240";
}
.ion-social-tux:before {
content: "\f2c5";
}
.ion-social-twitter:before {
content: "\f243";
}
.ion-social-twitter-outline:before {
content: "\f242";
}
.ion-social-usd:before {
content: "\f353";
}
.ion-social-usd-outline:before {
content: "\f352";
}
.ion-social-vimeo:before {
content: "\f245";
}
.ion-social-vimeo-outline:before {
content: "\f244";
}
.ion-social-windows:before {
content: "\f247";
}
.ion-social-windows-outline:before {
content: "\f246";
}
.ion-social-wordpress:before {
content: "\f249";
}
.ion-social-wordpress-outline:before {
content: "\f248";
}
.ion-social-yahoo:before {
content: "\f24b";
}
.ion-social-yahoo-outline:before {
content: "\f24a";
}
.ion-social-youtube:before {
content: "\f24d";
}
.ion-social-youtube-outline:before {
content: "\f24c";
}
.ion-speakerphone:before {
content: "\f2b2";
}
.ion-speedometer:before {
content: "\f2b3";
}
.ion-spoon:before {
content: "\f2b4";
}
.ion-star:before {
content: "\f24e";
}
.ion-stats-bars:before {
content: "\f2b5";
}
.ion-steam:before {
content: "\f30b";
}
.ion-stop:before {
content: "\f24f";
}
.ion-thermometer:before {
content: "\f2b6";
}
.ion-thumbsdown:before {
content: "\f250";
}
.ion-thumbsup:before {
content: "\f251";
}
.ion-toggle:before {
content: "\f355";
}
.ion-toggle-filled:before {
content: "\f354";
}
.ion-trash-a:before {
content: "\f252";
}
.ion-trash-b:before {
content: "\f253";
}
.ion-trophy:before {
content: "\f356";
}
.ion-umbrella:before {
content: "\f2b7";
}
.ion-university:before {
content: "\f357";
}
.ion-unlocked:before {
content: "\f254";
}
.ion-upload:before {
content: "\f255";
}
.ion-usb:before {
content: "\f2b8";
}
.ion-videocamera:before {
content: "\f256";
}
.ion-volume-high:before {
content: "\f257";
}
.ion-volume-low:before {
content: "\f258";
}
.ion-volume-medium:before {
content: "\f259";
}
.ion-volume-mute:before {
content: "\f25a";
}
.ion-wand:before {
content: "\f358";
}
.ion-waterdrop:before {
content: "\f25b";
}
.ion-wifi:before {
content: "\f25c";
}
.ion-wineglass:before {
content: "\f2b9";
}
.ion-woman:before {
content: "\f25d";
}
.ion-wrench:before {
content: "\f2ba";
}
.ion-xbox:before {
content: "\f30c";
}
.display-flex {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.display-inline-flex {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: 500;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: 500;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
overflow: hidden;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
background-color: #efeff4;
color: #000000;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 17px;
line-height: 1.4;
margin: 0;
padding: 0;
overflow: hidden;
bottom: 0;
left: 0;
right: 0;
top: 0;
text-rendering: optimizeLegibility;
word-wrap: break-word;
-webkit-user-drag: none;
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
}
@media (max-height: 480px), (max-width: 320px) {
body {
font-size: 15px;
}
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
resize: none;
}
a {
color: #007aff;
cursor: pointer;
text-decoration: none;
}
a:hover,
a:focus {
color: #3395ff;
text-decoration: none;
}
a:focus {
outline: none;
text-decoration: none;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
.ion:before {
font-size: 16px;
}
.ion-xs {
font-size: 8px !important;
}
.ion-sm {
font-size: 12px !important;
}
.ion-md {
font-size: 16px !important;
}
.ion-lg {
font-size: 24px !important;
}
.ion-xl {
font-size: 32px !important;
}
.ion-xxl {
font-size: 64px !important;
}
.ion-xxxl {
font-size: 128px !important;
}
p {
margin: 0 0 .66em;
}
hr.dashed {
border-top-style: dashed;
}
hr.dotted {
border-top-style: dotted;
}
.text-overflow {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-overflow--reverse {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
direction: rtl;
text-align: left;
}
.view-feedback {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
top: 50%;
padding-left: 10%;
padding-right: 10%;
text-align: center;
width: 100%;
margin-top: -22px;
}
.view-feedback-icon {
font-size: 64px;
}
.view-feedback-icon.muted {
color: #999999;
}
.view-feedback-icon.primary {
color: #007aff;
}
.view-feedback-icon.success {
color: #4cd964;
}
.view-feedback-icon.warning {
color: #ffcc00;
}
.view-feedback-icon.danger {
color: #e74c3c;
}
.view-feedback-header,
.view-feedback-subheader {
font-weight: 500;
margin-bottom: .5em;
}
.view-feedback-header {
color: #666666;
font-size: 1.2em;
}
.view-feedback-subheader {
color: #999999;
font-size: .8em;
text-transform: uppercase;
}
.view-feedback-text {
color: #666666;
}
.view-feedback-action {
color: #007aff;
display: inline-block;
margin-top: 1em;
padding: 5px;
}
.list-unstyled {
list-style: none;
margin: 0;
padding: 0;
}
.list-unstyled > li {
margin: 0;
padding: 0;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-caps,
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-thin {
font-weight: 100;
}
.text-slim {
font-weight: 300;
}
.text-regular {
font-weight: 400;
}
.text-medium {
font-weight: 500;
}
.text-bold {
font-weight: 600;
}
.text-monospace {
font-family: Courier, monospace;
}
.text-xs {
font-size: 13px;
}
.text-sm {
font-size: 15px;
}
.text-md {
font-size: 17px;
}
.text-lg {
font-size: 20px;
}
.text-huge {
font-size: 24px;
line-height: 1;
}
.text-massive {
font-size: 32px;
line-height: 1;
}
.text-muted,
.btn-link.text-muted {
color: #999999;
}
.text-dimmed,
.btn-link.text-dimmed {
color: #666666;
}
.text-base,
.btn-link.text-base {
color: #333333;
}
.text-danger,
.btn-link.text-danger {
color: #999999;
}
.text-danger:hover,
.btn-link.text-danger:hover,
.text-danger:focus,
.btn-link.text-danger:focus {
color: #e74c3c;
}
.text-error,
.btn-link.text-error {
color: #e74c3c;
}
.text-error:hover,
.btn-link.text-error:hover,
.text-error:focus,
.btn-link.text-error:focus {
color: #e74c3c;
}
.text-primary,
.btn-link.text-primary {
color: #007aff;
}
a.text-primary:hover,
a.btn-link.text-primary:hover,
a.text-primary:focus,
a.btn-link.text-primary:focus,
button.text-primary:hover,
button.btn-link.text-primary:hover,
button.text-primary:focus,
button.btn-link.text-primary:focus {
color: #3395ff;
}
.text-success,
.btn-link.text-success {
color: #4cd964;
}
a.text-success:hover,
a.btn-link.text-success:hover,
a.text-success:focus,
a.btn-link.text-success:focus,
button.text-success:hover,
button.btn-link.text-success:hover,
button.text-success:focus,
button.btn-link.text-success:focus {
color: #76e288;
}
.text-info,
.btn-link.text-info {
color: #007aff;
}
a.text-info:hover,
a.btn-link.text-info:hover,
a.text-info:focus,
a.btn-link.text-info:focus,
button.text-info:hover,
button.btn-link.text-info:hover,
button.text-info:focus,
button.btn-link.text-info:focus {
color: #3395ff;
}
.text-warning,
.btn-link.text-warning {
color: #ffcc00;
}
a.text-warning:hover,
a.btn-link.text-warning:hover,
a.text-warning:focus,
a.btn-link.text-warning:focus,
button.text-warning:hover,
button.btn-link.text-warning:hover,
button.text-warning:focus,
button.btn-link.text-warning:focus {
color: #ffd633;
}
.inline {
display: inline;
}
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.collapse-left {
border-bottom-left-radius: 0 !important;
border-top-left-radius: 0 !important;
}
.collapse-right {
border-bottom-right-radius: 0 !important;
border-top-right-radius: 0 !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
.visually-hidden {
-webkit-transition: opacity 150ms, visibility 150ms;
-o-transition: opacity 150ms, visibility 150ms;
transition: opacity 150ms, visibility 150ms;
opacity: 0;
pointer-events: none;
visibility: hidden;
}
.u-round-none {
border-radius: 0 !important;
}
.u-round {
border-radius: 8px;
}
.u-round-bottom {
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.u-round-top {
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.u-crop {
overflow: hidden;
}
.u-scrollable {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.u-selectable {
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.v-center {
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
top: 50%;
}
.mt-5 {
margin-top: 5px;
}
.mr-5 {
margin-right: 5px;
}
.mb-5 {
margin-bottom: 5px;
}
.ml-5 {
margin-left: 5px;
}
.mt-1 {
margin-top: 10px;
}
.mr-1 {
margin-right: 10px;
}
.mb-1 {
margin-bottom: 10px;
}
.ml-1 {
margin-left: 10px;
}
.mt-2 {
margin-top: 20px;
}
.mr-2 {
margin-right: 20px;
}
.mb-2 {
margin-bottom: 20px;
}
.ml-2 {
margin-left: 20px;
}
.mv-1 {
margin-bottom: 10px;
margin-top: 10px;
}
.mv-2 {
margin-bottom: 20px;
margin-top: 20px;
}
.mv-3 {
margin-bottom: 30px;
margin-top: 30px;
}
.mh-1 {
margin-left: 10px;
margin-right: 10px;
}
.mh-2 {
margin-left: 20px;
margin-right: 20px;
}
.mh-3 {
margin-left: 30px;
margin-right: 30px;
}
.pt-1 {
padding-top: 10px;
}
.pr-1 {
padding-right: 10px;
}
.pb-1 {
padding-bottom: 10px;
}
.pl-1 {
padding-left: 10px;
}
.pt-2 {
padding-top: 20px;
}
.pr-2 {
padding-right: 20px;
}
.pb-2 {
padding-bottom: 20px;
}
.pl-2 {
padding-left: 20px;
}
.pv-1 {
padding-bottom: 10px;
padding-top: 10px;
}
.pv-2 {
padding-bottom: 20px;
padding-top: 20px;
}
.pv-3 {
padding-bottom: 30px;
padding-top: 30px;
}
.ph-1 {
padding-left: 10px;
padding-right: 10px;
}
.ph-2 {
padding-left: 20px;
padding-right: 20px;
}
.ph-3 {
padding-left: 30px;
padding-right: 30px;
}
.mt-0 {
margin-top: 0 !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mv-0 {
margin-bottom: 0 !important;
margin-top: 0 !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pl-0 {
padding-left: 0 !important;
}
.pr-0 {
padding-right: 0 !important;
}
.pv-0 {
padding-bottom: 0 !important;
padding-top: 0 !important;
}
@-webkit-keyframes artificial {
from {
opacity: .99;
}
to {
opacity: 1;
}
}
@keyframes artificial {
from {
opacity: .99;
}
to {
opacity: 1;
}
}
@-webkit-keyframes viewShowFromLeftEnter {
from {
-webkit-transform: translate3d(-100%, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromLeftEnter {
from {
transform: translate3d(-100%, 0, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromLeftLeave {
to {
opacity: .75;
-webkit-transform: translate3d(25%, 0, 0);
}
}
@keyframes viewShowFromLeftLeave {
to {
opacity: .75;
transform: translate3d(25%, 0, 0);
}
}
@-webkit-keyframes viewShowFromRightEnter {
from {
-webkit-transform: translate3d(100%, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromRightEnter {
from {
transform: translate3d(100%, 0, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromRightLeave {
to {
opacity: .75;
-webkit-transform: translate3d(-25%, 0, 0);
}
}
@keyframes viewShowFromRightLeave {
to {
opacity: .75;
transform: translate3d(-25%, 0, 0);
}
}
@-webkit-keyframes viewShowFromTopEnter {
from {
-webkit-transform: translate3d(0, -100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromTopEnter {
from {
transform: translate3d(0, -100%, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewShowFromBottomEnter {
from {
-webkit-transform: translate3d(0, 100%, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewShowFromBottomEnter {
from {
transform: translate3d(0, 100%, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromLeftLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(-100%, 0, 0);
}
}
@keyframes viewRevealFromLeftLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(-100%, 0, 0);
}
}
@-webkit-keyframes viewRevealFromLeftEnter {
from {
opacity: .75;
-webkit-transform: translate3d(25%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewRevealFromLeftEnter {
from {
opacity: .75;
transform: translate3d(25%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromRightLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(100%, 0, 0);
}
}
@keyframes viewRevealFromRightLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(100%, 0, 0);
}
}
@-webkit-keyframes viewRevealFromRightEnter {
from {
opacity: .75;
-webkit-transform: translate3d(-25%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
}
}
@keyframes viewRevealFromRightEnter {
from {
opacity: .75;
transform: translate3d(-25%, 0, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes viewRevealFromTopLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(0, -100%, 0);
}
}
@keyframes viewRevealFromTopLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, -100%, 0);
}
}
@-webkit-keyframes viewRevealFromBottomLeave {
from {
-webkit-transform: translate3d(0, 0, 0);
}
to {
-webkit-transform: translate3d(0, 100%, 0);
}
}
@keyframes viewRevealFromBottomLeave {
from {
transform: translate3d(0, 0, 0);
}
to {
transform: translate3d(0, 100%, 0);
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fade {
to {
opacity: 0;
}
}
@keyframes fade {
to {
opacity: 0;
}
}
@-webkit-keyframes fadeExpand {
to {
opacity: 0;
-webkit-transform: scale(1.5);
}
}
@keyframes fadeExpand {
to {
opacity: 0;
transform: scale(1.5);
}
}
@-webkit-keyframes fadeContract {
to {
opacity: 0;
-webkit-transform: scale(0.35);
}
}
@keyframes fadeContract {
to {
opacity: 0;
transform: scale(0.35);
}
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@-webkit-keyframes pulse {
50% {
opacity: .25;
}
}
@keyframes pulse {
50% {
opacity: .25;
}
}
.field-label {
color: #666666;
line-height: 20px;
width: 35%;
}
.field-control {
line-height: 20px;
position: relative;
width: 65%;
}
.field {
background: none transparent;
border: 0 none;
box-shadow: none;
color: #000000;
display: inline-block;
line-height: 1;
outline: none;
min-height: 20px;
margin: 0;
padding: 0;
width: 100%;
-webkit-appearance: none;
}
.field::-moz-placeholder {
color: #c7c7cd;
opacity: 1;
}
.field:-ms-input-placeholder {
color: #c7c7cd;
}
.field::-webkit-input-placeholder {
color: #c7c7cd;
}
div.field {
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.form-control-with-toggle {
padding: 14px 0;
position: relative;
}
.form-control-toggle {
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
border-radius: 8px;
border: 0 none;
display: inline-block;
font-weight: 500;
padding: 14px 16px;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
-webkit-box-shadow: none;
box-shadow: none;
border-color: transparent;
border-radius: 0;
color: #007aff;
cursor: pointer;
position: absolute;
right: 0;
top: 0;
}
.form-control-toggle,
.form-control-toggle:active,
.form-control-toggle[disabled],
fieldset[disabled] .form-control-toggle {
background-color: transparent;
}
.form-control-toggle:hover,
.form-control-toggle:active,
.form-control-toggle:focus {
color: #3395ff;
background-color: transparent;
}
.select-field {
background: none transparent;
border: 0 none;
box-shadow: none;
display: inline-block;
line-height: 1;
min-height: 20px;
margin: 0;
padding: 0;
color: #000000;
font-size: inherit;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.4;
outline: none;
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.select-field::-moz-placeholder {
color: #c7c7cd;
opacity: 1;
}
.select-field:-ms-input-placeholder {
color: #c7c7cd;
}
.select-field::-webkit-input-placeholder {
color: #c7c7cd;
}
div.select-field {
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: default;
-webkit-user-select: text;
}
.select-field:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
}
.select-field:focus + .select-field-indicator .select-field-indicator-arrow {
border-top-color: #666666;
}
.select-field-indicator,
.select-field-indicator-arrow {
bottom: 1px;
content: '';
display: inline-block;
right: 1px;
top: 1px;
position: absolute;
pointer-events: none;
}
.select-field-indicator {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px;
background-color: white;
width: 1.5em;
}
.select-field-indicator-arrow {
width: 0;
height: 0;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 4px solid transparent;
border-top-color: #c7c7cd;
border-bottom-width: 0;
right: 4px;
text-align: center;
top: 50%;
}
.g-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -5px;
margin-right: -5px;
}
.g-col {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
padding-left: 5px;
padding-right: 5px;
}
.g-one-whole,
.g-one-half,
.g-one-quarter,
.g-three-quarters,
.g-one-third,
.g-two-thirds,
.g-one-fifth,
.g-two-fifths,
.g-three-fifths,
.g-four-fifths,
.g-one-sixth,
.g-five-sixths {
-webkit-flex: 0;
-ms-flex: 0;
flex: 0;
}
.g-one-whole {
width: 100%;
}
.g-one-half,
.g-two-quarters,
.g-three-sixths {
width: 50%;
}
.g-one-quarter {
width: 25%;
}
.g-three-quarters {
width: 75%;
}
.g-one-third,
.g-two-sixths {
width: 33.333%;
}
.g-two-thirds,
.g-four-sixths {
width: 66.666%;
}
.g-one-fifth {
width: 20%;
}
.g-two-fifths {
width: 40%;
}
.g-three-fifths {
width: 60%;
}
.g-four-fifths {
width: 80%;
}
.g-one-sixth {
width: 16.666%;
}
.g-five-sixths {
width: 83.333%;
}
#app,
html,
body {
width: 100%;
height: 100%;
background: #efeff4;
overflow: hidden;
position: fixed;
}
.app-wrapper {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
overflow: hidden;
position: fixed;
}
@media only screen and (min-width: 480px) {
.app-wrapper {
width: 376px;
height: 668px;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
box-shadow: 0 0 12px -1px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
left: 50%;
top: 50%;
}
}
.FlexLayout {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.springy-scrolling {
position: relative;
}
.springy-scrolling:before,
.springy-scrolling:after {
width: 1px;
height: 1px;
content: "";
position: absolute;
}
.springy-scrolling:before {
bottom: -1px;
}
.springy-scrolling:after {
top: -1px;
}
.view {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #efeff4;
overflow: hidden;
position: fixed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.view-processing {
pointer-events: none;
}
.view-processing:after {
-webkit-animation: fadeIn 150ms;
-o-animation: fadeIn 150ms;
animation: fadeIn 150ms;
position: absolute;
top: 20px;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(255, 255, 255, 0.66);
content: "";
z-index: 2;
}
.is-native-app .view {
padding-top: 20px;
}
.is-native-app .view .Headerbar:before {
background-color: #f6f6f7;
content: "";
display: block !important;
height: 20px;
left: 0;
position: fixed;
top: 0;
width: 100%;
}
.is-native-app .view .Headerbar.green:before {
background-color: #4cd964;
}
.is-native-app .view .Headerbar.blue:before,
.is-native-app .view .Headerbar.primary:before {
background-color: #007aff;
}
.is-native-app .view .Headerbar.light-blue:before {
background-color: #5ac8fa;
}
.is-native-app .view .Headerbar.yellow:before {
background-color: #ffcc00;
}
.is-native-app .view .Headerbar.orange:before {
background-color: #ff9500;
}
.is-native-app .view .Headerbar.red:before {
background-color: #ff3b30;
}
.is-native-app .view .Headerbar.pink:before {
background-color: #ff2d55;
}
.is-native-app .view .Headerbar.purple:before {
background-color: #5856d6;
}
.view-inner {
margin: 14px 16px;
}
.view-transition-none-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-none-leave {
-webkit-animation: fade 10ms;
-o-animation: fade 10ms;
animation: fade 10ms;
}
.view-transition-fade-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-leave {
-webkit-animation: fade 380ms;
-o-animation: fade 380ms;
animation: fade 380ms;
}
.view-transition-fade-expand-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-expand-leave {
-webkit-animation: fadeExpand 320ms;
-o-animation: fadeExpand 320ms;
animation: fadeExpand 320ms;
}
.view-transition-fade-contract-enter {
-webkit-animation: artificial 10ms;
-o-animation: artificial 10ms;
animation: artificial 10ms;
}
.view-transition-fade-contract-leave {
-webkit-animation: fadeContract 320ms;
-o-animation: fadeContract 320ms;
animation: fadeContract 320ms;
}
.view-transition-show-from-top-enter,
.view-transition-show-from-right-enter,
.view-transition-show-from-bottom-enter,
.view-transition-show-from-left-enter {
z-index: 20;
}
.view-transition-show-from-top-leave,
.view-transition-show-from-right-leave,
.view-transition-show-from-bottom-leave,
.view-transition-show-from-left-leave {
z-index: 10;
}
.view-transition-show-from-top-enter,
.view-transition-show-from-top-leave,
.view-transition-show-from-bottom-enter,
.view-transition-show-from-bottom-leave {
-webkit-animation-duration: 380ms;
animation-duration: 380ms;
-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.view-transition-show-from-left-enter,
.view-transition-show-from-left-leave,
.view-transition-show-from-right-enter,
.view-transition-show-from-right-leave {
-webkit-animation-duration: 320ms;
animation-duration: 320ms;
-webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.view-transition-show-from-top-leave,
.view-transition-show-from-bottom-leave {
-webkit-animation-name: artificial;
animation-name: artificial;
}
.view-transition-show-from-top-enter {
-webkit-animation-name: viewShowFromTopEnter;
animation-name: viewShowFromTopEnter;
}
.view-transition-show-from-right-enter {
-webkit-animation-name: viewShowFromRightEnter;
animation-name: viewShowFromRightEnter;
}
.view-transition-show-from-bottom-enter {
-webkit-animation-name: viewShowFromBottomEnter;
animation-name: viewShowFromBottomEnter;
}
.view-transition-show-from-left-enter {
-webkit-animation-name: viewShowFromLeftEnter;
animation-name: viewShowFromLeftEnter;
}
.view-transition-show-from-left-leave {
-webkit-animation-name: viewShowFromLeftLeave;
animation-name: viewShowFromLeftLeave;
}
.view-transition-show-from-right-leave {
-webkit-animation-name: viewShowFromRightLeave;
animation-name: viewShowFromRightLeave;
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-right-enter,
.view-transition-reveal-from-bottom-enter,
.view-transition-reveal-from-left-enter {
z-index: 10;
}
.view-transition-reveal-from-top-leave,
.view-transition-reveal-from-right-leave,
.view-transition-reveal-from-bottom-leave,
.view-transition-reveal-from-left-leave {
z-index: 20;
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-top-leave,
.view-transition-reveal-from-bottom-enter,
.view-transition-reveal-from-bottom-leave {
-webkit-animation-duration: 380ms;
animation-duration: 380ms;
-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.view-transition-reveal-from-left-enter,
.view-transition-reveal-from-left-leave,
.view-transition-reveal-from-right-enter,
.view-transition-reveal-from-right-leave {
-webkit-animation-duration: 320ms;
animation-duration: 320ms;
-webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.view-transition-reveal-from-top-enter,
.view-transition-reveal-from-bottom-enter {
-webkit-animation-name: artificial;
animation-name: artificial;
}
.view-transition-reveal-from-top-leave {
-webkit-animation-name: viewRevealFromTopLeave;
animation-name: viewRevealFromTopLeave;
}
.view-transition-reveal-from-right-leave {
-webkit-animation-name: viewRevealFromRightLeave;
animation-name: viewRevealFromRightLeave;
}
.view-transition-reveal-from-bottom-leave {
-webkit-animation-name: viewRevealFromBottomLeave;
animation-name: viewRevealFromBottomLeave;
}
.view-transition-reveal-from-left-leave {
-webkit-animation-name: viewRevealFromLeftLeave;
animation-name: viewRevealFromLeftLeave;
}
.view-transition-reveal-from-left-enter {
-webkit-animation-name: viewRevealFromLeftEnter;
animation-name: viewRevealFromLeftEnter;
}
.view-transition-reveal-from-right-enter {
-webkit-animation-name: viewRevealFromRightEnter;
animation-name: viewRevealFromRightEnter;
}
.statusbar {
width: 100%;
height: 20px;
background-color: #f6f6f7;
}
.alertbar {
background-color: #999999;
color: white;
font-size: 15px;
font-weight: 500;
height: 30px;
line-height: 30px;
position: relative;
text-align: center;
}
.alertbar.primary {
background-color: #007aff;
}
.alertbar.success {
background-color: #4cd964;
}
.alertbar.warning {
background-color: #ffcc00;
}
.alertbar.danger {
background-color: #e74c3c;
}
.alertbar:after {
-webkit-animation: pulse 2s linear infinite;
-o-animation: pulse 2s linear infinite;
animation: pulse 2s linear infinite;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
content: "";
opacity: 0;
z-index: 1;
}
.alertbar-text {
position: relative;
z-index: 2;
}
button {
padding: 0;
}
.btn {
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
border-radius: 8px;
border: 0 none;
display: inline-block;
font-weight: 500;
padding: 14px 16px;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
}
.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
border-color: transparent;
border-radius: 0;
color: #007aff;
cursor: pointer;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
}
.btn-link:hover,
.btn-link:active,
.btn-link:focus {
color: #3395ff;
background-color: transparent;
}
.btn-default {
background-image: -webkit-linear-gradient(top, #eeeeee 0%, #dddddd 100%);
background-image: -o-linear-gradient(top, #eeeeee 0%, #dddddd 100%);
background-image: linear-gradient(to bottom, #eeeeee 0%, #dddddd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
color: #000000;
}
.btn-default:hover,
.btn-default:focus {
background-image: -webkit-linear-gradient(top, #f6f6f6 0%, #e6e6e6 100%);
background-image: -o-linear-gradient(top, #f6f6f6 0%, #e6e6e6 100%);
background-image: linear-gradient(to bottom, #f6f6f6 0%, #e6e6e6 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe6e6e6', GradientType=0);
color: #000000;
}
.btn-default:active,
.btn-default.active {
background: #ddd;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125);
}
.btn-primary {
background-image: -webkit-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: -o-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: linear-gradient(to bottom, #1485ff 0%, #0070eb 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1485ff', endColorstr='#ff0070eb', GradientType=0);
background-color: #007aff;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-primary:hover,
.btn-primary:focus {
background-image: -webkit-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: -o-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: linear-gradient(to bottom, #298fff 0%, #007aff 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff298fff', endColorstr='#ff007aff', GradientType=0);
background-color: #1a87ff;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-primary:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #006ee6;
}
.btn-success {
background-image: -webkit-linear-gradient(top, #5ddd73 0%, #3bd555 100%);
background-image: -o-linear-gradient(top, #5ddd73 0%, #3bd555 100%);
background-image: linear-gradient(to bottom, #5ddd73 0%, #3bd555 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5ddd73', endColorstr='#ff3bd555', GradientType=0);
background-color: #4cd964;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-success:hover,
.btn-success:focus {
background-image: -webkit-linear-gradient(top, #6ee081 0%, #4cd964 100%);
background-image: -o-linear-gradient(top, #6ee081 0%, #4cd964 100%);
background-image: linear-gradient(to bottom, #6ee081 0%, #4cd964 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6ee081', endColorstr='#ff4cd964', GradientType=0);
background-color: #61dd76;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-success:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #37d552;
}
.btn-info {
background-image: -webkit-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: -o-linear-gradient(top, #1485ff 0%, #0070eb 100%);
background-image: linear-gradient(to bottom, #1485ff 0%, #0070eb 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1485ff', endColorstr='#ff0070eb', GradientType=0);
background-color: #007aff;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-info:hover,
.btn-info:focus {
background-image: -webkit-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: -o-linear-gradient(top, #298fff 0%, #007aff 100%);
background-image: linear-gradient(to bottom, #298fff 0%, #007aff 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff298fff', endColorstr='#ff007aff', GradientType=0);
background-color: #1a87ff;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-info:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #006ee6;
}
.btn-warning {
background-image: -webkit-linear-gradient(top, #ffd014 0%, #ebbc00 100%);
background-image: -o-linear-gradient(top, #ffd014 0%, #ebbc00 100%);
background-image: linear-gradient(to bottom, #ffd014 0%, #ebbc00 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd014', endColorstr='#ffebbc00', GradientType=0);
background-color: #ffcc00;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-warning:hover,
.btn-warning:focus {
background-image: -webkit-linear-gradient(top, #ffd429 0%, #ffcc00 100%);
background-image: -o-linear-gradient(top, #ffd429 0%, #ffcc00 100%);
background-image: linear-gradient(to bottom, #ffd429 0%, #ffcc00 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd429', endColorstr='#ffffcc00', GradientType=0);
background-color: #ffd11a;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-warning:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #e6b800;
}
.btn-danger {
background-image: -webkit-linear-gradient(top, #e95d4e 0%, #e53b2a 100%);
background-image: -o-linear-gradient(top, #e95d4e 0%, #e53b2a 100%);
background-image: linear-gradient(to bottom, #e95d4e 0%, #e53b2a 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe95d4e', endColorstr='#ffe53b2a', GradientType=0);
background-color: #e74c3c;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-danger:hover,
.btn-danger:focus {
background-image: -webkit-linear-gradient(top, #eb6d60 0%, #e74c3c 100%);
background-image: -o-linear-gradient(top, #eb6d60 0%, #e74c3c 100%);
background-image: linear-gradient(to bottom, #eb6d60 0%, #e74c3c 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeb6d60', endColorstr='#ffe74c3c', GradientType=0);
background-color: #ea6153;
color: #ffffff;
outline: none;
text-decoration: none;
}
.btn-danger:active {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
background: #e43725;
}
.btn-block {
display: block;
width: 100%;
}
.panel-button {
background-color: white;
border: 0 none;
font-weight: normal;
line-height: 1;
outline: none;
text-decoration: none;
-webkit-appearance: none;
color: #000000;
display: block;
margin-bottom: 34px;
padding: 14px 16px;
position: relative;
text-align: center;
width: 100%;
}
.panel-button:after,
.panel-button:before {
width: 100%;
height: 1px;
background-color: rgba(0, 0, 0, 0.17);
content: " ";
left: 0;
position: absolute;
}
.panel-button:before {
top: -1px;
}
.panel-button:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.panel-button:after,
.panel-button:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.panel-button:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.panel-button:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.panel-button.muted {
color: #666666;
}
.panel-button.primary {
color: #007aff;
font-weight: 500;
}
.panel-button.info {
color: #007aff;
}
.panel-button.success {
color: #4cd964;
}
.panel-button.warning {
color: #ffcc00;
}
.panel-button.danger {
color: #e74c3c;
}
.panel-button + .panel-button {
margin-top: -17px;
}
.panel-button.Tappable-active {
background-color: #eeeeee;
}
.panel-button.disabled,
.panel-button[disabled] {
pointer-events: none;
opacity: .5;
}
.panel-button--first {
margin-top: 34px;
}
.loading-button-icon,
.loading-button-text {
-webkit-transition: opacity 400ms;
-o-transition: opacity 400ms;
transition: opacity 400ms;
}
.loading-button-icon-wrapper {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
margin-left: -12px;
left: 50%;
height: 100%;
position: absolute;
top: 0;
}
.loading-button-icon {
width: 24px;
height: 24px;
margin: auto;
position: relative;
-webkit-transition-delay: 200ms;
transition-delay: 200ms;
opacity: 0;
}
.loading-button-icon:before,
.loading-button-icon:after {
width: 24px;
height: 24px;
content: "";
border-radius: 50%;
border: 3px solid #007aff;
left: 0;
opacity: .33;
position: absolute;
top: 0;
}
.loading-button-icon:after {
-webkit-animation: spin 500ms linear infinite;
-o-animation: spin 500ms linear infinite;
animation: spin 500ms linear infinite;
border-color: transparent;
border-top-color: #007aff;
display: inline-block;
opacity: 1;
}
.loading-button.is-loading .loading-button-icon {
opacity: 1;
}
.loading-button.is-loading .loading-button-text {
opacity: 0;
}
.action-buttons {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: 'row nowrap';
-ms-flex-flow: 'row nowrap';
flex-flow: 'row nowrap';
}
.action-buttons + .action-buttons {
border-top: 1px solid #d1d1df;
}
.action-button-cell {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
border-left: 1px solid #d1d1df;
text-align: center;
}
.action-button-cell:first-child {
border-left: none;
}
.action-button {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
justify-content: center;
background: none transparent;
border: 0 none;
cursor: pointer;
min-height: 70px;
padding: 5px;
position: relative;
text-align: center;
width: 100%;
-webkit-appearance: none;
}
.action-button.disabled,
.action-button[disabled] {
pointer-events: none;
}
.action-button.disabled:before,
.action-button[disabled]:before,
.action-button.disabled > .action-button-label,
.action-button[disabled] > .action-button-label {
color: #cccccc;
}
.action-button.Tappable-active {
background-color: #eeeeee;
}
.action-button:before {
color: #007aff;
display: inline-block;
font-size: 32px;
height: 32px;
line-height: 1;
}
.action-button-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 15px;
font-weight: 500;
}
.action-buttons.special {
box-shadow: 0 0 0 1px #e6b800;
}
.action-buttons.special .action-button-cell {
border-color: #d9ad00;
}
.action-buttons.special .action-button {
background-color: #ffcc00;
}
.action-buttons.special .action-button-icon {
color: #000000;
}
.scan-button {
width: 100%;
height: 60px;
background-color: #007aff;
border: 0 none;
color: white;
display: block;
font-weight: 500;
position: relative;
outline: none;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
}
.scan-button.loading,
.scan-button.Tappable-active {
background-color: #0062cc;
}
.scan-button.loading .scan-button-icon,
.scan-button.Tappable-active .scan-button-icon {
background-color: #cce4ff;
box-shadow: 0 0 0 4px #0062cc;
}
.scan-button.loading {
-webkit-transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
-o-transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
transition: all 500ms cubic-bezier(0.68, -0.66, 0.265, 1.66);
-webkit-transform: translateY(125%);
-ms-transform: translateY(125%);
-o-transform: translateY(125%);
transform: translateY(125%);
}
.scan-button[disabled],
.scan-button.disabled {
background-color: #666666;
opacity: .2;
pointer-events: none;
}
.scan-button[disabled] .scan-button-icon,
.scan-button.disabled .scan-button-icon {
box-shadow: 0 0 0 4px #666666;
}
.scan-button-icon {
display: inline-block;
vertical-align: middle;
width: 70px;
height: 70px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 0 0 4px #007aff;
color: #000000;
font-size: 32px;
left: 50%;
line-height: 70px;
margin-left: -35px;
margin-top: -35px;
position: absolute;
top: 50%;
}
.scan-button-icon > svg {
display: inline-block;
vertical-align: middle;
width: 32px;
height: 32px;
margin-top: -7px;
}
.scan-button-labels {
width: 100%;
height: 100%;
display: table;
table-layout: fixed;
}
.scan-button-label {
background: 0 0;
border: none;
display: table-cell;
padding: 0 16px;
vertical-align: middle;
text-align: center;
}
.scan-button-label-icon {
width: 70px;
}
.scan-button-label-left {
text-align: right;
}
.scan-button-label-right {
text-align: left;
}
.list-item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
color: #000000;
line-height: 1;
overflow: hidden;
padding: 14px 16px;
position: relative;
z-index: 1;
}
.list-item:before {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
background-color: #bfbfc3;
content: " ";
left: 0;
position: absolute;
top: 0;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.list-item:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.list-item:first-child:before,
.list-item.is-first:before {
display: none;
}
.ios-list .list-item:before {
left: 16px;
}
.icon-list .list-item {
padding-left: 61px;
}
.icon-list .list-item:before {
left: 61px;
}
.avatar-list .list-item {
padding-left: 72px;
}
.avatar-list .list-item:before {
left: 72px;
}
.list-item:hover,
.list-item:active,
.list-item:focus {
color: #000000;
text-decoration: none;
}
.list-item.Tappable-active {
background-color: #eeeeee;
}
.list-item.is-tappable:after {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-size: inherit;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #cccccc;
content: "\f125";
font-size: 16px;
-webkit-align-items: center;
align-items: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 100%;
position: absolute;
right: 10px;
top: 0;
}
.list-item-title {
display: inline-block;
vertical-align: middle;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-bottom: -2px;
padding-bottom: 2px;
}
.list-item-subtitle {
color: #666666;
font-size: 85%;
font-weight: 300;
}
.center-align-left,
.center-align-right {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
height: 100%;
position: absolute;
top: 0;
}
.center-align-left {
left: 16px;
}
.center-align-right {
right: 16px;
}
.item-note {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
height: 100%;
padding: 0 5px;
position: absolute;
right: 0;
top: 0;
}
.item-note.is-muted .item-note-label {
color: #999;
}
.item-note.is-muted .item-note-icon {
color: #ccc;
}
.item-note.is-primary {
color: #007aff;
}
.item-note.is-primary .item-note-label,
.item-note.is-primary .item-note-icon {
color: #007aff;
}
.item-note.item-note-icon,
.item-note.item-note-label {
padding-left: 10px;
padding-right: 10px;
}
.item-note-icon,
.item-note-label {
display: inline-block;
vertical-align: top;
padding: 14px 5px;
}
.item-note-label {
color: #999;
}
.item-note-icon {
color: #ccc;
}
.list-item-icon-left,
.list-item-icon-right {
min-height: 40px;
}
.list-icon {
display: inline-block;
vertical-align: middle;
width: 29px;
height: 29px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
line-height: 29px;
position: absolute;
top: 50%;
text-align: center;
}
.list-icon:before {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
font-size: 16px;
height: 100%;
}
.list-icon.left {
left: 16px;
}
.list-icon.left.flush {
left: 0;
}
.list-icon.right {
right: 16px;
}
.list-icon.right.flush {
right: 0;
}
.list-avatar {
display: inline-block;
vertical-align: middle;
width: 40px;
height: 40px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
background-color: #b3b3b3;
border-radius: 50%;
color: white;
font-size: 24px;
line-height: 40px;
left: 16px;
position: absolute;
text-align: center;
top: 50%;
}
.list-avatar > img {
border-radius: 50%;
display: block;
height: auto;
max-width: 100%;
}
.list-header {
background-color: white;
background-color: #efeff4;
color: #4d4d4d;
display: block;
font-size: 13px;
font-weight: 500;
line-height: 1.1;
margin: 0;
padding: 7px 16px;
position: relative;
text-transform: uppercase;
}
.list-header:after,
.list-header:before {
width: 100%;
height: 1px;
background-color: #bfbfc3;
content: " ";
left: 0;
position: absolute;
}
.list-header:before {
top: -1px;
}
.list-header:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.list-header:after,
.list-header:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.list-header:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.list-header:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.loading-overlay {
background-color: rgba(0, 0, 0, 0.66);
bottom: 0;
left: 0;
overflow: hidden;
position: fixed;
right: 0;
top: 0;
z-index: 11;
}
.loading-spinner,
.loading-spinner-indicator {
width: 100px;
height: 100px;
border-radius: 50%;
border: 10px solid rgba(255, 255, 255, 0.5);
left: 50%;
margin-left: -50px;
margin-top: -50px;
position: absolute;
top: 50%;
}
.loading-spinner-indicator {
-webkit-animation: spin 500ms linear infinite;
-o-animation: spin 500ms linear infinite;
animation: spin 500ms linear infinite;
border-color: transparent;
border-top-color: white;
}
.Footerbar {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background-color: white;
background-color: #f6f6f7;
color: #222222;
height: 44px;
margin: 0;
position: relative;
z-index: 3;
}
.Footerbar:after {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
background-color: rgba(0, 0, 0, 0.3);
top: -1px;
content: " ";
left: 0;
position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.Footerbar:after {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.Footerbar.green,
.Footerbar.blue,
.Footerbar.primary,
.Footerbar.light-blue,
.Footerbar.yellow,
.Footerbar.orange,
.Footerbar.red,
.Footerbar.pink,
.Footerbar.purple {
color: #ffffff;
}
.Footerbar.green:after,
.Footerbar.blue:after,
.Footerbar.primary:after,
.Footerbar.light-blue:after,
.Footerbar.yellow:after,
.Footerbar.orange:after,
.Footerbar.red:after,
.Footerbar.pink:after,
.Footerbar.purple:after {
display: none;
}
.Footerbar.green .Footerbar-button,
.Footerbar.blue .Footerbar-button,
.Footerbar.primary .Footerbar-button,
.Footerbar.light-blue .Footerbar-button,
.Footerbar.yellow .Footerbar-button,
.Footerbar.orange .Footerbar-button,
.Footerbar.red .Footerbar-button,
.Footerbar.pink .Footerbar-button,
.Footerbar.purple .Footerbar-button {
color: rgba(255, 255, 255, 0.8);
}
.Footerbar.green .Footerbar-button.disabled,
.Footerbar.blue .Footerbar-button.disabled,
.Footerbar.primary .Footerbar-button.disabled,
.Footerbar.light-blue .Footerbar-button.disabled,
.Footerbar.yellow .Footerbar-button.disabled,
.Footerbar.orange .Footerbar-button.disabled,
.Footerbar.red .Footerbar-button.disabled,
.Footerbar.pink .Footerbar-button.disabled,
.Footerbar.purple .Footerbar-button.disabled,
.Footerbar.green .Footerbar-button[disabled],
.Footerbar.blue .Footerbar-button[disabled],
.Footerbar.primary .Footerbar-button[disabled],
.Footerbar.light-blue .Footerbar-button[disabled],
.Footerbar.yellow .Footerbar-button[disabled],
.Footerbar.orange .Footerbar-button[disabled],
.Footerbar.red .Footerbar-button[disabled],
.Footerbar.pink .Footerbar-button[disabled],
.Footerbar.purple .Footerbar-button[disabled] {
color: rgba(255, 255, 255, 0.4);
}
.Footerbar.green {
background-color: #4cd964;
}
.Footerbar.blue,
.Footerbar.primary {
background-color: #007aff;
}
.Footerbar.light-blue {
background-color: #5ac8fa;
}
.Footerbar.yellow {
background-color: #ffcc00;
}
.Footerbar.orange {
background-color: #ff9500;
}
.Footerbar.red {
background-color: #ff3b30;
}
.Footerbar.pink {
background-color: #ff2d55;
}
.Footerbar.purple {
background-color: #5856d6;
}
.Footerbar.yellow {
color: #222222;
}
.Footerbar.yellow .Footerbar-button {
color: rgba(0, 0, 0, 0.8);
}
.Footerbar.yellow .Footerbar-button.disabled,
.Footerbar.yellow .Footerbar-button[disabled] {
color: rgba(0, 0, 0, 0.4);
}
.Footerbar-button {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
background: none transparent;
border: 0 none;
color: #007aff;
cursor: pointer;
padding: 0 5px;
position: relative;
text-align: center;
width: 100%;
-webkit-appearance: none;
}
.Footerbar-button.disabled,
.Footerbar-button[disabled] {
pointer-events: none;
}
.Footerbar-button.disabled:before,
.Footerbar-button[disabled]:before,
.Footerbar-button.disabled > .Footerbar-button-label,
.Footerbar-button[disabled] > .Footerbar-button-label {
color: #cccccc;
}
.Footerbar-button.Tappable-active {
background-color: #eeeeee;
}
.Footerbar-button:before {
color: inherit;
display: inline-block;
font-size: 32px;
height: 32px;
line-height: 1;
}
.Footerbar-button.selectable {
color: #666666;
}
.Footerbar-button.selected {
color: #007aff;
}
.Footerbar-button-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: #000000;
font-size: 13px;
}
.Headerbar {
background-color: white;
background-color: #f6f6f7;
color: #222222;
height: 44px;
line-height: 44px;
margin: 0;
position: relative;
z-index: 3;
}
.Headerbar:after {
width: 100%;
height: 1px;
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
background-color: rgba(0, 0, 0, 0.3);
bottom: -1px;
content: " ";
left: 0;
position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.Headerbar:after {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
}
.Headerbar.green,
.Headerbar.blue,
.Headerbar.primary,
.Headerbar.light-blue,
.Headerbar.yellow,
.Headerbar.orange,
.Headerbar.red,
.Headerbar.pink,
.Headerbar.purple {
color: #ffffff;
}
.Headerbar.green:after,
.Headerbar.blue:after,
.Headerbar.primary:after,
.Headerbar.light-blue:after,
.Headerbar.yellow:after,
.Headerbar.orange:after,
.Headerbar.red:after,
.Headerbar.pink:after,
.Headerbar.purple:after {
display: none;
}
.Headerbar.green .Headerbar-button,
.Headerbar.blue .Headerbar-button,
.Headerbar.primary .Headerbar-button,
.Headerbar.light-blue .Headerbar-button,
.Headerbar.yellow .Headerbar-button,
.Headerbar.orange .Headerbar-button,
.Headerbar.red .Headerbar-button,
.Headerbar.pink .Headerbar-button,
.Headerbar.purple .Headerbar-button {
color: rgba(255, 255, 255, 0.8);
}
.Headerbar.green .Headerbar-button.disabled,
.Headerbar.blue .Headerbar-button.disabled,
.Headerbar.primary .Headerbar-button.disabled,
.Headerbar.light-blue .Headerbar-button.disabled,
.Headerbar.yellow .Headerbar-button.disabled,
.Headerbar.orange .Headerbar-button.disabled,
.Headerbar.red .Headerbar-button.disabled,
.Headerbar.pink .Headerbar-button.disabled,
.Headerbar.purple .Headerbar-button.disabled,
.Headerbar.green .Headerbar-button[disabled],
.Headerbar.blue .Headerbar-button[disabled],
.Headerbar.primary .Headerbar-button[disabled],
.Headerbar.light-blue .Headerbar-button[disabled],
.Headerbar.yellow .Headerbar-button[disabled],
.Headerbar.orange .Headerbar-button[disabled],
.Headerbar.red .Headerbar-button[disabled],
.Headerbar.pink .Headerbar-button[disabled],
.Headerbar.purple .Headerbar-button[disabled] {
color: rgba(255, 255, 255, 0.4);
}
.Headerbar.green {
background-color: #4cd964;
}
.Headerbar.blue,
.Headerbar.primary {
background-color: #007aff;
}
.Headerbar.light-blue {
background-color: #5ac8fa;
}
.Headerbar.yellow {
background-color: #ffcc00;
}
.Headerbar.orange {
background-color: #ff9500;
}
.Headerbar.red {
background-color: #ff3b30;
}
.Headerbar.pink {
background-color: #ff2d55;
}
.Headerbar.purple {
background-color: #5856d6;
}
.Headerbar.yellow {
color: #222222;
}
.Headerbar.yellow .Headerbar-button {
color: rgba(0, 0, 0, 0.8);
}
.Headerbar.yellow .Headerbar-button.disabled,
.Headerbar.yellow .Headerbar-button[disabled] {
color: rgba(0, 0, 0, 0.4);
}
.Headerbar-button {
background: none transparent;
border: 0 none;
color: #007aff;
cursor: pointer;
left: 0;
line-height: 44px;
height: 44px;
padding-left: 10px;
padding-right: 10px;
position: absolute;
text-align: center;
text-decoration: none;
top: 0;
-webkit-appearance: none;
z-index: 2;
}
.Headerbar-button.is-primary {
font-weight: 500;
}
.Headerbar-button.right {
left: auto;
right: 0;
}
.Headerbar-button:hover {
color: #1a87ff;
}
.Headerbar-button:active,
.Headerbar-button:focus,
.Headerbar-button.Tappable-active {
color: #0062cc;
outline: none;
-webkit-appearance: none;
}
.Headerbar-button.disabled,
.Headerbar-button[disabled] {
color: #cccccc;
pointer-events: none;
}
.Headerbar-button:before {
font-size: 24px;
margin-right: 5px;
position: relative;
top: 3px;
}
.Headerbar-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: 500;
line-height: 44px;
height: 44px;
min-width: 44px;
padding-left: 10px;
padding-right: 10px;
position: absolute;
text-align: center;
width: 100%;
}
.Headerbar > .Toggle {
margin: 8px;
}
.Subheader > .Toggle {
margin: 0 8px;
}
.Headerbar-form {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
line-height: 1;
padding: 8px 0;
}
.Headerbar + .Headerbar-form {
padding-top: 0;
}
.Headerbar-form-field {
padding: 0 8px;
position: relative;
}
.Headerbar-form-field:only-child,
.Headerbar-form-field.is-primary {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.Headerbar-form-field + .Headerbar-form-field {
padding-left: 0;
}
.Headerbar-form-input {
-webkit-transition: background-color 200ms linear;
-o-transition: background-color 200ms linear;
transition: background-color 200ms linear;
background: rgba(0, 0, 0, 0.06);
border: 0;
border-radius: 5px;
color: #000000;
font-size: 15px;
height: 28px;
line-height: 28px;
margin: 0;
outline: none;
padding: 8px 16px;
width: 100%;
-webkit-appearance: none;
}
.Headerbar-form-input::-moz-placeholder {
color: #999999;
opacity: 1;
}
.Headerbar-form-input:-ms-input-placeholder {
color: #999999;
}
.Headerbar-form-input::-webkit-input-placeholder {
color: #999999;
}
.Headerbar-form-input:active {
background: rgba(0, 0, 0, 0.12);
}
/* helper mixin */
/* actual styles */
.Headerbar-form-icon .Headerbar-form-input {
padding-left: 24px;
}
.Headerbar-form-icon:before {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
color: #999999;
font-size: 16px;
height: 100%;
padding: 0 8px;
position: absolute;
left: 8px;
right: auto;
top: 0;
pointer-events: none;
}
.Headerbar-form-clear {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
align-items: center;
color: #999999;
font-size: 16px;
height: 100%;
padding: 0 8px;
position: absolute;
left: auto;
right: 8px;
top: 0;
}
.Headerbar-form-clear.Tappable-active {
color: #999999;
}
.Keypad {
width: 100%;
height: 40%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
-moz-transition: -moz-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
-o-transition: -o-transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
bottom: 0;
padding: 1px;
position: fixed;
}
.Keypad.is-stowed {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.Keypad.is-black-translucent .Keypad-button {
background-color: rgba(0, 0, 0, 0.1);
color: white;
}
.Keypad.is-black-translucent .Keypad-button:active {
background-color: rgba(0, 0, 0, 0.1);
}
.Keypad.is-black-translucent .Keypad-button.is-auxiliary {
background-color: rgba(0, 0, 0, 0.15);
}
.Keypad.is-black-translucent .Keypad-button.is-auxiliary:active {
background-color: rgba(0, 0, 0, 0.2);
}
.Keypad.is-white-translucent .Keypad-button {
background-color: rgba(255, 255, 255, 0.45);
color: black;
}
.Keypad.is-white-translucent .Keypad-button:active {
background-color: rgba(255, 255, 255, 0.35);
}
.Keypad.is-white-translucent .Keypad-button.is-auxiliary {
background-color: rgba(255, 255, 255, 0.25);
}
.Keypad.is-white-translucent .Keypad-button.is-auxiliary:active {
background-color: rgba(255, 255, 255, 0.15);
}
.Keypad-cell {
width: 33.33%;
height: 25%;
padding: 1px;
}
.Keypad-button {
width: 100%;
height: 100%;
line-height: 1.1;
text-align: center;
border: none;
background: none;
outline: none;
-webkit-appearance: none;
background-color: #e0e0ea;
color: #000000;
}
.Keypad-button:active {
background-color: #d1d1df;
}
.Keypad-button.is-auxiliary {
background-color: #c2c2d5;
}
.Keypad-button.is-auxiliary:active {
background-color: #b3b3ca;
}
.Keypad-button[disabled] {
pointer-events: none;
}
.Keypad-button[disabled] .Keypad-button-primary-label,
.Keypad-button[disabled] .Keypad-button-secondary-label {
opacity: .3;
}
.Keypad-button-primary-label {
font-size: 1.4em;
}
.Keypad-button-secondary-label {
font-size: .8em;
}
.Modal {
-webkit-transition: all 300ms;
-o-transition: all 300ms;
transition: all 300ms;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: fixed;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
.Modal.visible {
visibility: visible;
opacity: 1;
}
.Modal-dialog {
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: rgba(255, 255, 255, 0.95);
border-radius: 8px;
left: 50%;
max-width: 90%;
padding: 20px;
position: fixed;
top: 50%;
width: 300px;
z-index: 1200;
}
.Modal-backdrop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: black;
opacity: .33;
position: fixed;
z-index: 1100;
}
.Modal-header {
font-weight: 500;
}
.Modal-text {
font-size: 15px;
}
.Modal-icon {
width: 46px;
height: 46px;
display: inline-block;
line-height: 46px;
margin-bottom: 5px;
}
.Modal-icon:before {
font-size: 46px;
}
.Modal-icon.muted {
color: #999999;
}
.Modal-icon.primary {
color: #007aff;
}
.Modal-icon.success {
color: #4cd964;
}
.Modal-icon.warning {
color: #ffcc00;
}
.Modal-icon.danger {
color: #e74c3c;
}
.Modal-loading {
text-align: center;
}
.Modal-loading.Modal-dialog {
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
border-radius: 16px;
left: 50%;
margin: -60px 0 0 -60px;
padding: 15px;
top: 50%;
width: 120px;
}
.Modal-loading .Modal-icon {
-webkit-animation: spin 1s linear infinite;
-o-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
.Modal-actions {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
border-top: 1px solid #d1d1df;
margin: 20px -20px -20px;
}
.Modal-action {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
color: #007aff;
padding: 10px;
text-align: center;
}
.Modal-action + .Modal-action {
border-left: 1px solid #d1d1df;
}
.Modal-action:first-child {
border-bottom-left-radius: 8px;
}
.Modal-action:last-child {
border-bottom-right-radius: 8px;
}
.Modal-action.Tappable-active {
background-color: #efeff4;
}
.Modal-action-primary {
font-weight: 500;
}
.panel {
background-color: white;
position: relative;
margin-bottom: 34px;
}
.panel:after,
.panel:before {
width: 100%;
height: 1px;
background-color: rgba(0, 0, 0, 0.17);
content: " ";
left: 0;
position: absolute;
}
.panel:before {
top: -1px;
}
.panel:after {
bottom: -1px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.panel:after,
.panel:before {
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
-o-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.panel:before {
-webkit-transform-origin: 0 bottom;
-moz-transform-origin: 0 bottom;
-ms-transform-origin: 0 bottom;
transform-origin: 0 bottom;
}
.panel:after {
-webkit-transform-origin: 0 top;
-moz-transform-origin: 0 top;
-ms-transform-origin: 0 top;
transform-origin: 0 top;
}
}
.view-inner > .panel {
border-radius: 8px;
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.panel--first {
margin-top: 34px;
}
.panel-header {
color: #4d4d4d;
font-size: 80%;
line-height: 1;
margin-bottom: 10px;
margin-top: 34px;
padding-left: 16px;
padding-right: 16px;
}
.panel-inner {
padding: 14px 16px;
}
.panel-inner + .panel-inner {
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.panel-inner.is-first {
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.panel-inner.is-last {
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
}
.Passcode {
margin: 0 auto;
max-width: 190px;
text-align: center;
width: 70%;
}
.Passcode-fields {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.Passcode-field {
-webkit-flex: 1 0 0;
-ms-flex: 1 0 0;
flex: 1 0 0;
margin: 4px;
position: relative;
}
.Passcode-input {
background: none;
border: none;
border-radius: 0;
box-shadow: inset 0 -4px 0 currentColor;
bottom: 0;
height: 60px;
left: 4px;
right: 4px;
position: relative;
text-align: center;
width: 100%;
}
.Passcode-input:after {
width: 16px;
height: 16px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
background-color: currentColor;
border-radius: 50%;
content: "";
display: none;
margin: 0 auto;
top: 50%;
}
.Passcode-input,
.Passcode-input:hover,
.Passcode-input:active,
.Passcode-input:focus {
outline: none;
-webkit-appearance: none;
}
.Passcode-input.has-value {
box-shadow: none;
}
.Passcode-input.has-value:after {
display: block;
}
.Toggle {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 13px;
}
.Toggle-item {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
background-color: white;
border: none;
box-shadow: 0 0 0 1px #007aff;
color: #007aff;
cursor: pointer;
display: table-cell;
line-height: 29px;
text-align: center;
}
.Toggle-item:first-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.Toggle-item:last-child {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.Toggle-item.Tappable-active {
background-color: #eeeeee;
}
.Toggle > .Toggle-item,
.Toggle.blue > .Toggle-item,
.Toggle.primary > .Toggle-item {
box-shadow: 0 0 0 1px #007aff;
color: #007aff;
}
.Toggle > .Toggle-item.active,
.Toggle.blue > .Toggle-item.active,
.Toggle.primary > .Toggle-item.active {
background-color: #007aff;
color: white;
}
.Toggle.muted > .Toggle-item {
box-shadow: 0 0 0 1px #999999;
color: #999999;
}
.Toggle.muted > .Toggle-item.active {
background-color: #999999;
color: white;
}
.Toggle.green > .Toggle-item {
box-shadow: 0 0 0 1px #4cd964;
color: #4cd964;
}
.Toggle.green > .Toggle-item.active {
background-color: #4cd964;
color: white;
}
.Toggle.light-blue > .Toggle-item {
box-shadow: 0 0 0 1px #5ac8fa;
color: #5ac8fa;
}
.Toggle.light-blue > .Toggle-item.active {
background-color: #5ac8fa;
color: white;
}
.Toggle.yellow > .Toggle-item {
box-shadow: 0 0 0 1px #ffcc00;
color: #ffcc00;
}
.Toggle.yellow > .Toggle-item.active {
background-color: #ffcc00;
color: white;
}
.Toggle.orange > .Toggle-item {
box-shadow: 0 0 0 1px #ff9500;
color: #ff9500;
}
.Toggle.orange > .Toggle-item.active {
background-color: #ff9500;
color: white;
}
.Toggle.red > .Toggle-item {
box-shadow: 0 0 0 1px #ff3b30;
color: #ff3b30;
}
.Toggle.red > .Toggle-item.active {
background-color: #ff3b30;
color: white;
}
.Toggle.pink > .Toggle-item {
box-shadow: 0 0 0 1px #ff2d55;
color: #ff2d55;
}
.Toggle.pink > .Toggle-item.active {
background-color: #ff2d55;
color: white;
}
.Toggle.purple > .Toggle-item {
box-shadow: 0 0 0 1px #5856d6;
color: #5856d6;
}
.Toggle.purple > .Toggle-item.active {
background-color: #5856d6;
color: white;
} | 0.441673 | 0.124213 |
.bootstrap-dialog .modal-header {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
min-height:0;
padding:10px 15px;
}
.bootstrap-dialog .bootstrap-dialog-title {
color: #fff;
display: inline-block;
font-size: 16px
}
.bootstrap-dialog .bootstrap-dialog-message {
font-size: 14px
}
.bootstrap-dialog .bootstrap-dialog-button-icon {
margin-right: 3px
}
.bootstrap-dialog .bootstrap-dialog-close-button {
font-size: 20px;
float: right;
opacity: .9;
filter: alpha(opacity=90)
}
.bootstrap-dialog .bootstrap-dialog-close-button:hover {
cursor: pointer;
opacity: 1;
filter: alpha(opacity=100)
}
.bootstrap-dialog.type-default .modal-header {
background-color: #fff
}
.bootstrap-dialog.type-default .bootstrap-dialog-title {
color: #333
}
.bootstrap-dialog.type-info .modal-header {
background-color: #5bc0de
}
.bootstrap-dialog.type-primary .modal-header {
background-color: #111
}
body.theme-dark-blue .bootstrap-dialog.type-primary .modal-header {background-color:#3399cc;}
body.theme-purple .bootstrap-dialog.type-primary .modal-header{background-color: #6c0065;}
body.theme-light-blue .bootstrap-dialog.type-primary .modal-header {background-color: #018498;}
body.theme-green .bootstrap-dialog.type-primary .modal-header{background-color: #106a10;}
body.theme-light-red .bootstrap-dialog.type-primary .modal-header{background-color: #a21700;}
body.theme-light-purple .bootstrap-dialog.type-primary .modal-header{background-color: #7d56c1;}
body.theme-dark-cyan .bootstrap-dialog.type-primary .modal-header{background-color: #2185e5;}
body.theme-bright-blue .bootstrap-dialog.type-primary .modal-header{background-color: #5e6ac0;}
body.theme-emerald .bootstrap-dialog.type-primary .modal-header{background-color:#01887a;}
.bootstrap-dialog.type-success .modal-header {
background-color: #5cb85c
}
.bootstrap-dialog.type-warning .modal-header {
background-color: #f0ad4e
}
.bootstrap-dialog.type-danger .modal-header {
background-color: #d9534f
}
.bootstrap-dialog.size-large .bootstrap-dialog-title {
font-size: 24px
}
.bootstrap-dialog.size-large .bootstrap-dialog-close-button {
font-size: 30px
}
.bootstrap-dialog.size-large .bootstrap-dialog-message {
font-size: 18px
}
.bootstrap-dialog .icon-spin {
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg)
}
100% {
-moz-transform: rotate(359deg)
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(359deg)
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg)
}
100% {
-o-transform: rotate(359deg)
}
}
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg)
}
100% {
-ms-transform: rotate(359deg)
}
}
@keyframes spin {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(359deg)
}
}
.modal-header .close{color:#fff;}
.modal-footer{padding:10px;}
.modal-footer .btn{padding:5px 15px;text-shadow:none;} | vendor/bower/travel/css/bootstrap-dialog.min.css | .bootstrap-dialog .modal-header {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
min-height:0;
padding:10px 15px;
}
.bootstrap-dialog .bootstrap-dialog-title {
color: #fff;
display: inline-block;
font-size: 16px
}
.bootstrap-dialog .bootstrap-dialog-message {
font-size: 14px
}
.bootstrap-dialog .bootstrap-dialog-button-icon {
margin-right: 3px
}
.bootstrap-dialog .bootstrap-dialog-close-button {
font-size: 20px;
float: right;
opacity: .9;
filter: alpha(opacity=90)
}
.bootstrap-dialog .bootstrap-dialog-close-button:hover {
cursor: pointer;
opacity: 1;
filter: alpha(opacity=100)
}
.bootstrap-dialog.type-default .modal-header {
background-color: #fff
}
.bootstrap-dialog.type-default .bootstrap-dialog-title {
color: #333
}
.bootstrap-dialog.type-info .modal-header {
background-color: #5bc0de
}
.bootstrap-dialog.type-primary .modal-header {
background-color: #111
}
body.theme-dark-blue .bootstrap-dialog.type-primary .modal-header {background-color:#3399cc;}
body.theme-purple .bootstrap-dialog.type-primary .modal-header{background-color: #6c0065;}
body.theme-light-blue .bootstrap-dialog.type-primary .modal-header {background-color: #018498;}
body.theme-green .bootstrap-dialog.type-primary .modal-header{background-color: #106a10;}
body.theme-light-red .bootstrap-dialog.type-primary .modal-header{background-color: #a21700;}
body.theme-light-purple .bootstrap-dialog.type-primary .modal-header{background-color: #7d56c1;}
body.theme-dark-cyan .bootstrap-dialog.type-primary .modal-header{background-color: #2185e5;}
body.theme-bright-blue .bootstrap-dialog.type-primary .modal-header{background-color: #5e6ac0;}
body.theme-emerald .bootstrap-dialog.type-primary .modal-header{background-color:#01887a;}
.bootstrap-dialog.type-success .modal-header {
background-color: #5cb85c
}
.bootstrap-dialog.type-warning .modal-header {
background-color: #f0ad4e
}
.bootstrap-dialog.type-danger .modal-header {
background-color: #d9534f
}
.bootstrap-dialog.size-large .bootstrap-dialog-title {
font-size: 24px
}
.bootstrap-dialog.size-large .bootstrap-dialog-close-button {
font-size: 30px
}
.bootstrap-dialog.size-large .bootstrap-dialog-message {
font-size: 18px
}
.bootstrap-dialog .icon-spin {
display: inline-block;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg)
}
100% {
-moz-transform: rotate(359deg)
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(359deg)
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg)
}
100% {
-o-transform: rotate(359deg)
}
}
@-ms-keyframes spin {
0% {
-ms-transform: rotate(0deg)
}
100% {
-ms-transform: rotate(359deg)
}
}
@keyframes spin {
0% {
transform: rotate(0deg)
}
100% {
transform: rotate(359deg)
}
}
.modal-header .close{color:#fff;}
.modal-footer{padding:10px;}
.modal-footer .btn{padding:5px 15px;text-shadow:none;} | 0.506347 | 0.037964 |
* { box-sizing: border-box; }
body {
font-family: sans-serif;
}
/* ---- button ---- */
.button {
display: inline-block;
padding: 0.5em 1.0em;
border: none;
border-radius: 7px;
color: #222;
font-family: sans-serif;
font-size: 16px;
cursor: pointer;
outline: 0;
}
.button:hover {
background-color: #8CF;
color: #222;
}
.button:active,
.button.is-checked {
background-color: #28F;
border: none;
outline: 0;
}
.button.is-checked {
color: white;
border: none;
outline: 0;
}
.button:active {
border: none;
outline: 0;
}
/* ---- button-group ---- */
.button-group {
margin-bottom: 20px;
}
.button-group:after {
content: '';
display: block;
clear: both;
}
.button-group .button {
float: left;
border-radius: 0;
margin-left: 0;
margin-right: 1px;
}
.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }
/* ---- isotope ---- */
.grid {
width: 100%;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- .catalog-item ---- */
.catalog-item {
position: relative;
float: left;
width: 100px;
height: 100px;
margin: 5px;
padding: 5px;
/* background: #888; */
color: #262524;
border: 1px solid #333333;
}
.catalog-item:hover {
border: 2px solid #333333;
}
.catalog-item > * {
margin: 0;
padding: 0;
}
.catalog-item .solution {
position: absolute;
left: 10px;
top: 76px;
text-transform: none;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .activity {
position: absolute;
left: 10px;
top: 5px;
height: 16px;
}
.catalog-item .task {
position: absolute;
width: 90px;
/* left: 10px; */
top: 76px;
text-transform: none;
text-align: center;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .task-long {
position: absolute;
width: 90px;
/* left: 10px; */
top: 66px;
text-transform: none;
text-align: center;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .solution-icon {
position: absolute;
left: 34px;
top: 30px;
width: 32px;
}
.catalog-item .progress {
position: absolute;
right: 8px;
top: 3px;
font-size: 11px;
font-weight: 600;
line-height: 14px;
height: 15px;
min-width: 15px;
margin: 0;
padding: 0;
padding-left: 4px;
border-radius: 5px;
color: #ffffff;
background-color: #000000;
} | assets/styles/pathmap.css | * { box-sizing: border-box; }
body {
font-family: sans-serif;
}
/* ---- button ---- */
.button {
display: inline-block;
padding: 0.5em 1.0em;
border: none;
border-radius: 7px;
color: #222;
font-family: sans-serif;
font-size: 16px;
cursor: pointer;
outline: 0;
}
.button:hover {
background-color: #8CF;
color: #222;
}
.button:active,
.button.is-checked {
background-color: #28F;
border: none;
outline: 0;
}
.button.is-checked {
color: white;
border: none;
outline: 0;
}
.button:active {
border: none;
outline: 0;
}
/* ---- button-group ---- */
.button-group {
margin-bottom: 20px;
}
.button-group:after {
content: '';
display: block;
clear: both;
}
.button-group .button {
float: left;
border-radius: 0;
margin-left: 0;
margin-right: 1px;
}
.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }
/* ---- isotope ---- */
.grid {
width: 100%;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- .catalog-item ---- */
.catalog-item {
position: relative;
float: left;
width: 100px;
height: 100px;
margin: 5px;
padding: 5px;
/* background: #888; */
color: #262524;
border: 1px solid #333333;
}
.catalog-item:hover {
border: 2px solid #333333;
}
.catalog-item > * {
margin: 0;
padding: 0;
}
.catalog-item .solution {
position: absolute;
left: 10px;
top: 76px;
text-transform: none;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .activity {
position: absolute;
left: 10px;
top: 5px;
height: 16px;
}
.catalog-item .task {
position: absolute;
width: 90px;
/* left: 10px; */
top: 76px;
text-transform: none;
text-align: center;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .task-long {
position: absolute;
width: 90px;
/* left: 10px; */
top: 66px;
text-transform: none;
text-align: center;
letter-spacing: 0;
font-size: 12px;
font-weight: normal;
}
.catalog-item .solution-icon {
position: absolute;
left: 34px;
top: 30px;
width: 32px;
}
.catalog-item .progress {
position: absolute;
right: 8px;
top: 3px;
font-size: 11px;
font-weight: 600;
line-height: 14px;
height: 15px;
min-width: 15px;
margin: 0;
padding: 0;
padding-left: 4px;
border-radius: 5px;
color: #ffffff;
background-color: #000000;
} | 0.431345 | 0.117597 |
.introbubbles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
.introbubbles_bubblewrapper {
position: absolute;
transform: translate(-50%, -50%);
animation-name: floating;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-duration: 20s;
}
.introbubbles_bubble {
float: left;
margin: 0;
border-radius: 50%;
border: solid 1px;
transform: scale(1);
transition: transform 300ms ease-out;
}
.introscreen--hidden .introbubbles_bubble {
transform: scale(0);
}
.introbubbles_bubblewrapper:nth-child(2) { animation-duration: 42s; }
.introbubbles_bubblewrapper:nth-child(3) { animation-duration: 13s; }
.introbubbles_bubblewrapper:nth-child(4) { animation-duration: 14s; }
.introbubbles_bubblewrapper:nth-child(5) { animation-duration: 15s; }
.introbubbles_bubblewrapper:nth-child(6) { animation-duration: 36s; }
.introbubbles_bubblewrapper:nth-child(7) { animation-duration: 17s; }
.introbubbles_bubblewrapper:nth-child(8) { animation-duration: 58s; }
.introbubbles_bubblewrapper:nth-child(9) { animation-duration: 19s; }
.introbubbles_bubblewrapper:nth-child(10) { animation-duration: 50s; }
.introbubbles_bubblewrapper:nth-child(11) { animation-duration: 42s; }
.introbubbles_bubblewrapper:nth-child(12) { animation-duration: 13s; }
.introbubbles_bubblewrapper:nth-child(13) { animation-duration: 14s; }
.introbubbles_bubblewrapper:nth-child(14) { animation-duration: 15s; }
.introbubbles_bubblewrapper:nth-child(15) { animation-duration: 36s; }
.introbubbles_bubblewrapper:nth-child(16) { animation-duration: 17s; }
.introbubbles_bubblewrapper:nth-child(17) { animation-duration: 58s; }
.introbubbles_bubblewrapper:nth-child(18) { animation-duration: 19s; }
.introbubbles_bubblewrapper:nth-child(19) { animation-duration: 50s; }
@keyframes floating {
0% {
transform: translate(0%,0%);
}
25% {
transform: translate(5%,15%);
}
50% {
transform: translate(10%,5%);
}
75% {
transform: translate(0%,15%);
}
100% {
transform: translate(0%,0%);
}
} | src/components/IntroScreen/IntroBubbles.css | .introbubbles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
.introbubbles_bubblewrapper {
position: absolute;
transform: translate(-50%, -50%);
animation-name: floating;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-duration: 20s;
}
.introbubbles_bubble {
float: left;
margin: 0;
border-radius: 50%;
border: solid 1px;
transform: scale(1);
transition: transform 300ms ease-out;
}
.introscreen--hidden .introbubbles_bubble {
transform: scale(0);
}
.introbubbles_bubblewrapper:nth-child(2) { animation-duration: 42s; }
.introbubbles_bubblewrapper:nth-child(3) { animation-duration: 13s; }
.introbubbles_bubblewrapper:nth-child(4) { animation-duration: 14s; }
.introbubbles_bubblewrapper:nth-child(5) { animation-duration: 15s; }
.introbubbles_bubblewrapper:nth-child(6) { animation-duration: 36s; }
.introbubbles_bubblewrapper:nth-child(7) { animation-duration: 17s; }
.introbubbles_bubblewrapper:nth-child(8) { animation-duration: 58s; }
.introbubbles_bubblewrapper:nth-child(9) { animation-duration: 19s; }
.introbubbles_bubblewrapper:nth-child(10) { animation-duration: 50s; }
.introbubbles_bubblewrapper:nth-child(11) { animation-duration: 42s; }
.introbubbles_bubblewrapper:nth-child(12) { animation-duration: 13s; }
.introbubbles_bubblewrapper:nth-child(13) { animation-duration: 14s; }
.introbubbles_bubblewrapper:nth-child(14) { animation-duration: 15s; }
.introbubbles_bubblewrapper:nth-child(15) { animation-duration: 36s; }
.introbubbles_bubblewrapper:nth-child(16) { animation-duration: 17s; }
.introbubbles_bubblewrapper:nth-child(17) { animation-duration: 58s; }
.introbubbles_bubblewrapper:nth-child(18) { animation-duration: 19s; }
.introbubbles_bubblewrapper:nth-child(19) { animation-duration: 50s; }
@keyframes floating {
0% {
transform: translate(0%,0%);
}
25% {
transform: translate(5%,15%);
}
50% {
transform: translate(10%,5%);
}
75% {
transform: translate(0%,15%);
}
100% {
transform: translate(0%,0%);
}
} | 0.674372 | 0.151718 |
color: #565d64;
position: fixed;
top: 150px;
/* set these so Chrome doesn't return 'auto' from getComputedStyle */
z-index: 999;
box-shadow: 5px 5px 10px #888;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#runmycode-runner .panel {
background-color: #fff;
border: 1px solid transparent;
border-radius: 2px;
margin-bottom: 0;
}
#runmycode-runner .panel-default {
border-color: #e5e5e5;
}
#runmycode-runner .panel-group {
margin-bottom: 0;
}
#runmycode-runner .panel-group .panel+.panel {
margin-top: 5px;
}
#runmycode-runner .panel-heading {
padding: 6px 16px;
border-bottom: 1px solid #e5e5e5;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
cursor: pointer;
line-height: 27px;
background-color: #f5f5f5;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner-handle.panel-heading {
cursor: move;
}
#runmycode-runner .panel-title {
margin: 0;
font-size: 14px;
font-weight: 600;
line-height: inherit;
clear: inherit;
color: inherit;
text-transform: inherit;
text-shadow: inherit;
}
#runmycode-runner .panel-title>a {
color: inherit;
text-decoration: none;
}
#runmycode-runner .panel-title>a:hover {
text-decoration: underline;
}
#runmycode-runner .panel-body {
padding: 15px;
}
#runmycode-runner .panel-runner .panel-body {
padding: 0;
}
#runmycode-runner .close {
float: right;
font-size: 21px;
font-weight: bold;
font-family: inherit;
line-height: 1;
opacity: 0.3;
padding: 0;
margin: 0;
border: 0;
background: transparent;
}
#runmycode-runner .close:hover, #runmycode-runner .close:focus {
cursor: pointer;
opacity: 0.7;
}
#runmycode-runner .collapse {
display: none;
}
#runmycode-runner .collapse.in {
display: block;
}
#runmycode-runner .btn {
border: 1px solid #e5e5e5;
font-size: 14px;
border-radius: 3px;
padding: 10px 0;
font-weight: bold;
font-family: inherit;
cursor: pointer;
background-image: none;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner .btn-block {
display: block;
width: 100%;
margin: 0 0 15px 0;
}
#runmycode-runner .btn-warning {
background-color: #fc9403;
color: #fff;
}
#runmycode-runner .btn-warning:active {
background-color: #c26700;
}
#runmycode:disabled {
color: white !important;
font-weight: bold !important;
background-color: rgba(252, 148, 3, 0.5) !important;
box-shadow: none !important;
pointer-events: none !important;
cursor: not-allowed !important;
}
#runmycode-run-input, #runmycode-run-output {
font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
padding: 6px 10px;
min-width: 100%;
display: block;
margin: 0;
font-size: 14px;
color: inherit;
line-height: normal;
box-sizing: border-box;
border: 1px solid #e5e5e5;
}
/*#runmycode-runner textarea[readonly] {
background-color: #f9f9f9;
}*/
#runmycode-runner .error {
color: red;
}
#runmycode-run-input {
min-height: 46px;
}
#runmycode-run-output {
resize: both;
min-height: 90px;
}
.hidden {
display: none;
} | runmycode-panel.css | color: #565d64;
position: fixed;
top: 150px;
/* set these so Chrome doesn't return 'auto' from getComputedStyle */
z-index: 999;
box-shadow: 5px 5px 10px #888;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#runmycode-runner .panel {
background-color: #fff;
border: 1px solid transparent;
border-radius: 2px;
margin-bottom: 0;
}
#runmycode-runner .panel-default {
border-color: #e5e5e5;
}
#runmycode-runner .panel-group {
margin-bottom: 0;
}
#runmycode-runner .panel-group .panel+.panel {
margin-top: 5px;
}
#runmycode-runner .panel-heading {
padding: 6px 16px;
border-bottom: 1px solid #e5e5e5;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
cursor: pointer;
line-height: 27px;
background-color: #f5f5f5;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner-handle.panel-heading {
cursor: move;
}
#runmycode-runner .panel-title {
margin: 0;
font-size: 14px;
font-weight: 600;
line-height: inherit;
clear: inherit;
color: inherit;
text-transform: inherit;
text-shadow: inherit;
}
#runmycode-runner .panel-title>a {
color: inherit;
text-decoration: none;
}
#runmycode-runner .panel-title>a:hover {
text-decoration: underline;
}
#runmycode-runner .panel-body {
padding: 15px;
}
#runmycode-runner .panel-runner .panel-body {
padding: 0;
}
#runmycode-runner .close {
float: right;
font-size: 21px;
font-weight: bold;
font-family: inherit;
line-height: 1;
opacity: 0.3;
padding: 0;
margin: 0;
border: 0;
background: transparent;
}
#runmycode-runner .close:hover, #runmycode-runner .close:focus {
cursor: pointer;
opacity: 0.7;
}
#runmycode-runner .collapse {
display: none;
}
#runmycode-runner .collapse.in {
display: block;
}
#runmycode-runner .btn {
border: 1px solid #e5e5e5;
font-size: 14px;
border-radius: 3px;
padding: 10px 0;
font-weight: bold;
font-family: inherit;
cursor: pointer;
background-image: none;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner .btn-block {
display: block;
width: 100%;
margin: 0 0 15px 0;
}
#runmycode-runner .btn-warning {
background-color: #fc9403;
color: #fff;
}
#runmycode-runner .btn-warning:active {
background-color: #c26700;
}
#runmycode:disabled {
color: white !important;
font-weight: bold !important;
background-color: rgba(252, 148, 3, 0.5) !important;
box-shadow: none !important;
pointer-events: none !important;
cursor: not-allowed !important;
}
#runmycode-run-input, #runmycode-run-output {
font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
padding: 6px 10px;
min-width: 100%;
display: block;
margin: 0;
font-size: 14px;
color: inherit;
line-height: normal;
box-sizing: border-box;
border: 1px solid #e5e5e5;
}
/*#runmycode-runner textarea[readonly] {
background-color: #f9f9f9;
}*/
#runmycode-runner .error {
color: red;
}
#runmycode-run-input {
min-height: 46px;
}
#runmycode-run-output {
resize: both;
min-height: 90px;
}
.hidden {
display: none;
} | 0.299617 | 0.060557 |
body {
padding-top: 50px;
min-width: 330px;
}
/* By default, the navbar is 50px high (30px without padding) */
.plus-one-container {
padding-top: 10px;
padding-left: 15px;
}
.floatleft {
float: right;
}
/* GENERIC STRIP */
.strip {
height: 600px;
}
.content {
margin-top: 30px;
}
/* HEADER STRIP */
.logo h1 {
padding-top: 239px;
}
@media (max-width: 400px) {
.logo h1 {
padding-top: 100px;
}
}
@media (max-width: 400px) {
.rosa {
height: 400px;
}
}
/* OFFERTA */
.offerta h2 {
min-height: 120px;
margin-top: 10px;
padding: 0px;
}
.offerta h1 {
margin-top: 5px;
}
.panna .container {
margin-top: 60px;
}
.oldprice, .newprice {
display: inline;
}
@media (max-width: 547px) {
.panna .container {
margin-top: 35px;
}
}
@media (max-width: 377px) {
.panna .container {
margin-top: 50px;
}
}
/* DOVE SIAMO */
.blu .container {
margin-top: 82px;
}
@media (max-width: 991px) {
.blu .container {
margin-top: 0px;
}
}
.listacolonna {
padding: 0;
}
.sinistra {
padding-left: 50px;
float: left;
}
@media (max-width: 991px) {
.sinistra {
padding-left: 130px;
}
}
@media (max-width: 680px) {
.sinistra {
padding-left: 70px;
}
}
@media (max-width: 590px) {
.sinistra {
padding-left: 70px;
}
}
@media (max-width: 510px) {
.sinistra {
padding-left: 30px;
}
}
@media (max-width: 470px) {
.sinistra {
padding-left: 0px;
}
}
.destra {
padding-right: 30px;
float: right;
}
@media (max-width: 991px) {
.destra {
padding-right: 130px;
}
}
@media (max-width: 680px) {
.destra {
padding-right: 70px;
}
}
@media (max-width: 590px) {
.destra {
padding-right: 70px;
}
}
@media (max-width: 510px) {
.destra {
padding-right: 30px;
}
}
@media (max-width: 470px) {
.destra {
padding-right: 0;
}
}
.max80 {
max-width: 400px;
}
.emptyline {
height: 35px;
}
@media (max-width: 991px) {
.emptyline {
display: none;
}
}
/* STAFF */
.verde .container {
margin-top: 117px;
}
@media (max-width: 437px) {
.verde .container {
margin-top: 94px;
}
}
#myslider {
height: 600px;
background: black;
} | src/css/homepage_structure.css |
body {
padding-top: 50px;
min-width: 330px;
}
/* By default, the navbar is 50px high (30px without padding) */
.plus-one-container {
padding-top: 10px;
padding-left: 15px;
}
.floatleft {
float: right;
}
/* GENERIC STRIP */
.strip {
height: 600px;
}
.content {
margin-top: 30px;
}
/* HEADER STRIP */
.logo h1 {
padding-top: 239px;
}
@media (max-width: 400px) {
.logo h1 {
padding-top: 100px;
}
}
@media (max-width: 400px) {
.rosa {
height: 400px;
}
}
/* OFFERTA */
.offerta h2 {
min-height: 120px;
margin-top: 10px;
padding: 0px;
}
.offerta h1 {
margin-top: 5px;
}
.panna .container {
margin-top: 60px;
}
.oldprice, .newprice {
display: inline;
}
@media (max-width: 547px) {
.panna .container {
margin-top: 35px;
}
}
@media (max-width: 377px) {
.panna .container {
margin-top: 50px;
}
}
/* DOVE SIAMO */
.blu .container {
margin-top: 82px;
}
@media (max-width: 991px) {
.blu .container {
margin-top: 0px;
}
}
.listacolonna {
padding: 0;
}
.sinistra {
padding-left: 50px;
float: left;
}
@media (max-width: 991px) {
.sinistra {
padding-left: 130px;
}
}
@media (max-width: 680px) {
.sinistra {
padding-left: 70px;
}
}
@media (max-width: 590px) {
.sinistra {
padding-left: 70px;
}
}
@media (max-width: 510px) {
.sinistra {
padding-left: 30px;
}
}
@media (max-width: 470px) {
.sinistra {
padding-left: 0px;
}
}
.destra {
padding-right: 30px;
float: right;
}
@media (max-width: 991px) {
.destra {
padding-right: 130px;
}
}
@media (max-width: 680px) {
.destra {
padding-right: 70px;
}
}
@media (max-width: 590px) {
.destra {
padding-right: 70px;
}
}
@media (max-width: 510px) {
.destra {
padding-right: 30px;
}
}
@media (max-width: 470px) {
.destra {
padding-right: 0;
}
}
.max80 {
max-width: 400px;
}
.emptyline {
height: 35px;
}
@media (max-width: 991px) {
.emptyline {
display: none;
}
}
/* STAFF */
.verde .container {
margin-top: 117px;
}
@media (max-width: 437px) {
.verde .container {
margin-top: 94px;
}
}
#myslider {
height: 600px;
background: black;
} | 0.345878 | 0.073963 |
.header-style{
border-bottom: 0.1px solid lightgray;
height: 40px;
padding: 7px;
width: 100%;
background: white;
z-index: 5;
font-weight: 600;
}
i.fa.fa-google-plus-square.google {
color: rgb(220, 15, 99);
margin-top: -8px;
}
.df{
}
a{
color: none;
}
button.header-button {
border: 0px;
outline: none;
background: white;
padding-right: 30px;
float: right;
}
.newmodal-dialog {
width: 400px;
margin: 30px auto;
}
.newmodal-dialog-1 {
width: 400px;
margin: 30px auto;
}
.log-btn{
outline: none;
margin-top: 1%;
width: 91px;
background: rgb(220, 15, 99);
border: 0px;
color: white;
font-weight: 900;
height: 36px;
}
.newmodal-content {
position: relative;
background-color: #fff;
/* border: 1px solid #999; */
border: 1px solid rgba(0,0,0,0.1);
margin-top: 36px;
margin-bottom: 30px;
box-shadow: 0 0px 1px rgba(0,0,0,.2);
outline: 0;
height: 450px;
}
button.google-button {
border: 0;
background: white;
color: #dc0f63;
position: absolute;
margin-top: -26px;
}
.spacer-5 {
margin-left: 5px;
}
.fa-cloud-upload:before {
margin-right: 6px;
content: "\f0ee";
}
.title-size{
font-weight: 900;
color: darkslategrey;
font-size: 25px;
}
textarea.myinput::placeholder {
color: darkgrey;
font-size: 16px;
font-weight: 500;
}
.container-fluid.header-2 {
padding: 12px;
text-align: center;
color: dimgray;
font-weight: 900;
font-size: 44px;
position: relative;
z-index: 10;
letter-spacing: 18px;
border-bottom: 0.1px solid lightgrey;
}
.header-3{
z-index: 10;
}
.col-sm-2.n-category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
text-align: center;
padding-top: 6px;
border: none;
cursor: pointer;
}
.col-sm-2.n1-category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
padding-top: 6px;
border: none;
}
.col-sm-2.category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
font-weight: 500;
text-align: center;
padding-top: 6px;
border: none;
cursor: pointer;
}
img#uploadedimage {
width: 100%;
height: 100%;
position: relative;
z-index: 2;
}
.modal-body{
height: auto;
background: white;
}
textarea.myinput {
border: 2px solid darkgray;
height: 87px;
width: 100%;
}
.amit-container{
width: 100%;
}
.col-sm-2.category:hover {
background: #e2387e;
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9";
display: none;
}
button.menu-button {
background: #dc0f63;
float: right;
border: 0px;
margin-left: 3px;
}
.col-sm-1.n1-category.block-1,.block-7 {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
font-weight: 500;
padding-top: 6px;
border: none;
}
.container-fluid.upload-dialog-1 {
width: 400px;
margin: 30px auto;
}
.upload-content {
text-align: center;
position: relative;
background-color: #fff;
border: 1px solid #999;
box-shadow: 0 3px 9px rgba(0,0,0,.5);
outline: 0;
}
input.radio-btn {
margin-left: 29px;
}
.u-hider{
display: none;
}
.nu-hider{
display: block;
}
.inputfile + label {
padding: 10px 90px;
border: 1px solid darkgrey;
color: #656363;
width: 100%;
}
img#uploadedimage {
width: 100%;
height: 100%;
position: relative;
z-index: 2;
}
.preview-box {
width: 100%;
height: 100px;
text-align: center;
border: 1px solid darkgrey;
}
.p-text {
position: absolute;
margin-top: -60px;
padding-left: 108px;
}
input[type=file] {
display: block;
margin-top: -24px;
border: 1px solid darkgray;
}
input.myinput {
width: 100%;
}
.form-layout{
font-weight: 800;
color: #6d6c6c;
}
input[type=file] {
display: block;
visibility: hidden;
}
.newmodal-content{
font-weight: 800;
color: #6d6c6c;
}
.paragraph{
font-weight: 500;
}
@media screen and (max-width: 765px){
.block-2,.block-3,.block-4,.block-5,.block-6,.block-7{
display: none;
}
.u-hider {
padding: 6px;
font-size: 14px;
display: block;
cursor: pointer;
}
}
@media screen and (max-width: 240px){
.container-fluid.header-2 {
font-size: 16px;
}
button.header-button {
padding-right: 5px;
font-size: 10px;
}
.col-sm-7.outer-box {
width: 157%;
/* padding: 0px 0% 10% 0%; */
margin-left: 0px;
}
}
@media screen and (max-width: 480px){
button.header-button {
background: white;
padding-right: 11px;
}
.newmodal-dialog {
width: 100%;
}
.container-fluid.header-2
{
font-size: 30px;
}
.title-size {
font-weight: 700;
text-align: center;
color: darkslategrey;
font-size: 20px;
}
input[type=file] {
display: block;
margin-top: -24px;
border: 1px solid darkgray;
}
.inputfile + label {
padding: 10px 90px;
border: 1px solid darkgrey;
color: #656363;
width: 100%;
}
.p-text{
position: absolute;
margin-top: -60px;
padding-left: 108px;
}
.preview-box{
width: 100%;
height: 100px;
text-align: center;
border: 1px solid darkgrey;
}
.nu-hider{
display: none;
}
.u-hider{
padding: 6px;
font-size: 14px;
display: block;
cursor: pointer;
}
.newmodal-dialog-1 {
width: 100%;
}
.newmodal-content{
margin-top: 0px;
font-weight: 800;
color: #6d6c6c;
}
.block-2,.block-3,.block-4,.block-5,.block-6,.block-7{
display: none;
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9";
display: block;
}
.div-hider{
display: none;
}
}
/*Footer css*/
.container-fluid.footer {
background: #ffffff;
color: #dc0f63;;
font-size: 20px;
position: fixed;
height: 30px;
width: 100%;
padding: 0px 10px;
bottom: 0;
letter-spacing: 5px;
text-align: center;
box-shadow: 0px 0px 2px black;
z-index: 10;
}
/*Profile css*/
.acc_set {
margin-top: 15px;
}
.e_btn{
border: 0;
height: 28px;
background: #dc0f63;
color: white;
}
button.save-btn {
border: 0;
background: #dc0f63;
color: white;
height: 37px;
width: 116px;
} | public/css/style.css | .header-style{
border-bottom: 0.1px solid lightgray;
height: 40px;
padding: 7px;
width: 100%;
background: white;
z-index: 5;
font-weight: 600;
}
i.fa.fa-google-plus-square.google {
color: rgb(220, 15, 99);
margin-top: -8px;
}
.df{
}
a{
color: none;
}
button.header-button {
border: 0px;
outline: none;
background: white;
padding-right: 30px;
float: right;
}
.newmodal-dialog {
width: 400px;
margin: 30px auto;
}
.newmodal-dialog-1 {
width: 400px;
margin: 30px auto;
}
.log-btn{
outline: none;
margin-top: 1%;
width: 91px;
background: rgb(220, 15, 99);
border: 0px;
color: white;
font-weight: 900;
height: 36px;
}
.newmodal-content {
position: relative;
background-color: #fff;
/* border: 1px solid #999; */
border: 1px solid rgba(0,0,0,0.1);
margin-top: 36px;
margin-bottom: 30px;
box-shadow: 0 0px 1px rgba(0,0,0,.2);
outline: 0;
height: 450px;
}
button.google-button {
border: 0;
background: white;
color: #dc0f63;
position: absolute;
margin-top: -26px;
}
.spacer-5 {
margin-left: 5px;
}
.fa-cloud-upload:before {
margin-right: 6px;
content: "\f0ee";
}
.title-size{
font-weight: 900;
color: darkslategrey;
font-size: 25px;
}
textarea.myinput::placeholder {
color: darkgrey;
font-size: 16px;
font-weight: 500;
}
.container-fluid.header-2 {
padding: 12px;
text-align: center;
color: dimgray;
font-weight: 900;
font-size: 44px;
position: relative;
z-index: 10;
letter-spacing: 18px;
border-bottom: 0.1px solid lightgrey;
}
.header-3{
z-index: 10;
}
.col-sm-2.n-category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
text-align: center;
padding-top: 6px;
border: none;
cursor: pointer;
}
.col-sm-2.n1-category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
padding-top: 6px;
border: none;
}
.col-sm-2.category {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
font-weight: 500;
text-align: center;
padding-top: 6px;
border: none;
cursor: pointer;
}
img#uploadedimage {
width: 100%;
height: 100%;
position: relative;
z-index: 2;
}
.modal-body{
height: auto;
background: white;
}
textarea.myinput {
border: 2px solid darkgray;
height: 87px;
width: 100%;
}
.amit-container{
width: 100%;
}
.col-sm-2.category:hover {
background: #e2387e;
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9";
display: none;
}
button.menu-button {
background: #dc0f63;
float: right;
border: 0px;
margin-left: 3px;
}
.col-sm-1.n1-category.block-1,.block-7 {
background: #dc0f63;
height: 46px;
font-size: 20px;
color: white;
font-weight: 500;
padding-top: 6px;
border: none;
}
.container-fluid.upload-dialog-1 {
width: 400px;
margin: 30px auto;
}
.upload-content {
text-align: center;
position: relative;
background-color: #fff;
border: 1px solid #999;
box-shadow: 0 3px 9px rgba(0,0,0,.5);
outline: 0;
}
input.radio-btn {
margin-left: 29px;
}
.u-hider{
display: none;
}
.nu-hider{
display: block;
}
.inputfile + label {
padding: 10px 90px;
border: 1px solid darkgrey;
color: #656363;
width: 100%;
}
img#uploadedimage {
width: 100%;
height: 100%;
position: relative;
z-index: 2;
}
.preview-box {
width: 100%;
height: 100px;
text-align: center;
border: 1px solid darkgrey;
}
.p-text {
position: absolute;
margin-top: -60px;
padding-left: 108px;
}
input[type=file] {
display: block;
margin-top: -24px;
border: 1px solid darkgray;
}
input.myinput {
width: 100%;
}
.form-layout{
font-weight: 800;
color: #6d6c6c;
}
input[type=file] {
display: block;
visibility: hidden;
}
.newmodal-content{
font-weight: 800;
color: #6d6c6c;
}
.paragraph{
font-weight: 500;
}
@media screen and (max-width: 765px){
.block-2,.block-3,.block-4,.block-5,.block-6,.block-7{
display: none;
}
.u-hider {
padding: 6px;
font-size: 14px;
display: block;
cursor: pointer;
}
}
@media screen and (max-width: 240px){
.container-fluid.header-2 {
font-size: 16px;
}
button.header-button {
padding-right: 5px;
font-size: 10px;
}
.col-sm-7.outer-box {
width: 157%;
/* padding: 0px 0% 10% 0%; */
margin-left: 0px;
}
}
@media screen and (max-width: 480px){
button.header-button {
background: white;
padding-right: 11px;
}
.newmodal-dialog {
width: 100%;
}
.container-fluid.header-2
{
font-size: 30px;
}
.title-size {
font-weight: 700;
text-align: center;
color: darkslategrey;
font-size: 20px;
}
input[type=file] {
display: block;
margin-top: -24px;
border: 1px solid darkgray;
}
.inputfile + label {
padding: 10px 90px;
border: 1px solid darkgrey;
color: #656363;
width: 100%;
}
.p-text{
position: absolute;
margin-top: -60px;
padding-left: 108px;
}
.preview-box{
width: 100%;
height: 100px;
text-align: center;
border: 1px solid darkgrey;
}
.nu-hider{
display: none;
}
.u-hider{
padding: 6px;
font-size: 14px;
display: block;
cursor: pointer;
}
.newmodal-dialog-1 {
width: 100%;
}
.newmodal-content{
margin-top: 0px;
font-weight: 800;
color: #6d6c6c;
}
.block-2,.block-3,.block-4,.block-5,.block-6,.block-7{
display: none;
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9";
display: block;
}
.div-hider{
display: none;
}
}
/*Footer css*/
.container-fluid.footer {
background: #ffffff;
color: #dc0f63;;
font-size: 20px;
position: fixed;
height: 30px;
width: 100%;
padding: 0px 10px;
bottom: 0;
letter-spacing: 5px;
text-align: center;
box-shadow: 0px 0px 2px black;
z-index: 10;
}
/*Profile css*/
.acc_set {
margin-top: 15px;
}
.e_btn{
border: 0;
height: 28px;
background: #dc0f63;
color: white;
}
button.save-btn {
border: 0;
background: #dc0f63;
color: white;
height: 37px;
width: 116px;
} | 0.398641 | 0.087447 |
html, body {
overflow-x: hidden;
height: 100%;
}
body {
padding: 0;
margin: 0;
font-family: arial;
display: flex;
flex-flow: column;
min-height: 150vm;
max-height: 1500vm;
}
footer{
height:100px;
background: black;
color:white;
}
.container-fluid {
background: white;
height:100%;
width: 100%;
}
.comment {
height:100px;
width:100%;
box-sizing: border-box;
}
.center-title {
width: 100%;
height:30px;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.center-contents {
width: 100%;
height:500px;
}
.center-section {
height:80%;
width:95%;
margin: auto;
}
.left-title {
width: 100%;
height:10%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.left-contents{
float: left;
width: 100%;
padding: 10px;
background: white;
box-sizing: border-box;
}
.left-under {
margin-top: 20px;
width:100%;
overflow:auto;
font-size: 8px;
}
.right-title {
width:100%;
height:30px;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.code-class {
width:80%;
float: left;
font-size: 10px;
}
.advice-class {
width:20%;
float: left;
border-left :solid 5px #5989cf;
box-sizing: border-box;
font-size: 10px;
}
.cp_qa {
width:100%;
height:500px;
overflow-y: auto;
background: rgb(23, 24, 23);
padding: 10px;
box-sizing: border-box;
}
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
font-family: 'FontAwesome', sans-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.cp_qa dt,.cp_qa dd {
position: relative;
padding: 0.5em;
display: table;
box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
border-radius: 0.3em;
}
.cp_qa dt {
margin: 0 3em 1em 3em;
color: black;
background: #ffe0b2;
font-size: 10px;
}
.cp_qa dd {
margin: 0 3em 1em 3em;
color: black;
background: #b2ebf2;
font-size: 10px;
margin-left: auto;
}
/* 吹き出し▶︎ */
.cp_qa dt::before,.cp_qa dd::before{
position: absolute;
z-index: 99;
top: 0.5em;
display: inline-block;
width: 0;
height: 0;
content: '';
border-style: solid;
}
/* 質問吹き出し▶︎ */
.cp_qa dt::before {
left: -0.5em;
border-width: 5px 8.7px 5px 0;
border-color: transparent #ffe0b2 transparent transparent;
}
/* 答え吹き出し▶︎ */
.cp_qa dd::before {
right: -0.5em;
border-width: 5px 0 5px 8.7px;
border-color: transparent transparent transparent #b2ebf2;
}
/* ?!アイコン */
.cp_qa dt::after,.cp_qa dd::after {
font-size: 1.2em;
position: absolute;
top: 0;
color: #ffffff;
border-radius: 50%;
display: inline-block;
width: 1.5em;
height: 1.5em;
line-height: 1.2em;
}
/* ?アイコン */
.cp_qa dt::after {
left: -2.5em;
margin: 0 0.5em 0 0;
padding: 0.2em 0.4em;
content: '? ';
background: #f57c00;
}
/* !アイコン */
.cp_qa dd::after {
right: -2.5em;
margin: 0 0 0 0.5em;
padding: 0.2em 0.55em;
content: '! ';
background: #0097a7;
}
.top-title{
height: 15%;
width: 100%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.under-title{
height: 30px;
width: 100%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.gragh {
width: 100%;
height:200px;
background: white;
padding: 10px;
}
.answer_class{
width: 99%;
height:80px;
}
.cp_actab {
float: right;
position: relative;
overflow: hidden;
width: 90%;
margin: 0 auto;
color: white;
}
.cp_actab input {
position: absolute;
z-index: -1;
opacity: 0;
}
.cp_actab label {
font-weight: bold;
line-height: 3;
position: relative;
display: block;
padding: 0 0 0 1em;
cursor: pointer;
margin: 0 0 1px 0;
background: #202C33;
}
.cp_actab .cp_actab-content {
overflow: hidden;
max-height: 0;
-webkit-transition: max-height 0.35s;
transition: max-height 0.35s;
color: #333333;
background: #e9e9e9;
}
.cp_actab .cp_actab-content p {
margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
max-height: 20em;
}
/* Icon */
.cp_actab label::after {
line-height: 3;
position: absolute;
top: 0;
right: 0;
display: block;
width: 3em;
height: 3em;
-webkit-transition: all 0.35s;
transition: all 0.35s;
text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}
#nav {
list-style: none;
overflow: hidden;
}
#nav li {
width: 120px;
text-align: center;
background-color: #202C33;
float: left;
height: 90%;
line-height: 30px;
margin-right: 2px;
color: yellow;
}
#nav li a {
text-decoration: none;
color: #fff;
padding: 20px;
}
.compile_button {
background-color: #202C33;
border: 2px solid #202C33;
color: #fff;
width: 100px;
height: 30px;
font-size: 15px;
float: left;
}
.compile_button:hover {
background-color: #fff;
border-color: blue;
color: blue;
}
.table-section {
font-size: 12px;
}
.table-section table {
color:white;
}
.under {
background: #2F5E7A;
padding: 20px;
height :200px;
} | css/admin.css | html, body {
overflow-x: hidden;
height: 100%;
}
body {
padding: 0;
margin: 0;
font-family: arial;
display: flex;
flex-flow: column;
min-height: 150vm;
max-height: 1500vm;
}
footer{
height:100px;
background: black;
color:white;
}
.container-fluid {
background: white;
height:100%;
width: 100%;
}
.comment {
height:100px;
width:100%;
box-sizing: border-box;
}
.center-title {
width: 100%;
height:30px;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.center-contents {
width: 100%;
height:500px;
}
.center-section {
height:80%;
width:95%;
margin: auto;
}
.left-title {
width: 100%;
height:10%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.left-contents{
float: left;
width: 100%;
padding: 10px;
background: white;
box-sizing: border-box;
}
.left-under {
margin-top: 20px;
width:100%;
overflow:auto;
font-size: 8px;
}
.right-title {
width:100%;
height:30px;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.code-class {
width:80%;
float: left;
font-size: 10px;
}
.advice-class {
width:20%;
float: left;
border-left :solid 5px #5989cf;
box-sizing: border-box;
font-size: 10px;
}
.cp_qa {
width:100%;
height:500px;
overflow-y: auto;
background: rgb(23, 24, 23);
padding: 10px;
box-sizing: border-box;
}
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
font-family: 'FontAwesome', sans-serif;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.cp_qa dt,.cp_qa dd {
position: relative;
padding: 0.5em;
display: table;
box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
border-radius: 0.3em;
}
.cp_qa dt {
margin: 0 3em 1em 3em;
color: black;
background: #ffe0b2;
font-size: 10px;
}
.cp_qa dd {
margin: 0 3em 1em 3em;
color: black;
background: #b2ebf2;
font-size: 10px;
margin-left: auto;
}
/* 吹き出し▶︎ */
.cp_qa dt::before,.cp_qa dd::before{
position: absolute;
z-index: 99;
top: 0.5em;
display: inline-block;
width: 0;
height: 0;
content: '';
border-style: solid;
}
/* 質問吹き出し▶︎ */
.cp_qa dt::before {
left: -0.5em;
border-width: 5px 8.7px 5px 0;
border-color: transparent #ffe0b2 transparent transparent;
}
/* 答え吹き出し▶︎ */
.cp_qa dd::before {
right: -0.5em;
border-width: 5px 0 5px 8.7px;
border-color: transparent transparent transparent #b2ebf2;
}
/* ?!アイコン */
.cp_qa dt::after,.cp_qa dd::after {
font-size: 1.2em;
position: absolute;
top: 0;
color: #ffffff;
border-radius: 50%;
display: inline-block;
width: 1.5em;
height: 1.5em;
line-height: 1.2em;
}
/* ?アイコン */
.cp_qa dt::after {
left: -2.5em;
margin: 0 0.5em 0 0;
padding: 0.2em 0.4em;
content: '? ';
background: #f57c00;
}
/* !アイコン */
.cp_qa dd::after {
right: -2.5em;
margin: 0 0 0 0.5em;
padding: 0.2em 0.55em;
content: '! ';
background: #0097a7;
}
.top-title{
height: 15%;
width: 100%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.under-title{
height: 30px;
width: 100%;
font-size: 15px;
background: #D1DEE4;
padding: 2px 0 2px 15px;
border-radius: 10px 10px 0 0;
box-sizing: border-box;
color: #214561;
}
.gragh {
width: 100%;
height:200px;
background: white;
padding: 10px;
}
.answer_class{
width: 99%;
height:80px;
}
.cp_actab {
float: right;
position: relative;
overflow: hidden;
width: 90%;
margin: 0 auto;
color: white;
}
.cp_actab input {
position: absolute;
z-index: -1;
opacity: 0;
}
.cp_actab label {
font-weight: bold;
line-height: 3;
position: relative;
display: block;
padding: 0 0 0 1em;
cursor: pointer;
margin: 0 0 1px 0;
background: #202C33;
}
.cp_actab .cp_actab-content {
overflow: hidden;
max-height: 0;
-webkit-transition: max-height 0.35s;
transition: max-height 0.35s;
color: #333333;
background: #e9e9e9;
}
.cp_actab .cp_actab-content p {
margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
max-height: 20em;
}
/* Icon */
.cp_actab label::after {
line-height: 3;
position: absolute;
top: 0;
right: 0;
display: block;
width: 3em;
height: 3em;
-webkit-transition: all 0.35s;
transition: all 0.35s;
text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}
#nav {
list-style: none;
overflow: hidden;
}
#nav li {
width: 120px;
text-align: center;
background-color: #202C33;
float: left;
height: 90%;
line-height: 30px;
margin-right: 2px;
color: yellow;
}
#nav li a {
text-decoration: none;
color: #fff;
padding: 20px;
}
.compile_button {
background-color: #202C33;
border: 2px solid #202C33;
color: #fff;
width: 100px;
height: 30px;
font-size: 15px;
float: left;
}
.compile_button:hover {
background-color: #fff;
border-color: blue;
color: blue;
}
.table-section {
font-size: 12px;
}
.table-section table {
color:white;
}
.under {
background: #2F5E7A;
padding: 20px;
height :200px;
} | 0.362405 | 0.096748 |
:root {
--background-color: #f5edf0;
--background-image: url("../static/img/rough-cloth-light.png");
--blue-primary: #001640;
--blue-accent: #66c3ff;
--grey-accent: rgba(200, 197, 183, 0.201);
--base: "Open Sans", sans-serif;
--header: "Playfair Display", serif;
}
html,
body {
font-family: var(--base);
color: var(--blue-primary);
margin: 0;
width: 100%;
scroll-behavior: smooth;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1,
h2,
h3,
h4 {
font-family: var(--header);
}
h1 {
font-size: 64px;
}
h2 {
font-size: 42px;
text-align: center;
}
h5 {
font-size: 32px;
font-weight: 600;
font-family: var(--base);
letter-spacing: -1.5px;
}
h6 {
font-family: var(--base);
color: var(--blue-accent);
font-size: 18px;
padding-bottom: 16px;
}
a {
color: var(--blue-primary);
}
a:hover {
color: var(--blue-primary);
}
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #cad2d7;
padding: 0;
margin: 3em 0;
}
#face {
justify-content: center;
}
#avatar {
position: relative;
}
.text-popover {
position: absolute;
left: 0;
bottom: 20px;
height: 50%;
width: 50%;
margin-left: 40px;
}
.popover {
border-color: var(--blue-accent);
font-family: var(--header);
}
.popover .arrow::before {
border-right-color: var(--blue-accent);
}
.main-wrapper {
max-width: 1200px;
min-height: 100vh;
position: relative;
}
.image-container {
background-color: var(--background-color);
background-image: var(--background-image);
position: fixed;
height: 100vh;
top: 0;
padding-bottom: 100px;
left: 0px;
width: 100%;
z-index: -1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.p-bold-text {
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 2px;
}
.line-separator {
color: var(--blue-accent);
}
.hero-image {
width: 1000px;
margin-bottom: -200px;
}
.hero-image svg {
max-width: 100%;
height: auto;
overflow: visible;
}
path.steam-animation {
animation: bounce 1s infinite alternate;
}
path.arrow-down {
animation: mover 1s infinite alternate;
}
@keyframes bounce {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-10px);
}
}
@keyframes mover {
20%,
100% {
transform: translateY(-10px);
}
}
.text-header-container {
text-align: center;
}
.arrow-container {
background-color: #dce1e9;
width: 120px;
height: 120px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-top: -60px;
margin-bottom: 2.5rem;
}
.arrow-container svg {
overflow: visible;
}
/*start of content */
.content-container {
margin-top: 90vh;
padding: 0em 2.5em 8em 2.5em;
padding-bottom: 2.5rem;
background-color: #dce1e9;
border-radius: 40px;
box-shadow: 0px 4px 108px rgba(253, 150, 160, 0.15);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#avatar {
text-align: center;
}
.profile-img {
width: 300px;
border-radius: 50%;
}
.body-container {
padding-bottom: 2.5rem;
}
.text-6 {
color: var(--blue-accent);
font-weight: bold;
font-size: 24px;
margin: 0;
}
.about-me-container {
display: grid;
grid-template-columns: repeat(5, 1fr [col-start]);
grid-column-gap: 1rem;
padding-top: 20px;
}
.about-me {
grid-column-start: span 3;
align-items: center;
align-self: center;
}
#avatar {
grid-column-start: span 2;
align-items: center;
align-self: start;
}
.recommender-img {
grid-area: recommenderImgs;
}
.recommender-info {
grid-area: recommenderInfo;
}
.competition-img {
grid-area: competitionImgs;
}
.competition-info {
grid-area: competitionInfo;
}
.visualizations-img {
grid-area: visualizationsImgs;
}
.visualizations-info {
grid-area: visualizationsInfo;
}
.speech-img {
grid-area: speechImgs;
}
.speech-info {
grid-area: speechInfo;
}
.nlp-img {
grid-area: nlpImgs;
}
.nlp-info {
grid-area: nlpInfo;
}
.divider {
height: 2px;
border-radius: 1px;
background-color: var(--grey-accent);
}
.d0 {
grid-area: d0;
}
.d1 {
grid-area: d1;
}
.d2 {
grid-area: d2;
}
.d3 {
grid-area: d3;
}
.d4 {
grid-area: d4;
}
.project-container {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-column-gap: 3rem;
grid-row-gap: 5rem;
padding-top: 3rem;
padding-bottom: 3rem;
grid-template-areas:
"recommenderImgs recommenderImgs recommenderImgs recommenderInfo recommenderInfo "
"d0 d0 d0 d0 d0"
"competitionImgs competitionImgs competitionImgs competitionInfo competitionInfo "
"d1 d1 d1 d1 d1"
"visualizationsImgs visualizationsImgs visualizationsImgs visualizationsInfo visualizationsInfo"
"d2 d2 d2 d2 d2"
"speechImgs speechImgs speechImgs speechInfo speechInfo "
"d3 d3 d3 d3 d3"
"nlpImgs nlpImgs nlpImgs nlpInfo nlpInfo"
"d4 d4 d4 d4 d4"
"jcImgs jcImgs jcImgs jcInfo jcInfo";
}
.project-information {
width: 100%;
align-items: center;
align-self: center;
padding: 0 0 0 0;
}
.project-image {
width: 100%;
}
.arrow-next {
margin-right: -100px;
}
.arrow-prev {
margin-left: -100px;
}
.project-details {
font-weight: 700;
letter-spacing: -0.5px;
}
.project-details-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr auto;
grid-column-gap: 20px;
grid-row-gap: 0px;
padding-bottom: 40px;
justify-items: center;
}
.skills {
font-weight: bold;
color: var(--blue-accent);
}
.technology-icons {
width: 40px;
height: 40px;
}
.project-btns {
display: inline;
}
.view-live-btn {
text-decoration: none;
font-weight: 700;
margin-top: 25px;
margin-left: 20px;
padding: 4px 10px;
border: 2px solid var(--blue-primary);
border-radius: 40px;
display: inline-block;
transition: all 0.4s ease 0s;
-webkit-transition-duration: 0.2s; /* Safari */
transition-duration: 0.2s;
}
.view-live-btn:hover {
transition: all 0.2s ease 0s;
text-decoration: none;
background-color: var(--blue-accent);
}
.view-code-btn {
text-decoration: underline;
margin-left: 12px;
font-weight: 700;
}
.view-arrow {
position: relative;
top: 0;
margin: 0 0 4px 10px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: var(--blue-primary);
stroke-width: 2;
transform: translateX(-5px);
transition: all 0.3s ease;
}
.teacher-life-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 1rem;
grid-template-rows: 1fr 1fr auto;
grid-row-gap: 1rem;
justify-items: center;
}
.teaching-bio {
grid-column-start: span 2;
grid-row-start: span 2;
align-items: center;
align-self: center;
}
#p-container {
padding-top: 20px;
text-align: center;
}
#contact-me-header {
padding-bottom: 20px;
}
footer {
background-color: #dce1e9;
padding: 40px 0 100px;
text-align: center;
align-items: center;
width: 100%;
}
/*Tablet styles*/
@media (max-width: 850px) {
.hero-image {
width: 700px;
margin-bottom: -140px;
}
.about-me-container {
grid-template-columns: 1fr;
padding-top: 20px;
}
.about-me {
padding-top: 1rem;
}
.project-container {
grid-template-columns: 1fr;
justify-items: center;
}
.project-container {
display: grid;
grid-template-columns: 1fr;
/*grid-row-gap: 1rem;*/
padding-top: 3rem;
padding-bottom: 0rem;
grid-column-gap: 0rem;
grid-template-areas:
"recommenderImgs"
"recommenderInfo"
"d0"
"competitionImgs"
"competitionInfo"
"d1"
"visualizationsImgs"
"visualizationsInfo"
"d2"
"speechImgs"
"speechInfo"
"d3"
"nlpImgs"
"nlpInfo"
"d4"
"jcImgs"
"jcInfo";
}
.project-information {
padding-bottom: 6rem;
}
.content-container {
border-radius: 0px;
}
}
/*Phone styles*/
@media (max-width: 450px) {
.hero-image {
width: 500px;
margin-bottom: -80px;
}
.project-card {
width: 80%;
}
.footer-icon-link {
display: inline-flex;
margin-top: 12px;
}
.line-footer {
display: none;
}
} | static/main.css | :root {
--background-color: #f5edf0;
--background-image: url("../static/img/rough-cloth-light.png");
--blue-primary: #001640;
--blue-accent: #66c3ff;
--grey-accent: rgba(200, 197, 183, 0.201);
--base: "Open Sans", sans-serif;
--header: "Playfair Display", serif;
}
html,
body {
font-family: var(--base);
color: var(--blue-primary);
margin: 0;
width: 100%;
scroll-behavior: smooth;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1,
h2,
h3,
h4 {
font-family: var(--header);
}
h1 {
font-size: 64px;
}
h2 {
font-size: 42px;
text-align: center;
}
h5 {
font-size: 32px;
font-weight: 600;
font-family: var(--base);
letter-spacing: -1.5px;
}
h6 {
font-family: var(--base);
color: var(--blue-accent);
font-size: 18px;
padding-bottom: 16px;
}
a {
color: var(--blue-primary);
}
a:hover {
color: var(--blue-primary);
}
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #cad2d7;
padding: 0;
margin: 3em 0;
}
#face {
justify-content: center;
}
#avatar {
position: relative;
}
.text-popover {
position: absolute;
left: 0;
bottom: 20px;
height: 50%;
width: 50%;
margin-left: 40px;
}
.popover {
border-color: var(--blue-accent);
font-family: var(--header);
}
.popover .arrow::before {
border-right-color: var(--blue-accent);
}
.main-wrapper {
max-width: 1200px;
min-height: 100vh;
position: relative;
}
.image-container {
background-color: var(--background-color);
background-image: var(--background-image);
position: fixed;
height: 100vh;
top: 0;
padding-bottom: 100px;
left: 0px;
width: 100%;
z-index: -1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.p-bold-text {
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 2px;
}
.line-separator {
color: var(--blue-accent);
}
.hero-image {
width: 1000px;
margin-bottom: -200px;
}
.hero-image svg {
max-width: 100%;
height: auto;
overflow: visible;
}
path.steam-animation {
animation: bounce 1s infinite alternate;
}
path.arrow-down {
animation: mover 1s infinite alternate;
}
@keyframes bounce {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-10px);
}
}
@keyframes mover {
20%,
100% {
transform: translateY(-10px);
}
}
.text-header-container {
text-align: center;
}
.arrow-container {
background-color: #dce1e9;
width: 120px;
height: 120px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-top: -60px;
margin-bottom: 2.5rem;
}
.arrow-container svg {
overflow: visible;
}
/*start of content */
.content-container {
margin-top: 90vh;
padding: 0em 2.5em 8em 2.5em;
padding-bottom: 2.5rem;
background-color: #dce1e9;
border-radius: 40px;
box-shadow: 0px 4px 108px rgba(253, 150, 160, 0.15);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#avatar {
text-align: center;
}
.profile-img {
width: 300px;
border-radius: 50%;
}
.body-container {
padding-bottom: 2.5rem;
}
.text-6 {
color: var(--blue-accent);
font-weight: bold;
font-size: 24px;
margin: 0;
}
.about-me-container {
display: grid;
grid-template-columns: repeat(5, 1fr [col-start]);
grid-column-gap: 1rem;
padding-top: 20px;
}
.about-me {
grid-column-start: span 3;
align-items: center;
align-self: center;
}
#avatar {
grid-column-start: span 2;
align-items: center;
align-self: start;
}
.recommender-img {
grid-area: recommenderImgs;
}
.recommender-info {
grid-area: recommenderInfo;
}
.competition-img {
grid-area: competitionImgs;
}
.competition-info {
grid-area: competitionInfo;
}
.visualizations-img {
grid-area: visualizationsImgs;
}
.visualizations-info {
grid-area: visualizationsInfo;
}
.speech-img {
grid-area: speechImgs;
}
.speech-info {
grid-area: speechInfo;
}
.nlp-img {
grid-area: nlpImgs;
}
.nlp-info {
grid-area: nlpInfo;
}
.divider {
height: 2px;
border-radius: 1px;
background-color: var(--grey-accent);
}
.d0 {
grid-area: d0;
}
.d1 {
grid-area: d1;
}
.d2 {
grid-area: d2;
}
.d3 {
grid-area: d3;
}
.d4 {
grid-area: d4;
}
.project-container {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-column-gap: 3rem;
grid-row-gap: 5rem;
padding-top: 3rem;
padding-bottom: 3rem;
grid-template-areas:
"recommenderImgs recommenderImgs recommenderImgs recommenderInfo recommenderInfo "
"d0 d0 d0 d0 d0"
"competitionImgs competitionImgs competitionImgs competitionInfo competitionInfo "
"d1 d1 d1 d1 d1"
"visualizationsImgs visualizationsImgs visualizationsImgs visualizationsInfo visualizationsInfo"
"d2 d2 d2 d2 d2"
"speechImgs speechImgs speechImgs speechInfo speechInfo "
"d3 d3 d3 d3 d3"
"nlpImgs nlpImgs nlpImgs nlpInfo nlpInfo"
"d4 d4 d4 d4 d4"
"jcImgs jcImgs jcImgs jcInfo jcInfo";
}
.project-information {
width: 100%;
align-items: center;
align-self: center;
padding: 0 0 0 0;
}
.project-image {
width: 100%;
}
.arrow-next {
margin-right: -100px;
}
.arrow-prev {
margin-left: -100px;
}
.project-details {
font-weight: 700;
letter-spacing: -0.5px;
}
.project-details-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr auto;
grid-column-gap: 20px;
grid-row-gap: 0px;
padding-bottom: 40px;
justify-items: center;
}
.skills {
font-weight: bold;
color: var(--blue-accent);
}
.technology-icons {
width: 40px;
height: 40px;
}
.project-btns {
display: inline;
}
.view-live-btn {
text-decoration: none;
font-weight: 700;
margin-top: 25px;
margin-left: 20px;
padding: 4px 10px;
border: 2px solid var(--blue-primary);
border-radius: 40px;
display: inline-block;
transition: all 0.4s ease 0s;
-webkit-transition-duration: 0.2s; /* Safari */
transition-duration: 0.2s;
}
.view-live-btn:hover {
transition: all 0.2s ease 0s;
text-decoration: none;
background-color: var(--blue-accent);
}
.view-code-btn {
text-decoration: underline;
margin-left: 12px;
font-weight: 700;
}
.view-arrow {
position: relative;
top: 0;
margin: 0 0 4px 10px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: var(--blue-primary);
stroke-width: 2;
transform: translateX(-5px);
transition: all 0.3s ease;
}
.teacher-life-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 1rem;
grid-template-rows: 1fr 1fr auto;
grid-row-gap: 1rem;
justify-items: center;
}
.teaching-bio {
grid-column-start: span 2;
grid-row-start: span 2;
align-items: center;
align-self: center;
}
#p-container {
padding-top: 20px;
text-align: center;
}
#contact-me-header {
padding-bottom: 20px;
}
footer {
background-color: #dce1e9;
padding: 40px 0 100px;
text-align: center;
align-items: center;
width: 100%;
}
/*Tablet styles*/
@media (max-width: 850px) {
.hero-image {
width: 700px;
margin-bottom: -140px;
}
.about-me-container {
grid-template-columns: 1fr;
padding-top: 20px;
}
.about-me {
padding-top: 1rem;
}
.project-container {
grid-template-columns: 1fr;
justify-items: center;
}
.project-container {
display: grid;
grid-template-columns: 1fr;
/*grid-row-gap: 1rem;*/
padding-top: 3rem;
padding-bottom: 0rem;
grid-column-gap: 0rem;
grid-template-areas:
"recommenderImgs"
"recommenderInfo"
"d0"
"competitionImgs"
"competitionInfo"
"d1"
"visualizationsImgs"
"visualizationsInfo"
"d2"
"speechImgs"
"speechInfo"
"d3"
"nlpImgs"
"nlpInfo"
"d4"
"jcImgs"
"jcInfo";
}
.project-information {
padding-bottom: 6rem;
}
.content-container {
border-radius: 0px;
}
}
/*Phone styles*/
@media (max-width: 450px) {
.hero-image {
width: 500px;
margin-bottom: -80px;
}
.project-card {
width: 80%;
}
.footer-icon-link {
display: inline-flex;
margin-top: 12px;
}
.line-footer {
display: none;
}
} | 0.564339 | 0.15034 |
{
border-width: 1px;
border-style: solid;
border-color: #4C4C4C;
background-color: #FF6600;
position: relative;
}
#menuu1094
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
position: relative;
}
#u2340
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
position: relative;
}
#u2340:hover
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u2340:active
{
-pie-box-shadow: 2px 5px 8px #6D6D6D;
-moz-box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
-webkit-box-shadow: 2px 5px 8px -1px rgba(0, 0, 0, 0.57);
box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
}
#u2342
{
vertical-align: top;
background: url("../../images/u2342.png") no-repeat 0px 0px;
position: relative;
}
#u2340:hover #u2342
{
background: url("../../images/u2342-r.png") no-repeat 0px 0px;
}
#u2340.MuseMenuActive #u2342
{
background: url("../../images/u2342-a.png") no-repeat 0px 0px;
}
#u1126
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
position: relative;
}
#u2340.MuseMenuActive,#u1126:hover
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u1126:active
{
-pie-box-shadow: 2px 5px 8px #6D6D6D;
-moz-box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
-webkit-box-shadow: 2px 5px 8px -1px rgba(0, 0, 0, 0.57);
box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
}
#u1126.MuseMenuActive
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u1128
{
vertical-align: top;
background: url("../../images/u1128.png") no-repeat 0px 0px;
position: relative;
}
#u1126:hover #u1128
{
background: url("../../images/u1128-r.png") no-repeat 0px 0px;
}
#u1126.MuseMenuActive #u1128
{
background: url("../../images/u1128-a.png") no-repeat 0px 0px;
}
.MenuItem /* unifiedNavBar */
{
cursor: pointer;
}
#u2241
{
background-color: transparent;
position: relative;
}
#u2241_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2243
{
background-color: transparent;
position: relative;
}
#u2243_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2247
{
background-color: transparent;
position: relative;
}
#u2247_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2245
{
background-color: transparent;
position: relative;
}
#u2245_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2339,#u1123,#u1789-3,#u2253
{
position: relative;
}
#u1145
{
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
border-radius: 8px;
opacity: 0.65;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
filter: alpha(opacity=65);
-pie-box-shadow: none;
-moz-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
-webkit-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
position: relative;
}
._u1145.f3s_top
{
background-image: url("../../images/u2787-full.png");
background-position: left top;
}
#u1806
{
background-color: transparent;
position: relative;
}
#u1806_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2161
{
background-color: transparent;
position: relative;
}
#u2161_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2176
{
background-color: transparent;
position: relative;
}
#u2176_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2171
{
background-color: transparent;
position: relative;
}
#u2241:hover,#u2243:hover,#u2247:hover,#u2245:hover,#u1806:hover,#u2161:hover,#u2176:hover,#u2171:hover
{
background-color: transparent;
}
#u2171_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2241_img:hover,#u2243_img:hover,#u2247_img:hover,#u2245_img:hover,#u1806_img:hover,#u2161_img:hover,#u2176_img:hover,#u2171_img:hover
{
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
}
#u1345
{
border-width: 1px;
border-style: solid;
border-color: #000000;
background-color: #4C4C4C;
position: relative;
} | tablet/css/master_a-master.css | {
border-width: 1px;
border-style: solid;
border-color: #4C4C4C;
background-color: #FF6600;
position: relative;
}
#menuu1094
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
position: relative;
}
#u2340
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
position: relative;
}
#u2340:hover
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u2340:active
{
-pie-box-shadow: 2px 5px 8px #6D6D6D;
-moz-box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
-webkit-box-shadow: 2px 5px 8px -1px rgba(0, 0, 0, 0.57);
box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
}
#u2342
{
vertical-align: top;
background: url("../../images/u2342.png") no-repeat 0px 0px;
position: relative;
}
#u2340:hover #u2342
{
background: url("../../images/u2342-r.png") no-repeat 0px 0px;
}
#u2340.MuseMenuActive #u2342
{
background: url("../../images/u2342-a.png") no-repeat 0px 0px;
}
#u1126
{
border-style: none;
border-color: transparent;
background-color: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
position: relative;
}
#u2340.MuseMenuActive,#u1126:hover
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u1126:active
{
-pie-box-shadow: 2px 5px 8px #6D6D6D;
-moz-box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
-webkit-box-shadow: 2px 5px 8px -1px rgba(0, 0, 0, 0.57);
box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.57);
}
#u1126.MuseMenuActive
{
-pie-box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
#u1128
{
vertical-align: top;
background: url("../../images/u1128.png") no-repeat 0px 0px;
position: relative;
}
#u1126:hover #u1128
{
background: url("../../images/u1128-r.png") no-repeat 0px 0px;
}
#u1126.MuseMenuActive #u1128
{
background: url("../../images/u1128-a.png") no-repeat 0px 0px;
}
.MenuItem /* unifiedNavBar */
{
cursor: pointer;
}
#u2241
{
background-color: transparent;
position: relative;
}
#u2241_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2243
{
background-color: transparent;
position: relative;
}
#u2243_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2247
{
background-color: transparent;
position: relative;
}
#u2247_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2245
{
background-color: transparent;
position: relative;
}
#u2245_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2339,#u1123,#u1789-3,#u2253
{
position: relative;
}
#u1145
{
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
border-radius: 8px;
opacity: 0.65;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
filter: alpha(opacity=65);
-pie-box-shadow: none;
-moz-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
-webkit-box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.5);
position: relative;
}
._u1145.f3s_top
{
background-image: url("../../images/u2787-full.png");
background-position: left top;
}
#u1806
{
background-color: transparent;
position: relative;
}
#u1806_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2161
{
background-color: transparent;
position: relative;
}
#u2161_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2176
{
background-color: transparent;
position: relative;
}
#u2176_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2171
{
background-color: transparent;
position: relative;
}
#u2241:hover,#u2243:hover,#u2247:hover,#u2245:hover,#u1806:hover,#u2161:hover,#u2176:hover,#u2171:hover
{
background-color: transparent;
}
#u2171_img
{
opacity: 0.7;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
filter: alpha(opacity=70);
}
#u2241_img:hover,#u2243_img:hover,#u2247_img:hover,#u2245_img:hover,#u1806_img:hover,#u2161_img:hover,#u2176_img:hover,#u2171_img:hover
{
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
}
#u1345
{
border-width: 1px;
border-style: solid;
border-color: #000000;
background-color: #4C4C4C;
position: relative;
} | 0.231267 | 0.064447 |
* Global
**********/
.ghh {
max-width: 320px;
min-width: 160px;
font-style: normal;
line-height: 2;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.ghh.extended {
max-width: 640px;
}
.ghh p {
margin: 0 0 4px;
vertical-align: middle;
line-height: 1.2;
clear: both;
}
.ghh a {
color: #b4d6fe;
}
.ghh small {
opacity: 0.8;
}
.ghh [title] {
cursor: help;
}
.ghh .octicon {
fill: currentColor;
}
.windows .ghh ::-webkit-scrollbar {
width: 20px;
height: 20px;
padding: 3px;
background-color: transparent;
}
.windows .ghh ::-webkit-scrollbar-button {
display: none;
}
.windows .ghh ::-webkit-scrollbar-thumb {
background-color: rgba(255,255,255,0.15);
border: 6px solid transparent;
background-clip: padding-box;
border-radius: 12px;
}
.windows .ghh ::-webkit-scrollbar-corner {
background-color: transparent;
}
/**********
* Mixins
**********/
/**********
* Placeholders
**********/
.ghh-person,
.ghh-repo {
position: relative;
margin-top: 2px;
margin-bottom: 12px;
padding-left: 24px;
}
.ghh-person .octicon,
.ghh-repo .octicon {
position: absolute;
top: 0;
left: 0;
line-height: 1;
}
.ghh-readme > :first-child,
.ghh-issue-body > :first-child {
margin-top: 0;
}
.ghh-readme > :last-child,
.ghh-issue-body > :last-child {
margin-bottom: 0;
}
.ghh-readme,
.ghh-issue-body {
clear: left;
overflow: auto;
max-height: 280px;
margin: 8px 0 3px;
padding: 8px 10px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
font-size: 12px;
line-height: 1.6;
word-wrap: break-word;
/* some special vendor optimizations */
}
.ghh-readme h1,
.ghh-issue-body h1,
.ghh-readme h2,
.ghh-issue-body h2,
.ghh-readme h3,
.ghh-issue-body h3,
.ghh-readme h4,
.ghh-issue-body h4,
.ghh-readme h5,
.ghh-issue-body h5,
.ghh-readme h6,
.ghh-issue-body h6 {
margin-top: 1em;
margin-bottom: 12px;
font-weight: 600;
line-height: 1.4;
}
.ghh-readme h1 tt,
.ghh-issue-body h1 tt,
.ghh-readme h2 tt,
.ghh-issue-body h2 tt,
.ghh-readme h3 tt,
.ghh-issue-body h3 tt,
.ghh-readme h4 tt,
.ghh-issue-body h4 tt,
.ghh-readme h5 tt,
.ghh-issue-body h5 tt,
.ghh-readme h6 tt,
.ghh-issue-body h6 tt,
.ghh-readme h1 code,
.ghh-issue-body h1 code,
.ghh-readme h2 code,
.ghh-issue-body h2 code,
.ghh-readme h3 code,
.ghh-issue-body h3 code,
.ghh-readme h4 code,
.ghh-issue-body h4 code,
.ghh-readme h5 code,
.ghh-issue-body h5 code,
.ghh-readme h6 code,
.ghh-issue-body h6 code {
font-size: inherit;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.ghh-readme h1,
.ghh-issue-body h1 {
font-size: 1.25em;
}
.ghh-readme h2,
.ghh-issue-body h2 {
font-size: 1.2em;
}
.ghh-readme h3,
.ghh-issue-body h3 {
font-size: 1.15em;
}
.ghh-readme h4,
.ghh-issue-body h4 {
font-size: 1.1em;
}
.ghh-readme h5,
.ghh-issue-body h5 {
font-size: 1.05em;
}
.ghh-readme h6,
.ghh-issue-body h6 {
font-size: 1em;
}
.ghh-readme p,
.ghh-issue-body p,
.ghh-readme blockquote,
.ghh-issue-body blockquote,
.ghh-readme ul,
.ghh-issue-body ul,
.ghh-readme ol,
.ghh-issue-body ol,
.ghh-readme dl,
.ghh-issue-body dl,
.ghh-readme table,
.ghh-issue-body table,
.ghh-readme pre,
.ghh-issue-body pre {
margin-top: 0;
margin-bottom: 1em;
}
.ghh-readme hr,
.ghh-issue-body hr {
height: 0;
padding: 0;
margin: 16px 0;
border-bottom: 2px dotted rgba(255,255,255,0.2);
}
.ghh-readme a:not([href]),
.ghh-issue-body a:not([href]) {
color: inherit;
}
.ghh-readme p,
.ghh-issue-body p {
overflow: visible;
white-space: normal;
line-height: 1.6;
}
.ghh-readme ul,
.ghh-issue-body ul,
.ghh-readme ol,
.ghh-issue-body ol {
padding-left: 2em;
}
.ghh-readme ul ol,
.ghh-issue-body ul ol,
.ghh-readme ol ol,
.ghh-issue-body ol ol,
.ghh-readme ul ul,
.ghh-issue-body ul ul,
.ghh-readme ol ul,
.ghh-issue-body ol ul {
margin-top: 0;
margin-bottom: 0;
}
.ghh-readme dl,
.ghh-issue-body dl {
padding: 0;
}
.ghh-readme dt,
.ghh-issue-body dt {
padding: 0;
margin-top: 1em;
font-size: 1em;
font-style: italic;
font-weight: 600;
}
.ghh-readme dd,
.ghh-issue-body dd {
padding: 0 1em;
margin-bottom: 1em;
}
.ghh-readme blockquote,
.ghh-issue-body blockquote {
padding: 0 1em;
border-left: 3px solid #ccc;
}
.ghh-readme table,
.ghh-issue-body table {
width: 100%;
overflow: auto;
word-break: normal;
word-break: keep-all;
}
.ghh-readme th,
.ghh-issue-body th {
font-weight: 600;
}
.ghh-readme th,
.ghh-issue-body th,
.ghh-readme tr:nth-child(even) td,
.ghh-issue-body tr:nth-child(even) td {
background-color: rgba(108,108,108,0.5);
}
.ghh-readme th,
.ghh-issue-body th,
.ghh-readme td,
.ghh-issue-body td {
border: 1px solid #777;
padding: 0.5em 1em;
}
.ghh-readme img,
.ghh-issue-body img {
max-width: 100%;
}
.ghh-readme code,
.ghh-issue-body code,
.ghh-readme tt,
.ghh-issue-body tt {
padding: 0.2em 0.4em;
margin: 0;
background-color: rgba(255,255,255,0.15);
border-radius: 2px;
}
.ghh-readme code br,
.ghh-issue-body code br,
.ghh-readme tt br,
.ghh-issue-body tt br {
display: none;
}
.ghh-readme pre,
.ghh-issue-body pre {
padding: 0.6em;
overflow: auto;
line-height: 1.45;
background-color: rgba(108,108,108,0.5);
border-radius: 2px;
word-wrap: normal;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.ghh-readme pre code,
.ghh-issue-body pre code,
.ghh-readme pre tt,
.ghh-issue-body pre tt {
background-color: transparent;
}
.ghh-readme .border.rounded-1.my-2,
.ghh-issue-body .border.rounded-1.my-2 {
overflow: hidden;
}
.ghh-readme .px-3.py-2,
.ghh-issue-body .px-3.py-2 {
padding: 0.6em !important;
}
.ghh-readme .border,
.ghh-issue-body .border {
border: 1px solid rgba(255,255,255,0.2) !important;
}
.ghh-readme .border-bottom,
.ghh-issue-body .border-bottom {
border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.ghh-readme .rounded-1,
.ghh-issue-body .rounded-1 {
border-radius: 2px !important;
}
.ghh-readme .text-gray-light,
.ghh-issue-body .text-gray-light {
color: #fff !important;
}
.ghh-readme .f6,
.ghh-issue-body .f6 {
font-size: 11px !important;
}
.ghh-readme .bg-gray-light,
.ghh-issue-body .bg-gray-light {
background-color: rgba(255,255,255,0.15) !important;
}
.ghh-readme .bg-white,
.ghh-issue-body .bg-white {
background-color: transparent !important;
}
.ghh-readme .blob-wrapper,
.ghh-issue-body .blob-wrapper {
padding: 0.5em 0 !important;
background-color: rgba(108,108,108,0.5) !important;
}
.ghh-readme .blob-num,
.ghh-issue-body .blob-num {
min-width: 30px !important;
padding: 0 0.6em !important;
color: rgba(255,255,255,0.5) !important;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
}
.ghh-readme .blob-num,
.ghh-issue-body .blob-num,
.ghh-readme .blob-code,
.ghh-issue-body .blob-code {
line-height: 1.45;
}
.ghh-readme .blob-code-inner,
.ghh-issue-body .blob-code-inner {
color: #fff !important;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
}
.ghh-readme .js-line-number,
.ghh-issue-body .js-line-number {
pointer-events: none !important;
cursor: default;
}
.ghh-readme img,
.ghh-issue-body img {
max-width: 100%;
box-sizing: content-box;
}
.ghh-readme img[align="left"],
.ghh-issue-body img[align="left"] {
max-width: 30% !important;
padding-right: 20px;
}
.ghh-readme img[align="right"],
.ghh-issue-body img[align="right"] {
max-width: 30% !important;
padding-left: 20px;
}
.ghh-readme a[href^="https://saucelabs.com/"] img,
.ghh-issue-body a[href^="https://saucelabs.com/"] img {
background-color: #fff;
border-radius: 2px;
}
.ghh-pull-meta p,
.ghh-commit-meta p {
line-height: 18px;
}
.ghh-pull-meta .ghh-branch,
.ghh-commit-meta .ghh-branch {
display: flex;
}
.ghh-pull-meta .commit-ref,
.ghh-commit-meta .commit-ref {
flex: 0 1 auto;
float: left;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
color: inherit;
font-size: inherit;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ghh-pull-meta .commit-ref + span,
.ghh-commit-meta .commit-ref + span {
flex: 0 0 auto;
float: left;
padding: 0 5px;
}
.ghh-pull-meta .commit-ref + span > .octicon,
.ghh-commit-meta .commit-ref + span > .octicon {
height: 22px;
vertical-align: middle;
}
.ghh-pull-meta .commit-ref + .octicon,
.ghh-commit-meta .commit-ref + .octicon {
margin: 0;
}
.ghh-pull-meta .commit-ref .user,
.ghh-commit-meta .commit-ref .user {
color: inherit;
opacity: 0.5;
}
.ghh-pull-meta .octicon,
.ghh-commit-meta .octicon {
opacity: 0.8;
margin-left: 10px;
}
.ghh-pull-meta .octicon:first-child,
.ghh-commit-meta .octicon:first-child {
margin-left: 0;
}
.ghh-pull-meta .diffstat,
.ghh-commit-meta .diffstat {
margin-left: 10px;
}
.ghh-pull-meta .text-diff-added,
.ghh-commit-meta .text-diff-added {
color: #84d063 !important;
}
.ghh-pull-meta .text-diff-deleted,
.ghh-commit-meta .text-diff-deleted {
color: #ff3c00 !important;
}
/**********
* Common
**********/
.ghh button {
padding: 0 4px;
border-radius: 2px;
border: none;
outline: none;
color: #fff;
line-height: 1.8;
font-size: 90%;
font-weight: 600;
}
.ghh button:disabled {
opacity: 0.75;
cursor: default;
}
.ghh button.ghh-primary {
background-color: rgba(3,102,214,0.8);
}
.ghh button.ghh-primary:hover {
background-color: #0366d6;
}
.ghh button.ghh-aux {
background-color: rgba(255,255,255,0.2);
color: rgba(255,255,255,0.8);
}
.ghh button.ghh-aux:hover {
background-color: rgba(255,255,255,0.3);
color: #fff;
}
.ghh button .octicon {
position: static;
}
.ghh .ghh-state {
display: inline-block;
margin-right: 5px;
padding: 0 4px;
border-radius: 3px;
color: #fff;
font-weight: 600;
line-height: 20px;
vertical-align: middle;
text-align: center;
text-transform: capitalize;
}
.ghh .ghh-state-open {
background-color: #2cbe4e;
}
.ghh .ghh-state-closed {
background-color: #cb2431;
}
.ghh .ghh-state-merged {
background-color: #6f42c1;
}
.ghh .ghh-state .octicon {
margin-right: 4px;
vertical-align: -3px;
}
.ghh .ghh-state-verified {
background-color: #28a745;
}
.ghh-title-row {
display: flex;
}
.ghh-title-row .ghh-title {
flex: 0 1 auto;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ghh-title-row .ghh-title.no-meta {
flex-grow: 1;
}
.ghh-title-row .ghh-meta,
.ghh-title-row button {
white-space: nowrap;
margin-left: 10px;
}
.ghh-title-row .ghh-meta {
flex: 0 0 auto;
margin-left: 5px;
line-height: 15px;
}
.ghh-title-row .ghh-meta:last-of-type {
flex-grow: 1;
}
.ghh-title-row button {
flex: 0 0 auto;
transition: all 0.3s;
}
/**********
* More
**********/
.ghh-more {
clear: left;
}
.ghh-more p {
position: relative;
padding-left: 18px;
line-height: 18px;
}
.ghh-more strong {
font-weight: 600;
}
.ghh-more .ghh-repo-desc {
white-space: normal;
height: auto;
}
.ghh-more .emoji {
vertical-align: middle;
}
.ghh-more .octicon {
position: absolute;
top: 2px;
left: 0;
width: 16px;
margin: 0;
opacity: 0.8;
}
/**********
* User
**********/
.ghh-person {
min-height: 32px;
margin-bottom: 8px;
padding-left: 40px;
}
.ghh-person strong {
font-size: 120%;
}
.ghh-avatar {
position: absolute;
top: 0;
left: 0;
width: 32px;
height: 32px;
margin: 0 8px 8px 0;
border: 2px solid rgba(255,255,255,0.1);
border-radius: 2px;
background-color: #fff;
}
/**********
* Repo
**********/
.ghh-repo strong {
font-size: 110%;
font-weight: 600;
}
.ghh-repo p {
max-width: 296px;
}
.ghh-repo .ghh-title {
font-size: 13px;
flex-grow: 1;
}
.ghh-topic {
display: inline-block;
margin-bottom: 3px;
padding: 0 3px;
background-color: rgba(255,255,255,0.15);
color: #fff;
line-height: 18px;
text-decoration: none !important;
border-radius: 3px;
}
.ghh-topic:not(:last-child) {
margin-right: 4px;
}
.ghh-stats {
display: flex;
min-width: 180px;
margin-bottom: 10px;
padding: 3px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
line-height: 1;
}
.ghh-stats strong,
.ghh-stats span {
display: block;
padding: 2px 4px;
line-height: 1;
text-align: center;
}
.ghh-stats span {
font-style: 70%;
color: #fff;
opacity: 0.8;
}
.ghh-stats a {
display: block;
flex: 1 1 auto;
}
.ghh-stats a:hover {
text-decoration: none;
}
/**********
* Issue
**********/
.ghh-issue {
margin-bottom: 8px;
}
.ghh-issue strong {
font-size: 120%;
}
.ghh-issue .issue-number {
opacity: 0.8;
}
.ghh-issue-meta p {
line-height: 16px;
}
.ghh-issue-meta .ghh-avatar {
margin: 0 5px 0 0;
width: 16px;
height: 16px;
border-width: 1px;
vertical-align: middle;
line-height: 1.2;
}
/**********
* Commit
**********/
.ghh-commit {
margin-bottom: 8px;
}
.ghh-commit strong {
font-size: 120%;
}
.ghh .ghh-commit-author {
margin-bottom: 6px;
}
.ghh .ghh-tags {
white-space: normal;
}
.ghh-commit-body {
overflow: auto;
max-height: 280px;
margin: 8px 0 10px;
padding: 8px 10px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 12px;
line-height: 1.2;
white-space: pre-wrap;
word-wrap: break-word;
}
.ghh-tags {
white-space: normal;
}
/**********
* Error
**********/
.ghh-error {
max-width: 320px;
}
.ghh-error p {
line-height: 1.6;
white-space: normal;
}
.ghh-error ul {
padding-left: 16px;
}
.ghh-error li {
list-style-type: square;
}
.ghh-error .octicon {
display: inline-block;
position: static;
margin-right: 5px;
}
/**********
* Overlay
**********/
.ghh-overlay {
position: fixed;
z-index: 10000000;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.6);
}
.ghh-overlay form {
position: absolute;
top: 38.2%;
left: 50%;
transform: translate(-50%, -38.2%);
border: 3px solid rgba(0,0,0,0.75);
padding: 15px 20px;
border-radius: 5px;
background-color: #fff;
}
.ghh-overlay form h3 {
margin-bottom: 10px;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
font-size: 16px;
}
.ghh-overlay form h3 .octicon {
vertical-align: middle;
}
.ghh-overlay form p:last-child {
display: flex;
margin: 15px 0 5px;
}
.ghh-overlay form p:last-child button {
flex: 0 0 auto;
margin-left: 10px;
}
.ghh-overlay form p:last-child input {
flex: 1 1 auto;
} | extensions/github-hovercard.safariextension/hovercard.css | * Global
**********/
.ghh {
max-width: 320px;
min-width: 160px;
font-style: normal;
line-height: 2;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.ghh.extended {
max-width: 640px;
}
.ghh p {
margin: 0 0 4px;
vertical-align: middle;
line-height: 1.2;
clear: both;
}
.ghh a {
color: #b4d6fe;
}
.ghh small {
opacity: 0.8;
}
.ghh [title] {
cursor: help;
}
.ghh .octicon {
fill: currentColor;
}
.windows .ghh ::-webkit-scrollbar {
width: 20px;
height: 20px;
padding: 3px;
background-color: transparent;
}
.windows .ghh ::-webkit-scrollbar-button {
display: none;
}
.windows .ghh ::-webkit-scrollbar-thumb {
background-color: rgba(255,255,255,0.15);
border: 6px solid transparent;
background-clip: padding-box;
border-radius: 12px;
}
.windows .ghh ::-webkit-scrollbar-corner {
background-color: transparent;
}
/**********
* Mixins
**********/
/**********
* Placeholders
**********/
.ghh-person,
.ghh-repo {
position: relative;
margin-top: 2px;
margin-bottom: 12px;
padding-left: 24px;
}
.ghh-person .octicon,
.ghh-repo .octicon {
position: absolute;
top: 0;
left: 0;
line-height: 1;
}
.ghh-readme > :first-child,
.ghh-issue-body > :first-child {
margin-top: 0;
}
.ghh-readme > :last-child,
.ghh-issue-body > :last-child {
margin-bottom: 0;
}
.ghh-readme,
.ghh-issue-body {
clear: left;
overflow: auto;
max-height: 280px;
margin: 8px 0 3px;
padding: 8px 10px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
font-size: 12px;
line-height: 1.6;
word-wrap: break-word;
/* some special vendor optimizations */
}
.ghh-readme h1,
.ghh-issue-body h1,
.ghh-readme h2,
.ghh-issue-body h2,
.ghh-readme h3,
.ghh-issue-body h3,
.ghh-readme h4,
.ghh-issue-body h4,
.ghh-readme h5,
.ghh-issue-body h5,
.ghh-readme h6,
.ghh-issue-body h6 {
margin-top: 1em;
margin-bottom: 12px;
font-weight: 600;
line-height: 1.4;
}
.ghh-readme h1 tt,
.ghh-issue-body h1 tt,
.ghh-readme h2 tt,
.ghh-issue-body h2 tt,
.ghh-readme h3 tt,
.ghh-issue-body h3 tt,
.ghh-readme h4 tt,
.ghh-issue-body h4 tt,
.ghh-readme h5 tt,
.ghh-issue-body h5 tt,
.ghh-readme h6 tt,
.ghh-issue-body h6 tt,
.ghh-readme h1 code,
.ghh-issue-body h1 code,
.ghh-readme h2 code,
.ghh-issue-body h2 code,
.ghh-readme h3 code,
.ghh-issue-body h3 code,
.ghh-readme h4 code,
.ghh-issue-body h4 code,
.ghh-readme h5 code,
.ghh-issue-body h5 code,
.ghh-readme h6 code,
.ghh-issue-body h6 code {
font-size: inherit;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.ghh-readme h1,
.ghh-issue-body h1 {
font-size: 1.25em;
}
.ghh-readme h2,
.ghh-issue-body h2 {
font-size: 1.2em;
}
.ghh-readme h3,
.ghh-issue-body h3 {
font-size: 1.15em;
}
.ghh-readme h4,
.ghh-issue-body h4 {
font-size: 1.1em;
}
.ghh-readme h5,
.ghh-issue-body h5 {
font-size: 1.05em;
}
.ghh-readme h6,
.ghh-issue-body h6 {
font-size: 1em;
}
.ghh-readme p,
.ghh-issue-body p,
.ghh-readme blockquote,
.ghh-issue-body blockquote,
.ghh-readme ul,
.ghh-issue-body ul,
.ghh-readme ol,
.ghh-issue-body ol,
.ghh-readme dl,
.ghh-issue-body dl,
.ghh-readme table,
.ghh-issue-body table,
.ghh-readme pre,
.ghh-issue-body pre {
margin-top: 0;
margin-bottom: 1em;
}
.ghh-readme hr,
.ghh-issue-body hr {
height: 0;
padding: 0;
margin: 16px 0;
border-bottom: 2px dotted rgba(255,255,255,0.2);
}
.ghh-readme a:not([href]),
.ghh-issue-body a:not([href]) {
color: inherit;
}
.ghh-readme p,
.ghh-issue-body p {
overflow: visible;
white-space: normal;
line-height: 1.6;
}
.ghh-readme ul,
.ghh-issue-body ul,
.ghh-readme ol,
.ghh-issue-body ol {
padding-left: 2em;
}
.ghh-readme ul ol,
.ghh-issue-body ul ol,
.ghh-readme ol ol,
.ghh-issue-body ol ol,
.ghh-readme ul ul,
.ghh-issue-body ul ul,
.ghh-readme ol ul,
.ghh-issue-body ol ul {
margin-top: 0;
margin-bottom: 0;
}
.ghh-readme dl,
.ghh-issue-body dl {
padding: 0;
}
.ghh-readme dt,
.ghh-issue-body dt {
padding: 0;
margin-top: 1em;
font-size: 1em;
font-style: italic;
font-weight: 600;
}
.ghh-readme dd,
.ghh-issue-body dd {
padding: 0 1em;
margin-bottom: 1em;
}
.ghh-readme blockquote,
.ghh-issue-body blockquote {
padding: 0 1em;
border-left: 3px solid #ccc;
}
.ghh-readme table,
.ghh-issue-body table {
width: 100%;
overflow: auto;
word-break: normal;
word-break: keep-all;
}
.ghh-readme th,
.ghh-issue-body th {
font-weight: 600;
}
.ghh-readme th,
.ghh-issue-body th,
.ghh-readme tr:nth-child(even) td,
.ghh-issue-body tr:nth-child(even) td {
background-color: rgba(108,108,108,0.5);
}
.ghh-readme th,
.ghh-issue-body th,
.ghh-readme td,
.ghh-issue-body td {
border: 1px solid #777;
padding: 0.5em 1em;
}
.ghh-readme img,
.ghh-issue-body img {
max-width: 100%;
}
.ghh-readme code,
.ghh-issue-body code,
.ghh-readme tt,
.ghh-issue-body tt {
padding: 0.2em 0.4em;
margin: 0;
background-color: rgba(255,255,255,0.15);
border-radius: 2px;
}
.ghh-readme code br,
.ghh-issue-body code br,
.ghh-readme tt br,
.ghh-issue-body tt br {
display: none;
}
.ghh-readme pre,
.ghh-issue-body pre {
padding: 0.6em;
overflow: auto;
line-height: 1.45;
background-color: rgba(108,108,108,0.5);
border-radius: 2px;
word-wrap: normal;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.ghh-readme pre code,
.ghh-issue-body pre code,
.ghh-readme pre tt,
.ghh-issue-body pre tt {
background-color: transparent;
}
.ghh-readme .border.rounded-1.my-2,
.ghh-issue-body .border.rounded-1.my-2 {
overflow: hidden;
}
.ghh-readme .px-3.py-2,
.ghh-issue-body .px-3.py-2 {
padding: 0.6em !important;
}
.ghh-readme .border,
.ghh-issue-body .border {
border: 1px solid rgba(255,255,255,0.2) !important;
}
.ghh-readme .border-bottom,
.ghh-issue-body .border-bottom {
border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.ghh-readme .rounded-1,
.ghh-issue-body .rounded-1 {
border-radius: 2px !important;
}
.ghh-readme .text-gray-light,
.ghh-issue-body .text-gray-light {
color: #fff !important;
}
.ghh-readme .f6,
.ghh-issue-body .f6 {
font-size: 11px !important;
}
.ghh-readme .bg-gray-light,
.ghh-issue-body .bg-gray-light {
background-color: rgba(255,255,255,0.15) !important;
}
.ghh-readme .bg-white,
.ghh-issue-body .bg-white {
background-color: transparent !important;
}
.ghh-readme .blob-wrapper,
.ghh-issue-body .blob-wrapper {
padding: 0.5em 0 !important;
background-color: rgba(108,108,108,0.5) !important;
}
.ghh-readme .blob-num,
.ghh-issue-body .blob-num {
min-width: 30px !important;
padding: 0 0.6em !important;
color: rgba(255,255,255,0.5) !important;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
}
.ghh-readme .blob-num,
.ghh-issue-body .blob-num,
.ghh-readme .blob-code,
.ghh-issue-body .blob-code {
line-height: 1.45;
}
.ghh-readme .blob-code-inner,
.ghh-issue-body .blob-code-inner {
color: #fff !important;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
}
.ghh-readme .js-line-number,
.ghh-issue-body .js-line-number {
pointer-events: none !important;
cursor: default;
}
.ghh-readme img,
.ghh-issue-body img {
max-width: 100%;
box-sizing: content-box;
}
.ghh-readme img[align="left"],
.ghh-issue-body img[align="left"] {
max-width: 30% !important;
padding-right: 20px;
}
.ghh-readme img[align="right"],
.ghh-issue-body img[align="right"] {
max-width: 30% !important;
padding-left: 20px;
}
.ghh-readme a[href^="https://saucelabs.com/"] img,
.ghh-issue-body a[href^="https://saucelabs.com/"] img {
background-color: #fff;
border-radius: 2px;
}
.ghh-pull-meta p,
.ghh-commit-meta p {
line-height: 18px;
}
.ghh-pull-meta .ghh-branch,
.ghh-commit-meta .ghh-branch {
display: flex;
}
.ghh-pull-meta .commit-ref,
.ghh-commit-meta .commit-ref {
flex: 0 1 auto;
float: left;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
color: inherit;
font-size: inherit;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ghh-pull-meta .commit-ref + span,
.ghh-commit-meta .commit-ref + span {
flex: 0 0 auto;
float: left;
padding: 0 5px;
}
.ghh-pull-meta .commit-ref + span > .octicon,
.ghh-commit-meta .commit-ref + span > .octicon {
height: 22px;
vertical-align: middle;
}
.ghh-pull-meta .commit-ref + .octicon,
.ghh-commit-meta .commit-ref + .octicon {
margin: 0;
}
.ghh-pull-meta .commit-ref .user,
.ghh-commit-meta .commit-ref .user {
color: inherit;
opacity: 0.5;
}
.ghh-pull-meta .octicon,
.ghh-commit-meta .octicon {
opacity: 0.8;
margin-left: 10px;
}
.ghh-pull-meta .octicon:first-child,
.ghh-commit-meta .octicon:first-child {
margin-left: 0;
}
.ghh-pull-meta .diffstat,
.ghh-commit-meta .diffstat {
margin-left: 10px;
}
.ghh-pull-meta .text-diff-added,
.ghh-commit-meta .text-diff-added {
color: #84d063 !important;
}
.ghh-pull-meta .text-diff-deleted,
.ghh-commit-meta .text-diff-deleted {
color: #ff3c00 !important;
}
/**********
* Common
**********/
.ghh button {
padding: 0 4px;
border-radius: 2px;
border: none;
outline: none;
color: #fff;
line-height: 1.8;
font-size: 90%;
font-weight: 600;
}
.ghh button:disabled {
opacity: 0.75;
cursor: default;
}
.ghh button.ghh-primary {
background-color: rgba(3,102,214,0.8);
}
.ghh button.ghh-primary:hover {
background-color: #0366d6;
}
.ghh button.ghh-aux {
background-color: rgba(255,255,255,0.2);
color: rgba(255,255,255,0.8);
}
.ghh button.ghh-aux:hover {
background-color: rgba(255,255,255,0.3);
color: #fff;
}
.ghh button .octicon {
position: static;
}
.ghh .ghh-state {
display: inline-block;
margin-right: 5px;
padding: 0 4px;
border-radius: 3px;
color: #fff;
font-weight: 600;
line-height: 20px;
vertical-align: middle;
text-align: center;
text-transform: capitalize;
}
.ghh .ghh-state-open {
background-color: #2cbe4e;
}
.ghh .ghh-state-closed {
background-color: #cb2431;
}
.ghh .ghh-state-merged {
background-color: #6f42c1;
}
.ghh .ghh-state .octicon {
margin-right: 4px;
vertical-align: -3px;
}
.ghh .ghh-state-verified {
background-color: #28a745;
}
.ghh-title-row {
display: flex;
}
.ghh-title-row .ghh-title {
flex: 0 1 auto;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ghh-title-row .ghh-title.no-meta {
flex-grow: 1;
}
.ghh-title-row .ghh-meta,
.ghh-title-row button {
white-space: nowrap;
margin-left: 10px;
}
.ghh-title-row .ghh-meta {
flex: 0 0 auto;
margin-left: 5px;
line-height: 15px;
}
.ghh-title-row .ghh-meta:last-of-type {
flex-grow: 1;
}
.ghh-title-row button {
flex: 0 0 auto;
transition: all 0.3s;
}
/**********
* More
**********/
.ghh-more {
clear: left;
}
.ghh-more p {
position: relative;
padding-left: 18px;
line-height: 18px;
}
.ghh-more strong {
font-weight: 600;
}
.ghh-more .ghh-repo-desc {
white-space: normal;
height: auto;
}
.ghh-more .emoji {
vertical-align: middle;
}
.ghh-more .octicon {
position: absolute;
top: 2px;
left: 0;
width: 16px;
margin: 0;
opacity: 0.8;
}
/**********
* User
**********/
.ghh-person {
min-height: 32px;
margin-bottom: 8px;
padding-left: 40px;
}
.ghh-person strong {
font-size: 120%;
}
.ghh-avatar {
position: absolute;
top: 0;
left: 0;
width: 32px;
height: 32px;
margin: 0 8px 8px 0;
border: 2px solid rgba(255,255,255,0.1);
border-radius: 2px;
background-color: #fff;
}
/**********
* Repo
**********/
.ghh-repo strong {
font-size: 110%;
font-weight: 600;
}
.ghh-repo p {
max-width: 296px;
}
.ghh-repo .ghh-title {
font-size: 13px;
flex-grow: 1;
}
.ghh-topic {
display: inline-block;
margin-bottom: 3px;
padding: 0 3px;
background-color: rgba(255,255,255,0.15);
color: #fff;
line-height: 18px;
text-decoration: none !important;
border-radius: 3px;
}
.ghh-topic:not(:last-child) {
margin-right: 4px;
}
.ghh-stats {
display: flex;
min-width: 180px;
margin-bottom: 10px;
padding: 3px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
line-height: 1;
}
.ghh-stats strong,
.ghh-stats span {
display: block;
padding: 2px 4px;
line-height: 1;
text-align: center;
}
.ghh-stats span {
font-style: 70%;
color: #fff;
opacity: 0.8;
}
.ghh-stats a {
display: block;
flex: 1 1 auto;
}
.ghh-stats a:hover {
text-decoration: none;
}
/**********
* Issue
**********/
.ghh-issue {
margin-bottom: 8px;
}
.ghh-issue strong {
font-size: 120%;
}
.ghh-issue .issue-number {
opacity: 0.8;
}
.ghh-issue-meta p {
line-height: 16px;
}
.ghh-issue-meta .ghh-avatar {
margin: 0 5px 0 0;
width: 16px;
height: 16px;
border-width: 1px;
vertical-align: middle;
line-height: 1.2;
}
/**********
* Commit
**********/
.ghh-commit {
margin-bottom: 8px;
}
.ghh-commit strong {
font-size: 120%;
}
.ghh .ghh-commit-author {
margin-bottom: 6px;
}
.ghh .ghh-tags {
white-space: normal;
}
.ghh-commit-body {
overflow: auto;
max-height: 280px;
margin: 8px 0 10px;
padding: 8px 10px;
border-radius: 2px;
background-color: rgba(255,255,255,0.15);
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-size: 12px;
line-height: 1.2;
white-space: pre-wrap;
word-wrap: break-word;
}
.ghh-tags {
white-space: normal;
}
/**********
* Error
**********/
.ghh-error {
max-width: 320px;
}
.ghh-error p {
line-height: 1.6;
white-space: normal;
}
.ghh-error ul {
padding-left: 16px;
}
.ghh-error li {
list-style-type: square;
}
.ghh-error .octicon {
display: inline-block;
position: static;
margin-right: 5px;
}
/**********
* Overlay
**********/
.ghh-overlay {
position: fixed;
z-index: 10000000;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.6);
}
.ghh-overlay form {
position: absolute;
top: 38.2%;
left: 50%;
transform: translate(-50%, -38.2%);
border: 3px solid rgba(0,0,0,0.75);
padding: 15px 20px;
border-radius: 5px;
background-color: #fff;
}
.ghh-overlay form h3 {
margin-bottom: 10px;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
font-size: 16px;
}
.ghh-overlay form h3 .octicon {
vertical-align: middle;
}
.ghh-overlay form p:last-child {
display: flex;
margin: 15px 0 5px;
}
.ghh-overlay form p:last-child button {
flex: 0 0 auto;
margin-left: 10px;
}
.ghh-overlay form p:last-child input {
flex: 1 1 auto;
} | 0.370567 | 0.057679 |
@charset "UTF-8"; /* 保管庫注釈 : Shift_JIS */
/* === Neo's World スタイルシート。 ===
*
* Author:Neo
* E-Mail:<EMAIL>
* Web :Neo's World
* URL :http://neo.s21.xrea.com/
* LastUp:2005-07-05
*
* style.cssにimportさせ、古いブラウザにスタイルを認識させない。
* 的なメモ書きしまくってます。
*
*/
/* === 早速。適当に決めた、書くプロパティ順番。 ===
01. Display
02. Position :: Position -> Top -> Left
03. Float :: Float -> Clear
04. Side :: Margin -> Padding
05. Box :: Width -> Height
06. Color
07. Font :: Size -> Weight -> Style -> Family
08. Text :: Align -> Decoration -> Indent
09. Line :: Height -> Break
10. Background :: Image -> Position.Repeat.attachment -> Color
11. Border :: Top -> Right -> Bottom -> Left
12. Etc
*/
/* === まずはデフォルトスタイルを消す。 === */
* {
margin:0;
padding:0;
color:#121;
font-size:100%;
font-weight:normal;
font-style:normal;
text-decoration:none;
line-height:1.45;
background:transparent;
box-sizing:border-box;
/* WidthとHeightの計算方法の指定。枠線までの幅で計算させる。 */
}
/* === ブロック要素から行こう。 === */
body {
width:100%;
height:100%;
background:url("css_screen_img_left.png") top left repeat-y;
}
/* === 見出しシリーズ === */
h1 {
font-size:190%;
}
h2, h3, h4, h5, h6 {
color:#037;
font-size:105%;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
}
h1, h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
color:#037;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
}
/* === テーブル系 === */
table {
border:1px solid #06c;
border-collapse:collapse;
/* WinIEはtrにborderが描けない */
}
table caption {
font-weight:bold;
text-align:center;
caption-side:top;
}
table td,
table th {
padding:3px 5px;
border:1px solid #06c;
vertical-align:top;
}
table th {
font-weight:bold;
text-align:center;
background:#eff;
}
/* === その他 === */
pre {
font-family:monospace;
}
blockquote {
padding:15px 20px;
background:#efe;
border:1px solid #0c0;
}
ul li {
list-style:square;
margin:0 0 0 25px !important;
}
dd {
margin:0 0 0 25px !important;
}
dt {
margin-bottom:0 !important;
}
dt, dt * {
font-weight:bold;
}
/* === インライン要素 === */
/* === リンク。順番は「LoVe HA?」で覚えよう。 === */
a:link {
color:#00f;
}
a:hover, a:active {
color:#f00;
text-decoration:underline;
}
a:visited {
color:#90f;
text-decoration:underline;
}
/* === 強調系 === */
em {
color:#060;
font-weight:bold;
}
strong {
color:#f00;
font-weight:bold;
}
em strong {
color:#f60;
}
strong em {
color:#06c;
}
/* === その他インライン === */
abbr, acronym, dfn {
font-weight:bold;
border-bottom:1px dashed #121;
cursor:help;
}
q {
color:#060;
border-bottom:1px dashed #060;
}
cite {
color:#06c;
border-bottom:1px dashed #06c;
}
cite:before {
content:"出典:";
/* 対応して無いブラウザは知らないっ! */
}
code {
color:#f00;
border-bottom:1px dashed #f00;
}
/* === 画像。vertical-alignはバグ対策らしい。 === */
img {
border:0;
vertical-align:bottom;
}
/* === さぁてここからIDだらけですよぉ~w === */
#wrapper {
height:100%;
margin:0 0 0 40px;
padding:0 40px 0 0;
background:url("css_screen_img_right.png") top right repeat-y; /* 保管庫注釈 : 画像ファイルはサルベージできなかったため css_screen_img_left.png を左右反転させて用意した */
}
/* === 広告をCenterに持って来る === */
#ad {
height:60px;
text-align:right;
border-top:1px solid #888;
background:#fff;
}
#ad a img {
width:468px;
height:60px;
}
/* === サイト名の所 === */
#site {
position:absolute;
top:0;
left:65px;
height:60px;
overflow:hidden;
}
#site a {
display:block;
color:#c11;
font-size:200%;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
text-decoration:none;
}
#site a:hover {
color:#911;
}
/* === 大まかなナビゲーション。 === */
#navi {
clear:both;
border-top:1px solid #888;
border-bottom:1px solid #888;
padding:5px 25px;
background:#fff;
}
#navi ul li {
display:inline;
margin:0 !important;
list-style:none;
}
#navi ul li a {
padding:0 8px;
font-weight:bold;
border-right:1px solid #121;
}
#navi ul li.index a {
padding:0 8px 0 0;
}
body.index #navi ul li.index a,
body.pokemon #navi ul li.pokemon a,
body.mario #navi ul li.mario a,
body.web #navi ul li.web a,
body.forum #navi ul li.forum a,
#navi ul li a:hover {
text-decoration:underline;
/* Activeなメニューには下線を引かせる為、Bodyと#naviで同じクラス名を持たせてオラオラ。 */
}
/* === へっだーって言うかh1要素しか入って無いけど === */
#header {
padding:10px 25px;
background:#fff;
border-bottom:1px solid #888;
}
/* === セクションシリーズ === */
.sec2 *,
.sec2 dd,
.sec2 dd *,
.sec2 blockquote *,
.sec2 div * {
margin:15px 0;
}
.sec2 * * {
margin:0;
}
/* === そういや依存度目茶目茶高いスタイルだなぁ… === */
#body {
float:left;
clear:left;
margin:0 -310px 0 0;
width:100%;
/* Negative Marginの為、floatしてmarginに負の数入れてる。 */
}
#body #description h2 {
display:none;
}
#body .sec2 {
margin:15px 315px 15px 25px;
/* Negative Marginの為、内側に正の数を入れる。余白は左25px、右20pxとなった。 */
}
/* === 右側のメニュー。サイドバー。 === */
#menu {
float:right;
clear:right;
width:290px;
/* Negative Marginの説明。すぐ忘れるから。
可変レイアウトでもカラム表示させる為のテクニック。
marginに負の数が入ってるからNegative Margin。
このレイアウトだと、#bodyを左に置き可変にしたい。
#bodyにはfloatとclearをleft、そして右側のBoxの幅
と同じ(余白を取るならそれ以上)数の負のmarginを入れる。
このままだと#bodyの中身が右側に来る#sideに被る為、
#body内の要素に、#bodyで指定したmarginと同じ数を
正の数で入れる(#bodyが-100pxなら100px)。
#menuにはfloatとclearをright、そしてwidthを書く。 */
}
#menu .sec2 {
display:none;
/* BodyのIDによって、表示するメニューを変えたいから
一旦全部非表示にする。 */
}
body.index #menu .index,
body.pokemon #menu .pokemon,
body.mario #menu .mario,
body.web #menu .web,
body.forum #menu .forum {
display:block;
/* Bodyと.sec2で同じクラスを使って特定の.sec2を表示させる。 */
}
/* === ふったー。 === */
#footer {
clear:both;
padding:0 25px;
background:url("css_screen_img_renew.png") bottom right no-repeat #fff;
/*一時期限定で背景画像にリニューアル記念画像を挿入中 25.10.05 */
border-top:1px solid #888;
}
/* === ふったーのページ情報。 === */
#footer #footerdata ul li {
margin-left:20px;
}
#footer #footerdata ul li ol {
display:inline;
}
#footer #footerdata ul li ol li {
display:inline;
list-style:none;
margin:0 !important;
padding:0 0 0 15px;
background:url("css_screen_img_list.png") left center no-repeat;
/* li要素の左側にpaddingを設け、そこに背景画像として「>」を表示させてる。 */
}
#footer #footerdata ul li ol li.index {
padding:0;
background:none;
/* 最初のliには「>」が要らない為、こうした。 */
}
/* === ふったーのカウンタ === */
#footer #footercount h2 {
display:none;
}
#footer #footercount ul {
margin:0;
}
#footer #footercount ul li {
display:inline;
margin:0 !important;
list-style:none;
}
/* === 他色々。 === */
div.note {
padding:15px 20px;
background:#eef;
border:1px solid #00c;
}
div.note:before {
display:block;
content:"Note:";
}
span.note {
color:#006;
border-bottom:1px dashed #00c;
}
span.memo {
color:#454;
}
.sample {
/* 「これはサンプルです」と言う時に使用。間違っては居ないけど、「正しい!」と主張する必要が無いサンプルにはこれ。 */
padding:15px 20px;
background:#ffe;
border:1px solid #cc0;
}
.sample:before {
display:block;
content:"サンプル:";
}
.osample {
/* 「これが正しいサンプルだ!」と言う時に使用 */
/* ◆HTMLでは「sample」になってるから後で必ず直せ◆ */
padding:15px 20px;
background:#eff;
border:1px solid #0cc;
}
.osample:before {
display:block;
content:"正しいサンプル:";
}
.xsample {
/* 「これは間違ったサンプルだ!真似するな!」と言う時に使用 */
/* ◆HTMLでは「mistakesample」になってるから後で必ず直せ◆ */
padding:15px 20px;
background:#fee;
border:1px solid #c00;
}
.xsample:before {
display:block;
content:"間違ったサンプル:";
}
.sample code,
.osample code,
.xsample code {
color:#121;
border:0;
}
#body .sec1 .floatlist li {
display:inline;
margin:0 3px !important;
list-style:none;
border-right:1px solid #121;
}
.history {
height:100px;
overflow:scroll;
}
.linkeachother {
list-style:circle;
}
.linkofficial {
list-style:square;
}
.linkgeneral {
list-style:disc;
}
.atten1 {
font-weight:bold;
font-size:large;
}
.atten2 {
font-weight:bold;
font-size:x-large;
}
.atten3 {
font-weight:bold;
font-size:xx-large;
}
.hidden {
display:hidden;
}
.floatlist li {
display:inline;
margin:0 0 0 3px !important;
}
.clear {
clear:both;
}
/* === おしまい。 === */ | src/documents/neos-archives/neo-s21-design/20051025/new_style.css | @charset "UTF-8"; /* 保管庫注釈 : Shift_JIS */
/* === Neo's World スタイルシート。 ===
*
* Author:Neo
* E-Mail:<EMAIL>
* Web :Neo's World
* URL :http://neo.s21.xrea.com/
* LastUp:2005-07-05
*
* style.cssにimportさせ、古いブラウザにスタイルを認識させない。
* 的なメモ書きしまくってます。
*
*/
/* === 早速。適当に決めた、書くプロパティ順番。 ===
01. Display
02. Position :: Position -> Top -> Left
03. Float :: Float -> Clear
04. Side :: Margin -> Padding
05. Box :: Width -> Height
06. Color
07. Font :: Size -> Weight -> Style -> Family
08. Text :: Align -> Decoration -> Indent
09. Line :: Height -> Break
10. Background :: Image -> Position.Repeat.attachment -> Color
11. Border :: Top -> Right -> Bottom -> Left
12. Etc
*/
/* === まずはデフォルトスタイルを消す。 === */
* {
margin:0;
padding:0;
color:#121;
font-size:100%;
font-weight:normal;
font-style:normal;
text-decoration:none;
line-height:1.45;
background:transparent;
box-sizing:border-box;
/* WidthとHeightの計算方法の指定。枠線までの幅で計算させる。 */
}
/* === ブロック要素から行こう。 === */
body {
width:100%;
height:100%;
background:url("css_screen_img_left.png") top left repeat-y;
}
/* === 見出しシリーズ === */
h1 {
font-size:190%;
}
h2, h3, h4, h5, h6 {
color:#037;
font-size:105%;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
}
h1, h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
color:#037;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
}
/* === テーブル系 === */
table {
border:1px solid #06c;
border-collapse:collapse;
/* WinIEはtrにborderが描けない */
}
table caption {
font-weight:bold;
text-align:center;
caption-side:top;
}
table td,
table th {
padding:3px 5px;
border:1px solid #06c;
vertical-align:top;
}
table th {
font-weight:bold;
text-align:center;
background:#eff;
}
/* === その他 === */
pre {
font-family:monospace;
}
blockquote {
padding:15px 20px;
background:#efe;
border:1px solid #0c0;
}
ul li {
list-style:square;
margin:0 0 0 25px !important;
}
dd {
margin:0 0 0 25px !important;
}
dt {
margin-bottom:0 !important;
}
dt, dt * {
font-weight:bold;
}
/* === インライン要素 === */
/* === リンク。順番は「LoVe HA?」で覚えよう。 === */
a:link {
color:#00f;
}
a:hover, a:active {
color:#f00;
text-decoration:underline;
}
a:visited {
color:#90f;
text-decoration:underline;
}
/* === 強調系 === */
em {
color:#060;
font-weight:bold;
}
strong {
color:#f00;
font-weight:bold;
}
em strong {
color:#f60;
}
strong em {
color:#06c;
}
/* === その他インライン === */
abbr, acronym, dfn {
font-weight:bold;
border-bottom:1px dashed #121;
cursor:help;
}
q {
color:#060;
border-bottom:1px dashed #060;
}
cite {
color:#06c;
border-bottom:1px dashed #06c;
}
cite:before {
content:"出典:";
/* 対応して無いブラウザは知らないっ! */
}
code {
color:#f00;
border-bottom:1px dashed #f00;
}
/* === 画像。vertical-alignはバグ対策らしい。 === */
img {
border:0;
vertical-align:bottom;
}
/* === さぁてここからIDだらけですよぉ~w === */
#wrapper {
height:100%;
margin:0 0 0 40px;
padding:0 40px 0 0;
background:url("css_screen_img_right.png") top right repeat-y; /* 保管庫注釈 : 画像ファイルはサルベージできなかったため css_screen_img_left.png を左右反転させて用意した */
}
/* === 広告をCenterに持って来る === */
#ad {
height:60px;
text-align:right;
border-top:1px solid #888;
background:#fff;
}
#ad a img {
width:468px;
height:60px;
}
/* === サイト名の所 === */
#site {
position:absolute;
top:0;
left:65px;
height:60px;
overflow:hidden;
}
#site a {
display:block;
color:#c11;
font-size:200%;
font-weight:bold;
font-family:"Verdana","Arial","Impact",sans-serif;
text-decoration:none;
}
#site a:hover {
color:#911;
}
/* === 大まかなナビゲーション。 === */
#navi {
clear:both;
border-top:1px solid #888;
border-bottom:1px solid #888;
padding:5px 25px;
background:#fff;
}
#navi ul li {
display:inline;
margin:0 !important;
list-style:none;
}
#navi ul li a {
padding:0 8px;
font-weight:bold;
border-right:1px solid #121;
}
#navi ul li.index a {
padding:0 8px 0 0;
}
body.index #navi ul li.index a,
body.pokemon #navi ul li.pokemon a,
body.mario #navi ul li.mario a,
body.web #navi ul li.web a,
body.forum #navi ul li.forum a,
#navi ul li a:hover {
text-decoration:underline;
/* Activeなメニューには下線を引かせる為、Bodyと#naviで同じクラス名を持たせてオラオラ。 */
}
/* === へっだーって言うかh1要素しか入って無いけど === */
#header {
padding:10px 25px;
background:#fff;
border-bottom:1px solid #888;
}
/* === セクションシリーズ === */
.sec2 *,
.sec2 dd,
.sec2 dd *,
.sec2 blockquote *,
.sec2 div * {
margin:15px 0;
}
.sec2 * * {
margin:0;
}
/* === そういや依存度目茶目茶高いスタイルだなぁ… === */
#body {
float:left;
clear:left;
margin:0 -310px 0 0;
width:100%;
/* Negative Marginの為、floatしてmarginに負の数入れてる。 */
}
#body #description h2 {
display:none;
}
#body .sec2 {
margin:15px 315px 15px 25px;
/* Negative Marginの為、内側に正の数を入れる。余白は左25px、右20pxとなった。 */
}
/* === 右側のメニュー。サイドバー。 === */
#menu {
float:right;
clear:right;
width:290px;
/* Negative Marginの説明。すぐ忘れるから。
可変レイアウトでもカラム表示させる為のテクニック。
marginに負の数が入ってるからNegative Margin。
このレイアウトだと、#bodyを左に置き可変にしたい。
#bodyにはfloatとclearをleft、そして右側のBoxの幅
と同じ(余白を取るならそれ以上)数の負のmarginを入れる。
このままだと#bodyの中身が右側に来る#sideに被る為、
#body内の要素に、#bodyで指定したmarginと同じ数を
正の数で入れる(#bodyが-100pxなら100px)。
#menuにはfloatとclearをright、そしてwidthを書く。 */
}
#menu .sec2 {
display:none;
/* BodyのIDによって、表示するメニューを変えたいから
一旦全部非表示にする。 */
}
body.index #menu .index,
body.pokemon #menu .pokemon,
body.mario #menu .mario,
body.web #menu .web,
body.forum #menu .forum {
display:block;
/* Bodyと.sec2で同じクラスを使って特定の.sec2を表示させる。 */
}
/* === ふったー。 === */
#footer {
clear:both;
padding:0 25px;
background:url("css_screen_img_renew.png") bottom right no-repeat #fff;
/*一時期限定で背景画像にリニューアル記念画像を挿入中 25.10.05 */
border-top:1px solid #888;
}
/* === ふったーのページ情報。 === */
#footer #footerdata ul li {
margin-left:20px;
}
#footer #footerdata ul li ol {
display:inline;
}
#footer #footerdata ul li ol li {
display:inline;
list-style:none;
margin:0 !important;
padding:0 0 0 15px;
background:url("css_screen_img_list.png") left center no-repeat;
/* li要素の左側にpaddingを設け、そこに背景画像として「>」を表示させてる。 */
}
#footer #footerdata ul li ol li.index {
padding:0;
background:none;
/* 最初のliには「>」が要らない為、こうした。 */
}
/* === ふったーのカウンタ === */
#footer #footercount h2 {
display:none;
}
#footer #footercount ul {
margin:0;
}
#footer #footercount ul li {
display:inline;
margin:0 !important;
list-style:none;
}
/* === 他色々。 === */
div.note {
padding:15px 20px;
background:#eef;
border:1px solid #00c;
}
div.note:before {
display:block;
content:"Note:";
}
span.note {
color:#006;
border-bottom:1px dashed #00c;
}
span.memo {
color:#454;
}
.sample {
/* 「これはサンプルです」と言う時に使用。間違っては居ないけど、「正しい!」と主張する必要が無いサンプルにはこれ。 */
padding:15px 20px;
background:#ffe;
border:1px solid #cc0;
}
.sample:before {
display:block;
content:"サンプル:";
}
.osample {
/* 「これが正しいサンプルだ!」と言う時に使用 */
/* ◆HTMLでは「sample」になってるから後で必ず直せ◆ */
padding:15px 20px;
background:#eff;
border:1px solid #0cc;
}
.osample:before {
display:block;
content:"正しいサンプル:";
}
.xsample {
/* 「これは間違ったサンプルだ!真似するな!」と言う時に使用 */
/* ◆HTMLでは「mistakesample」になってるから後で必ず直せ◆ */
padding:15px 20px;
background:#fee;
border:1px solid #c00;
}
.xsample:before {
display:block;
content:"間違ったサンプル:";
}
.sample code,
.osample code,
.xsample code {
color:#121;
border:0;
}
#body .sec1 .floatlist li {
display:inline;
margin:0 3px !important;
list-style:none;
border-right:1px solid #121;
}
.history {
height:100px;
overflow:scroll;
}
.linkeachother {
list-style:circle;
}
.linkofficial {
list-style:square;
}
.linkgeneral {
list-style:disc;
}
.atten1 {
font-weight:bold;
font-size:large;
}
.atten2 {
font-weight:bold;
font-size:x-large;
}
.atten3 {
font-weight:bold;
font-size:xx-large;
}
.hidden {
display:hidden;
}
.floatlist li {
display:inline;
margin:0 0 0 3px !important;
}
.clear {
clear:both;
}
/* === おしまい。 === */ | 0.161386 | 0.128826 |
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nothing+You+Could+Do&display=swap');
/* font-family: 'Fredoka One', cursive;
font-family: 'Nothing You Could Do', cursive; */
/* <!--------------------- Ibrahim-Start--------------------------> */
@import url('https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@200&display=swap');
@keyframes lighting {
from {
text-shadow: 0 0 10px rgba(0, 0, 0, 0.411), 0 0 20px rgba(0, 0, 0, 0.411), 0 0 30px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411);
}
to {
text-shadow: 0 0 20px white;
}
}
/* flip box */
.square-flip{
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
-webkit-transform: perspective(1000px);
-moz-transform: perspective(1000px);
-ms-transform: perspective(1000px);
transform: perspective(1000px);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
/*border:1px solid #efefef;*/
position:relative;
float:left;
margin:20px;
}
.square-flip{
margin: 120px 170px;
/* margin-left: 150px; */
width:400px;
height:400px;
box-shadow: 0 4px 8px 0 rgba(102, 89, 89, 0.466), 0 6px 20px 0 rgba(110, 99, 99, 0.4);
box-shadow: 15px 15px 5px rgba(90, 81, 81, 0.733);
/* animation: lighting 1s ease-in-out infinite alternate; */
/* margin-top: 100px; */
}
.square,.square2{
width:100%;
height:100%;
}
.square{
background-size: cover;
background-position:center center;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
overflow: hidden;
position:absolute;
top:0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.square-flip .square{
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
transform-style: preserve-3d;
z-index:1;
}
.square-flip:hover .square{
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
transform: rotateY(-180deg);
transform-style: preserve-3d;
}
.square2{
background-size: cover;
background-position:center center;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
overflow: hidden;
position:absolute;
top:0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.square-flip .square2{
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
transform-style: preserve-3d;
z-index:1;
}
.square-flip:hover .square2{
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
transform-style: preserve-3d;
}
/*Square content*/
.square-container{
padding:40px;
text-align:center;
position:relative;
top:50%;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transform: translateY(-50%) translateX(0px) scale(1);
-ms-transform: translateY(-50%) translateX(0px) scale(1);
transform: translateY(-50%) translateX(0px) scale(1);
transform-style: preserve-3d;
z-index:2;
}
.square-flip:hover .square-container{
-webkit-transform: translateY(-50%) translateX(-650px) scale(.88);
-ms-transform: translateY(-50%) translateX(-650px) scale(.88);
transform: translateY(-50%) translateX(-650px) scale(.88);
transform-style: preserve-3d;
}
.square-container2{
padding:40px;
text-align:center;
position:relative;
top:50%;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
-ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
transform-style: preserve-3d;
z-index:2;
}
.square-flip:hover .square-container2{
-webkit-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
-ms-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
transform-style: preserve-3d;
}
/*Style text*/
.square-flip h2{
color:rgb(0, 0, 0);
font-family: Verdana,sans-serif;
font-weight:700;
font-size:22px;
}
.square-flip h3{
color:white;
font-family: Verdana,sans-serif;
font-weight:500;
font-size:16px;
line-height:26px;
}
/*Elements*/
.flip-overlay{
display:block;
background:rgba(0,0,0,0.1);
width:100%;
height:100%;
position:absolute;
top:0;
}
.align-center{
margin:0 auto;
}
#back1{
margin:0 auto;
background-image: url('https://avatars2.githubusercontent.com/u/57448850?s=460&u=3debe8d95b5c1b8cbb28f4ad524edd7aabc94e08&v=4');
background-repeat: no-repeat;
}
#back2{
margin:0 auto;
background-image: url('https://ca.slack-edge.com/TNGRRLUMA-UTE6CC9NU-76521ca94c33-512');
background-repeat: no-repeat;
}
#back3{
margin:0 auto;
background-image: url('https://avatars1.githubusercontent.com/u/54719438?s=400&u=7574861f4f147386966da6c8e06059252adfa64d&v=4');
background-repeat: no-repeat;
}
#back4{
margin:0 auto;
background-image: url('https://ca.slack-edge.com/TNGRRLUMA-U011NPH83AR-828d90b920dc-512');
background-repeat: no-repeat;
}
.kallyas-button{
font-size: x-large;
display:block;
width:160px;
padding:18px 30px;
font-weight:600;
color:rgb(255, 255, 255);
/* background:rgb(0, 0, 0); */
margin:0 auto;
border-radius:2px;
text-decoration:none;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffa067+0,ff2959+49,ff2024+100 */
/* background: #ffa067; Old browsers */
/* background: -moz-linear-gradient(-45deg, #ffa067 0%, #ff2959 49%, #ff2024 100%); FF3.6-15 */
/* background: -webkit-linear-gradient(-45deg, #ffa067 0%,#ff2959 49%,#ff2024 100%); Chrome10-25,Safari5.1-6 */
/* background: linear-gradient(135deg, #756861 0%,#494243 49%,#000000 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa067', endColorstr='#ff2024',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.textdiv h2{
background-color:rgb(255, 255, 255);
width: 75%;
animation: lighting 2s ease-in-out infinite alternate;
text-align: center;
padding: 5px;
}
footer{
margin-top: 1300px;
/* border: 10px solid; */
/* text-align: center; */
}
article {
text-align: center;
}
article section div img{
font-family: Verdana,sans-serif;
width: 350px;
margin: 100px 20px auto;
/* text-align: center; */
/* z-index: -1; */
/* background-repeat: no-repeat;
/* background-image: url('http://lalesaray.com.tr/wp-content/uploads/2017/11/our-vision.jpg'); */
/* background-size: cover;
animation: lighting 2s ease-in-out infinite alternate; */
/* box-shadow: skyblue; */
/* border: solid 5px red; */
/* margin-left: 40%; */
}
/* article section div{
border: 10px solid red;
} */
article section div h2{
/* font-family: 'Spectral', serif; */
/* text-shadow: -1px 0 rgba(24, 22, 22, 0.849), 0 1px rgb(20, 19, 19), 1px 0 rgb(14, 13, 13), 0 -1px rgb(27, 26, 26); */
/* border: red solid 5px; */
color: rgba(0, 0, 0, 1);
text-align: center;
font-size: xx-large;
font-weight: 900;
/* top: 50px; */
margin: 10px;
font-family: Verdana,sans-serif;
}
article section div p{
/* font-family: 'Spectral', serif; */
/* text-shadow: -1px 0 rgba(24, 22, 22, 0.849), 0 1px rgb(20, 19, 19), 1px 0 rgb(14, 13, 13), 0 -1px rgb(27, 26, 26); */
/* border: red solid 5px; */
color: rgba(0, 0, 0, 1);
text-align: center;
font-size: large;
font-weight: 400;
/* top: 50px; */
margin: 10px;
font-family: Verdana,sans-serif;
text-align: justify;
}
#vision-div{
width: 70%;
margin: 30px auto;
}
.bio{
font-size: large;
color: black;
margin: 15px;
/* text-shadow: -1px 0 rgb(0, 0, 0), 0 1px rgb(0, 0, 0), 1px 0 rgb(0, 0, 0), 0 -1px rgb(0, 0, 0); */
}
.name1{
font-size: xx-large;
font-weight: 900;
}
/* div .footer-section1-map{
display: inline-block;
} */
/* main{
border: beige solid 10px;
} */
/* <!--------------------- Ibrahim-End--------------------------> */ | css/aboutUs.css | @import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nothing+You+Could+Do&display=swap');
/* font-family: 'Fredoka One', cursive;
font-family: 'Nothing You Could Do', cursive; */
/* <!--------------------- Ibrahim-Start--------------------------> */
@import url('https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@200&display=swap');
@keyframes lighting {
from {
text-shadow: 0 0 10px rgba(0, 0, 0, 0.411), 0 0 20px rgba(0, 0, 0, 0.411), 0 0 30px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411), 0 0 10px rgba(0, 0, 0, 0.411);
}
to {
text-shadow: 0 0 20px white;
}
}
/* flip box */
.square-flip{
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
-webkit-transform: perspective(1000px);
-moz-transform: perspective(1000px);
-ms-transform: perspective(1000px);
transform: perspective(1000px);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
/*border:1px solid #efefef;*/
position:relative;
float:left;
margin:20px;
}
.square-flip{
margin: 120px 170px;
/* margin-left: 150px; */
width:400px;
height:400px;
box-shadow: 0 4px 8px 0 rgba(102, 89, 89, 0.466), 0 6px 20px 0 rgba(110, 99, 99, 0.4);
box-shadow: 15px 15px 5px rgba(90, 81, 81, 0.733);
/* animation: lighting 1s ease-in-out infinite alternate; */
/* margin-top: 100px; */
}
.square,.square2{
width:100%;
height:100%;
}
.square{
background-size: cover;
background-position:center center;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
overflow: hidden;
position:absolute;
top:0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.square-flip .square{
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
transform-style: preserve-3d;
z-index:1;
}
.square-flip:hover .square{
-webkit-transform: rotateY(-180deg);
-moz-transform: rotateY(-180deg);
-o-transform: rotateY(-180deg);
-ms-transform: rotateY(-180deg);
transform: rotateY(-180deg);
transform-style: preserve-3d;
}
.square2{
background-size: cover;
background-position:center center;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
overflow: hidden;
position:absolute;
top:0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.square-flip .square2{
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
transform-style: preserve-3d;
z-index:1;
}
.square-flip:hover .square2{
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
transform: rotateY(0deg);
transform-style: preserve-3d;
}
/*Square content*/
.square-container{
padding:40px;
text-align:center;
position:relative;
top:50%;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transform: translateY(-50%) translateX(0px) scale(1);
-ms-transform: translateY(-50%) translateX(0px) scale(1);
transform: translateY(-50%) translateX(0px) scale(1);
transform-style: preserve-3d;
z-index:2;
}
.square-flip:hover .square-container{
-webkit-transform: translateY(-50%) translateX(-650px) scale(.88);
-ms-transform: translateY(-50%) translateX(-650px) scale(.88);
transform: translateY(-50%) translateX(-650px) scale(.88);
transform-style: preserve-3d;
}
.square-container2{
padding:40px;
text-align:center;
position:relative;
top:50%;
-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
-webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
-ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
transform-style: preserve-3d;
z-index:2;
}
.square-flip:hover .square-container2{
-webkit-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
-ms-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
transform-style: preserve-3d;
}
/*Style text*/
.square-flip h2{
color:rgb(0, 0, 0);
font-family: Verdana,sans-serif;
font-weight:700;
font-size:22px;
}
.square-flip h3{
color:white;
font-family: Verdana,sans-serif;
font-weight:500;
font-size:16px;
line-height:26px;
}
/*Elements*/
.flip-overlay{
display:block;
background:rgba(0,0,0,0.1);
width:100%;
height:100%;
position:absolute;
top:0;
}
.align-center{
margin:0 auto;
}
#back1{
margin:0 auto;
background-image: url('https://avatars2.githubusercontent.com/u/57448850?s=460&u=3debe8d95b5c1b8cbb28f4ad524edd7aabc94e08&v=4');
background-repeat: no-repeat;
}
#back2{
margin:0 auto;
background-image: url('https://ca.slack-edge.com/TNGRRLUMA-UTE6CC9NU-76521ca94c33-512');
background-repeat: no-repeat;
}
#back3{
margin:0 auto;
background-image: url('https://avatars1.githubusercontent.com/u/54719438?s=400&u=7574861f4f147386966da6c8e06059252adfa64d&v=4');
background-repeat: no-repeat;
}
#back4{
margin:0 auto;
background-image: url('https://ca.slack-edge.com/TNGRRLUMA-U011NPH83AR-828d90b920dc-512');
background-repeat: no-repeat;
}
.kallyas-button{
font-size: x-large;
display:block;
width:160px;
padding:18px 30px;
font-weight:600;
color:rgb(255, 255, 255);
/* background:rgb(0, 0, 0); */
margin:0 auto;
border-radius:2px;
text-decoration:none;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffa067+0,ff2959+49,ff2024+100 */
/* background: #ffa067; Old browsers */
/* background: -moz-linear-gradient(-45deg, #ffa067 0%, #ff2959 49%, #ff2024 100%); FF3.6-15 */
/* background: -webkit-linear-gradient(-45deg, #ffa067 0%,#ff2959 49%,#ff2024 100%); Chrome10-25,Safari5.1-6 */
/* background: linear-gradient(135deg, #756861 0%,#494243 49%,#000000 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa067', endColorstr='#ff2024',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.textdiv h2{
background-color:rgb(255, 255, 255);
width: 75%;
animation: lighting 2s ease-in-out infinite alternate;
text-align: center;
padding: 5px;
}
footer{
margin-top: 1300px;
/* border: 10px solid; */
/* text-align: center; */
}
article {
text-align: center;
}
article section div img{
font-family: Verdana,sans-serif;
width: 350px;
margin: 100px 20px auto;
/* text-align: center; */
/* z-index: -1; */
/* background-repeat: no-repeat;
/* background-image: url('http://lalesaray.com.tr/wp-content/uploads/2017/11/our-vision.jpg'); */
/* background-size: cover;
animation: lighting 2s ease-in-out infinite alternate; */
/* box-shadow: skyblue; */
/* border: solid 5px red; */
/* margin-left: 40%; */
}
/* article section div{
border: 10px solid red;
} */
article section div h2{
/* font-family: 'Spectral', serif; */
/* text-shadow: -1px 0 rgba(24, 22, 22, 0.849), 0 1px rgb(20, 19, 19), 1px 0 rgb(14, 13, 13), 0 -1px rgb(27, 26, 26); */
/* border: red solid 5px; */
color: rgba(0, 0, 0, 1);
text-align: center;
font-size: xx-large;
font-weight: 900;
/* top: 50px; */
margin: 10px;
font-family: Verdana,sans-serif;
}
article section div p{
/* font-family: 'Spectral', serif; */
/* text-shadow: -1px 0 rgba(24, 22, 22, 0.849), 0 1px rgb(20, 19, 19), 1px 0 rgb(14, 13, 13), 0 -1px rgb(27, 26, 26); */
/* border: red solid 5px; */
color: rgba(0, 0, 0, 1);
text-align: center;
font-size: large;
font-weight: 400;
/* top: 50px; */
margin: 10px;
font-family: Verdana,sans-serif;
text-align: justify;
}
#vision-div{
width: 70%;
margin: 30px auto;
}
.bio{
font-size: large;
color: black;
margin: 15px;
/* text-shadow: -1px 0 rgb(0, 0, 0), 0 1px rgb(0, 0, 0), 1px 0 rgb(0, 0, 0), 0 -1px rgb(0, 0, 0); */
}
.name1{
font-size: xx-large;
font-weight: 900;
}
/* div .footer-section1-map{
display: inline-block;
} */
/* main{
border: beige solid 10px;
} */
/* <!--------------------- Ibrahim-End--------------------------> */ | 0.308503 | 0.082328 |
html {
font-size: 11pt;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
div#body {
vertical-align: top;
}
div.w50 {
width: 50%;
vertical-align: top;
display: inline-block;
}
@media screen and (max-device-width: 480px) and (orientation: portrait) {
body {
width: 100vw;
}
div.w50 {
width: 100%;
display: block !important;
}
}
/*
ltBlue: 5AC8FA;
Yellow: FFCC00;
Orange: FF9500;
Lollypop: FF2D55
DarkBlue: 007AFF;
Green: 4CD964;
DarkRed: FF3B30;
Gray: 8E8E93;
*/
/* Get rid of ugly grey tap highlight */
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* give users feedback when they tap something that's tappable. */
button:active {
color: green;
}
/* Remove Glossy Looking Buttons in Safari */
button {
-webkit-appearance: carret;
-webkit-appearance: none; /* alernatively */
}
/* Disable Selection/Copy When Long Tapping */
/* Allow Text Selection For Input */
/* Better Looking Text */
body {
-webkit-touch-callout: none;
-webkit-user-select: text;
text-rendering: optimizeLegibility;
}
h1 {
margin: 0;
padding: 8px;
font-size: 1.5rem;
color: white;
}
h1 > span {
font-size: 1rem;
}
b.small, span.small {
font-size: 0.8rem;
}
a {
cursor: pointer;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
color: black;
}
select {
padding: 4px;
}
select.small {
font-size: 0.8rem;
}
button.disabled {
color: silver;
}
th {
text-align: left;
font-size: 0.8rem;
}
th.right, td.right {
text-align: right;
padding-right: 0.2rem;
}
th.small, td.small {
font-size: 0.7em;
}
fieldset {
padding: 0.35rem;
Zdisplay: inline-block;
Zwidth: 49%;
ZZZmax-width: 24rem;
vertical-align: top;
box-sizing: border-box;
}
fieldset.col2 {
width: 98%;
}
button {
height: 2rem;
min-width: 2.2rem;
background-color: white;
}
button.small {
vertical-align: top;
font-size: 0.7rem;
min-width: 0.2rem;
}
button.small.over {
min-width: 1.8rem;
}
button.wide {
min-width: 2.9rem;
}
button.selected {
background-color: #FFC3CE;
}
label {
font-size: 0.8rem;
}
label.fixed {
display: inline-block;
width: 2.8rem;
}
/* page header */
div.page-header {
background-color: #333333;
}
div.page-header a.menuicon {
font-size: 1.5rem;
color: white;
opacity: 0.75;
padding: 0 0.3rem;
}
div.page-header a.menuicon:hover {
opacity: 1;
}
span.score {
font-size: 0.8rem;
background-color: white;
border-radius: 10px;
padding: 2px 8px;
color: black;
margin-right: 8px;
}
/* fieldset#over */
button.partner1 {
background-color: #DAF0FA;
}
select.partner1 {
background-color: #DAF0FA;
}
button.partner1.selected {
background-color: #5AC8FA;
}
button.partner2 {
background-color: #FFF6D2;
}
select.partner2 {
background-color: #FFF6D2;
}
button.partner2.selected {
background-color: #F9D659;
}
fieldset#over tr.batter.selected td {
background-color: #FFC3CE;
}
fieldset#over button {
min-width: 2.5rem;
}
/* fieldset#ball */
fieldset#ball h2.endover {
background-color: #FFC3CE;
margin: 0.2rem;
border-radius: 6px;
padding: 0.6rem;
}
/* fieldset#extras */
fieldset#extras span.right {
display: inline-block;
float: right;
}
/* fieldset#bowlers */
/* fieldset#batters */
fieldset#bowlers tr td {
border-bottom: 1px dotted gray;
padding-bottom: 2px;
}
fieldset#batters tr td {
border-bottom: 1px dotted gray;
padding-bottom: 2px;
}
span.markup {
display: inline-block;
border-left: dotted 1px gray;
padding: 0 4px 0 4px;
font-size: 0.8rem;
}
span.selected {
background-color: #FFC3CE;
}
div.popout {
display: none;
z-index: 100; /* high z-index */
position: fixed;
top: 0;
left: 0;
height: 100vh;
background-color: #FAFAFA;
color: #757575;
padding-left: 0.5rem;
padding-right: 0.5rem;
}
div.popout a {
text-decoration: none;
}
div.popout a.icon {
padding: 0 8px;
color: #808080;
}
div.popout a.tick {
color: #000080;
}
div.popout a.cross {
color: #800000;
}
div.popout a.icon:hover {
color: black;
}
div.popout h1 {
background-color: #FF2D55;
}
div.popout button {
margin-top: 4px;
display:block;
width:100%;
}
div.popout label {
color: #999;
}
div.popout ul {
list-style-type: none;
padding: 0;
margin: 0;
text-align: left;
}
div.popout li span {
color: #B2B2B2;
font-size: 0.9rem;
padding: 0 1rem;
}
div.popout li a {
color: #757575;
font-weight: bold;
font-size: 1rem;
display: block;
padding: 1em 1rem;
}
div.popout li a:hover {
background-color: #E1E1E1;
}
div.popout input[type="text"] {
margin: 2px 0;
padding: 2px;
font-size: 1.2rem;
}
div.popout a.move {
font-size: 1.2rem;
border: 1px dotted gray;
padding: 0 .3rem;
min-width: 1.3rem;
border-radius: 6px;
}
div.trigram {
content: "";
position: absolute;
left: 0;
display: block;
width: 16px;
top: 0;
height: 0;
-webkit-box-shadow: 1px 10px 1px 1px #69737d,1px 16px 1px 1px #69737d,1px 22px 1px 1px #69737d;
box-shadow: 0 10px 0 1px #69737d,0 16px 0 1px #69737d,0 22px 0 1px #69737d;
}
/* unkonwn */
b.stats, span.stats {
font-size: 0.9em;
display: inline-block;
width: 1rem;
text-align: right;
} | examples/cricket-score/cricket-score.css | html {
font-size: 11pt;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
div#body {
vertical-align: top;
}
div.w50 {
width: 50%;
vertical-align: top;
display: inline-block;
}
@media screen and (max-device-width: 480px) and (orientation: portrait) {
body {
width: 100vw;
}
div.w50 {
width: 100%;
display: block !important;
}
}
/*
ltBlue: 5AC8FA;
Yellow: FFCC00;
Orange: FF9500;
Lollypop: FF2D55
DarkBlue: 007AFF;
Green: 4CD964;
DarkRed: FF3B30;
Gray: 8E8E93;
*/
/* Get rid of ugly grey tap highlight */
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* give users feedback when they tap something that's tappable. */
button:active {
color: green;
}
/* Remove Glossy Looking Buttons in Safari */
button {
-webkit-appearance: carret;
-webkit-appearance: none; /* alernatively */
}
/* Disable Selection/Copy When Long Tapping */
/* Allow Text Selection For Input */
/* Better Looking Text */
body {
-webkit-touch-callout: none;
-webkit-user-select: text;
text-rendering: optimizeLegibility;
}
h1 {
margin: 0;
padding: 8px;
font-size: 1.5rem;
color: white;
}
h1 > span {
font-size: 1rem;
}
b.small, span.small {
font-size: 0.8rem;
}
a {
cursor: pointer;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
color: black;
}
select {
padding: 4px;
}
select.small {
font-size: 0.8rem;
}
button.disabled {
color: silver;
}
th {
text-align: left;
font-size: 0.8rem;
}
th.right, td.right {
text-align: right;
padding-right: 0.2rem;
}
th.small, td.small {
font-size: 0.7em;
}
fieldset {
padding: 0.35rem;
Zdisplay: inline-block;
Zwidth: 49%;
ZZZmax-width: 24rem;
vertical-align: top;
box-sizing: border-box;
}
fieldset.col2 {
width: 98%;
}
button {
height: 2rem;
min-width: 2.2rem;
background-color: white;
}
button.small {
vertical-align: top;
font-size: 0.7rem;
min-width: 0.2rem;
}
button.small.over {
min-width: 1.8rem;
}
button.wide {
min-width: 2.9rem;
}
button.selected {
background-color: #FFC3CE;
}
label {
font-size: 0.8rem;
}
label.fixed {
display: inline-block;
width: 2.8rem;
}
/* page header */
div.page-header {
background-color: #333333;
}
div.page-header a.menuicon {
font-size: 1.5rem;
color: white;
opacity: 0.75;
padding: 0 0.3rem;
}
div.page-header a.menuicon:hover {
opacity: 1;
}
span.score {
font-size: 0.8rem;
background-color: white;
border-radius: 10px;
padding: 2px 8px;
color: black;
margin-right: 8px;
}
/* fieldset#over */
button.partner1 {
background-color: #DAF0FA;
}
select.partner1 {
background-color: #DAF0FA;
}
button.partner1.selected {
background-color: #5AC8FA;
}
button.partner2 {
background-color: #FFF6D2;
}
select.partner2 {
background-color: #FFF6D2;
}
button.partner2.selected {
background-color: #F9D659;
}
fieldset#over tr.batter.selected td {
background-color: #FFC3CE;
}
fieldset#over button {
min-width: 2.5rem;
}
/* fieldset#ball */
fieldset#ball h2.endover {
background-color: #FFC3CE;
margin: 0.2rem;
border-radius: 6px;
padding: 0.6rem;
}
/* fieldset#extras */
fieldset#extras span.right {
display: inline-block;
float: right;
}
/* fieldset#bowlers */
/* fieldset#batters */
fieldset#bowlers tr td {
border-bottom: 1px dotted gray;
padding-bottom: 2px;
}
fieldset#batters tr td {
border-bottom: 1px dotted gray;
padding-bottom: 2px;
}
span.markup {
display: inline-block;
border-left: dotted 1px gray;
padding: 0 4px 0 4px;
font-size: 0.8rem;
}
span.selected {
background-color: #FFC3CE;
}
div.popout {
display: none;
z-index: 100; /* high z-index */
position: fixed;
top: 0;
left: 0;
height: 100vh;
background-color: #FAFAFA;
color: #757575;
padding-left: 0.5rem;
padding-right: 0.5rem;
}
div.popout a {
text-decoration: none;
}
div.popout a.icon {
padding: 0 8px;
color: #808080;
}
div.popout a.tick {
color: #000080;
}
div.popout a.cross {
color: #800000;
}
div.popout a.icon:hover {
color: black;
}
div.popout h1 {
background-color: #FF2D55;
}
div.popout button {
margin-top: 4px;
display:block;
width:100%;
}
div.popout label {
color: #999;
}
div.popout ul {
list-style-type: none;
padding: 0;
margin: 0;
text-align: left;
}
div.popout li span {
color: #B2B2B2;
font-size: 0.9rem;
padding: 0 1rem;
}
div.popout li a {
color: #757575;
font-weight: bold;
font-size: 1rem;
display: block;
padding: 1em 1rem;
}
div.popout li a:hover {
background-color: #E1E1E1;
}
div.popout input[type="text"] {
margin: 2px 0;
padding: 2px;
font-size: 1.2rem;
}
div.popout a.move {
font-size: 1.2rem;
border: 1px dotted gray;
padding: 0 .3rem;
min-width: 1.3rem;
border-radius: 6px;
}
div.trigram {
content: "";
position: absolute;
left: 0;
display: block;
width: 16px;
top: 0;
height: 0;
-webkit-box-shadow: 1px 10px 1px 1px #69737d,1px 16px 1px 1px #69737d,1px 22px 1px 1px #69737d;
box-shadow: 0 10px 0 1px #69737d,0 16px 0 1px #69737d,0 22px 0 1px #69737d;
}
/* unkonwn */
b.stats, span.stats {
font-size: 0.9em;
display: inline-block;
width: 1rem;
text-align: right;
} | 0.396068 | 0.090053 |
@media (min-width: 48em) {
html {
font-size: 16px;
}
}
@media (min-width: 58em) {
html {
font-size: 20px;
}
}
body {
background: #F9FAFB;
}
a. {
text-decoration: none;
}
a.button {
text-decoration: none;
}
a.button:hover {
text-decoration: none;
}
li > a {
display: inline-block;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
overflow-x: hidden;;
}
img {
display: inline-block;
margin: 0;
}
/* Grid with Skeleton
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
position: relative;
width: 100%;
/*max-width: 960px;*/
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.column,
.columns {
width: 100%;
float: left;
box-sizing: border-box;
}
.row {
max-height: 300px;
}
/* For devices larger than 400px */
@media (min-width: 400px) {
.container {
width: 85%;
padding: 0;
}
}
/* For devices larger than 550px */
@media (min-width: 550px) {
.container {
width: 80%;
}
.column,
.columns {
margin-left: 4%;
}
.column:first-child,
.columns:first-child {
margin-left: 0;
}
.one.column,
.one.columns {
width: 4.66666666667%;
}
.two.columns {
width: 13.3333333333%;
}
.three.columns {
width: 22%;
}
.four.columns {
width: 30.6666666667%;
}
.five.columns {
width: 39.3333333333%;
}
.six.columns {
width: 48%;
}
.seven.columns {
width: 56.6666666667%;
}
.eight.columns {
width: 65.3333333333%;
}
.nine.columns {
width: 74.0%;
}
.ten.columns {
width: 82.6666666667%;
}
.eleven.columns {
width: 91.3333333333%;
}
.twelve.columns {
width: 100%;
margin-left: 0;
}
.one-third.column {
width: 30.6666666667%;
}
.two-thirds.column {
width: 65.3333333333%;
}
.one-half.column {
width: 48%;
}
/* Offsets */
.offset-by-one.column,
.offset-by-one.columns {
margin-left: 8.66666666667%;
}
.offset-by-two.column,
.offset-by-two.columns {
margin-left: 17.3333333333%;
}
.offset-by-three.column,
.offset-by-three.columns {
margin-left: 26%;
}
.offset-by-four.column,
.offset-by-four.columns {
margin-left: 34.6666666667%;
}
.offset-by-five.column,
.offset-by-five.columns {
margin-left: 43.3333333333%;
}
.offset-by-six.column,
.offset-by-six.columns {
margin-left: 52%;
}
.offset-by-seven.column,
.offset-by-seven.columns {
margin-left: 60.6666666667%;
}
.offset-by-eight.column,
.offset-by-eight.columns {
margin-left: 69.3333333333%;
}
.offset-by-nine.column,
.offset-by-nine.columns {
margin-left: 78.0%;
}
.offset-by-ten.column,
.offset-by-ten.columns {
margin-left: 86.6666666667%;
}
.offset-by-eleven.column,
.offset-by-eleven.columns {
margin-left: 95.3333333333%;
}
.offset-by-one-third.column,
.offset-by-one-third.columns {
margin-left: 34.6666666667%;
}
.offset-by-two-thirds.column,
.offset-by-two-thirds.columns {
margin-left: 69.3333333333%;
}
.offset-by-one-half.column,
.offset-by-one-half.columns {
margin-left: 52%;
}
}
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
display: inline-block;
height: 38px;
padding: 0 30px;
color: #555;
text-align: center;
font-size: 11px;
font-weight: 600;
line-height: 38px;
letter-spacing: .1rem;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
background-color: transparent;
border-radius: 4px;
border: 1px solid #bbb;
cursor: pointer;
box-sizing: border-box;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
color: #333;
border-color: #888;
outline: 0;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
color: #FFF;
background-color: #33C3F0;
border-color: #33C3F0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
color: #FFF;
background-color: #1EAEDB;
border-color: #1EAEDB;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
content: "";
display: table;
clear: both;
}
/*–––––––––––––––––––––––––––––––––––––––––––––––––– */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
#logo {
width: 120px;
/*padding-top: 3px;*/
margin: 0px;
margin-right: 30px;
}
#main_nav {
top: 0px;
position: fixed;
z-index: 9999999;
width: 100%;
padding: 15px 30px;
/*padding-bottom: 4px;*/
background: rgba(255, 255, 255, 0.9);
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}
#main_nav a:hover {
text-decoration: none;
}
#mobile_menu_bar {
display: none;
}
#mobile_menu {
display: none;
}
#nav_right {
margin-top: 6px;
margin-right: 60px;
/*padding-right: 30px;*/
}
#nav_right > h2 {
display: inline;
}
#nav_right > h2 > a > i {
color: #314669;
transition: 0.3s;
}
#nav_right > h2 > a > i:hover {
transition: 0.3s;
color: #aaa;
}
#profile {
margin: 10px;
text-align: center;
display: inline-block;
padding-top: 10px;
}
#profile > p {
padding-top: 10px;
padding-left: 20px;
}
#info h3 {
color: white;
}
#info span {
color: white;
}
#context {
/* text-align: center;*/
/*margin: 30px;*/
margin-top: 50px;
width: 80%;
}
#context div {
text-align: center;
}
#profile {
text-align: left;
}
#main_lang {
text-align: center;
}
#main_lang > h1 {
display: inline;
margin: 10px;
}
#main_lang > h1 > i {
color: #8E9CB1;
}
#service {
}
#service img {
width: 300px;
}
#company {
text-align: center;
}
#company img {
display: inline-block;
height: 40px;
margin: 20px;
}
#repos_list {
text-decoration: none;
list-style: none;
}
#campus {
background-size: cover;;
background-repeat: no-repeat;
/*background-position: 0px -200px;*/
padding: 100px 0px;
background-image: url('/public/img/campus.jpg');
color: rgba(255, 255, 255, 0.9);
}
#campus h1 {
color: rgba(255, 255, 255, 0.9);
}
#google_play_button {
padding: 3px 25px;
background: white;
height: auto;
}
#google_play_button img {
display: block;
padding: 10px;
}
.banner {
/* background-image: url(img/developer.jpeg);*/
background: #061524;
background-size: cover;
text-align: center;
padding: 50px;
}
.banner h1 {
color: white;
font-weight: 400;
}
.banner p {
margin: 0px;
color: rgba(255, 255, 255, 0.7);
}
.repo {
display: inline-block;
width: 200px;
height: 200px;
padding: 30px 30px;
border: 1px solid #aaa;
border-radius: 3px;
margin: 10px;
background: #ffffff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.repo:hover {
transition: 0.1s;
border-color: #368AFF;
}
.repo > p {
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.post_url:hover {
text-decoration: none;
}
footer {
padding: 20px 100px;
background: #eee;
color: #aaa;
}
footer p {
margin: 0;
}
#footer_left {
float: left;
font-size: 18px;
}
#footer_left > a > i {
transition: 0.3s;
color: #aaa;
}
#footer_left > a > i:hover {
transition: 0.3s;
color: #ccc;
}
#footer_right {
color: #aaa;
}
@media screen and (max-width: 780px) {
#main_bg {
text-align: center;
background-image: url(../img/cover.jpg);
background-position: 0px;
background-size: cover;
padding: 70px 0px;
/* padding top : default + 68px*/
padding-top: 138px;
}
#main_nav {
text-align: center;
padding: 10px 20px;
/*border-bottom: 1px solid #e6e6e6;*/
}
#logo {
display: inline-block;
float: none;
width: 100px;
padding-top: 6px;
margin: 0px;
margin-right: 20px;
}
#mobile_menu_bar {
margin-top: 10px;
display: inline;
}
#mobile_menu_bar > h2 {
margin: 0px;
}
#nav_left {
display: none;
}
#nav_right {
display: none;
}
#mobile_menu {
/*border-top: 1px solid rgba(100, 100, 100, 0.8);*/
text-align: center;
width: 100%;
background: rgba(255, 255, 255, 0.9);
top: 66px;
position: fixed;
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}
footer {
padding: 20px 30px;
background: #eee;
color: #aaa;
}
}
#instafeed {
width: 70%;
}
#github_timeline {
padding: 0px 20%;
text-align: left;
}
#github_timeline hr {
margin: 0px;
}
#github_timeline a {
text-decoration: none;
color: #4078c0;
}
#github_timeline h1 {
display: inline;
margin: 10px;
}
.clear {
clear: both;
}
.left {
float: left;
}
.right {
float: right;
}
.btn {
margin: 20px;
display: inline-block;
width: 120px;
height: 120px;
line-height: 120px;
border: 4px solid #aaa;
border-radius: 100%;
}
.btn > p {
color: #aaa;
font-size: 18px;
}
.btn:hover {
text-decoration: none;
transition: 0.3s;
border-color: #314669
}
.btn > p:hover {
transition: 0.3s;
color: #314669
}
.ubuntu_font {
font-family: 'Ubuntu', sans-serif;
}
.insta {
/*width: auto;*/
transition: 0.1s;
padding: 10px;
padding-bottom: 0px;
/*padding: 10px;*/
margin: 5px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 0px 3px 3px 0px;
background: #f8f8f8;
}
.insta:hover {
transition: 0.1s;
border-color: #368AFF;
}
.insta > img {
margin: 0;
}
.insta_text {
width: 100%;
padding: 0 15px;
font-size: 14px;
color: #333;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.circle {
width: 100px;
height: 70px;
display: inline-block;
margin: 5px 50px;
/* border: 1px solid #333;*/
/* border-radius: 100%;*/
}
.circle > h3 {
margin-bottom: 5px;
}
.date {
display: block;
text-align: right;
margin-top: 7px;
font-size: 4px;
}
.history {
font-size: 12px;
padding: 10px 30px;
}
.img_circle {
text-align: left;
display: inline;
border-radius: 100%;
margin: 10px;
margin-bottom: 0px;
}
.span_time {
color: #888;
font-size: 16px;
padding-bottom: 10px;
} | public/css/main.css | @media (min-width: 48em) {
html {
font-size: 16px;
}
}
@media (min-width: 58em) {
html {
font-size: 20px;
}
}
body {
background: #F9FAFB;
}
a. {
text-decoration: none;
}
a.button {
text-decoration: none;
}
a.button:hover {
text-decoration: none;
}
li > a {
display: inline-block;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
overflow-x: hidden;;
}
img {
display: inline-block;
margin: 0;
}
/* Grid with Skeleton
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
position: relative;
width: 100%;
/*max-width: 960px;*/
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.column,
.columns {
width: 100%;
float: left;
box-sizing: border-box;
}
.row {
max-height: 300px;
}
/* For devices larger than 400px */
@media (min-width: 400px) {
.container {
width: 85%;
padding: 0;
}
}
/* For devices larger than 550px */
@media (min-width: 550px) {
.container {
width: 80%;
}
.column,
.columns {
margin-left: 4%;
}
.column:first-child,
.columns:first-child {
margin-left: 0;
}
.one.column,
.one.columns {
width: 4.66666666667%;
}
.two.columns {
width: 13.3333333333%;
}
.three.columns {
width: 22%;
}
.four.columns {
width: 30.6666666667%;
}
.five.columns {
width: 39.3333333333%;
}
.six.columns {
width: 48%;
}
.seven.columns {
width: 56.6666666667%;
}
.eight.columns {
width: 65.3333333333%;
}
.nine.columns {
width: 74.0%;
}
.ten.columns {
width: 82.6666666667%;
}
.eleven.columns {
width: 91.3333333333%;
}
.twelve.columns {
width: 100%;
margin-left: 0;
}
.one-third.column {
width: 30.6666666667%;
}
.two-thirds.column {
width: 65.3333333333%;
}
.one-half.column {
width: 48%;
}
/* Offsets */
.offset-by-one.column,
.offset-by-one.columns {
margin-left: 8.66666666667%;
}
.offset-by-two.column,
.offset-by-two.columns {
margin-left: 17.3333333333%;
}
.offset-by-three.column,
.offset-by-three.columns {
margin-left: 26%;
}
.offset-by-four.column,
.offset-by-four.columns {
margin-left: 34.6666666667%;
}
.offset-by-five.column,
.offset-by-five.columns {
margin-left: 43.3333333333%;
}
.offset-by-six.column,
.offset-by-six.columns {
margin-left: 52%;
}
.offset-by-seven.column,
.offset-by-seven.columns {
margin-left: 60.6666666667%;
}
.offset-by-eight.column,
.offset-by-eight.columns {
margin-left: 69.3333333333%;
}
.offset-by-nine.column,
.offset-by-nine.columns {
margin-left: 78.0%;
}
.offset-by-ten.column,
.offset-by-ten.columns {
margin-left: 86.6666666667%;
}
.offset-by-eleven.column,
.offset-by-eleven.columns {
margin-left: 95.3333333333%;
}
.offset-by-one-third.column,
.offset-by-one-third.columns {
margin-left: 34.6666666667%;
}
.offset-by-two-thirds.column,
.offset-by-two-thirds.columns {
margin-left: 69.3333333333%;
}
.offset-by-one-half.column,
.offset-by-one-half.columns {
margin-left: 52%;
}
}
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
display: inline-block;
height: 38px;
padding: 0 30px;
color: #555;
text-align: center;
font-size: 11px;
font-weight: 600;
line-height: 38px;
letter-spacing: .1rem;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
background-color: transparent;
border-radius: 4px;
border: 1px solid #bbb;
cursor: pointer;
box-sizing: border-box;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
color: #333;
border-color: #888;
outline: 0;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
color: #FFF;
background-color: #33C3F0;
border-color: #33C3F0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
color: #FFF;
background-color: #1EAEDB;
border-color: #1EAEDB;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
content: "";
display: table;
clear: both;
}
/*–––––––––––––––––––––––––––––––––––––––––––––––––– */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
#logo {
width: 120px;
/*padding-top: 3px;*/
margin: 0px;
margin-right: 30px;
}
#main_nav {
top: 0px;
position: fixed;
z-index: 9999999;
width: 100%;
padding: 15px 30px;
/*padding-bottom: 4px;*/
background: rgba(255, 255, 255, 0.9);
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}
#main_nav a:hover {
text-decoration: none;
}
#mobile_menu_bar {
display: none;
}
#mobile_menu {
display: none;
}
#nav_right {
margin-top: 6px;
margin-right: 60px;
/*padding-right: 30px;*/
}
#nav_right > h2 {
display: inline;
}
#nav_right > h2 > a > i {
color: #314669;
transition: 0.3s;
}
#nav_right > h2 > a > i:hover {
transition: 0.3s;
color: #aaa;
}
#profile {
margin: 10px;
text-align: center;
display: inline-block;
padding-top: 10px;
}
#profile > p {
padding-top: 10px;
padding-left: 20px;
}
#info h3 {
color: white;
}
#info span {
color: white;
}
#context {
/* text-align: center;*/
/*margin: 30px;*/
margin-top: 50px;
width: 80%;
}
#context div {
text-align: center;
}
#profile {
text-align: left;
}
#main_lang {
text-align: center;
}
#main_lang > h1 {
display: inline;
margin: 10px;
}
#main_lang > h1 > i {
color: #8E9CB1;
}
#service {
}
#service img {
width: 300px;
}
#company {
text-align: center;
}
#company img {
display: inline-block;
height: 40px;
margin: 20px;
}
#repos_list {
text-decoration: none;
list-style: none;
}
#campus {
background-size: cover;;
background-repeat: no-repeat;
/*background-position: 0px -200px;*/
padding: 100px 0px;
background-image: url('/public/img/campus.jpg');
color: rgba(255, 255, 255, 0.9);
}
#campus h1 {
color: rgba(255, 255, 255, 0.9);
}
#google_play_button {
padding: 3px 25px;
background: white;
height: auto;
}
#google_play_button img {
display: block;
padding: 10px;
}
.banner {
/* background-image: url(img/developer.jpeg);*/
background: #061524;
background-size: cover;
text-align: center;
padding: 50px;
}
.banner h1 {
color: white;
font-weight: 400;
}
.banner p {
margin: 0px;
color: rgba(255, 255, 255, 0.7);
}
.repo {
display: inline-block;
width: 200px;
height: 200px;
padding: 30px 30px;
border: 1px solid #aaa;
border-radius: 3px;
margin: 10px;
background: #ffffff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.repo:hover {
transition: 0.1s;
border-color: #368AFF;
}
.repo > p {
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.post_url:hover {
text-decoration: none;
}
footer {
padding: 20px 100px;
background: #eee;
color: #aaa;
}
footer p {
margin: 0;
}
#footer_left {
float: left;
font-size: 18px;
}
#footer_left > a > i {
transition: 0.3s;
color: #aaa;
}
#footer_left > a > i:hover {
transition: 0.3s;
color: #ccc;
}
#footer_right {
color: #aaa;
}
@media screen and (max-width: 780px) {
#main_bg {
text-align: center;
background-image: url(../img/cover.jpg);
background-position: 0px;
background-size: cover;
padding: 70px 0px;
/* padding top : default + 68px*/
padding-top: 138px;
}
#main_nav {
text-align: center;
padding: 10px 20px;
/*border-bottom: 1px solid #e6e6e6;*/
}
#logo {
display: inline-block;
float: none;
width: 100px;
padding-top: 6px;
margin: 0px;
margin-right: 20px;
}
#mobile_menu_bar {
margin-top: 10px;
display: inline;
}
#mobile_menu_bar > h2 {
margin: 0px;
}
#nav_left {
display: none;
}
#nav_right {
display: none;
}
#mobile_menu {
/*border-top: 1px solid rgba(100, 100, 100, 0.8);*/
text-align: center;
width: 100%;
background: rgba(255, 255, 255, 0.9);
top: 66px;
position: fixed;
box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
}
footer {
padding: 20px 30px;
background: #eee;
color: #aaa;
}
}
#instafeed {
width: 70%;
}
#github_timeline {
padding: 0px 20%;
text-align: left;
}
#github_timeline hr {
margin: 0px;
}
#github_timeline a {
text-decoration: none;
color: #4078c0;
}
#github_timeline h1 {
display: inline;
margin: 10px;
}
.clear {
clear: both;
}
.left {
float: left;
}
.right {
float: right;
}
.btn {
margin: 20px;
display: inline-block;
width: 120px;
height: 120px;
line-height: 120px;
border: 4px solid #aaa;
border-radius: 100%;
}
.btn > p {
color: #aaa;
font-size: 18px;
}
.btn:hover {
text-decoration: none;
transition: 0.3s;
border-color: #314669
}
.btn > p:hover {
transition: 0.3s;
color: #314669
}
.ubuntu_font {
font-family: 'Ubuntu', sans-serif;
}
.insta {
/*width: auto;*/
transition: 0.1s;
padding: 10px;
padding-bottom: 0px;
/*padding: 10px;*/
margin: 5px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 0px 3px 3px 0px;
background: #f8f8f8;
}
.insta:hover {
transition: 0.1s;
border-color: #368AFF;
}
.insta > img {
margin: 0;
}
.insta_text {
width: 100%;
padding: 0 15px;
font-size: 14px;
color: #333;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
.circle {
width: 100px;
height: 70px;
display: inline-block;
margin: 5px 50px;
/* border: 1px solid #333;*/
/* border-radius: 100%;*/
}
.circle > h3 {
margin-bottom: 5px;
}
.date {
display: block;
text-align: right;
margin-top: 7px;
font-size: 4px;
}
.history {
font-size: 12px;
padding: 10px 30px;
}
.img_circle {
text-align: left;
display: inline;
border-radius: 100%;
margin: 10px;
margin-bottom: 0px;
}
.span_time {
color: #888;
font-size: 16px;
padding-bottom: 10px;
} | 0.464902 | 0.122235 |
@-moz-document domain(twitter.com) {
body
{
background-color: rgb(235,240,245) !important;
}
.css-1dbjc4n.r-1u4rsef.r-9cbz99.r-t23y2h.r-1phboty.r-rs99b7.r-15d164r.r-1udh08x
{
display: none;
}
.css-1dbjc4n.r-1niwhzg.r-15d164r
{
display: none;
}
.css-1dbjc4n.r-1awozwy.r-aqfbo4.r-14lw9ot.r-18u37iz.r-1h3ijdo.r-15d164r.r-1vsu8ta.r-1xcajam.r-ipm5af.r-1ovo9ad.r-136ojw6
{
background-color: transparent;
}
.r-1b6yd1w
{
font-size: 13px;
font-weight: 500;
color: #333;
}
.r-1sp51qo
{
padding: 0;
}
.r-1w2pmg
{
min-height: 30px;
}
.r-e7q0ms
{
width: 30%;
}
.css-901oao.r-hkyrab.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-bnwqim.r-qvutc0
{
font-size: 14px;
}
.css-4rbku5.css-901oao.css-bfa6kz.r-hkyrab.r-1qd0xha.r-1b6yd1w.r-1vr29t4.r-ad9z0x.r-bcqeeo.r-qvutc0
{
font-size: 17px;
}
.r-15bsvpr
{
padding-left: 15px;
padding-right: 15px;
}
.css-901oao.r-hkyrab.r-6koalj.r-16y2uox.r-1qd0xha.r-1b6yd1w.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0
{
padding-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.css-901oao.r-hkyrab.r-1qd0xha.r-1blvdjr.r-16dba41.r-ad9z0x.r-bcqeeo.r-19yat4t.r-bnwqim.r-qvutc0
{
padding-bottom: 10px;
font-size: 16px;
}
.css-901oao.css-bfa6kz.r-hkyrab.r-1qd0xha.r-a023e6.r-vw2c0b.r-ad9z0x.r-bcqeeo.r-3s2u2q.r-qvutc0,
.css-901oao.css-bfa6kz.r-1re7ezh.r-18u37iz.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0,
.css-4rbku5.css-18t94o4.css-901oao.r-1re7ezh.r-1loqt21.r-1q142lx.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-3s2u2q.r-qvutc0
{
font-size: 14px;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-1dbjc4n.r-e84r5y.r-1or9b2r, .css-1dbjc4n.r-6337vo .css-1dbjc4n.r-e84r5y.r-1or9b2r
{
display: none;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-1dbjc4n.r-1wtj0ep.r-1sp51qo
{
display: none;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-18t94o4.css-1dbjc4n.r-1loqt21.r-utggzx.r-9qu9m4.r-o7ynqc.r-1j63xyz
{
display: none;
}
.css-1dbjc4n.r-6337vo .css-1dbjc4n.r-1wtj0ep.r-1sp51qo
{
display: none;
}
.css-1dbjc4n.r-6337vo .css-18t94o4.css-1dbjc4n.r-1loqt21.r-utggzx.r-9qu9m4.r-o7ynqc.r-1j63xyz
{
display: none;
}
} | data/usercss/173627.user.css | @-moz-document domain(twitter.com) {
body
{
background-color: rgb(235,240,245) !important;
}
.css-1dbjc4n.r-1u4rsef.r-9cbz99.r-t23y2h.r-1phboty.r-rs99b7.r-15d164r.r-1udh08x
{
display: none;
}
.css-1dbjc4n.r-1niwhzg.r-15d164r
{
display: none;
}
.css-1dbjc4n.r-1awozwy.r-aqfbo4.r-14lw9ot.r-18u37iz.r-1h3ijdo.r-15d164r.r-1vsu8ta.r-1xcajam.r-ipm5af.r-1ovo9ad.r-136ojw6
{
background-color: transparent;
}
.r-1b6yd1w
{
font-size: 13px;
font-weight: 500;
color: #333;
}
.r-1sp51qo
{
padding: 0;
}
.r-1w2pmg
{
min-height: 30px;
}
.r-e7q0ms
{
width: 30%;
}
.css-901oao.r-hkyrab.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-bnwqim.r-qvutc0
{
font-size: 14px;
}
.css-4rbku5.css-901oao.css-bfa6kz.r-hkyrab.r-1qd0xha.r-1b6yd1w.r-1vr29t4.r-ad9z0x.r-bcqeeo.r-qvutc0
{
font-size: 17px;
}
.r-15bsvpr
{
padding-left: 15px;
padding-right: 15px;
}
.css-901oao.r-hkyrab.r-6koalj.r-16y2uox.r-1qd0xha.r-1b6yd1w.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0
{
padding-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
.css-901oao.r-hkyrab.r-1qd0xha.r-1blvdjr.r-16dba41.r-ad9z0x.r-bcqeeo.r-19yat4t.r-bnwqim.r-qvutc0
{
padding-bottom: 10px;
font-size: 16px;
}
.css-901oao.css-bfa6kz.r-hkyrab.r-1qd0xha.r-a023e6.r-vw2c0b.r-ad9z0x.r-bcqeeo.r-3s2u2q.r-qvutc0,
.css-901oao.css-bfa6kz.r-1re7ezh.r-18u37iz.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0,
.css-4rbku5.css-18t94o4.css-901oao.r-1re7ezh.r-1loqt21.r-1q142lx.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-3s2u2q.r-qvutc0
{
font-size: 14px;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-1dbjc4n.r-e84r5y.r-1or9b2r, .css-1dbjc4n.r-6337vo .css-1dbjc4n.r-e84r5y.r-1or9b2r
{
display: none;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-1dbjc4n.r-1wtj0ep.r-1sp51qo
{
display: none;
}
.css-1dbjc4n.r-1jgb5lz.r-1ye8kvj.r-6337vo.r-13qz1uu .css-18t94o4.css-1dbjc4n.r-1loqt21.r-utggzx.r-9qu9m4.r-o7ynqc.r-1j63xyz
{
display: none;
}
.css-1dbjc4n.r-6337vo .css-1dbjc4n.r-1wtj0ep.r-1sp51qo
{
display: none;
}
.css-1dbjc4n.r-6337vo .css-18t94o4.css-1dbjc4n.r-1loqt21.r-utggzx.r-9qu9m4.r-o7ynqc.r-1j63xyz
{
display: none;
}
} | 0.239794 | 0.072145 |
@font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QlqiM8rebBwWg.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QkqiM8rebBwWg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Dancing Script';
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QqqiM8rebB.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.sign {
height: 100%;
min-height: 750px;
text-align: center;
font-size: 14px;
background-color: #f1f1f1
}
.sign:before {
content: "";
display: inline-block;
height: 85%;
vertical-align: middle
}
.sign .disable, .sign .disable-gray {
opacity: .5;
pointer-events: none
}
.sign .disable-gray {
background-color: #969696
}
.sign .tooltip-error {
font-size: 14px;
line-height: 25px;
white-space: nowrap;
background: none
}
.sign .tooltip-error .tooltip-inner {
max-width: 280px;
color: #333;
border: 1px solid #ea6f5a;
background-color: #fff
}
.sign .tooltip-error .tooltip-inner i {
position: static;
margin-right: 5px;
font-size: 20px;
color: #ea6f5a;
vertical-align: middle
}
.sign .tooltip-error .tooltip-inner span {
vertical-align: middle;
display: inline-block;
white-space: normal;
max-width: 230px
}
.sign .tooltip-error.right .tooltip-arrow-border {
border-right-color: #ea6f5a
}
.sign .tooltip-error.right .tooltip-arrow-bg {
left: 2px;
border-right-color: #fff
}
.sign .slide-error {
position: relative;
padding: 10px 0;
border: 1px solid #c8c8c8;
border-radius: 4px
}
.sign .slide-error i {
position: static !important;
margin-right: 10px;
color: #ea6f5a !important;
vertical-align: middle
}
.sign .slide-error span {
font-size: 15px;
vertical-align: middle
}
.sign .slide-error div {
margin-top: 10px;
font-size: 13px
}
.sign .slide-error a {
color: #3194d0
}
.sign .js-sign-up-container .slide-error {
border-bottom: none;
border-radius: 0
}
.sign .logo{
position: absolute;
top: 28px;
margin-left: 50px;
}
.sign .logo a{
font-family: "Dancing Script";
font-size:50px;
color:#EA6E59;
}
.sign .logo img {
width: 100px
}
.sign .main {
width: 400px;
margin: 60px auto 0;
padding: 50px 50px 30px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 0 8px rgba(0, 0, 0, .1);
vertical-align: middle;
display: inline-block
}
.sign .reset-title, .sign .title {
margin: 0 auto 50px;
padding: 10px;
font-weight: 400;
color: #969696
}
.sign .reset-title a, .sign .title a {
padding: 10px;
color: #969696
}
.sign .reset-title a:hover, .sign .title a:hover {
border-bottom: 2px solid #ea6f5a
}
.sign .reset-title .active, .sign .title .active {
font-weight: 700;
color: #ea6f5a;
border-bottom: 2px solid #ea6f5a
}
.sign .reset-title b, .sign .title b {
padding: 10px
}
.sign .reset-title {
color: #333;
font-weight: 700
}
.sign form {
margin-bottom: 30px
}
.sign form .input-prepend {
position: relative;
width: 100%
}
.sign form .input-prepend input {
width: 100%;
height: 50px;
margin-bottom: 0;
padding: 4px 12px 4px 35px;
border: 1px solid #c8c8c8;
border-radius: 0 0 4px 4px;
background-color: hsla(0, 0%, 71%, .1);
vertical-align: middle
}
.sign form .input-prepend i {
position: absolute;
top: 14px;
left: 10px;
font-size: 18px;
color: #969696
}
.sign form .input-prepend span {
color: #333
}
.sign form .input-prepend .ic-show {
top: 18px;
left: auto;
right: 8px;
font-size: 12px
}
.sign form .geetest-placeholder {
height: 44px;
border-radius: 4px;
background-color: hsla(0, 0%, 71%, .1);
text-align: center;
line-height: 44px;
font-size: 14px;
color: #999
}
.sign form .restyle {
margin-bottom: 0
}
.sign form .restyle input {
border-bottom: none;
border-radius: 4px 4px 0 0
}
.sign form .no-radius input {
border-radius: 0
}
.sign form .slide-security-placeholder {
height: 32px;
background-color: hsla(0, 0%, 71%, .1);
border-radius: 4px
}
.sign form .slide-security-placeholder p {
padding-top: 7px;
color: #999;
margin-right: -7px
}
.sign .overseas-btn {
font-size: 14px;
color: #999
}
.sign .overseas-btn:hover {
color: #2f2f2f
}
.sign .remember-btn {
float: left;
margin: 15px 0
}
.sign .remember-btn span {
margin-left: 5px;
font-size: 15px;
color: #969696;
vertical-align: middle
}
.sign .forget-btn {
float: right;
position: relative;
margin: 15px 0;
font-size: 14px
}
.sign .forget-btn a {
color: #999
}
.sign .forget-btn a:hover {
color: #333
}
.sign .forget-btn .dropdown-menu {
top: 20px;
left: auto;
right: 0;
border-radius: 4px
}
.sign .forget-btn .dropdown-menu a {
padding: 10px 20px;
color: #333
}
.sign #sign-in-loading {
position: relative;
width: 20px;
height: 20px;
vertical-align: middle;
margin-top: -4px;
margin-right: 2px;
display: none
}
.sign #sign-in-loading:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: transparent
}
.sign #sign-in-loading:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border-radius: 10px;
border: 2px solid #fff;
border-bottom-color: transparent;
vertical-align: middle;
-webkit-animation: rolling .8s infinite linear;
animation: rolling .8s infinite linear;
z-index: 1
}
.sign .sign-in-button, .sign .sign-up-button {
margin-top: 20px;
width: 100%;
padding: 9px 18px;
font-size: 18px;
border: none;
border-radius: 25px;
color: #fff;
background: #42c02e;
cursor: pointer;
outline: none;
display: block;
clear: both
}
.sign .sign-in-button:hover, .sign .sign-up-button:hover {
background: #3db922
}
.sign .sign-in-button {
background: #3194d0
}
.sign .sign-in-button:hover {
background: #187cb7
}
.sign .btn-in-resend, .sign .btn-up-resend {
position: absolute;
top: 7px;
right: 7px;
width: 100px;
height: 36px;
font-size: 13px;
color: #fff;
background-color: #42c02e;
border-radius: 20px;
line-height: 36px
}
.sign .btn-in-resend {
background-color: #3194d0
}
.sign .sign-up-msg {
margin: 10px 0;
padding: 0;
text-align: center;
font-size: 12px;
line-height: 20px;
color: #969696
}
.sign .sign-up-msg a, .sign .sign-up-msg a:hover {
color: #3194d0
}
.sign .overseas input {
padding-left: 110px !important
}
.sign .overseas .overseas-number {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 50px;
font-size: 18px;
color: #969696;
border-right: 1px solid #c8c8c8
}
.sign .overseas .overseas-number span {
margin-top: 17px;
padding-left: 35px;
text-align: left;
font-size: 14px;
display: block
}
.sign .overseas .dropdown-menu {
width: 100%;
max-height: 285px;
font-size: 14px;
border-radius: 0 0 4px 4px;
overflow-y: auto
}
.sign .overseas .dropdown-menu li .nation-code {
width: 65px;
display: inline-block
}
.sign .overseas .dropdown-menu li a {
padding: 6px 20px;
font-size: 14px;
line-height: 20px
}
.sign .overseas .dropdown-menu li a::hover {
color: #fff;
background-color: #f5f5f5
}
.sign .more-sign {
margin-top: 50px
}
.sign .more-sign h6 {
position: relative;
margin: 0 0 10px;
font-size: 12px;
color: #b5b5b5
}
.sign .more-sign h6:before {
left: 30px
}
.sign .more-sign h6:after, .sign .more-sign h6:before {
content: "";
border-top: 1px solid #b5b5b5;
display: block;
position: absolute;
width: 60px;
top: 5px
}
.sign .more-sign h6:after {
right: 30px
}
.sign .more-sign ul {
margin-bottom: 10px;
list-style: none
}
.sign .more-sign ul li {
margin: 0 5px;
display: inline-block
}
.sign .more-sign ul a {
width: 50px;
height: 50px;
line-height: 50px;
display: block
}
.sign .more-sign ul i {
font-size: 28px
}
.sign .more-sign .ic-weibo {
color: #e05244
}
.sign .more-sign .ic-wechat {
color: #00bb29
}
.sign .more-sign .ic-qq_connect {
color: #498ad5
}
.sign .more-sign .ic-douban {
color: #00820f
}
.sign .more-sign .ic-more {
color: #999
}
.sign .more-sign .weibo-loading {
pointer-events: none;
cursor: pointer;
position: relative
}
.sign .more-sign .weibo-loading:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #fff
}
body.reader-night-mode .sign .more-sign .weibo-loading:after {
background-color: #3f3f3f
}
.sign .more-sign .weibo-loading:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border-radius: 10px;
border: 2px solid #e05244;
border-bottom-color: transparent;
vertical-align: middle;
-webkit-animation: rolling .8s infinite linear;
animation: rolling .8s infinite linear;
z-index: 1
}
@keyframes rolling {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
@-webkit-keyframes rolling {
0% {
-webkit-transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn)
}
}
.sign .reset-password-input {
border-radius: 4px !important
}
.sign .return {
margin-left: -8px;
color: #969696
}
.sign .return:hover {
color: #333
}
.sign .return i {
margin-right: 5px
}
.sign .icheckbox_square-green {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url(//cdn2.jianshu.io/assets/radio/green-062604c1c0196db73a5dda860fdbddb0.png) no-repeat;
border: none;
cursor: pointer;
background-position: 0 0
}
.sign .icheckbox_square-green.hover {
background-position: -20px 0
}
.sign .icheckbox_square-green.checked {
background-position: -40px 0
}
.sign .icheckbox_square-green.disabled {
background-position: -60px 0;
cursor: default
}
.sign .icheckbox_square-green.checked.disabled {
background-position: -80px 0
}
@media (-webkit-min-device-pixel-ratio: 1.25),(min-resolution: 1.25dppx),(min-resolution: 120dpi) {
.sign .icheckbox_square-green {
background-image: url(//cdn2.jianshu.io/assets/radio/green@2x-7f6fb7d319eec1b0f9e6cb4bc65b1146.png);
background-size: 200px 20px
}
}
.geetest_panel_box > * {
box-sizing: content-box
}
@media (max-width: 768px) {
body {
min-width: 0
}
.sign {
height: auto;
min-height: 0;
background-color: transparent
}
.sign .logo {
display: none
}
.sign .main {
position: absolute;
left: 50%;
margin: 0 0 0 -200px;
box-shadow: none
}
}
/*# sourceMappingURL=entry-1a3678e27fe77011521b.css.map*/ | AutoParamsWeb/src/main/webapp/WEB-INF/resources/css/sign/sign.css | @font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QlqiM8rebBwWg.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QkqiM8rebBwWg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Dancing Script';
font-weight: 700;
src: local('Dancing Script Bold'), local('DancingScript-Bold'), url(http://fonts.gstatic.com/s/dancingscript/v9/If2SXTr6YS-zF4S-kcSWSVi_szpbr_QqqiM8rebB.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.sign {
height: 100%;
min-height: 750px;
text-align: center;
font-size: 14px;
background-color: #f1f1f1
}
.sign:before {
content: "";
display: inline-block;
height: 85%;
vertical-align: middle
}
.sign .disable, .sign .disable-gray {
opacity: .5;
pointer-events: none
}
.sign .disable-gray {
background-color: #969696
}
.sign .tooltip-error {
font-size: 14px;
line-height: 25px;
white-space: nowrap;
background: none
}
.sign .tooltip-error .tooltip-inner {
max-width: 280px;
color: #333;
border: 1px solid #ea6f5a;
background-color: #fff
}
.sign .tooltip-error .tooltip-inner i {
position: static;
margin-right: 5px;
font-size: 20px;
color: #ea6f5a;
vertical-align: middle
}
.sign .tooltip-error .tooltip-inner span {
vertical-align: middle;
display: inline-block;
white-space: normal;
max-width: 230px
}
.sign .tooltip-error.right .tooltip-arrow-border {
border-right-color: #ea6f5a
}
.sign .tooltip-error.right .tooltip-arrow-bg {
left: 2px;
border-right-color: #fff
}
.sign .slide-error {
position: relative;
padding: 10px 0;
border: 1px solid #c8c8c8;
border-radius: 4px
}
.sign .slide-error i {
position: static !important;
margin-right: 10px;
color: #ea6f5a !important;
vertical-align: middle
}
.sign .slide-error span {
font-size: 15px;
vertical-align: middle
}
.sign .slide-error div {
margin-top: 10px;
font-size: 13px
}
.sign .slide-error a {
color: #3194d0
}
.sign .js-sign-up-container .slide-error {
border-bottom: none;
border-radius: 0
}
.sign .logo{
position: absolute;
top: 28px;
margin-left: 50px;
}
.sign .logo a{
font-family: "Dancing Script";
font-size:50px;
color:#EA6E59;
}
.sign .logo img {
width: 100px
}
.sign .main {
width: 400px;
margin: 60px auto 0;
padding: 50px 50px 30px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 0 8px rgba(0, 0, 0, .1);
vertical-align: middle;
display: inline-block
}
.sign .reset-title, .sign .title {
margin: 0 auto 50px;
padding: 10px;
font-weight: 400;
color: #969696
}
.sign .reset-title a, .sign .title a {
padding: 10px;
color: #969696
}
.sign .reset-title a:hover, .sign .title a:hover {
border-bottom: 2px solid #ea6f5a
}
.sign .reset-title .active, .sign .title .active {
font-weight: 700;
color: #ea6f5a;
border-bottom: 2px solid #ea6f5a
}
.sign .reset-title b, .sign .title b {
padding: 10px
}
.sign .reset-title {
color: #333;
font-weight: 700
}
.sign form {
margin-bottom: 30px
}
.sign form .input-prepend {
position: relative;
width: 100%
}
.sign form .input-prepend input {
width: 100%;
height: 50px;
margin-bottom: 0;
padding: 4px 12px 4px 35px;
border: 1px solid #c8c8c8;
border-radius: 0 0 4px 4px;
background-color: hsla(0, 0%, 71%, .1);
vertical-align: middle
}
.sign form .input-prepend i {
position: absolute;
top: 14px;
left: 10px;
font-size: 18px;
color: #969696
}
.sign form .input-prepend span {
color: #333
}
.sign form .input-prepend .ic-show {
top: 18px;
left: auto;
right: 8px;
font-size: 12px
}
.sign form .geetest-placeholder {
height: 44px;
border-radius: 4px;
background-color: hsla(0, 0%, 71%, .1);
text-align: center;
line-height: 44px;
font-size: 14px;
color: #999
}
.sign form .restyle {
margin-bottom: 0
}
.sign form .restyle input {
border-bottom: none;
border-radius: 4px 4px 0 0
}
.sign form .no-radius input {
border-radius: 0
}
.sign form .slide-security-placeholder {
height: 32px;
background-color: hsla(0, 0%, 71%, .1);
border-radius: 4px
}
.sign form .slide-security-placeholder p {
padding-top: 7px;
color: #999;
margin-right: -7px
}
.sign .overseas-btn {
font-size: 14px;
color: #999
}
.sign .overseas-btn:hover {
color: #2f2f2f
}
.sign .remember-btn {
float: left;
margin: 15px 0
}
.sign .remember-btn span {
margin-left: 5px;
font-size: 15px;
color: #969696;
vertical-align: middle
}
.sign .forget-btn {
float: right;
position: relative;
margin: 15px 0;
font-size: 14px
}
.sign .forget-btn a {
color: #999
}
.sign .forget-btn a:hover {
color: #333
}
.sign .forget-btn .dropdown-menu {
top: 20px;
left: auto;
right: 0;
border-radius: 4px
}
.sign .forget-btn .dropdown-menu a {
padding: 10px 20px;
color: #333
}
.sign #sign-in-loading {
position: relative;
width: 20px;
height: 20px;
vertical-align: middle;
margin-top: -4px;
margin-right: 2px;
display: none
}
.sign #sign-in-loading:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: transparent
}
.sign #sign-in-loading:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border-radius: 10px;
border: 2px solid #fff;
border-bottom-color: transparent;
vertical-align: middle;
-webkit-animation: rolling .8s infinite linear;
animation: rolling .8s infinite linear;
z-index: 1
}
.sign .sign-in-button, .sign .sign-up-button {
margin-top: 20px;
width: 100%;
padding: 9px 18px;
font-size: 18px;
border: none;
border-radius: 25px;
color: #fff;
background: #42c02e;
cursor: pointer;
outline: none;
display: block;
clear: both
}
.sign .sign-in-button:hover, .sign .sign-up-button:hover {
background: #3db922
}
.sign .sign-in-button {
background: #3194d0
}
.sign .sign-in-button:hover {
background: #187cb7
}
.sign .btn-in-resend, .sign .btn-up-resend {
position: absolute;
top: 7px;
right: 7px;
width: 100px;
height: 36px;
font-size: 13px;
color: #fff;
background-color: #42c02e;
border-radius: 20px;
line-height: 36px
}
.sign .btn-in-resend {
background-color: #3194d0
}
.sign .sign-up-msg {
margin: 10px 0;
padding: 0;
text-align: center;
font-size: 12px;
line-height: 20px;
color: #969696
}
.sign .sign-up-msg a, .sign .sign-up-msg a:hover {
color: #3194d0
}
.sign .overseas input {
padding-left: 110px !important
}
.sign .overseas .overseas-number {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 50px;
font-size: 18px;
color: #969696;
border-right: 1px solid #c8c8c8
}
.sign .overseas .overseas-number span {
margin-top: 17px;
padding-left: 35px;
text-align: left;
font-size: 14px;
display: block
}
.sign .overseas .dropdown-menu {
width: 100%;
max-height: 285px;
font-size: 14px;
border-radius: 0 0 4px 4px;
overflow-y: auto
}
.sign .overseas .dropdown-menu li .nation-code {
width: 65px;
display: inline-block
}
.sign .overseas .dropdown-menu li a {
padding: 6px 20px;
font-size: 14px;
line-height: 20px
}
.sign .overseas .dropdown-menu li a::hover {
color: #fff;
background-color: #f5f5f5
}
.sign .more-sign {
margin-top: 50px
}
.sign .more-sign h6 {
position: relative;
margin: 0 0 10px;
font-size: 12px;
color: #b5b5b5
}
.sign .more-sign h6:before {
left: 30px
}
.sign .more-sign h6:after, .sign .more-sign h6:before {
content: "";
border-top: 1px solid #b5b5b5;
display: block;
position: absolute;
width: 60px;
top: 5px
}
.sign .more-sign h6:after {
right: 30px
}
.sign .more-sign ul {
margin-bottom: 10px;
list-style: none
}
.sign .more-sign ul li {
margin: 0 5px;
display: inline-block
}
.sign .more-sign ul a {
width: 50px;
height: 50px;
line-height: 50px;
display: block
}
.sign .more-sign ul i {
font-size: 28px
}
.sign .more-sign .ic-weibo {
color: #e05244
}
.sign .more-sign .ic-wechat {
color: #00bb29
}
.sign .more-sign .ic-qq_connect {
color: #498ad5
}
.sign .more-sign .ic-douban {
color: #00820f
}
.sign .more-sign .ic-more {
color: #999
}
.sign .more-sign .weibo-loading {
pointer-events: none;
cursor: pointer;
position: relative
}
.sign .more-sign .weibo-loading:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #fff
}
body.reader-night-mode .sign .more-sign .weibo-loading:after {
background-color: #3f3f3f
}
.sign .more-sign .weibo-loading:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border-radius: 10px;
border: 2px solid #e05244;
border-bottom-color: transparent;
vertical-align: middle;
-webkit-animation: rolling .8s infinite linear;
animation: rolling .8s infinite linear;
z-index: 1
}
@keyframes rolling {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)
}
}
@-webkit-keyframes rolling {
0% {
-webkit-transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn)
}
}
.sign .reset-password-input {
border-radius: 4px !important
}
.sign .return {
margin-left: -8px;
color: #969696
}
.sign .return:hover {
color: #333
}
.sign .return i {
margin-right: 5px
}
.sign .icheckbox_square-green {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url(//cdn2.jianshu.io/assets/radio/green-062604c1c0196db73a5dda860fdbddb0.png) no-repeat;
border: none;
cursor: pointer;
background-position: 0 0
}
.sign .icheckbox_square-green.hover {
background-position: -20px 0
}
.sign .icheckbox_square-green.checked {
background-position: -40px 0
}
.sign .icheckbox_square-green.disabled {
background-position: -60px 0;
cursor: default
}
.sign .icheckbox_square-green.checked.disabled {
background-position: -80px 0
}
@media (-webkit-min-device-pixel-ratio: 1.25),(min-resolution: 1.25dppx),(min-resolution: 120dpi) {
.sign .icheckbox_square-green {
background-image: url(//cdn2.jianshu.io/assets/radio/green@2x-7f6fb7d319eec1b0f9e6cb4bc65b1146.png);
background-size: 200px 20px
}
}
.geetest_panel_box > * {
box-sizing: content-box
}
@media (max-width: 768px) {
body {
min-width: 0
}
.sign {
height: auto;
min-height: 0;
background-color: transparent
}
.sign .logo {
display: none
}
.sign .main {
position: absolute;
left: 50%;
margin: 0 0 0 -200px;
box-shadow: none
}
}
/*# sourceMappingURL=entry-1a3678e27fe77011521b.css.map*/ | 0.431584 | 0.124798 |
.home-vertical-bar {
margin-left: 18rem;
}
.home-first-bar {
top: 1rem;
}
.home-second-bar {
top: 4.5rem;
}
.home-third-bar {
top: 16rem;
}
.home-header {
width: 43.5rem;
font-family: 'Bigelow Rules', cursive;
text-align: center;
font-size: 7rem;
height: 9rem;
margin-top: 7rem;
margin-left: 20.5rem;
}
.headshot-photo {
width: 22rem;
margin-top: 4.5rem;
float: right;
margin-right: 10.75rem;
padding: 0px;
box-shadow: -5px 5px 5px #444444;
}
.menu-div {
float: left;
width: 16rem;
margin-top: 4.5rem;
}
.menu-item {
text-align: center;
font-family: 'Bigelow Rules', cursive;
font-size: 3.75rem;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
text-align: center;
width: 16rem;
margin-left: 1rem;
background-color: #989898;
margin-bottom: 0.5rem;
z-index: 2;
box-shadow: -2px 2px 5px #444444;
display: block;
color: black;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.social-menu-item {
text-align: center;
font-family: 'Bigelow Rules', cursive;
font-size: 3.75rem;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
text-align: center;
width: 16rem;
margin-left: 1rem;
margin-bottom: 0.5rem;
z-index: 2;
display: block;
color: black;
}
.menu-item-wrapper {
text-decoration: none;
color: inherit;
}
.menu-item-wrapper:visited {
text-decoration: none;
}
.menu-item:hover {
cursor: pointer;
box-shadow: -5px 5px 5px #888888;
}
.menu-item-book {
font-size: 2rem;
width: 14rem;
margin-left: 2rem;
text-decoration: none;
color: inherit;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
#books-container-div {
display: none;
}
.social-media-icon {
height: 3.75rem;
}
#list-books-menu-option {
background-image: url('/images/books-menu-home-open.png');
background-size: 100% 100%;
} | css/home.css | .home-vertical-bar {
margin-left: 18rem;
}
.home-first-bar {
top: 1rem;
}
.home-second-bar {
top: 4.5rem;
}
.home-third-bar {
top: 16rem;
}
.home-header {
width: 43.5rem;
font-family: 'Bigelow Rules', cursive;
text-align: center;
font-size: 7rem;
height: 9rem;
margin-top: 7rem;
margin-left: 20.5rem;
}
.headshot-photo {
width: 22rem;
margin-top: 4.5rem;
float: right;
margin-right: 10.75rem;
padding: 0px;
box-shadow: -5px 5px 5px #444444;
}
.menu-div {
float: left;
width: 16rem;
margin-top: 4.5rem;
}
.menu-item {
text-align: center;
font-family: 'Bigelow Rules', cursive;
font-size: 3.75rem;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
text-align: center;
width: 16rem;
margin-left: 1rem;
background-color: #989898;
margin-bottom: 0.5rem;
z-index: 2;
box-shadow: -2px 2px 5px #444444;
display: block;
color: black;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.social-menu-item {
text-align: center;
font-family: 'Bigelow Rules', cursive;
font-size: 3.75rem;
padding-top: 0.125rem;
padding-bottom: 0.125rem;
text-align: center;
width: 16rem;
margin-left: 1rem;
margin-bottom: 0.5rem;
z-index: 2;
display: block;
color: black;
}
.menu-item-wrapper {
text-decoration: none;
color: inherit;
}
.menu-item-wrapper:visited {
text-decoration: none;
}
.menu-item:hover {
cursor: pointer;
box-shadow: -5px 5px 5px #888888;
}
.menu-item-book {
font-size: 2rem;
width: 14rem;
margin-left: 2rem;
text-decoration: none;
color: inherit;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
#books-container-div {
display: none;
}
.social-media-icon {
height: 3.75rem;
}
#list-books-menu-option {
background-image: url('/images/books-menu-home-open.png');
background-size: 100% 100%;
} | 0.158532 | 0.04679 |
@import url("bootstrap.min.css");
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans);*/
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(1.woff2) format('woff2'), url(2.woff) format('woff');
}
body {
font-family:'Open Sans', sans-serif!important;
margin: 0px;
padding: 0px;
}
html,body {
height:100%;
}
#wrap {
min-height:100%;
height:auto!important;
margin:0 auto -100px;
}
#push,#footer {
height:100px;
}
#footer {
background-color:#f5f5f5;
}
/* Main Content */
.pageTitle {
color:#6A6A6A;
}
.error {
color:#FF0000;
font-size:12px;
}
/* End of Main Content */
/* Form */
label {
font-weight: 500 !important;
}
.control-label {
font-weight: 500 !important;
}
/* End of Form */
/* Icon */
.glyphicon-ok{
color:#090;
}
.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #ddd;}
#gtable th, td {
font-size:12px;
}
.dataTable{
font-size:12px;
}
/* Navigation Menu */
.navbar-nav > li:hover > .dropdown-menu {
display: block;
}
.nav , .menu-item {
font-size:12.5px !important;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
/*.dropdown-submenu:hover>.dropdown-menu{display:block;}*/
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
/* End of Navigation Menu */
/* Both Left and Top Menu */
.navbar-default {
background-color: #002050;
border-color: #002050;
}
.navbar {
border-radius: 4px;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
/*
.navbar-default .navbar-nav > li a {
color: white;
background-color: transparent;
}
*/
.menu-head > a {
color: white !important;
background-color: transparent !important;
}
.menu-head > a :hover {
color: #333;
background-color: red;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: #002864;
}
.navbar-brand {
color: white !important;
}
.navbar {
border-radius: 0px !important;
}
.drawer-toggle {
display: block;
visibility: visible;
z-index: 1000;
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
position: fixed;
left: 0px;
top: 0px;
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4);
color: #FFF;
border: medium none;
border-radius: 0px 0px 4px;
font-size: 24px;
}
.nav-side-menu {
overflow: auto;
font-family:'Open Sans', sans-serif!important;
font-size: 12px;
font-weight: 200;
background-color: #222;
position: fixed;
top: 0px;
width: 300px;
height: 100%;
color: #e1ffff;
}
.nav-side-menu .brand {
background-color: #23282e;
line-height: 50px;
display: block;
text-align: center;
font-size: 20px;
}
.nav-side-menu .toggle-btn {
display: none;
}
.nav-side-menu ul,
.nav-side-menu li {
list-style: none;
padding: 0px;
margin: 0px;
line-height: 35px;
cursor: pointer;
}
.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
font-family: FontAwesome;
content: "\f078";
display: inline-block;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
float: right;
}
.nav-side-menu ul .active,
.nav-side-menu li .active {
border-left: 3px solid #d19b3d;
background-color: #4f5b69;
}
.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
color: #d19b3d;
}
.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
color: #d19b3d;
}
.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
background-color: #181c20;
border: none;
line-height: 28px;
border-bottom: 1px solid #23282e;
margin-left: 0px;
}
.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
background-color: #020203;
}
.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
font-family: FontAwesome;
content: "\f105";
display: inline-block;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
}
.nav-side-menu li {
padding-left: 0px;
border-left: 3px solid #2e353d;
border-bottom: 1px solid #23282e;
}
.nav-side-menu li a {
text-decoration: none;
color: #e1ffff;
}
.nav-side-menu li a i {
padding-left: 10px;
width: 20px;
padding-right: 20px;
}
.nav-side-menu li:hover {
border-left: 3px solid #d19b3d;
background-color: #4f5b69;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
@media (max-width: 767px) {
.nav-side-menu {
position: relative;
width: 100%;
margin-bottom: 10px;
}
.nav-side-menu .toggle-btn {
display: block;
cursor: pointer;
position: absolute;
right: 10px;
top: 10px;
z-index: 10 !important;
padding: 3px;
background-color: #ffffff;
color: #000;
width: 40px;
text-align: center;
}
.brand {
text-align: left !important;
font-size: 22px;
padding-left: 20px;
line-height: 50px !important;
}
}
@media (min-width: 767px) {
.nav-side-menu .menu-list .menu-content {
display: block;
}
}
.sub-menu li a {
color: #d19b3d !important;
}
/* End of Both Left and Top Menu */ | assets/css/style.css | @import url("bootstrap.min.css");
/*@import url(http://fonts.googleapis.com/css?family=Open+Sans);*/
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), local('OpenSans'), url(1.woff2) format('woff2'), url(2.woff) format('woff');
}
body {
font-family:'Open Sans', sans-serif!important;
margin: 0px;
padding: 0px;
}
html,body {
height:100%;
}
#wrap {
min-height:100%;
height:auto!important;
margin:0 auto -100px;
}
#push,#footer {
height:100px;
}
#footer {
background-color:#f5f5f5;
}
/* Main Content */
.pageTitle {
color:#6A6A6A;
}
.error {
color:#FF0000;
font-size:12px;
}
/* End of Main Content */
/* Form */
label {
font-weight: 500 !important;
}
.control-label {
font-weight: 500 !important;
}
/* End of Form */
/* Icon */
.glyphicon-ok{
color:#090;
}
.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #ddd;}
#gtable th, td {
font-size:12px;
}
.dataTable{
font-size:12px;
}
/* Navigation Menu */
.navbar-nav > li:hover > .dropdown-menu {
display: block;
}
.nav , .menu-item {
font-size:12.5px !important;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
/*.dropdown-submenu:hover>.dropdown-menu{display:block;}*/
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
/* End of Navigation Menu */
/* Both Left and Top Menu */
.navbar-default {
background-color: #002050;
border-color: #002050;
}
.navbar {
border-radius: 4px;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
/*
.navbar-default .navbar-nav > li a {
color: white;
background-color: transparent;
}
*/
.menu-head > a {
color: white !important;
background-color: transparent !important;
}
.menu-head > a :hover {
color: #333;
background-color: red;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: #002864;
}
.navbar-brand {
color: white !important;
}
.navbar {
border-radius: 0px !important;
}
.drawer-toggle {
display: block;
visibility: visible;
z-index: 1000;
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
position: fixed;
left: 0px;
top: 0px;
background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.4);
color: #FFF;
border: medium none;
border-radius: 0px 0px 4px;
font-size: 24px;
}
.nav-side-menu {
overflow: auto;
font-family:'Open Sans', sans-serif!important;
font-size: 12px;
font-weight: 200;
background-color: #222;
position: fixed;
top: 0px;
width: 300px;
height: 100%;
color: #e1ffff;
}
.nav-side-menu .brand {
background-color: #23282e;
line-height: 50px;
display: block;
text-align: center;
font-size: 20px;
}
.nav-side-menu .toggle-btn {
display: none;
}
.nav-side-menu ul,
.nav-side-menu li {
list-style: none;
padding: 0px;
margin: 0px;
line-height: 35px;
cursor: pointer;
}
.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
font-family: FontAwesome;
content: "\f078";
display: inline-block;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
float: right;
}
.nav-side-menu ul .active,
.nav-side-menu li .active {
border-left: 3px solid #d19b3d;
background-color: #4f5b69;
}
.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
color: #d19b3d;
}
.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
color: #d19b3d;
}
.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
background-color: #181c20;
border: none;
line-height: 28px;
border-bottom: 1px solid #23282e;
margin-left: 0px;
}
.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
background-color: #020203;
}
.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
font-family: FontAwesome;
content: "\f105";
display: inline-block;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
}
.nav-side-menu li {
padding-left: 0px;
border-left: 3px solid #2e353d;
border-bottom: 1px solid #23282e;
}
.nav-side-menu li a {
text-decoration: none;
color: #e1ffff;
}
.nav-side-menu li a i {
padding-left: 10px;
width: 20px;
padding-right: 20px;
}
.nav-side-menu li:hover {
border-left: 3px solid #d19b3d;
background-color: #4f5b69;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
@media (max-width: 767px) {
.nav-side-menu {
position: relative;
width: 100%;
margin-bottom: 10px;
}
.nav-side-menu .toggle-btn {
display: block;
cursor: pointer;
position: absolute;
right: 10px;
top: 10px;
z-index: 10 !important;
padding: 3px;
background-color: #ffffff;
color: #000;
width: 40px;
text-align: center;
}
.brand {
text-align: left !important;
font-size: 22px;
padding-left: 20px;
line-height: 50px !important;
}
}
@media (min-width: 767px) {
.nav-side-menu .menu-list .menu-content {
display: block;
}
}
.sub-menu li a {
color: #d19b3d !important;
}
/* End of Both Left and Top Menu */ | 0.179279 | 0.048137 |
.list-container-rounded {
border-radius: 20px;
padding: 5px 20px;
background-color: #fff;
}
.pop-color .ant-popover-content .ant-popover-inner div .ant-popover-inner-content {
padding: 0 !important;
}
.hl-box {
border: 1.2px solid rgb(122, 169, 231);
border-radius: 4px;
background-color: white;
}
.excel {
position: relative;
top: 30px;
animation: move 2s infinite ease-in-out;
}
@keyframes move {
from {
left: 0px;
}
to {
left: -100px;
opacity: 0;
}
}
.react-resizable {
position: relative;
}
.react-resizable-handle {
position: absolute;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-origin: content-box;
box-sizing: border-box;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
background-position: bottom right;
padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
bottom: 0;
left: 0;
cursor: sw-resize;
transform: rotate(90deg);
}
.react-resizable-handle-se {
bottom: 0;
right: 0;
cursor: se-resize;
}
.react-resizable-handle-nw {
top: 0;
left: 0;
cursor: nw-resize;
transform: rotate(180deg);
}
.react-resizable-handle-ne {
top: 0;
right: 0;
cursor: ne-resize;
transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
top: 50%;
margin-top: -10px;
cursor: ew-resize;
}
.react-resizable-handle-w {
left: 0;
transform: rotate(135deg);
}
.react-resizable-handle-e {
right: 0;
transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
left: 50%;
margin-left: -10px;
cursor: ns-resize;
}
.react-resizable-handle-n {
top: 0;
transform: rotate(225deg);
}
.react-resizable-handle-s {
bottom: 0;
transform: rotate(45deg);
}
.stick-em-up {
position: -webkit-sticky !important;
position: sticky !important;
top: 0;
z-index: 20;
transition: 0.22s;
}
.card-section {
max-height: 341px;
overflow: auto;
}
.ant-upload .ant-upload-btn {
padding: 5px !important;
} | client/src/core/modules/Dashboard2/components/main.css | .list-container-rounded {
border-radius: 20px;
padding: 5px 20px;
background-color: #fff;
}
.pop-color .ant-popover-content .ant-popover-inner div .ant-popover-inner-content {
padding: 0 !important;
}
.hl-box {
border: 1.2px solid rgb(122, 169, 231);
border-radius: 4px;
background-color: white;
}
.excel {
position: relative;
top: 30px;
animation: move 2s infinite ease-in-out;
}
@keyframes move {
from {
left: 0px;
}
to {
left: -100px;
opacity: 0;
}
}
.react-resizable {
position: relative;
}
.react-resizable-handle {
position: absolute;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-origin: content-box;
box-sizing: border-box;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
background-position: bottom right;
padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
bottom: 0;
left: 0;
cursor: sw-resize;
transform: rotate(90deg);
}
.react-resizable-handle-se {
bottom: 0;
right: 0;
cursor: se-resize;
}
.react-resizable-handle-nw {
top: 0;
left: 0;
cursor: nw-resize;
transform: rotate(180deg);
}
.react-resizable-handle-ne {
top: 0;
right: 0;
cursor: ne-resize;
transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
top: 50%;
margin-top: -10px;
cursor: ew-resize;
}
.react-resizable-handle-w {
left: 0;
transform: rotate(135deg);
}
.react-resizable-handle-e {
right: 0;
transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
left: 50%;
margin-left: -10px;
cursor: ns-resize;
}
.react-resizable-handle-n {
top: 0;
transform: rotate(225deg);
}
.react-resizable-handle-s {
bottom: 0;
transform: rotate(45deg);
}
.stick-em-up {
position: -webkit-sticky !important;
position: sticky !important;
top: 0;
z-index: 20;
transition: 0.22s;
}
.card-section {
max-height: 341px;
overflow: auto;
}
.ant-upload .ant-upload-btn {
padding: 5px !important;
} | 0.488527 | 0.110231 |
html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
font-family: "Open Sans", sans-serif;
font-weight: 300;
color:#444;
font-size: 1em;
line-height: 1.65em;
}
/* Sidebar */
.header {
border-right: 1px #eee solid;
height: 100%;
padding: 20% 2em 0;
text-align: center;
}
.header h1 {
font-size:1.9em;
margin-top:0.8em;
margin-bottom:0.6em;
}
.header h1 a {
color:#444;
}
.header h1 a:hover {
text-decoration:none;
}
.header #logo img {
border: none;
width:80%;
display: block;
margin: auto;
}
.header h6 {
margin-top:0.5em;
}
.header .roundlogo img {
width:9em;
height:9em;
border-radius:4.5em;
-moz-border-radius: 4.5em;
-webkit-border-radius: 4.5em;
}
.cc {
text-align: center;
}
/*********************** Content *****************/
.index-list, .singlepage {
padding: 2em 1em 0;
}
.article {
padding-bottom: 1.7em;
max-width: 56em;
}
.index-list .article {
border-bottom: 0.1em #eee solid;
}
.pagination {
margin-bottom:1em;
margin-top: 2em;
}
/*************** footer **************/
#footer {
padding: 1em 0em 2.5em 2em;
font-size:0.8em;
line-height: 1.5em;
color: #888;
}
#footer a {
font-weight:300;
color:#888;
text-decoration: underline;
}
#footer a:hover {
color:#444;
text-decoration: none;
}
p, hr, h4, h5, h6 {
margin-top: 0.9em;
margin-bottom: 0.9em;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Bree Serif", serif;
font-weight: 400 !important;
}
h1 {
font-size: 2.5em;
line-height: 1.1em;
margin-top: 0.6em;
margin-bottom: 0.6em;
}
h2 {
font-size:1.9em;
line-height: 1.2em;
margin-top: 0.7em;
margin-bottom: 0.7em;
}
h3 {
font-size:1.4em;
line-height: 1.3em;
margin-top: 0.8em;
margin-bottom: 0.8em;
}
h4 {
font-size:1.2em;
}
h5 {
font-size:1.1em;
}
h6 {
font-size:1.0em;
}
/* Page Elements */
img, iframe {
max-width: 100%;
}
a {
font-weight:700;
text-decoration:none;
color: #5cc265; /* Change Link Color */
}
a:hover {
text-decoration:underline;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
font-weight:400 !important;
}
strong {
font-weight: 700;
}
blockquote {
border-left: 0.4em solid #eee;
padding-left: 1.2em;
font-size: 1.3em;
}
hr{
border: 0;
height: 1px;
background: #eee;
}
/*ul, ol {
margin-left: 3em;
}*/
code {
font-size:1.4em;
background: #eee;
}
pre {
font-size: 0.8em;
line-height: 2em;
background: #eee;
padding: 1em;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: -moz-pre-wrap;
white-space: pre-wrap;
white-space: pre\9;
}
input {
font-size:1em;
padding: 0.3em;
}
.title {
margin-bottom: 50px;
}
.logo {
margin-bottom:2em;
}
#follow-icons .fa:hover {
color: darkgrey;
}
.sidebar-menu {
list-style: none;
margin-bottom: 2em;
padding-left: 0em;
}
.sidebar-menu-item {
display: block;
line-height: 1.75;
}
#follow-icons {
font-size: 0.7em;
margin-bottom: 1.5em;
text-align: center;
}
#follow-icons a {
color: #ccc;
}
#follow-icons span {
vertical-align:top;
margin-left:-0.15em;
margin-right:-0.15em;
}
#follow-icons span .fa-stack-1x {
font-size:1.05em;
line-height:1.9em;
}
/* Posts */
.article span.post-stamp {
color:#888;
}
h1.post-title {
margin-top:0.35em;
margin-bottom: 0.6em;
}
h3.post-title {
margin-top:0.4em;
padding-bottom:0.9em;
border-bottom: 1px solid #eee;
font-size: 1.2em;
color: #444;
}
.post-title .feature-star {
font-size: 0.9em;
}
.separator, .taglist, .feature-star {
color: #ccc;
}
.taglist a {
background-color:#ccc;
color:#fff;
display: inline-block;
line-height: 1.5em;
padding:0.3em 0.6em 0.3em 0.6em;
vertical-align:20%;
font-size:0.5em;
font-family: "Open Sans", sans-serif;
font-weight: 700 !important;
text-transform:uppercase;
letter-spacing:0.05em;
border-radius:0.25em;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
}
.taglist a:hover {
background-color: #000;
}
.article .taglist a {
background-color:#000;
}
.article .taglist {
margin-left: 3em;
}
#social-bar {
margin-top:1.5em;
background-color:#eee;
padding:0.5em;
}
#comments {
margin-top: 0.15em;
padding-bottom: 0.2em;
border-bottom: 1px solid #eee;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
/* Large Screens */
@media only screen and (min-width: 1281px) {
html, body {
font-size: 1.1em;
}
.index-list, .singlepage {
padding: 2em 3em 0;
}
}
/* Small Screens */
@media only screen and (max-width: 800px) {
body {
padding:0;
}
.header {
border-right: none;
border-bottom: 1px #eee solid;
position:relative;
height:auto;
width:auto;
text-align:center;
padding-bottom:1em;
padding-top:1em;
}
.title {
margin-bottom:0.5em
}
#content {
margin-left: 0;
padding: 2em 2em 1em 2em;
width: auto;
}
footer {
padding: 0 2.5em 2em 2.5em;
}
.logo {
display:none;
}
}
/* Tiny Screens */
@media only screen and (max-width: 320px) {
header {
padding: 1.2em 1.2em 0.6em 1.2em;
}
#content {
padding: 1.2em 1.2em 0.6em 1.2em;
}
footer {
padding: 0 1.5em 1.2em 1.5em;
}
ul, ol {
margin-left: 2em;
}
} | all-hugo-themes/hugo-theme-crisp/static/css/crisp.css | html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
font-family: "Open Sans", sans-serif;
font-weight: 300;
color:#444;
font-size: 1em;
line-height: 1.65em;
}
/* Sidebar */
.header {
border-right: 1px #eee solid;
height: 100%;
padding: 20% 2em 0;
text-align: center;
}
.header h1 {
font-size:1.9em;
margin-top:0.8em;
margin-bottom:0.6em;
}
.header h1 a {
color:#444;
}
.header h1 a:hover {
text-decoration:none;
}
.header #logo img {
border: none;
width:80%;
display: block;
margin: auto;
}
.header h6 {
margin-top:0.5em;
}
.header .roundlogo img {
width:9em;
height:9em;
border-radius:4.5em;
-moz-border-radius: 4.5em;
-webkit-border-radius: 4.5em;
}
.cc {
text-align: center;
}
/*********************** Content *****************/
.index-list, .singlepage {
padding: 2em 1em 0;
}
.article {
padding-bottom: 1.7em;
max-width: 56em;
}
.index-list .article {
border-bottom: 0.1em #eee solid;
}
.pagination {
margin-bottom:1em;
margin-top: 2em;
}
/*************** footer **************/
#footer {
padding: 1em 0em 2.5em 2em;
font-size:0.8em;
line-height: 1.5em;
color: #888;
}
#footer a {
font-weight:300;
color:#888;
text-decoration: underline;
}
#footer a:hover {
color:#444;
text-decoration: none;
}
p, hr, h4, h5, h6 {
margin-top: 0.9em;
margin-bottom: 0.9em;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Bree Serif", serif;
font-weight: 400 !important;
}
h1 {
font-size: 2.5em;
line-height: 1.1em;
margin-top: 0.6em;
margin-bottom: 0.6em;
}
h2 {
font-size:1.9em;
line-height: 1.2em;
margin-top: 0.7em;
margin-bottom: 0.7em;
}
h3 {
font-size:1.4em;
line-height: 1.3em;
margin-top: 0.8em;
margin-bottom: 0.8em;
}
h4 {
font-size:1.2em;
}
h5 {
font-size:1.1em;
}
h6 {
font-size:1.0em;
}
/* Page Elements */
img, iframe {
max-width: 100%;
}
a {
font-weight:700;
text-decoration:none;
color: #5cc265; /* Change Link Color */
}
a:hover {
text-decoration:underline;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
font-weight:400 !important;
}
strong {
font-weight: 700;
}
blockquote {
border-left: 0.4em solid #eee;
padding-left: 1.2em;
font-size: 1.3em;
}
hr{
border: 0;
height: 1px;
background: #eee;
}
/*ul, ol {
margin-left: 3em;
}*/
code {
font-size:1.4em;
background: #eee;
}
pre {
font-size: 0.8em;
line-height: 2em;
background: #eee;
padding: 1em;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: -moz-pre-wrap;
white-space: pre-wrap;
white-space: pre\9;
}
input {
font-size:1em;
padding: 0.3em;
}
.title {
margin-bottom: 50px;
}
.logo {
margin-bottom:2em;
}
#follow-icons .fa:hover {
color: darkgrey;
}
.sidebar-menu {
list-style: none;
margin-bottom: 2em;
padding-left: 0em;
}
.sidebar-menu-item {
display: block;
line-height: 1.75;
}
#follow-icons {
font-size: 0.7em;
margin-bottom: 1.5em;
text-align: center;
}
#follow-icons a {
color: #ccc;
}
#follow-icons span {
vertical-align:top;
margin-left:-0.15em;
margin-right:-0.15em;
}
#follow-icons span .fa-stack-1x {
font-size:1.05em;
line-height:1.9em;
}
/* Posts */
.article span.post-stamp {
color:#888;
}
h1.post-title {
margin-top:0.35em;
margin-bottom: 0.6em;
}
h3.post-title {
margin-top:0.4em;
padding-bottom:0.9em;
border-bottom: 1px solid #eee;
font-size: 1.2em;
color: #444;
}
.post-title .feature-star {
font-size: 0.9em;
}
.separator, .taglist, .feature-star {
color: #ccc;
}
.taglist a {
background-color:#ccc;
color:#fff;
display: inline-block;
line-height: 1.5em;
padding:0.3em 0.6em 0.3em 0.6em;
vertical-align:20%;
font-size:0.5em;
font-family: "Open Sans", sans-serif;
font-weight: 700 !important;
text-transform:uppercase;
letter-spacing:0.05em;
border-radius:0.25em;
-moz-border-radius: 0.25em;
-webkit-border-radius: 0.25em;
}
.taglist a:hover {
background-color: #000;
}
.article .taglist a {
background-color:#000;
}
.article .taglist {
margin-left: 3em;
}
#social-bar {
margin-top:1.5em;
background-color:#eee;
padding:0.5em;
}
#comments {
margin-top: 0.15em;
padding-bottom: 0.2em;
border-bottom: 1px solid #eee;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
/* Large Screens */
@media only screen and (min-width: 1281px) {
html, body {
font-size: 1.1em;
}
.index-list, .singlepage {
padding: 2em 3em 0;
}
}
/* Small Screens */
@media only screen and (max-width: 800px) {
body {
padding:0;
}
.header {
border-right: none;
border-bottom: 1px #eee solid;
position:relative;
height:auto;
width:auto;
text-align:center;
padding-bottom:1em;
padding-top:1em;
}
.title {
margin-bottom:0.5em
}
#content {
margin-left: 0;
padding: 2em 2em 1em 2em;
width: auto;
}
footer {
padding: 0 2.5em 2em 2.5em;
}
.logo {
display:none;
}
}
/* Tiny Screens */
@media only screen and (max-width: 320px) {
header {
padding: 1.2em 1.2em 0.6em 1.2em;
}
#content {
padding: 1.2em 1.2em 0.6em 1.2em;
}
footer {
padding: 0 1.5em 1.2em 1.5em;
}
ul, ol {
margin-left: 2em;
}
} | 0.230227 | 0.078678 |
* {
box-sizing: border-box;
}
:root {
box-sizing: border-box;
--powderBlue-color: #b0e0e6;
--dark-gray: rgb(51, 51, 54);
--hover-color: rgb(15, 240, 90);
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
font-family: "Stick No Bills", sans-serif;
}
h2 {
margin: 0;
}
.name-tag {
background-color: powderblue;
padding: 15px;
}
.navbar {
background-color: var(--dark-gray);
font-family: "Stick No Bills", sans-serif;
}
.nav_list {
margin: 0;
padding: 1rem 0;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav_item {
margin: 0 2rem;
list-style: none;
}
.nav_item a {
text-decoration: none;
font-size: 22px;
color: var(--powderBlue-color);
}
.nav_item a:hover {
color: var(--hover-color);
}
.hero-image {
background-image: url("./images/hero.jpg");
height: 400px;
width: 100%;
background-position: center;
background-repeat: no-repeat;
}
.wrapper {
max-width: 90%;
margin: 0 auto;
}
/* About-me ============================== */
.flex-section {
margin: 50px 0;
padding: 15px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.flex-section > h2 {
flex: 0 0 20%;
text-align: right;
padding-right: 15px;
font-size: 3vw;
line-height: 1.1;
border-right: 4px solid var(--dark-gray);
}
.flex-section > h3 {
font-size: 1.6rem;
}
.flex-section > div {
flex: 0 0 70%;
}
/* Work ====================================== */
.work-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.work-item {
/* max-height: 130px; */
min-height: 130px;
color: black;
display: flex;
align-items: flex-end;
flex-basis: 40%;
margin: 1.5em;
background-size: 150%;
text-decoration: none;
background-blend-mode: soft-light;
transition: all 0.3s;
}
.work-item:first-child {
flex-basis: 100%;
}
.work-item h3 {
font-size: 1.2rem;
}
.work-item div {
background-color: var(--powderBlue-color);
text-align: center;
}
.work-item:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.main-showcase {
background-image: url(./images/roomf.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
/* Contact ==================================== */
.contact address {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
}
.contact address a {
padding: 10px;
text-decoration: none;
font-size: 1.2rem;
font-style: normal;
color: black;
}
/* Column layout */
@media (max-width: 600px) {
.nav_item:first-child,
.nav_list,
.work-container {
flex-direction: column;
}
}
/* Row layout */
@media (min-width: 601px) {
/* <NAME> */
.nav_item:first-child {
margin-right: auto;
margin-left: 2rem;
}
}
/* Work showcase items */
.second,
.third {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
}
.second {
background-image: url(./images/pw_gen.jpg);
}
.third {
background-image: url(./images/readme_gen.png);
} | style.css | * {
box-sizing: border-box;
}
:root {
box-sizing: border-box;
--powderBlue-color: #b0e0e6;
--dark-gray: rgb(51, 51, 54);
--hover-color: rgb(15, 240, 90);
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
font-family: "Stick No Bills", sans-serif;
}
h2 {
margin: 0;
}
.name-tag {
background-color: powderblue;
padding: 15px;
}
.navbar {
background-color: var(--dark-gray);
font-family: "Stick No Bills", sans-serif;
}
.nav_list {
margin: 0;
padding: 1rem 0;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav_item {
margin: 0 2rem;
list-style: none;
}
.nav_item a {
text-decoration: none;
font-size: 22px;
color: var(--powderBlue-color);
}
.nav_item a:hover {
color: var(--hover-color);
}
.hero-image {
background-image: url("./images/hero.jpg");
height: 400px;
width: 100%;
background-position: center;
background-repeat: no-repeat;
}
.wrapper {
max-width: 90%;
margin: 0 auto;
}
/* About-me ============================== */
.flex-section {
margin: 50px 0;
padding: 15px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.flex-section > h2 {
flex: 0 0 20%;
text-align: right;
padding-right: 15px;
font-size: 3vw;
line-height: 1.1;
border-right: 4px solid var(--dark-gray);
}
.flex-section > h3 {
font-size: 1.6rem;
}
.flex-section > div {
flex: 0 0 70%;
}
/* Work ====================================== */
.work-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.work-item {
/* max-height: 130px; */
min-height: 130px;
color: black;
display: flex;
align-items: flex-end;
flex-basis: 40%;
margin: 1.5em;
background-size: 150%;
text-decoration: none;
background-blend-mode: soft-light;
transition: all 0.3s;
}
.work-item:first-child {
flex-basis: 100%;
}
.work-item h3 {
font-size: 1.2rem;
}
.work-item div {
background-color: var(--powderBlue-color);
text-align: center;
}
.work-item:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.main-showcase {
background-image: url(./images/roomf.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
/* Contact ==================================== */
.contact address {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
}
.contact address a {
padding: 10px;
text-decoration: none;
font-size: 1.2rem;
font-style: normal;
color: black;
}
/* Column layout */
@media (max-width: 600px) {
.nav_item:first-child,
.nav_list,
.work-container {
flex-direction: column;
}
}
/* Row layout */
@media (min-width: 601px) {
/* <NAME> */
.nav_item:first-child {
margin-right: auto;
margin-left: 2rem;
}
}
/* Work showcase items */
.second,
.third {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 200px;
}
.second {
background-image: url(./images/pw_gen.jpg);
}
.third {
background-image: url(./images/readme_gen.png);
} | 0.469763 | 0.14137 |
body {
background-color: #290000;
}
.fixed{
position: fixed;
z-index:1000000;
top: -20px;
width: 110%;
}
.navigation{
margin-right: -15px;
margin-left: -15px;
margin-top: 20px;
background-color: #290000;
}
ul li{
float: left;
margin: 10px;
list-style-type: none;
}
a{
color: #ffffff;
text-decoration: none;
}
a.hover{
background-color: #76c38f;
text-decoration: none;
color: #ffffff
}
.btn{
background-color: #76c38f;
border-color: #76c38f;
}
.col-md-6{
background-color:#290000;
margin: 50px;
color: #ffffff ;
padding-top: 100px;
padding-bottom: 160px
}
.circle{
width:380px;
height:380px;
margin-top:100px;
padding-bottom:50px
}
.col-md-31{
width: 20% !important;
color: #000000;
background-color: #ffffff;
border-radius: 7px;
text-align: center;
margin: 27px;
margin-top: 120px;
margin-bottom: 60px
}
.col-ma-3 .hover{
background-color: #76c38f
}
.col-md-33{
width: 20% !important;
color: #ffffff;
border-radius: 7px;
text-align: left;
margin: 5px;
margin-top: 40px;
}
.line{
border: 1px;
box-shadow: 0 5px 5px -5px #333;
}
.green{
color: #76c38f;
}
.copy{
background-color: #2b2b2b;
color: #ffffff;
height: 20px;
position: fixed;
bottom: 0px;
width: 110%;
left: 0px
}
.footer{
background-color: #2b2b2b !important;
color:#ffffff;
text-align: left;
padding-left: 200px;
}
.form{
margin-top: 30px;
text-rendering: optimizeLegibility;
}
input[type=text] ,textarea{
background-color: #222222;
color: #aa9f9f;
border-color: transparent;
border-radius: 3px;
margin: 3px;
}
input[type=submit] {
margin-top: 20px;
background-color: #76c38f;
color: #ffffff;
background-color: #76c38f;
border-radius: 10px
}
h6{
padding-bottom: 15px;
margin-left: 50px;
}
.fullWidth{
position: absolute;
width: 100%;
margin-left: -120px
}
.col-md-4{
margin-bottom: 20px;
}
.picsRow1{
position: absolute;
width: 100%;
background-color: #660000;
bottom: -1200px;
left: 0px
}
.picsRow2{
position: absolute;
width: 100%;
background-color: #660000;
bottom: -1300px;
left: 0px
}
.full{
background-color: #660000;
width: 1348px;
margin-left: -120px ;
padding-left: 50px;
} | css/styles.css | body {
background-color: #290000;
}
.fixed{
position: fixed;
z-index:1000000;
top: -20px;
width: 110%;
}
.navigation{
margin-right: -15px;
margin-left: -15px;
margin-top: 20px;
background-color: #290000;
}
ul li{
float: left;
margin: 10px;
list-style-type: none;
}
a{
color: #ffffff;
text-decoration: none;
}
a.hover{
background-color: #76c38f;
text-decoration: none;
color: #ffffff
}
.btn{
background-color: #76c38f;
border-color: #76c38f;
}
.col-md-6{
background-color:#290000;
margin: 50px;
color: #ffffff ;
padding-top: 100px;
padding-bottom: 160px
}
.circle{
width:380px;
height:380px;
margin-top:100px;
padding-bottom:50px
}
.col-md-31{
width: 20% !important;
color: #000000;
background-color: #ffffff;
border-radius: 7px;
text-align: center;
margin: 27px;
margin-top: 120px;
margin-bottom: 60px
}
.col-ma-3 .hover{
background-color: #76c38f
}
.col-md-33{
width: 20% !important;
color: #ffffff;
border-radius: 7px;
text-align: left;
margin: 5px;
margin-top: 40px;
}
.line{
border: 1px;
box-shadow: 0 5px 5px -5px #333;
}
.green{
color: #76c38f;
}
.copy{
background-color: #2b2b2b;
color: #ffffff;
height: 20px;
position: fixed;
bottom: 0px;
width: 110%;
left: 0px
}
.footer{
background-color: #2b2b2b !important;
color:#ffffff;
text-align: left;
padding-left: 200px;
}
.form{
margin-top: 30px;
text-rendering: optimizeLegibility;
}
input[type=text] ,textarea{
background-color: #222222;
color: #aa9f9f;
border-color: transparent;
border-radius: 3px;
margin: 3px;
}
input[type=submit] {
margin-top: 20px;
background-color: #76c38f;
color: #ffffff;
background-color: #76c38f;
border-radius: 10px
}
h6{
padding-bottom: 15px;
margin-left: 50px;
}
.fullWidth{
position: absolute;
width: 100%;
margin-left: -120px
}
.col-md-4{
margin-bottom: 20px;
}
.picsRow1{
position: absolute;
width: 100%;
background-color: #660000;
bottom: -1200px;
left: 0px
}
.picsRow2{
position: absolute;
width: 100%;
background-color: #660000;
bottom: -1300px;
left: 0px
}
.full{
background-color: #660000;
width: 1348px;
margin-left: -120px ;
padding-left: 50px;
} | 0.374562 | 0.07024 |
:root {
--background: #f2f2f2;
--laranja-claro: #f28123;
--vermelho: #B90404;
--text-color: #868686;
}
.Dashboard {
background-color: var(--background);
height: 100vh;
}
/* -------Div do Grafico------- */
.tituloGrafico{
background-image: linear-gradient(180deg, var(--laranja-claro), var(--vermelho));
color: white;
display:flex;
flex-direction: column;
justify-content: center;
height: 7vh;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
}
.h3titulo{
text-align: center;
color: white;
}
.divGrafico{
margin-top: 10vh;
}
.grafico{
background-color: white;
margin-left: 5vw;
height: 73vh;
width:47vw;
border-color: var(--vermelho);
border-style: solid;
border-width: 1px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
/* position: absolute;
margin-top: -52vh; */
}
.Dashboard{
display:flex;
flex-direction: row;
}
.listaDash{
margin-left: 2vw;
}
.divsQnt{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.userTitle{
background-image: linear-gradient(180deg, var(--laranja-claro), var(--vermelho));
width: 19.5vw;
height: 7vh;
margin-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
}
.numero{
background-color: white;
color: var(--text-color);
width: 19.5vw;
height: 7vh;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.listaDoacoes{
margin-top: 5vh;
display:flex;
flex-direction: column;
}
.ultimasDoacoes{
height: 52.5vh;
margin-top: 0.5vh;
direction: rtl;
text-align: left;
overflow: auto;
margin-left: 10px;
padding-right: 8px;
}
.infoDoacao{
margin-left: 10px;
}
/* Barra de Rolamento */
.ultimasDoacoes::-webkit-scrollbar{
width: 8px;
}
.ultimasDoacoes::-webkit-scrollbar-thumb
{
background-color: rgba(136,136,136,0.4);
}
.bottomList{
height: 3px;
width: 30vw;
background-image: linear-gradient(to right , var(--laranja-claro), var(--vermelho));
margin-right: 5vw;
}
.testandoDiv{
height: 54vh;
width:40vw;
background-color: white;
border-color: var(--vermelho);
border-style: solid;
border-width: 1px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
} | Masang/Web/masang-web/src/pages/Dashboard/Dash.css | :root {
--background: #f2f2f2;
--laranja-claro: #f28123;
--vermelho: #B90404;
--text-color: #868686;
}
.Dashboard {
background-color: var(--background);
height: 100vh;
}
/* -------Div do Grafico------- */
.tituloGrafico{
background-image: linear-gradient(180deg, var(--laranja-claro), var(--vermelho));
color: white;
display:flex;
flex-direction: column;
justify-content: center;
height: 7vh;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
}
.h3titulo{
text-align: center;
color: white;
}
.divGrafico{
margin-top: 10vh;
}
.grafico{
background-color: white;
margin-left: 5vw;
height: 73vh;
width:47vw;
border-color: var(--vermelho);
border-style: solid;
border-width: 1px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
/* position: absolute;
margin-top: -52vh; */
}
.Dashboard{
display:flex;
flex-direction: row;
}
.listaDash{
margin-left: 2vw;
}
.divsQnt{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.userTitle{
background-image: linear-gradient(180deg, var(--laranja-claro), var(--vermelho));
width: 19.5vw;
height: 7vh;
margin-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
}
.numero{
background-color: white;
color: var(--text-color);
width: 19.5vw;
height: 7vh;
border-style: solid;
border-width: 1px;
border-color: var(--vermelho);
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.listaDoacoes{
margin-top: 5vh;
display:flex;
flex-direction: column;
}
.ultimasDoacoes{
height: 52.5vh;
margin-top: 0.5vh;
direction: rtl;
text-align: left;
overflow: auto;
margin-left: 10px;
padding-right: 8px;
}
.infoDoacao{
margin-left: 10px;
}
/* Barra de Rolamento */
.ultimasDoacoes::-webkit-scrollbar{
width: 8px;
}
.ultimasDoacoes::-webkit-scrollbar-thumb
{
background-color: rgba(136,136,136,0.4);
}
.bottomList{
height: 3px;
width: 30vw;
background-image: linear-gradient(to right , var(--laranja-claro), var(--vermelho));
margin-right: 5vw;
}
.testandoDiv{
height: 54vh;
width:40vw;
background-color: white;
border-color: var(--vermelho);
border-style: solid;
border-width: 1px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
} | 0.579281 | 0.180305 |
@font-face {
font-family: 'verbmedium';
src: url('../../fonts/verb-medium-webfont.eot');
src: url('../../fonts/verb-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/verb-medium-webfont.woff2') format('woff2'),
url('../../fonts/verb-medium-webfont.woff') format('woff'),
url('../../fonts/verb-medium-webfont.ttf') format('truetype'),
url('../../fonts/verb-medium-webfont.svg#verbmedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'verbregular';
src: url('../../fonts/verb-regular-webfont.eot');
src: url('../../fonts/verb-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/verb-regular-webfont.woff2') format('woff2'),
url('../../fonts/verb-regular-webfont.woff') format('woff'),
url('../../fonts/verb-regular-webfont.ttf') format('truetype'),
url('../../fonts/verb-regular-webfont.svg#verbregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'brandon_grotesquebold';
src: url('../../fonts/brandon_bld-webfont.eot');
src: url('../../fonts/brandon_bld-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/brandon_bld-webfont.woff2') format('woff2'),
url('../../fonts/brandon_bld-webfont.woff') format('woff'),
url('../../fonts/brandon_bld-webfont.ttf') format('truetype'),
url('../../fonts/brandon_bld-webfont.svg#brandon_grotesquebold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'brandon_grotesquemedium';
src: url('../../fonts/brandon_med-webfont.eot');
src: url('../../fonts/brandon_med-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/brandon_med-webfont.woff2') format('woff2'),
url('../../fonts/brandon_med-webfont.woff') format('woff'),
url('../../fonts/brandon_med-webfont.ttf') format('truetype'),
url('../../fonts/brandon_med-webfont.svg#brandon_grotesquemedium') format('svg');
font-weight: normal;
font-style: normal;
} | resources/assets/css/fonts.css | @font-face {
font-family: 'verbmedium';
src: url('../../fonts/verb-medium-webfont.eot');
src: url('../../fonts/verb-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/verb-medium-webfont.woff2') format('woff2'),
url('../../fonts/verb-medium-webfont.woff') format('woff'),
url('../../fonts/verb-medium-webfont.ttf') format('truetype'),
url('../../fonts/verb-medium-webfont.svg#verbmedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'verbregular';
src: url('../../fonts/verb-regular-webfont.eot');
src: url('../../fonts/verb-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/verb-regular-webfont.woff2') format('woff2'),
url('../../fonts/verb-regular-webfont.woff') format('woff'),
url('../../fonts/verb-regular-webfont.ttf') format('truetype'),
url('../../fonts/verb-regular-webfont.svg#verbregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'brandon_grotesquebold';
src: url('../../fonts/brandon_bld-webfont.eot');
src: url('../../fonts/brandon_bld-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/brandon_bld-webfont.woff2') format('woff2'),
url('../../fonts/brandon_bld-webfont.woff') format('woff'),
url('../../fonts/brandon_bld-webfont.ttf') format('truetype'),
url('../../fonts/brandon_bld-webfont.svg#brandon_grotesquebold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'brandon_grotesquemedium';
src: url('../../fonts/brandon_med-webfont.eot');
src: url('../../fonts/brandon_med-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/brandon_med-webfont.woff2') format('woff2'),
url('../../fonts/brandon_med-webfont.woff') format('woff'),
url('../../fonts/brandon_med-webfont.ttf') format('truetype'),
url('../../fonts/brandon_med-webfont.svg#brandon_grotesquemedium') format('svg');
font-weight: normal;
font-style: normal;
} | 0.393851 | 0.044995 |
header {
padding: 156px 0 100px;
}
section {
padding: 150px 0;
}
.home-body {
background-color: rgb(189, 192, 196);
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid #eeeeee;
border-radius: 0.25rem;
}
.card-profile {
margin-top: 30px;
text-align: center;
}
.card-profile .card-avatar {
margin: -50px auto 0;
border-radius: 50%;
overflow: hidden;
padding: 0;
box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56),
0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.card-profile .card-avatar + .card-body {
margin-top: 15px;
}
.card-profile .card-avatar img {
width: 100%;
height: auto;
}
.card-profile .card-avatar {
max-width: 130px;
max-height: 130px;
}
.card-plain .card-header:not(.card-avatar) {
margin-left: 0;
margin-right: 0;
}
.card-title {
margin-bottom: 0.75rem;
}
.card .card-category {
margin-top: 10px;
}
.card .card-category .material-icons {
position: relative;
top: 8px;
line-height: 0;
}
.description,
.card-description,
.footer-big p {
color: #999999;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: #fff;
border-bottom: 1px solid #eeeeee;
}
.card .card-header-warning .card-icon,
.card .card-header-warning .card-text,
.card .card-header-warning:not(.card-header-icon):not(.card-header-text),
.card.bg-warning,
.card.card-rotate.bg-warning .front,
.card.card-rotate.bg-warning .back {
background: linear-gradient(60deg, #ffa726, #fb8c00);
}
.card .card-header {
border-bottom: none;
background: transparent;
}
.card .card-header .title {
color: #fff;
}
.card-group > .card:only-child .card-img-top,
.card-group > .card:only-child .card-header {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
table {
border-collapse: collapse;
}
.table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.card-shadow{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.header{
color: #0099ff;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
}
.pasword{
margin: 10;
} | public/css/nav.css | header {
padding: 156px 0 100px;
}
section {
padding: 150px 0;
}
.home-body {
background-color: rgb(189, 192, 196);
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid #eeeeee;
border-radius: 0.25rem;
}
.card-profile {
margin-top: 30px;
text-align: center;
}
.card-profile .card-avatar {
margin: -50px auto 0;
border-radius: 50%;
overflow: hidden;
padding: 0;
box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56),
0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.card-profile .card-avatar + .card-body {
margin-top: 15px;
}
.card-profile .card-avatar img {
width: 100%;
height: auto;
}
.card-profile .card-avatar {
max-width: 130px;
max-height: 130px;
}
.card-plain .card-header:not(.card-avatar) {
margin-left: 0;
margin-right: 0;
}
.card-title {
margin-bottom: 0.75rem;
}
.card .card-category {
margin-top: 10px;
}
.card .card-category .material-icons {
position: relative;
top: 8px;
line-height: 0;
}
.description,
.card-description,
.footer-big p {
color: #999999;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: #fff;
border-bottom: 1px solid #eeeeee;
}
.card .card-header-warning .card-icon,
.card .card-header-warning .card-text,
.card .card-header-warning:not(.card-header-icon):not(.card-header-text),
.card.bg-warning,
.card.card-rotate.bg-warning .front,
.card.card-rotate.bg-warning .back {
background: linear-gradient(60deg, #ffa726, #fb8c00);
}
.card .card-header {
border-bottom: none;
background: transparent;
}
.card .card-header .title {
color: #fff;
}
.card-group > .card:only-child .card-img-top,
.card-group > .card:only-child .card-header {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
table {
border-collapse: collapse;
}
.table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.card-shadow{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.header{
color: #0099ff;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
}
.pasword{
margin: 10;
} | 0.475118 | 0.116814 |
@charset "utf-8";
/* CSS Document */
@font-face {
font-family:'MuseoSans';
src: url('../../fonts/MuseoSansCyrl_0.otf'); /* IE9 Compat Modes */
src: url('../../fonts/MuseoSansCyrl_0.otf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../../fonts/MuseoSansCyrl_0.otf') format('woff2'), /* Super Modern Browsers */
url('../../fonts/MuseoSansCyrl_0.otf') format('woff'), /* Pretty Modern Browsers */
url('../../fonts/MuseoSansCyrl_0.otf') format('truetype'), /* Safari, Android, iOS */
url('../../fonts/MuseoSansCyrl_0.otf#svgFontName') format('svg'); /* Legacy iOS */
}
body{margin:0px; padding:0px; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-weight:300;}
img{max-width:100%;}
a:focus{outline:none;}
.mobile_view{display:none;}
.header_row{width:100%; position:relative;}
.logo{margin:0px; position:absolute; top:-30px; left:0px;}
.top_col{margin:15px 0px; float:right;}
.phone{background:url(../../images/front/phone-icon.png) 0 4px no-repeat; color:#888; font-size:16px; padding-left:25px; width:auto; float:left;}
.phone a{color:#888; display:inline-block;}
.phone a:hover{color:#888; text-decoration:none;}
.mail{background:url(../../images/front/msg-icon.png) 0 5px no-repeat; color:#888; font-size:16px; padding-left:25px; width:auto; float:left; margin:0px 50px;}
.mail a{color:#888;}
.social_tab{float:left; margin-top:3px;}
.social_tab a{ float:left; margin:0px 5px; text-indent:-9999px;}
.social_tab a.fb{background:url(../../images/front/social-icons.png) 0 0 no-repeat; width:10px; height:20px;}
.social_tab a.tw{background:url(../../images/front/social-icons.png) -20px 0px no-repeat; width:25px; height:20px;}
.social_tab a.gl{background:url(../../images/front/social-icons.png) -50px 0px no-repeat; width:30px; height:20px;}
#navigation-menu{width:100%; float:left;}
.navbar {float:right; width:100%;}
.navbar ul{margin:0px;}
.navbar ul li{margin:0px 10px;}
.navbar ul li:last-child{margin-right:0px;}
.navbar ul li a{font-size:18px; color:#474747; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-weight:300;}
.navbar ul li a:hover, .navbar ul li.active a{color:#ec121c !important; background:none !important;}
.navbar-default{background:#FFF !important;}
.menu {left: 0px !important; width: 100% !important; border-radius:0 !important;}
.cloned{background:#f1f1f1 !important; box-shadow:#333 3px 0px 5px !important; padding:10px 0px;}
.cloned .logo{top:8px; width:100px; left:20px;}
.back_btn{background:#FFF; border-radius:100%; border:#999 2px solid; position:fixed; bottom:70px; right:10px; padding: 10px 13px;}
.banner{width:100%; float:left; text-align:center; position:relative;}
.banner img{width:100%;}
/*.banner h1{position:absolute; top:40%; border:0px; left:0px; right:0px; text-align:center; font-size:56px; color:#FFF; font-weight:300;}
.banner span{background:#ec121c; padding:5px 30px; border-radius:15px; display:inline-block; font-weight:400;}*/
.banner h1{position:absolute; width:100%; top:38%; border:0px; left:0px; right:0px; padding:20px 0px; text-align:left; font-size:46px; color:#FFF; font-weight:300; line-height:60px; text-align:center;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0b1d35+0,7db9e8+100&1+0,0+100 */
background: -moz-linear-gradient(left, rgba(11,29,53,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(11,29,53,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(11,29,53,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1d35', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */
}
.banner h1 span{width:100%; float:left; padding-left:50px;}
.banner-inner{width:100%; text-align:center; background:#0B1D34; float:left; padding:50px 0px;}
.banner-inner h1{color:#FFF; line-height:auto; margin:0px; padding:0px;}
/*.mPS2id-target-first{margin-top:120px;}
.mPS2id-target-last{margin-top:120px;}*/
.first_row{margin-top:100px;}
.first_col{margin-top:50px;}
.first_row h2{font-size:22px; line-height:28px; color:#ec121c; font-weight:300;}
.first_row p{ font-size:16px; line-height:26px; color:#999; font-weight:300; text-align:justify;}
.first_row .icon_left{margin-top:50px; text-align:right;}
.first_row .icon_right{margin-top:50px; text-align:left;}
.second_row{margin-top:120px;}
.content_border{border-bottom:#333 3px solid;}
.second_row h3{font-size:34px; color:#454545; font-weight:300; text-align:justify;}
.second_row h3.align_right{text-align:right;}
.second_row h4{font-size:26px; color:#333; font-weight:200; letter-spacing:2px;}
.second_row p{font-size:16px; color:#999; font-weight:300; text-align:justify;}
.porfolio_row{background:#282b8f; padding:50px 0px; text-align:center; clear:both; margin-bottom:80px; margin-top:60px;}
.porfolio_row h5{font-size:2vw; color:#FFF; font-weight:700; line-height:24px; float:left; text-align:left;}
.porfolio_row h5 span{font-size:1vw; font-weight:300; color:#FFF;}
.porfolio_row img{ margin-left:10px; height:80px; width:auto;}
.porfolio_row .portfolio_col{margin:0px auto; display:inline-block;}
.product_row{margin-top:100px; text-align:center; margin-bottom:0px;}
.product_row h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:50px;}
.product_row figure{display:inline-block; border:#E3E3E3 1px solid; padding:30px 40px; margin:5px}
.our_team{margin-top:120px; float:left;}
.team_box{ text-align:center; float:left; background:#f9f9f9; padding:40px 0 20px 0px; border:#CCC 1px solid; border-radius:10px; transition: 0.2s; min-height:480px !important;}
.team_box:hover{/*background:#282B8F;*/ background:#E5EFF9 ; box-shadow:#000 0px 0px 8px;}
.team_box .profile_img{width:150px; height:150px; border-radius:150px; background:#eaeaea; display:inline-block; border:#CCC 1px solid; overflow:hidden;}
.team_box:hover .profile_img{border:#999 1px solid;}
.team_box strong{width:100%; text-align:center; float:left; font-size:24px; color:#282B8F; margin:10px 0px; font-weight:300;}
/*.team_box:hover strong, .team_box:hover span, .team_box:hover p{color:#FFF;}*/
.team_box span{width:100%; text-align:center; float:left; font-size:18px; color:#333; margin:0px 0px; font-weight:normal;}
.team_box p{width:100%; text-align:center; float:left; font-size:16px; color:#666; margin:10px 0px; font-weight:300;}
.our_team h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:80px;}
.social_tab1{width:100%; text-align:center; float:left; margin-top:20px;}
.social_tab1 a{margin:0px 5px; text-indent:-9999px; display:inline-block; border:#999 1px solid;}
.social_tab1 a.fb{background:#FFF url(../../images/front/social-icons.png) 13px 9px no-repeat; width:35px; height:35px; border-radius:35px;}
.social_tab1 a.tw{background:#FFF url(../../images/front/social-icons.png) -14px 10px no-repeat; width:35px; height:35px; border-radius:35px;}
.social_tab1 a.gl{background:#FFF url(../../images/front/social-icons.png) -46px 9px no-repeat; width:35px; height:35px; border-radius:35px;}
.tracking_main{text-align:center;}
.tracking_row{text-align:center; position:absolute; display:block; text-align:center; padding:80px 0px; left:0px; width:100%;}
.tracking_cls{width:100%; margin:0px; display:inline-block; background:url(../../images/front/tracking-bg.png) repeat; border:#585860 1px solid; border-radius:10px; padding-bottom:30px; padding:20px 50px;}
.tracking_row h6{/*background:#282B8F;*/ text-align:center; color:#FFF; font-size:40px; font-weight:300; padding:20px 0px; width:100%; float:left; margin:20px 0;}
.tracking_cls p{color:#FFF; width:100%; margin:40px 0; text-align:center; font-size:20px; background:#ED1C24; padding:20px; border:#FFF 1px dashed;}
.tracking_cls p strong{font-size:22px; font-weight:300;}
centered{width:100%; margin-top:0px; float:left; text-align:center; padding:30px 40px; /*background:#f1f1f1;*/}
.tracking_cls .input-group{padding:0px; width: 100%;}
.tracking_cls .form-control{height:45px;}
.tracking_cls .btn-default{height:45px; background:#282b8f; color:#FFF;}
.tracking_cls .btn-default:hover{height:45px; background:#ED1C24; color:#FFF; border:#FFF 1px solid}
.tracking_cls form{width: 100%; float: left;}
#track_btn {width: auto; float: right; position: relative; top: -45px; z-index: 99}
.main_title{width:100%; float:left;}
.main_title h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:20px; text-align:center; font-family:'MuseoSans', Arial, Helvetica, sans-serif; text-transform:uppercase;}
.about-us{margin-top:130px; float:left;}
.content_txt{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; text-align:center; margin-bottom:50px;}
.about_box{border:#E7E7E7 1px solid; background:#F5F5F5 ; padding:20px 0px; transition:0.2s; border-radius:10px; margin-bottom:20px; clear:both; float:left; min-height:300px !important;}
.about_box:hover{border:#CCC 1px solid; background:#e5eff9; box-shadow:#000 0 0 5px;}
.about_box strong{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:20px; text-align:center; margin-bottom:20px; font-weight:600}
.about_box p{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; text-align:center; margin-bottom:50px;}
.contact_us_row{margin-top:50px;}
.map{width:100%; float:left; margin:50px 0px; border:#CCC 1px solid; padding:2px; box-sizing:border-box;}
.map iframe{width:100%;}
.address_col strong{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:20px; color:#2D3092; margin-bottom:5px; width:100%; float:left;}
.contact_us_row p{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; color:#333;}
.c-phone{color:#333;}
.c-phone:hover{color:#333; text-decoration:none;}
.help_accordian{margin:80px 0px; float:left; width:100%;}
.contact_form{width:100%; padding:20px 40px; background:#F1F1F1; border-radius:10px; border:#CCC 1px solid; margin-bottom:50px;}
.contact_form .form-group{width:48%; float:left; margin-bottom:10px;}
.contact_form .form-group:nth-child(even){float:right;}
.contact_form .field-contactform-remark{width:100%; margin-bottom:20px;}
.contact_form label{font-size:16px; font-weight:300;}
.contact_form .form-control{width:100%; float:left; box-shadow:none; height:40px;}
.contact_form .form-control:focus{box-shadow:none;}
.contact_form textarea.form-control{height:120px;}
.contact_form p.help-block-error{color:#ED1D24; font-size:12px;}
.contact_form p.help-block-error:empty{display:none;}
.contact_form .btn-primary{background:#2F3192; border:none; padding:10px 20px; margin-top:25px;}
.contact_form .btn-primary:hover{background:#ED1D24; border:none;}
.contact_form p{color:#2F3192; font-size:16px; width:100%; float:left; margin-bottom:20px; font-weight:bold;}
.mail_icon{background:url(../../images/front/mail.png) 0 0 no-repeat; background-size:30px; padding-left:40px; line-height:30px;}
.mob_icon{background:url(../../images/front/mobile.png) 0 0 no-repeat; background-size:30px; padding-left:40px; line-height:30px;}
.site-enquiry{width:100%; padding:20px 40px; background:#F1F1F1; border-radius:10px; border:#CCC 1px solid; margin-bottom:20px; float:left; margin:80px 0px;}
.site-enquiry h1{color:#333; font-size:26px; color:#2F3192; margin-bottom:40px;}
.site-enquiry .form-group{width:48%; float:left; margin-bottom:20px;}
.site-enquiry .form-group:nth-child(odd){float:right;}
.site-enquiry .form-group:nth-last-child{float:left !important;}
.site-enquiry label{font-size:16px; font-weight:300;}
.site-enquiry .form-control{width:100%; float:left; box-shadow:none; height:45px;}
.site-enquiry .form-control:focus{box-shadow:none;}
.site-enquiry textarea.form-control{height:120px; float:left;}
.site-enquiry p.help-block-error{color:#ED1D24; font-size:12px;}
.site-enquiry .btn-primary{background:#2F3192; border:none; padding:10px 20px;}
.site-enquiry .btn-primary:hover{background:#ED1D24; border:none;}
.site-enquiry p{color:#2F3192; font-size:16px; width:100%; float:left; margin-bottom:20px; font-weight:bold;}
.career_cls{margin:50px 0px; text-align:center; min-height:250px !important;}
.career_cls p{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; color:#333; line-height:22px;}
#enquiry-average_shipment_per_day, #enquiry-average_weight_per_shipment, #enquiry-average_price_per_shipment, #enquiry-pick_up_location{width:100%; float:left;}
#enquiry-average_shipment_per_day label, #enquiry-average_weight_per_shipment label, #enquiry-average_price_per_shipment label, #enquiry-pick_up_location label{width:100%; float:left;}
.submit_btn{float:left; clear:both; width:100% !important;}
.site-enquiry .field-enquiry-products{float:left !important; clear:both;}
.connect-with-wedib{margin-top:120px;}
/* Footer */
footer{width:100%; float:left; background:#1c1d31; padding:30px 0px;}
footer ul{margin-bottom:30px; float:left; padding:0px;}
footer ul li{list-style:none; float:left;}
footer ul li:after{content:"|"; color:#FFF; padding:0px 10px;}
footer ul li:last-child:after{content:"";}
footer ul li a{color:#FFF; font-weight:300; font-size:16px;}
footer ul li a:hover{color:#8081a6;}
.copyright_txt{font-size:13px; color:#8081a6; font-weight:300;}
.footer_link{color:#8081a6; text-align:right;}
.footer_link a{font-size:13px; color:#8081a6; font-weight:300; margin:0px 10px;}
.footer_link a:hover{color:#FFF;}
.tracking_table{width: 100%; float: left; margin: 25px 0px; box-sizing: border-box; border: #CCC 1px solid; border-radius:5px; padding: 15px;}
.tracking_no{margin-bottom: 10px; float: left; width: 100%;}
.tracking_header{margin-bottom: 10px; float: left; width: 100%;}
.tracking_history{margin-bottom: 10px; float: left; width: 100%;}
.tracking_table > p {
color: red;
} | web/css/front/style.css | @charset "utf-8";
/* CSS Document */
@font-face {
font-family:'MuseoSans';
src: url('../../fonts/MuseoSansCyrl_0.otf'); /* IE9 Compat Modes */
src: url('../../fonts/MuseoSansCyrl_0.otf?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../../fonts/MuseoSansCyrl_0.otf') format('woff2'), /* Super Modern Browsers */
url('../../fonts/MuseoSansCyrl_0.otf') format('woff'), /* Pretty Modern Browsers */
url('../../fonts/MuseoSansCyrl_0.otf') format('truetype'), /* Safari, Android, iOS */
url('../../fonts/MuseoSansCyrl_0.otf#svgFontName') format('svg'); /* Legacy iOS */
}
body{margin:0px; padding:0px; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-weight:300;}
img{max-width:100%;}
a:focus{outline:none;}
.mobile_view{display:none;}
.header_row{width:100%; position:relative;}
.logo{margin:0px; position:absolute; top:-30px; left:0px;}
.top_col{margin:15px 0px; float:right;}
.phone{background:url(../../images/front/phone-icon.png) 0 4px no-repeat; color:#888; font-size:16px; padding-left:25px; width:auto; float:left;}
.phone a{color:#888; display:inline-block;}
.phone a:hover{color:#888; text-decoration:none;}
.mail{background:url(../../images/front/msg-icon.png) 0 5px no-repeat; color:#888; font-size:16px; padding-left:25px; width:auto; float:left; margin:0px 50px;}
.mail a{color:#888;}
.social_tab{float:left; margin-top:3px;}
.social_tab a{ float:left; margin:0px 5px; text-indent:-9999px;}
.social_tab a.fb{background:url(../../images/front/social-icons.png) 0 0 no-repeat; width:10px; height:20px;}
.social_tab a.tw{background:url(../../images/front/social-icons.png) -20px 0px no-repeat; width:25px; height:20px;}
.social_tab a.gl{background:url(../../images/front/social-icons.png) -50px 0px no-repeat; width:30px; height:20px;}
#navigation-menu{width:100%; float:left;}
.navbar {float:right; width:100%;}
.navbar ul{margin:0px;}
.navbar ul li{margin:0px 10px;}
.navbar ul li:last-child{margin-right:0px;}
.navbar ul li a{font-size:18px; color:#474747; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-weight:300;}
.navbar ul li a:hover, .navbar ul li.active a{color:#ec121c !important; background:none !important;}
.navbar-default{background:#FFF !important;}
.menu {left: 0px !important; width: 100% !important; border-radius:0 !important;}
.cloned{background:#f1f1f1 !important; box-shadow:#333 3px 0px 5px !important; padding:10px 0px;}
.cloned .logo{top:8px; width:100px; left:20px;}
.back_btn{background:#FFF; border-radius:100%; border:#999 2px solid; position:fixed; bottom:70px; right:10px; padding: 10px 13px;}
.banner{width:100%; float:left; text-align:center; position:relative;}
.banner img{width:100%;}
/*.banner h1{position:absolute; top:40%; border:0px; left:0px; right:0px; text-align:center; font-size:56px; color:#FFF; font-weight:300;}
.banner span{background:#ec121c; padding:5px 30px; border-radius:15px; display:inline-block; font-weight:400;}*/
.banner h1{position:absolute; width:100%; top:38%; border:0px; left:0px; right:0px; padding:20px 0px; text-align:left; font-size:46px; color:#FFF; font-weight:300; line-height:60px; text-align:center;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0b1d35+0,7db9e8+100&1+0,0+100 */
background: -moz-linear-gradient(left, rgba(11,29,53,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(11,29,53,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(11,29,53,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1d35', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */
}
.banner h1 span{width:100%; float:left; padding-left:50px;}
.banner-inner{width:100%; text-align:center; background:#0B1D34; float:left; padding:50px 0px;}
.banner-inner h1{color:#FFF; line-height:auto; margin:0px; padding:0px;}
/*.mPS2id-target-first{margin-top:120px;}
.mPS2id-target-last{margin-top:120px;}*/
.first_row{margin-top:100px;}
.first_col{margin-top:50px;}
.first_row h2{font-size:22px; line-height:28px; color:#ec121c; font-weight:300;}
.first_row p{ font-size:16px; line-height:26px; color:#999; font-weight:300; text-align:justify;}
.first_row .icon_left{margin-top:50px; text-align:right;}
.first_row .icon_right{margin-top:50px; text-align:left;}
.second_row{margin-top:120px;}
.content_border{border-bottom:#333 3px solid;}
.second_row h3{font-size:34px; color:#454545; font-weight:300; text-align:justify;}
.second_row h3.align_right{text-align:right;}
.second_row h4{font-size:26px; color:#333; font-weight:200; letter-spacing:2px;}
.second_row p{font-size:16px; color:#999; font-weight:300; text-align:justify;}
.porfolio_row{background:#282b8f; padding:50px 0px; text-align:center; clear:both; margin-bottom:80px; margin-top:60px;}
.porfolio_row h5{font-size:2vw; color:#FFF; font-weight:700; line-height:24px; float:left; text-align:left;}
.porfolio_row h5 span{font-size:1vw; font-weight:300; color:#FFF;}
.porfolio_row img{ margin-left:10px; height:80px; width:auto;}
.porfolio_row .portfolio_col{margin:0px auto; display:inline-block;}
.product_row{margin-top:100px; text-align:center; margin-bottom:0px;}
.product_row h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:50px;}
.product_row figure{display:inline-block; border:#E3E3E3 1px solid; padding:30px 40px; margin:5px}
.our_team{margin-top:120px; float:left;}
.team_box{ text-align:center; float:left; background:#f9f9f9; padding:40px 0 20px 0px; border:#CCC 1px solid; border-radius:10px; transition: 0.2s; min-height:480px !important;}
.team_box:hover{/*background:#282B8F;*/ background:#E5EFF9 ; box-shadow:#000 0px 0px 8px;}
.team_box .profile_img{width:150px; height:150px; border-radius:150px; background:#eaeaea; display:inline-block; border:#CCC 1px solid; overflow:hidden;}
.team_box:hover .profile_img{border:#999 1px solid;}
.team_box strong{width:100%; text-align:center; float:left; font-size:24px; color:#282B8F; margin:10px 0px; font-weight:300;}
/*.team_box:hover strong, .team_box:hover span, .team_box:hover p{color:#FFF;}*/
.team_box span{width:100%; text-align:center; float:left; font-size:18px; color:#333; margin:0px 0px; font-weight:normal;}
.team_box p{width:100%; text-align:center; float:left; font-size:16px; color:#666; margin:10px 0px; font-weight:300;}
.our_team h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:80px;}
.social_tab1{width:100%; text-align:center; float:left; margin-top:20px;}
.social_tab1 a{margin:0px 5px; text-indent:-9999px; display:inline-block; border:#999 1px solid;}
.social_tab1 a.fb{background:#FFF url(../../images/front/social-icons.png) 13px 9px no-repeat; width:35px; height:35px; border-radius:35px;}
.social_tab1 a.tw{background:#FFF url(../../images/front/social-icons.png) -14px 10px no-repeat; width:35px; height:35px; border-radius:35px;}
.social_tab1 a.gl{background:#FFF url(../../images/front/social-icons.png) -46px 9px no-repeat; width:35px; height:35px; border-radius:35px;}
.tracking_main{text-align:center;}
.tracking_row{text-align:center; position:absolute; display:block; text-align:center; padding:80px 0px; left:0px; width:100%;}
.tracking_cls{width:100%; margin:0px; display:inline-block; background:url(../../images/front/tracking-bg.png) repeat; border:#585860 1px solid; border-radius:10px; padding-bottom:30px; padding:20px 50px;}
.tracking_row h6{/*background:#282B8F;*/ text-align:center; color:#FFF; font-size:40px; font-weight:300; padding:20px 0px; width:100%; float:left; margin:20px 0;}
.tracking_cls p{color:#FFF; width:100%; margin:40px 0; text-align:center; font-size:20px; background:#ED1C24; padding:20px; border:#FFF 1px dashed;}
.tracking_cls p strong{font-size:22px; font-weight:300;}
centered{width:100%; margin-top:0px; float:left; text-align:center; padding:30px 40px; /*background:#f1f1f1;*/}
.tracking_cls .input-group{padding:0px; width: 100%;}
.tracking_cls .form-control{height:45px;}
.tracking_cls .btn-default{height:45px; background:#282b8f; color:#FFF;}
.tracking_cls .btn-default:hover{height:45px; background:#ED1C24; color:#FFF; border:#FFF 1px solid}
.tracking_cls form{width: 100%; float: left;}
#track_btn {width: auto; float: right; position: relative; top: -45px; z-index: 99}
.main_title{width:100%; float:left;}
.main_title h6{width:100%; text-align:center; font-size:30px; color:#000; font-weight:300; margin-bottom:20px; text-align:center; font-family:'MuseoSans', Arial, Helvetica, sans-serif; text-transform:uppercase;}
.about-us{margin-top:130px; float:left;}
.content_txt{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; text-align:center; margin-bottom:50px;}
.about_box{border:#E7E7E7 1px solid; background:#F5F5F5 ; padding:20px 0px; transition:0.2s; border-radius:10px; margin-bottom:20px; clear:both; float:left; min-height:300px !important;}
.about_box:hover{border:#CCC 1px solid; background:#e5eff9; box-shadow:#000 0 0 5px;}
.about_box strong{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:20px; text-align:center; margin-bottom:20px; font-weight:600}
.about_box p{width:100%; float:left; font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; text-align:center; margin-bottom:50px;}
.contact_us_row{margin-top:50px;}
.map{width:100%; float:left; margin:50px 0px; border:#CCC 1px solid; padding:2px; box-sizing:border-box;}
.map iframe{width:100%;}
.address_col strong{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:20px; color:#2D3092; margin-bottom:5px; width:100%; float:left;}
.contact_us_row p{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; color:#333;}
.c-phone{color:#333;}
.c-phone:hover{color:#333; text-decoration:none;}
.help_accordian{margin:80px 0px; float:left; width:100%;}
.contact_form{width:100%; padding:20px 40px; background:#F1F1F1; border-radius:10px; border:#CCC 1px solid; margin-bottom:50px;}
.contact_form .form-group{width:48%; float:left; margin-bottom:10px;}
.contact_form .form-group:nth-child(even){float:right;}
.contact_form .field-contactform-remark{width:100%; margin-bottom:20px;}
.contact_form label{font-size:16px; font-weight:300;}
.contact_form .form-control{width:100%; float:left; box-shadow:none; height:40px;}
.contact_form .form-control:focus{box-shadow:none;}
.contact_form textarea.form-control{height:120px;}
.contact_form p.help-block-error{color:#ED1D24; font-size:12px;}
.contact_form p.help-block-error:empty{display:none;}
.contact_form .btn-primary{background:#2F3192; border:none; padding:10px 20px; margin-top:25px;}
.contact_form .btn-primary:hover{background:#ED1D24; border:none;}
.contact_form p{color:#2F3192; font-size:16px; width:100%; float:left; margin-bottom:20px; font-weight:bold;}
.mail_icon{background:url(../../images/front/mail.png) 0 0 no-repeat; background-size:30px; padding-left:40px; line-height:30px;}
.mob_icon{background:url(../../images/front/mobile.png) 0 0 no-repeat; background-size:30px; padding-left:40px; line-height:30px;}
.site-enquiry{width:100%; padding:20px 40px; background:#F1F1F1; border-radius:10px; border:#CCC 1px solid; margin-bottom:20px; float:left; margin:80px 0px;}
.site-enquiry h1{color:#333; font-size:26px; color:#2F3192; margin-bottom:40px;}
.site-enquiry .form-group{width:48%; float:left; margin-bottom:20px;}
.site-enquiry .form-group:nth-child(odd){float:right;}
.site-enquiry .form-group:nth-last-child{float:left !important;}
.site-enquiry label{font-size:16px; font-weight:300;}
.site-enquiry .form-control{width:100%; float:left; box-shadow:none; height:45px;}
.site-enquiry .form-control:focus{box-shadow:none;}
.site-enquiry textarea.form-control{height:120px; float:left;}
.site-enquiry p.help-block-error{color:#ED1D24; font-size:12px;}
.site-enquiry .btn-primary{background:#2F3192; border:none; padding:10px 20px;}
.site-enquiry .btn-primary:hover{background:#ED1D24; border:none;}
.site-enquiry p{color:#2F3192; font-size:16px; width:100%; float:left; margin-bottom:20px; font-weight:bold;}
.career_cls{margin:50px 0px; text-align:center; min-height:250px !important;}
.career_cls p{font-family:'MuseoSans', Arial, Helvetica, sans-serif; font-size:16px; color:#333; line-height:22px;}
#enquiry-average_shipment_per_day, #enquiry-average_weight_per_shipment, #enquiry-average_price_per_shipment, #enquiry-pick_up_location{width:100%; float:left;}
#enquiry-average_shipment_per_day label, #enquiry-average_weight_per_shipment label, #enquiry-average_price_per_shipment label, #enquiry-pick_up_location label{width:100%; float:left;}
.submit_btn{float:left; clear:both; width:100% !important;}
.site-enquiry .field-enquiry-products{float:left !important; clear:both;}
.connect-with-wedib{margin-top:120px;}
/* Footer */
footer{width:100%; float:left; background:#1c1d31; padding:30px 0px;}
footer ul{margin-bottom:30px; float:left; padding:0px;}
footer ul li{list-style:none; float:left;}
footer ul li:after{content:"|"; color:#FFF; padding:0px 10px;}
footer ul li:last-child:after{content:"";}
footer ul li a{color:#FFF; font-weight:300; font-size:16px;}
footer ul li a:hover{color:#8081a6;}
.copyright_txt{font-size:13px; color:#8081a6; font-weight:300;}
.footer_link{color:#8081a6; text-align:right;}
.footer_link a{font-size:13px; color:#8081a6; font-weight:300; margin:0px 10px;}
.footer_link a:hover{color:#FFF;}
.tracking_table{width: 100%; float: left; margin: 25px 0px; box-sizing: border-box; border: #CCC 1px solid; border-radius:5px; padding: 15px;}
.tracking_no{margin-bottom: 10px; float: left; width: 100%;}
.tracking_header{margin-bottom: 10px; float: left; width: 100%;}
.tracking_history{margin-bottom: 10px; float: left; width: 100%;}
.tracking_table > p {
color: red;
} | 0.348423 | 0.071203 |
@media screen {
/* --- Reset Styles --- */
* {
list-style: none;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
width: 100%;
}
/* Add a white background color to the top navigation */
.nav-wrapper {
height: 64px;
position: relative;
text-align: center;
background-color: #fff;
overflow: hidden;
border-bottom: 1px solid rgb(92, 92, 92);
}
.nav-wrapper div#logo {
float: left;
padding: 10px;
}
.nav-wrapper ul.nav-buttons{
display: inline-block;
padding: 25px;
}
.nav-wrapper ul.session-buttons{
float: right;
padding: 25px;
}
.nav-wrapper ul.session-buttons #signup {
padding: 4px;
border: 1px solid black;
border-radius: 4px;
}
/* Style the links inside the navigation bar */
.nav-wrapper li {
position: relative;
display: inline-block;
}
.nav-wrapper a {
color:black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.nav-wrapper .nav-buttons a:hover {
background-color: #ddd;
color: black;
}
/* Aligns logo right, changes the color and size*/
.nav-wrapper a.brand-logo {
font-size: 30px;
color: green;
float: right;
}
/* Add a color to the active/current link */
.nav-wrapper a.active {
background-color: #2c312c;
color: white;
}
/* --- Welcome Page Styles --- */
body {
background-color: white;
color: #333;
font-family: Sans-Serif;
line-height: 18px;
}
.wrapper {
background: #fff;
-moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
box-shadow: 0 0 10px rgba(0,0,0,.3);
margin: 16px auto;
max-width: 960px;
padding: 2.25%; /* 18px / 800px */
width: 85%;
}
h1 {
font-size: 36px;
line-height: 54px;
}
h2 {
border-bottom: 2px solid #ccc;
font-size: 24px;
line-height: 36px;
margin-bottom: 16px;
}
h3 {
font-size: 18px;
line-height: 36px;
}
p {
margin-bottom: 18px;
}
.main {
overflow: hidden;
}
.content {
float: left;
width: 60%; /* 480px / 800px */
}
.branding {
clear: both;
}
footer.branding {
border-top: 2px solid #ccc;
margin-top: 20px;
padding-top: 20px;
}
}
@media screen and (max-width: 600px) {
.wrapper {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
width: auto;
}
h1 {
font-size: 24px;
line-height: 36px;
}
h2 {
font-size: 18px;
line-height: 24px;
}
}
/* -----Homepage Styles------ */
#HomeFeatured {
position: relative;
width: auto;
height: 700px;
background-color: rgb(224, 224, 224);
}
#HomeFeatured .content {
display: inline-block;
position: absolute;
width: 422px;
height: 357px;
left: 135px;
top: 172px;
}
#HomeFeatured .content h3 {
font-family: 'Times New Roman', Times, serif;
font-style: normal;
font-weight: 900;
font-size: 28px;
line-height: 33px;
padding-bottom: 60px;
}
#HomeFeatured img {
position: absolute;
width: 670px;
height: 480px;
left: 635px;
top: 110px;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
}
#HomeFeatured .content #create_button button{
width: 100px;
height: 30px;
left: 67.5px;
top: 234.5px;
border-radius: 6px;
background-color: #000;
color: #fff;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2), 0 1.5px 5px 0 rgba(0,0,0,0.19);
}
/* ---Hompage Recent Projects Styles--- */
.home-recent-projects p {
text-align: center;
font-size: 26px;
padding-top: 20px;
}
.home-recent-projects hr {
width: 30%;
margin-left: auto;
margin-right: auto;
}
.recent-projects-container {
width:80%;
height: 2000px;
margin: auto;
border: 3px solid #73AD21;
}
.homepage-project-content {
position: relative;
padding: 5%;
text-align: center;
} | app/assets/stylesheets/application.css | @media screen {
/* --- Reset Styles --- */
* {
list-style: none;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
width: 100%;
}
/* Add a white background color to the top navigation */
.nav-wrapper {
height: 64px;
position: relative;
text-align: center;
background-color: #fff;
overflow: hidden;
border-bottom: 1px solid rgb(92, 92, 92);
}
.nav-wrapper div#logo {
float: left;
padding: 10px;
}
.nav-wrapper ul.nav-buttons{
display: inline-block;
padding: 25px;
}
.nav-wrapper ul.session-buttons{
float: right;
padding: 25px;
}
.nav-wrapper ul.session-buttons #signup {
padding: 4px;
border: 1px solid black;
border-radius: 4px;
}
/* Style the links inside the navigation bar */
.nav-wrapper li {
position: relative;
display: inline-block;
}
.nav-wrapper a {
color:black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.nav-wrapper .nav-buttons a:hover {
background-color: #ddd;
color: black;
}
/* Aligns logo right, changes the color and size*/
.nav-wrapper a.brand-logo {
font-size: 30px;
color: green;
float: right;
}
/* Add a color to the active/current link */
.nav-wrapper a.active {
background-color: #2c312c;
color: white;
}
/* --- Welcome Page Styles --- */
body {
background-color: white;
color: #333;
font-family: Sans-Serif;
line-height: 18px;
}
.wrapper {
background: #fff;
-moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
box-shadow: 0 0 10px rgba(0,0,0,.3);
margin: 16px auto;
max-width: 960px;
padding: 2.25%; /* 18px / 800px */
width: 85%;
}
h1 {
font-size: 36px;
line-height: 54px;
}
h2 {
border-bottom: 2px solid #ccc;
font-size: 24px;
line-height: 36px;
margin-bottom: 16px;
}
h3 {
font-size: 18px;
line-height: 36px;
}
p {
margin-bottom: 18px;
}
.main {
overflow: hidden;
}
.content {
float: left;
width: 60%; /* 480px / 800px */
}
.branding {
clear: both;
}
footer.branding {
border-top: 2px solid #ccc;
margin-top: 20px;
padding-top: 20px;
}
}
@media screen and (max-width: 600px) {
.wrapper {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
width: auto;
}
h1 {
font-size: 24px;
line-height: 36px;
}
h2 {
font-size: 18px;
line-height: 24px;
}
}
/* -----Homepage Styles------ */
#HomeFeatured {
position: relative;
width: auto;
height: 700px;
background-color: rgb(224, 224, 224);
}
#HomeFeatured .content {
display: inline-block;
position: absolute;
width: 422px;
height: 357px;
left: 135px;
top: 172px;
}
#HomeFeatured .content h3 {
font-family: 'Times New Roman', Times, serif;
font-style: normal;
font-weight: 900;
font-size: 28px;
line-height: 33px;
padding-bottom: 60px;
}
#HomeFeatured img {
position: absolute;
width: 670px;
height: 480px;
left: 635px;
top: 110px;
border: 1px solid #000000;
box-sizing: border-box;
border-radius: 4px;
}
#HomeFeatured .content #create_button button{
width: 100px;
height: 30px;
left: 67.5px;
top: 234.5px;
border-radius: 6px;
background-color: #000;
color: #fff;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2), 0 1.5px 5px 0 rgba(0,0,0,0.19);
}
/* ---Hompage Recent Projects Styles--- */
.home-recent-projects p {
text-align: center;
font-size: 26px;
padding-top: 20px;
}
.home-recent-projects hr {
width: 30%;
margin-left: auto;
margin-right: auto;
}
.recent-projects-container {
width:80%;
height: 2000px;
margin: auto;
border: 3px solid #73AD21;
}
.homepage-project-content {
position: relative;
padding: 5%;
text-align: center;
} | 0.372163 | 0.084568 |
.background_burlyWood8,
.hover_background_burlyWood8:hover,
.active_background_burlyWood8:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(106, 72, 29)), color-stop(100%, rgb(85, 58, 23)));
background-image: -webkit-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -o-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -ms-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: linear-gradient(to bottom, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a481d', endColorstr='#553a17',GradientType=0 );
}
.background_burlyWood8h,
.hover_background_burlyWood8h:hover,
.active_background_burlyWood8h:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(127, 87, 35)), color-stop(100%, rgb(102, 70, 28)));
background-image: -webkit-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -o-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -ms-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: linear-gradient(to bottom, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7f5723', endColorstr='#66461c',GradientType=0 );
}
.background_burlyWood8a,
.hover_background_burlyWood8a:hover,
.active_background_burlyWood8a:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(102, 70, 28)), color-stop(100%, rgb(127, 87, 35)));
background-image: -webkit-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -o-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -ms-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: linear-gradient(to bottom, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66461c', endColorstr='#7f5723',GradientType=0 );
}
.background_burlyWood8s,
.hover_background_burlyWood8s:hover,
.active_background_burlyWood8s:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(159, 109, 44)), color-stop(100%, rgb(127, 87, 35)));
background-image: -webkit-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -o-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -ms-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: linear-gradient(to bottom, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f6d2c', endColorstr='#7f5723',GradientType=0 );
}
.background_color_burlyWood8,
.hover_background_color_burlyWood8:hover,
.active_background_color_burlyWood8:active:hover {
background-color:#553a17;
}
.background_first_color_burlyWood8,
.hover_background_first_color_burlyWood8:hover,
.active_background_first_color_burlyWood8:active:hover {
background-color:#6a481d;
}
.background_last_color_burlyWood8,
.hover_background_last_color_burlyWood8:hover,
.active_background_color_last_burlyWood8:active:hover {
background-color:#553a17;
}
/* ------------------------------ color settings -------------------------------*/
.color_burlyWood8,
.hover_color_burlyWood8:hover,
.active_color_burlyWood8:active:hover {
color: #c8c8c8;
}
.color_burlyWood8h,
.hover_color_burlyWood8h:hover,
.active_color_burlyWood8h:active:hover {
color: #c8c8c8;
}
.color_burlyWood8a,
.hover_color_burlyWood8a:hover,
.active_color_burlyWood8a:active:hover {
color: #ff0;
}
.color_burlyWood8s,
.hover_color_burlyWood8s:hover,
.active_color_burlyWood8s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_burlyWood8,
.hover_border_burlyWood8:hover,
.active_border_burlyWood8:active:hover {
border-color: #553a17 #553a17 #553a17 #553a17;
}
.border_burlyWood8h,
.hover_border_burlyWood8h:hover,
.active_border_burlyWood8h:active:hover {
border-color: #4c3415 #4c3415 #4c3415 #4c3415;
}
.border_burlyWood8a,
.hover_border_burlyWood8a:hover,
.active_border_burlyWood8a:active:hover {
border-color: #442e13 #442e13 #442e13 #442e13;
}
.border_burlyWood8s,
.hover_border_burlyWood8s:hover,
.active_border_burlyWood8s:active:hover {
border-color: #7f5723 #7f5723 #7f5723 #7f5723;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_burlyWood8,
.hover_shadow_expand_burlyWood8:hover,
.active_shadow_expand_burlyWood8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
}
.shadow_expand_burlyWood8h,
.hover_shadow_expand_burlyWood8h:hover,
.active_shadow_expand_burlyWood8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
}
.shadow_expand_burlyWood8a,
.hover_shadow_expand_burlyWood8a:hover,
.active_shadow_expand_burlyWood8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
}
.shadow_expand_burlyWood8s,
.hover_shadow_expand_burlyWood8s:hover,
.active_shadow_expand_burlyWood8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_burlyWood8,
.hover_shadow_left_burlyWood8:hover,
.active_shadow_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_left_burlyWood8h,
.hover_shadow_left_burlyWood8h:hover,
.active_shadow_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_left_burlyWood8a,
.hover_shadow_left_burlyWood8a:hover,
.active_shadow_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_left_burlyWood8s,
.hover_shadow_left_burlyWood8s:hover,
.active_shadow_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_burlyWood8,
.hover_shadow_right_burlyWood8:hover,
.active_shadow_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
}
.shadow_right_burlyWood8h,
.hover_shadow_right_burlyWood8h:hover,
.active_shadow_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
}
.shadow_right_burlyWood8a,
.hover_shadow_right_burlyWood8a:hover,
.active_shadow_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
}
.shadow_right_burlyWood8s,
.hover_shadow_right_burlyWood8s:hover,
.active_shadow_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_burlyWood8,
.hover_shadow_top_burlyWood8:hover,
.active_shadow_top_burlyWood8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_burlyWood8h,
.hover_shadow_top_burlyWood8h:hover,
.active_shadow_top_burlyWood8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_burlyWood8a,
.hover_shadow_top_burlyWood8a:hover,
.active_shadow_top_burlyWood8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_burlyWood8s,
.hover_shadow_top_burlyWood8s:hover,
.active_shadow_top_burlyWood8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_burlyWood8,
.hover_shadow_bottom_burlyWood8:hover,
.active_shadow_bottom_burlyWood8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_burlyWood8h,
.hover_shadow_bottom_burlyWood8h:hover,
.active_shadow_bottom_burlyWood8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_burlyWood8a,
.hover_shadow_bottom_burlyWood8a:hover,
.active_shadow_bottom_burlyWood8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_burlyWood8s,
.hover_shadow_bottom_burlyWood8s:hover,
.active_shadow_bottom_burlyWood8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_burlyWood8,
.hover_shadow_top_left_burlyWood8:hover,
.active_shadow_top_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_left_burlyWood8h,
.hover_shadow_top_left_burlyWood8h:hover,
.active_shadow_top_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_left_burlyWood8a,
.hover_shadow_top_left_burlyWood8a:hover,
.active_shadow_top_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_left_burlyWood8s,
.hover_shadow_top_left_burlyWood8s:hover,
.active_shadow_top_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_burlyWood8,
.hover_shadow_top_right_burlyWood8:hover,
.active_shadow_top_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_right_burlyWood8h,
.hover_shadow_top_right_burlyWood8h:hover,
.active_shadow_top_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_right_burlyWood8a,
.hover_shadow_top_right_burlyWood8a:hover,
.active_shadow_top_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_right_burlyWood8s,
.hover_shadow_top_right_burlyWood8s:hover,
.active_shadow_top_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_burlyWood8,
.hover_shadow_bottom_left_burlyWood8:hover,
.active_shadow_bottom_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_left_burlyWood8h,
.hover_shadow_bottom_left_burlyWood8h:hover,
.active_shadow_bottom_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_left_burlyWood8a,
.hover_shadow_bottom_left_burlyWood8a:hover,
.active_shadow_bottom_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_left_burlyWood8s,
.hover_shadow_bottom_left_burlyWood8s:hover,
.active_shadow_bottom_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_burlyWood8,
.hover_shadow_bottom_right_burlyWood8:hover,
.active_shadow_bottom_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_right_burlyWood8h,
.hover_shadow_bottom_right_burlyWood8h:hover,
.active_shadow_bottom_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_right_burlyWood8a,
.hover_shadow_bottom_right_burlyWood8a:hover,
.active_shadow_bottom_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_right_burlyWood8s,
.hover_shadow_bottom_right_burlyWood8s:hover,
.active_shadow_bottom_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
} | widgets/common/assets/gradients/simple/burlyWood/burlyWood8.css | .background_burlyWood8,
.hover_background_burlyWood8:hover,
.active_background_burlyWood8:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(106, 72, 29)), color-stop(100%, rgb(85, 58, 23)));
background-image: -webkit-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -o-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: -ms-linear-gradient(top, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
background-image: linear-gradient(to bottom, rgb(106, 72, 29) 0%, rgb(85, 58, 23) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a481d', endColorstr='#553a17',GradientType=0 );
}
.background_burlyWood8h,
.hover_background_burlyWood8h:hover,
.active_background_burlyWood8h:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(127, 87, 35)), color-stop(100%, rgb(102, 70, 28)));
background-image: -webkit-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -o-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: -ms-linear-gradient(top, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
background-image: linear-gradient(to bottom, rgb(127, 87, 35) 0%, rgb(102, 70, 28) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7f5723', endColorstr='#66461c',GradientType=0 );
}
.background_burlyWood8a,
.hover_background_burlyWood8a:hover,
.active_background_burlyWood8a:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(102, 70, 28)), color-stop(100%, rgb(127, 87, 35)));
background-image: -webkit-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -o-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: -ms-linear-gradient(top, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
background-image: linear-gradient(to bottom, rgb(102, 70, 28) 0%, rgb(127, 87, 35) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66461c', endColorstr='#7f5723',GradientType=0 );
}
.background_burlyWood8s,
.hover_background_burlyWood8s:hover,
.active_background_burlyWood8s:active:hover {
background: #553a17;
background-image: -moz-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(159, 109, 44)), color-stop(100%, rgb(127, 87, 35)));
background-image: -webkit-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -o-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: -ms-linear-gradient(top, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
background-image: linear-gradient(to bottom, rgb(159, 109, 44) 0%, rgb(127, 87, 35) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f6d2c', endColorstr='#7f5723',GradientType=0 );
}
.background_color_burlyWood8,
.hover_background_color_burlyWood8:hover,
.active_background_color_burlyWood8:active:hover {
background-color:#553a17;
}
.background_first_color_burlyWood8,
.hover_background_first_color_burlyWood8:hover,
.active_background_first_color_burlyWood8:active:hover {
background-color:#6a481d;
}
.background_last_color_burlyWood8,
.hover_background_last_color_burlyWood8:hover,
.active_background_color_last_burlyWood8:active:hover {
background-color:#553a17;
}
/* ------------------------------ color settings -------------------------------*/
.color_burlyWood8,
.hover_color_burlyWood8:hover,
.active_color_burlyWood8:active:hover {
color: #c8c8c8;
}
.color_burlyWood8h,
.hover_color_burlyWood8h:hover,
.active_color_burlyWood8h:active:hover {
color: #c8c8c8;
}
.color_burlyWood8a,
.hover_color_burlyWood8a:hover,
.active_color_burlyWood8a:active:hover {
color: #ff0;
}
.color_burlyWood8s,
.hover_color_burlyWood8s:hover,
.active_color_burlyWood8s:active:hover {
color: #dd0;
}
/* -------------------------- border color settings -----------------------------*/
.border_burlyWood8,
.hover_border_burlyWood8:hover,
.active_border_burlyWood8:active:hover {
border-color: #553a17 #553a17 #553a17 #553a17;
}
.border_burlyWood8h,
.hover_border_burlyWood8h:hover,
.active_border_burlyWood8h:active:hover {
border-color: #4c3415 #4c3415 #4c3415 #4c3415;
}
.border_burlyWood8a,
.hover_border_burlyWood8a:hover,
.active_border_burlyWood8a:active:hover {
border-color: #442e13 #442e13 #442e13 #442e13;
}
.border_burlyWood8s,
.hover_border_burlyWood8s:hover,
.active_border_burlyWood8s:active:hover {
border-color: #7f5723 #7f5723 #7f5723 #7f5723;
}
/* -------------------------- shadow expand settings --------------------------------*/
.shadow_expand_burlyWood8,
.hover_shadow_expand_burlyWood8:hover,
.active_shadow_expand_burlyWood8:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
box-shadow: 0em 0em 1em 0.25em rgba(85, 58, 23, .39);
}
.shadow_expand_burlyWood8h,
.hover_shadow_expand_burlyWood8h:hover,
.active_shadow_expand_burlyWood8h:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
box-shadow: 0em 0em 1em 0.25em rgba(102, 70, 28, .50);
}
.shadow_expand_burlyWood8a,
.hover_shadow_expand_burlyWood8a:hover,
.active_shadow_expand_burlyWood8a:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .63);
}
.shadow_expand_burlyWood8s,
.hover_shadow_expand_burlyWood8s:hover,
.active_shadow_expand_burlyWood8s:active:hover {
-webkit-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
box-shadow: 0em 0em 1em 0.25em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow left settings --------------------------------*/
.shadow_left_burlyWood8,
.hover_shadow_left_burlyWood8:hover,
.active_shadow_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_left_burlyWood8h,
.hover_shadow_left_burlyWood8h:hover,
.active_shadow_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_left_burlyWood8a,
.hover_shadow_left_burlyWood8a:hover,
.active_shadow_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_left_burlyWood8s,
.hover_shadow_left_burlyWood8s:hover,
.active_shadow_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow right settings --------------------------------*/
.shadow_right_burlyWood8,
.hover_shadow_right_burlyWood8:hover,
.active_shadow_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em 0em 1em rgba(85, 58, 23, .39);
}
.shadow_right_burlyWood8h,
.hover_shadow_right_burlyWood8h:hover,
.active_shadow_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em 0em 1em rgba(102, 70, 28, .50);
}
.shadow_right_burlyWood8a,
.hover_shadow_right_burlyWood8a:hover,
.active_shadow_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .63);
}
.shadow_right_burlyWood8s,
.hover_shadow_right_burlyWood8s:hover,
.active_shadow_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em 0em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top settings --------------------------------*/
.shadow_top_burlyWood8,
.hover_shadow_top_burlyWood8:hover,
.active_shadow_top_burlyWood8:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_burlyWood8h,
.hover_shadow_top_burlyWood8h:hover,
.active_shadow_top_burlyWood8h:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_burlyWood8a,
.hover_shadow_top_burlyWood8a:hover,
.active_shadow_top_burlyWood8a:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_burlyWood8s,
.hover_shadow_top_burlyWood8s:hover,
.active_shadow_top_burlyWood8s:active:hover {
-webkit-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom settings --------------------------------*/
.shadow_bottom_burlyWood8,
.hover_shadow_bottom_burlyWood8:hover,
.active_shadow_bottom_burlyWood8:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_burlyWood8h,
.hover_shadow_bottom_burlyWood8h:hover,
.active_shadow_bottom_burlyWood8h:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_burlyWood8a,
.hover_shadow_bottom_burlyWood8a:hover,
.active_shadow_bottom_burlyWood8a:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_burlyWood8s,
.hover_shadow_bottom_burlyWood8s:hover,
.active_shadow_bottom_burlyWood8s:active:hover {
-webkit-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0em 0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top_left settings --------------------------------*/
.shadow_top_left_burlyWood8,
.hover_shadow_top_left_burlyWood8:hover,
.active_shadow_top_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_left_burlyWood8h,
.hover_shadow_top_left_burlyWood8h:hover,
.active_shadow_top_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_left_burlyWood8a,
.hover_shadow_top_left_burlyWood8a:hover,
.active_shadow_top_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_left_burlyWood8s,
.hover_shadow_top_left_burlyWood8s:hover,
.active_shadow_top_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow top_right settings --------------------------------*/
.shadow_top_right_burlyWood8,
.hover_shadow_top_right_burlyWood8:hover,
.active_shadow_top_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em -0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_top_right_burlyWood8h,
.hover_shadow_top_right_burlyWood8h:hover,
.active_shadow_top_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em -0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_top_right_burlyWood8a,
.hover_shadow_top_right_burlyWood8a:hover,
.active_shadow_top_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_top_right_burlyWood8s,
.hover_shadow_top_right_burlyWood8s:hover,
.active_shadow_top_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em -0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom_left settings --------------------------------*/
.shadow_bottom_left_burlyWood8,
.hover_shadow_bottom_left_burlyWood8:hover,
.active_shadow_bottom_left_burlyWood8:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: -0.5em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_left_burlyWood8h,
.hover_shadow_bottom_left_burlyWood8h:hover,
.active_shadow_bottom_left_burlyWood8h:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: -0.5em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_left_burlyWood8a,
.hover_shadow_bottom_left_burlyWood8a:hover,
.active_shadow_bottom_left_burlyWood8a:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_left_burlyWood8s,
.hover_shadow_bottom_left_burlyWood8s:hover,
.active_shadow_bottom_left_burlyWood8s:active:hover {
-webkit-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: -0.5em 0.5em 1em rgba(127, 87, 35, .78);
}
/* -------------------------- shadow bottom_right settings --------------------------------*/
.shadow_bottom_right_burlyWood8,
.hover_shadow_bottom_right_burlyWood8:hover,
.active_shadow_bottom_right_burlyWood8:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
-moz-box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
box-shadow: 0.5em 0.5em 1em rgba(85, 58, 23, .39);
}
.shadow_bottom_right_burlyWood8h,
.hover_shadow_bottom_right_burlyWood8h:hover,
.active_shadow_bottom_right_burlyWood8h:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
-moz-box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
box-shadow: 0.5em 0.5em 1em rgba(102, 70, 28, .50);
}
.shadow_bottom_right_burlyWood8a,
.hover_shadow_bottom_right_burlyWood8a:hover,
.active_shadow_bottom_right_burlyWood8a:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
-moz-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .63);
}
.shadow_bottom_right_burlyWood8s,
.hover_shadow_bottom_right_burlyWood8s:hover,
.active_shadow_bottom_right_burlyWood8s:active:hover {
-webkit-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
-moz-box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
box-shadow: 0.5em 0.5em 1em rgba(127, 87, 35, .78);
} | 0.476823 | 0.123577 |
div.card {
/* margin-bottom: 1rem; */
box-shadow: 0 0 6.4px 4px rgba(0,0,0,.06275);
border-radius: 4px;
background-color: #2D3848;
grid-template-columns: 200px 200px minmax(200px,auto);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px;
padding: 10px;
}
.card-list {
/* margin-bottom: 1rem; */
box-shadow: 0 0 6.4px 4px rgba(0,0,0,.06275);
border-radius: 4px;
background-color: #2D3848;
grid-template-columns: 200px 200px minmax(200px,auto);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px;
padding: 10px;
}
.card-list .content {
width: 100%;
}
p {
color: #222121;
font-size: 18px;
font-weight: bold;
}
.card img {
min-width: 300px;
min-height: 300px;
}
.line {
height: 12px;
margin: 10px;
animation: pulse 1s infinite ease-in-out;
border-radius: 5px;
}
.skeleton-image {
height: 300px;
margin: 10px;
animation: pulse 1s infinite ease-in-out;
border-radius: 5px;
}
.card .content div:nth-child(1){
width: 300px;
}
.card .content div:nth-child(2){
width: 300px;
}
.card .content div:nth-child(3){
width: 270px;
}
@keyframes pulse {
0% {
background-color: rgba(165,165,165,.1)
}
50% {
background-color: rgba(165,165,165,.3)
}
100% {
background-color: rgba(165,165,165,.1)
}
}
.pagination li {
border: 1px solid #dfdfdf;
border-radius: 10px;
padding: 5px 10px;
margin: 0 10px;
}
.skeleton2{
text-align: center;
}
.line2{
width: 210px;
height: 58px;
margin: 0 20px;
display: block;
animation: pulse 1s infinite ease-in-out;
margin-bottom: 15px;
margin-top: 5px;
}
.line3{
width: 175px;
height: 28px;
margin: 0 20px;
display: block;
margin-bottom: 10px;
animation: pulse 1s infinite ease-in-out;
}
.skeleton2{
justify-content: center;
}
.header{
width: 100%;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
} | src/components/Skeleton/skeleton2.css | div.card {
/* margin-bottom: 1rem; */
box-shadow: 0 0 6.4px 4px rgba(0,0,0,.06275);
border-radius: 4px;
background-color: #2D3848;
grid-template-columns: 200px 200px minmax(200px,auto);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px;
padding: 10px;
}
.card-list {
/* margin-bottom: 1rem; */
box-shadow: 0 0 6.4px 4px rgba(0,0,0,.06275);
border-radius: 4px;
background-color: #2D3848;
grid-template-columns: 200px 200px minmax(200px,auto);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px;
padding: 10px;
}
.card-list .content {
width: 100%;
}
p {
color: #222121;
font-size: 18px;
font-weight: bold;
}
.card img {
min-width: 300px;
min-height: 300px;
}
.line {
height: 12px;
margin: 10px;
animation: pulse 1s infinite ease-in-out;
border-radius: 5px;
}
.skeleton-image {
height: 300px;
margin: 10px;
animation: pulse 1s infinite ease-in-out;
border-radius: 5px;
}
.card .content div:nth-child(1){
width: 300px;
}
.card .content div:nth-child(2){
width: 300px;
}
.card .content div:nth-child(3){
width: 270px;
}
@keyframes pulse {
0% {
background-color: rgba(165,165,165,.1)
}
50% {
background-color: rgba(165,165,165,.3)
}
100% {
background-color: rgba(165,165,165,.1)
}
}
.pagination li {
border: 1px solid #dfdfdf;
border-radius: 10px;
padding: 5px 10px;
margin: 0 10px;
}
.skeleton2{
text-align: center;
}
.line2{
width: 210px;
height: 58px;
margin: 0 20px;
display: block;
animation: pulse 1s infinite ease-in-out;
margin-bottom: 15px;
margin-top: 5px;
}
.line3{
width: 175px;
height: 28px;
margin: 0 20px;
display: block;
margin-bottom: 10px;
animation: pulse 1s infinite ease-in-out;
}
.skeleton2{
justify-content: center;
}
.header{
width: 100%;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
} | 0.275325 | 0.121113 |
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');
#main{
margin-top: 5rem;
margin-bottom: 5rem;
}
body{
font-family: 'DM Sans', sans-serif !important;
color: #04172A;
font-weight: 500;
}
#titi h3{
font-family: inherit;
font-style: normal;
font-size: 32px !important;
line-height: 42px;
}
.search-bar{
max-width: 49.7%;
margin: auto;
box-sizing: border-box;
}
.form-control{
border: 2px solid #04172A;
box-sizing: border-box;
border-radius: 5px;
}
input::placeholder{
font-size: 20px;
line-height: 26px;
color: rgba(4, 23, 42, 0.2);
}
input:focus{
color: rgba(4, 23, 42, 0.2);
outline: none;
}
.fa-search{
position: relative;
top: -2rem;
bottom: 2rem;
left: 94%;
right: 94%;
}
p.lead{
font-size: 24px !important;
line-height: 31px;
color: #92A0AF;
}
#main-content{
margin-top: 5rem;
margin-bottom: 5rem;
}
aside header{
color: #2A3A64;
font-size: inherit;
}
li.list-item {
margin-top: 1.5rem;
line-height: inherit;
font-size: inherit;
}
a{
text-decoration: none;
color: #E1E1E1 !important;
}
a:hover{
text-decoration: underline;
opacity: 1;
}
.accordion{
background: #FFFFFF;
border-radius: 0px 0px 5px 5px;
}
.accordion a:hover .card-title{
color: #FFFFFF;
}
.accordion p{
color: #848484;
font-size: 18px;
font-weight: 300;
white-space: normal;
word-break: break-all;
}
.accordion .card-header:after {
font-family: 'FontAwesome';
content: "\f068";
float: right;
cursor: pointer;
color: #FB3F5C;
}
.accordion .card-header.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f067";
}
.fa-chevron-right{
font-size: 16px;
margin-top: 3px;
}
h4{
font-size: 40px;
line-height: 52px;
}
.btn-faq{
text-align: right !important;
font-size: 24px;
}
.inactive{
color: #E1E1E1;
}
@media (max-width: 640px) {
.search-bar{
max-width: 100%;
}
li.list-item.row{
margin-left: 0px;
margin-right: 0px;
}
} | public/css/custom-css/faq.css | @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap');
#main{
margin-top: 5rem;
margin-bottom: 5rem;
}
body{
font-family: 'DM Sans', sans-serif !important;
color: #04172A;
font-weight: 500;
}
#titi h3{
font-family: inherit;
font-style: normal;
font-size: 32px !important;
line-height: 42px;
}
.search-bar{
max-width: 49.7%;
margin: auto;
box-sizing: border-box;
}
.form-control{
border: 2px solid #04172A;
box-sizing: border-box;
border-radius: 5px;
}
input::placeholder{
font-size: 20px;
line-height: 26px;
color: rgba(4, 23, 42, 0.2);
}
input:focus{
color: rgba(4, 23, 42, 0.2);
outline: none;
}
.fa-search{
position: relative;
top: -2rem;
bottom: 2rem;
left: 94%;
right: 94%;
}
p.lead{
font-size: 24px !important;
line-height: 31px;
color: #92A0AF;
}
#main-content{
margin-top: 5rem;
margin-bottom: 5rem;
}
aside header{
color: #2A3A64;
font-size: inherit;
}
li.list-item {
margin-top: 1.5rem;
line-height: inherit;
font-size: inherit;
}
a{
text-decoration: none;
color: #E1E1E1 !important;
}
a:hover{
text-decoration: underline;
opacity: 1;
}
.accordion{
background: #FFFFFF;
border-radius: 0px 0px 5px 5px;
}
.accordion a:hover .card-title{
color: #FFFFFF;
}
.accordion p{
color: #848484;
font-size: 18px;
font-weight: 300;
white-space: normal;
word-break: break-all;
}
.accordion .card-header:after {
font-family: 'FontAwesome';
content: "\f068";
float: right;
cursor: pointer;
color: #FB3F5C;
}
.accordion .card-header.collapsed:after {
/* symbol for "collapsed" panels */
content: "\f067";
}
.fa-chevron-right{
font-size: 16px;
margin-top: 3px;
}
h4{
font-size: 40px;
line-height: 52px;
}
.btn-faq{
text-align: right !important;
font-size: 24px;
}
.inactive{
color: #E1E1E1;
}
@media (max-width: 640px) {
.search-bar{
max-width: 100%;
}
li.list-item.row{
margin-left: 0px;
margin-right: 0px;
}
} | 0.35031 | 0.083965 |
body {
font-family: 'Open Sans', sans-serif;
}
.form-main {
background:#ffffff;
width:100%;
margin:50px 0px;
padding:10px 10px;
}
.form-top-icon i {
color:#ccc;
font-size:30px;
margin-top:5px;
display:block;
}
.demo-menu {
border-radius:0px !important;
background:#F2F2F2;
border:none;
min-height:auto !important;
}
.demo-menu .navbar-nav>li>a {
padding:10px 20px;
color:#838383;
font-size:13px;
text-transform:uppercase;
}
.demo-menu .navbar-nav>li>a:focus, .demo-menu .navbar-nav>li>a:hover {
background: #0099cc;
}
.demo-menu.navbar-inverse .navbar-nav>.active>a, .demo-menu.navbar-inverse .navbar-nav>.active>a:focus, .demo-menu.navbar-inverse .navbar-nav>.active>a:hover {
background:#0099cc;
}
.demo-menu .dropdown-menu>.active>a, .demo-menu .dropdown-menu>.active>a:focus, .demo-menu .dropdown-menu>.active>a:hover {
background:#ddd;
color:#333;
}
.demo-menu .navbar-nav>.open>a, .demo-menu .navbar-nav>.open>a:focus, .demo-menu .navbar-nav>.open>a:hover {
background: #0099cc;
}
.demo-menu.navbar-inverse .navbar-brand {
height:auto;
padding:10px 20px;
}
.sm-form {
width:380px;
margin:0 auto;
position:relative;
}
.md-form {
width:550px;
margin:0 auto;
position:relative;
}
.lg-form {
width:700px;
margin:0 auto;
position:relative;
}
.sm-form:after, .sm-form:before, .md-form:after, .md-form:before, .lg-form:after, .lg-form:before {
display: table;
content: " ";
}
.sm-form:after, .md-form:after, .md-form:after, .lg-form:after {
clear: both;
}
.flat-form label {
font-weight:400;
}
.flat-form {
box-shadow: 0 0 5px #dadada, inset 0 -3px 0 #e6e6e6;
color: #838383;
font-size:13px;
float:left;
width:100%;
}
.flat-form .form-control {
border-radius:0px;
box-shadow:none !important;
border:1px solid #ddd;
color:#989898;
height:36px;
font-size:13px;
}
.flat-form .control-label {
line-height:25px;
margin-bottom:0px;
font-weight:400;
}
.flat-form .form-control:focus {
box-shadow:none !important;
border-color:#ddd;
}
.flat-form .input-group-addon {
color:#989898;
border-radius:0px;
border:1px solid #ddd;
border-right:none;
background:#F4F4F4;
min-width: 36px;
}
.flat-form .input-group-addon i {
font-size:16px;
}
.flat-form.panel-default>.panel-heading {
background-color:#fff;
border-bottom:1px solid #eee;
padding: 10px 25px;
}
.flat-form.panel-default>.panel-heading h1 {
margin-top:0px;
font-size:20px;
font-weight:400;
margin-top:10px;
color:#333333;
}
.flat-form.panel-default>.panel-heading h1 {
}
.blue-text {
color:#0099cc !important;
}
.flat-form .panel-body {
padding:15px 25px 20px 25px;
}
.md-form .flat-form .panel-body {
padding:25px 25px 20px 25px;
}
.flat-form .form-msg {
font-size:13px;
margin-bottom:15px;
}
.flat-form .panel-footer {
padding:10px 25px;
}
.flat-form .footer-links {
line-height:20px;
}
.flat-form .footer-buttons {
padding:15px 25px;
}
.pass-note p {
margin-bottom: 5px;
}
.pass-note .or-div {
width: 100%;
position: relative;
display: block;
height: 40px;
text-transform: uppercase;
}
.pass-note .or-div:before {
position: absolute;
z-index: 1;
content: "";
width: 100%;
height: 1px;
background-color: #ddd;
left: 0;
top: 20px;
}
.pass-note .or-div:after {
position: absolute;
z-index: 2;
content: "or";
font-size: 12px;
line-height: 30px;
width: 30px;
margin-left: -15px;
top: 5px;
left: 50%;
background-color: #ddd;
border-radius: 50%;
color: #333;
text-align:center;
}
.flat-form textarea.form-control {
height:auto !important;
}
.flat-form .input-group-textarea .input-group-addon {
vertical-align:top;
padding-top:10px;
}
.flat-form .input-group-textarea .input-group-addon i {
}
.bs-example {
position: relative;
}
#source-button {
position: absolute;
top: 0;
right: 0;
z-index: 100;
font-weight: 700;
}
/******************************************************
STANDARD BUTTONS
******************************************************/
.flat-form .btn-default {
border: 2px solid #C4C4C4;
color: #737373;
padding: 12px 22px;
}
.flat-form .btn-default:hover, .flat-form .btn-default:focus, .flat-form .btn-default:active, .flat-form .btn-default.active, .flat-form .open > .dropdown-toggle.btn-default {
background: #FFFFFF;
border-color: #949494;
color: #737373;
}
.flat-form .btn-default:active, .flat-form .btn-default.active {
border-color: #737373;
box-shadow: none;
}
.flat-form .btn-primary {
background: #0099cc;
color: #ffffff;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .flat-form .open > .dropdown-toggle.btn-primary {
background: #33a6cc;
}
.flat-form .btn-primary:active, .flat-form .btn-primary.active {
background: #007299;
box-shadow: none;
}
.flat-form .btn-success {
background: #00bf6f;
color: #ffffff;
}
.flat-form .btn-success:hover, .flat-form .btn-success:focus, .flat-form .btn-success:active, .flat-form .btn-success.active, .flat-form .open > .dropdown-toggle.btn-success {
background: #39bf87;
}
.flat-form .btn-success:active, .flat-form .btn-success.active {
background: #008c52;
box-shadow: none;
}
.flat-form .btn-info {
background: #31cde8;
color: #ffffff;
}
.flat-form .btn-info:hover, .flat-form .btn-info:focus, .flat-form .btn-info:active, .flat-form .btn-info.active, .open > .flat-form .dropdown-toggle.btn-info {
background: #5fd4e8;
}
.flat-form .btn-info:active, .flat-form .btn-info.active {
background: #35a2b5;
box-shadow: none;
}
.flat-form .btn-warning {
background: #eb8f34;
color: #ffffff;
}
.flat-form .btn-warning:hover, .flat-form .btn-warning:focus, .flat-form .btn-warning:active, .flat-form .btn-warning.active, .flat-form .open > .dropdown-toggle.btn-warning {
background: #eba259;
}
.flat-form .btn-warning:active, .flat-form .btn-warning.active {
background: #b87430;
box-shadow: none;
}
.flat-form .btn-danger {
background: #f25454;
color: #ffffff;
}
.flat-form .btn-danger:hover, .flat-form .btn-danger:focus, .flat-form .btn-danger:active, .flat-form .btn-danger.active, .flat-form .open > .dropdown-toggle.btn-danger {
background: #f26d6d;
}
.flat-form .btn-danger:active, .flat-form .btn-danger.active {
background: #bf4343;
box-shadow: none;
}
/**************************
DEFAULT BOOTSTRAP STYLES
**************************/
.flat-form .btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 13px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 3px;
color:#fff;
}
.flat-form .btn-lg {
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
.flat-form .btn-primary {
color: #fff;
background-color: #428bca;
border-color: #357ebd;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .flat-form .open .dropdown-toggle.btn-primary {
color: #fff;
background-color: #3276b1;
border-color: #285e8e;
}
/***********************
RAISED BUTTONS
************************/
.flat-form .btn-primary.raised {
box-shadow: 0 3px 0 0 #007299;
}
.flat-form .btn-primary.raised:active, .flat-form .btn-primary.raised.active {
background: #33a6cc;
box-shadow: none;
margin-bottom: -3px;
margin-top: 3px;
}
/***********************
CUSTON BTN VALUES
************************/
.flat-form .btn {
border: 0 none;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.flat-form .btn:focus, .flat-form .btn:active:focus, .flat-form .btn.active:focus {
outline: 0 none;
}
.flat-form .btn-primary {
background: #0099cc;
color: #ffffff;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .open > .dropdown-toggle.btn-primary {
background: #33a6cc;
}
.flat-form .btn-primary:active, .btn-primary.active {
background: #007299;
box-shadow: none;
}
/* Social Buttons */
.flat-form .btn-social {
letter-spacing:0px !important;
font-weight:600 !important;
padding:8px 15px !important;
position:relative;
padding-left:35px !important;
margin-bottom:5px;
}
.flat-form .btn-social i {
position:absolute;
left:0px;
padding:4px 0px;
border-right:1px solid rgba(255, 255, 255, 0.1);
width:35px;
}
.btn-social.gmail {
background-color: #d8514d;
}
.btn-social.twitter {
background-color:#3598DC;
}
.btn-social.facebook {
background-color: #4365a2;
}
.btn-social.linkedin {
background: #0e76a8;
}
.btn-social.youtube {
background: #c4302b;
}
.btn-social.github {
background: #171515;
}
.btn-social.android {
background: #a4c639;
}
.btn-social.skype {
background: #00aff0;
}
.btn-social.dropbox {
background: #3d9ae8;
}
.btn-social.foursquare {
background: #25a0ca;
}
.btn-social.apple {
background: #cdcdcd;
}
.btn-social.dribbble {
background: #ea4c89;
}
.btn-social.instagram {
background: #3f729b;
}
.button.pinterest {
background: #c8232c;
}
.btn-social.stackexchange {
background: #ef8236;
}
.btn-social.flickr {
background: #ff0084;
}
/* Checkbox Style */
.flatcontrol-group {
display: inline-block;
width: 200px;
height: 210px;
margin: 10px;
padding: 30px;
text-align: left;
vertical-align: top;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.flatcontrol {
position: relative;
display: block;
margin-top: 5px;
padding-left: 25px;
cursor: pointer;
}
.flatcontrol input {
position: absolute;
z-index: -1;
opacity: 0;
}
.flatcontrol__indicator {
position: absolute;
top: 2px;
left: 0;
width: 18px;
height: 18px;
background: #e6e6e6;
}
.flatcontrol--radio .flatcontrol__indicator {
border-radius: 50%;
}
/* Hover and focus states */
.flatcontrol:hover input ~ .flatcontrol__indicator, .flatcontrol input:focus ~ .flatcontrol__indicator {
background: #ccc;
}
/* Checked state */
.flatcontrol input:checked ~ .flatcontrol__indicator {
background: #2aa1c0;
}
/* Hover state whilst checked */
.flatcontrol:hover input:not([disabled]):checked ~ .flatcontrol__indicator, .flatcontrol input:checked:focus ~ .flatcontrol__indicator {
background: #33a6cc;
}
/* Disabled state */
.flatcontrol input:disabled ~ .flatcontrol__indicator {
pointer-events: none;
opacity: .6;
background: #e6e6e6;
}
/* Check mark */
.flatcontrol__indicator:after {
position: absolute;
display: none;
content: '';
}
/* Show check mark */
.flatcontrol input:checked ~ .flatcontrol__indicator:after {
display: block;
}
/* Checkbox tick */
.flatcontrol--checkbox .flatcontrol__indicator:after {
top: 3px;
left: 7px;
width: 5px;
height: 10px;
transform: rotate(45deg);
border: solid #fff;
border-width: 0 2px 2px 0;
}
/* Disabled tick colour */
.flatcontrol--checkbox input:disabled ~ .flatcontrol__indicator:after {
border-color: #7b7b7b;
}
/* Radio button inner circle */
.flatcontrol--radio .flatcontrol__indicator:after {
top: 6px;
left: 6px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #fff;
}
/* Disabled circle colour */
.flatcontrol--radio input:disabled ~ .flatcontrol__indicator:after {
background: #7b7b7b;
}
/* CSS Rating */
.star-rating {
font-size: 0;
}
.star-rating__wrap {
display: inline-block;
font-size: 1rem;
}
.star-rating__wrap:after {
content: "";
display: table;
clear: both;
}
.star-rating__ico {
float: right;
padding-left: 2px;
cursor: pointer;
color: #FFB300;
margin-top: 7px;
font-size:15px;
}
.star-rating__ico:last-child {
padding-left: 0;
}
.star-rating__input {
display: none;
}
.star-rating__ico:hover:before, .star-rating__ico:hover ~ .star-rating__ico:before, .star-rating__input:checked ~ .star-rating__ico:before {
content: "\f005";
}
/* Form Wizard */
.form-steps {
box-shadow: 0 0 5px #dadada, inset 0 -3px 0 #e6e6e6;
color: #838383;
font-size: 13px;
float: left;
width: 100%;
border-radius: 4px;
margin-top:40px;
overflow:hidden;
border: 1px solid #ddd;
}
.form-steps-heading {
background-color: #fff;
border-bottom: 1px solid #eee;
padding: 10px 25px;
background-color: #F0F0F0;
background-image: -moz-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #F0F0F0));
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);
border-bottom: 1px solid #dadada;
}
.steps-form-title {
margin-top: 0px;
font-size: 18px;
font-weight: 400;
/* text-align: left; */
margin-top: 0px;
margin-bottom:0px;
color: #666;
}
.form-steps-top {
padding:15px;
border-bottom:1px solid #ddd;
}
.form-steps-main {
padding:25px;
}
.form-progressbar {
min-height:50px;
margin: 0;
padding: 0;
counter-reset: step;
}
.form-progressbar li {
list-style-type: none;
width: 25%;
float: left;
font-size: 12px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
}
.form-progressbar li i {
width: 30px;
height: 30px;
content: counter(step);
counter-increment: step;
line-height: 26px;
border: 2px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
font-size:14px;
}
.form-progressbar li:after {
width: 100%;
height: 2px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 15px;
left: -50%;
z-index: -1;
}
.form-progressbar li:first-child:after {
content: none;
}
.form-progressbar li.active {
color: green;
}
.form-progressbar li.active i {
border-color: #55b776;
}
.form-progressbar li.active + li:after {
background-color: #55b776;
}
.form-steps-footer {
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
padding: 10px 25px;
}
.steps-title{font-size:18px; margin-top:0px; color:#666; margin-bottom:5px; text-align:center;}
.steps-subtitle{font-size:14px; margin-top:0px; margin-bottom:20px; font-weight:300; text-align:center;}
.social-bg{color:#fff !important; padding:6px 10px !important;}
.tw-bg{background:#00ACEC !important; border:1px solid #00ACEC !important; }
.fb-bg{background:#3C5C97 !important; border:1px solid #3C5C97 !important; }
.gplus-bg{background:#D33D2C !important; border:1px solid #D33D2C !important; }
.tw-bg .icons{font-size:19px !important;}
.circle-icons{height:100px; width:100px; margin:0 auto; border-radius:50%; text-align:center; line-height:132px; background:#00bf6f; color:#fff;}
.circle-icons i{font-size:70px;}
.congo-page h1{text-align:center; color:#666; font-weight:200 !important; font-size:25px; font-family: 'Raleway', sans-serif;}
.congo-page p{text-align:center; font-weight:300;}
.demo-menu.navbar-inverse .navbar-toggle { border-color: #333; background: #333;}
@media only screen and (max-width: 560px) {
.md-form, .sm-form{width: 95%; margin: 0 auto;}
} | css/form-css.css | body {
font-family: 'Open Sans', sans-serif;
}
.form-main {
background:#ffffff;
width:100%;
margin:50px 0px;
padding:10px 10px;
}
.form-top-icon i {
color:#ccc;
font-size:30px;
margin-top:5px;
display:block;
}
.demo-menu {
border-radius:0px !important;
background:#F2F2F2;
border:none;
min-height:auto !important;
}
.demo-menu .navbar-nav>li>a {
padding:10px 20px;
color:#838383;
font-size:13px;
text-transform:uppercase;
}
.demo-menu .navbar-nav>li>a:focus, .demo-menu .navbar-nav>li>a:hover {
background: #0099cc;
}
.demo-menu.navbar-inverse .navbar-nav>.active>a, .demo-menu.navbar-inverse .navbar-nav>.active>a:focus, .demo-menu.navbar-inverse .navbar-nav>.active>a:hover {
background:#0099cc;
}
.demo-menu .dropdown-menu>.active>a, .demo-menu .dropdown-menu>.active>a:focus, .demo-menu .dropdown-menu>.active>a:hover {
background:#ddd;
color:#333;
}
.demo-menu .navbar-nav>.open>a, .demo-menu .navbar-nav>.open>a:focus, .demo-menu .navbar-nav>.open>a:hover {
background: #0099cc;
}
.demo-menu.navbar-inverse .navbar-brand {
height:auto;
padding:10px 20px;
}
.sm-form {
width:380px;
margin:0 auto;
position:relative;
}
.md-form {
width:550px;
margin:0 auto;
position:relative;
}
.lg-form {
width:700px;
margin:0 auto;
position:relative;
}
.sm-form:after, .sm-form:before, .md-form:after, .md-form:before, .lg-form:after, .lg-form:before {
display: table;
content: " ";
}
.sm-form:after, .md-form:after, .md-form:after, .lg-form:after {
clear: both;
}
.flat-form label {
font-weight:400;
}
.flat-form {
box-shadow: 0 0 5px #dadada, inset 0 -3px 0 #e6e6e6;
color: #838383;
font-size:13px;
float:left;
width:100%;
}
.flat-form .form-control {
border-radius:0px;
box-shadow:none !important;
border:1px solid #ddd;
color:#989898;
height:36px;
font-size:13px;
}
.flat-form .control-label {
line-height:25px;
margin-bottom:0px;
font-weight:400;
}
.flat-form .form-control:focus {
box-shadow:none !important;
border-color:#ddd;
}
.flat-form .input-group-addon {
color:#989898;
border-radius:0px;
border:1px solid #ddd;
border-right:none;
background:#F4F4F4;
min-width: 36px;
}
.flat-form .input-group-addon i {
font-size:16px;
}
.flat-form.panel-default>.panel-heading {
background-color:#fff;
border-bottom:1px solid #eee;
padding: 10px 25px;
}
.flat-form.panel-default>.panel-heading h1 {
margin-top:0px;
font-size:20px;
font-weight:400;
margin-top:10px;
color:#333333;
}
.flat-form.panel-default>.panel-heading h1 {
}
.blue-text {
color:#0099cc !important;
}
.flat-form .panel-body {
padding:15px 25px 20px 25px;
}
.md-form .flat-form .panel-body {
padding:25px 25px 20px 25px;
}
.flat-form .form-msg {
font-size:13px;
margin-bottom:15px;
}
.flat-form .panel-footer {
padding:10px 25px;
}
.flat-form .footer-links {
line-height:20px;
}
.flat-form .footer-buttons {
padding:15px 25px;
}
.pass-note p {
margin-bottom: 5px;
}
.pass-note .or-div {
width: 100%;
position: relative;
display: block;
height: 40px;
text-transform: uppercase;
}
.pass-note .or-div:before {
position: absolute;
z-index: 1;
content: "";
width: 100%;
height: 1px;
background-color: #ddd;
left: 0;
top: 20px;
}
.pass-note .or-div:after {
position: absolute;
z-index: 2;
content: "or";
font-size: 12px;
line-height: 30px;
width: 30px;
margin-left: -15px;
top: 5px;
left: 50%;
background-color: #ddd;
border-radius: 50%;
color: #333;
text-align:center;
}
.flat-form textarea.form-control {
height:auto !important;
}
.flat-form .input-group-textarea .input-group-addon {
vertical-align:top;
padding-top:10px;
}
.flat-form .input-group-textarea .input-group-addon i {
}
.bs-example {
position: relative;
}
#source-button {
position: absolute;
top: 0;
right: 0;
z-index: 100;
font-weight: 700;
}
/******************************************************
STANDARD BUTTONS
******************************************************/
.flat-form .btn-default {
border: 2px solid #C4C4C4;
color: #737373;
padding: 12px 22px;
}
.flat-form .btn-default:hover, .flat-form .btn-default:focus, .flat-form .btn-default:active, .flat-form .btn-default.active, .flat-form .open > .dropdown-toggle.btn-default {
background: #FFFFFF;
border-color: #949494;
color: #737373;
}
.flat-form .btn-default:active, .flat-form .btn-default.active {
border-color: #737373;
box-shadow: none;
}
.flat-form .btn-primary {
background: #0099cc;
color: #ffffff;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .flat-form .open > .dropdown-toggle.btn-primary {
background: #33a6cc;
}
.flat-form .btn-primary:active, .flat-form .btn-primary.active {
background: #007299;
box-shadow: none;
}
.flat-form .btn-success {
background: #00bf6f;
color: #ffffff;
}
.flat-form .btn-success:hover, .flat-form .btn-success:focus, .flat-form .btn-success:active, .flat-form .btn-success.active, .flat-form .open > .dropdown-toggle.btn-success {
background: #39bf87;
}
.flat-form .btn-success:active, .flat-form .btn-success.active {
background: #008c52;
box-shadow: none;
}
.flat-form .btn-info {
background: #31cde8;
color: #ffffff;
}
.flat-form .btn-info:hover, .flat-form .btn-info:focus, .flat-form .btn-info:active, .flat-form .btn-info.active, .open > .flat-form .dropdown-toggle.btn-info {
background: #5fd4e8;
}
.flat-form .btn-info:active, .flat-form .btn-info.active {
background: #35a2b5;
box-shadow: none;
}
.flat-form .btn-warning {
background: #eb8f34;
color: #ffffff;
}
.flat-form .btn-warning:hover, .flat-form .btn-warning:focus, .flat-form .btn-warning:active, .flat-form .btn-warning.active, .flat-form .open > .dropdown-toggle.btn-warning {
background: #eba259;
}
.flat-form .btn-warning:active, .flat-form .btn-warning.active {
background: #b87430;
box-shadow: none;
}
.flat-form .btn-danger {
background: #f25454;
color: #ffffff;
}
.flat-form .btn-danger:hover, .flat-form .btn-danger:focus, .flat-form .btn-danger:active, .flat-form .btn-danger.active, .flat-form .open > .dropdown-toggle.btn-danger {
background: #f26d6d;
}
.flat-form .btn-danger:active, .flat-form .btn-danger.active {
background: #bf4343;
box-shadow: none;
}
/**************************
DEFAULT BOOTSTRAP STYLES
**************************/
.flat-form .btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 13px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 3px;
color:#fff;
}
.flat-form .btn-lg {
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
.flat-form .btn-primary {
color: #fff;
background-color: #428bca;
border-color: #357ebd;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .flat-form .open .dropdown-toggle.btn-primary {
color: #fff;
background-color: #3276b1;
border-color: #285e8e;
}
/***********************
RAISED BUTTONS
************************/
.flat-form .btn-primary.raised {
box-shadow: 0 3px 0 0 #007299;
}
.flat-form .btn-primary.raised:active, .flat-form .btn-primary.raised.active {
background: #33a6cc;
box-shadow: none;
margin-bottom: -3px;
margin-top: 3px;
}
/***********************
CUSTON BTN VALUES
************************/
.flat-form .btn {
border: 0 none;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.flat-form .btn:focus, .flat-form .btn:active:focus, .flat-form .btn.active:focus {
outline: 0 none;
}
.flat-form .btn-primary {
background: #0099cc;
color: #ffffff;
}
.flat-form .btn-primary:hover, .flat-form .btn-primary:focus, .flat-form .btn-primary:active, .flat-form .btn-primary.active, .open > .dropdown-toggle.btn-primary {
background: #33a6cc;
}
.flat-form .btn-primary:active, .btn-primary.active {
background: #007299;
box-shadow: none;
}
/* Social Buttons */
.flat-form .btn-social {
letter-spacing:0px !important;
font-weight:600 !important;
padding:8px 15px !important;
position:relative;
padding-left:35px !important;
margin-bottom:5px;
}
.flat-form .btn-social i {
position:absolute;
left:0px;
padding:4px 0px;
border-right:1px solid rgba(255, 255, 255, 0.1);
width:35px;
}
.btn-social.gmail {
background-color: #d8514d;
}
.btn-social.twitter {
background-color:#3598DC;
}
.btn-social.facebook {
background-color: #4365a2;
}
.btn-social.linkedin {
background: #0e76a8;
}
.btn-social.youtube {
background: #c4302b;
}
.btn-social.github {
background: #171515;
}
.btn-social.android {
background: #a4c639;
}
.btn-social.skype {
background: #00aff0;
}
.btn-social.dropbox {
background: #3d9ae8;
}
.btn-social.foursquare {
background: #25a0ca;
}
.btn-social.apple {
background: #cdcdcd;
}
.btn-social.dribbble {
background: #ea4c89;
}
.btn-social.instagram {
background: #3f729b;
}
.button.pinterest {
background: #c8232c;
}
.btn-social.stackexchange {
background: #ef8236;
}
.btn-social.flickr {
background: #ff0084;
}
/* Checkbox Style */
.flatcontrol-group {
display: inline-block;
width: 200px;
height: 210px;
margin: 10px;
padding: 30px;
text-align: left;
vertical-align: top;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.flatcontrol {
position: relative;
display: block;
margin-top: 5px;
padding-left: 25px;
cursor: pointer;
}
.flatcontrol input {
position: absolute;
z-index: -1;
opacity: 0;
}
.flatcontrol__indicator {
position: absolute;
top: 2px;
left: 0;
width: 18px;
height: 18px;
background: #e6e6e6;
}
.flatcontrol--radio .flatcontrol__indicator {
border-radius: 50%;
}
/* Hover and focus states */
.flatcontrol:hover input ~ .flatcontrol__indicator, .flatcontrol input:focus ~ .flatcontrol__indicator {
background: #ccc;
}
/* Checked state */
.flatcontrol input:checked ~ .flatcontrol__indicator {
background: #2aa1c0;
}
/* Hover state whilst checked */
.flatcontrol:hover input:not([disabled]):checked ~ .flatcontrol__indicator, .flatcontrol input:checked:focus ~ .flatcontrol__indicator {
background: #33a6cc;
}
/* Disabled state */
.flatcontrol input:disabled ~ .flatcontrol__indicator {
pointer-events: none;
opacity: .6;
background: #e6e6e6;
}
/* Check mark */
.flatcontrol__indicator:after {
position: absolute;
display: none;
content: '';
}
/* Show check mark */
.flatcontrol input:checked ~ .flatcontrol__indicator:after {
display: block;
}
/* Checkbox tick */
.flatcontrol--checkbox .flatcontrol__indicator:after {
top: 3px;
left: 7px;
width: 5px;
height: 10px;
transform: rotate(45deg);
border: solid #fff;
border-width: 0 2px 2px 0;
}
/* Disabled tick colour */
.flatcontrol--checkbox input:disabled ~ .flatcontrol__indicator:after {
border-color: #7b7b7b;
}
/* Radio button inner circle */
.flatcontrol--radio .flatcontrol__indicator:after {
top: 6px;
left: 6px;
width: 6px;
height: 6px;
border-radius: 50%;
background: #fff;
}
/* Disabled circle colour */
.flatcontrol--radio input:disabled ~ .flatcontrol__indicator:after {
background: #7b7b7b;
}
/* CSS Rating */
.star-rating {
font-size: 0;
}
.star-rating__wrap {
display: inline-block;
font-size: 1rem;
}
.star-rating__wrap:after {
content: "";
display: table;
clear: both;
}
.star-rating__ico {
float: right;
padding-left: 2px;
cursor: pointer;
color: #FFB300;
margin-top: 7px;
font-size:15px;
}
.star-rating__ico:last-child {
padding-left: 0;
}
.star-rating__input {
display: none;
}
.star-rating__ico:hover:before, .star-rating__ico:hover ~ .star-rating__ico:before, .star-rating__input:checked ~ .star-rating__ico:before {
content: "\f005";
}
/* Form Wizard */
.form-steps {
box-shadow: 0 0 5px #dadada, inset 0 -3px 0 #e6e6e6;
color: #838383;
font-size: 13px;
float: left;
width: 100%;
border-radius: 4px;
margin-top:40px;
overflow:hidden;
border: 1px solid #ddd;
}
.form-steps-heading {
background-color: #fff;
border-bottom: 1px solid #eee;
padding: 10px 25px;
background-color: #F0F0F0;
background-image: -moz-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #F0F0F0));
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);
border-bottom: 1px solid #dadada;
}
.steps-form-title {
margin-top: 0px;
font-size: 18px;
font-weight: 400;
/* text-align: left; */
margin-top: 0px;
margin-bottom:0px;
color: #666;
}
.form-steps-top {
padding:15px;
border-bottom:1px solid #ddd;
}
.form-steps-main {
padding:25px;
}
.form-progressbar {
min-height:50px;
margin: 0;
padding: 0;
counter-reset: step;
}
.form-progressbar li {
list-style-type: none;
width: 25%;
float: left;
font-size: 12px;
position: relative;
text-align: center;
text-transform: uppercase;
color: #7d7d7d;
}
.form-progressbar li i {
width: 30px;
height: 30px;
content: counter(step);
counter-increment: step;
line-height: 26px;
border: 2px solid #7d7d7d;
display: block;
text-align: center;
margin: 0 auto 10px auto;
border-radius: 50%;
background-color: white;
font-size:14px;
}
.form-progressbar li:after {
width: 100%;
height: 2px;
content: '';
position: absolute;
background-color: #7d7d7d;
top: 15px;
left: -50%;
z-index: -1;
}
.form-progressbar li:first-child:after {
content: none;
}
.form-progressbar li.active {
color: green;
}
.form-progressbar li.active i {
border-color: #55b776;
}
.form-progressbar li.active + li:after {
background-color: #55b776;
}
.form-steps-footer {
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
padding: 10px 25px;
}
.steps-title{font-size:18px; margin-top:0px; color:#666; margin-bottom:5px; text-align:center;}
.steps-subtitle{font-size:14px; margin-top:0px; margin-bottom:20px; font-weight:300; text-align:center;}
.social-bg{color:#fff !important; padding:6px 10px !important;}
.tw-bg{background:#00ACEC !important; border:1px solid #00ACEC !important; }
.fb-bg{background:#3C5C97 !important; border:1px solid #3C5C97 !important; }
.gplus-bg{background:#D33D2C !important; border:1px solid #D33D2C !important; }
.tw-bg .icons{font-size:19px !important;}
.circle-icons{height:100px; width:100px; margin:0 auto; border-radius:50%; text-align:center; line-height:132px; background:#00bf6f; color:#fff;}
.circle-icons i{font-size:70px;}
.congo-page h1{text-align:center; color:#666; font-weight:200 !important; font-size:25px; font-family: 'Raleway', sans-serif;}
.congo-page p{text-align:center; font-weight:300;}
.demo-menu.navbar-inverse .navbar-toggle { border-color: #333; background: #333;}
@media only screen and (max-width: 560px) {
.md-form, .sm-form{width: 95%; margin: 0 auto;}
} | 0.249722 | 0.041327 |
display: none;
position: relative;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
#iconsView > div.wrapper {
display: flex;
flex-flow: row wrap;
-moz-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
justify-content: space-around;
-moz-justify-content: space-around;
-webkit-justify-content: space-around;
align-content: flex-start;
-webkit-align-content: flex-start;
padding: 30px 5%;
}
#iconsView > div.wrapper > p.noPrinters {
display: none;
font-size: 16px;
text-align: center;
white-space: initial;
}
#iconsView > div.wrapper > div.printer {
width: 250px;
height: 100px;
margin: 20px;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
text-align: center;
background-color: #FFF;
cursor: pointer;
overflow: hidden;
}
#iconsView > div.wrapper > div.printer:hover {
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
#iconsView > div.wrapper > div.printer > div.info {
width: 220px;
height: 90px;
float: left;
padding: 5px 0;
}
#iconsView > div.wrapper > div.printer > div.info > p {
height: 30px;
padding: 0 15px;
font-size: 16px;
line-height: 30px;
}
#iconsView > div.wrapper > div.printer > div.status {
width: 30px;
height: 100%;
float: left;
}
#iconsView > div.wrapper > div.printer.connected > div.status {background-color: #1DBE00;}
#iconsView > div.wrapper > div.printer.warning > div.status {background-color: #EBD000;}
#iconsView > div.wrapper > div.printer.error > div.status {background-color: #E40000;}
#iconsView > div.wrapper > div.printer.missing > div.status {background-color: #A8A8A8;}
#iconsView > div.wrapper > div.printer.connected:hover > div.status {background-color: #009E00;}
#iconsView > div.wrapper > div.printer.warning:hover > div.status {background-color: #CBB000;}
#iconsView > div.wrapper > div.printer.error:hover > div.status {background-color: #C40000;}
#iconsView > div.wrapper > div.printer.missing:hover > div.status {background-color: #888888;}
#iconsView > div.wrapper > div.printer > div.status > p {display: none;}
#iconsView > div.wrapper > div.printer > div.status > p {
width: 100px;
margin-left: -99px;
display: block;
transform: rotate(270deg);
transform-origin: top right;
color: #FFF;
font-size: 11px;
font-weight: 200;
line-height: 30px;
letter-spacing: 2px;
} | client/src/assets/style/iconsView.css | display: none;
position: relative;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
#iconsView > div.wrapper {
display: flex;
flex-flow: row wrap;
-moz-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
justify-content: space-around;
-moz-justify-content: space-around;
-webkit-justify-content: space-around;
align-content: flex-start;
-webkit-align-content: flex-start;
padding: 30px 5%;
}
#iconsView > div.wrapper > p.noPrinters {
display: none;
font-size: 16px;
text-align: center;
white-space: initial;
}
#iconsView > div.wrapper > div.printer {
width: 250px;
height: 100px;
margin: 20px;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.3);
text-align: center;
background-color: #FFF;
cursor: pointer;
overflow: hidden;
}
#iconsView > div.wrapper > div.printer:hover {
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}
#iconsView > div.wrapper > div.printer > div.info {
width: 220px;
height: 90px;
float: left;
padding: 5px 0;
}
#iconsView > div.wrapper > div.printer > div.info > p {
height: 30px;
padding: 0 15px;
font-size: 16px;
line-height: 30px;
}
#iconsView > div.wrapper > div.printer > div.status {
width: 30px;
height: 100%;
float: left;
}
#iconsView > div.wrapper > div.printer.connected > div.status {background-color: #1DBE00;}
#iconsView > div.wrapper > div.printer.warning > div.status {background-color: #EBD000;}
#iconsView > div.wrapper > div.printer.error > div.status {background-color: #E40000;}
#iconsView > div.wrapper > div.printer.missing > div.status {background-color: #A8A8A8;}
#iconsView > div.wrapper > div.printer.connected:hover > div.status {background-color: #009E00;}
#iconsView > div.wrapper > div.printer.warning:hover > div.status {background-color: #CBB000;}
#iconsView > div.wrapper > div.printer.error:hover > div.status {background-color: #C40000;}
#iconsView > div.wrapper > div.printer.missing:hover > div.status {background-color: #888888;}
#iconsView > div.wrapper > div.printer > div.status > p {display: none;}
#iconsView > div.wrapper > div.printer > div.status > p {
width: 100px;
margin-left: -99px;
display: block;
transform: rotate(270deg);
transform-origin: top right;
color: #FFF;
font-size: 11px;
font-weight: 200;
line-height: 30px;
letter-spacing: 2px;
} | 0.344113 | 0.074231 |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
min-width: 350px;
/* Dialog will be no smaller than this */
max-width: 580px;
/* Dialog will wrap after this width */
display: block;
margin-top: -145px;
background-color: #fff;
width: 400px;
/*height: 130px;*/
padding: 10px 0px;
border-radius: 3px;
text-align: center;
position: fixed;
left: 50%;
top: 50%;
margin-left: -235px;
overflow: hidden;
z-index: 1060;
}
#popup_content {
margin-top: 25px;
}
#popup_title {
margin-top: -10px;
font-weight: bold;
text-align: left;
font-size: 15px;
color: #FFF;
border-bottom: 1px solid #ddd;
padding: 2px;
padding-left: 16px;
width: auto;
overflow: hidden;
}
#popup_icon {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
height: 70px;
width: 70px;
margin: 0px auto;
float: left;
}
#popup_icon.alert {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
}
#popup_icon.confirm {
background: 16px 16px no-repeat url(../images/pnotify/confirm.png);
}
#popup_icon.info {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
}
#popup_icon.success {
background: 16px 16px no-repeat url(../images/pnotify/success.png);
}
#popup_icon.warning {
background: 16px 16px no-repeat url(../images/pnotify/warning.png);
}
#popup_icon.error {
background: 16px 16px no-repeat url(../images/pnotify/danger.png);
}
.alert-bg {
background: #44a4e4;
}
.confirm-bg {
background: #31B8D2;
}
.info-bg {
background: #44a4e4;
}
.success-bg {
background: #36c274;
}
.warning-bg {
background: #e88245;
}
.error-bg {
background: red;
}
#popup_panel {
text-align: right;
margin: 25px 0em 0em 0em;
}
#popup_panel1 {
text-align: right;
margin: 25px 0em 0em 0em;
}
#popup_panel1 button {
float: right;
margin-right: 13px;
}
#popup_panel .btn, #popup_panel1 .btn {
width: 80px;
background: #eee;
border-color: #bbb;
}
#popup_message {
text-align: left;
}
#popup_panel button:nth-child(1) {
margin-right: 15px;
}
#popup_panel button:nth-child(2) {
float: right;
margin-right: 13px;
}
#popup_prompt {
margin: .5em 0em;
}
.icon-close {
float: right;
margin-right: 10px;
padding-top: 3px;
font-size: 17px;
cursor: pointer;
}
#popup_overlay{
position: absolute;
z-index: 1030;
top: 0px;
left: 0px;
width: 100%;
}
/*smartphone, tablet when screen size (width) < 768px */
@media (max-width: 520px) {
#popup_container {
max-width: inherit;
min-width: inherit;
width: auto;
margin-left: 0;
margin-right: 0;
left: 20px;
right: 20px;
}
}
} | public/css/jquery.alerts.css | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
min-width: 350px;
/* Dialog will be no smaller than this */
max-width: 580px;
/* Dialog will wrap after this width */
display: block;
margin-top: -145px;
background-color: #fff;
width: 400px;
/*height: 130px;*/
padding: 10px 0px;
border-radius: 3px;
text-align: center;
position: fixed;
left: 50%;
top: 50%;
margin-left: -235px;
overflow: hidden;
z-index: 1060;
}
#popup_content {
margin-top: 25px;
}
#popup_title {
margin-top: -10px;
font-weight: bold;
text-align: left;
font-size: 15px;
color: #FFF;
border-bottom: 1px solid #ddd;
padding: 2px;
padding-left: 16px;
width: auto;
overflow: hidden;
}
#popup_icon {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
height: 70px;
width: 70px;
margin: 0px auto;
float: left;
}
#popup_icon.alert {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
}
#popup_icon.confirm {
background: 16px 16px no-repeat url(../images/pnotify/confirm.png);
}
#popup_icon.info {
background: 16px 16px no-repeat url(../images/pnotify/info.png);
}
#popup_icon.success {
background: 16px 16px no-repeat url(../images/pnotify/success.png);
}
#popup_icon.warning {
background: 16px 16px no-repeat url(../images/pnotify/warning.png);
}
#popup_icon.error {
background: 16px 16px no-repeat url(../images/pnotify/danger.png);
}
.alert-bg {
background: #44a4e4;
}
.confirm-bg {
background: #31B8D2;
}
.info-bg {
background: #44a4e4;
}
.success-bg {
background: #36c274;
}
.warning-bg {
background: #e88245;
}
.error-bg {
background: red;
}
#popup_panel {
text-align: right;
margin: 25px 0em 0em 0em;
}
#popup_panel1 {
text-align: right;
margin: 25px 0em 0em 0em;
}
#popup_panel1 button {
float: right;
margin-right: 13px;
}
#popup_panel .btn, #popup_panel1 .btn {
width: 80px;
background: #eee;
border-color: #bbb;
}
#popup_message {
text-align: left;
}
#popup_panel button:nth-child(1) {
margin-right: 15px;
}
#popup_panel button:nth-child(2) {
float: right;
margin-right: 13px;
}
#popup_prompt {
margin: .5em 0em;
}
.icon-close {
float: right;
margin-right: 10px;
padding-top: 3px;
font-size: 17px;
cursor: pointer;
}
#popup_overlay{
position: absolute;
z-index: 1030;
top: 0px;
left: 0px;
width: 100%;
}
/*smartphone, tablet when screen size (width) < 768px */
@media (max-width: 520px) {
#popup_container {
max-width: inherit;
min-width: inherit;
width: auto;
margin-left: 0;
margin-right: 0;
left: 20px;
right: 20px;
}
}
} | 0.26827 | 0.080466 |
@font-face {
font-family: 'poppinsblack';
src: url('poppins-black-webfont.woff2') format('woff2'),
url('poppins-black-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsblack_italic';
src: url('poppins-blackitalic-webfont.woff2') format('woff2'),
url('poppins-blackitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsbold';
src: url('poppins-bold-webfont.woff2') format('woff2'),
url('poppins-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsbold_italic';
src: url('poppins-bolditalic-webfont.woff2') format('woff2'),
url('poppins-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextrabold';
src: url('poppins-extrabold-webfont.woff2') format('woff2'),
url('poppins-extrabold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextrabold_italic';
src: url('poppins-extrabolditalic-webfont.woff2') format('woff2'),
url('poppins-extrabolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextralight';
src: url('poppins-extralight-webfont.woff2') format('woff2'),
url('poppins-extralight-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextralight_italic';
src: url('poppins-extralightitalic-webfont.woff2') format('woff2'),
url('poppins-extralightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsitalic';
src: url('poppins-italic-webfont.woff2') format('woff2'),
url('poppins-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinslight';
src: url('poppins-light-webfont.woff2') format('woff2'),
url('poppins-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinslight_italic';
src: url('poppins-lightitalic-webfont.woff2') format('woff2'),
url('poppins-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsmedium';
src: url('poppins-medium-webfont.woff2') format('woff2'),
url('poppins-medium-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
} | html/fonts/stylesheet.css |
@font-face {
font-family: 'poppinsblack';
src: url('poppins-black-webfont.woff2') format('woff2'),
url('poppins-black-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsblack_italic';
src: url('poppins-blackitalic-webfont.woff2') format('woff2'),
url('poppins-blackitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsbold';
src: url('poppins-bold-webfont.woff2') format('woff2'),
url('poppins-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsbold_italic';
src: url('poppins-bolditalic-webfont.woff2') format('woff2'),
url('poppins-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextrabold';
src: url('poppins-extrabold-webfont.woff2') format('woff2'),
url('poppins-extrabold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextrabold_italic';
src: url('poppins-extrabolditalic-webfont.woff2') format('woff2'),
url('poppins-extrabolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextralight';
src: url('poppins-extralight-webfont.woff2') format('woff2'),
url('poppins-extralight-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsextralight_italic';
src: url('poppins-extralightitalic-webfont.woff2') format('woff2'),
url('poppins-extralightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsitalic';
src: url('poppins-italic-webfont.woff2') format('woff2'),
url('poppins-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinslight';
src: url('poppins-light-webfont.woff2') format('woff2'),
url('poppins-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinslight_italic';
src: url('poppins-lightitalic-webfont.woff2') format('woff2'),
url('poppins-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'poppinsmedium';
src: url('poppins-medium-webfont.woff2') format('woff2'),
url('poppins-medium-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
} | 0.539226 | 0.113998 |
:root {
--rnt-build: "4";
}
.privateChannels-1nO12o .channel-2QD9_O[href="/store"] {
display: none;
}
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Send a gift"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Send en gave"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Ein Geschenk senden"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Enviar un regalo"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Envoyer un cadeau"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Pošalji poklon"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Invia un regalo"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Siųsti dovaną"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Ajándék küldése"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Verstuur een cadeau"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Wyślij prezent"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Enviar um presente"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Trimite un cadou"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Lähetä lahja"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Skicka en gåva"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Tặng một món quà"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Bir hediye gönder"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Odeslat dárek"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Στείλτε ένα δώρο"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Изпрати подарък"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Отправить подарок"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Надіслати подарунок"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="ส่งของขวัญ"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="发送礼物"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="ギフトを贈る"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="發送禮物"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="선물 보내기"] {
display: none;
}
[id*="RemoveNitroTab"] .bd-addon-header .bd-meta:before {
content:"build " var(--rnt-build) " ";
} | xcores/themes/RNT_Core.css |
:root {
--rnt-build: "4";
}
.privateChannels-1nO12o .channel-2QD9_O[href="/store"] {
display: none;
}
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Send a gift"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Send en gave"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Ein Geschenk senden"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Enviar un regalo"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Envoyer un cadeau"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Pošalji poklon"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Invia un regalo"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Siųsti dovaną"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Ajándék küldése"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Verstuur een cadeau"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Wyślij prezent"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Enviar um presente"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Trimite un cadou"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Lähetä lahja"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Skicka en gåva"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Tặng một món quà"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Bir hediye gönder"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Odeslat dárek"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Στείλτε ένα δώρο"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Изпрати подарък"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Отправить подарок"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="Надіслати подарунок"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="ส่งของขวัญ"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="发送礼物"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="ギフトを贈る"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="發送禮物"],
.channelTextArea-2VhZ6z .button-38aScr[aria-label="선물 보내기"] {
display: none;
}
[id*="RemoveNitroTab"] .bd-addon-header .bd-meta:before {
content:"build " var(--rnt-build) " ";
} | 0.401923 | 0.163947 |
html, body, div, button, ul, li, img, h1 {
/*
Set the box model property sizes to zero. You would never
want these properties to be inherited or to "cascade".
*/
margin: 0;
padding: 0;
border: 0;
/*
Having font, color, and text-align properties set to
inherit, and thus receive their parents' values, turns out
to be super useful. You only want to declare the font
specifications on the body, rather than repeating them for
each element. Never set it to an actual default in the
reset, or you'll lose the cascading property, and will be
fighting it all throughout your stylesheet.
*/
font: inherit;
color: inherit;
text-align: inherit;
vertical-align: inherit;
/*
Inheriting makes little sense for backgrounds, rather have
it be transparent and you will see the parents' background
behind it. That way you would intentionally override it.
*/
background: transparent;
}
ul {
/*
Unordered lists happen to be extremely useful for grouping
content. However, in most every case we could do without
the little bullet points, so lets remove them by default.
*/
list-style: none;
}
button {
display: block;
cursor: pointer;
outline: none;
/*
We're forcing the button to behave like the default box
model other elements adhere to, all for simplicity's sake.
*/
box-sizing: content-box;
-webkit-appearance: none;
}
img {
display: block;
width: 100%;
height: auto;
}
/* UTILS */
.group:after {
content: "";
display: block;
clear: both;
}
/* STYLES */
body {
font-family: sans-serif;
}
h1 {
margin: 20px 0;
font-weight: bold;
font-size: 60px;
text-align: center;
}
.carousel {
position: relative;
margin: auto;
width: 500px;
text-align: center;
}
.carousel > button {
position: absolute;
/*
Top coordinate is half of the carousel item height
((10 + 250 + 10) / 2) minus half the button width
((4 + 30 + 4) / 2). This puts it in the middle
vertically.
*/
top: 116px;
width: 30px;
height: 30px;
border: 4px solid blue;
color: blue;
font-size: 20px;
border-radius: 20px;
z-index: 1;
}
.carousel > button:hover {
border-color: red;
color: red;
}
.carousel > button:nth-child(1) {
/*
First button is on the left. Using pseudo-selector.
*/
left: -50px;
}
.carousel > button:nth-child(2) {
/*
Second button is on the right.
*/
right: -50px;
}
.carousel > ul {
/*
Create a new coordinate system for absolute
positioned children.
*/
position: relative;
/*
Because we will have child <li>s slide in from left and
right, and thus positioned outside the container, we need
to hide them while they are in their resting places.
Overflow hidden chops them off.
*/
overflow: hidden;
/*
As the absolute positioned children (<li>s) do not grow
the height of the parent container (this <ul>), we need
to add a hard-coded height. Adjust this value according
to the carousel content height in the carousel.
*/
height: 250px;
border: 10px solid black;
}
.carousel > ul > li {
/*
The <li> items are all going to be positioned absolutely,
assigning them a left position to either be on the left
side (-100%), in the middle (0), or on the right (100%).
By default all the items are assumed to be on the left
side (-100%). We will override this later for the active
<li>, as well as for all <li>s following the active <li>.
*/
position: absolute;
left: -100%;
/*
One <li> should take up the full width of the parent
container.
*/
width: 100%;
/*
The sliding animation occurs by setting the transition
property to animate the left property. Classes will be
used to change the left property, causing the animation
to tween the in between states of the property for a
given duration.
*/
transition: left 300ms linear;
/*
We set a default z-index of 1. We want to be behind the
active and previous <li>s.
*/
z-index: 1;
}
.carousel > ul > li.is-previous {
/*
At any given time there should be no more than 2 visible
<li>s: the active one, and the previous one. To make sure
they are in front of any others items that might be
repositioning during animation, we give these a higher
z-index.
As a reminder: Without a z-index and all other things being
equal, a later declared element in the document is stacked
higher, closer to the viewer.
*/
z-index: 2;
}
.carousel > ul > li.is-active {
/*
The active <li> should have a left of zero, taking up the
full container when at rest. We also set the z-index to be
highest.
*/
left: 0;
z-index: 3;
}
.carousel > ul > li.is-active ~ li {
/*
All the items after the active <li> should be on the
right side. The ~ selector finds all siblings that follow.
*/
left: 100%;
}
.carousel > nav {
/*
This element contains floats. Floating can only be done
right and left. In order to center a group of floated
elements, we make the parent container an inline-block.
Inline-block elements behave as inline elements in their
parent context, as if they were words in a paragraph.
This means the `text-align: center` property will apply,
and this element, containing a group of floats will be
aligned center.
*/
display: inline-block;
}
.carousel > nav > span {
float: left;
margin: 10px 5px;
height: 10px;
width: 10px;
background: black;
border-radius: 5px;
cursor: pointer;
}
.carousel > nav > span:hover {
background: blue;
}
.carousel > nav > span.is-current {
background: red;
} | jQueryPlugins-gh-pages/css/carousel-advanced.css | html, body, div, button, ul, li, img, h1 {
/*
Set the box model property sizes to zero. You would never
want these properties to be inherited or to "cascade".
*/
margin: 0;
padding: 0;
border: 0;
/*
Having font, color, and text-align properties set to
inherit, and thus receive their parents' values, turns out
to be super useful. You only want to declare the font
specifications on the body, rather than repeating them for
each element. Never set it to an actual default in the
reset, or you'll lose the cascading property, and will be
fighting it all throughout your stylesheet.
*/
font: inherit;
color: inherit;
text-align: inherit;
vertical-align: inherit;
/*
Inheriting makes little sense for backgrounds, rather have
it be transparent and you will see the parents' background
behind it. That way you would intentionally override it.
*/
background: transparent;
}
ul {
/*
Unordered lists happen to be extremely useful for grouping
content. However, in most every case we could do without
the little bullet points, so lets remove them by default.
*/
list-style: none;
}
button {
display: block;
cursor: pointer;
outline: none;
/*
We're forcing the button to behave like the default box
model other elements adhere to, all for simplicity's sake.
*/
box-sizing: content-box;
-webkit-appearance: none;
}
img {
display: block;
width: 100%;
height: auto;
}
/* UTILS */
.group:after {
content: "";
display: block;
clear: both;
}
/* STYLES */
body {
font-family: sans-serif;
}
h1 {
margin: 20px 0;
font-weight: bold;
font-size: 60px;
text-align: center;
}
.carousel {
position: relative;
margin: auto;
width: 500px;
text-align: center;
}
.carousel > button {
position: absolute;
/*
Top coordinate is half of the carousel item height
((10 + 250 + 10) / 2) minus half the button width
((4 + 30 + 4) / 2). This puts it in the middle
vertically.
*/
top: 116px;
width: 30px;
height: 30px;
border: 4px solid blue;
color: blue;
font-size: 20px;
border-radius: 20px;
z-index: 1;
}
.carousel > button:hover {
border-color: red;
color: red;
}
.carousel > button:nth-child(1) {
/*
First button is on the left. Using pseudo-selector.
*/
left: -50px;
}
.carousel > button:nth-child(2) {
/*
Second button is on the right.
*/
right: -50px;
}
.carousel > ul {
/*
Create a new coordinate system for absolute
positioned children.
*/
position: relative;
/*
Because we will have child <li>s slide in from left and
right, and thus positioned outside the container, we need
to hide them while they are in their resting places.
Overflow hidden chops them off.
*/
overflow: hidden;
/*
As the absolute positioned children (<li>s) do not grow
the height of the parent container (this <ul>), we need
to add a hard-coded height. Adjust this value according
to the carousel content height in the carousel.
*/
height: 250px;
border: 10px solid black;
}
.carousel > ul > li {
/*
The <li> items are all going to be positioned absolutely,
assigning them a left position to either be on the left
side (-100%), in the middle (0), or on the right (100%).
By default all the items are assumed to be on the left
side (-100%). We will override this later for the active
<li>, as well as for all <li>s following the active <li>.
*/
position: absolute;
left: -100%;
/*
One <li> should take up the full width of the parent
container.
*/
width: 100%;
/*
The sliding animation occurs by setting the transition
property to animate the left property. Classes will be
used to change the left property, causing the animation
to tween the in between states of the property for a
given duration.
*/
transition: left 300ms linear;
/*
We set a default z-index of 1. We want to be behind the
active and previous <li>s.
*/
z-index: 1;
}
.carousel > ul > li.is-previous {
/*
At any given time there should be no more than 2 visible
<li>s: the active one, and the previous one. To make sure
they are in front of any others items that might be
repositioning during animation, we give these a higher
z-index.
As a reminder: Without a z-index and all other things being
equal, a later declared element in the document is stacked
higher, closer to the viewer.
*/
z-index: 2;
}
.carousel > ul > li.is-active {
/*
The active <li> should have a left of zero, taking up the
full container when at rest. We also set the z-index to be
highest.
*/
left: 0;
z-index: 3;
}
.carousel > ul > li.is-active ~ li {
/*
All the items after the active <li> should be on the
right side. The ~ selector finds all siblings that follow.
*/
left: 100%;
}
.carousel > nav {
/*
This element contains floats. Floating can only be done
right and left. In order to center a group of floated
elements, we make the parent container an inline-block.
Inline-block elements behave as inline elements in their
parent context, as if they were words in a paragraph.
This means the `text-align: center` property will apply,
and this element, containing a group of floats will be
aligned center.
*/
display: inline-block;
}
.carousel > nav > span {
float: left;
margin: 10px 5px;
height: 10px;
width: 10px;
background: black;
border-radius: 5px;
cursor: pointer;
}
.carousel > nav > span:hover {
background: blue;
}
.carousel > nav > span.is-current {
background: red;
} | 0.61555 | 0.202463 |
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,fieldset,lengend,button,input,textarea,th,td{margin:0;padding:0}
body,button,input,select,textarea,th{font:12px/1.5 '\5FAE\8F6F\96C5\9ED1',Tahoma,"hiragino sans gb",Helvetica,Arial}
h1,h2,h3,h4,h5,h6{font-size:100%}
ul,ol,li{list-style:none}
legend{color:#000}
fieldset,img{border:0}
button,input,select,textarea{font-size:100%}
table{border-collapse:collapse;border-spacing:0}
em{font-style:normal}
a{text-decoration:none;color:#333}
a:hover{text-decoration:underline}
body{color:#333;background:#fff}
section,header,article,aside{display:block}
html,body{width:100%;overflow-x:hidden}
::-webkit-scrollbar{width:12px;height:12px}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#FFF}
::-webkit-scrollbar-thumb:vertical{background-color:#8E8E8E;border-radius:1px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}
::-webkit-scrollbar-resizer:vertical{background-color:#FF6E00}
a{color:#ee4900}
a:hover{text-decoration:none;color:#f3711f}
.clearfix{*zoom:1}
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}
.mod_header{width:100%;height:60px;background:#20252b;border-bottom:2px solid #ff5f19;position:fixed;left:0;z-index:9}
.mod_header .inner{position:relative;width:980px;min-height:60px;margin:0 auto}
.mod_header h1{position:relative;float:left;height:60px;width:173px;text-indent:-9999px}
.ico_logo{position:absolute;left:0;top:8px;width:117px;height:45px;background:url(img/logo.png) no-repeat 0 0}
.mod_nav{height:60px;overflow:hidden;float:left;border-right:1px solid #474748}
.mod_nav li{float:left;border-left:1px solid #474748}
.mod_nav li a{display:block;height:60px;width:150px;border-left:1px solid #000;text-align:center;line-height:60px;font-size:14px;font-family:'\5FAE\8F6F\96C5\9ED1';color:#fff}
.mod_nav li a.on{background:#ef4900}
.mod_mini_nav{position:absolute;right:0;color:#fff;text-align:right}
.mod_mini_nav p:nth-of-type(2){padding-top:15px}
.mod_form{width:100%;clear:both;background:#34393e}
.mod_footer{width:100%;height:30px;line-height:30px;margin-top:30px;background:#34393E;color:#787878;overflow:hidden}
.mod_footer>div{position:relative;width:980px;margin:0 auto}
.mod_footer p{float:left;padding-right:5px}
.mod_footer .opt a{margin:0 5px}
.mod_footer .support{position:absolute;right:0;padding:0}
.mod_footer a{color:#787878;text-decoration:underline}
.mod_footer a:hover{color:#fff}
.pop_msg{position:fixed;left:50%;top:50%;margin-top:-15px;height:30px;line-height:30px;padding:0 15px;font-size:14px;font-weight:bold;border:3px solid #333;background:#EF4900;box-shadow:1px 1px 8px #000;display:none;z-index:100000;color:#fff}
.pagelist{text-align:center;padding:10px 0}
.pagelist a{display:inline-block;margin:0 2px;height:26px;line-height:26px;padding:0 10px;border:1px solid #ddd;background:#f7f7f7;color:#000}
.pagelist .cur{background:#EF4900;color:#fff}
.pop_dialog{position:fixed;top:50%;left:50%;border:2px solid #000;background:#fff;z-index:100;box-shadow:-1px 1px 10px #333}
.pop_dialog.downs{border:none}
.pop_dialog .hd{padding:0 10px;position:relative}
.pop_dialog .hd h3{height:26px;line-height:26px;font-weight:normal;display:none}
.pop_dialog .inner{padding:20px}
.pop_dialog .inner h4{font-size:14px}
.pop_dialog .inner p{padding:5px 10px 0 0}
.pop_dialog .inner .big{position:relative;padding-left:80px}
.pop_dialog .pop_close{position:absolute;right:-8px;top:-8px;width:15px;height:15px;overflow:hidden;background:#000;color:#fff;text-align:center;line-height:12px}
.pop_dialog.downs .pop_close{top:0;right:15px;width:22px;height:22px;line-height:100px;background:url(img/close.png) no-repeat 0 0}
.pop_dialog .pop_close:hover{background-color:#EE4900}
.icon_success,.icon_error{position:absolute;left:20px;top:3px;width:42px;height:42px;background:url(img/icon.png) no-repeat 0 0}
.icon_error{background-position:0 -43px}
.pop_dialog .inner .small{position:relative;padding-left:80px}
.pop_dialog .inner .small .icon_success{top:-10px}
.pop_mask{display:none;position:fixed;background:#000;top:0;filter:alpha(opacity=40);opacity:.4;width:100%;height:100%;z-index:10}
.down{width:625px;height:237px;background:url(img/down.png) no-repeat 0 0;position:relative;margin:60px auto}
.down a{display:block;position:absolute;width:102px;height:156px;line-height:1000px;overflow:hidden;top:85px}
.down .down_chrome{left:55px}
.down .down_safari{left:260px}
.down .down_firefox{left:472px}
body{background:#f9f9f9}
.mod_header .inner{width:992px}
.wrap{padding-top:10px;position:absolute;top:63px;bottom:0;width:100%;background:#fff}
.mod_side{float:left;width:448px;overflow:hidden}
.canvas{position:absolute;top:10px;bottom:10px;left:390px;right:10px;background:#20252B}
.mod_tab{float:left;border-top:1px solid #474748;background:#20252b;color:#ccc}
.mod_tab li{position:relative;padding:5px;width:15px;border-bottom:1px solid #474748;text-align:center;cursor:pointer}
.mod_tab li.current{background:#ec4800}
.mod_tab_content{float:left;width:350px;overflow:hidden;border:1px solid #474748;border-radius:0 5px 5px;background:#20252b;padding-bottom:10px;color:#888}
.mod_tab li .line{display:none;position:absolute;top:0;bottom:0;width:2px;right:-1px}
.mod_tab .current .line{display:block}
.mod_input, .animation_box input[type='text']{width:30px;height:16px;line-height:16px;text-align:center;border:1px solid #444;background:#20252b;vertical-align:middle;margin-right:5px;color:#999}
.animation_box input[type='text']{width:auto}
.mod_input:hover,.animation_box input[type='text']:hover{border-color:#f3711f}
.mod_input.more{width:120px}
.item{display:none}
.item li{border-bottom:1px solid #34363a;padding:5px 10px;overflow:hidden}
.item li.mode_3d{display:none}
label{display:inline-block;width:55px;text-align:right;padding-right:5px}
.button,.button_pre,.butt{display:inline-block;height:20px;line-height:20px;border-radius:3px;padding:0 5px;border:1px solid #000;background-color:#ececec;background-image:-webkit-gradient(linear,0 0,0 100%,from(#3a4148),to(#222c39));background-clip:padding-box;text-shadow:1px 1px 0 #000;cursor:pointer;margin-right:5px;background:-moz-linear-gradient(#3a4148,#222c39)}
.btn_box{padding:0;overflow-y:auto}
.btn_box h3{border-bottom:1px solid #3e3f41;padding:0 10px 10px;margin-top:10px}
.butt_list{padding:10px 10px 0 10px}
.butt_list a{color:#888}
.btn_box p{padding:10px}
.butt_list .butt{margin-bottom:5px}
.mod_ope{padding:10px;text-align:center;border-bottom:1px solid #34363a}
.mod_d{padding:10px;border-bottom:1px solid #34363a}
.icon_radio{display:inline-block;width:15px;height:15px;border:1px solid #000;background-image:-webkit-gradient(linear,0 0,0 100%,from(#333),to(#474748));background:-moz-linear-gradient(#333,#474748);border-radius:15px;position:relative;top:3px;margin:0 5px 0 0;cursor:pointer}
.m_3d{margin-left:10px}
.icon_radio.checked{background-image:-webkit-gradient(linear,0 0,0 100%,from(#ec4800),to(#dc1100));background:-moz-linear-gradient(#ec4800,#dc1100)}
.scroll_box{float:left;position:relative;height:8px;width:200px;background-image:-webkit-gradient(linear,0 0,0 100%,from(#171b1f),to(#20252b));background:-moz-linear-gradient(#171b1f,#20252b);background-clip:padding-box;border:1px solid #000;top:4px;border-radius:8px}
.scroll_bar{width:14px;height:14px;position:absolute;top:-3px;background:#ee590f;border-radius:14px;cursor:pointer}
.scroll_bar.move{background:#9c9}
.mod_fn{float:left;width:125px}
.mod_fn_2{text-align:center;font-weight:bold;border-bottom:1px solid #34363a;background:#34383e;padding:5px 0}
.mod_matrix_box{border:1px solid #34363a;margin:5px 0}
.mod_matrix,.mod_matrix ul{overflow:hidden;width:332px}
.mod_matrix li{float:left;width:109px;padding:5px 0;text-align:center}
.mod_matrix ul li:nth-child(1),.mod_matrix ul li:nth-child(2),.mod_matrix ul li:nth-child(4),.mod_matrix ul li:nth-child(5),.mod_matrix ul li:nth-child(7),.mod_matrix ul li:nth-child(8){border-right:1px solid #34363a}
.mod_matrix ul li:nth-child(4),.mod_matrix ul li:nth-child(5),.mod_matrix ul li:nth-child(6){border-bottom:none}
.mod_matrix li span{display:inline-block;width:60px;text-align:right;padding-right:5px}
.transition_box .last,.animation_box .last{border-bottom:none}
.mod_ease{float:left;width:55px;padding-right:5px;text-align:right}
.ease_list{padding-left:60px}
.ease_list .button{margin-bottom:5px}
.ease_list .checked,.butt:hover{background:#ec4800;color:#fff;text-shadow:none}
#animation{position:absolute;left:50%;top:50%;margin:-150px 0 0 -150px;width:300px;height:300px;background:#fff url(img/isux-logo.jpg) no-repeat center center;border:1px solid #fff;}
.origin{position:absolute;overflow:hidden;width:30px;height:30px;background:rgba(0,0,0,.41);border-radius:30px;left:135px;top:135px;cursor:move}
.hidden{display:none}
.show_code{line-height:20px;font-size:14px;color:#F60;padding:10px 10px 0;border-top:1px solid #3e3f41;max-height:300px;overflow-y:auto}
#mod_play_ani_pre{clear:both;overflow:hidden}
#mod_play_ani_pre span{float:left;margin-top:10px}
#ani{position:fixed;bottom:10px;right:10px;left:390px;border:3px solid rgba(0,0,0,.7);background:rgba(0,0,0,.3);padding:10px 0;color:#888}
#ani .pro_name{position:absolute;top:0;left:0;line-height:20px;padding-right:10px;width:100px;text-align:right;overflow:hidden}
#ani li{height:25px;clear:both;padding-right:30px;position:relative}
#ani .z_box{position:relative;top:6px;height:8px;background-image:-webkit-gradient(linear,0 0,0 100%,from(#171b1f),to(#20252b));background-clip:padding-box;border:1px solid #000;border-radius:8px;margin-left:110px}
#ani .z_box .z,#ani .z_box .z_move{position:absolute;width:14px;height:14px;background:#ee590f;border-radius:14px;cursor:pointer;top:-3px;line-height:14px}
#ani .z_box .first{left:0}
#ani .z_box .last{right:0}
#ani .del_z{position:absolute;right:10px;line-height:20px;top:0}
#ani .value{position:absolute;background:#222;padding:3px;top:-72px;border-radius:5px;left:-76px;display:none;width:160px;color:#999;box-shadow:1px 1px 8px #444}
#ani .value input{width:45px;height:16px;border:1px solid #444;vertical-align:middle;background:#333;color:#999;position:relative;z-index:10;margin:5px 0 5px 3px}
#ani .first .value,#ani .last .value{width:110px;left:-52px;top:-58px}
#ani .value:after{content:'';position:absolute;width:10px;height:10px;background:#222;bottom:-5px;left:50%;margin-left:-5px;-webkit-transform:rotate(315deg);-webkit-transform-origin:center center;-moz-transform:rotate(315deg);-moz-transform-origin:center center}
.btn_del{position:absolute;bottom:9px;right:22px;padding:0 5px;height:16px;background:#fff;color:#f60;text-align:center;line-height:14px;overflow:hidden;border-radius:3px;display:none}
.value:hover .btn_del{display:block}
.intro{padding-left:5px;color:#999}
.copy{position:relative}
.copy .clipboardswf{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}
.gui_success{position:fixed;left:50%;top:50%;margin:-22px 0 0 -62px;width:120px;height:40px;line-height:40px;text-align:center;font-size:14px;font-weight:bold;background:#fff;border:2px solid #666;border-radius:2px;box-shadow:2px 2px 8px #333;color:#EF4900}
#time_line{position:absolute;width:1px;background:red;top:0;bottom:0;left:110px;z-index:10000}
#time_line:after{content:'\20';width:0;height:0;overflow:hidden;font-size:0;display:block;border-width:6px;border-color:red transparent transparent transparent;border-style:solid;position:absolute;left:50%;top:-3px;margin-left:-7px}
.add_pro{padding-top:10px}
#mod_play_ani_pre{padding:0}
.mod_cubic_dialog{position:absolute;width:300px;height:500px;border:5px solid #ddd;background:#fff;z-index:10;left:360px;top:190px;box-shadow:1px 1px 10px #000;display:none}
.mod_cubic_dialog .hd h2{line-height:25px;padding:0 10px;border-bottom:1px solid #ddd}
.mod_cubic_dialog .hd a{position:absolute;right:10px;top:5px}
.tis{position:absolute;right:10px;top:10px;font-size:30px;color:rgba(255,255,255,.2)}
.mod_drag_img{position:absolute}
.pop_show_code{display:none;position:fixed;left:50%;top:50%;margin:-250px 0 0 -250px;border:5px solid #666;width:500px;min-height:400px;background:#20252b;box-shadow:2px 2px 8px #333;color:#F90;z-index:100}
#close_pop{position:absolute;width:20px;height:20px;top:-15px;right:-15px;border:5px solid #666;background:#20252b;border-radius:20px;text-align:center;line-height:20px;font-size:14px;color:#999;font-weight:bold}
.pop_show_code .inner{padding:10px 20px;max-height:400px;overflow:auto}
.pop_show_code .button{margin:10px 0 10px 20px}
#CssGaga{content:"20130105173110,193"} | reference/isux/css/tool.css | body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,fieldset,lengend,button,input,textarea,th,td{margin:0;padding:0}
body,button,input,select,textarea,th{font:12px/1.5 '\5FAE\8F6F\96C5\9ED1',Tahoma,"hiragino sans gb",Helvetica,Arial}
h1,h2,h3,h4,h5,h6{font-size:100%}
ul,ol,li{list-style:none}
legend{color:#000}
fieldset,img{border:0}
button,input,select,textarea{font-size:100%}
table{border-collapse:collapse;border-spacing:0}
em{font-style:normal}
a{text-decoration:none;color:#333}
a:hover{text-decoration:underline}
body{color:#333;background:#fff}
section,header,article,aside{display:block}
html,body{width:100%;overflow-x:hidden}
::-webkit-scrollbar{width:12px;height:12px}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#FFF}
::-webkit-scrollbar-thumb:vertical{background-color:#8E8E8E;border-radius:1px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}
::-webkit-scrollbar-resizer:vertical{background-color:#FF6E00}
a{color:#ee4900}
a:hover{text-decoration:none;color:#f3711f}
.clearfix{*zoom:1}
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}
.mod_header{width:100%;height:60px;background:#20252b;border-bottom:2px solid #ff5f19;position:fixed;left:0;z-index:9}
.mod_header .inner{position:relative;width:980px;min-height:60px;margin:0 auto}
.mod_header h1{position:relative;float:left;height:60px;width:173px;text-indent:-9999px}
.ico_logo{position:absolute;left:0;top:8px;width:117px;height:45px;background:url(img/logo.png) no-repeat 0 0}
.mod_nav{height:60px;overflow:hidden;float:left;border-right:1px solid #474748}
.mod_nav li{float:left;border-left:1px solid #474748}
.mod_nav li a{display:block;height:60px;width:150px;border-left:1px solid #000;text-align:center;line-height:60px;font-size:14px;font-family:'\5FAE\8F6F\96C5\9ED1';color:#fff}
.mod_nav li a.on{background:#ef4900}
.mod_mini_nav{position:absolute;right:0;color:#fff;text-align:right}
.mod_mini_nav p:nth-of-type(2){padding-top:15px}
.mod_form{width:100%;clear:both;background:#34393e}
.mod_footer{width:100%;height:30px;line-height:30px;margin-top:30px;background:#34393E;color:#787878;overflow:hidden}
.mod_footer>div{position:relative;width:980px;margin:0 auto}
.mod_footer p{float:left;padding-right:5px}
.mod_footer .opt a{margin:0 5px}
.mod_footer .support{position:absolute;right:0;padding:0}
.mod_footer a{color:#787878;text-decoration:underline}
.mod_footer a:hover{color:#fff}
.pop_msg{position:fixed;left:50%;top:50%;margin-top:-15px;height:30px;line-height:30px;padding:0 15px;font-size:14px;font-weight:bold;border:3px solid #333;background:#EF4900;box-shadow:1px 1px 8px #000;display:none;z-index:100000;color:#fff}
.pagelist{text-align:center;padding:10px 0}
.pagelist a{display:inline-block;margin:0 2px;height:26px;line-height:26px;padding:0 10px;border:1px solid #ddd;background:#f7f7f7;color:#000}
.pagelist .cur{background:#EF4900;color:#fff}
.pop_dialog{position:fixed;top:50%;left:50%;border:2px solid #000;background:#fff;z-index:100;box-shadow:-1px 1px 10px #333}
.pop_dialog.downs{border:none}
.pop_dialog .hd{padding:0 10px;position:relative}
.pop_dialog .hd h3{height:26px;line-height:26px;font-weight:normal;display:none}
.pop_dialog .inner{padding:20px}
.pop_dialog .inner h4{font-size:14px}
.pop_dialog .inner p{padding:5px 10px 0 0}
.pop_dialog .inner .big{position:relative;padding-left:80px}
.pop_dialog .pop_close{position:absolute;right:-8px;top:-8px;width:15px;height:15px;overflow:hidden;background:#000;color:#fff;text-align:center;line-height:12px}
.pop_dialog.downs .pop_close{top:0;right:15px;width:22px;height:22px;line-height:100px;background:url(img/close.png) no-repeat 0 0}
.pop_dialog .pop_close:hover{background-color:#EE4900}
.icon_success,.icon_error{position:absolute;left:20px;top:3px;width:42px;height:42px;background:url(img/icon.png) no-repeat 0 0}
.icon_error{background-position:0 -43px}
.pop_dialog .inner .small{position:relative;padding-left:80px}
.pop_dialog .inner .small .icon_success{top:-10px}
.pop_mask{display:none;position:fixed;background:#000;top:0;filter:alpha(opacity=40);opacity:.4;width:100%;height:100%;z-index:10}
.down{width:625px;height:237px;background:url(img/down.png) no-repeat 0 0;position:relative;margin:60px auto}
.down a{display:block;position:absolute;width:102px;height:156px;line-height:1000px;overflow:hidden;top:85px}
.down .down_chrome{left:55px}
.down .down_safari{left:260px}
.down .down_firefox{left:472px}
body{background:#f9f9f9}
.mod_header .inner{width:992px}
.wrap{padding-top:10px;position:absolute;top:63px;bottom:0;width:100%;background:#fff}
.mod_side{float:left;width:448px;overflow:hidden}
.canvas{position:absolute;top:10px;bottom:10px;left:390px;right:10px;background:#20252B}
.mod_tab{float:left;border-top:1px solid #474748;background:#20252b;color:#ccc}
.mod_tab li{position:relative;padding:5px;width:15px;border-bottom:1px solid #474748;text-align:center;cursor:pointer}
.mod_tab li.current{background:#ec4800}
.mod_tab_content{float:left;width:350px;overflow:hidden;border:1px solid #474748;border-radius:0 5px 5px;background:#20252b;padding-bottom:10px;color:#888}
.mod_tab li .line{display:none;position:absolute;top:0;bottom:0;width:2px;right:-1px}
.mod_tab .current .line{display:block}
.mod_input, .animation_box input[type='text']{width:30px;height:16px;line-height:16px;text-align:center;border:1px solid #444;background:#20252b;vertical-align:middle;margin-right:5px;color:#999}
.animation_box input[type='text']{width:auto}
.mod_input:hover,.animation_box input[type='text']:hover{border-color:#f3711f}
.mod_input.more{width:120px}
.item{display:none}
.item li{border-bottom:1px solid #34363a;padding:5px 10px;overflow:hidden}
.item li.mode_3d{display:none}
label{display:inline-block;width:55px;text-align:right;padding-right:5px}
.button,.button_pre,.butt{display:inline-block;height:20px;line-height:20px;border-radius:3px;padding:0 5px;border:1px solid #000;background-color:#ececec;background-image:-webkit-gradient(linear,0 0,0 100%,from(#3a4148),to(#222c39));background-clip:padding-box;text-shadow:1px 1px 0 #000;cursor:pointer;margin-right:5px;background:-moz-linear-gradient(#3a4148,#222c39)}
.btn_box{padding:0;overflow-y:auto}
.btn_box h3{border-bottom:1px solid #3e3f41;padding:0 10px 10px;margin-top:10px}
.butt_list{padding:10px 10px 0 10px}
.butt_list a{color:#888}
.btn_box p{padding:10px}
.butt_list .butt{margin-bottom:5px}
.mod_ope{padding:10px;text-align:center;border-bottom:1px solid #34363a}
.mod_d{padding:10px;border-bottom:1px solid #34363a}
.icon_radio{display:inline-block;width:15px;height:15px;border:1px solid #000;background-image:-webkit-gradient(linear,0 0,0 100%,from(#333),to(#474748));background:-moz-linear-gradient(#333,#474748);border-radius:15px;position:relative;top:3px;margin:0 5px 0 0;cursor:pointer}
.m_3d{margin-left:10px}
.icon_radio.checked{background-image:-webkit-gradient(linear,0 0,0 100%,from(#ec4800),to(#dc1100));background:-moz-linear-gradient(#ec4800,#dc1100)}
.scroll_box{float:left;position:relative;height:8px;width:200px;background-image:-webkit-gradient(linear,0 0,0 100%,from(#171b1f),to(#20252b));background:-moz-linear-gradient(#171b1f,#20252b);background-clip:padding-box;border:1px solid #000;top:4px;border-radius:8px}
.scroll_bar{width:14px;height:14px;position:absolute;top:-3px;background:#ee590f;border-radius:14px;cursor:pointer}
.scroll_bar.move{background:#9c9}
.mod_fn{float:left;width:125px}
.mod_fn_2{text-align:center;font-weight:bold;border-bottom:1px solid #34363a;background:#34383e;padding:5px 0}
.mod_matrix_box{border:1px solid #34363a;margin:5px 0}
.mod_matrix,.mod_matrix ul{overflow:hidden;width:332px}
.mod_matrix li{float:left;width:109px;padding:5px 0;text-align:center}
.mod_matrix ul li:nth-child(1),.mod_matrix ul li:nth-child(2),.mod_matrix ul li:nth-child(4),.mod_matrix ul li:nth-child(5),.mod_matrix ul li:nth-child(7),.mod_matrix ul li:nth-child(8){border-right:1px solid #34363a}
.mod_matrix ul li:nth-child(4),.mod_matrix ul li:nth-child(5),.mod_matrix ul li:nth-child(6){border-bottom:none}
.mod_matrix li span{display:inline-block;width:60px;text-align:right;padding-right:5px}
.transition_box .last,.animation_box .last{border-bottom:none}
.mod_ease{float:left;width:55px;padding-right:5px;text-align:right}
.ease_list{padding-left:60px}
.ease_list .button{margin-bottom:5px}
.ease_list .checked,.butt:hover{background:#ec4800;color:#fff;text-shadow:none}
#animation{position:absolute;left:50%;top:50%;margin:-150px 0 0 -150px;width:300px;height:300px;background:#fff url(img/isux-logo.jpg) no-repeat center center;border:1px solid #fff;}
.origin{position:absolute;overflow:hidden;width:30px;height:30px;background:rgba(0,0,0,.41);border-radius:30px;left:135px;top:135px;cursor:move}
.hidden{display:none}
.show_code{line-height:20px;font-size:14px;color:#F60;padding:10px 10px 0;border-top:1px solid #3e3f41;max-height:300px;overflow-y:auto}
#mod_play_ani_pre{clear:both;overflow:hidden}
#mod_play_ani_pre span{float:left;margin-top:10px}
#ani{position:fixed;bottom:10px;right:10px;left:390px;border:3px solid rgba(0,0,0,.7);background:rgba(0,0,0,.3);padding:10px 0;color:#888}
#ani .pro_name{position:absolute;top:0;left:0;line-height:20px;padding-right:10px;width:100px;text-align:right;overflow:hidden}
#ani li{height:25px;clear:both;padding-right:30px;position:relative}
#ani .z_box{position:relative;top:6px;height:8px;background-image:-webkit-gradient(linear,0 0,0 100%,from(#171b1f),to(#20252b));background-clip:padding-box;border:1px solid #000;border-radius:8px;margin-left:110px}
#ani .z_box .z,#ani .z_box .z_move{position:absolute;width:14px;height:14px;background:#ee590f;border-radius:14px;cursor:pointer;top:-3px;line-height:14px}
#ani .z_box .first{left:0}
#ani .z_box .last{right:0}
#ani .del_z{position:absolute;right:10px;line-height:20px;top:0}
#ani .value{position:absolute;background:#222;padding:3px;top:-72px;border-radius:5px;left:-76px;display:none;width:160px;color:#999;box-shadow:1px 1px 8px #444}
#ani .value input{width:45px;height:16px;border:1px solid #444;vertical-align:middle;background:#333;color:#999;position:relative;z-index:10;margin:5px 0 5px 3px}
#ani .first .value,#ani .last .value{width:110px;left:-52px;top:-58px}
#ani .value:after{content:'';position:absolute;width:10px;height:10px;background:#222;bottom:-5px;left:50%;margin-left:-5px;-webkit-transform:rotate(315deg);-webkit-transform-origin:center center;-moz-transform:rotate(315deg);-moz-transform-origin:center center}
.btn_del{position:absolute;bottom:9px;right:22px;padding:0 5px;height:16px;background:#fff;color:#f60;text-align:center;line-height:14px;overflow:hidden;border-radius:3px;display:none}
.value:hover .btn_del{display:block}
.intro{padding-left:5px;color:#999}
.copy{position:relative}
.copy .clipboardswf{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}
.gui_success{position:fixed;left:50%;top:50%;margin:-22px 0 0 -62px;width:120px;height:40px;line-height:40px;text-align:center;font-size:14px;font-weight:bold;background:#fff;border:2px solid #666;border-radius:2px;box-shadow:2px 2px 8px #333;color:#EF4900}
#time_line{position:absolute;width:1px;background:red;top:0;bottom:0;left:110px;z-index:10000}
#time_line:after{content:'\20';width:0;height:0;overflow:hidden;font-size:0;display:block;border-width:6px;border-color:red transparent transparent transparent;border-style:solid;position:absolute;left:50%;top:-3px;margin-left:-7px}
.add_pro{padding-top:10px}
#mod_play_ani_pre{padding:0}
.mod_cubic_dialog{position:absolute;width:300px;height:500px;border:5px solid #ddd;background:#fff;z-index:10;left:360px;top:190px;box-shadow:1px 1px 10px #000;display:none}
.mod_cubic_dialog .hd h2{line-height:25px;padding:0 10px;border-bottom:1px solid #ddd}
.mod_cubic_dialog .hd a{position:absolute;right:10px;top:5px}
.tis{position:absolute;right:10px;top:10px;font-size:30px;color:rgba(255,255,255,.2)}
.mod_drag_img{position:absolute}
.pop_show_code{display:none;position:fixed;left:50%;top:50%;margin:-250px 0 0 -250px;border:5px solid #666;width:500px;min-height:400px;background:#20252b;box-shadow:2px 2px 8px #333;color:#F90;z-index:100}
#close_pop{position:absolute;width:20px;height:20px;top:-15px;right:-15px;border:5px solid #666;background:#20252b;border-radius:20px;text-align:center;line-height:20px;font-size:14px;color:#999;font-weight:bold}
.pop_show_code .inner{padding:10px 20px;max-height:400px;overflow:auto}
.pop_show_code .button{margin:10px 0 10px 20px}
#CssGaga{content:"20130105173110,193"} | 0.277082 | 0.047382 |
body {
font-family: 'Lato', sans-serif;
background-color: #BCB3BF;
color: #312F2F;
text-align: center;
}
#navbar {
margin-left: 12%;
}
.navbar-inverse, .navbar-brand {
background-color: #312F2F;
border-style: none;
}
#navbar-brand, ul.navbar-nav > li > a:link, .navbar-inverse > .container > .navbar-collapse > ul > li > a {
color: #BCB3BF;
}
.icon-bar {
background-color: #D6D6B1;
}
.jumbotron {
text-align: center;
background-color: #8F8289;
color: #312F2F;
margin-bottom: 0px;
}
.jumbotron h1 {
font-size: 80px;
margin-top: 0px;
line-height: 90px;
}
.jumbotron .lead {
font-size: 35px;
}
.row h1 {
margin-bottom: 50px;
font-size: 60px;
}
.row h2 {
margin-bottom: 50px;
}
#profilepic {
display: block;
margin: -45px auto 0px auto;
}
.about {
margin-top: 50px;
}
.connect-space {
margin-top: 20px;
margin-bottom: 30px;
padding-bottom: 10px;
width: 100%;
background-color: #8F8289;
}
.connect-icons {
margin: auto;
display: block;
}
.connect-icons i {
color: #312F2F;
}
.connect-icons i:hover {
color: #BCB3BF;
}
/*Portfolio Hover Effect*/
.hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
}
.hovereffect:hover img {
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
filter: grayscale(1) blur(3px);
-webkit-filter: grayscale(1) blur(3px);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.hovereffect h2 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 17px;
margin-top: 100px;
padding: 50px;
background: rgba(0, 0, 0, 0.6);
}
.hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.hovereffect a.info, .hovereffect h2 {
-webkit-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
opacity: 0;
filter: alpha(opacity=0);
color: #fff;
text-transform: uppercase;
}
.hovereffect:hover a.info, .hovereffect:hover h2 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
/*End Portfolio Hover Effect*/
.page-number {
margin-bottom: 30px;
}
small > a:hover {
color: #312F2F;
text-decoration: none;
}
small > a:active {
color: #337ab7;
}
/*Form Begins*/
#contact-tagline {
font-size: 20px;
}
.contact-container {
margin-bottom: 30px;
}
.contact {
width: 50%;
}
input[id=name], input[id=email], textarea[id=message] {
width: 100%;
margin: 8px 0px 14px 0px;
box-sizing: border-box;
border: 2px solid #cccccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
font-family: arial;
}
input[id=name], input[id=email] {
padding: 12px 20px;
}
textarea[id=message] {
padding: 20px 20px;
height: 200px;
box-sizing: border-box;
resize: none;
}
input[id=name]:focus, input[id=email]:focus, textarea[id=message]:focus {
border: 2px solid #312F2F;
}
input[type=submit] {
font-family: arial;
color: #777777;
background-color: rgb(255,255,255);
border-style: solid;
border-width: 2px;
border-color: #777777;
width: 65px;
height: 35px;
padding: 4px 2px 2px 2px;
margin-bottom: 10px;
}
input[type=submit]:hover {
color: #312F2F;
border-color: #312F2F;
}
input[type=submit]:active {
position: relative;
top: 2px;
}
/*Form Ends*/
footer {
position: fixed;
left: 0px;
bottom: 0px;
margin-top: 10px;
padding-top: 5px;
width: 100%;
color: #BCB3BF;
background-color: #887E84;
border-top: 3px solid #312F2F;
z-index: 1;
} | css/tweaks.css | body {
font-family: 'Lato', sans-serif;
background-color: #BCB3BF;
color: #312F2F;
text-align: center;
}
#navbar {
margin-left: 12%;
}
.navbar-inverse, .navbar-brand {
background-color: #312F2F;
border-style: none;
}
#navbar-brand, ul.navbar-nav > li > a:link, .navbar-inverse > .container > .navbar-collapse > ul > li > a {
color: #BCB3BF;
}
.icon-bar {
background-color: #D6D6B1;
}
.jumbotron {
text-align: center;
background-color: #8F8289;
color: #312F2F;
margin-bottom: 0px;
}
.jumbotron h1 {
font-size: 80px;
margin-top: 0px;
line-height: 90px;
}
.jumbotron .lead {
font-size: 35px;
}
.row h1 {
margin-bottom: 50px;
font-size: 60px;
}
.row h2 {
margin-bottom: 50px;
}
#profilepic {
display: block;
margin: -45px auto 0px auto;
}
.about {
margin-top: 50px;
}
.connect-space {
margin-top: 20px;
margin-bottom: 30px;
padding-bottom: 10px;
width: 100%;
background-color: #8F8289;
}
.connect-icons {
margin: auto;
display: block;
}
.connect-icons i {
color: #312F2F;
}
.connect-icons i:hover {
color: #BCB3BF;
}
/*Portfolio Hover Effect*/
.hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
}
.hovereffect:hover img {
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
filter: grayscale(1) blur(3px);
-webkit-filter: grayscale(1) blur(3px);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.hovereffect h2 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 17px;
margin-top: 100px;
padding: 50px;
background: rgba(0, 0, 0, 0.6);
}
.hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.hovereffect a.info, .hovereffect h2 {
-webkit-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
opacity: 0;
filter: alpha(opacity=0);
color: #fff;
text-transform: uppercase;
}
.hovereffect:hover a.info, .hovereffect:hover h2 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
/*End Portfolio Hover Effect*/
.page-number {
margin-bottom: 30px;
}
small > a:hover {
color: #312F2F;
text-decoration: none;
}
small > a:active {
color: #337ab7;
}
/*Form Begins*/
#contact-tagline {
font-size: 20px;
}
.contact-container {
margin-bottom: 30px;
}
.contact {
width: 50%;
}
input[id=name], input[id=email], textarea[id=message] {
width: 100%;
margin: 8px 0px 14px 0px;
box-sizing: border-box;
border: 2px solid #cccccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
font-family: arial;
}
input[id=name], input[id=email] {
padding: 12px 20px;
}
textarea[id=message] {
padding: 20px 20px;
height: 200px;
box-sizing: border-box;
resize: none;
}
input[id=name]:focus, input[id=email]:focus, textarea[id=message]:focus {
border: 2px solid #312F2F;
}
input[type=submit] {
font-family: arial;
color: #777777;
background-color: rgb(255,255,255);
border-style: solid;
border-width: 2px;
border-color: #777777;
width: 65px;
height: 35px;
padding: 4px 2px 2px 2px;
margin-bottom: 10px;
}
input[type=submit]:hover {
color: #312F2F;
border-color: #312F2F;
}
input[type=submit]:active {
position: relative;
top: 2px;
}
/*Form Ends*/
footer {
position: fixed;
left: 0px;
bottom: 0px;
margin-top: 10px;
padding-top: 5px;
width: 100%;
color: #BCB3BF;
background-color: #887E84;
border-top: 3px solid #312F2F;
z-index: 1;
} | 0.398875 | 0.112795 |
@font-face {
font-family: 'Rock Salt';
font-style: normal;
font-weight: 400;
src: local('Rock Salt'), local('RockSalt'), url(http://themes.googleusercontent.com/static/fonts/rocksalt/v4/Q94aHXFHGip10K5uxi1jOLO3LdcAZYWl9Si6vvxL-qU.woff) format('woff');
}
html,body { height: 100%; margin: 0px; padding: 0px; }
body {
background-color: #111111;
font-family: avenir, 'avenir next', helvetica, arial, sans-serif;
text-align: center;
}
*::-webkit-input-placeholder {
color: #aaa;
}
*:-moz-placeholder {
color: #aaa;
}
*::-moz-placeholder {
color: #aaa;
}
*:-ms-input-placeholder {
color: #aaa;
}
a {
color: #AAAAAA;
}
a:hover {
color: #AAAAAA;
text-decoration: none;
}
p {
font-size: 1.3em;
line-height: 1.7em;
}
h2 {
font-size: 1.3em;
background: #111111;
color: #ffffff;
position: absolute;
opacity: 0.3;
padding: 5px 10px;
}
#grid {
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#grid > iframe {
margin: 0px;
padding: 0px;
}
#header {
display: block;
width: 100%;
}
@-webkit-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@-moz-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@-o-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
#logo:before {
content: "Sound Wall";
color: #FFFFFF;
font-size: 2.1em;
font-family: 'Rock Salt', cursive;
-webkit-animation: blink-logo 0.5s infinite;
-moz-animation: blink-logo 0.5s infinite;
-o-animation: blink-logo 0.5s infinite;
animation: blink-logo 0.5s infinite;
}
#logo {
vertical-align: middle;
font-size: 1em;
}
.help:hover {
opacity: 0.9;
color: #FFFFFF;
}
#search {
vertical-align: middle;
height: 50px;
}
#searchterm {
width: 100%;
max-width: 400px;
margin-top: 5px;
height: 40px;
font-size: 18px;
/*border-radius: 8px;*/
border: 0;
color: #FFFFFF;
background: rgba(255, 255, 255,.1);
padding: 10px;
outline: 0px;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
#stuff {
height: 50px;
}
img {
opacity: 0.3;
position: relative;
}
audio {
background-color: #111111;
border-radius: 0px;
}
.active {
opacity: 1;
}
.share {
display: inline-block;
color: #FFF;
font-size: 32px;
padding-top: 7px;
height: 50px;
vertical-align: middle;
width: 20%;
opacity: 1;
}
.share:hover {
opacity: 0.7;
}
.sbg-facebook {
background: #3971B6;
}
.sbg-twitter {
background: #A0D6E2;
}
.sbg-github {
background: #333333;
}
.sbg-help {
background-color: #3D9970;
} | css/style.css | @font-face {
font-family: 'Rock Salt';
font-style: normal;
font-weight: 400;
src: local('Rock Salt'), local('RockSalt'), url(http://themes.googleusercontent.com/static/fonts/rocksalt/v4/Q94aHXFHGip10K5uxi1jOLO3LdcAZYWl9Si6vvxL-qU.woff) format('woff');
}
html,body { height: 100%; margin: 0px; padding: 0px; }
body {
background-color: #111111;
font-family: avenir, 'avenir next', helvetica, arial, sans-serif;
text-align: center;
}
*::-webkit-input-placeholder {
color: #aaa;
}
*:-moz-placeholder {
color: #aaa;
}
*::-moz-placeholder {
color: #aaa;
}
*:-ms-input-placeholder {
color: #aaa;
}
a {
color: #AAAAAA;
}
a:hover {
color: #AAAAAA;
text-decoration: none;
}
p {
font-size: 1.3em;
line-height: 1.7em;
}
h2 {
font-size: 1.3em;
background: #111111;
color: #ffffff;
position: absolute;
opacity: 0.3;
padding: 5px 10px;
}
#grid {
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#grid > iframe {
margin: 0px;
padding: 0px;
}
#header {
display: block;
width: 100%;
}
@-webkit-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@-moz-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@-o-keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
@keyframes blink-logo {
0% { color: #FFFFFF; }
100% { color: #DDDDDD; }
}
#logo:before {
content: "Sound Wall";
color: #FFFFFF;
font-size: 2.1em;
font-family: 'Rock Salt', cursive;
-webkit-animation: blink-logo 0.5s infinite;
-moz-animation: blink-logo 0.5s infinite;
-o-animation: blink-logo 0.5s infinite;
animation: blink-logo 0.5s infinite;
}
#logo {
vertical-align: middle;
font-size: 1em;
}
.help:hover {
opacity: 0.9;
color: #FFFFFF;
}
#search {
vertical-align: middle;
height: 50px;
}
#searchterm {
width: 100%;
max-width: 400px;
margin-top: 5px;
height: 40px;
font-size: 18px;
/*border-radius: 8px;*/
border: 0;
color: #FFFFFF;
background: rgba(255, 255, 255,.1);
padding: 10px;
outline: 0px;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
#stuff {
height: 50px;
}
img {
opacity: 0.3;
position: relative;
}
audio {
background-color: #111111;
border-radius: 0px;
}
.active {
opacity: 1;
}
.share {
display: inline-block;
color: #FFF;
font-size: 32px;
padding-top: 7px;
height: 50px;
vertical-align: middle;
width: 20%;
opacity: 1;
}
.share:hover {
opacity: 0.7;
}
.sbg-facebook {
background: #3971B6;
}
.sbg-twitter {
background: #A0D6E2;
}
.sbg-github {
background: #333333;
}
.sbg-help {
background-color: #3D9970;
} | 0.390592 | 0.108236 |
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
list-style-type: none;
text-decoration: none;
}
tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
/*line-height: 1;*/
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: separate;
border-spacing: 2px;
}
/* END CLEAR BROWSER DEFAULT VALUES */
/* START MAIN CSS */
/* RESTORE HEADINGS VALUES */
h1 {
display: block;
font-size: 3.1em;
font-weight: bold;
margin: 0.7em 0.1em 0.5em;
}
h2 /*,
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.48em;
font-weight: bold;
margin: 0.42em 0;
}
h3 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.17em;
font-weight: bold;
margin: 1em 0;
}
h4 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.00em;
font-weight: bold;
margin: 1.33em 0;
}
h5 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.05em;
font-weight: bold;
margin: 0.5em 0;
padding-left: 1px;
}
h6 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 0.67em;
font-weight: bold;
margin: 2.33em 0;
}
/* END RESTORE HEADINGS VALUES */
/* START CSS */
/* For test the exact view in Mozilla. For other browsers correct main margins */
/*body {
background: url(../images/simple-form.png) no-repeat;
}
*/
.wrapper {
width: 775px;
height: 422px;
margin-top:-10px;
padding-top:10px;
background-color: #eeeeee;
font-family: Tahoma, sans-serif;
}
h2 {
color: #234465;
padding-left: 14px;
padding-top: 0;
}
h5 {
text-transform: uppercase;
}
h5 span:first-child {
color: #666666;
}
h5 span:last-child {
color: #234465;
}
#login-invite{
color: #7c7c7c;
font-family: Tahoma;
font-size: 14px;
padding-left: 14px;
padding-top: 10px;
word-spacing: -0.04px;
}
#new-user {
float: left;
height: 250px;
padding-left: 29px;
padding-top: 24px;
width: 350px;
}
#registered-user {
float: left;
height: 297px;
margin-left: 5px;
margin-top: 25px;
padding-left: 15px;
padding-right: 5px;
padding-top: 0;
width: 350px;
background-color: #234465;
color: white;
}
#new-user form input {
color: #474747;
font-family: sans-serif;
font-size: 0.85em;
height: 37px;
margin-bottom: 14px;
padding-left: 10px;
width: 93.4%;
}
#registered-user form input {
color: #474747;
font-family: sans-serif;
font-size: 0.85em;
height: 37px;
margin-bottom: 14px;
padding-left: 10px;
width: 93.4%;
}
#registered-user h5 {
display: block;
font-family: inherit;
font-size: 1.065em;
font-weight: bold;
margin: 0.65em 0 0.81em;
padding: 0;
}
#register-button {
border: 2px solid #234465;
color: #234465 !important;
float: right;
font-family: tahoma !important;
font-size: 1.08em !important;
height: 40px !important;
margin-right: 10px;
padding: 0 10px 0 0 !important;
text-align: center;
width: 48.6% !important;
}
#login-button {
background-color: inherit;
border: 2px solid #ff9c00;
color: white !important;
float: right;
font-size: 1.2em !important;
height: 40px !important;
margin-bottom: 9px !important;
margin-right: 10px;
padding-left: 13px !important;
padding-top: 4px;
width: 140px !important;
}
label {
color: white;
display: inline-block;
font-size: 0.7em;
font-weight: bold;
padding-top: 1.8px;
vertical-align: top;
}
#remember-ckbx{
float: left;
height: 24px !important;
margin-left: 1px !important;
margin-top: 1px;
width: 5% !important;
}
input[type="checkbox"] {
margin-right: 5px;
padding: 10px !important;
transform: scale(1.5);
}
#registered-user a {
clear: both;
color: white;
float: right;
font-size: 12.5px;
font-weight: bold;
padding-right: 19px;
padding-top: 1px;
text-decoration: underline;
}
/* END MAIN CSS */ | Web Fundamentals (HTML + CSS) Course/4. HTML-Forms/4. HTML-Forms/styles/simple-form.css | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
list-style-type: none;
text-decoration: none;
}
tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
/*line-height: 1;*/
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: separate;
border-spacing: 2px;
}
/* END CLEAR BROWSER DEFAULT VALUES */
/* START MAIN CSS */
/* RESTORE HEADINGS VALUES */
h1 {
display: block;
font-size: 3.1em;
font-weight: bold;
margin: 0.7em 0.1em 0.5em;
}
h2 /*,
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.48em;
font-weight: bold;
margin: 0.42em 0;
}
h3 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.17em;
font-weight: bold;
margin: 1em 0;
}
h4 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.00em;
font-weight: bold;
margin: 1.33em 0;
}
h5 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 1.05em;
font-weight: bold;
margin: 0.5em 0;
padding-left: 1px;
}
h6 /*,
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section)
:-moz-any(article, aside, nav, section) h1*/ {
display: block;
font-size: 0.67em;
font-weight: bold;
margin: 2.33em 0;
}
/* END RESTORE HEADINGS VALUES */
/* START CSS */
/* For test the exact view in Mozilla. For other browsers correct main margins */
/*body {
background: url(../images/simple-form.png) no-repeat;
}
*/
.wrapper {
width: 775px;
height: 422px;
margin-top:-10px;
padding-top:10px;
background-color: #eeeeee;
font-family: Tahoma, sans-serif;
}
h2 {
color: #234465;
padding-left: 14px;
padding-top: 0;
}
h5 {
text-transform: uppercase;
}
h5 span:first-child {
color: #666666;
}
h5 span:last-child {
color: #234465;
}
#login-invite{
color: #7c7c7c;
font-family: Tahoma;
font-size: 14px;
padding-left: 14px;
padding-top: 10px;
word-spacing: -0.04px;
}
#new-user {
float: left;
height: 250px;
padding-left: 29px;
padding-top: 24px;
width: 350px;
}
#registered-user {
float: left;
height: 297px;
margin-left: 5px;
margin-top: 25px;
padding-left: 15px;
padding-right: 5px;
padding-top: 0;
width: 350px;
background-color: #234465;
color: white;
}
#new-user form input {
color: #474747;
font-family: sans-serif;
font-size: 0.85em;
height: 37px;
margin-bottom: 14px;
padding-left: 10px;
width: 93.4%;
}
#registered-user form input {
color: #474747;
font-family: sans-serif;
font-size: 0.85em;
height: 37px;
margin-bottom: 14px;
padding-left: 10px;
width: 93.4%;
}
#registered-user h5 {
display: block;
font-family: inherit;
font-size: 1.065em;
font-weight: bold;
margin: 0.65em 0 0.81em;
padding: 0;
}
#register-button {
border: 2px solid #234465;
color: #234465 !important;
float: right;
font-family: tahoma !important;
font-size: 1.08em !important;
height: 40px !important;
margin-right: 10px;
padding: 0 10px 0 0 !important;
text-align: center;
width: 48.6% !important;
}
#login-button {
background-color: inherit;
border: 2px solid #ff9c00;
color: white !important;
float: right;
font-size: 1.2em !important;
height: 40px !important;
margin-bottom: 9px !important;
margin-right: 10px;
padding-left: 13px !important;
padding-top: 4px;
width: 140px !important;
}
label {
color: white;
display: inline-block;
font-size: 0.7em;
font-weight: bold;
padding-top: 1.8px;
vertical-align: top;
}
#remember-ckbx{
float: left;
height: 24px !important;
margin-left: 1px !important;
margin-top: 1px;
width: 5% !important;
}
input[type="checkbox"] {
margin-right: 5px;
padding: 10px !important;
transform: scale(1.5);
}
#registered-user a {
clear: both;
color: white;
float: right;
font-size: 12.5px;
font-weight: bold;
padding-right: 19px;
padding-top: 1px;
text-decoration: underline;
}
/* END MAIN CSS */ | 0.229018 | 0.073763 |
@import "compass/css3";
// FONT IMPORT
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,800);
// VARIABLES
// Color Pallette
$orange: #ff9e2c;
$gray: #999;
$grayLight: lighten($gray, 20%);
$teal: #4ecdc4;
$salmon: #ff6b6b;
$lime: #97f464;
$peach: lighten($orange, 20%);
$grape: #ab64f4;
// MIXINS
// Calculates REMs out of pixels
@mixin font-size($sizeValue: 16) {
font-size: $sizeValue + px;
font-size: ($sizeValue / 16) + rem;
}
// Media Queries
@mixin bp($point) {
@if $point == ocean {
@media (min-width: 1000px) { @content; }
}
@else if $point == lake {
@media (min-width: 700px) { @content; }
}
}
// STYLES
body { font-family: 'Open Sans', sans-serif; }
.chart {
clear: both;
padding: 0;
width: 100%;
@include bp(lake) {
background: url("http://cl.ly/QSpc/bg-chart.png") right top repeat-x;
height: 425px;
margin: 0 auto emCalc(-32px);
}
li {
display: block;
height: 125px;
padding: emCalc(25px) 0;
position: relative;
text-align: center;
vertical-align: bottom;
@include border-radius(4px 4px 0 0);
@include box-shadow(inset 0 1px 0 0 rgba(255,255,255,.6));
@include bp(lake) {
display: inline-block;
height: 425px;
margin: 0 1.8% 0 0;
width: 4.1%;
}
}
.axis {
display: none;
top: emCalc(-45px);
width: 5%;
@include bp(lake) {
display: inline-block;
}
}
.label {
background: $grayLight;
margin: -9px 0 71px 0;
}
.skill {
font-weight: 800;
opacity: .5;
overflow: hidden;
text-transform: uppercase;
width: 100%;
@include font-size(14);
@include bp(lake) {
bottom: 20px;
position: absolute;
@include font-size(16);
}
}
.teal {
background: $teal;
border: 1px solid $teal;
@include background-image(linear-gradient(lighten($teal, 10%), $teal 70%));
}
.salmon {
background: $salmon;
border: 1px solid $salmon;
@include background-image(linear-gradient(lighten($salmon, 10%), $salmon 70%));
}
.lime {
background: $lime;
border: 1px solid $lime;
@include background-image(linear-gradient(lighten($lime, 10%), $lime 70%));
}
.peach {
background: $peach;
border: 1px solid $peach;
@include background-image(linear-gradient(lighten($peach, 10%), $peach 70%));
}
.grape {
background: $grape;
border: 1px solid $grape;
@include background-image(linear-gradient(lighten($grape, 10%), $grape 70%));
}
} | graph.css | @import "compass/css3";
// FONT IMPORT
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,800);
// VARIABLES
// Color Pallette
$orange: #ff9e2c;
$gray: #999;
$grayLight: lighten($gray, 20%);
$teal: #4ecdc4;
$salmon: #ff6b6b;
$lime: #97f464;
$peach: lighten($orange, 20%);
$grape: #ab64f4;
// MIXINS
// Calculates REMs out of pixels
@mixin font-size($sizeValue: 16) {
font-size: $sizeValue + px;
font-size: ($sizeValue / 16) + rem;
}
// Media Queries
@mixin bp($point) {
@if $point == ocean {
@media (min-width: 1000px) { @content; }
}
@else if $point == lake {
@media (min-width: 700px) { @content; }
}
}
// STYLES
body { font-family: 'Open Sans', sans-serif; }
.chart {
clear: both;
padding: 0;
width: 100%;
@include bp(lake) {
background: url("http://cl.ly/QSpc/bg-chart.png") right top repeat-x;
height: 425px;
margin: 0 auto emCalc(-32px);
}
li {
display: block;
height: 125px;
padding: emCalc(25px) 0;
position: relative;
text-align: center;
vertical-align: bottom;
@include border-radius(4px 4px 0 0);
@include box-shadow(inset 0 1px 0 0 rgba(255,255,255,.6));
@include bp(lake) {
display: inline-block;
height: 425px;
margin: 0 1.8% 0 0;
width: 4.1%;
}
}
.axis {
display: none;
top: emCalc(-45px);
width: 5%;
@include bp(lake) {
display: inline-block;
}
}
.label {
background: $grayLight;
margin: -9px 0 71px 0;
}
.skill {
font-weight: 800;
opacity: .5;
overflow: hidden;
text-transform: uppercase;
width: 100%;
@include font-size(14);
@include bp(lake) {
bottom: 20px;
position: absolute;
@include font-size(16);
}
}
.teal {
background: $teal;
border: 1px solid $teal;
@include background-image(linear-gradient(lighten($teal, 10%), $teal 70%));
}
.salmon {
background: $salmon;
border: 1px solid $salmon;
@include background-image(linear-gradient(lighten($salmon, 10%), $salmon 70%));
}
.lime {
background: $lime;
border: 1px solid $lime;
@include background-image(linear-gradient(lighten($lime, 10%), $lime 70%));
}
.peach {
background: $peach;
border: 1px solid $peach;
@include background-image(linear-gradient(lighten($peach, 10%), $peach 70%));
}
.grape {
background: $grape;
border: 1px solid $grape;
@include background-image(linear-gradient(lighten($grape, 10%), $grape 70%));
}
} | 0.358129 | 0.085595 |
.s_poster{
width: auto;
position: relative;
float: left;
}
a:hover{
text-decoration: none
}
/* 背景为green */
.bgg{
background-color: rgb(38 , 170, 128);
color: #fff;
}
/* 节目列表*/
.s_list{
padding-left: 219px;
width: 100%
}
.s_list:before{
content: "";
display: table;
}
/* 所有的列表 */
.s_items{
width: 100%;
margin-top: 10px;
background-color: #fbfcff;
color: #000;
}
li{
float: left;
border: 1px solid #d8e1f2;
}
/* 展开,查看全部,收起*/
.li_more , .li_all , .li_less{
text-align: center;
cursor: pointer;
}
/* s_variety中 除了hot之外的li样式*/
.s_variety .s_items li:not(.hot) a{
display: block;
width: 100%;
padding: 10px 15px;
font-size: 1.4rem;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.s_variety .s_items li:nth-child(even){
border-left: 0;
}
.s_variety .s_items li:nth-child(odd):not(:first-child) , .s_variety .s_items li:nth-child(even):not(:nth-child(2)){
border-top : 0;
}
.s_variety .s_items li{
width: 50%;
}
/* s_tv中 li的样式*/
.s_tv .s_items li{
width: 10%;
border-top: 0;
text-align: center;
}
.s_tv .s_items li a{
width: 100%;
padding: 15px;
display: block;
font-size: 14px;
}
.s_tv .s_items li:not(:nth-child(10n+1)){
border-left: 0;
}
.s_tv .s_items li:nth-child(1),
.s_tv .s_items li:nth-child(2),
.s_tv .s_items li:nth-child(3),
.s_tv .s_items li:nth-child(4),
.s_tv .s_items li:nth-child(5),
.s_tv .s_items li:nth-child(6),
.s_tv .s_items li:nth-child(7),
.s_tv .s_items li:nth-child(8),
.s_tv .s_items li:nth-child(9),
.s_tv .s_items li:nth-child(10){
border-top: 1px solid #d8e1f2;
}
/* 前两个 */
.s_items ul .hot{
height: 80px;
padding:10px;
border-bottom: none;
}
.reg{
margin-right: 10px;
}
/* 介绍 */
.s_info{
position: relative;
}
.s_intr , .s_area , .s_figure{
display: inline-block;
margin-left: 20px
}
/* 列表中显示图片的li*/
.hot .pic{
width: 112px;
height: 63px;
display: inline-block;
float: left;
position: relative;
}
.hot a{
padding: 10px 8px;
position: relative;
display: block;
}
.pic img{
width: 100%;
}
.pic span{
position: absolute;
bottom: 0;
left: 0;
color: #fff;
}
/* 小介绍 */
.hot .info{
vertical-align: top;
padding-left: 120px;
}
.hot .tit{
word-break: break-all;
width: 100%;
height: 40px;
line-height: 20px;
margin-bottom: 5px;
display: inline-block;
}
.info p{
overflow: hidden;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
margin-bottom: 0;
}
/* s_movie*/
.s_act , .s_act_no{
margin-top: 20px;
zoom: 1;
}
.s_act_no{
color: #519cdc;
}
/* 播放正片 */
.btn_play{
display: inline-block;
padding: 0 30px;
line-height: 48px;
background-color: #53b7f7;
text-align: center;
color: #fff;
font-size: 2rem;
vertical-align: top;
}
.btn_play:hover{
color: #fff;
background-color: #55c8f9;
}
/* 名字 */
.base_name{
display: inline-block;
margin-top: 0;
cursor: pointer;
}
/* 类型*/
.base_type{
margin-left: 20px
}
/* 收藏按钮 */
.collect{
display: inline-block;
width:50px;
height: 100%;
right: 0;
background-color: #ff33ff;
border-radius: 5px;
text-align: center;
font-size: 16px;
position: absolute;
}
/* icon */
.ico_arrr{
width: 0;
height: 0;
display: inline-block;
margin-top: 15px;
vertical-align: top;
border-width: 10px 15px;
border-style: dashed dashed dashed solid;
border-color: transparent transparent transparent #fff;
}
/* 文字高亮 */
.c_highred{
color: #d00
}
.base_name:hover{
color: #5da7e6;
}
/* 向下箭头 */
.intr_area{
position: relative;
cursor: pointer;
}
.arr_down{
display: inline-block;
width:0;
height:0;
border-width:5px 5px 0 5px;
border-style:solid;
border-color: #506470 transparent transparent;/*透明 透明 灰*/
vertical-align: middle;
margin-left: 5px;
-webkit-transition: transform .3s;
-ms-transition: transform .3s;
transition: transform .3s;
position: relative;
}
.arr_up{
display: inline-block;
width:0;
height:0;
border-width:0 5px 5px 5px;
border-style:solid;
border-color: transparent transparent #506470;/*透明 透明 灰*/
vertical-align: middle;
margin-left: 5px;
}
.intr_info{
width: 100%;
height: auto;
position: absolute;
top: 34px;
left: 0;
border: 1px solid #ccc;
padding: 15px 15px 10px 15px;
background-color: #fdfdfd;
font-size: 14px;
box-shadow: 0 0 4px 1px rgba(116,116,116,.2);
display: none;
z-index: 9999;
}
.arrup{
display: inline-block;
width: 0;
height: 0;
border-width: 0 10px 11px 10px;
border-style: solid;
border-color: transparent transparent #ddd transparent;
position: absolute;
top: -12px;
}
.arrup em{
display: inline-block;
width: 0;
height: 0;
border-width: 0 10px 12px 10px;
border-style: solid;
border-color: transparent transparent #fff transparent;
position: absolute;
top: 1px;
left: -10px;
}
.open .intr_info{
display: block;
}
@media (min-width: 1300px){
.s_tv .s_items ul li{ width: 10% ; float: left;}
}
@media (max-width: 1100px){
.s_tv .s_items ul li{ width: 12.5% ; float: left;}
} | public/css/s_result.css | .s_poster{
width: auto;
position: relative;
float: left;
}
a:hover{
text-decoration: none
}
/* 背景为green */
.bgg{
background-color: rgb(38 , 170, 128);
color: #fff;
}
/* 节目列表*/
.s_list{
padding-left: 219px;
width: 100%
}
.s_list:before{
content: "";
display: table;
}
/* 所有的列表 */
.s_items{
width: 100%;
margin-top: 10px;
background-color: #fbfcff;
color: #000;
}
li{
float: left;
border: 1px solid #d8e1f2;
}
/* 展开,查看全部,收起*/
.li_more , .li_all , .li_less{
text-align: center;
cursor: pointer;
}
/* s_variety中 除了hot之外的li样式*/
.s_variety .s_items li:not(.hot) a{
display: block;
width: 100%;
padding: 10px 15px;
font-size: 1.4rem;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.s_variety .s_items li:nth-child(even){
border-left: 0;
}
.s_variety .s_items li:nth-child(odd):not(:first-child) , .s_variety .s_items li:nth-child(even):not(:nth-child(2)){
border-top : 0;
}
.s_variety .s_items li{
width: 50%;
}
/* s_tv中 li的样式*/
.s_tv .s_items li{
width: 10%;
border-top: 0;
text-align: center;
}
.s_tv .s_items li a{
width: 100%;
padding: 15px;
display: block;
font-size: 14px;
}
.s_tv .s_items li:not(:nth-child(10n+1)){
border-left: 0;
}
.s_tv .s_items li:nth-child(1),
.s_tv .s_items li:nth-child(2),
.s_tv .s_items li:nth-child(3),
.s_tv .s_items li:nth-child(4),
.s_tv .s_items li:nth-child(5),
.s_tv .s_items li:nth-child(6),
.s_tv .s_items li:nth-child(7),
.s_tv .s_items li:nth-child(8),
.s_tv .s_items li:nth-child(9),
.s_tv .s_items li:nth-child(10){
border-top: 1px solid #d8e1f2;
}
/* 前两个 */
.s_items ul .hot{
height: 80px;
padding:10px;
border-bottom: none;
}
.reg{
margin-right: 10px;
}
/* 介绍 */
.s_info{
position: relative;
}
.s_intr , .s_area , .s_figure{
display: inline-block;
margin-left: 20px
}
/* 列表中显示图片的li*/
.hot .pic{
width: 112px;
height: 63px;
display: inline-block;
float: left;
position: relative;
}
.hot a{
padding: 10px 8px;
position: relative;
display: block;
}
.pic img{
width: 100%;
}
.pic span{
position: absolute;
bottom: 0;
left: 0;
color: #fff;
}
/* 小介绍 */
.hot .info{
vertical-align: top;
padding-left: 120px;
}
.hot .tit{
word-break: break-all;
width: 100%;
height: 40px;
line-height: 20px;
margin-bottom: 5px;
display: inline-block;
}
.info p{
overflow: hidden;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
margin-bottom: 0;
}
/* s_movie*/
.s_act , .s_act_no{
margin-top: 20px;
zoom: 1;
}
.s_act_no{
color: #519cdc;
}
/* 播放正片 */
.btn_play{
display: inline-block;
padding: 0 30px;
line-height: 48px;
background-color: #53b7f7;
text-align: center;
color: #fff;
font-size: 2rem;
vertical-align: top;
}
.btn_play:hover{
color: #fff;
background-color: #55c8f9;
}
/* 名字 */
.base_name{
display: inline-block;
margin-top: 0;
cursor: pointer;
}
/* 类型*/
.base_type{
margin-left: 20px
}
/* 收藏按钮 */
.collect{
display: inline-block;
width:50px;
height: 100%;
right: 0;
background-color: #ff33ff;
border-radius: 5px;
text-align: center;
font-size: 16px;
position: absolute;
}
/* icon */
.ico_arrr{
width: 0;
height: 0;
display: inline-block;
margin-top: 15px;
vertical-align: top;
border-width: 10px 15px;
border-style: dashed dashed dashed solid;
border-color: transparent transparent transparent #fff;
}
/* 文字高亮 */
.c_highred{
color: #d00
}
.base_name:hover{
color: #5da7e6;
}
/* 向下箭头 */
.intr_area{
position: relative;
cursor: pointer;
}
.arr_down{
display: inline-block;
width:0;
height:0;
border-width:5px 5px 0 5px;
border-style:solid;
border-color: #506470 transparent transparent;/*透明 透明 灰*/
vertical-align: middle;
margin-left: 5px;
-webkit-transition: transform .3s;
-ms-transition: transform .3s;
transition: transform .3s;
position: relative;
}
.arr_up{
display: inline-block;
width:0;
height:0;
border-width:0 5px 5px 5px;
border-style:solid;
border-color: transparent transparent #506470;/*透明 透明 灰*/
vertical-align: middle;
margin-left: 5px;
}
.intr_info{
width: 100%;
height: auto;
position: absolute;
top: 34px;
left: 0;
border: 1px solid #ccc;
padding: 15px 15px 10px 15px;
background-color: #fdfdfd;
font-size: 14px;
box-shadow: 0 0 4px 1px rgba(116,116,116,.2);
display: none;
z-index: 9999;
}
.arrup{
display: inline-block;
width: 0;
height: 0;
border-width: 0 10px 11px 10px;
border-style: solid;
border-color: transparent transparent #ddd transparent;
position: absolute;
top: -12px;
}
.arrup em{
display: inline-block;
width: 0;
height: 0;
border-width: 0 10px 12px 10px;
border-style: solid;
border-color: transparent transparent #fff transparent;
position: absolute;
top: 1px;
left: -10px;
}
.open .intr_info{
display: block;
}
@media (min-width: 1300px){
.s_tv .s_items ul li{ width: 10% ; float: left;}
}
@media (max-width: 1100px){
.s_tv .s_items ul li{ width: 12.5% ; float: left;}
} | 0.203272 | 0.061678 |
.same-line-label {
display: inline-block;
margin-right: 10px;
}
.site-body {
background-color: #101010ff;
}
/* Post listing */
.unpublished-post-list {
padding-top: 1rem;
border-color: #ffffff;
border-top-width: 4px;
border-style: solid;
}
.post-list > h1:first-of-type, .unpublished-post-list > h1:first-of-type {
padding-bottom: .75rem;
border-color: #efefefff;
border-bottom-width: 3px;
border-style: solid;
background-color: #000000be;
}
.post-list > ul, .unpublished-post-list > ul {
background-color: #000000be;
list-style: none;
}
.post-list > ul > li, .unpublished-post-list > ul > li {
padding: 20px 0;
/* margin: 20px 0; */
border-color: #aaaaaaff;
border-bottom-width: 1px;
border-style: solid;
}
.post-item {
margin-left: 0;
padding-left: 2rem;
}
.post-item > h2 > .post-title-link {
padding-bottom: 1em;
text-decoration: none;
}
.post-item > .post-published-date {
font-size: 0.75em;
line-height: 1em;
}
.no-post-text {
padding-top: 2em;
}
/* Login */
.login-wrapper {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.login-wrapper > form {
max-width: 500px;
}
.login-wrapper > form > div > input {
width: 100%;
}
/* Editor/Viewer */
.editor {
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
}
.editor-title {
display: flex;
}
.editor-title > input {
flex-grow: 1;
}
.editor-slug {
display: flex;
}
.editor-slug > label {
margin: 0;
display: flex;
align-items: center;
}
.editor-slug > input {
flex-grow: 1;
}
.editor-body {
flex-grow: 1;
display: flex;
}
.editor-body > textarea {
flex-grow: 1;
}
.editor-actions {
}
.post {
}
.post > h1 {
padding-bottom: 0.5em;
}
.post > p {
}
.post > .pagination-buttons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
} | server/public/css/blog.css | .same-line-label {
display: inline-block;
margin-right: 10px;
}
.site-body {
background-color: #101010ff;
}
/* Post listing */
.unpublished-post-list {
padding-top: 1rem;
border-color: #ffffff;
border-top-width: 4px;
border-style: solid;
}
.post-list > h1:first-of-type, .unpublished-post-list > h1:first-of-type {
padding-bottom: .75rem;
border-color: #efefefff;
border-bottom-width: 3px;
border-style: solid;
background-color: #000000be;
}
.post-list > ul, .unpublished-post-list > ul {
background-color: #000000be;
list-style: none;
}
.post-list > ul > li, .unpublished-post-list > ul > li {
padding: 20px 0;
/* margin: 20px 0; */
border-color: #aaaaaaff;
border-bottom-width: 1px;
border-style: solid;
}
.post-item {
margin-left: 0;
padding-left: 2rem;
}
.post-item > h2 > .post-title-link {
padding-bottom: 1em;
text-decoration: none;
}
.post-item > .post-published-date {
font-size: 0.75em;
line-height: 1em;
}
.no-post-text {
padding-top: 2em;
}
/* Login */
.login-wrapper {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.login-wrapper > form {
max-width: 500px;
}
.login-wrapper > form > div > input {
width: 100%;
}
/* Editor/Viewer */
.editor {
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
}
.editor-title {
display: flex;
}
.editor-title > input {
flex-grow: 1;
}
.editor-slug {
display: flex;
}
.editor-slug > label {
margin: 0;
display: flex;
align-items: center;
}
.editor-slug > input {
flex-grow: 1;
}
.editor-body {
flex-grow: 1;
display: flex;
}
.editor-body > textarea {
flex-grow: 1;
}
.editor-actions {
}
.post {
}
.post > h1 {
padding-bottom: 0.5em;
}
.post > p {
}
.post > .pagination-buttons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
} | 0.501953 | 0.15241 |
@value mqs: "../../styles/mqs.module.css";
@value fromSmall, fromMedium, fromLarge, fromXL from mqs;
.textImageContainer {
@apply py-12;
@media (fromLarge) {
@apply py-24;
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
}
.textImageContainer img {
margin-bottom: 2em;
@media (fromLarge) {
@apply col-span-7;
@apply col-start-1;
padding-right: 80px;
}
@media (fromXL) {
@apply col-span-7;
@apply col-start-1;
padding-right: 80px;
}
}
.textImageContainerReverse > div {
@media (fromLarge) {
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
@media (fromXL) {
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
}
.textImageContainerReverse img {
margin-bottom: 2em;
@media (fromLarge) {
@apply col-span-7;
@apply col-start-6;
@apply pl-20;
@apply pr-0;
}
@media (fromXL) {
@apply col-span-7;
@apply col-start-6;
@apply pl-20;
@apply pr-0;
}
}
.textImageChildrenReverse {
@media (fromLarge) {
@apply col-start-1;
@apply row-start-1;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media (fromXL) {
@apply col-start-1;
@apply row-start-1;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
}
.textImageChildren {
@media (fromLarge) {
@apply col-start-8;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media (fromXL) {
@apply col-start-8;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
}
.textImageChildren h3 {
line-height: 1.25;
@apply font-semibold;
}
.textImageChildren button,
.textImageChildren a {
display: inline-block;
margin-top: 2rem;
}
.textImageChildrenReverse h3 {
line-height: 1.25;
@apply font-semibold;
}
.textImageChildrenReverse button,
.textImageChildrenReverse a {
display: inline-block;
margin-top: 2rem;
} | src/components/TextImage/text-image.module.css | @value mqs: "../../styles/mqs.module.css";
@value fromSmall, fromMedium, fromLarge, fromXL from mqs;
.textImageContainer {
@apply py-12;
@media (fromLarge) {
@apply py-24;
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
}
.textImageContainer img {
margin-bottom: 2em;
@media (fromLarge) {
@apply col-span-7;
@apply col-start-1;
padding-right: 80px;
}
@media (fromXL) {
@apply col-span-7;
@apply col-start-1;
padding-right: 80px;
}
}
.textImageContainerReverse > div {
@media (fromLarge) {
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
@media (fromXL) {
@apply grid;
@apply gap-6;
@apply grid-cols-12;
@apply grid-rows-1;
}
}
.textImageContainerReverse img {
margin-bottom: 2em;
@media (fromLarge) {
@apply col-span-7;
@apply col-start-6;
@apply pl-20;
@apply pr-0;
}
@media (fromXL) {
@apply col-span-7;
@apply col-start-6;
@apply pl-20;
@apply pr-0;
}
}
.textImageChildrenReverse {
@media (fromLarge) {
@apply col-start-1;
@apply row-start-1;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media (fromXL) {
@apply col-start-1;
@apply row-start-1;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
}
.textImageChildren {
@media (fromLarge) {
@apply col-start-8;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
@media (fromXL) {
@apply col-start-8;
@apply col-span-5;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
}
.textImageChildren h3 {
line-height: 1.25;
@apply font-semibold;
}
.textImageChildren button,
.textImageChildren a {
display: inline-block;
margin-top: 2rem;
}
.textImageChildrenReverse h3 {
line-height: 1.25;
@apply font-semibold;
}
.textImageChildrenReverse button,
.textImageChildrenReverse a {
display: inline-block;
margin-top: 2rem;
} | 0.665411 | 0.178061 |
body {
background: #1f1d1d;
margin:0;
color:#fff;
font-family: century gothic;
}
nav {
width:69px;
background:#131313;
height:100%;
font-size:1.6rem;
}
.image-width {
width:69px;
}
.current {
/* this specifies the color for the navbar icon currently in use, ie home will be pink on home screen*/
color:#f02069;
}
.main-grid {
display: grid;
grid-template-columns: 69fr 1297fr;
grid-template-rows:1fr;
height :100vh;
width:100%;
}
.grid5 {
margin-top:35px;
margin-left:0px;
text-align:center;
display: grid;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns:1fr;
grid-gap:25px;
transition: all 1000ms;
}
.grid2 {
display:grid;
grid-template-columns: 1fr 1fr;
height:100vh;
grid-template-rows:1fr;
}
a.current {
color:#f02069;
}
nav a:hover {
color:#f02069;
}
a {
color:#fff;
}
.intro {
margin:100px 0px 0px 82px;
font-size: 120px;
font-weight: bold;
line-height:120px;
}
.pinkcolor {
color:#f02069;
}
.bluecolor {
color:#9acce4;
}
.tagline {
margin-left:88px;
font-size: 22px;
font-weight: bold;
}
.aboutme {
font-size:18px;
margin:100px 0px 0px 223px;
}
a.arrowfront {
color:#f02069;
}
.confetti {
margin-left:50px;
margin-top:53px;
}
.thickline {
font-size:24px;
font-weight: bold;
margin-left:60px;
}
.idothis {
font-size:42px;
margin-left:270px;
margin-top: -40px;
font-weight: bold;
}
.whatidocontain {
margin-top:10px;
margin-left:60px;
margin-right:85px;
word-spacing:20px;
}
a.whatidoicons {
font-size:60px;
text-align:right;
color:#fff;
text-decoration:none;
}
a.blue {
color:#9acce4;
}
a.line2 {
font-size:48px;
}
.fontsize48 {
font-size:48px;
font-weight:bold;
line-height:40px;
}
.social{
margin-right:140px;
text-align:right;
margin-top:85px;
word-spacing:10px;
}
a.socialicon {
font-size:35px;
color:#fff;
}
@media (max-width:600px) {
.main-grid {
display: grid;
grid-template-columns: 1fr;
grid-template-rows:1fr 10fr;
height :100vh;
width:100%;
}
nav {
width:100%;
background:#131313;
height:69px;
font-size:1.6rem;
}
.grid5 {
margin-top:-60px;
margin-left:69px;
text-align:center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-rows:1fr;
grid-gap:0px;
transition: all 1000ms;
}
.grid2 {
display:grid;
grid-template-rows: 5fr 4fr;
height:100vh;
grid-template-columns:1fr;
}
.confetti {
display:none;
}
.aboutme {
margin:30px 0 0 80px;
}
.intro {
margin:50px 0 0 30px;
line-height:100px;
}
.tagline {
margin:10px 0 0 30px;
}
.thickline {
margin-left:30px;
margin-top:60px;
font-size:20px;
}
.idothis {
font-size:35px;
margin-left:200px;
margin-top: -35px;
font-weight: bold;
}
a.whatidoicons {
font-size:35px;
}
.whatidocontain {
margin-left:30px;
margin-right:30px;
text-align:center;
}
.social{
margin-right:10px;
text-align:center;
margin-top:40px;
word-spacing:10px;
}
a.socialicon {
font-size:20px;
color:#fff;
}
} | testing.css | body {
background: #1f1d1d;
margin:0;
color:#fff;
font-family: century gothic;
}
nav {
width:69px;
background:#131313;
height:100%;
font-size:1.6rem;
}
.image-width {
width:69px;
}
.current {
/* this specifies the color for the navbar icon currently in use, ie home will be pink on home screen*/
color:#f02069;
}
.main-grid {
display: grid;
grid-template-columns: 69fr 1297fr;
grid-template-rows:1fr;
height :100vh;
width:100%;
}
.grid5 {
margin-top:35px;
margin-left:0px;
text-align:center;
display: grid;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns:1fr;
grid-gap:25px;
transition: all 1000ms;
}
.grid2 {
display:grid;
grid-template-columns: 1fr 1fr;
height:100vh;
grid-template-rows:1fr;
}
a.current {
color:#f02069;
}
nav a:hover {
color:#f02069;
}
a {
color:#fff;
}
.intro {
margin:100px 0px 0px 82px;
font-size: 120px;
font-weight: bold;
line-height:120px;
}
.pinkcolor {
color:#f02069;
}
.bluecolor {
color:#9acce4;
}
.tagline {
margin-left:88px;
font-size: 22px;
font-weight: bold;
}
.aboutme {
font-size:18px;
margin:100px 0px 0px 223px;
}
a.arrowfront {
color:#f02069;
}
.confetti {
margin-left:50px;
margin-top:53px;
}
.thickline {
font-size:24px;
font-weight: bold;
margin-left:60px;
}
.idothis {
font-size:42px;
margin-left:270px;
margin-top: -40px;
font-weight: bold;
}
.whatidocontain {
margin-top:10px;
margin-left:60px;
margin-right:85px;
word-spacing:20px;
}
a.whatidoicons {
font-size:60px;
text-align:right;
color:#fff;
text-decoration:none;
}
a.blue {
color:#9acce4;
}
a.line2 {
font-size:48px;
}
.fontsize48 {
font-size:48px;
font-weight:bold;
line-height:40px;
}
.social{
margin-right:140px;
text-align:right;
margin-top:85px;
word-spacing:10px;
}
a.socialicon {
font-size:35px;
color:#fff;
}
@media (max-width:600px) {
.main-grid {
display: grid;
grid-template-columns: 1fr;
grid-template-rows:1fr 10fr;
height :100vh;
width:100%;
}
nav {
width:100%;
background:#131313;
height:69px;
font-size:1.6rem;
}
.grid5 {
margin-top:-60px;
margin-left:69px;
text-align:center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-rows:1fr;
grid-gap:0px;
transition: all 1000ms;
}
.grid2 {
display:grid;
grid-template-rows: 5fr 4fr;
height:100vh;
grid-template-columns:1fr;
}
.confetti {
display:none;
}
.aboutme {
margin:30px 0 0 80px;
}
.intro {
margin:50px 0 0 30px;
line-height:100px;
}
.tagline {
margin:10px 0 0 30px;
}
.thickline {
margin-left:30px;
margin-top:60px;
font-size:20px;
}
.idothis {
font-size:35px;
margin-left:200px;
margin-top: -35px;
font-weight: bold;
}
a.whatidoicons {
font-size:35px;
}
.whatidocontain {
margin-left:30px;
margin-right:30px;
text-align:center;
}
.social{
margin-right:10px;
text-align:center;
margin-top:40px;
word-spacing:10px;
}
a.socialicon {
font-size:20px;
color:#fff;
}
} | 0.349644 | 0.084078 |
*{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
background-color: #ced3e7;
font-family: 'Montserrat', sans-serif;
}
input{
outline: none;
border: none;
}
.heading{
width: 60%;
}
.heading h2{
font-size: 2rem;
font-weight: 300;
color: #412277;
}
.container{
width: 80%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
height: 90vh;
background-color: #f8f9fb;
display: flex;
box-shadow: 2px 10px 20px rgba(0, 0, 0, .5);
}
.form{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 55%;
}
.image{
width: 45%;
}
.img{
width: 100%;
height: 100%;
object-fit: cover;
}
.wrap2{
width: 80%;
position: relative;
border-bottom: 2px solid #b2b2b2;
margin-bottom: 13px;
}
.wrap{
display: flex;
width: 80%;
justify-content: center;
}
.f1{
border-bottom: 2px solid #b2b2b2;
width: 40%;
position: relative;
}
.f2{
border-bottom: 2px solid #b2b2b2;
margin-left: auto;
width: 50%;
position: relative;
}
label{
font-size: 12px;
color: #676768;
line-height: 1.5;
text-transform: uppercase;
letter-spacing: 1px;
display: flex;
align-items: center;
width: 80%;
min-height: 25px;
border-bottom: none;
padding: 15px 0px;
margin-top: 10px;
margin-bottom: 0px;
padding-bottom: 2px;
}
input{
display: block;
width: 100%;
font-size: 18px;
background: transparent;
color: #0f0f0f;
font-weight: 500;
padding: 10px 0px;
}
/*** BUTTON ***/
.btn{
margin-top: 10px;
width: 90px;
height: 150px;
border-radius: 40px;
outline: none;
font-weight: 400;
font-size: .7rem;
border: none;
background: #445a94;
color: #fff;
box-shadow: 8px 10px 30px rgba(0,0,0,.5);
transition: 0.4s;
padding: 5px 10px;
margin-right: 10px;
margin-left: 10px;
}
.button ul a:hover{
background: #4b2888;
color: #fff;
}
.button{
width: 90%;
height: 50px;
}
.right{
float: right;
display: block;
}
.button ul a{
padding: 10px;
background: rgb(27, 111, 207);
color: #fff;
border-radius: 40px;
outline: none;
box-shadow: 8px 10px 30px rgba(0,0,0,.5);
text-decoration: none;
}
/***INPUT ANIMATION SPAN***/
.focus-input2{
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.focus-input2::before{
content: "";
display: block;
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 2px;
transition: all 0.6s;
background: #412277;
}
input:focus + .focus-input2::before{
width: 100%;
}
.has-val.input + .focus-input2::before{
width: 100%;
}
input[type="number"]{
overflow: hidden;
}
/***RESPONSIVE***/
@media(max-width:1250px){
.container{
width: 90%;
}
}
@media(max-width:768px){
.container{
width: 100%;
height: 100vh !important;
position: static;
transform: translate(0,0);
}
}
@media(max-width:1000px){
.image{
display: none;
}
} | public/assets/css/registerstyle.css | *{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
background-color: #ced3e7;
font-family: 'Montserrat', sans-serif;
}
input{
outline: none;
border: none;
}
.heading{
width: 60%;
}
.heading h2{
font-size: 2rem;
font-weight: 300;
color: #412277;
}
.container{
width: 80%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
height: 90vh;
background-color: #f8f9fb;
display: flex;
box-shadow: 2px 10px 20px rgba(0, 0, 0, .5);
}
.form{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 55%;
}
.image{
width: 45%;
}
.img{
width: 100%;
height: 100%;
object-fit: cover;
}
.wrap2{
width: 80%;
position: relative;
border-bottom: 2px solid #b2b2b2;
margin-bottom: 13px;
}
.wrap{
display: flex;
width: 80%;
justify-content: center;
}
.f1{
border-bottom: 2px solid #b2b2b2;
width: 40%;
position: relative;
}
.f2{
border-bottom: 2px solid #b2b2b2;
margin-left: auto;
width: 50%;
position: relative;
}
label{
font-size: 12px;
color: #676768;
line-height: 1.5;
text-transform: uppercase;
letter-spacing: 1px;
display: flex;
align-items: center;
width: 80%;
min-height: 25px;
border-bottom: none;
padding: 15px 0px;
margin-top: 10px;
margin-bottom: 0px;
padding-bottom: 2px;
}
input{
display: block;
width: 100%;
font-size: 18px;
background: transparent;
color: #0f0f0f;
font-weight: 500;
padding: 10px 0px;
}
/*** BUTTON ***/
.btn{
margin-top: 10px;
width: 90px;
height: 150px;
border-radius: 40px;
outline: none;
font-weight: 400;
font-size: .7rem;
border: none;
background: #445a94;
color: #fff;
box-shadow: 8px 10px 30px rgba(0,0,0,.5);
transition: 0.4s;
padding: 5px 10px;
margin-right: 10px;
margin-left: 10px;
}
.button ul a:hover{
background: #4b2888;
color: #fff;
}
.button{
width: 90%;
height: 50px;
}
.right{
float: right;
display: block;
}
.button ul a{
padding: 10px;
background: rgb(27, 111, 207);
color: #fff;
border-radius: 40px;
outline: none;
box-shadow: 8px 10px 30px rgba(0,0,0,.5);
text-decoration: none;
}
/***INPUT ANIMATION SPAN***/
.focus-input2{
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.focus-input2::before{
content: "";
display: block;
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 2px;
transition: all 0.6s;
background: #412277;
}
input:focus + .focus-input2::before{
width: 100%;
}
.has-val.input + .focus-input2::before{
width: 100%;
}
input[type="number"]{
overflow: hidden;
}
/***RESPONSIVE***/
@media(max-width:1250px){
.container{
width: 90%;
}
}
@media(max-width:768px){
.container{
width: 100%;
height: 100vh !important;
position: static;
transform: translate(0,0);
}
}
@media(max-width:1000px){
.image{
display: none;
}
} | 0.489015 | 0.089574 |
z-index: 2;
position: fixed;
width: 240px;
height: 100%;
background-color: var(--sb-color);
padding: 52px 20px 15px 20px;
left: -280px;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
box-shadow: var(--m-s-4);
}
#sidebar-toggle-wrapper {
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--m-s-4);
border-radius: 24px;
background-color: var(--sb-color);
-webkit-transition: .5s ease-in-out .2s;
-moz-transition: .5s ease-in-out .2s;
-o-transition: .5s ease-in-out .2s;
transition: .5s ease-in-out .2s;
width: 48px;
height: 48px;
float: right;
position: absolute;
top: 20px;
left: calc(100% + 20px);
cursor: pointer;
}
/* Icon 1 */
#sidebar-toggle {
margin: 8px 8px;
float: right;
width: 30px;
height: 20px;
position: relative;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}
#sidebar-toggle span {
display: block;
position: absolute;
height: 4px;
width: 100%;
background: var(--base-white);
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
#sidebar-toggle span:nth-child(1) {
top: 0px;
}
#sidebar-toggle span:nth-child(2) {
top: 8px;
}
#sidebar-toggle span:nth-child(3) {
top: 16px;
}
#sidebar.open {
left: 0;
}
#sidebar-toggle-wrapper.open {
-webkit-transition: .5s ease-in-out .2s;
-moz-transition: .5s ease-in-out .2s;
-o-transition: .5s ease-in-out .2s;
transition: .5s ease-in-out .2s;
box-shadow: none;
left: calc(100% - 64px);
top: 0;
}
#sidebar-toggle.open {
background-color: transparent;
height: 38px;
}
#sidebar-toggle.open span:nth-child(1) {
top: 18px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
#sidebar-toggle.open span:nth-child(2) {
opacity: 0;
left: -60px;
}
#sidebar-toggle.open span:nth-child(3) {
top: 18px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}
#delete, #delete-and-raise, #swap-theme, #toggle-presentation-mode {
cursor: pointer;
}
/* Behavior and styles for specific buttons */
#toggle-presentation-mode {
visibility: hidden;
} | css/sidebar.css | z-index: 2;
position: fixed;
width: 240px;
height: 100%;
background-color: var(--sb-color);
padding: 52px 20px 15px 20px;
left: -280px;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
box-shadow: var(--m-s-4);
}
#sidebar-toggle-wrapper {
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--m-s-4);
border-radius: 24px;
background-color: var(--sb-color);
-webkit-transition: .5s ease-in-out .2s;
-moz-transition: .5s ease-in-out .2s;
-o-transition: .5s ease-in-out .2s;
transition: .5s ease-in-out .2s;
width: 48px;
height: 48px;
float: right;
position: absolute;
top: 20px;
left: calc(100% + 20px);
cursor: pointer;
}
/* Icon 1 */
#sidebar-toggle {
margin: 8px 8px;
float: right;
width: 30px;
height: 20px;
position: relative;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}
#sidebar-toggle span {
display: block;
position: absolute;
height: 4px;
width: 100%;
background: var(--base-white);
border-radius: 9px;
opacity: 1;
left: 0;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: .25s ease-in-out;
-moz-transition: .25s ease-in-out;
-o-transition: .25s ease-in-out;
transition: .25s ease-in-out;
}
#sidebar-toggle span:nth-child(1) {
top: 0px;
}
#sidebar-toggle span:nth-child(2) {
top: 8px;
}
#sidebar-toggle span:nth-child(3) {
top: 16px;
}
#sidebar.open {
left: 0;
}
#sidebar-toggle-wrapper.open {
-webkit-transition: .5s ease-in-out .2s;
-moz-transition: .5s ease-in-out .2s;
-o-transition: .5s ease-in-out .2s;
transition: .5s ease-in-out .2s;
box-shadow: none;
left: calc(100% - 64px);
top: 0;
}
#sidebar-toggle.open {
background-color: transparent;
height: 38px;
}
#sidebar-toggle.open span:nth-child(1) {
top: 18px;
-webkit-transform: rotate(135deg);
-moz-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg);
}
#sidebar-toggle.open span:nth-child(2) {
opacity: 0;
left: -60px;
}
#sidebar-toggle.open span:nth-child(3) {
top: 18px;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg);
}
#delete, #delete-and-raise, #swap-theme, #toggle-presentation-mode {
cursor: pointer;
}
/* Behavior and styles for specific buttons */
#toggle-presentation-mode {
visibility: hidden;
} | 0.320396 | 0.071074 |
.app-header {
display: grid;
grid-template-columns: repeat(20, 1fr);
height: 60px;
}
.nav-account-items {
float: right;
grid-column: span 3;
padding: 10px 10px 10px 10px;
background-color: #17181E;
overflow: hidden;
}
.menu-open-button-container {
display: none;
position: relative;
grid-column: span 2;
line-height: 2vh;
}
.pill-bar {
grid-column: span 13;
/*background-color: #17181E;*/
}
.corner-title {
/*background-color: #33353C;*/
/*display: inline-block;*/
min-width: 140px;
grid-column: span 3;
}
.navigation-bar {
/*color: #eeeeee;
background-color: #17181E;*/
display: inline-block;
width: 100%;
}
.corner-title > h1 {
margin-top: 10px;
margin-bottom: 10px;
}
.nav-pills {
margin-top: 5px;
margin-bottom: 5px;
}
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
display: inline-block;
text-align: center;
padding: 14px;
text-decoration: none;
font-size: 17px;
border-radius: 5px;
}
/*.pill-bar .nav-pills > li > a:hover {
background-color: #71737D;
color: #111111;
}*/
.pill-bar .nav-pills > li > a:active {
/*background-color: #71737D;
color: #111111;*/
transform: scale(0.99);
}
.nav-item {
display: inline-block;
}
.modaal-content-container ul {
list-style-type: circle;
}
#menu-open-button {
float: left;
border: none;
background-color: transparent;
color: white;
top: 50%;
-ms-transform: translateY(50%);
transform: translateY(100%) scale(1.5);
}
#menu-open-button:active {
background-color: white;
color: black;
}
#help-button-div {
grid-column: span 1;
}
#help-button {
border: none;
background-color: transparent;
outline: none;
color: white;
top: 50%;
-ms-transform: translateY(50%);
transform: translateY(100%) scale(1.5);
}
#help-button:hover {
cursor: pointer;
color: gray;
}
#help-button:active {
color: cyan;
}
/*.pill-bar .nav-pills .active > a {
background-color: #71737D;
color: #ffffff;
}*/
@media screen and (max-width: 1156px) {
.pill-bar .nav-pills > li > a {
padding: 13px;
font-size: 16px;
border-radius: 5px;
}
}
@media screen and (max-width: 1111px) {
.nav-link > .nav-link-text {
display: none;
}
/*.pill-bar {
grid-column: span 6;
}
.app-header {
grid-template-columns: repeat(12, 1fr);
}*/
}
@media screen and (max-width: 960px) {
.corner-title {
grid-column: span 4;
}
.pill-bar {
grid-column: span 12;
/*background-color: #17181E;*/
}
}
@media screen and (max-width: 740px) {
.corner-title {
grid-column: span 5;
}
.pill-bar {
grid-column: span 11;
/*background-color: #17181E;*/
}
}
@media screen and (max-width: 612px) {
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
padding: 12px;
font-size: 15px;
border-radius: 5px;
}
}
@media screen and (max-width: 576px) {
.nav-link > .nav-link-text {
display: none;
}
.menu-open-button-container {
display: block;
}
.pill-bar {
grid-column: span 15;
}
.corner-title {
display: none;
}
.nav-pills {
padding-inline-start: 0px;
}
.nav-account-items {
grid-column: span 2;
}
/*.pill-bar {
grid-column: span 6;
}
.app-header {
grid-template-columns: repeat(12, 1fr);
}*/
}
@media screen and (max-width: 360px) {
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
padding: 10px;
text-decoration: none;
font-size: 13px;
border-radius: 5px;
}
} | resticweb/static/navbar.css | .app-header {
display: grid;
grid-template-columns: repeat(20, 1fr);
height: 60px;
}
.nav-account-items {
float: right;
grid-column: span 3;
padding: 10px 10px 10px 10px;
background-color: #17181E;
overflow: hidden;
}
.menu-open-button-container {
display: none;
position: relative;
grid-column: span 2;
line-height: 2vh;
}
.pill-bar {
grid-column: span 13;
/*background-color: #17181E;*/
}
.corner-title {
/*background-color: #33353C;*/
/*display: inline-block;*/
min-width: 140px;
grid-column: span 3;
}
.navigation-bar {
/*color: #eeeeee;
background-color: #17181E;*/
display: inline-block;
width: 100%;
}
.corner-title > h1 {
margin-top: 10px;
margin-bottom: 10px;
}
.nav-pills {
margin-top: 5px;
margin-bottom: 5px;
}
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
display: inline-block;
text-align: center;
padding: 14px;
text-decoration: none;
font-size: 17px;
border-radius: 5px;
}
/*.pill-bar .nav-pills > li > a:hover {
background-color: #71737D;
color: #111111;
}*/
.pill-bar .nav-pills > li > a:active {
/*background-color: #71737D;
color: #111111;*/
transform: scale(0.99);
}
.nav-item {
display: inline-block;
}
.modaal-content-container ul {
list-style-type: circle;
}
#menu-open-button {
float: left;
border: none;
background-color: transparent;
color: white;
top: 50%;
-ms-transform: translateY(50%);
transform: translateY(100%) scale(1.5);
}
#menu-open-button:active {
background-color: white;
color: black;
}
#help-button-div {
grid-column: span 1;
}
#help-button {
border: none;
background-color: transparent;
outline: none;
color: white;
top: 50%;
-ms-transform: translateY(50%);
transform: translateY(100%) scale(1.5);
}
#help-button:hover {
cursor: pointer;
color: gray;
}
#help-button:active {
color: cyan;
}
/*.pill-bar .nav-pills .active > a {
background-color: #71737D;
color: #ffffff;
}*/
@media screen and (max-width: 1156px) {
.pill-bar .nav-pills > li > a {
padding: 13px;
font-size: 16px;
border-radius: 5px;
}
}
@media screen and (max-width: 1111px) {
.nav-link > .nav-link-text {
display: none;
}
/*.pill-bar {
grid-column: span 6;
}
.app-header {
grid-template-columns: repeat(12, 1fr);
}*/
}
@media screen and (max-width: 960px) {
.corner-title {
grid-column: span 4;
}
.pill-bar {
grid-column: span 12;
/*background-color: #17181E;*/
}
}
@media screen and (max-width: 740px) {
.corner-title {
grid-column: span 5;
}
.pill-bar {
grid-column: span 11;
/*background-color: #17181E;*/
}
}
@media screen and (max-width: 612px) {
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
padding: 12px;
font-size: 15px;
border-radius: 5px;
}
}
@media screen and (max-width: 576px) {
.nav-link > .nav-link-text {
display: none;
}
.menu-open-button-container {
display: block;
}
.pill-bar {
grid-column: span 15;
}
.corner-title {
display: none;
}
.nav-pills {
padding-inline-start: 0px;
}
.nav-account-items {
grid-column: span 2;
}
/*.pill-bar {
grid-column: span 6;
}
.app-header {
grid-template-columns: repeat(12, 1fr);
}*/
}
@media screen and (max-width: 360px) {
.pill-bar .nav-pills > li > a {
/*color: #eeeeee;*/
padding: 10px;
text-decoration: none;
font-size: 13px;
border-radius: 5px;
}
} | 0.407569 | 0.141934 |
.bg {
&--transparent {
background-color: transparent;
}
&--inherit {
background-color: inherit;
}
&--primary {
background-color: var(--primary);
}
/* Black */
&--black {
background-color: var(--black);
&-90 {
background-color: var(--black-90);
}
&-80 {
background-color: var(--black-80);
}
&-70 {
background-color: var(--black-70);
}
&-60 {
background-color: var(--black-60);
}
&-50 {
background-color: var(--black-50);
}
&-40 {
background-color: var(--black-40);
}
&-30 {
background-color: var(--black-30);
}
&-20 {
background-color: var(--black-20);
}
&-10 {
background-color: var(--black-10);
}
}
&--black-light {
background-color: var(--black-light);
}
&--black-lighter {
background-color: var(--black-lighter);
}
&--black-lightest {
background-color: var(--black-lightest);
}
/* Red */
&--red-darker {
background-color: var(--red-darker);
}
&--red-dark {
background-color: var(--red-dark);
}
&--red {
background-color: var(--red);
}
&--red-light {
background-color: var(--red-light);
}
&--red-lighter {
background-color: var(--red-lighter);
}
&--red-lightest {
background-color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
background-color: var(--brown-darker);
}
&--brown-dark {
background-color: var(--brown-dark);
}
&--brown {
background-color: var(--brown);
}
&--brown-light {
background-color: var(--brown-light);
}
&--brown-lighter {
background-color: var(--brown-lighter);
}
&--brown-lightest {
background-color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
background-color: var(--sepia-darker);
}
&--sepia-dark {
background-color: var(--sepia-dark);
}
&--sepia {
background-color: var(--sepia);
}
&--sepia-light {
background-color: var(--sepia-light);
}
&--sepia-lighter {
background-color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
background-color: var(--oranger-darker);
}
&--oranger-dark {
background-color: var(--oranger-dark);
}
&--oranger {
background-color: var(--oranger);
}
&--oranger-light {
background-color: var(--oranger-light);
}
&--oranger-lighter {
background-color: var(--oranger-lighter);
}
&--oranger-lightest {
background-color: var(--oranger-lightest);
}
&--orange-darker {
background-color: var(--orange-darker);
}
&--orange-dark {
background-color: var(--orange-dark);
}
&--orange {
background-color: var(--orange);
}
&--orange-light {
background-color: var(--orange-light);
}
&--orange-lighter {
background-color: var(--orange-lighter);
}
&--orange-lightest {
background-color: var(--orange-lightest);
}
/* Gold */
&--gold {
background-color: var(--gold);
}
&--gold-light {
background-color: var(--gold-light);
}
&--gold-lighter {
background-color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
background-color: var(--yellow-darker);
}
&--yellow-dark {
background-color: var(--yellow-dark);
}
&--yellow {
background-color: var(--yellow);
}
&--yellow-light {
background-color: var(--yellow-light);
}
&--yellow-lighter {
background-color: var(--yellow-lighter);
}
&--yellow-lightest {
background-color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
background-color: var(--apple-green);
}
&--lime-green {
background-color: var(--lime-green);
}
&--yellow-green {
background-color: var(--yellow-green);
}
&--pear-green {
background-color: var(--pear-green);
}
&--green-darker {
background-color: var(--green-darker);
}
&--green-dark {
background-color: var(--green-dark);
}
&--green {
background-color: var(--green);
}
&--green-light {
background-color: var(--green-light);
}
&--green-lighter {
background-color: var(--green-lighter);
}
&--green-lightest {
background-color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
background-color: var(--cerluean-blue);
}
&--pale-blue {
background-color: var(--pale-blue);
}
&--blue-darker {
background-color: var(--blue-darker);
}
&--blue-dark {
background-color: var(--blue-dark);
}
&--blue {
background-color: var(--blue);
}
&--blue-light {
background-color: var(--blue-light);
}
&--navy-blue-dark {
background-color: var(--navy-blue-dark);
}
&--navy-blue {
background-color: var(--navy-blue);
}
&--navy-blue-light {
background-color: var(--navy-blue-light);
}
&--steel-blue-darker {
background-color: var(--steel-blue-darker);
}
&--steel-blue-dark {
background-color: var(--steel-blue-dark);
}
&--steel-blue {
background-color: var(--steel-blue);
}
&--steel-blue-light {
background-color: var(--steel-blue-light);
}
&--steel-blue-lighter {
background-color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
background-color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
background-color: var(--violet-darker);
}
&--violet-dark {
background-color: var(--violet-dark);
}
&--violet {
background-color: var(--violet);
}
&--violet-light {
background-color: var(--violet-light);
}
&--violet-lighter {
background-color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
background-color: var(--purple-dark);
}
&--purple {
background-color: var(--purple);
}
&--purple-light {
background-color: var(--purple-light);
}
&--purple-lighter {
background-color: var(--purple-lighter);
}
&--purple-lightest {
background-color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
background-color: var(--magenta-dark);
}
&--magenta {
background-color: var(--magenta);
}
&--magenta-light {
background-color: var(--magenta-light);
}
&--magenta-lighter {
background-color: var(--magenta-lighter);
}
&--magenta-lightest {
background-color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
background-color: var(--hot-pink);
}
&--pink {
background-color: var(--pink);
}
&--rose {
background-color: var(--rose);
}
/* Gray */
&--gray-darker {
background-color: var(--gray-darker);
}
&--gray-dark {
background-color: var(--gray-dark);
}
&--gray {
background-color: var(--gray);
}
&--gray-light {
background-color: var(--gray-light);
}
&--gray-lighter {
background-color: var(--gray-lighter);
}
&--gray-lightest {
background-color: var(--gray-lightest);
}
/* Biege */
&--beige {
background-color: var(--beige);
}
&--beige-light {
background-color: var(--beige-light);
}
/* Silver */
&--silver-dark {
background-color: var(--silver-dark);
}
&--silver {
background-color: var(--silver);
}
&--silver-light {
background-color: var(--silver-light);
}
&--silver-lighter {
background-color: var(--silver-lighter);
}
&--silver-lightest {
background-color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
background-color: var(--red-faded);
}
&--gold-faded {
background-color: var(--gold-faded);
}
&--green-faded {
background-color: var(--green-faded);
}
&--blue-faded {
background-color: var(--blue-faded);
}
/* White */
&--white {
background-color: var(--white);
&-90 {
background-color: var(--white-90);
}
&-80 {
background-color: var(--white-80);
}
&-70 {
background-color: var(--white-70);
}
&-60 {
background-color: var(--white-60);
}
&-50 {
background-color: var(--white-50);
}
&-40 {
background-color: var(--white-40);
}
&-30 {
background-color: var(--white-30);
}
&-20 {
background-color: var(--white-20);
}
&-10 {
background-color: var(--white-10);
}
}
}
/* Border colors */
.bdr {
&--transparent {
border-color: transparent;
}
&--inherit {
border-color: inherit;
}
/* Black */
&--black {
border-color: var(--black);
&-90 {
border-color: var(--black-90);
}
&-80 {
border-color: var(--black-80);
}
&-70 {
border-color: var(--black-70);
}
&-60 {
border-color: var(--black-60);
}
&-50 {
border-color: var(--black-50);
}
&-40 {
border-color: var(--black-40);
}
&-30 {
border-color: var(--black-30);
}
&-20 {
border-color: var(--black-20);
}
&-10 {
border-color: var(--black-10);
}
}
&--black-light {
border-color: var(--black-light);
}
&--black-lighter {
border-color: var(--black-lighter);
}
&--black-lightest {
border-color: var(--black-lightest);
}
/* Red */
&--red-darker {
border-color: var(--red-darker);
}
&--red-dark {
border-color: var(--red-dark);
}
&--red {
border-color: var(--red);
}
&--red-light {
border-color: var(--red-light);
}
&--red-lighter {
border-color: var(--red-lighter);
}
&--red-lightest {
border-color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
border-color: var(--brown-darker);
}
&--brown-dark {
border-color: var(--brown-dark);
}
&--brown {
border-color: var(--brown);
}
&--brown-light {
border-color: var(--brown-light);
}
&--brown-lighter {
border-color: var(--brown-lighter);
}
&--brown-lightest {
border-color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
border-color: var(--sepia-darker);
}
&--sepia-dark {
border-color: var(--sepia-dark);
}
&--sepia {
border-color: var(--sepia);
}
&--sepia-light {
border-color: var(--sepia-light);
}
&--sepia-lighter {
border-color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
border-color: var(--oranger-darker);
}
&--oranger-dark {
border-color: var(--oranger-dark);
}
&--oranger {
border-color: var(--oranger);
}
&--oranger-light {
border-color: var(--oranger-light);
}
&--oranger-lighter {
border-color: var(--oranger-lighter);
}
&--oranger-lightest {
border-color: var(--oranger-lightest);
}
&--orange-darker {
border-color: var(--orange-darker);
}
&--orange-dark {
border-color: var(--orange-dark);
}
&--orange {
border-color: var(--orange);
}
&--orange-light {
border-color: var(--orange-light);
}
&--orange-lighter {
border-color: var(--orange-lighter);
}
&--orange-lightest {
border-color: var(--orange-lightest);
}
/* Gold */
&--gold {
border-color: var(--gold);
}
&--gold-light {
border-color: var(--gold-light);
}
&--gold-lighter {
border-color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
border-color: var(--yellow-darker);
}
&--yellow-dark {
border-color: var(--yellow-dark);
}
&--yellow {
border-color: var(--yellow);
}
&--yellow-light {
border-color: var(--yellow-light);
}
&--yellow-lighter {
border-color: var(--yellow-lighter);
}
&--yellow-lightest {
border-color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
border-color: var(--apple-green);
}
&--lime-green {
border-color: var(--lime-green);
}
&--yellow-green {
border-color: var(--yellow-green);
}
&--pear-green {
border-color: var(--pear-green);
}
&--green-darker {
border-color: var(--green-darker);
}
&--green-dark {
border-color: var(--green-dark);
}
&--green {
border-color: var(--green);
}
&--green-light {
border-color: var(--green-light);
}
&--green-lighter {
border-color: var(--green-lighter);
}
&--green-lightest {
border-color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
border-color: var(--cerluean-blue);
}
&--pale-blue {
border-color: var(--pale-blue);
}
&--blue-darker {
border-color: var(--blue-darker);
}
&--blue-dark {
border-color: var(--blue-dark);
}
&--blue {
border-color: var(--blue);
}
&--blue-light {
border-color: var(--blue-light);
}
&--navy-blue-dark {
border-color: var(--navy-blue-dark);
}
&--navy-blue {
border-color: var(--navy-blue);
}
&--navy-blue-light {
border-color: var(--navy-blue-light);
}
&--steel-blue-darker {
border-color: var(--steel-blue-darker);
}
&--steel-blue-dark {
border-color: var(--steel-blue-dark);
}
&--steel-blue {
border-color: var(--steel-blue);
}
&--steel-blue-light {
border-color: var(--steel-blue-light);
}
&--steel-blue-lighter {
border-color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
border-color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
border-color: var(--violet-darker);
}
&--violet-dark {
border-color: var(--violet-dark);
}
&--violet {
border-color: var(--violet);
}
&--violet-light {
border-color: var(--violet-light);
}
&--violet-lighter {
border-color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
border-color: var(--purple-dark);
}
&--purple {
border-color: var(--purple);
}
&--purple-light {
border-color: var(--purple-light);
}
&--purple-lighter {
border-color: var(--purple-lighter);
}
&--purple-lightest {
border-color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
border-color: var(--magenta-dark);
}
&--magenta {
border-color: var(--magenta);
}
&--magenta-light {
border-color: var(--magenta-light);
}
&--magenta-lighter {
border-color: var(--magenta-lighter);
}
&--magenta-lightest {
border-color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
border-color: var(--hot-pink);
}
&--pink {
border-color: var(--pink);
}
&--rose {
border-color: var(--rose);
}
/* Gray */
&--gray-darker {
border-color: var(--gray-darker);
}
&--gray-dark {
border-color: var(--gray-dark);
}
&--gray {
border-color: var(--gray);
}
&--gray-light {
border-color: var(--gray-light);
}
&--gray-lighter {
border-color: var(--gray-lighter);
}
&--gray-lightest {
border-color: var(--gray-lightest);
}
/* Biege */
&--beige {
border-color: var(--beige);
}
&--beige-light {
border-color: var(--beige-light);
}
/* Silver */
&--silver-dark {
border-color: var(--silver-dark);
}
&--silver {
border-color: var(--silver);
}
&--silver-light {
border-color: var(--silver-light);
}
&--silver-lighter {
border-color: var(--silver-lighter);
}
&--silver-lightest {
border-color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
border-color: var(--red-faded);
}
&--gold-faded {
border-color: var(--gold-faded);
}
&--green-faded {
border-color: var(--green-faded);
}
&--blue-faded {
border-color: var(--blue-faded);
}
/* White */
&--white {
border-color: var(--white);
&-90 {
border-color: var(--white-90);
}
&-80 {
border-color: var(--white-80);
}
&-70 {
border-color: var(--white-70);
}
&-60 {
border-color: var(--white-60);
}
&-50 {
border-color: var(--white-50);
}
&-40 {
border-color: var(--white-40);
}
&-30 {
border-color: var(--white-30);
}
&-20 {
border-color: var(--white-20);
}
&-10 {
border-color: var(--white-10);
}
}
}
/* Text colors */
.clr {
&--transparent {
color: transparent;
}
&--inherit {
color: inherit;
}
&--primary {
color: var(--primary);
}
/* Black */
&--black {
color: var(--black);
&-90 {
color: var(--black-90);
}
&-80 {
color: var(--black-80);
}
&-70 {
color: var(--black-70);
}
&-60 {
color: var(--black-60);
}
&-50 {
color: var(--black-50);
}
&-40 {
color: var(--black-40);
}
&-30 {
color: var(--black-30);
}
&-20 {
color: var(--black-20);
}
&-10 {
color: var(--black-10);
}
}
&--black-light {
color: var(--black-light);
}
&--black-lighter {
color: var(--black-lighter);
}
&--black-lightest {
color: var(--black-lightest);
}
/* Red */
&--red-darker {
color: var(--red-darker);
}
&--red-dark {
color: var(--red-dark);
}
&--red {
color: var(--red);
}
&--red-light {
color: var(--red-light);
}
&--red-lighter {
color: var(--red-lighter);
}
&--red-lightest {
color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
color: var(--brown-darker);
}
&--brown-dark {
color: var(--brown-dark);
}
&--brown {
color: var(--brown);
}
&--brown-light {
color: var(--brown-light);
}
&--brown-lighter {
color: var(--brown-lighter);
}
&--brown-lightest {
color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
color: var(--sepia-darker);
}
&--sepia-dark {
color: var(--sepia-dark);
}
&--sepia {
color: var(--sepia);
}
&--sepia-light {
color: var(--sepia-light);
}
&--sepia-lighter {
color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
color: var(--oranger-darker);
}
&--oranger-dark {
color: var(--oranger-dark);
}
&--oranger {
color: var(--oranger);
}
&--oranger-light {
color: var(--oranger-light);
}
&--oranger-lighter {
color: var(--oranger-lighter);
}
&--oranger-lightest {
color: var(--oranger-lightest);
}
&--orange-darker {
color: var(--orange-darker);
}
&--orange-dark {
color: var(--orange-dark);
}
&--orange {
color: var(--orange);
}
&--orange-light {
color: var(--orange-light);
}
&--orange-lighter {
color: var(--orange-lighter);
}
&--orange-lightest {
color: var(--orange-lightest);
}
/* Gold */
&--gold {
color: var(--gold);
}
&--gold-light {
color: var(--gold-light);
}
&--gold-lighter {
color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
color: var(--yellow-darker);
}
&--yellow-dark {
color: var(--yellow-dark);
}
&--yellow {
color: var(--yellow);
}
&--yellow-light {
color: var(--yellow-light);
}
&--yellow-lighter {
color: var(--yellow-lighter);
}
&--yellow-lightest {
color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
color: var(--apple-green);
}
&--lime-green {
color: var(--lime-green);
}
&--yellow-green {
color: var(--yellow-green);
}
&--pear-green {
color: var(--pear-green);
}
&--green-darker {
color: var(--green-darker);
}
&--green-dark {
color: var(--green-dark);
}
&--green {
color: var(--green);
}
&--green-light {
color: var(--green-light);
}
&--green-lighter {
color: var(--green-lighter);
}
&--green-lightest {
color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
color: var(--cerluean-blue);
}
&--pale-blue {
color: var(--pale-blue);
}
&--blue-darker {
color: var(--blue-darker);
}
&--blue-dark {
color: var(--blue-dark);
}
&--blue {
color: var(--blue);
}
&--blue-light {
color: var(--blue-light);
}
&--navy-blue-dark {
color: var(--navy-blue-dark);
}
&--navy-blue {
color: var(--navy-blue);
}
&--navy-blue-light {
color: var(--navy-blue-light);
}
&--steel-blue-darker {
color: var(--steel-blue-darker);
}
&--steel-blue-dark {
color: var(--steel-blue-dark);
}
&--steel-blue {
color: var(--steel-blue);
}
&--steel-blue-light {
color: var(--steel-blue-light);
}
&--steel-blue-lighter {
color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
color: var(--violet-darker);
}
&--violet-dark {
color: var(--violet-dark);
}
&--violet {
color: var(--violet);
}
&--violet-light {
color: var(--violet-light);
}
&--violet-lighter {
color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
color: var(--purple-dark);
}
&--purple {
color: var(--purple);
}
&--purple-light {
color: var(--purple-light);
}
&--purple-lighter {
color: var(--purple-lighter);
}
&--purple-lightest {
color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
color: var(--magenta-dark);
}
&--magenta {
color: var(--magenta);
}
&--magenta-light {
color: var(--magenta-light);
}
&--magenta-lighter {
color: var(--magenta-lighter);
}
&--magenta-lightest {
color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
color: var(--hot-pink);
}
&--pink {
color: var(--pink);
}
&--rose {
color: var(--rose);
}
/* Gray */
&--gray-darker {
color: var(--gray-darker);
}
&--gray-dark {
color: var(--gray-dark);
}
&--gray {
color: var(--gray);
}
&--gray-light {
color: var(--gray-light);
}
&--gray-lighter {
color: var(--gray-lighter);
}
&--gray-lightest {
color: var(--gray-lightest);
}
/* Biege */
&--beige {
color: var(--beige);
}
&--beige-light {
color: var(--beige-light);
}
/* Silver */
&--silver-dark {
color: var(--silver-dark);
}
&--silver {
color: var(--silver);
}
&--silver-light {
color: var(--silver-light);
}
&--silver-lighter {
color: var(--silver-lighter);
}
&--silver-lightest {
color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
color: var(--red-faded);
}
&--gold-faded {
color: var(--gold-faded);
}
&--green-faded {
color: var(--green-faded);
}
&--blue-faded {
color: var(--blue-faded);
}
/* White */
&--white {
color: var(--white);
&-90 {
color: var(--white-90);
}
&-80 {
color: var(--white-80);
}
&-70 {
color: var(--white-70);
}
&-60 {
color: var(--white-60);
}
&-50 {
color: var(--white-50);
}
&-40 {
color: var(--white-40);
}
&-30 {
color: var(--white-30);
}
&-20 {
color: var(--white-20);
}
&-10 {
color: var(--white-10);
}
}
}
/* Text Selection Colors */
.uslt {
/* Replicate this red */
&--red {
&::selection {
background: var(--red-faded);
}
&-all {
::selection {
background: var(--red-faded);
}
}
}
&--green{
::selection {
background: var(--green-faded);
}
}
&--blue::selection {
background: var(--blue-faded);
}
&--gold::selection {
background: var(--gold-faded);
}
&--brown::selection {
background: var(--brown-lightest);
}
&--sepia::selection {
background: var(--sepia-lightest);
}
&--orange::selection {
background: var(--orange-lightest);
}
&--yellow::selection {
background: var(--yellow-lightest);
}
&--violet::selection {
background: var(--violet-lighter);
}
&--purple::selection {
background: var(--purple-lightest);
}
&--gray::selection {
background: var(--gray-lightest);
}
&--silver::selection {
background: var(--silver-lightest);
}
} | src/styles/base/_theme.css | .bg {
&--transparent {
background-color: transparent;
}
&--inherit {
background-color: inherit;
}
&--primary {
background-color: var(--primary);
}
/* Black */
&--black {
background-color: var(--black);
&-90 {
background-color: var(--black-90);
}
&-80 {
background-color: var(--black-80);
}
&-70 {
background-color: var(--black-70);
}
&-60 {
background-color: var(--black-60);
}
&-50 {
background-color: var(--black-50);
}
&-40 {
background-color: var(--black-40);
}
&-30 {
background-color: var(--black-30);
}
&-20 {
background-color: var(--black-20);
}
&-10 {
background-color: var(--black-10);
}
}
&--black-light {
background-color: var(--black-light);
}
&--black-lighter {
background-color: var(--black-lighter);
}
&--black-lightest {
background-color: var(--black-lightest);
}
/* Red */
&--red-darker {
background-color: var(--red-darker);
}
&--red-dark {
background-color: var(--red-dark);
}
&--red {
background-color: var(--red);
}
&--red-light {
background-color: var(--red-light);
}
&--red-lighter {
background-color: var(--red-lighter);
}
&--red-lightest {
background-color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
background-color: var(--brown-darker);
}
&--brown-dark {
background-color: var(--brown-dark);
}
&--brown {
background-color: var(--brown);
}
&--brown-light {
background-color: var(--brown-light);
}
&--brown-lighter {
background-color: var(--brown-lighter);
}
&--brown-lightest {
background-color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
background-color: var(--sepia-darker);
}
&--sepia-dark {
background-color: var(--sepia-dark);
}
&--sepia {
background-color: var(--sepia);
}
&--sepia-light {
background-color: var(--sepia-light);
}
&--sepia-lighter {
background-color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
background-color: var(--oranger-darker);
}
&--oranger-dark {
background-color: var(--oranger-dark);
}
&--oranger {
background-color: var(--oranger);
}
&--oranger-light {
background-color: var(--oranger-light);
}
&--oranger-lighter {
background-color: var(--oranger-lighter);
}
&--oranger-lightest {
background-color: var(--oranger-lightest);
}
&--orange-darker {
background-color: var(--orange-darker);
}
&--orange-dark {
background-color: var(--orange-dark);
}
&--orange {
background-color: var(--orange);
}
&--orange-light {
background-color: var(--orange-light);
}
&--orange-lighter {
background-color: var(--orange-lighter);
}
&--orange-lightest {
background-color: var(--orange-lightest);
}
/* Gold */
&--gold {
background-color: var(--gold);
}
&--gold-light {
background-color: var(--gold-light);
}
&--gold-lighter {
background-color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
background-color: var(--yellow-darker);
}
&--yellow-dark {
background-color: var(--yellow-dark);
}
&--yellow {
background-color: var(--yellow);
}
&--yellow-light {
background-color: var(--yellow-light);
}
&--yellow-lighter {
background-color: var(--yellow-lighter);
}
&--yellow-lightest {
background-color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
background-color: var(--apple-green);
}
&--lime-green {
background-color: var(--lime-green);
}
&--yellow-green {
background-color: var(--yellow-green);
}
&--pear-green {
background-color: var(--pear-green);
}
&--green-darker {
background-color: var(--green-darker);
}
&--green-dark {
background-color: var(--green-dark);
}
&--green {
background-color: var(--green);
}
&--green-light {
background-color: var(--green-light);
}
&--green-lighter {
background-color: var(--green-lighter);
}
&--green-lightest {
background-color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
background-color: var(--cerluean-blue);
}
&--pale-blue {
background-color: var(--pale-blue);
}
&--blue-darker {
background-color: var(--blue-darker);
}
&--blue-dark {
background-color: var(--blue-dark);
}
&--blue {
background-color: var(--blue);
}
&--blue-light {
background-color: var(--blue-light);
}
&--navy-blue-dark {
background-color: var(--navy-blue-dark);
}
&--navy-blue {
background-color: var(--navy-blue);
}
&--navy-blue-light {
background-color: var(--navy-blue-light);
}
&--steel-blue-darker {
background-color: var(--steel-blue-darker);
}
&--steel-blue-dark {
background-color: var(--steel-blue-dark);
}
&--steel-blue {
background-color: var(--steel-blue);
}
&--steel-blue-light {
background-color: var(--steel-blue-light);
}
&--steel-blue-lighter {
background-color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
background-color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
background-color: var(--violet-darker);
}
&--violet-dark {
background-color: var(--violet-dark);
}
&--violet {
background-color: var(--violet);
}
&--violet-light {
background-color: var(--violet-light);
}
&--violet-lighter {
background-color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
background-color: var(--purple-dark);
}
&--purple {
background-color: var(--purple);
}
&--purple-light {
background-color: var(--purple-light);
}
&--purple-lighter {
background-color: var(--purple-lighter);
}
&--purple-lightest {
background-color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
background-color: var(--magenta-dark);
}
&--magenta {
background-color: var(--magenta);
}
&--magenta-light {
background-color: var(--magenta-light);
}
&--magenta-lighter {
background-color: var(--magenta-lighter);
}
&--magenta-lightest {
background-color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
background-color: var(--hot-pink);
}
&--pink {
background-color: var(--pink);
}
&--rose {
background-color: var(--rose);
}
/* Gray */
&--gray-darker {
background-color: var(--gray-darker);
}
&--gray-dark {
background-color: var(--gray-dark);
}
&--gray {
background-color: var(--gray);
}
&--gray-light {
background-color: var(--gray-light);
}
&--gray-lighter {
background-color: var(--gray-lighter);
}
&--gray-lightest {
background-color: var(--gray-lightest);
}
/* Biege */
&--beige {
background-color: var(--beige);
}
&--beige-light {
background-color: var(--beige-light);
}
/* Silver */
&--silver-dark {
background-color: var(--silver-dark);
}
&--silver {
background-color: var(--silver);
}
&--silver-light {
background-color: var(--silver-light);
}
&--silver-lighter {
background-color: var(--silver-lighter);
}
&--silver-lightest {
background-color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
background-color: var(--red-faded);
}
&--gold-faded {
background-color: var(--gold-faded);
}
&--green-faded {
background-color: var(--green-faded);
}
&--blue-faded {
background-color: var(--blue-faded);
}
/* White */
&--white {
background-color: var(--white);
&-90 {
background-color: var(--white-90);
}
&-80 {
background-color: var(--white-80);
}
&-70 {
background-color: var(--white-70);
}
&-60 {
background-color: var(--white-60);
}
&-50 {
background-color: var(--white-50);
}
&-40 {
background-color: var(--white-40);
}
&-30 {
background-color: var(--white-30);
}
&-20 {
background-color: var(--white-20);
}
&-10 {
background-color: var(--white-10);
}
}
}
/* Border colors */
.bdr {
&--transparent {
border-color: transparent;
}
&--inherit {
border-color: inherit;
}
/* Black */
&--black {
border-color: var(--black);
&-90 {
border-color: var(--black-90);
}
&-80 {
border-color: var(--black-80);
}
&-70 {
border-color: var(--black-70);
}
&-60 {
border-color: var(--black-60);
}
&-50 {
border-color: var(--black-50);
}
&-40 {
border-color: var(--black-40);
}
&-30 {
border-color: var(--black-30);
}
&-20 {
border-color: var(--black-20);
}
&-10 {
border-color: var(--black-10);
}
}
&--black-light {
border-color: var(--black-light);
}
&--black-lighter {
border-color: var(--black-lighter);
}
&--black-lightest {
border-color: var(--black-lightest);
}
/* Red */
&--red-darker {
border-color: var(--red-darker);
}
&--red-dark {
border-color: var(--red-dark);
}
&--red {
border-color: var(--red);
}
&--red-light {
border-color: var(--red-light);
}
&--red-lighter {
border-color: var(--red-lighter);
}
&--red-lightest {
border-color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
border-color: var(--brown-darker);
}
&--brown-dark {
border-color: var(--brown-dark);
}
&--brown {
border-color: var(--brown);
}
&--brown-light {
border-color: var(--brown-light);
}
&--brown-lighter {
border-color: var(--brown-lighter);
}
&--brown-lightest {
border-color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
border-color: var(--sepia-darker);
}
&--sepia-dark {
border-color: var(--sepia-dark);
}
&--sepia {
border-color: var(--sepia);
}
&--sepia-light {
border-color: var(--sepia-light);
}
&--sepia-lighter {
border-color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
border-color: var(--oranger-darker);
}
&--oranger-dark {
border-color: var(--oranger-dark);
}
&--oranger {
border-color: var(--oranger);
}
&--oranger-light {
border-color: var(--oranger-light);
}
&--oranger-lighter {
border-color: var(--oranger-lighter);
}
&--oranger-lightest {
border-color: var(--oranger-lightest);
}
&--orange-darker {
border-color: var(--orange-darker);
}
&--orange-dark {
border-color: var(--orange-dark);
}
&--orange {
border-color: var(--orange);
}
&--orange-light {
border-color: var(--orange-light);
}
&--orange-lighter {
border-color: var(--orange-lighter);
}
&--orange-lightest {
border-color: var(--orange-lightest);
}
/* Gold */
&--gold {
border-color: var(--gold);
}
&--gold-light {
border-color: var(--gold-light);
}
&--gold-lighter {
border-color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
border-color: var(--yellow-darker);
}
&--yellow-dark {
border-color: var(--yellow-dark);
}
&--yellow {
border-color: var(--yellow);
}
&--yellow-light {
border-color: var(--yellow-light);
}
&--yellow-lighter {
border-color: var(--yellow-lighter);
}
&--yellow-lightest {
border-color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
border-color: var(--apple-green);
}
&--lime-green {
border-color: var(--lime-green);
}
&--yellow-green {
border-color: var(--yellow-green);
}
&--pear-green {
border-color: var(--pear-green);
}
&--green-darker {
border-color: var(--green-darker);
}
&--green-dark {
border-color: var(--green-dark);
}
&--green {
border-color: var(--green);
}
&--green-light {
border-color: var(--green-light);
}
&--green-lighter {
border-color: var(--green-lighter);
}
&--green-lightest {
border-color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
border-color: var(--cerluean-blue);
}
&--pale-blue {
border-color: var(--pale-blue);
}
&--blue-darker {
border-color: var(--blue-darker);
}
&--blue-dark {
border-color: var(--blue-dark);
}
&--blue {
border-color: var(--blue);
}
&--blue-light {
border-color: var(--blue-light);
}
&--navy-blue-dark {
border-color: var(--navy-blue-dark);
}
&--navy-blue {
border-color: var(--navy-blue);
}
&--navy-blue-light {
border-color: var(--navy-blue-light);
}
&--steel-blue-darker {
border-color: var(--steel-blue-darker);
}
&--steel-blue-dark {
border-color: var(--steel-blue-dark);
}
&--steel-blue {
border-color: var(--steel-blue);
}
&--steel-blue-light {
border-color: var(--steel-blue-light);
}
&--steel-blue-lighter {
border-color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
border-color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
border-color: var(--violet-darker);
}
&--violet-dark {
border-color: var(--violet-dark);
}
&--violet {
border-color: var(--violet);
}
&--violet-light {
border-color: var(--violet-light);
}
&--violet-lighter {
border-color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
border-color: var(--purple-dark);
}
&--purple {
border-color: var(--purple);
}
&--purple-light {
border-color: var(--purple-light);
}
&--purple-lighter {
border-color: var(--purple-lighter);
}
&--purple-lightest {
border-color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
border-color: var(--magenta-dark);
}
&--magenta {
border-color: var(--magenta);
}
&--magenta-light {
border-color: var(--magenta-light);
}
&--magenta-lighter {
border-color: var(--magenta-lighter);
}
&--magenta-lightest {
border-color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
border-color: var(--hot-pink);
}
&--pink {
border-color: var(--pink);
}
&--rose {
border-color: var(--rose);
}
/* Gray */
&--gray-darker {
border-color: var(--gray-darker);
}
&--gray-dark {
border-color: var(--gray-dark);
}
&--gray {
border-color: var(--gray);
}
&--gray-light {
border-color: var(--gray-light);
}
&--gray-lighter {
border-color: var(--gray-lighter);
}
&--gray-lightest {
border-color: var(--gray-lightest);
}
/* Biege */
&--beige {
border-color: var(--beige);
}
&--beige-light {
border-color: var(--beige-light);
}
/* Silver */
&--silver-dark {
border-color: var(--silver-dark);
}
&--silver {
border-color: var(--silver);
}
&--silver-light {
border-color: var(--silver-light);
}
&--silver-lighter {
border-color: var(--silver-lighter);
}
&--silver-lightest {
border-color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
border-color: var(--red-faded);
}
&--gold-faded {
border-color: var(--gold-faded);
}
&--green-faded {
border-color: var(--green-faded);
}
&--blue-faded {
border-color: var(--blue-faded);
}
/* White */
&--white {
border-color: var(--white);
&-90 {
border-color: var(--white-90);
}
&-80 {
border-color: var(--white-80);
}
&-70 {
border-color: var(--white-70);
}
&-60 {
border-color: var(--white-60);
}
&-50 {
border-color: var(--white-50);
}
&-40 {
border-color: var(--white-40);
}
&-30 {
border-color: var(--white-30);
}
&-20 {
border-color: var(--white-20);
}
&-10 {
border-color: var(--white-10);
}
}
}
/* Text colors */
.clr {
&--transparent {
color: transparent;
}
&--inherit {
color: inherit;
}
&--primary {
color: var(--primary);
}
/* Black */
&--black {
color: var(--black);
&-90 {
color: var(--black-90);
}
&-80 {
color: var(--black-80);
}
&-70 {
color: var(--black-70);
}
&-60 {
color: var(--black-60);
}
&-50 {
color: var(--black-50);
}
&-40 {
color: var(--black-40);
}
&-30 {
color: var(--black-30);
}
&-20 {
color: var(--black-20);
}
&-10 {
color: var(--black-10);
}
}
&--black-light {
color: var(--black-light);
}
&--black-lighter {
color: var(--black-lighter);
}
&--black-lightest {
color: var(--black-lightest);
}
/* Red */
&--red-darker {
color: var(--red-darker);
}
&--red-dark {
color: var(--red-dark);
}
&--red {
color: var(--red);
}
&--red-light {
color: var(--red-light);
}
&--red-lighter {
color: var(--red-lighter);
}
&--red-lightest {
color: var(--red-lightest);
}
/* Brown */
&--brown-darker {
color: var(--brown-darker);
}
&--brown-dark {
color: var(--brown-dark);
}
&--brown {
color: var(--brown);
}
&--brown-light {
color: var(--brown-light);
}
&--brown-lighter {
color: var(--brown-lighter);
}
&--brown-lightest {
color: var(--brown-lightest);
}
/* Sepia */
&--sepia-darker {
color: var(--sepia-darker);
}
&--sepia-dark {
color: var(--sepia-dark);
}
&--sepia {
color: var(--sepia);
}
&--sepia-light {
color: var(--sepia-light);
}
&--sepia-lighter {
color: var(--sepia-lighter);
}
/* Orange */
&--oranger-darker {
color: var(--oranger-darker);
}
&--oranger-dark {
color: var(--oranger-dark);
}
&--oranger {
color: var(--oranger);
}
&--oranger-light {
color: var(--oranger-light);
}
&--oranger-lighter {
color: var(--oranger-lighter);
}
&--oranger-lightest {
color: var(--oranger-lightest);
}
&--orange-darker {
color: var(--orange-darker);
}
&--orange-dark {
color: var(--orange-dark);
}
&--orange {
color: var(--orange);
}
&--orange-light {
color: var(--orange-light);
}
&--orange-lighter {
color: var(--orange-lighter);
}
&--orange-lightest {
color: var(--orange-lightest);
}
/* Gold */
&--gold {
color: var(--gold);
}
&--gold-light {
color: var(--gold-light);
}
&--gold-lighter {
color: var(--gold-lighter);
}
/* Yellow */
&--yellow-darker {
color: var(--yellow-darker);
}
&--yellow-dark {
color: var(--yellow-dark);
}
&--yellow {
color: var(--yellow);
}
&--yellow-light {
color: var(--yellow-light);
}
&--yellow-lighter {
color: var(--yellow-lighter);
}
&--yellow-lightest {
color: var(--yellow-lightest);
}
/* Green */
&--apple-green {
color: var(--apple-green);
}
&--lime-green {
color: var(--lime-green);
}
&--yellow-green {
color: var(--yellow-green);
}
&--pear-green {
color: var(--pear-green);
}
&--green-darker {
color: var(--green-darker);
}
&--green-dark {
color: var(--green-dark);
}
&--green {
color: var(--green);
}
&--green-light {
color: var(--green-light);
}
&--green-lighter {
color: var(--green-lighter);
}
&--green-lightest {
color: var(--green-lightest);
}
/* Blue */
&--cerluean-blue {
color: var(--cerluean-blue);
}
&--pale-blue {
color: var(--pale-blue);
}
&--blue-darker {
color: var(--blue-darker);
}
&--blue-dark {
color: var(--blue-dark);
}
&--blue {
color: var(--blue);
}
&--blue-light {
color: var(--blue-light);
}
&--navy-blue-dark {
color: var(--navy-blue-dark);
}
&--navy-blue {
color: var(--navy-blue);
}
&--navy-blue-light {
color: var(--navy-blue-light);
}
&--steel-blue-darker {
color: var(--steel-blue-darker);
}
&--steel-blue-dark {
color: var(--steel-blue-dark);
}
&--steel-blue {
color: var(--steel-blue);
}
&--steel-blue-light {
color: var(--steel-blue-light);
}
&--steel-blue-lighter {
color: var(--steel-blue-lighter);
}
&--steel-blue-lightest {
color: var(--steel-blue-lightest);
}
/* Violet */
&--violet-darker {
color: var(--violet-darker);
}
&--violet-dark {
color: var(--violet-dark);
}
&--violet {
color: var(--violet);
}
&--violet-light {
color: var(--violet-light);
}
&--violet-lighter {
color: var(--violet-lighter);
}
/* Purple */
&--purple-dark {
color: var(--purple-dark);
}
&--purple {
color: var(--purple);
}
&--purple-light {
color: var(--purple-light);
}
&--purple-lighter {
color: var(--purple-lighter);
}
&--purple-lightest {
color: var(--purple-lightest);
}
/* magenta */
&--magenta-dark {
color: var(--magenta-dark);
}
&--magenta {
color: var(--magenta);
}
&--magenta-light {
color: var(--magenta-light);
}
&--magenta-lighter {
color: var(--magenta-lighter);
}
&--magenta-lightest {
color: var(--magenta-lightest);
}
/* Pink */
&--hot-pink {
color: var(--hot-pink);
}
&--pink {
color: var(--pink);
}
&--rose {
color: var(--rose);
}
/* Gray */
&--gray-darker {
color: var(--gray-darker);
}
&--gray-dark {
color: var(--gray-dark);
}
&--gray {
color: var(--gray);
}
&--gray-light {
color: var(--gray-light);
}
&--gray-lighter {
color: var(--gray-lighter);
}
&--gray-lightest {
color: var(--gray-lightest);
}
/* Biege */
&--beige {
color: var(--beige);
}
&--beige-light {
color: var(--beige-light);
}
/* Silver */
&--silver-dark {
color: var(--silver-dark);
}
&--silver {
color: var(--silver);
}
&--silver-light {
color: var(--silver-light);
}
&--silver-lighter {
color: var(--silver-lighter);
}
&--silver-lightest {
color: var(--silver-lightest);
}
/* Fades */
&--red-faded {
color: var(--red-faded);
}
&--gold-faded {
color: var(--gold-faded);
}
&--green-faded {
color: var(--green-faded);
}
&--blue-faded {
color: var(--blue-faded);
}
/* White */
&--white {
color: var(--white);
&-90 {
color: var(--white-90);
}
&-80 {
color: var(--white-80);
}
&-70 {
color: var(--white-70);
}
&-60 {
color: var(--white-60);
}
&-50 {
color: var(--white-50);
}
&-40 {
color: var(--white-40);
}
&-30 {
color: var(--white-30);
}
&-20 {
color: var(--white-20);
}
&-10 {
color: var(--white-10);
}
}
}
/* Text Selection Colors */
.uslt {
/* Replicate this red */
&--red {
&::selection {
background: var(--red-faded);
}
&-all {
::selection {
background: var(--red-faded);
}
}
}
&--green{
::selection {
background: var(--green-faded);
}
}
&--blue::selection {
background: var(--blue-faded);
}
&--gold::selection {
background: var(--gold-faded);
}
&--brown::selection {
background: var(--brown-lightest);
}
&--sepia::selection {
background: var(--sepia-lightest);
}
&--orange::selection {
background: var(--orange-lightest);
}
&--yellow::selection {
background: var(--yellow-lightest);
}
&--violet::selection {
background: var(--violet-lighter);
}
&--purple::selection {
background: var(--purple-lightest);
}
&--gray::selection {
background: var(--gray-lightest);
}
&--silver::selection {
background: var(--silver-lightest);
}
} | 0.558207 | 0.349616 |
.hourglass {
height: 600px;
width: 350px;
margin: 0;
box-shadow: none;
}
.hourglass .window-content {
background: none;
overflow: hidden;
}
.hourglass .window-header {
border: none;
}
.hourglass .hourglass-canvas{
--sand-color: #EDD0AA;
--sand-duration: 0;
--translate-top-sand: none;
--translate-bottom-sand: 100%;
position: relative;
margin: auto;
display: block;
/* margin-top: 8%;
margin-bottom: 8%; */
width: 100%;
height:100%;
}
.hourglass .hourglass-body {
background-image: url(../images/Hourglass_Empty.png);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
position: relative;
margin: auto;
display: grid;
width: 100%;
height:100%;
align-content: end;
justify-content: center;
color: white;
font-size: 2em;
}
.hourglass-decrement {
position: absolute;
left: 0;
top: 50%;
height: 3em;
width: 3em;
}
.hourglass-increment {
position: absolute;
right: 0;
top: 50%;
height: 3em;
width: 3em;
}
.hourglass .top {
position: absolute;
left: 50%;
transform: translate(-50%, 42%);
width: 42%;
height: 36%;
overflow: hidden;
clip-path: url(#hourglassTopMask);
-webkit-clip-path: url(#hourglassTopMask);
}
/* Sand - top */
.hourglass .top::before {
content: '';
position: absolute;
width: 100%;
height: 90%;
bottom: 0;
background: var(--sand-color);
animation: var(--sand-duration) lowerTopSand linear;
animation-fill-mode: forwards;
transform: translateY(var(--translate-top-sand));
}
@keyframes lowerTopSand {
0% {
transform: none;
}
100% {
transform: translateY(100%);
}
}
.hourglass .bottom {
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 50%;
width: 42%;
height: 36%;
overflow: hidden;
clip-path: url(#hourglassBottomMask);
}
/* Bottom sand */
.hourglass .bottom::before {
content: '';
position: absolute;
width: 100%;
height: 72%;
bottom: 0;
background: var(--sand-color);
animation: var(--sand-duration) raiseBottomSand linear;
animation-fill-mode: forwards;
transform: translateY(var(--translate-bottom-sand));
}
@keyframes raiseBottomSand {
0% {
transform: translateY(100%);
}
100% {
transform: none;
}
}
/* Drip through to bottom */
.hourglass .drip {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 10px solid var(--sand-color);
animation: fadeDrip var(--sand-duration) linear;
animation-fill-mode: forwards;
}
@keyframes fadeDrip {
0% {
opacity: 1;
}
70% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.hourglass .drip::before {
content: '';
position: absolute;
left: -1px;
width: 3px;
height: 200px;
background: var(--sand-color);
/* animation: drip 1s linear;
animation-fill-mode: forwards; */
}
@keyframes drip {
from {
transform: translateY(-150px);
opacity: 1;
}
to {
transform: translateY(0);
}
} | styles/hourglass.css | .hourglass {
height: 600px;
width: 350px;
margin: 0;
box-shadow: none;
}
.hourglass .window-content {
background: none;
overflow: hidden;
}
.hourglass .window-header {
border: none;
}
.hourglass .hourglass-canvas{
--sand-color: #EDD0AA;
--sand-duration: 0;
--translate-top-sand: none;
--translate-bottom-sand: 100%;
position: relative;
margin: auto;
display: block;
/* margin-top: 8%;
margin-bottom: 8%; */
width: 100%;
height:100%;
}
.hourglass .hourglass-body {
background-image: url(../images/Hourglass_Empty.png);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
position: relative;
margin: auto;
display: grid;
width: 100%;
height:100%;
align-content: end;
justify-content: center;
color: white;
font-size: 2em;
}
.hourglass-decrement {
position: absolute;
left: 0;
top: 50%;
height: 3em;
width: 3em;
}
.hourglass-increment {
position: absolute;
right: 0;
top: 50%;
height: 3em;
width: 3em;
}
.hourglass .top {
position: absolute;
left: 50%;
transform: translate(-50%, 42%);
width: 42%;
height: 36%;
overflow: hidden;
clip-path: url(#hourglassTopMask);
-webkit-clip-path: url(#hourglassTopMask);
}
/* Sand - top */
.hourglass .top::before {
content: '';
position: absolute;
width: 100%;
height: 90%;
bottom: 0;
background: var(--sand-color);
animation: var(--sand-duration) lowerTopSand linear;
animation-fill-mode: forwards;
transform: translateY(var(--translate-top-sand));
}
@keyframes lowerTopSand {
0% {
transform: none;
}
100% {
transform: translateY(100%);
}
}
.hourglass .bottom {
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 50%;
width: 42%;
height: 36%;
overflow: hidden;
clip-path: url(#hourglassBottomMask);
}
/* Bottom sand */
.hourglass .bottom::before {
content: '';
position: absolute;
width: 100%;
height: 72%;
bottom: 0;
background: var(--sand-color);
animation: var(--sand-duration) raiseBottomSand linear;
animation-fill-mode: forwards;
transform: translateY(var(--translate-bottom-sand));
}
@keyframes raiseBottomSand {
0% {
transform: translateY(100%);
}
100% {
transform: none;
}
}
/* Drip through to bottom */
.hourglass .drip {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 10px solid var(--sand-color);
animation: fadeDrip var(--sand-duration) linear;
animation-fill-mode: forwards;
}
@keyframes fadeDrip {
0% {
opacity: 1;
}
70% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.hourglass .drip::before {
content: '';
position: absolute;
left: -1px;
width: 3px;
height: 200px;
background: var(--sand-color);
/* animation: drip 1s linear;
animation-fill-mode: forwards; */
}
@keyframes drip {
from {
transform: translateY(-150px);
opacity: 1;
}
to {
transform: translateY(0);
}
} | 0.676192 | 0.076684 |
html,
body {
width: 100%;
height: 100%;
}
/*body {
font-family: "Merriweather",'Helvetica Neue',Arial,sans-serif;
}
*/
body {font-family: 'Catamaran', sans-serif;}
hr {
max-width: 50px;
border-color: #fc3158;
border-width: 3px;
}
hr.light {
border-color: #fff;
}
/*links*/
a {
color: #53d769;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
a:hover,
a:focus {
color: #fc3158;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
p {
margin-bottom: 20px;
font-size: 16px;
line-height: 1.5;
}
/*Second section*/
.bg-primary {
background-color: #3dadee;
}
.bg-dark {
color: #fff;
background-color: #222;
}
.text-faded {
color: rgba(255,255,255,.7);
}
.text-left{text-align: left;}
.text-indent{text-indent: 70px;}
section {
padding: 100px 0;
}
aside {
padding: 50px 0;
}
.no-padding {
padding: 0;
}
.navbar-default {
border-color: rgba(34,34,34,.05);
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.navbar-default .navbar-header .navbar-brand {
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
color: #f05f40;
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #eb3812;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
color: #222;
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #f05f40;
}
.navbar-default .nav > li.active>a,
.navbar-default .nav>li.active>a:focus {
color: #fc3158!important;
background-color: transparent;
}
.navbar-default .nav > li.active>a:hover,
.navbar-default .nav>li.active>a:focus:hover {
background-color: transparent;
}
@media(min-width:768px) {
.navbar-default {
border-color: rgba(255,255,255,.3);
background-color: transparent;
}
.navbar-default .navbar-header .navbar-brand {
color: rgba(255,255,255,.7);
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #fff;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
color: rgba(255,255,255,.7);
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #fff;
}
.navbar-default.affix {
border-color: rgba(34,34,34,.05);
background-color: #fff;
}
/*Site name*/
.navbar-default.affix .navbar-header .navbar-brand {
font-size: 14px;
color: #fc3158;
}
/*Site hover*/
.navbar-default.affix .navbar-header .navbar-brand:hover,
.navbar-default.affix .navbar-header .navbar-brand:focus {
color: #3dadee;
}
.navbar-default.affix .nav > li>a,
.navbar-default.affix .nav>li>a:focus {
color: #222;
}
/*Site right nav hover when pulled down*/
.navbar-default.affix .nav > li>a:hover,
.navbar-default.affix .nav>li>a:focus:hover {
color: #53d769;
}
}
header {
position: relative;
width: 100%;
min-height: auto;
text-align: center;
color: #fff;
background-image: linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
), url(../img/adamsf.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
header .header-content {
position: relative;
width: 100%;
padding: 100px 15px;
text-align: center;
}
header .header-content .header-content-inner h1 {
margin-top: 0;
margin-bottom: 0;
text-transform: uppercase;
font-weight: 700;
color: white;
}
header .header-content .header-content-inner hr {
margin: 30px auto;
}
header .header-content .header-content-inner p {
margin-bottom: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(255,255,255,.7);
}
@media(min-width:768px) {
header {
min-height: 100%;
}
header .header-content {
position: absolute;
top: 50%;
padding: 0 50px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
header .header-content .header-content-inner {
margin-right: auto;
margin-left: auto;
max-width: 1000px;
}
header .header-content .header-content-inner p {
margin-right: auto;
margin-left: auto;
max-width: 80%;
font-size: 18px;
}
}
.section-heading {
margin-top: 0;
}
.service-box {
margin: 50px auto 0;
max-width: 400px;
}
@media(min-width:992px) {
.service-box {
margin: 20px auto 0;
}
}
.service-box p {
margin-bottom: 0;
}
.portfolio-box {
display: block;
position: relative;
margin: 0 auto;
max-width: 650px;
}
.portfolio-box .portfolio-box-caption {
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
text-align: center;
color: #fff;
opacity: 0;
background: rgba(43, 222, 115,.9);
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
transform: translateY(-50%);
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
padding: 0 15px;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 18px;
}
.portfolio-box:hover .portfolio-box-caption {
opacity: 1;
}
@media(min-width:768px) {
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
font-size: 16px;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 22px;
}
}
.call-to-action h2 {
margin: 0 auto 20px;
}
/*FA text color
.text-primary {
color: #f05f40;
}
*/
.text-primary {
color: #fc3d39;
}
.no-gutter > [class*=col-] {
padding-right: 0;
padding-left: 0;
}
.btn-default {
border-color: #fff;
color: #222;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
border-color: #ededed;
color: #222;
background-color: #f2f2f2;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
border-color: #fff;
background-color: #fff;
}
.btn-default .badge {
color: #fff;
background-color: #222;
}
.btn-primary {
border-color: #fff;
color: #fff;
background-color: #fc3158;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
/*primary button hover color*/
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
border-color: #E22C4F;
color: #fff;
background-color: #E22C4F;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
border-color: #f05f40;
background-color: #f05f40;
}
.btn-primary .badge {
color: #f05f40;
background-color: #fff;
}
.btn {
border: 0;
border-radius: 300px;
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
}
.btn-xl {
padding: 15px 30px;
}
::-moz-selection {
text-shadow: none;
color: #fff;
background: #222;
}
::selection {
text-shadow: none;
color: #fff;
background: #222;
}
div.fixedFollow {
position: fixed;
bottom: 0;
right: 0;
width: 300px;
text-align: right;
}
img::selection {
color: #fff;
background: 0 0;
}
img::-moz-selection {
color: #fff;
background: 0 0;
}
body {
webkit-tap-highlight-color: #222;
}
.homepage-hero-module {
border-right: none;
border-left: none;
position: relative;
}
.no-video .video-container video,
.touch .video-container video {
display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
display: block !important;
}
.video-container {
position: relative;
bottom: 0%;
left: 0%;
height: 100%;
width: 100%;
overflow: hidden;
background: #000;
}
.video-container .poster img {
width: 100%;
bottom: 0;
position: absolute;
}
.video-container .filter {
z-index: 100;
position: absolute;
background: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
}
.video-container video {
position: relative;
z-index: 0;
bottom: 0;
}
.video-container video.fillWidth {
width: auto;
height: auto;
} | css/creative.css | html,
body {
width: 100%;
height: 100%;
}
/*body {
font-family: "Merriweather",'Helvetica Neue',Arial,sans-serif;
}
*/
body {font-family: 'Catamaran', sans-serif;}
hr {
max-width: 50px;
border-color: #fc3158;
border-width: 3px;
}
hr.light {
border-color: #fff;
}
/*links*/
a {
color: #53d769;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
a:hover,
a:focus {
color: #fc3158;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
p {
margin-bottom: 20px;
font-size: 16px;
line-height: 1.5;
}
/*Second section*/
.bg-primary {
background-color: #3dadee;
}
.bg-dark {
color: #fff;
background-color: #222;
}
.text-faded {
color: rgba(255,255,255,.7);
}
.text-left{text-align: left;}
.text-indent{text-indent: 70px;}
section {
padding: 100px 0;
}
aside {
padding: 50px 0;
}
.no-padding {
padding: 0;
}
.navbar-default {
border-color: rgba(34,34,34,.05);
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.navbar-default .navbar-header .navbar-brand {
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
color: #f05f40;
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #eb3812;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
color: #222;
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #f05f40;
}
.navbar-default .nav > li.active>a,
.navbar-default .nav>li.active>a:focus {
color: #fc3158!important;
background-color: transparent;
}
.navbar-default .nav > li.active>a:hover,
.navbar-default .nav>li.active>a:focus:hover {
background-color: transparent;
}
@media(min-width:768px) {
.navbar-default {
border-color: rgba(255,255,255,.3);
background-color: transparent;
}
.navbar-default .navbar-header .navbar-brand {
color: rgba(255,255,255,.7);
}
.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
color: #fff;
}
.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
color: rgba(255,255,255,.7);
}
.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
color: #fff;
}
.navbar-default.affix {
border-color: rgba(34,34,34,.05);
background-color: #fff;
}
/*Site name*/
.navbar-default.affix .navbar-header .navbar-brand {
font-size: 14px;
color: #fc3158;
}
/*Site hover*/
.navbar-default.affix .navbar-header .navbar-brand:hover,
.navbar-default.affix .navbar-header .navbar-brand:focus {
color: #3dadee;
}
.navbar-default.affix .nav > li>a,
.navbar-default.affix .nav>li>a:focus {
color: #222;
}
/*Site right nav hover when pulled down*/
.navbar-default.affix .nav > li>a:hover,
.navbar-default.affix .nav>li>a:focus:hover {
color: #53d769;
}
}
header {
position: relative;
width: 100%;
min-height: auto;
text-align: center;
color: #fff;
background-image: linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
), url(../img/adamsf.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
header .header-content {
position: relative;
width: 100%;
padding: 100px 15px;
text-align: center;
}
header .header-content .header-content-inner h1 {
margin-top: 0;
margin-bottom: 0;
text-transform: uppercase;
font-weight: 700;
color: white;
}
header .header-content .header-content-inner hr {
margin: 30px auto;
}
header .header-content .header-content-inner p {
margin-bottom: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(255,255,255,.7);
}
@media(min-width:768px) {
header {
min-height: 100%;
}
header .header-content {
position: absolute;
top: 50%;
padding: 0 50px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
header .header-content .header-content-inner {
margin-right: auto;
margin-left: auto;
max-width: 1000px;
}
header .header-content .header-content-inner p {
margin-right: auto;
margin-left: auto;
max-width: 80%;
font-size: 18px;
}
}
.section-heading {
margin-top: 0;
}
.service-box {
margin: 50px auto 0;
max-width: 400px;
}
@media(min-width:992px) {
.service-box {
margin: 20px auto 0;
}
}
.service-box p {
margin-bottom: 0;
}
.portfolio-box {
display: block;
position: relative;
margin: 0 auto;
max-width: 650px;
}
.portfolio-box .portfolio-box-caption {
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
text-align: center;
color: #fff;
opacity: 0;
background: rgba(43, 222, 115,.9);
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
transform: translateY(-50%);
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
padding: 0 15px;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 18px;
}
.portfolio-box:hover .portfolio-box-caption {
opacity: 1;
}
@media(min-width:768px) {
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
font-size: 16px;
}
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
font-size: 22px;
}
}
.call-to-action h2 {
margin: 0 auto 20px;
}
/*FA text color
.text-primary {
color: #f05f40;
}
*/
.text-primary {
color: #fc3d39;
}
.no-gutter > [class*=col-] {
padding-right: 0;
padding-left: 0;
}
.btn-default {
border-color: #fff;
color: #222;
background-color: #fff;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
border-color: #ededed;
color: #222;
background-color: #f2f2f2;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
border-color: #fff;
background-color: #fff;
}
.btn-default .badge {
color: #fff;
background-color: #222;
}
.btn-primary {
border-color: #fff;
color: #fff;
background-color: #fc3158;
-webkit-transition: all .35s;
-moz-transition: all .35s;
transition: all .35s;
}
/*primary button hover color*/
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
border-color: #E22C4F;
color: #fff;
background-color: #E22C4F;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
border-color: #f05f40;
background-color: #f05f40;
}
.btn-primary .badge {
color: #f05f40;
background-color: #fff;
}
.btn {
border: 0;
border-radius: 300px;
text-transform: uppercase;
font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
font-weight: 700;
}
.btn-xl {
padding: 15px 30px;
}
::-moz-selection {
text-shadow: none;
color: #fff;
background: #222;
}
::selection {
text-shadow: none;
color: #fff;
background: #222;
}
div.fixedFollow {
position: fixed;
bottom: 0;
right: 0;
width: 300px;
text-align: right;
}
img::selection {
color: #fff;
background: 0 0;
}
img::-moz-selection {
color: #fff;
background: 0 0;
}
body {
webkit-tap-highlight-color: #222;
}
.homepage-hero-module {
border-right: none;
border-left: none;
position: relative;
}
.no-video .video-container video,
.touch .video-container video {
display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
display: block !important;
}
.video-container {
position: relative;
bottom: 0%;
left: 0%;
height: 100%;
width: 100%;
overflow: hidden;
background: #000;
}
.video-container .poster img {
width: 100%;
bottom: 0;
position: absolute;
}
.video-container .filter {
z-index: 100;
position: absolute;
background: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
}
.video-container video {
position: relative;
z-index: 0;
bottom: 0;
}
.video-container video.fillWidth {
width: auto;
height: auto;
} | 0.432543 | 0.050588 |