Add prettier
This commit is contained in:
parent
b024650eaf
commit
0ae10471d1
|
@ -13,7 +13,7 @@ insert_final_newline = true
|
|||
trim_trailing_whitespace = true
|
||||
max_line_length = 120
|
||||
|
||||
[{.babelrc,package.json,.eslintrc.json}]
|
||||
[{.babelrc,package.json,.eslintrc.json,.prettierrc.json}]
|
||||
indent_size = 2
|
||||
|
||||
[docker/**.conf]
|
||||
|
|
|
@ -145,7 +145,7 @@ yarn check:
|
|||
script:
|
||||
- yarn check
|
||||
|
||||
eslint:
|
||||
yarn lint:
|
||||
<<: *use_yarn
|
||||
image: node:alpine
|
||||
stage: validate
|
||||
|
@ -180,7 +180,7 @@ build-image:
|
|||
- phpstan
|
||||
- composer validate
|
||||
- yarn check
|
||||
- eslint
|
||||
- yarn lint
|
||||
- generate-version
|
||||
dependencies:
|
||||
- generate-version
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"printWidth": 120,
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
This is done by PostCSS + Autoprefixer according to the [`.browserslistrc`](.browserslistrc).
|
||||
* Translations must be abbreviated, for example `form.save`.
|
||||
The `default.po` files contain translations that can be auto-detected using Poedit, `additional.po` contains generated messages like validations.
|
||||
* JavaScript code must pass the ESLint check `yarn lint`.
|
||||
* JavaScript code must pass the checks `yarn lint`.
|
||||
Auto-fixing is supported via `yarn lint:fix`.
|
||||
* Don't put function calls in a template-literal (template-strings).
|
||||
|
||||
|
|
|
@ -9,8 +9,12 @@
|
|||
"build": "NODE_ENV=production yarn build:webpack",
|
||||
"build:webpack": "webpack",
|
||||
"build:watch": "webpack --watch",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint --fix ."
|
||||
"lint": "yarn lint:eslint && yarn lint:prettier",
|
||||
"lint:eslint": "eslint .",
|
||||
"lint:prettier": "prettier --check resources/assets",
|
||||
"lint:fix": "yarn lint:fix:eslint && yarn lint:fix:prettier",
|
||||
"lint:fix:eslint": "eslint --fix .",
|
||||
"lint:fix:prettier": "prettier --write resources/assets"
|
||||
},
|
||||
"dependencies": {
|
||||
"@popperjs/core": "^2.11.6",
|
||||
|
@ -34,6 +38,7 @@
|
|||
"mini-css-extract-plugin": "^2.7.0",
|
||||
"postcss": "^8.4.19",
|
||||
"postcss-loader": "^6.2.1",
|
||||
"prettier": "^2.8.1",
|
||||
"resolve-url-loader": "^5.0.0",
|
||||
"sass": "^1.56.1",
|
||||
"sass-loader": "^12.6.0",
|
||||
|
|
|
@ -22,15 +22,13 @@ ready(() => {
|
|||
// Handle fullscreen button
|
||||
// - Remove some elements from UI
|
||||
// - Add "Public Dashboard" to title
|
||||
document.getElementById('dashboard-fullscreen')
|
||||
?.addEventListener('click', (event) => {
|
||||
event.preventDefault();
|
||||
const removeElementsSelector = '#navbar-collapse-1,.navbar-nav,.navbar-toggler,#footer,#fullscreen-button';
|
||||
document.querySelectorAll(removeElementsSelector).forEach((element) => {
|
||||
element.parentNode.removeChild(element);
|
||||
});
|
||||
|
||||
document.querySelector('.navbar-brand')
|
||||
?.appendChild(document.createTextNode('Dashboard'));
|
||||
document.getElementById('dashboard-fullscreen')?.addEventListener('click', (event) => {
|
||||
event.preventDefault();
|
||||
const removeElementsSelector = '#navbar-collapse-1,.navbar-nav,.navbar-toggler,#footer,#fullscreen-button';
|
||||
document.querySelectorAll(removeElementsSelector).forEach((element) => {
|
||||
element.parentNode.removeChild(element);
|
||||
});
|
||||
|
||||
document.querySelector('.navbar-brand')?.appendChild(document.createTextNode('Dashboard'));
|
||||
});
|
||||
});
|
||||
|
|
|
@ -6,12 +6,11 @@
|
|||
*/
|
||||
export const formatTime = (date) => {
|
||||
if (!date instanceof Date) return;
|
||||
|
||||
const hours = String(date.getHours()).padStart(2, '0');
|
||||
const minutes = String(date.getMinutes()).padStart(2, '0');
|
||||
|
||||
return `${hours}:${minutes}`;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Formats a Date to YYYY-MM-DD, e.g. 2023-05-18
|
||||
|
@ -27,4 +26,4 @@ export const formatDay = (date) => {
|
|||
const day = String(date.getDate()).padStart(2, '0');
|
||||
|
||||
return `${year}-${month}-${day}`;
|
||||
}
|
||||
};
|
||||
|
|
|
@ -8,7 +8,7 @@ import { ready } from './ready';
|
|||
const triggerChange = (element) => {
|
||||
const changeEvent = new Event('change');
|
||||
element.dispatchEvent(changeEvent);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Sets all checkboxes to the wanted state
|
||||
|
@ -164,7 +164,7 @@ ready(() => {
|
|||
theme: 'bootstrap-5',
|
||||
width: '100%',
|
||||
});
|
||||
})
|
||||
});
|
||||
|
||||
/**
|
||||
* Show oauth buttons on welcome title click
|
||||
|
@ -198,7 +198,7 @@ ready(() => {
|
|||
});
|
||||
|
||||
ready(() => {
|
||||
if (typeof (localStorage) === 'undefined') {
|
||||
if (typeof localStorage === 'undefined') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -209,9 +209,7 @@ ready(() => {
|
|||
localStorage.setItem('collapseShiftsFilterSelect', event.type);
|
||||
};
|
||||
|
||||
document.getElementById('collapseShiftsFilterSelect')
|
||||
?.addEventListener('hidden.bs.collapse', onChange);
|
||||
document.getElementById('collapseShiftsFilterSelect')?.addEventListener('hidden.bs.collapse', onChange);
|
||||
|
||||
document.getElementById('collapseShiftsFilterSelect')
|
||||
?.addEventListener('shown.bs.collapse', onChange);
|
||||
document.getElementById('collapseShiftsFilterSelect')?.addEventListener('shown.bs.collapse', onChange);
|
||||
});
|
||||
|
|
|
@ -7,4 +7,4 @@ export const ready = (callback) => {
|
|||
} else {
|
||||
document.addEventListener('DOMContentLoaded', callback);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -9,7 +9,7 @@ const applyStyle = (elements, prop, value) => {
|
|||
elements.forEach((element) => {
|
||||
element.style[prop] = value;
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Enables the fixed headers and time lane for the shift-calendar and datatables
|
||||
|
@ -35,10 +35,7 @@ ready(() => {
|
|||
|
||||
timeLane.style.left = `${left}px`;
|
||||
|
||||
const headersTop = Math.max(
|
||||
0,
|
||||
window.scrollY - top - 13 + topReference.getBoundingClientRect().top
|
||||
);
|
||||
const headersTop = Math.max(0, window.scrollY - top - 13 + topReference.getBoundingClientRect().top);
|
||||
applyStyle(headers, 'top', `${headersTop}px`);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,122 +1,122 @@
|
|||
.barchart {
|
||||
--barchart-padding-left: 50px;
|
||||
--barchart-bar-margin: 2%;
|
||||
--barchart-group-margin: 2%;
|
||||
--barchart-label-font-size: 14px;
|
||||
--barchart-padding-left: 50px;
|
||||
--barchart-bar-margin: 2%;
|
||||
--barchart-group-margin: 2%;
|
||||
--barchart-label-font-size: 14px;
|
||||
|
||||
height: 300px;
|
||||
margin-bottom: map-get($spacers, 3);
|
||||
margin-top: map-get($spacers, 4);
|
||||
height: 300px;
|
||||
margin-bottom: map-get($spacers, 3);
|
||||
margin-top: map-get($spacers, 4);
|
||||
position: relative;
|
||||
// enable printing backgrounds
|
||||
print-color-adjust: exact;
|
||||
|
||||
&-20 {
|
||||
// >= 20 bars
|
||||
--barchart-group-margin: 0.75%;
|
||||
}
|
||||
|
||||
&-40 {
|
||||
// >= 40 bars
|
||||
--barchart-bar-margin: 1px;
|
||||
--barchart-bar-margin: 0.5px;
|
||||
--barchart-group-margin: 0.5%;
|
||||
}
|
||||
|
||||
&-50 {
|
||||
// >= 50 bars
|
||||
--barchart-bar-margin: 0.5px;
|
||||
--barchart-group-margin: 0.2%;
|
||||
|
||||
.barchart-group:nth-child(2n) .barchart-xlabel {
|
||||
// hide every second label
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&-graph-container {
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
left: var(--barchart-padding-left);
|
||||
bottom: 75px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
&-group {
|
||||
align-items: flex-end;
|
||||
border-right: 1px solid $gray-400;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
height: 100%;
|
||||
padding-left: var(--barchart-group-margin);
|
||||
padding-right: var(--barchart-group-margin);
|
||||
position: relative;
|
||||
// enable printing backgrounds
|
||||
print-color-adjust: exact;
|
||||
|
||||
&-20 {
|
||||
// >= 20 bars
|
||||
--barchart-group-margin: .75%;
|
||||
&:first-of-type {
|
||||
border-left: 1px solid $gray-400;
|
||||
}
|
||||
|
||||
&-40 {
|
||||
// >= 40 bars
|
||||
--barchart-bar-margin: 1px;
|
||||
--barchart-bar-margin: .5px;
|
||||
--barchart-group-margin: .5%;
|
||||
&:last-of-type {
|
||||
border-right: 1px solid $gray-400;
|
||||
}
|
||||
}
|
||||
|
||||
&-50 {
|
||||
// >= 50 bars
|
||||
--barchart-bar-margin: .5px;
|
||||
--barchart-group-margin: 0.2%;
|
||||
&-bar {
|
||||
flex-grow: 1;
|
||||
margin-left: var(--barchart-bar-margin);
|
||||
margin-right: var(--barchart-bar-margin);
|
||||
}
|
||||
|
||||
.barchart-group:nth-child(2n) .barchart-xlabel {
|
||||
// hide every second label
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
&-ygraph {
|
||||
background-color: $gray-400;
|
||||
height: 1px;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
&-graph-container {
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
left: var(--barchart-padding-left);
|
||||
bottom: 75px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
&-xlabel {
|
||||
bottom: 0;
|
||||
font-size: var(--barchart-label-font-size);
|
||||
left: 50%;
|
||||
line-height: 1;
|
||||
position: absolute;
|
||||
transform-origin: top right;
|
||||
transform: translateY(100%) translateX(-100%) rotate(-45deg);
|
||||
}
|
||||
|
||||
&-group {
|
||||
align-items: flex-end;
|
||||
border-right: 1px solid $gray-400;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
height: 100%;
|
||||
padding-left: var(--barchart-group-margin);
|
||||
padding-right: var(--barchart-group-margin);
|
||||
position: relative;
|
||||
|
||||
&:first-of-type {
|
||||
border-left: 1px solid $gray-400;
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
border-right: 1px solid $gray-400;
|
||||
}
|
||||
}
|
||||
|
||||
&-bar {
|
||||
flex-grow: 1;
|
||||
margin-left: var(--barchart-bar-margin);
|
||||
margin-right: var(--barchart-bar-margin);
|
||||
}
|
||||
|
||||
&-ygraph {
|
||||
background-color: $gray-400;
|
||||
height: 1px;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
opacity: 1;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
&-xlabel {
|
||||
bottom: 0;
|
||||
font-size: var(--barchart-label-font-size);
|
||||
left: 50%;
|
||||
line-height: 1;
|
||||
position: absolute;
|
||||
transform-origin: top right;
|
||||
transform: translateY(100%) translateX(-100%) rotate(-45deg);
|
||||
}
|
||||
|
||||
&-ylabel {
|
||||
font-size: var(--barchart-label-font-size);
|
||||
left: calc(-1 * var(--barchart-padding-left));
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
transform: translateY(50%);
|
||||
width: 45px;
|
||||
}
|
||||
&-ylabel {
|
||||
font-size: var(--barchart-label-font-size);
|
||||
left: calc(-1 * var(--barchart-padding-left));
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
transform: translateY(50%);
|
||||
width: 45px;
|
||||
}
|
||||
}
|
||||
|
||||
.barchart-legend {
|
||||
margin-bottom: map-get($spacers, 5);
|
||||
padding-left: 50px;
|
||||
// enable printing backgrounds
|
||||
print-color-adjust: exact;
|
||||
margin-bottom: map-get($spacers, 5);
|
||||
padding-left: 50px;
|
||||
// enable printing backgrounds
|
||||
print-color-adjust: exact;
|
||||
|
||||
&-item {
|
||||
align-items: center;
|
||||
border-left-style: solid;
|
||||
border-left-width: 50px;
|
||||
font-size: 14px;
|
||||
display: flex;
|
||||
height: 20px;
|
||||
margin-bottom: 8px;
|
||||
padding-left: 8px;
|
||||
&-item {
|
||||
align-items: center;
|
||||
border-left-style: solid;
|
||||
border-left-width: 50px;
|
||||
font-size: 14px;
|
||||
display: flex;
|
||||
height: 20px;
|
||||
margin-bottom: 8px;
|
||||
padding-left: 8px;
|
||||
|
||||
&:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,61 +1,61 @@
|
|||
// Basic variables
|
||||
@use "sass:map";
|
||||
@use 'sass:map';
|
||||
|
||||
// select 2 variables
|
||||
$link-decoration: none !default;
|
||||
$link-hover-decoration: underline !default;
|
||||
|
||||
$nav-tabs-link-active-color: #fff !default;
|
||||
$nav-tabs-link-active-bg: $primary !default;
|
||||
$nav-tabs-link-active-color: #fff !default;
|
||||
$nav-tabs-link-active-bg: $primary !default;
|
||||
$nav-tabs-link-active-border-color: none !default;
|
||||
|
||||
// Imports
|
||||
@import "~bootstrap/scss/functions";
|
||||
@import "~bootstrap/scss/variables";
|
||||
@import "~bootstrap/scss/maps";
|
||||
@import "~bootstrap/scss/mixins";
|
||||
@import '~bootstrap/scss/functions';
|
||||
@import '~bootstrap/scss/variables';
|
||||
@import '~bootstrap/scss/maps';
|
||||
@import '~bootstrap/scss/mixins';
|
||||
|
||||
$custom-colors: (
|
||||
black: #000
|
||||
black: #000,
|
||||
);
|
||||
|
||||
$theme-colors: map-merge($theme-colors, $custom-colors);
|
||||
|
||||
$form-label-font-weight: $font-weight-bold;
|
||||
|
||||
@import "~bootstrap/scss/utilities";
|
||||
@import '~bootstrap/scss/utilities';
|
||||
|
||||
@import "~bootstrap/scss/root";
|
||||
@import "~bootstrap/scss/reboot";
|
||||
@import "~bootstrap/scss/type";
|
||||
@import "~bootstrap/scss/containers";
|
||||
@import "~bootstrap/scss/grid";
|
||||
@import "~bootstrap/scss/tables";
|
||||
@import "~bootstrap/scss/forms";
|
||||
@import "~bootstrap/scss/buttons";
|
||||
@import "~bootstrap/scss/transitions";
|
||||
@import "~bootstrap/scss/dropdown";
|
||||
@import "~bootstrap/scss/button-group";
|
||||
@import "~bootstrap/scss/nav";
|
||||
@import "~bootstrap/scss/navbar";
|
||||
@import "~bootstrap/scss/card";
|
||||
@import "~bootstrap/scss/pagination";
|
||||
@import "~bootstrap/scss/badge";
|
||||
@import "~bootstrap/scss/alert";
|
||||
@import "~bootstrap/scss/progress";
|
||||
@import "~bootstrap/scss/list-group";
|
||||
@import "~bootstrap/scss/close";
|
||||
@import "~bootstrap/scss/popover";
|
||||
@import '~bootstrap/scss/root';
|
||||
@import '~bootstrap/scss/reboot';
|
||||
@import '~bootstrap/scss/type';
|
||||
@import '~bootstrap/scss/containers';
|
||||
@import '~bootstrap/scss/grid';
|
||||
@import '~bootstrap/scss/tables';
|
||||
@import '~bootstrap/scss/forms';
|
||||
@import '~bootstrap/scss/buttons';
|
||||
@import '~bootstrap/scss/transitions';
|
||||
@import '~bootstrap/scss/dropdown';
|
||||
@import '~bootstrap/scss/button-group';
|
||||
@import '~bootstrap/scss/nav';
|
||||
@import '~bootstrap/scss/navbar';
|
||||
@import '~bootstrap/scss/card';
|
||||
@import '~bootstrap/scss/pagination';
|
||||
@import '~bootstrap/scss/badge';
|
||||
@import '~bootstrap/scss/alert';
|
||||
@import '~bootstrap/scss/progress';
|
||||
@import '~bootstrap/scss/list-group';
|
||||
@import '~bootstrap/scss/close';
|
||||
@import '~bootstrap/scss/popover';
|
||||
|
||||
@import "~bootstrap/scss/helpers";
|
||||
@import '~bootstrap/scss/helpers';
|
||||
|
||||
@import "~bootstrap/scss/utilities/api";
|
||||
@import '~bootstrap/scss/utilities/api';
|
||||
|
||||
@import "~bootstrap-icons/font/bootstrap-icons";
|
||||
@import "~select2/src/scss/core";
|
||||
@import "~select2-bootstrap-5-theme/src/include-all";
|
||||
@import "error";
|
||||
@import "barchart";
|
||||
@import '~bootstrap-icons/font/bootstrap-icons';
|
||||
@import '~select2/src/scss/core';
|
||||
@import '~select2-bootstrap-5-theme/src/include-all';
|
||||
@import 'error';
|
||||
@import 'barchart';
|
||||
|
||||
$navbar-height: 3.125rem;
|
||||
|
||||
|
@ -68,11 +68,11 @@ body {
|
|||
}
|
||||
|
||||
.text-inherit {
|
||||
color: inherit;
|
||||
color: inherit;
|
||||
|
||||
&:hover {
|
||||
color: inherit;
|
||||
}
|
||||
&:hover {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-icon_angel {
|
||||
|
@ -87,11 +87,11 @@ body {
|
|||
}
|
||||
|
||||
.text-light .icon-icon_angel {
|
||||
background-color: map.get($theme-colors, "light");
|
||||
background-color: map.get($theme-colors, 'light');
|
||||
}
|
||||
|
||||
.dark .icon-icon_angel {
|
||||
background-color: map.get($theme-colors, "dark");
|
||||
background-color: map.get($theme-colors, 'dark');
|
||||
}
|
||||
|
||||
a .icon-icon_angel {
|
||||
|
@ -108,11 +108,11 @@ table a > .icon-icon_angel {
|
|||
}
|
||||
|
||||
.nav-item--userhints {
|
||||
margin: -$navbar-padding-y 0;
|
||||
margin: -$navbar-padding-y 0;
|
||||
}
|
||||
|
||||
.popover--userhints .alert:last-of-type {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.table .form-group {
|
||||
|
@ -170,14 +170,14 @@ table a > .icon-icon_angel {
|
|||
|
||||
// prevent dropdown-menu from overflowing the view
|
||||
.dropdown-menu {
|
||||
max-height: calc(100vh - 300px); // 300px: menu offset
|
||||
overflow: auto;
|
||||
max-height: calc(100vh - 300px); // 300px: menu offset
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
@media (min-width: map-get($grid-breakpoints, 'lg')) {
|
||||
.dropdown-menu {
|
||||
max-height: calc(100vh - $navbar-height - 16px); // 16px extra padding
|
||||
}
|
||||
.dropdown-menu {
|
||||
max-height: calc(100vh - $navbar-height - 16px); // 16px extra padding
|
||||
}
|
||||
}
|
||||
|
||||
.selection .checkbox {
|
||||
|
@ -251,7 +251,18 @@ table a > .icon-icon_angel {
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
code {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
@ -281,7 +292,13 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|||
}
|
||||
|
||||
// Reference links
|
||||
h1, h2, h3, h4, h5, h6, .card-header {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.card-header {
|
||||
a.ref-link {
|
||||
display: none;
|
||||
}
|
||||
|
@ -299,16 +316,16 @@ h1, h2, h3, h4, h5, h6, .card-header {
|
|||
|
||||
// Cards
|
||||
.card-body > *:last-child {
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
&.bg-dark {
|
||||
color: map.get($theme-colors, "light");
|
||||
color: map.get($theme-colors, 'light');
|
||||
}
|
||||
|
||||
&.bg-light {
|
||||
color: map.get($theme-colors, "dark");
|
||||
color: map.get($theme-colors, 'dark');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -329,7 +346,7 @@ code {
|
|||
transform: rotate(-5deg);
|
||||
}
|
||||
30% {
|
||||
transform: rotate(5deg) translateY(-2px);;
|
||||
transform: rotate(5deg) translateY(-2px);
|
||||
}
|
||||
40% {
|
||||
transform: rotate(-5deg);
|
||||
|
@ -358,14 +375,14 @@ code {
|
|||
|
||||
@media print {
|
||||
a[href]:after {
|
||||
content: "";
|
||||
content: '';
|
||||
}
|
||||
}
|
||||
|
||||
.conversation {
|
||||
height: 55vh;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.message {
|
||||
|
@ -375,12 +392,12 @@ code {
|
|||
|
||||
/* Hide the arrow up/down buttons rendered by the browser in the input field */
|
||||
/* Chrome, Safari, Edge, Opera */
|
||||
input[type=number]::-webkit-outer-spin-button,
|
||||
input[type=number]::-webkit-inner-spin-button {
|
||||
input[type='number']::-webkit-outer-spin-button,
|
||||
input[type='number']::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
/* Firefox */
|
||||
input[type=number] {
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
$card-border: $value;
|
||||
$card-color: $value;
|
||||
|
||||
@if (contrast-ratio($card-background, $card-color) < $min-contrast-ratio*.7) {
|
||||
@if (contrast-ratio($card-background, $card-color) < $min-contrast-ratio * 0.7) {
|
||||
$card-color: mix($value, color-contrast($card-background), 40%);
|
||||
}
|
||||
|
||||
.card.bg-#{"" + $state} .card-header {
|
||||
.card.bg-#{'' + $state} .card-header {
|
||||
background-color: $card-background;
|
||||
border-color: $card-border;
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
|||
background-color: $card-color !important;
|
||||
}
|
||||
|
||||
.badge.text-#{"" + $state} {
|
||||
.badge.text-#{'' + $state} {
|
||||
color: $card-background !important;
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
|||
color: $card-color !important;
|
||||
}
|
||||
|
||||
.btn-#{"" + $state} {
|
||||
.btn-#{'' + $state} {
|
||||
background-color: $card-background;
|
||||
border-color: $card-border !important;
|
||||
color: $card-color;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
// cyborg_styles
|
||||
|
||||
|
||||
/*
|
||||
The MIT License (MIT)
|
||||
|
||||
|
@ -41,7 +40,6 @@ THE SOFTWARE.
|
|||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
|
||||
|
@ -122,7 +120,6 @@ table,
|
|||
// Indicators =================================================================
|
||||
|
||||
.alert {
|
||||
|
||||
.alert-link,
|
||||
a {
|
||||
color: $alert-warning-text;
|
||||
|
@ -151,8 +148,12 @@ table,
|
|||
// Containers =================================================================
|
||||
|
||||
.jumbotron {
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||
THE SOFTWARE.
|
||||
*/
|
||||
|
||||
@use "sass:math";
|
||||
@use 'sass:math';
|
||||
|
||||
// Cyborg 3.2.0
|
||||
// Variables
|
||||
|
@ -33,23 +33,23 @@ THE SOFTWARE.
|
|||
//== Colors
|
||||
|
||||
//## Gray and brand colors for use across Bootstrap.
|
||||
$gray-darker: #222 !default;
|
||||
$gray-dark: #333 !default;
|
||||
$gray: #555 !default;
|
||||
$gray-light: #999 !default;
|
||||
$gray-darker: #222 !default;
|
||||
$gray-dark: #333 !default;
|
||||
$gray: #555 !default;
|
||||
$gray-light: #999 !default;
|
||||
$gray-lighter: #eee !default;
|
||||
|
||||
$primary: #437aca !default;
|
||||
$success: #99ba00 !default;
|
||||
$info: #0076ba !default;
|
||||
$info: #0076ba !default;
|
||||
$warning: #ffc600 !default;
|
||||
$danger: #d9534f !default;
|
||||
$danger: #d9534f !default;
|
||||
|
||||
//== Scaffolding
|
||||
//
|
||||
//## Settings for some of the most global styles.
|
||||
|
||||
$body-bg: #060606 !default;
|
||||
$body-bg: #060606 !default;
|
||||
$body-color: $gray-light !default;
|
||||
|
||||
//** Global text color on `<body>`.
|
||||
|
@ -57,16 +57,15 @@ $text-color: $gray-light !default;
|
|||
$text-muted: $gray-light !default;
|
||||
|
||||
//** Global textual link color.
|
||||
$link-color: $primary !default;
|
||||
$link-color: $primary !default;
|
||||
//** Link hover color set via `darken()` function.
|
||||
$link-hover-color: $link-color !default;
|
||||
|
||||
|
||||
//== Typography
|
||||
//
|
||||
//## Font, line-height, and color for body text, headings, and more.
|
||||
|
||||
$font-size-base: 1rem !default;
|
||||
$font-size-base: 1rem !default;
|
||||
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
|
||||
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
|
||||
|
||||
|
@ -86,8 +85,7 @@ $line-height-computed: floor(($font-size-base * $line-height-base)) !default; //
|
|||
//** By default, this inherits from the `<body>`.
|
||||
$headings-font-weight: 500 !default;
|
||||
$headings-line-height: 1.1 !default;
|
||||
$headings-color: #fff !default;
|
||||
|
||||
$headings-color: #fff !default;
|
||||
|
||||
//== Components
|
||||
//
|
||||
|
@ -97,36 +95,35 @@ $headings-color: #fff !default;
|
|||
$line-height-large: 1.33 !default;
|
||||
$line-height-small: 1.5 !default;
|
||||
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-large: 6px !default;
|
||||
$border-radius-small: 3px !default;
|
||||
|
||||
//** Global color for active items (e.g., navs or dropdowns).
|
||||
$component-active-color: #fff !default;
|
||||
//** Global background color for active items (e.g., navs or dropdowns).
|
||||
$component-active-bg: $primary !default;
|
||||
$component-active-bg: $primary !default;
|
||||
|
||||
//** Width of the `border` for generating carets that indicator dropdowns.
|
||||
$caret-width-base: 4px !default;
|
||||
$caret-width-base: 4px !default;
|
||||
//** Carets increase slightly in size for larger components.
|
||||
$caret-width-large: 5px !default;
|
||||
|
||||
|
||||
//== Tables
|
||||
//
|
||||
//## Customizes the `.table` component with basic values, each used across all table variations.
|
||||
|
||||
//** Padding for `<th>`s and `<td>`s.
|
||||
$table-cell-padding: 8px !default;
|
||||
$table-cell-padding: 8px !default;
|
||||
//** Padding for cells in `.table-condensed`.
|
||||
$table-condensed-cell-padding: 5px !default;
|
||||
$table-condensed-cell-padding: 5px !default;
|
||||
|
||||
//** Default background color used for all tables.
|
||||
$table-bg: darken($gray-darker, 4%) !default;
|
||||
$table-bg: darken($gray-darker, 4%) !default;
|
||||
//** Background color used for `.table-striped`.
|
||||
$table-bg-accent: darken($table-bg, 6%) !default;
|
||||
//** Background color used for `.table-hover`.
|
||||
$table-bg-hover: $gray-dark !default;
|
||||
$table-bg-hover: $gray-dark !default;
|
||||
$table-bg-active: $table-bg-hover !default;
|
||||
|
||||
//** Border color for table and cell borders.
|
||||
|
@ -137,23 +134,23 @@ $table-border-color: $gray-dark !default;
|
|||
//##
|
||||
|
||||
//** `<input>` background color
|
||||
$input-bg: $gray-darker !default;
|
||||
$input-bg: $gray-darker !default;
|
||||
//** `<input disabled>` background color
|
||||
$input-bg-disabled: $gray-darker !default;
|
||||
|
||||
//** Text color for `<input>`s
|
||||
$input-color: $text-color !default;
|
||||
$input-color: $text-color !default;
|
||||
//** `<input>` border color
|
||||
$input-border-color: $gray-dark !default;
|
||||
$input-border-color: $gray-dark !default;
|
||||
//** `<input>` border radius
|
||||
$input-border-radius: $border-radius-base !default;
|
||||
//** Border color for inputs on focus
|
||||
$input-border-focus: #66afe9 !default;
|
||||
$input-border-focus: #66afe9 !default;
|
||||
|
||||
//** Placeholder text color
|
||||
$input-color-placeholder: $gray-light !default;
|
||||
|
||||
$legend-color: $text-color !default;
|
||||
$legend-color: $text-color !default;
|
||||
$legend-border-color: $gray-dark !default;
|
||||
|
||||
//** Background color for textual input addons
|
||||
|
@ -167,32 +164,31 @@ $form-label-font-weight: bold !default;
|
|||
//
|
||||
//## Dropdown menu container and contents.
|
||||
|
||||
$dropdown-bg: $gray-darker !default;
|
||||
$dropdown-border: rgba(255,255,255,0.1) !default;
|
||||
$dropdown-bg: $gray-darker !default;
|
||||
$dropdown-border: rgba(255, 255, 255, 0.1) !default;
|
||||
$dropdown-fallback-border: #444;
|
||||
$dropdown-divider-bg: rgba(255,255,255,0.1) !default;
|
||||
$dropdown-divider-bg: rgba(255, 255, 255, 0.1) !default;
|
||||
|
||||
//** Active dropdown menu item text color.
|
||||
$dropdown-link-active-color: #fff !default;
|
||||
//** Active dropdown menu item background color.
|
||||
$dropdown-link-active-bg: $component-active-bg !default;
|
||||
$dropdown-link-active-bg: $component-active-bg !default;
|
||||
|
||||
//** Dropdown link text color.
|
||||
$dropdown-link-color: #fff !default;
|
||||
$dropdown-link-color: #fff !default;
|
||||
//** Hover color for dropdown links.
|
||||
$dropdown-link-hover-color: #fff !default;
|
||||
//** Hover background for dropdown links.
|
||||
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
||||
$dropdown-link-hover-bg: $dropdown-link-active-bg !default;
|
||||
|
||||
//** Disabled dropdown menu item background color.
|
||||
$dropdown-link-disabled-color: $text-muted !default;
|
||||
|
||||
//** Text color for headers within dropdown menus.
|
||||
$dropdown-header-color: $text-muted !default;
|
||||
$dropdown-header-color: $text-muted !default;
|
||||
|
||||
//** Deprecated `$dropdown-caret-color` as of v3.1.0
|
||||
$dropdown-caret-color: #000 !default;
|
||||
|
||||
$dropdown-caret-color: #000 !default;
|
||||
|
||||
//-- Z-index master list
|
||||
//
|
||||
|
@ -201,11 +197,10 @@ $dropdown-caret-color: #000 !default;
|
|||
//
|
||||
// Note: These variables are not generated into the Customizer.
|
||||
|
||||
$zindex-navbar: 1000 !default;
|
||||
$zindex-dropdown: 1000 !default;
|
||||
$zindex-popover: 1060 !default;
|
||||
$zindex-navbar-fixed: 1030 !default;
|
||||
|
||||
$zindex-navbar: 1000 !default;
|
||||
$zindex-dropdown: 1000 !default;
|
||||
$zindex-popover: 1060 !default;
|
||||
$zindex-navbar-fixed: 1030 !default;
|
||||
|
||||
//== Media queries breakpoints
|
||||
//
|
||||
|
@ -213,145 +208,140 @@ $zindex-navbar-fixed: 1030 !default;
|
|||
|
||||
// Extra small screen / phone
|
||||
//** Deprecated `$screen-xs` as of v3.0.1
|
||||
$screen-xs: 480px !default;
|
||||
$screen-xs: 480px !default;
|
||||
//** Deprecated `$screen-xs-min` as of v3.2.0
|
||||
$screen-xs-min: $screen-xs !default;
|
||||
$screen-xs-min: $screen-xs !default;
|
||||
//** Deprecated `$screen-phone` as of v3.0.1
|
||||
$screen-phone: $screen-xs-min !default;
|
||||
$screen-phone: $screen-xs-min !default;
|
||||
|
||||
// Small screen / tablet
|
||||
//** Deprecated `$screen-sm` as of v3.0.1
|
||||
$screen-sm: 768px !default;
|
||||
$screen-sm-min: $screen-sm !default;
|
||||
$screen-sm: 768px !default;
|
||||
$screen-sm-min: $screen-sm !default;
|
||||
//** Deprecated `$screen-tablet` as of v3.0.1
|
||||
$screen-tablet: $screen-sm-min !default;
|
||||
$screen-tablet: $screen-sm-min !default;
|
||||
|
||||
// Medium screen / desktop
|
||||
//** Deprecated `$screen-md` as of v3.0.1
|
||||
$screen-md: 992px !default;
|
||||
$screen-md-min: $screen-md !default;
|
||||
$screen-md: 992px !default;
|
||||
$screen-md-min: $screen-md !default;
|
||||
//** Deprecated `$screen-desktop` as of v3.0.1
|
||||
$screen-desktop: $screen-md-min !default;
|
||||
$screen-desktop: $screen-md-min !default;
|
||||
|
||||
// Large screen / wide desktop
|
||||
//** Deprecated `$screen-lg` as of v3.0.1
|
||||
$screen-lg: 1200px !default;
|
||||
$screen-lg-min: $screen-lg !default;
|
||||
$screen-lg: 1200px !default;
|
||||
$screen-lg-min: $screen-lg !default;
|
||||
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
||||
$screen-lg-desktop: $screen-lg-min !default;
|
||||
$screen-lg-desktop: $screen-lg-min !default;
|
||||
|
||||
// So media queries don't overlap when required, provide a maximum
|
||||
$screen-xs-max: ($screen-sm-min - 1) !default;
|
||||
$screen-sm-max: ($screen-md-min - 1) !default;
|
||||
$screen-md-max: ($screen-lg-min - 1) !default;
|
||||
|
||||
$screen-xs-max: ($screen-sm-min - 1) !default;
|
||||
$screen-sm-max: ($screen-md-min - 1) !default;
|
||||
$screen-md-max: ($screen-lg-min - 1) !default;
|
||||
|
||||
//== Grid system
|
||||
//
|
||||
//## Define your custom responsive grid.
|
||||
|
||||
//** Number of columns in the grid.
|
||||
$grid-columns: 12 !default;
|
||||
$grid-columns: 12 !default;
|
||||
//** Padding between columns. Gets divided in half for the left and right.
|
||||
$grid-gutter-width: 30px !default;
|
||||
$grid-gutter-width: 30px !default;
|
||||
// Navbar collapse
|
||||
//** Point at which the navbar becomes uncollapsed.
|
||||
$grid-float-breakpoint: $screen-sm-min !default;
|
||||
$grid-float-breakpoint: $screen-sm-min !default;
|
||||
//** Point at which the navbar begins collapsing.
|
||||
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
||||
|
||||
|
||||
//== Container sizes
|
||||
//
|
||||
//## Define the maximum width of `.container` for different screen sizes.
|
||||
|
||||
// Small screen / tablet
|
||||
$container-tablet: ((720px + $grid-gutter-width)) !default;
|
||||
$container-tablet: ((720px + $grid-gutter-width)) !default;
|
||||
//** For `$screen-sm-min` and up.
|
||||
$container-sm: $container-tablet !default;
|
||||
$container-sm: $container-tablet !default;
|
||||
|
||||
// Medium screen / desktop
|
||||
$container-desktop: ((940px + $grid-gutter-width)) !default;
|
||||
$container-desktop: ((940px + $grid-gutter-width)) !default;
|
||||
//** For `$screen-md-min` and up.
|
||||
$container-md: $container-desktop !default;
|
||||
$container-md: $container-desktop !default;
|
||||
|
||||
// Large screen / wide desktop
|
||||
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
||||
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
||||
//** For `$screen-lg-min` and up.
|
||||
$container-lg: $container-large-desktop !default;
|
||||
|
||||
$container-lg: $container-large-desktop !default;
|
||||
|
||||
//== Navbar
|
||||
//
|
||||
//##
|
||||
|
||||
// Basics of a navbar
|
||||
$navbar-height: 3.125rem !default;
|
||||
$navbar-margin-bottom: $line-height-computed !default;
|
||||
$navbar-border-radius: $border-radius-base !default;
|
||||
$navbar-padding-horizontal: floor(math.div($grid-gutter-width, 2)) !default;
|
||||
$navbar-padding-vertical: math.div($navbar-height - $line-height-computed, 2) !default;
|
||||
$navbar-height: 3.125rem !default;
|
||||
$navbar-margin-bottom: $line-height-computed !default;
|
||||
$navbar-border-radius: $border-radius-base !default;
|
||||
$navbar-padding-horizontal: floor(math.div($grid-gutter-width, 2)) !default;
|
||||
$navbar-padding-vertical: math.div($navbar-height - $line-height-computed, 2) !default;
|
||||
$navbar-collapse-max-height: 340px !default;
|
||||
|
||||
$navbar-default-color: $text-color !default;
|
||||
$navbar-default-bg: $body-bg !default;
|
||||
$navbar-default-color: $text-color !default;
|
||||
$navbar-default-bg: $body-bg !default;
|
||||
$navbar-default-border: $gray-dark !default;
|
||||
|
||||
// Navbar links
|
||||
$navbar-default-link-color: $text-color !default;
|
||||
$navbar-default-link-hover-color: #fff !default;
|
||||
$navbar-default-link-hover-bg: transparent !default;
|
||||
$navbar-default-link-active-color: #fff !default;
|
||||
$navbar-default-link-active-bg: transparent !default;
|
||||
$navbar-default-link-color: $text-color !default;
|
||||
$navbar-default-link-hover-color: #fff !default;
|
||||
$navbar-default-link-hover-bg: transparent !default;
|
||||
$navbar-default-link-active-color: #fff !default;
|
||||
$navbar-default-link-active-bg: transparent !default;
|
||||
$navbar-default-link-disabled-color: $gray-light !default;
|
||||
$navbar-default-link-disabled-bg: transparent !default;
|
||||
$navbar-default-link-disabled-bg: transparent !default;
|
||||
|
||||
// Navbar brand label
|
||||
$navbar-default-brand-color: #fff !default;
|
||||
$navbar-default-brand-color: #fff !default;
|
||||
$navbar-default-brand-hover-color: #fff !default;
|
||||
$navbar-default-brand-hover-bg: transparent !default;
|
||||
$navbar-default-brand-hover-bg: transparent !default;
|
||||
|
||||
// Navbar toggle
|
||||
$navbar-default-toggle-hover-bg: $gray-dark !default;
|
||||
$navbar-default-toggle-icon-bar-bg: #ccc !default;
|
||||
$navbar-default-toggle-hover-bg: $gray-dark !default;
|
||||
$navbar-default-toggle-icon-bar-bg: #ccc !default;
|
||||
$navbar-default-toggle-border-color: $gray-dark !default;
|
||||
|
||||
|
||||
// Inverted navbar
|
||||
// Reset inverted navbar basics
|
||||
$navbar-inverse-color: $gray-light !default;
|
||||
$navbar-inverse-bg: $gray-darker !default;
|
||||
$navbar-inverse-color: $gray-light !default;
|
||||
$navbar-inverse-bg: $gray-darker !default;
|
||||
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
|
||||
|
||||
// Inverted navbar links
|
||||
$navbar-inverse-link-color: $gray-light !default;
|
||||
$navbar-inverse-link-hover-color: #fff !default;
|
||||
$navbar-inverse-link-hover-bg: transparent !default;
|
||||
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
||||
$navbar-inverse-link-active-bg: transparent !default;
|
||||
$navbar-inverse-link-color: $gray-light !default;
|
||||
$navbar-inverse-link-hover-color: #fff !default;
|
||||
$navbar-inverse-link-hover-bg: transparent !default;
|
||||
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
||||
$navbar-inverse-link-active-bg: transparent !default;
|
||||
$navbar-inverse-link-disabled-color: #aaa !default;
|
||||
$navbar-inverse-link-disabled-bg: transparent !default;
|
||||
$navbar-inverse-link-disabled-bg: transparent !default;
|
||||
|
||||
// Inverted navbar brand label
|
||||
$navbar-inverse-brand-color: #fff !default;
|
||||
$navbar-inverse-brand-color: #fff !default;
|
||||
$navbar-inverse-brand-hover-color: #fff !default;
|
||||
$navbar-inverse-brand-hover-bg: transparent !default;
|
||||
$navbar-inverse-brand-hover-bg: transparent !default;
|
||||
|
||||
// Inverted navbar toggle
|
||||
$navbar-inverse-toggle-hover-bg: #333 !default;
|
||||
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
||||
$navbar-inverse-toggle-hover-bg: #333 !default;
|
||||
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
||||
$navbar-inverse-toggle-border-color: #333 !default;
|
||||
|
||||
|
||||
//== Navs
|
||||
//
|
||||
//##
|
||||
|
||||
//=== Shared nav styles
|
||||
$nav-link-padding: 10px 15px !default;
|
||||
$nav-link-padding: 10px 15px !default;
|
||||
$nav-link-hover-bg: $gray-darker !default;
|
||||
|
||||
$nav-disabled-link-color: $gray-light !default;
|
||||
$nav-disabled-link-color: $gray-light !default;
|
||||
$nav-disabled-link-hover-color: $gray-light !default;
|
||||
|
||||
$nav-open-link-hover-color: $gray-darker !default;
|
||||
|
@ -361,231 +351,219 @@ $nav-tabs-border-color: $gray-dark !default;
|
|||
|
||||
$nav-tabs-link-hover-border-color: transparent !default;
|
||||
|
||||
$nav-tabs-active-link-hover-bg: $primary !default;
|
||||
$nav-tabs-active-link-hover-color: #fff !default;
|
||||
$nav-tabs-active-link-hover-bg: $primary !default;
|
||||
$nav-tabs-active-link-hover-color: #fff !default;
|
||||
$nav-tabs-active-link-hover-border-color: $gray-dark !default;
|
||||
|
||||
$nav-tabs-justified-link-border-color: #ddd !default;
|
||||
$nav-tabs-justified-link-border-color: #ddd !default;
|
||||
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
||||
|
||||
//== Pills
|
||||
$nav-pills-border-radius: $border-radius-base !default;
|
||||
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
||||
$nav-pills-border-radius: $border-radius-base !default;
|
||||
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
||||
$nav-pills-active-link-hover-color: $component-active-color !default;
|
||||
|
||||
|
||||
//== Pagination
|
||||
//
|
||||
//##
|
||||
|
||||
$pagination-color: #fff !default;
|
||||
$pagination-bg: $gray-darker !default;
|
||||
$pagination-border: $gray-dark !default;
|
||||
$pagination-color: #fff !default;
|
||||
$pagination-bg: $gray-darker !default;
|
||||
$pagination-border: $gray-dark !default;
|
||||
|
||||
$pagination-hover-color: #000 !default;
|
||||
$pagination-hover-bg: $component-active-bg !default;
|
||||
$pagination-hover-border: transparent !default;
|
||||
$pagination-hover-color: #000 !default;
|
||||
$pagination-hover-bg: $component-active-bg !default;
|
||||
$pagination-hover-border: transparent !default;
|
||||
|
||||
$pagination-active-color: #000 !default;
|
||||
$pagination-active-bg: $primary !default;
|
||||
$pagination-active-border: transparent !default;
|
||||
$pagination-active-color: #000 !default;
|
||||
$pagination-active-bg: $primary !default;
|
||||
$pagination-active-border: transparent !default;
|
||||
|
||||
$pagination-disabled-color: $gray-light !default;
|
||||
$pagination-disabled-bg: $gray-darker !default;
|
||||
$pagination-disabled-color: $gray-light !default;
|
||||
$pagination-disabled-bg: $gray-darker !default;
|
||||
$pagination-disabled-border: $gray-dark !default;
|
||||
|
||||
|
||||
//== Pager
|
||||
//
|
||||
//##
|
||||
|
||||
$pager-bg: $pagination-bg !default;
|
||||
$pager-border: $pagination-border !default;
|
||||
$pager-border-radius: 15px !default;
|
||||
$pager-bg: $pagination-bg !default;
|
||||
$pager-border: $pagination-border !default;
|
||||
$pager-border-radius: 15px !default;
|
||||
|
||||
$pager-hover-bg: $pagination-hover-bg !default;
|
||||
$pager-hover-bg: $pagination-hover-bg !default;
|
||||
|
||||
$pager-active-bg: $pagination-active-bg !default;
|
||||
$pager-active-color: $pagination-active-color !default;
|
||||
$pager-active-bg: $pagination-active-bg !default;
|
||||
$pager-active-color: $pagination-active-color !default;
|
||||
|
||||
$pager-disabled-color: $gray-light !default;
|
||||
|
||||
|
||||
//== Jumbotron
|
||||
//
|
||||
//##
|
||||
|
||||
$jumbotron-padding: 30px !default;
|
||||
$jumbotron-color: inherit !default;
|
||||
$jumbotron-bg: darken($gray-darker, 5%) !default;
|
||||
$jumbotron-padding: 30px !default;
|
||||
$jumbotron-color: inherit !default;
|
||||
$jumbotron-bg: darken($gray-darker, 5%) !default;
|
||||
$jumbotron-heading-color: inherit !default;
|
||||
$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
|
||||
|
||||
$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
|
||||
|
||||
//== Form states and alerts
|
||||
//
|
||||
//## Define colors for form feedback states and, by default, alerts.
|
||||
|
||||
$state-success-text: $success !default;
|
||||
$state-success-bg: darken($success, 40%) !default;
|
||||
$state-success-text: $success !default;
|
||||
$state-success-bg: darken($success, 40%) !default;
|
||||
$state-success-border: $success !default;
|
||||
|
||||
$state-info-text: $info !default;
|
||||
$state-info-bg: darken($info, 40%) !default;
|
||||
$state-info-border: $info !default;
|
||||
$state-info-text: $info !default;
|
||||
$state-info-bg: darken($info, 40%) !default;
|
||||
$state-info-border: $info !default;
|
||||
|
||||
$state-warning-text: $warning !default;
|
||||
$state-warning-bg: darken($warning, 40%) !default;
|
||||
$state-warning-text: $warning !default;
|
||||
$state-warning-bg: darken($warning, 40%) !default;
|
||||
$state-warning-border: $warning !default;
|
||||
|
||||
$state-danger-text: $danger !default;
|
||||
$state-danger-bg: darken($danger, 40%) !default;
|
||||
$state-danger-border: $danger !default;
|
||||
|
||||
$state-danger-text: $danger !default;
|
||||
$state-danger-bg: darken($danger, 40%) !default;
|
||||
$state-danger-border: $danger !default;
|
||||
|
||||
//== Popovers
|
||||
|
||||
$popover-bg: lighten($body-bg, 10%) !default;
|
||||
$popover-max-width: 276px !default;
|
||||
$popover-border-color: rgba(0,0,0,.2) !default;
|
||||
$popover-bg: lighten($body-bg, 10%) !default;
|
||||
$popover-max-width: 276px !default;
|
||||
$popover-border-color: rgba(0, 0, 0, 0.2) !default;
|
||||
$popover-fallback-border-color: #999 !default !default;
|
||||
|
||||
//** Popover title background color
|
||||
$popover-title-bg: darken($popover-bg, 3%) !default;
|
||||
$popover-title-bg: darken($popover-bg, 3%) !default;
|
||||
|
||||
//** Popover arrow width
|
||||
$popover-arrow-width: 10px !default;
|
||||
$popover-arrow-width: 10px !default;
|
||||
//** Popover arrow color
|
||||
$popover-arrow-color: $popover-bg !default;
|
||||
$popover-arrow-color: $popover-bg !default;
|
||||
|
||||
//** Popover outer arrow width
|
||||
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
||||
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
||||
//** Popover outer arrow color
|
||||
$popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
|
||||
$popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
|
||||
//** Popover outer arrow fallback color
|
||||
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
||||
|
||||
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
||||
|
||||
//== Labels
|
||||
//
|
||||
//##
|
||||
|
||||
$label-primary-bg: $primary !default;
|
||||
$label-success-bg: $success !default;
|
||||
$label-info-bg: $info !default;
|
||||
$label-warning-bg: $warning !default;
|
||||
$label-danger-bg: $danger !default;
|
||||
$label-primary-bg: $primary !default;
|
||||
$label-success-bg: $success !default;
|
||||
$label-info-bg: $info !default;
|
||||
$label-warning-bg: $warning !default;
|
||||
$label-danger-bg: $danger !default;
|
||||
|
||||
//** Default label text color
|
||||
$label-color: #fff !default;
|
||||
$label-color: #fff !default;
|
||||
//** Default text color of a linked label
|
||||
$label-link-hover-color: #fff !default;
|
||||
|
||||
$label-link-hover-color: #fff !default;
|
||||
|
||||
//== Alerts
|
||||
//
|
||||
//## Define alert colors, border radius, and padding.
|
||||
|
||||
$alert-padding: 15px !default;
|
||||
$alert-border-radius: $border-radius-base !default;
|
||||
$alert-padding: 15px !default;
|
||||
$alert-border-radius: $border-radius-base !default;
|
||||
$alert-link-font-weight: bold !default;
|
||||
|
||||
$alert-success-bg: $state-success-bg !default;
|
||||
$alert-success-text: $state-success-text !default;
|
||||
$alert-success-border: $state-success-border !default;
|
||||
$alert-success-bg: $state-success-bg !default;
|
||||
$alert-success-text: $state-success-text !default;
|
||||
$alert-success-border: $state-success-border !default;
|
||||
|
||||
$alert-info-bg: $state-info-bg !default;
|
||||
$alert-info-text: $state-info-text !default;
|
||||
$alert-info-border: $state-info-border !default;
|
||||
$alert-info-bg: $state-info-bg !default;
|
||||
$alert-info-text: $state-info-text !default;
|
||||
$alert-info-border: $state-info-border !default;
|
||||
|
||||
$alert-warning-bg: $state-warning-bg !default;
|
||||
$alert-warning-text: $state-warning-text !default;
|
||||
$alert-warning-border: $state-warning-border !default;
|
||||
|
||||
$alert-danger-bg: $state-danger-bg !default;
|
||||
$alert-danger-text: $state-danger-text !default;
|
||||
$alert-danger-border: $state-danger-border !default;
|
||||
$alert-warning-bg: $state-warning-bg !default;
|
||||
$alert-warning-text: $state-warning-text !default;
|
||||
$alert-warning-border: $state-warning-border !default;
|
||||
|
||||
$alert-danger-bg: $state-danger-bg !default;
|
||||
$alert-danger-text: $state-danger-text !default;
|
||||
$alert-danger-border: $state-danger-border !default;
|
||||
|
||||
//== Progress bars
|
||||
//
|
||||
//##
|
||||
|
||||
//** Background color of the whole progress component
|
||||
$progress-bg: $gray-darker !default;
|
||||
$progress-bg: $gray-darker !default;
|
||||
//** Progress bar text color
|
||||
$progress-bar-color: #fff !default;
|
||||
$progress-bar-color: #fff !default;
|
||||
|
||||
//** Default progress bar color
|
||||
$progress-bar-bg: $primary !default;
|
||||
$progress-bar-bg: $primary !default;
|
||||
//** Success progress bar color
|
||||
$progress-bar-success-bg: $success !default;
|
||||
$progress-bar-success-bg: $success !default;
|
||||
//** Warning progress bar color
|
||||
$progress-bar-warning-bg: $warning !default;
|
||||
$progress-bar-warning-bg: $warning !default;
|
||||
//** Danger progress bar color
|
||||
$progress-bar-danger-bg: $danger !default;
|
||||
$progress-bar-danger-bg: $danger !default;
|
||||
//** Info progress bar color
|
||||
$progress-bar-info-bg: $info !default;
|
||||
|
||||
$progress-bar-info-bg: $info !default;
|
||||
|
||||
//== List group
|
||||
//
|
||||
//##
|
||||
|
||||
//** Background color on `.list-group-item`
|
||||
$list-group-bg: $gray-darker !default;
|
||||
$list-group-bg: $gray-darker !default;
|
||||
//** `.list-group-item` border color
|
||||
$list-group-border: $gray-dark !default;
|
||||
$list-group-border: $gray-dark !default;
|
||||
//** List group border radius
|
||||
$list-group-border-radius: $border-radius-base !default;
|
||||
$list-group-border-radius: $border-radius-base !default;
|
||||
|
||||
//** Background color of single list items on hover
|
||||
$list-group-hover-bg: lighten($list-group-bg, 15%) !default;
|
||||
$list-group-hover-bg: lighten($list-group-bg, 15%) !default;
|
||||
//** Text color of active list items
|
||||
$list-group-active-color: $component-active-color !default;
|
||||
$list-group-active-color: $component-active-color !default;
|
||||
//** Background color of active list items
|
||||
$list-group-active-bg: $component-active-bg !default;
|
||||
$list-group-active-bg: $component-active-bg !default;
|
||||
//** Border color of active list elements
|
||||
$list-group-active-border: $list-group-active-bg !default;
|
||||
$list-group-active-border: $list-group-active-bg !default;
|
||||
//** Text color for content within active list items
|
||||
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
||||
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
||||
|
||||
//** Text color of disabled list items
|
||||
$list-group-disabled-color: $gray-light !default;
|
||||
$list-group-disabled-color: $gray-light !default;
|
||||
//** Background color of disabled list items
|
||||
$list-group-disabled-bg: $gray-lighter !default;
|
||||
$list-group-disabled-bg: $gray-lighter !default;
|
||||
//** Text color for content within disabled list items
|
||||
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
||||
|
||||
$list-group-link-color: $text-color !default;
|
||||
$list-group-link-hover-color: $list-group-link-color !default;
|
||||
$list-group-link-color: $text-color !default;
|
||||
$list-group-link-hover-color: $list-group-link-color !default;
|
||||
$list-group-link-heading-color: #fff !default;
|
||||
|
||||
|
||||
//== Close
|
||||
//
|
||||
//##
|
||||
|
||||
$close-font-weight: bold !default;
|
||||
$close-color: #000 !default;
|
||||
$close-text-shadow: 0 1px 0 #fff !default;
|
||||
|
||||
$close-font-weight: bold !default;
|
||||
$close-color: #000 !default;
|
||||
$close-text-shadow: 0 1px 0 #fff !default;
|
||||
|
||||
//== Code
|
||||
//
|
||||
//##
|
||||
|
||||
$code-color: #c7254e !default;
|
||||
$code-bg: #f9f2f4 !default;
|
||||
$code-color: #c7254e !default;
|
||||
$code-bg: #f9f2f4 !default;
|
||||
|
||||
$kbd-color: #fff !default;
|
||||
$kbd-bg: #333 !default;
|
||||
|
||||
$pre-bg: #f5f5f5 !default;
|
||||
$pre-color: $gray-dark !default;
|
||||
$pre-border-color: #ccc !default;
|
||||
$pre-scrollable-max-height: 340px !default;
|
||||
$kbd-color: #fff !default;
|
||||
$kbd-bg: #333 !default;
|
||||
|
||||
$pre-bg: #f5f5f5 !default;
|
||||
$pre-color: $gray-dark !default;
|
||||
$pre-border-color: #ccc !default;
|
||||
$pre-scrollable-max-height: 340px !default;
|
||||
|
||||
//== Type
|
||||
//
|
||||
|
@ -595,20 +573,20 @@ $pre-scrollable-max-height: 340px !default;
|
|||
$component-offset-horizontal: 180px !default;
|
||||
|
||||
//** Abbreviations and acronyms border color
|
||||
$abbr-border-color: $gray-light !default;
|
||||
$abbr-border-color: $gray-light !default;
|
||||
//** Headings small color
|
||||
$headings-small-color: $primary !default;
|
||||
$headings-small-color: $primary !default;
|
||||
//** Blockquote small color
|
||||
$blockquote-small-color: $gray !default;
|
||||
$blockquote-small-color: $gray !default;
|
||||
//** Blockquote font size
|
||||
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
||||
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
||||
//** Blockquote border color
|
||||
$blockquote-border-color: $gray-dark !default;
|
||||
$blockquote-border-color: $gray-dark !default;
|
||||
//** Page header border color
|
||||
$page-header-border-color: $gray-dark !default;
|
||||
$page-header-border-color: $gray-dark !default;
|
||||
//** Width of horizontal description list titles
|
||||
$dl-horizontal-offset: $component-offset-horizontal !default;
|
||||
$dl-horizontal-offset: $component-offset-horizontal !default;
|
||||
//** Horizontal line color.
|
||||
$hr-border: $gray-dark !default;
|
||||
$hr-border: $gray-dark !default;
|
||||
|
||||
@import "base.scss";
|
||||
@import 'base.scss';
|
||||
|
|
|
@ -3,4 +3,4 @@ $input-group-addon-color: #222;
|
|||
$input-disabled-bg: #111;
|
||||
$alert-bg-scale: 70%;
|
||||
$secondary: #222;
|
||||
$table-striped-bg: rgba(#fff, .05);
|
||||
$table-striped-bg: rgba(#fff, 0.05);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
opacity: 0.3;
|
||||
}
|
||||
to {
|
||||
opacity: 1.0;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.pulse {
|
||||
|
|
|
@ -1,16 +1,26 @@
|
|||
// light theme
|
||||
@import "light";
|
||||
@import 'light';
|
||||
|
||||
$primary: #337ab7;
|
||||
$light: #f5f5f5;
|
||||
|
||||
@import "base.scss";
|
||||
@import 'base.scss';
|
||||
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-primary,
|
||||
&.bg-success,
|
||||
&.bg-danger {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,59 +1,56 @@
|
|||
// Variables
|
||||
// --------------------------------------------------
|
||||
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-darker: #222;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-darker: #222;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$primary: #437aca;
|
||||
$primary: #437aca;
|
||||
$secondary: #424242;
|
||||
$success: #00c960;
|
||||
$info: #3dbddf;
|
||||
$warning: #f6b345;
|
||||
$danger: #e93a44;
|
||||
$success: #00c960;
|
||||
$info: #3dbddf;
|
||||
$warning: #f6b345;
|
||||
$danger: #e93a44;
|
||||
|
||||
$text-muted: $gray-light;
|
||||
|
||||
$btn-link-disabled-color: $gray-light;
|
||||
|
||||
$btn-link-disabled-color: $gray-light;
|
||||
|
||||
//== changed Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: lighten($gray-lighter,15%);
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: lighten($gray-lighter, 15%);
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== changed Pagination
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
$pagination-active-color: #fff;
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
$pagination-active-color: #fff;
|
||||
|
||||
//== changed Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
|
||||
$state-warning-text: #fff;
|
||||
$state-warning-bg: $warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
$state-warning-text: #fff;
|
||||
$state-warning-bg: $warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
code {
|
||||
background-color: $state-info-bg;
|
||||
|
@ -69,17 +66,28 @@ $alert-color-scale: 0%;
|
|||
|
||||
.text-danger,
|
||||
.text-info {
|
||||
color: #fff !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
|
||||
// dark
|
||||
@import "cyborg_variables";
|
||||
@import "cyborg_styles";
|
||||
@import 'cyborg_variables';
|
||||
@import 'cyborg_styles';
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning,
|
||||
&.bg-info {
|
||||
color: #000;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,24 +2,24 @@
|
|||
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: #99ba00;
|
||||
$primary: $brand-primary;
|
||||
$primary: $brand-primary;
|
||||
|
||||
$text-muted: $primary;
|
||||
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// Specials for cccamp19 design
|
||||
@import "card-glow";
|
||||
@import 'card-glow';
|
||||
|
||||
.navbar-brand {
|
||||
.icon-icon_angel {
|
||||
|
@ -29,13 +29,8 @@ $text-muted: $primary;
|
|||
strong {
|
||||
font-weight: normal;
|
||||
color: $brand-primary;
|
||||
text-shadow:
|
||||
0 0 10px $brand-primary,
|
||||
0 0 20px $brand-primary,
|
||||
0 0 30px $brand-primary,
|
||||
0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary,
|
||||
0 0 80px $brand-primary;
|
||||
text-shadow: 0 0 10px $brand-primary, 0 0 20px $brand-primary, 0 0 30px $brand-primary, 0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary, 0 0 80px $brand-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -57,8 +52,19 @@ h1 {
|
|||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,82 +1,78 @@
|
|||
// high contrast
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: #72abfa;
|
||||
$primary: $brand-primary;
|
||||
$primary: $brand-primary;
|
||||
$brand-success: #5cb85c;
|
||||
$success: $brand-success;
|
||||
$brand-info: #5bc0de;
|
||||
$info: $brand-info;
|
||||
$brand-danger: #d9534f;
|
||||
$danger: $brand-danger;
|
||||
$success: $brand-success;
|
||||
$brand-info: #5bc0de;
|
||||
$info: $brand-info;
|
||||
$brand-danger: #d9534f;
|
||||
$danger: $brand-danger;
|
||||
$brand-warning: #f0ad4e;
|
||||
$warning: $brand-warning;
|
||||
$warning: $brand-warning;
|
||||
|
||||
//== Scaffolding
|
||||
|
||||
$body-bg: #000;
|
||||
$body-color: #fff;
|
||||
$body-bg: #000;
|
||||
$body-color: #fff;
|
||||
|
||||
//== Buttons
|
||||
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-color: #000;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-color: #000;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-color: #000;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
$btn-success-color: #000;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-color: #000;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
$btn-info-color: #000;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-color: #000;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-color: #000;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
$btn-warning-color: #000;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-color: #000;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
//== Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
//== Labels
|
||||
|
||||
$label-default-bg: lighten($btn-default-bg, 20%);
|
||||
$label-color: #000;
|
||||
$label-link-hover-color: #000;
|
||||
|
||||
$label-default-bg: lighten($btn-default-bg, 20%);
|
||||
$label-color: #000;
|
||||
$label-link-hover-color: #000;
|
||||
|
||||
//== Type
|
||||
|
||||
$text-muted: $gray-lighter;
|
||||
$abbr-border-color: $gray-lighter;
|
||||
$headings-small-color: $gray-lighter;
|
||||
$text-muted: $gray-lighter;
|
||||
$abbr-border-color: $gray-lighter;
|
||||
$headings-small-color: $gray-lighter;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// Typography =================================================================
|
||||
|
||||
|
|
|
@ -1,79 +1,78 @@
|
|||
// 36c3
|
||||
|
||||
//== Colors
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #D0D0CE;
|
||||
$black: #000;
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #d0d0ce;
|
||||
$black: #000;
|
||||
|
||||
$brand-primary: #fe5000;
|
||||
$primary: $brand-primary;
|
||||
$primary: $brand-primary;
|
||||
$brand-success: #00bb31;
|
||||
$success: $brand-success;
|
||||
$brand-info: #5bc0de;
|
||||
$info: $brand-info;
|
||||
$success: $brand-success;
|
||||
$brand-info: #5bc0de;
|
||||
$info: $brand-info;
|
||||
$brand-warning: #febb00;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #bb3100;
|
||||
$danger: $brand-danger;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #bb3100;
|
||||
$danger: $brand-danger;
|
||||
|
||||
//== Scaffolding
|
||||
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
|
||||
//== Buttons
|
||||
|
||||
$btn-color: $gray-lighter;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: $gray-lighter;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-color: $black;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-color: $black;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-color: $black;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
$btn-success-color: $black;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-color: $black;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
$btn-info-color: $black;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-color: $black;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
$btn-warning-color: $black;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
//== Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-color: $black;
|
||||
$pagination-hover-color: $black;
|
||||
$pagination-active-color: $black;
|
||||
$pagination-color: $black;
|
||||
$pagination-hover-color: $black;
|
||||
$pagination-active-color: $black;
|
||||
|
||||
//== Labels
|
||||
|
||||
$label-color: #000;
|
||||
$label-link-hover-color: $gray-dark;
|
||||
$label-color: #000;
|
||||
$label-link-hover-color: $gray-dark;
|
||||
|
||||
//== Badges
|
||||
|
||||
$badge-color: $black;
|
||||
$badge-color: $black;
|
||||
|
||||
//== Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
// Forms ======================================================================
|
||||
|
||||
.input-group-addon {
|
||||
|
|
|
@ -1,118 +1,116 @@
|
|||
// rc3 violet
|
||||
|
||||
//== Colors
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
$gray-darker: #100e23;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
$gray-darker: #100e23;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
|
||||
$brand-primary: #6800e7;
|
||||
$primary: $brand-primary;
|
||||
$primary: $brand-primary;
|
||||
$brand-success: #05b9ec;
|
||||
$secondary: #3a327e;
|
||||
$success: $brand-success;
|
||||
$brand-info: #670295;
|
||||
$info: $brand-info;
|
||||
$secondary: #3a327e;
|
||||
$success: $brand-success;
|
||||
$brand-info: #670295;
|
||||
$info: $brand-info;
|
||||
$brand-warning: #fff900;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #b239ff;
|
||||
$danger: $brand-danger;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #b239ff;
|
||||
$danger: $brand-danger;
|
||||
|
||||
//== Scaffolding
|
||||
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
$link-color: #fff;
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
$link-color: #fff;
|
||||
|
||||
//== Typography
|
||||
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
src: url('theme13/Montserrat-Regular.woff2') format('woff2'),
|
||||
url('theme13/Montserrat-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
font-family: 'Montserrat';
|
||||
src: url('theme13/Montserrat-Regular.woff2') format('woff2'), url('theme13/Montserrat-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Orbitron';
|
||||
src: url('theme13/Orbitron-Regular.woff2') format('woff2'),
|
||||
url('theme13/Orbitron-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
font-family: 'Orbitron';
|
||||
src: url('theme13/Orbitron-Regular.woff2') format('woff2'), url('theme13/Orbitron-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
$font-family-sans-serif: 'Montserrat', Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
$font-family-serif: 'Orbitron', Georgia, "Times New Roman", Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
$font-family-serif: 'Orbitron', Georgia, 'Times New Roman', Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
|
||||
//== Buttons
|
||||
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-color: #fff;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-color: #fff;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-color: #fff;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
$btn-success-color: #fff;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-color: #fff;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
$btn-info-color: #fff;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-color: #fff;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
$btn-warning-color: #fff;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-color: #fff;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
$btn-danger-color: #fff;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
//== Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-color: $black;
|
||||
$pagination-color: $black;
|
||||
|
||||
$pagination-hover-color: $black;
|
||||
$pagination-hover-color: $black;
|
||||
|
||||
$pagination-active-color: $black;
|
||||
$pagination-active-color: $black;
|
||||
|
||||
//== Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-text: #fff;
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-text: #fff;
|
||||
|
||||
$state-warning-text: #fff;
|
||||
$state-warning-text: #fff;
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-text: #fff;
|
||||
|
||||
//== Labels
|
||||
|
||||
$label-link-hover-color: $gray-dark;
|
||||
$label-link-hover-color: $gray-dark;
|
||||
|
||||
//== Badges
|
||||
|
||||
$badge-color: $black;
|
||||
$badge-color: $black;
|
||||
|
||||
//== Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
// Forms ======================================================================
|
||||
|
||||
.input-group-addon {
|
||||
|
@ -133,12 +131,23 @@ body {
|
|||
}
|
||||
|
||||
.navbar.navbar-default {
|
||||
background: rgba(0,0,0,0.8);
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
backdrop-filter: blur(6px);
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,118 +1,116 @@
|
|||
// rc3 teal
|
||||
|
||||
//== Colors
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
$gray-darker: #0e1c23;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
$gray-darker: #0e1c23;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
|
||||
$brand-primary: #05b9ec;
|
||||
$primary: $brand-primary;
|
||||
$secondary: #32657e;
|
||||
$primary: $brand-primary;
|
||||
$secondary: #32657e;
|
||||
$brand-success: #02fae0;
|
||||
$success: $brand-success;
|
||||
$brand-info: #025d83;
|
||||
$info: $brand-info;
|
||||
$success: $brand-success;
|
||||
$brand-info: #025d83;
|
||||
$info: $brand-info;
|
||||
$brand-warning: #6800e7;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #b239ff;
|
||||
$danger: $brand-danger;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #b239ff;
|
||||
$danger: $brand-danger;
|
||||
|
||||
//== Scaffolding
|
||||
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
$link-color: #fff;
|
||||
$body-bg: #000;
|
||||
$text-color: $gray-lighter;
|
||||
$link-color: #fff;
|
||||
|
||||
//== Typography
|
||||
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
src: url('theme13/Montserrat-Regular.woff2') format('woff2'),
|
||||
url('theme13/Montserrat-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
font-family: 'Montserrat';
|
||||
src: url('theme13/Montserrat-Regular.woff2') format('woff2'), url('theme13/Montserrat-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Orbitron';
|
||||
src: url('theme13/Orbitron-Regular.woff2') format('woff2'),
|
||||
url('theme13/Orbitron-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
font-family: 'Orbitron';
|
||||
src: url('theme13/Orbitron-Regular.woff2') format('woff2'), url('theme13/Orbitron-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
$font-family-sans-serif: 'Montserrat', Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
$font-family-serif: 'Orbitron', Georgia, "Times New Roman", Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
$font-family-serif: 'Orbitron', Georgia, 'Times New Roman', Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
|
||||
//== Buttons
|
||||
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-color: #fff;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-color: #fff;
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-color: #fff;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
$btn-success-color: #fff;
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-color: #fff;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
$btn-info-color: #fff;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-color: #fff;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
$btn-warning-color: #fff;
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-color: #fff;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
$btn-danger-color: #fff;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
//== Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-color: $black;
|
||||
$pagination-color: $black;
|
||||
|
||||
$pagination-hover-color: $black;
|
||||
$pagination-hover-color: $black;
|
||||
|
||||
$pagination-active-color: $black;
|
||||
$pagination-active-color: $black;
|
||||
|
||||
//== Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-text: #fff;
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-text: #fff;
|
||||
|
||||
$state-warning-text: #fff;
|
||||
$state-warning-text: #fff;
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-text: #fff;
|
||||
|
||||
//== Labels
|
||||
|
||||
$label-link-hover-color: $gray-dark;
|
||||
$label-link-hover-color: $gray-dark;
|
||||
|
||||
//== Badges
|
||||
|
||||
$badge-color: $black;
|
||||
$badge-color: $black;
|
||||
|
||||
//== Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
// Forms ======================================================================
|
||||
|
||||
.input-group-addon {
|
||||
|
@ -133,6 +131,6 @@ body {
|
|||
}
|
||||
|
||||
.navbar.navbar-default {
|
||||
background: rgba(0,0,0,0.8);
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
backdrop-filter: blur(6px);
|
||||
}
|
||||
|
|
|
@ -1,43 +1,43 @@
|
|||
// rc3 2021
|
||||
|
||||
//== Colors
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
$gray-darker: #000;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
$gray-darker: #000;
|
||||
$gray-dark: lighten($gray-darker, 15%);
|
||||
$gray: lighten($gray-dark, 15%);
|
||||
$gray-light: lighten($gray, 15%);
|
||||
$gray-lighter: lighten($gray-light, 15%);
|
||||
$black: #000;
|
||||
|
||||
$brand-primary: #000;
|
||||
$primary: $brand-primary;
|
||||
$secondary: rgba(0, 0, 0, 0.5);
|
||||
$dark: #000;
|
||||
$primary: $brand-primary;
|
||||
$secondary: rgba(0, 0, 0, 0.5);
|
||||
$dark: #000;
|
||||
$brand-success: #070;
|
||||
$success: $brand-success;
|
||||
$brand-info: $gray;
|
||||
$info: $brand-info;
|
||||
$success: $brand-success;
|
||||
$brand-info: $gray;
|
||||
$info: $brand-info;
|
||||
$brand-warning: #dd0;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #700;
|
||||
$danger: $brand-danger;
|
||||
$warning: $brand-warning;
|
||||
$brand-danger: #700;
|
||||
$danger: $brand-danger;
|
||||
|
||||
$table-bg: rgba(0, 0, 0, 0.5);
|
||||
$body-color: #fff;
|
||||
|
||||
//== Scaffolding
|
||||
|
||||
$body-bg: #000;
|
||||
$text-color: #fff;
|
||||
$link-color: #fff;
|
||||
$body-bg: #000;
|
||||
$text-color: #fff;
|
||||
$link-color: #fff;
|
||||
|
||||
//== Typography
|
||||
|
||||
@font-face {
|
||||
font-family: 'Space Mono';
|
||||
src: url('theme15/SpaceMono-BoldItalic.woff2') format('woff2'),
|
||||
url('theme15/SpaceMono-BoldItalic.woff') format('woff');
|
||||
url('theme15/SpaceMono-BoldItalic.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
font-display: swap;
|
||||
|
@ -45,8 +45,7 @@ $link-color: #fff;
|
|||
|
||||
@font-face {
|
||||
font-family: 'Space Mono';
|
||||
src: url('theme15/SpaceMono-Regular.woff2') format('woff2'),
|
||||
url('theme15/SpaceMono-Regular.woff') format('woff');
|
||||
src: url('theme15/SpaceMono-Regular.woff2') format('woff2'), url('theme15/SpaceMono-Regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
|
@ -54,25 +53,23 @@ $link-color: #fff;
|
|||
|
||||
@font-face {
|
||||
font-family: 'Space Mono';
|
||||
src: url('theme15/SpaceMono-Bold.woff2') format('woff2'),
|
||||
url('theme15/SpaceMono-Bold.woff') format('woff');
|
||||
src: url('theme15/SpaceMono-Bold.woff2') format('woff2'), url('theme15/SpaceMono-Bold.woff') format('woff');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Changa';
|
||||
src: url('theme15/Changa-SemiBold.woff2') format('woff2'),
|
||||
url('theme15/Changa-SemiBold.woff') format('woff'),;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
font-family: 'Changa';
|
||||
src: url('theme15/Changa-SemiBold.woff2') format('woff2'), url('theme15/Changa-SemiBold.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
$font-family-sans-serif: 'Space Mono', Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
$font-family-serif: 'Changa', Georgia, "Times New Roman", Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
$font-family-serif: 'Changa', Georgia, 'Times New Roman', Times, serif;
|
||||
$headings-font-family: $font-family-serif;
|
||||
|
||||
//== Buttons
|
||||
|
||||
|
@ -81,41 +78,41 @@ $headings-font-family: $font-family-serif;
|
|||
}
|
||||
|
||||
.btn.btn-secondary {
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
//== Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg-disabled: darken($gray-dark, 10%);
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-color: #fff;
|
||||
$pagination-color: #fff;
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-active-color: #fff;
|
||||
$pagination-active-color: #fff;
|
||||
|
||||
//== Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-text: #fff;
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-text: #fff;
|
||||
|
||||
$state-warning-text: #fff;
|
||||
$state-warning-text: #fff;
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-text: #fff;
|
||||
|
||||
//== Labels
|
||||
|
||||
$label-link-hover-color: $gray-dark;
|
||||
$label-link-hover-color: $gray-dark;
|
||||
|
||||
//== Badges
|
||||
|
||||
$badge-color: $black;
|
||||
$badge-color: $black;
|
||||
|
||||
.badge.bg-primary {
|
||||
color: #fff;
|
||||
|
@ -128,12 +125,12 @@ $badge-color: $black;
|
|||
|
||||
//== Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
// Forms ======================================================================
|
||||
|
||||
.input-group-addon {
|
||||
|
@ -154,7 +151,11 @@ body {
|
|||
background-size: cover;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5 {
|
||||
text-transform: lowercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
@ -164,11 +165,11 @@ h1, h2, h3, h4, h5 {
|
|||
}
|
||||
|
||||
.navbar {
|
||||
background: rgba(0,0,0,0.5);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(6px);
|
||||
}
|
||||
|
||||
.footer a{
|
||||
.footer a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
@ -189,7 +190,7 @@ h1, h2, h3, h4, h5 {
|
|||
}
|
||||
|
||||
.stats {
|
||||
background-color:rgba(0, 0, 0, 0.5);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
margin: 1em 0;
|
||||
padding: 1em 0;
|
||||
height: 200px;
|
||||
|
|
|
@ -1,39 +1,50 @@
|
|||
// cccamp15
|
||||
@import "light";
|
||||
@import 'light';
|
||||
|
||||
$brand-primary: #758499;
|
||||
$primary: #758499;
|
||||
$primary: #758499;
|
||||
$brand-success: #7b9c41;
|
||||
$success: #7b9c41;
|
||||
$brand-info: #9c7357;
|
||||
$info: #9c7357;
|
||||
$brand-info: #9c7357;
|
||||
$info: #9c7357;
|
||||
$brand-warning: #e3a14d;
|
||||
$warning: #e3a14d;
|
||||
$brand-danger: #7f528b;
|
||||
$danger: #7f528b;
|
||||
$brand-danger: #7f528b;
|
||||
$danger: #7f528b;
|
||||
|
||||
$link-color: #58585a;
|
||||
$link-color: #58585a;
|
||||
|
||||
$state-success-text: #638232;
|
||||
$state-success-bg: lighten($brand-success,50%);
|
||||
$state-success-border: $brand-success;
|
||||
$state-success-text: #638232;
|
||||
$state-success-bg: lighten($brand-success, 50%);
|
||||
$state-success-border: $brand-success;
|
||||
|
||||
$state-info-text: #826045;
|
||||
$state-info-bg: lighten($brand-info,50%);
|
||||
$state-info-border: $brand-info;
|
||||
$state-info-text: #826045;
|
||||
$state-info-bg: lighten($brand-info, 50%);
|
||||
$state-info-border: $brand-info;
|
||||
|
||||
$state-warning-text: #bc8640;
|
||||
$state-warning-bg: lighten($brand-warning,50%);
|
||||
$state-warning-border: $brand-warning;
|
||||
$state-warning-text: #bc8640;
|
||||
$state-warning-bg: lighten($brand-warning, 50%);
|
||||
$state-warning-border: $brand-warning;
|
||||
|
||||
$state-danger-text: #694374;
|
||||
$state-danger-bg: lighten($brand-danger,50%);
|
||||
$state-danger-border: $brand-danger;
|
||||
$state-danger-text: #694374;
|
||||
$state-danger-bg: lighten($brand-danger, 50%);
|
||||
$state-danger-border: $brand-danger;
|
||||
|
||||
@import "base.scss";
|
||||
@import 'base.scss';
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-danger {
|
||||
color: #fff;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-danger {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,49 +1,49 @@
|
|||
// 32c3 (2015)
|
||||
@import "light";
|
||||
@import 'light';
|
||||
|
||||
$brand-primary: #f19224;
|
||||
$primary: #f19224;
|
||||
$brand-success: #39AB50;
|
||||
$success: #39AB50;
|
||||
$brand-info: #6618F9;
|
||||
$info: #6618F9;
|
||||
$brand-warning: #DAD216;
|
||||
$warning: #DAD216;
|
||||
$brand-danger: #DA1639;
|
||||
$danger: #DA1639;
|
||||
$brand-primary: #f19224;
|
||||
$primary: #f19224;
|
||||
$brand-success: #39ab50;
|
||||
$success: #39ab50;
|
||||
$brand-info: #6618f9;
|
||||
$info: #6618f9;
|
||||
$brand-warning: #dad216;
|
||||
$warning: #dad216;
|
||||
$brand-danger: #da1639;
|
||||
$danger: #da1639;
|
||||
|
||||
$state-success-text: $brand-success;
|
||||
$state-success-bg: lighten($brand-success,40%);
|
||||
$state-success-border: $brand-success;
|
||||
$state-success-text: $brand-success;
|
||||
$state-success-bg: lighten($brand-success, 40%);
|
||||
$state-success-border: $brand-success;
|
||||
|
||||
$state-info-text: $brand-info;
|
||||
$state-info-bg: lighten($brand-info,40%);
|
||||
$state-info-border: $brand-info;
|
||||
$state-info-text: $brand-info;
|
||||
$state-info-bg: lighten($brand-info, 40%);
|
||||
$state-info-border: $brand-info;
|
||||
|
||||
$state-warning-text: $brand-warning;
|
||||
$state-warning-bg: lighten($brand-warning,40%);
|
||||
$state-warning-border: $brand-warning;
|
||||
$state-warning-text: $brand-warning;
|
||||
$state-warning-bg: lighten($brand-warning, 40%);
|
||||
$state-warning-border: $brand-warning;
|
||||
|
||||
$state-danger-text: $brand-danger;
|
||||
$state-danger-bg: lighten($brand-danger,40%);
|
||||
$state-danger-border: $brand-danger;
|
||||
$state-danger-text: $brand-danger;
|
||||
$state-danger-bg: lighten($brand-danger, 40%);
|
||||
$state-danger-border: $brand-danger;
|
||||
|
||||
$navbar-default-color: #fff;
|
||||
$navbar-default-bg: #000;
|
||||
$navbar-default-color: #fff;
|
||||
$navbar-default-bg: #000;
|
||||
$navbar-default-border: #000;
|
||||
|
||||
$navbar-default-link-color: #fff;
|
||||
$navbar-default-link-hover-color: #ddd;
|
||||
$navbar-default-link-hover-bg: #222;
|
||||
$navbar-default-link-color: #fff;
|
||||
$navbar-default-link-hover-color: #ddd;
|
||||
$navbar-default-link-hover-bg: #222;
|
||||
|
||||
$navbar-default-link-active-color: $brand-primary;
|
||||
$navbar-default-link-active-bg: #000;
|
||||
$navbar-default-link-disabled-color:#777;
|
||||
$navbar-default-link-disabled-bg: #000;
|
||||
$navbar-default-link-active-color: $brand-primary;
|
||||
$navbar-default-link-active-bg: #000;
|
||||
$navbar-default-link-disabled-color: #777;
|
||||
$navbar-default-link-disabled-bg: #000;
|
||||
|
||||
$navbar-default-brand-color: #fff;
|
||||
$navbar-default-brand-hover-color: $brand-primary;
|
||||
$navbar-default-brand-hover-bg: #000;
|
||||
$navbar-default-brand-color: #fff;
|
||||
$navbar-default-brand-hover-color: $brand-primary;
|
||||
$navbar-default-brand-hover-bg: #000;
|
||||
|
||||
.navbar {
|
||||
.bg-info {
|
||||
|
@ -66,10 +66,21 @@ $navbar-default-brand-hover-bg: #000;
|
|||
}
|
||||
}
|
||||
|
||||
@import "base.scss";
|
||||
@import 'base.scss';
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-info {
|
||||
color: #fff;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-info {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,100 +1,93 @@
|
|||
// 33c3 (2016)
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
// Variables
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-darker: #222;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: rgb(0, 156, 139);
|
||||
$primary: rgb(0, 156, 139);
|
||||
$secondary: #424242;
|
||||
$brand-success: rgb(141, 193, 35);
|
||||
$success: rgb(141, 193, 35);
|
||||
$brand-info: rgb(70, 71, 73);
|
||||
$info: rgb(70, 71, 73);
|
||||
$brand-info: rgb(70, 71, 73);
|
||||
$info: rgb(70, 71, 73);
|
||||
$brand-warning: rgb(255, 244, 95);
|
||||
$warning: rgb(255, 244, 95);
|
||||
$brand-danger: rgb(277, 38, 60);
|
||||
$danger: rgb(277, 38, 60);
|
||||
$brand-danger: rgb(277, 38, 60);
|
||||
$danger: rgb(277, 38, 60);
|
||||
|
||||
$text-muted: lighten($gray-light, 25%);
|
||||
|
||||
//== changed Scaffolding
|
||||
|
||||
$body-bg: #1d1d1b;
|
||||
$body-bg: #1d1d1b;
|
||||
$alert-bg-scale: 0%;
|
||||
|
||||
|
||||
//== changed Buttons
|
||||
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
$btn-warning-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
//== changed Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg: $gray-darker;
|
||||
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== Pagination
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-active-color: #fff;
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-active-color: #fff;
|
||||
|
||||
//== changed Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
|
||||
$state-warning-text: darken($brand-warning, 40%);
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
$state-warning-text: darken($brand-warning, 40%);
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
|
||||
//== changed Badges
|
||||
|
||||
$badge-color: #fff;
|
||||
|
||||
$badge-color: #fff;
|
||||
|
||||
//== changed Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// added Forms ======================================================================
|
||||
|
||||
|
@ -117,8 +110,19 @@ code {
|
|||
color: $state-info-text;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,43 +1,54 @@
|
|||
// 34c3 light (2017)
|
||||
@import "light";
|
||||
@import 'light';
|
||||
|
||||
$brand-primary: rgb(164, 28, 49);
|
||||
$primary: rgb(164, 28, 49);
|
||||
$brand-success: rgb(153, 204, 0);
|
||||
$success: rgb(153, 204, 0);
|
||||
$brand-info: rgb(0, 204, 255);
|
||||
$info: rgb(0, 204, 255);
|
||||
$brand-info: rgb(0, 204, 255);
|
||||
$info: rgb(0, 204, 255);
|
||||
$brand-warning: rgb(255, 255, 51);
|
||||
$warning: rgb(255, 255, 51);
|
||||
$brand-danger: rgb(255, 102, 0);
|
||||
$danger: rgb(255, 102, 0);
|
||||
$brand-danger: rgb(255, 102, 0);
|
||||
$danger: rgb(255, 102, 0);
|
||||
|
||||
$link-color: $brand-primary;
|
||||
$link-color: $brand-primary;
|
||||
|
||||
$state-success-text: darken($brand-success,40%);
|
||||
$state-success-bg: lighten($brand-success,40%);
|
||||
$state-success-border: $brand-success;
|
||||
$state-success-text: darken($brand-success, 40%);
|
||||
$state-success-bg: lighten($brand-success, 40%);
|
||||
$state-success-border: $brand-success;
|
||||
|
||||
$state-info-text: darken($brand-info,40%);
|
||||
$state-info-bg: lighten($brand-info,40%);
|
||||
$state-info-border: $brand-info;
|
||||
$state-info-text: darken($brand-info, 40%);
|
||||
$state-info-bg: lighten($brand-info, 40%);
|
||||
$state-info-border: $brand-info;
|
||||
|
||||
$state-warning-text: darken($brand-warning,40%);
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($brand-warning,40%);
|
||||
$state-warning-text: darken($brand-warning, 40%);
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($brand-warning, 40%);
|
||||
|
||||
$state-danger-text: darken($brand-danger,40%);
|
||||
$state-danger-bg: lighten($brand-danger,40%);
|
||||
$state-danger-border: $brand-danger;
|
||||
$state-danger-text: darken($brand-danger, 40%);
|
||||
$state-danger-bg: lighten($brand-danger, 40%);
|
||||
$state-danger-border: $brand-danger;
|
||||
|
||||
.badge.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
@import "base.scss";
|
||||
@import 'base.scss';
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-primary {
|
||||
color: #fff;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-primary {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,107 +1,101 @@
|
|||
// 34c3 dark (2017)
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-darker: #222;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-darker: #222;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: rgb(164, 28, 49);
|
||||
$primary: rgb(164, 28, 49);
|
||||
$primary: rgb(164, 28, 49);
|
||||
$brand-success: rgb(153, 204, 0);
|
||||
$success: rgb(153, 204, 0);
|
||||
$brand-info: rgb(0, 204, 255);
|
||||
$info: rgb(0, 204, 255);
|
||||
$success: rgb(153, 204, 0);
|
||||
$brand-info: rgb(0, 204, 255);
|
||||
$info: rgb(0, 204, 255);
|
||||
$brand-warning: rgb(255, 255, 51);
|
||||
$warning: rgb(255, 255, 51);
|
||||
$brand-danger: rgb(255, 102, 0);
|
||||
$danger: rgb(255, 102, 0);
|
||||
$warning: rgb(255, 255, 51);
|
||||
$brand-danger: rgb(255, 102, 0);
|
||||
$danger: rgb(255, 102, 0);
|
||||
|
||||
$secondary: #424242;
|
||||
|
||||
$alert-bg-scale: 0%;
|
||||
|
||||
.badge.bg-warning, .progress-bar.progress-bar-warning {
|
||||
.badge.bg-warning,
|
||||
.progress-bar.progress-bar-warning {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
//== changed Buttons
|
||||
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
$btn-color: #fff;
|
||||
$btn-default-bg: lighten($gray-dark, 10%);
|
||||
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
$btn-primary-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-success-border: $btn-primary-border;
|
||||
$btn-success-border: $btn-primary-border;
|
||||
|
||||
$btn-info-border: $btn-primary-border;
|
||||
$btn-info-border: $btn-primary-border;
|
||||
|
||||
$btn-warning-border: $btn-primary-border;
|
||||
$btn-warning-border: $btn-primary-border;
|
||||
|
||||
$btn-danger-border: $btn-primary-border;
|
||||
|
||||
$btn-link-disabled-color: $gray-light;
|
||||
$btn-danger-border: $btn-primary-border;
|
||||
|
||||
$btn-link-disabled-color: $gray-light;
|
||||
|
||||
//== changed Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-bg: $gray-darker;
|
||||
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
$input-bg-disabled: $gray-lighter;
|
||||
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
//== changed Pagination
|
||||
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-active-color: #fff;
|
||||
$pagination-hover-color: #fff;
|
||||
|
||||
$pagination-active-color: #fff;
|
||||
|
||||
//== changed Form states and alerts
|
||||
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
$state-success-text: #fff;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
$state-info-text: #fff;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
|
||||
$state-warning-text: #000;
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
$state-warning-text: #000;
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: #fff;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
|
||||
//== changed List group
|
||||
|
||||
$list-group-bg: darken($gray-darker, 10%);
|
||||
$list-group-bg: darken($gray-darker, 10%);
|
||||
|
||||
//== changed Badges
|
||||
|
||||
$badge-color: #fff;
|
||||
|
||||
$badge-color: #fff;
|
||||
|
||||
//== changed Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
// Bootswatch
|
||||
// -----------------------------------------------------
|
||||
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// Typography =================================================================
|
||||
|
||||
|
@ -152,8 +146,19 @@ code {
|
|||
color: $input-color;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,154 +2,142 @@
|
|||
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
$gray-darker: #000;
|
||||
$gray-dark: #000;
|
||||
$gray: #4d4d4c; // BEBOOT
|
||||
$gray-light: $gray;
|
||||
$gray-darker: #000;
|
||||
$gray-dark: #000;
|
||||
$gray: #4d4d4c; // BEBOOT
|
||||
$gray-light: $gray;
|
||||
$gray-lighter: lighten($gray, 15%);
|
||||
|
||||
$brand-primary: #0084b0; // FRESH
|
||||
$primary: #0084b0;
|
||||
$primary: #0084b0;
|
||||
$brand-success: #00a356; // HOPE
|
||||
$success: #00a356; // HOPE
|
||||
$brand-info: $brand-primary;
|
||||
$info: $brand-primary;
|
||||
$success: #00a356; // HOPE
|
||||
$brand-info: $brand-primary;
|
||||
$info: $brand-primary;
|
||||
$brand-warning: #f9b000; // GLINT
|
||||
$warning: #f9b000; // GLINT
|
||||
$brand-danger: #e40429; // BEAT
|
||||
$danger: #e40429; // BEAT
|
||||
|
||||
$warning: #f9b000; // GLINT
|
||||
$brand-danger: #e40429; // BEAT
|
||||
$danger: #e40429; // BEAT
|
||||
|
||||
//== changed Scaffolding
|
||||
|
||||
$text-color: $gray-lighter;
|
||||
|
||||
$body-bg: #000;
|
||||
$body-bg: #000;
|
||||
$body-color: $text-color;
|
||||
|
||||
$link-color: $brand-primary;
|
||||
$link-color: $brand-primary;
|
||||
$link-hover-color: lighten($link-color, 10%);
|
||||
|
||||
|
||||
//== changed Typography
|
||||
|
||||
$headings-color: $brand-primary;
|
||||
|
||||
|
||||
//== changed Tables
|
||||
|
||||
$table-bg: $gray-darker;
|
||||
$table-bg-accent: #111;
|
||||
$table-bg: $gray-darker;
|
||||
$table-bg-accent: #111;
|
||||
$table-border-color: $gray;
|
||||
|
||||
|
||||
// component
|
||||
|
||||
$component-active-color: #fff;
|
||||
$component-active-bg: $primary;
|
||||
|
||||
$component-active-bg: $primary;
|
||||
|
||||
//== changed Buttons
|
||||
|
||||
$btn-color: $link-color;
|
||||
$btn-color: $link-color;
|
||||
$btn-default-bg: $gray-darker;
|
||||
|
||||
$btn-default-border: $brand-primary;
|
||||
|
||||
$btn-primary-color: $gray-darker;
|
||||
$btn-primary-color: $gray-darker;
|
||||
$btn-primary-border: $brand-primary;
|
||||
|
||||
$btn-success-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-info-color: $gray-darker;
|
||||
$btn-info-color: $gray-darker;
|
||||
$btn-info-border: darken($btn-default-bg, 10%);
|
||||
|
||||
$btn-warning-color: $gray-darker;
|
||||
$btn-warning-color: $gray-darker;
|
||||
$btn-warning-border: darken($btn-default-bg, 9%);
|
||||
|
||||
$btn-danger-color: $gray-darker;
|
||||
$btn-danger-color: $gray-darker;
|
||||
$btn-danger-border: darken($btn-default-bg, 10%);
|
||||
|
||||
|
||||
//== changed Forms
|
||||
|
||||
$input-bg: $gray-darker;
|
||||
$input-color: $link-color;
|
||||
$input-border-color: $brand-primary;
|
||||
$input-bg: $gray-darker;
|
||||
$input-color: $link-color;
|
||||
$input-border-color: $brand-primary;
|
||||
$input-group-addon-bg: $gray-lighter;
|
||||
|
||||
|
||||
//== changed Dropdowns
|
||||
|
||||
$dropdown-border: $brand-primary;
|
||||
$dropdown-fallback-border: $brand-primary;
|
||||
$dropdown-divider-bg: $dropdown-border;
|
||||
$dropdown-link-color: $link-color;
|
||||
$dropdown-link-hover-color: $link-hover-color;
|
||||
$dropdown-bg: $gray-darker;
|
||||
$dropdown-link-hover-bg: $dropdown-bg;
|
||||
|
||||
$dropdown-border: $brand-primary;
|
||||
$dropdown-fallback-border: $brand-primary;
|
||||
$dropdown-divider-bg: $dropdown-border;
|
||||
$dropdown-link-color: $link-color;
|
||||
$dropdown-link-hover-color: $link-hover-color;
|
||||
$dropdown-bg: $gray-darker;
|
||||
$dropdown-link-hover-bg: $dropdown-bg;
|
||||
|
||||
//== changed Navbar
|
||||
|
||||
$navbar-default-border: $brand-primary;
|
||||
$navbar-default-link-hover-color: $link-hover-color;
|
||||
$navbar-default-link-active-color: $brand-primary;
|
||||
$navbar-default-brand-color: $brand-primary;
|
||||
$navbar-default-brand-hover-color: lighten($brand-primary, 10%);
|
||||
|
||||
$navbar-default-border: $brand-primary;
|
||||
$navbar-default-link-hover-color: $link-hover-color;
|
||||
$navbar-default-link-active-color: $brand-primary;
|
||||
$navbar-default-brand-color: $brand-primary;
|
||||
$navbar-default-brand-hover-color: lighten($brand-primary, 10%);
|
||||
|
||||
//== changed Pagination
|
||||
|
||||
$pagination-color: $brand-primary;
|
||||
$pagination-border: $brand-primary;
|
||||
$pagination-color: $brand-primary;
|
||||
$pagination-border: $brand-primary;
|
||||
|
||||
$pagination-hover-color: $gray-darker;
|
||||
$pagination-hover-bg: $component-active-bg;
|
||||
$pagination-hover-border: $pagination-border;
|
||||
$pagination-hover-color: $gray-darker;
|
||||
$pagination-hover-bg: $component-active-bg;
|
||||
$pagination-hover-border: $pagination-border;
|
||||
|
||||
$pagination-active-color: $pagination-hover-color;
|
||||
$pagination-active-bg: $pagination-hover-bg;
|
||||
$pagination-active-color: $pagination-hover-color;
|
||||
$pagination-active-bg: $pagination-hover-bg;
|
||||
$pagination-active-border: $pagination-hover-border;
|
||||
|
||||
|
||||
//== changed Form states and alerts
|
||||
|
||||
$state-success-text: $gray-darker;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-text: $gray-darker;
|
||||
$state-success-bg: $brand-success;
|
||||
$state-success-border: darken($state-success-bg, 5%);
|
||||
|
||||
$state-info-text: $gray-darker;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
$state-info-text: $gray-darker;
|
||||
$state-info-bg: $brand-info;
|
||||
$state-info-border: darken($state-info-bg, 7%);
|
||||
|
||||
$state-warning-text: $gray-darker;
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-text: $gray-darker;
|
||||
$state-warning-bg: $brand-warning;
|
||||
$state-warning-border: darken($state-warning-bg, 3%);
|
||||
|
||||
$state-danger-text: $gray-darker;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
|
||||
$state-danger-text: $gray-darker;
|
||||
$state-danger-bg: $brand-danger;
|
||||
$state-danger-border: darken($state-danger-bg, 3%);
|
||||
|
||||
//== changed Labels
|
||||
|
||||
$label-color: $gray-darker;
|
||||
$label-color: $gray-darker;
|
||||
$label-link-hover-color: $brand-primary;
|
||||
|
||||
|
||||
//== changed Type
|
||||
|
||||
$headings-small-color: $gray-light;
|
||||
$headings-small-color: $gray-light;
|
||||
|
||||
$alert-bg-scale: 0%;
|
||||
$alert-border-scale: 0;
|
||||
$alert-color-scale: 0;
|
||||
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
.messages .text-danger {
|
||||
color: $gray-darker;
|
||||
|
@ -232,9 +220,18 @@ table,
|
|||
// changed Indicators =================================================================
|
||||
|
||||
.alert {
|
||||
|
||||
.h1, .h2, .h3, .h4, .h5, .h6,
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
@ -251,8 +248,9 @@ table,
|
|||
|
||||
// changed Containers =================================================================
|
||||
|
||||
.btn-primary, .card-info .card-heading {
|
||||
background-image: linear-gradient(to right, rgb(0, 132, 176) , rgb(0, 163, 86));
|
||||
.btn-primary,
|
||||
.card-info .card-heading {
|
||||
background-image: linear-gradient(to right, rgb(0, 132, 176), rgb(0, 163, 86));
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
|
@ -277,7 +275,18 @@ code {
|
|||
color: $state-info-text;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
code {
|
||||
color: $headings-color;
|
||||
}
|
||||
|
@ -287,6 +296,6 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|||
&.bg-success,
|
||||
&.bg-danger,
|
||||
&.bg-info {
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
// cccamp19 blue (2019)
|
||||
|
||||
// Variables
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: #0076ba;
|
||||
$primary: #0076ba;
|
||||
$primary: #0076ba;
|
||||
|
||||
$text-muted: $primary;
|
||||
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// Specials for cccamp19 design
|
||||
@import "card-glow";
|
||||
@import 'card-glow';
|
||||
|
||||
.navbar-brand {
|
||||
.icon-icon_angel {
|
||||
|
@ -28,13 +28,8 @@ $text-muted: $primary;
|
|||
strong {
|
||||
font-weight: normal;
|
||||
color: $brand-primary;
|
||||
text-shadow:
|
||||
0 0 10px $brand-primary,
|
||||
0 0 20px $brand-primary,
|
||||
0 0 30px $brand-primary,
|
||||
0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary,
|
||||
0 0 80px $brand-primary;
|
||||
text-shadow: 0 0 10px $brand-primary, 0 0 20px $brand-primary, 0 0 30px $brand-primary, 0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary, 0 0 80px $brand-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -56,8 +51,19 @@ h1 {
|
|||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,24 +2,24 @@
|
|||
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
@import "dark";
|
||||
@import 'dark';
|
||||
|
||||
//== changed Colors
|
||||
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #ADAFAE;
|
||||
$gray-dark: #282828;
|
||||
$gray-light: #888;
|
||||
$gray-lighter: #adafae;
|
||||
|
||||
$brand-primary: #ffc600;
|
||||
$primary: $brand-primary;
|
||||
$primary: $brand-primary;
|
||||
|
||||
$text-muted: $primary;
|
||||
|
||||
@import "cyborg_variables.scss";
|
||||
@import "cyborg_styles.scss";
|
||||
@import 'cyborg_variables.scss';
|
||||
@import 'cyborg_styles.scss';
|
||||
|
||||
// Specials for cccamp19 design
|
||||
@import "card-glow";
|
||||
@import 'card-glow';
|
||||
|
||||
.navbar-brand {
|
||||
.icon-icon_angel {
|
||||
|
@ -29,13 +29,8 @@ $text-muted: $primary;
|
|||
strong {
|
||||
font-weight: normal;
|
||||
color: $brand-primary;
|
||||
text-shadow:
|
||||
0 0 10px $brand-primary,
|
||||
0 0 20px $brand-primary,
|
||||
0 0 30px $brand-primary,
|
||||
0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary,
|
||||
0 0 80px $brand-primary;
|
||||
text-shadow: 0 0 10px $brand-primary, 0 0 20px $brand-primary, 0 0 30px $brand-primary, 0 0 40px $brand-primary,
|
||||
0 0 70px $brand-primary, 0 0 80px $brand-primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -57,9 +52,20 @@ h1 {
|
|||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
&.bg-primary,
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
.h1,
|
||||
.h2,
|
||||
.h3,
|
||||
.h4,
|
||||
.h5,
|
||||
.h6 {
|
||||
&.bg-primary,
|
||||
&.bg-warning {
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2845,6 +2845,11 @@ prelude-ls@^1.2.1:
|
|||
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
||||
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
|
||||
|
||||
prettier@^2.8.1:
|
||||
version "2.8.1"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc"
|
||||
integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==
|
||||
|
||||
pseudomap@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
||||
|
|
Loading…
Reference in New Issue