From f3c19bdbf58ff5a6220fea40b7fd9576230564c8 Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 07:37:59 +0200 Subject: style: apply neon gaming theme from template.css - Dark palette: #1a1e23 bg, #232830 surface, #2f363f borders - Neon cyan (#00e5d4) primary, pink (#ff2e63) accent - Navbar: frosted glass with backdrop blur, border bottom - Cards: dark surface with subtle shadow and border - Custom scrollbar: dark themed - CSS variables for theme colors in inline styles - All text: light (#e2e8f0) on dark backgrounds --- public/css/app.css | 803 +++++++++++++++++++++++++++-------------------------- 1 file changed, 410 insertions(+), 393 deletions(-) (limited to 'public/css/app.css') diff --git a/public/css/app.css b/public/css/app.css index 51d922a..834656c 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -7,33 +7,33 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ :root { - --blue: #3490dc; + --blue: #00e5d4; --indigo: #6574cd; - --purple: #9561e2; - --pink: #f66d9b; + --purple: #a855f7; + --pink: #ff2e63; --red: #e3342f; --orange: #f6993f; --yellow: #ffed4a; --green: #38c172; - --teal: #4dc0b5; - --cyan: #6cb2eb; + --teal: #00e5d4; + --cyan: #00e5d4; --white: #fff; --gray: #6c757d; --gray-dark: #343a40; - --primary: #3490dc; - --secondary: #6c757d; + --primary: #00e5d4; + --secondary: #2b313b; --success: #38c172; - --info: #6cb2eb; + --info: #00e5d4; --warning: #ffed4a; --danger: #e3342f; - --light: #f8f9fa; - --dark: #343a40; + --light: #e2e8f0; + --dark: #232830; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; - --font-family-sans-serif: "Nunito", sans-serif; + --font-family-sans-serif: "Inter", "Nunito", sans-serif; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } @@ -56,13 +56,13 @@ article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { body { margin: 0; - font-family: "Nunito", sans-serif; + font-family: "Inter", "Nunito", sans-serif; font-size: 0.9rem; font-weight: 400; line-height: 1.6; - color: #212529; + color: #e2e8f0; text-align: left; - background-color: #f8fafc; + background-color: #1a1e23; } [tabindex="-1"]:focus:not(:focus-visible) { @@ -153,12 +153,12 @@ sup { } a { - color: #3490dc; + color: #00e5d4; text-decoration: none; background-color: transparent; } a:hover { - color: #1d68a7; + color: #00998d; text-decoration: underline; } @@ -475,7 +475,7 @@ mark, .img-thumbnail { padding: 0.25rem; - background-color: #f8fafc; + background-color: #1a1e23; border: 1px solid #dee2e6; border-radius: 0.25rem; max-width: 100%; @@ -498,7 +498,7 @@ mark, code { font-size: 87.5%; - color: #f66d9b; + color: #ff2e63; word-wrap: break-word; } a > code { @@ -1672,20 +1672,20 @@ pre code { .table { width: 100%; margin-bottom: 1rem; - color: #212529; + color: #e2e8f0; } .table th, .table td { padding: 0.75rem; vertical-align: top; - border-top: 1px solid #dee2e6; + border-top: 1px solid #2f363f; } .table thead th { vertical-align: bottom; - border-bottom: 2px solid #dee2e6; + border-bottom: 2px solid #2f363f; } .table tbody + tbody { - border-top: 2px solid #dee2e6; + border-top: 2px solid #2f363f; } .table-sm th, @@ -1694,11 +1694,11 @@ pre code { } .table-bordered { - border: 1px solid #dee2e6; + border: 1px solid #2f363f; } .table-bordered th, .table-bordered td { - border: 1px solid #dee2e6; + border: 1px solid #2f363f; } .table-bordered thead th, .table-bordered thead td { @@ -1717,48 +1717,48 @@ pre code { } .table-hover tbody tr:hover { - color: #212529; + color: #e2e8f0; background-color: rgba(0, 0, 0, 0.075); } .table-primary, .table-primary > th, .table-primary > td { - background-color: #c6e0f5; + background-color: #b8f8f3; } .table-primary th, .table-primary td, .table-primary thead th, .table-primary tbody + tbody { - border-color: #95c5ed; + border-color: #7af1e9; } .table-hover .table-primary:hover { - background-color: #b0d4f1; + background-color: #a1f6ef; } .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th { - background-color: #b0d4f1; + background-color: #a1f6ef; } .table-secondary, .table-secondary > th, .table-secondary > td { - background-color: #d6d8db; + background-color: #c4c5c8; } .table-secondary th, .table-secondary td, .table-secondary thead th, .table-secondary tbody + tbody { - border-color: #b3b7bb; + border-color: #919499; } .table-hover .table-secondary:hover { - background-color: #c8cbcf; + background-color: #b7b8bc; } .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th { - background-color: #c8cbcf; + background-color: #b7b8bc; } .table-success, @@ -1784,21 +1784,21 @@ pre code { .table-info, .table-info > th, .table-info > td { - background-color: #d6e9f9; + background-color: #b8f8f3; } .table-info th, .table-info td, .table-info thead th, .table-info tbody + tbody { - border-color: #b3d7f5; + border-color: #7af1e9; } .table-hover .table-info:hover { - background-color: #c0ddf6; + background-color: #a1f6ef; } .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { - background-color: #c0ddf6; + background-color: #a1f6ef; } .table-warning, @@ -1844,41 +1844,41 @@ pre code { .table-light, .table-light > th, .table-light > td { - background-color: #fdfdfe; + background-color: #f7f9fb; } .table-light th, .table-light td, .table-light thead th, .table-light tbody + tbody { - border-color: #fbfcfc; + border-color: #f0f3f7; } .table-hover .table-light:hover { - background-color: #ececf6; + background-color: #e6ecf3; } .table-hover .table-light:hover > td, .table-hover .table-light:hover > th { - background-color: #ececf6; + background-color: #e6ecf3; } .table-dark, .table-dark > th, .table-dark > td { - background-color: #c6c8ca; + background-color: #c1c3c5; } .table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody { - border-color: #95999c; + border-color: #8d8f93; } .table-hover .table-dark:hover { - background-color: #b9bbbe; + background-color: #b4b6b9; } .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { - background-color: #b9bbbe; + background-color: #b4b6b9; } .table-active, @@ -1903,7 +1903,7 @@ pre code { .table .thead-light th { color: #495057; background-color: #e9ecef; - border-color: #dee2e6; + border-color: #2f363f; } .table-dark { @@ -1988,10 +1988,10 @@ pre code { font-size: 0.9rem; font-weight: 400; line-height: 1.6; - color: #495057; - background-color: #fff; + color: #e2e8f0; + background-color: #2b313b; background-clip: padding-box; - border: 1px solid #ced4da; + border: 1px solid #2f363f; border-radius: 0.25rem; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @@ -2006,14 +2006,14 @@ pre code { } .form-control:-moz-focusring { color: transparent; - text-shadow: 0 0 0 #495057; + text-shadow: 0 0 0 #e2e8f0; } .form-control:focus { - color: #495057; - background-color: #fff; - border-color: #a1cbef; + color: #e2e8f0; + background-color: #2b313b; + border-color: #66fff4; outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .form-control::placeholder { color: #6c757d; @@ -2025,8 +2025,8 @@ pre code { } select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; + color: #e2e8f0; + background-color: #2b313b; } .form-control-file, @@ -2064,7 +2064,7 @@ select.form-control:focus::-ms-value { margin-bottom: 0; font-size: 0.9rem; line-height: 1.6; - color: #212529; + color: #e2e8f0; background-color: transparent; border: solid transparent; border-width: 1px 0; @@ -2202,7 +2202,7 @@ textarea.form-control { .was-validated .custom-select:valid, .custom-select.is-valid { border-color: #38c172; padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #2b313b no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); } .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { border-color: #38c172; @@ -2294,7 +2294,7 @@ textarea.form-control { .was-validated .custom-select:invalid, .custom-select.is-invalid { border-color: #e3342f; padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #2b313b no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); } .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { border-color: #e3342f; @@ -2395,14 +2395,14 @@ textarea.form-control { .btn { display: inline-block; font-weight: 400; - color: #212529; + color: #e2e8f0; text-align: center; vertical-align: middle; cursor: pointer; user-select: none; background-color: transparent; border: 1px solid transparent; - padding: 0.375rem 0.75rem; + padding: 0.5rem 1rem; font-size: 0.9rem; line-height: 1.6; border-radius: 0.25rem; @@ -2414,12 +2414,12 @@ textarea.form-control { } } .btn:hover { - color: #212529; + color: #e2e8f0; text-decoration: none; } .btn:focus, .btn.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .btn.disabled, .btn:disabled { opacity: 0.65; @@ -2430,63 +2430,63 @@ fieldset:disabled a.btn { } .btn-primary { - color: #fff; - background-color: #3490dc; - border-color: #3490dc; + color: #212529; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-primary:hover { color: #fff; - background-color: #227dc7; - border-color: #2176bd; + background-color: #00bfb1; + border-color: #00b2a5; } .btn-primary:focus, .btn-primary.focus { color: #fff; - background-color: #227dc7; - border-color: #2176bd; - box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5); + background-color: #00bfb1; + border-color: #00b2a5; + box-shadow: 0 0 0 0.2rem rgba(5, 200, 186, 0.5); } .btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #3490dc; - border-color: #3490dc; + color: #212529; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { color: #fff; - background-color: #2176bd; - border-color: #1f6fb2; + background-color: #00b2a5; + border-color: #00a599; } .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5); + box-shadow: 0 0 0 0.2rem rgba(5, 200, 186, 0.5); } .btn-secondary { color: #fff; - background-color: #6c757d; - border-color: #6c757d; + background-color: #2b313b; + border-color: #2b313b; } .btn-secondary:hover { color: #fff; - background-color: #5a6268; - border-color: #545b62; + background-color: #1b1f25; + border-color: #16191e; } .btn-secondary:focus, .btn-secondary.focus { color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); + background-color: #1b1f25; + border-color: #16191e; + box-shadow: 0 0 0 0.2rem rgba(75, 80, 88, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { color: #fff; - background-color: #6c757d; - border-color: #6c757d; + background-color: #2b313b; + border-color: #2b313b; } .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { color: #fff; - background-color: #545b62; - border-color: #4e555b; + background-color: #16191e; + border-color: #101216; } .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); + box-shadow: 0 0 0 0.2rem rgba(75, 80, 88, 0.5); } .btn-success { @@ -2521,32 +2521,32 @@ fieldset:disabled a.btn { .btn-info { color: #212529; - background-color: #6cb2eb; - border-color: #6cb2eb; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-info:hover { color: #fff; - background-color: #4aa0e6; - border-color: #3f9ae5; + background-color: #00bfb1; + border-color: #00b2a5; } .btn-info:focus, .btn-info.focus { color: #fff; - background-color: #4aa0e6; - border-color: #3f9ae5; - box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5); + background-color: #00bfb1; + border-color: #00b2a5; + box-shadow: 0 0 0 0.2rem rgba(5, 200, 186, 0.5); } .btn-info.disabled, .btn-info:disabled { color: #212529; - background-color: #6cb2eb; - border-color: #6cb2eb; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { color: #fff; - background-color: #3f9ae5; - border-color: #3495e3; + background-color: #00b2a5; + border-color: #00a599; } .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5); + box-shadow: 0 0 0 0.2rem rgba(5, 200, 186, 0.5); } .btn-warning { @@ -2611,112 +2611,112 @@ fieldset:disabled a.btn { .btn-light { color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; + background-color: #e2e8f0; + border-color: #e2e8f0; } .btn-light:hover { color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; + background-color: #c9d4e3; + border-color: #c0cddf; } .btn-light:focus, .btn-light.focus { color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + background-color: #c9d4e3; + border-color: #c0cddf; + box-shadow: 0 0 0 0.2rem rgba(197, 203, 210, 0.5); } .btn-light.disabled, .btn-light:disabled { color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; + background-color: #e2e8f0; + border-color: #e2e8f0; } .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; + background-color: #c0cddf; + border-color: #b8c7da; } .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + box-shadow: 0 0 0 0.2rem rgba(197, 203, 210, 0.5); } .btn-dark { color: #fff; - background-color: #343a40; - border-color: #343a40; + background-color: #232830; + border-color: #232830; } .btn-dark:hover { color: #fff; - background-color: #23272b; - border-color: #1d2124; + background-color: #13161a; + border-color: #0d0f13; } .btn-dark:focus, .btn-dark.focus { color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); + background-color: #13161a; + border-color: #0d0f13; + box-shadow: 0 0 0 0.2rem rgba(68, 72, 79, 0.5); } .btn-dark.disabled, .btn-dark:disabled { color: #fff; - background-color: #343a40; - border-color: #343a40; + background-color: #232830; + border-color: #232830; } .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { color: #fff; - background-color: #1d2124; - border-color: #171a1d; + background-color: #0d0f13; + border-color: #08090b; } .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); + box-shadow: 0 0 0 0.2rem rgba(68, 72, 79, 0.5); } .btn-outline-primary { - color: #3490dc; - border-color: #3490dc; + color: #00e5d4; + border-color: #00e5d4; } .btn-outline-primary:hover { - color: #fff; - background-color: #3490dc; - border-color: #3490dc; + color: #212529; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #3490dc; + color: #00e5d4; background-color: transparent; } .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #3490dc; - border-color: #3490dc; + color: #212529; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; + color: #2b313b; + border-color: #2b313b; } .btn-outline-secondary:hover { color: #fff; - background-color: #6c757d; - border-color: #6c757d; + background-color: #2b313b; + border-color: #2b313b; } .btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(43, 49, 59, 0.5); } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; + color: #2b313b; background-color: transparent; } .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { color: #fff; - background-color: #6c757d; - border-color: #6c757d; + background-color: #2b313b; + border-color: #2b313b; } .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(43, 49, 59, 0.5); } .btn-outline-success { @@ -2745,28 +2745,28 @@ fieldset:disabled a.btn { } .btn-outline-info { - color: #6cb2eb; - border-color: #6cb2eb; + color: #00e5d4; + border-color: #00e5d4; } .btn-outline-info:hover { color: #212529; - background-color: #6cb2eb; - border-color: #6cb2eb; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .btn-outline-info.disabled, .btn-outline-info:disabled { - color: #6cb2eb; + color: #00e5d4; background-color: transparent; } .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { color: #212529; - background-color: #6cb2eb; - border-color: #6cb2eb; + background-color: #00e5d4; + border-color: #00e5d4; } .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .btn-outline-warning { @@ -2820,62 +2820,62 @@ fieldset:disabled a.btn { } .btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; + color: #e2e8f0; + border-color: #e2e8f0; } .btn-outline-light:hover { color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; + background-color: #e2e8f0; + border-color: #e2e8f0; } .btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(226, 232, 240, 0.5); } .btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; + color: #e2e8f0; background-color: transparent; } .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; + background-color: #e2e8f0; + border-color: #e2e8f0; } .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(226, 232, 240, 0.5); } .btn-outline-dark { - color: #343a40; - border-color: #343a40; + color: #232830; + border-color: #232830; } .btn-outline-dark:hover { color: #fff; - background-color: #343a40; - border-color: #343a40; + background-color: #232830; + border-color: #232830; } .btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(35, 40, 48, 0.5); } .btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; + color: #232830; background-color: transparent; } .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { color: #fff; - background-color: #343a40; - border-color: #343a40; + background-color: #232830; + border-color: #232830; } .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(35, 40, 48, 0.5); } .btn-link { font-weight: 400; - color: #3490dc; + color: #00e5d4; text-decoration: none; } .btn-link:hover { - color: #1d68a7; + color: #00998d; text-decoration: underline; } .btn-link:focus, .btn-link.focus { @@ -2978,7 +2978,7 @@ input[type=button].btn-block { padding: 0.5rem 0; margin: 0.125rem 0 0; font-size: 0.9rem; - color: #212529; + color: #e2e8f0; text-align: left; list-style: none; background-color: #fff; @@ -3149,7 +3149,7 @@ input[type=button].btn-block { .dropdown-item.active, .dropdown-item:active { color: #fff; text-decoration: none; - background-color: #3490dc; + background-color: #00e5d4; } .dropdown-item.disabled, .dropdown-item:disabled { color: #6c757d; @@ -3223,8 +3223,8 @@ input[type=button].btn-block { } .dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; + padding-right: 0.75rem; + padding-left: 0.75rem; } .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { margin-left: 0; @@ -3381,11 +3381,11 @@ input[type=button].btn-block { font-size: 0.9rem; font-weight: 400; line-height: 1.6; - color: #495057; + color: #e2e8f0; text-align: center; white-space: nowrap; background-color: #e9ecef; - border: 1px solid #ced4da; + border: 1px solid #2f363f; border-radius: 0.25rem; } .input-group-text input[type=radio], @@ -3474,19 +3474,19 @@ input[type=button].btn-block { } .custom-control-input:checked ~ .custom-control-label::before { color: #fff; - border-color: #3490dc; - background-color: #3490dc; + border-color: #00e5d4; + background-color: #00e5d4; } .custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #a1cbef; + border-color: #66fff4; } .custom-control-input:not(:disabled):active ~ .custom-control-label::before { color: #fff; - background-color: #cce3f6; - border-color: #cce3f6; + background-color: #99fff7; + border-color: #99fff7; } .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { color: #6c757d; @@ -3509,7 +3509,7 @@ input[type=button].btn-block { height: 1rem; pointer-events: none; content: ""; - background-color: #fff; + background-color: #2b313b; border: #adb5bd solid 1px; } .custom-control-label::after { @@ -3530,17 +3530,17 @@ input[type=button].btn-block { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #3490dc; - background-color: #3490dc; + border-color: #00e5d4; + background-color: #00e5d4; } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(52, 144, 220, 0.5); + background-color: rgba(0, 229, 212, 0.5); } .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(52, 144, 220, 0.5); + background-color: rgba(0, 229, 212, 0.5); } .custom-radio .custom-control-label::before { @@ -3550,7 +3550,7 @@ input[type=button].btn-block { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(52, 144, 220, 0.5); + background-color: rgba(0, 229, 212, 0.5); } .custom-switch { @@ -3577,11 +3577,11 @@ input[type=button].btn-block { } } .custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; + background-color: #2b313b; transform: translateX(0.75rem); } .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(52, 144, 220, 0.5); + background-color: rgba(0, 229, 212, 0.5); } .custom-select { @@ -3592,21 +3592,21 @@ input[type=button].btn-block { font-size: 0.9rem; font-weight: 400; line-height: 1.6; - color: #495057; + color: #e2e8f0; vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - border: 1px solid #ced4da; + background: #2b313b url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + border: 1px solid #2f363f; border-radius: 0.25rem; appearance: none; } .custom-select:focus { - border-color: #a1cbef; + border-color: #66fff4; outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; + color: #e2e8f0; + background-color: #2b313b; } .custom-select[multiple], .custom-select[size]:not([size="1"]) { height: auto; @@ -3622,7 +3622,7 @@ input[type=button].btn-block { } .custom-select:-moz-focusring { color: transparent; - text-shadow: 0 0 0 #495057; + text-shadow: 0 0 0 #e2e8f0; } .custom-select-sm { @@ -3658,8 +3658,8 @@ input[type=button].btn-block { opacity: 0; } .custom-file-input:focus ~ .custom-file-label { - border-color: #a1cbef; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + border-color: #66fff4; + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label { background-color: #e9ecef; @@ -3681,9 +3681,9 @@ input[type=button].btn-block { padding: 0.375rem 0.75rem; font-weight: 400; line-height: 1.6; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; + color: #e2e8f0; + background-color: #2b313b; + border: 1px solid #2f363f; border-radius: 0.25rem; } .custom-file-label::after { @@ -3696,7 +3696,7 @@ input[type=button].btn-block { height: calc(1.6em + 0.75rem); padding: 0.375rem 0.75rem; line-height: 1.6; - color: #495057; + color: #e2e8f0; content: "Browse"; background-color: #e9ecef; border-left: inherit; @@ -3714,13 +3714,13 @@ input[type=button].btn-block { outline: none; } .custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 1px #1a1e23, 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 1px #1a1e23, 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 1px #1a1e23, 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .custom-range::-moz-focus-outer { border: 0; @@ -3729,7 +3729,7 @@ input[type=button].btn-block { width: 1rem; height: 1rem; margin-top: -0.25rem; - background-color: #3490dc; + background-color: #00e5d4; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; @@ -3741,7 +3741,7 @@ input[type=button].btn-block { } } .custom-range::-webkit-slider-thumb:active { - background-color: #cce3f6; + background-color: #99fff7; } .custom-range::-webkit-slider-runnable-track { width: 100%; @@ -3755,7 +3755,7 @@ input[type=button].btn-block { .custom-range::-moz-range-thumb { width: 1rem; height: 1rem; - background-color: #3490dc; + background-color: #00e5d4; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; @@ -3767,7 +3767,7 @@ input[type=button].btn-block { } } .custom-range::-moz-range-thumb:active { - background-color: #cce3f6; + background-color: #99fff7; } .custom-range::-moz-range-track { width: 100%; @@ -3784,7 +3784,7 @@ input[type=button].btn-block { margin-top: 0; margin-right: 0.2rem; margin-left: 0.2rem; - background-color: #3490dc; + background-color: #00e5d4; border: 0; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; @@ -3796,7 +3796,7 @@ input[type=button].btn-block { } } .custom-range::-ms-thumb:active { - background-color: #cce3f6; + background-color: #99fff7; } .custom-range::-ms-track { width: 100%; @@ -3888,8 +3888,8 @@ input[type=button].btn-block { .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: #495057; - background-color: #f8fafc; - border-color: #dee2e6 #dee2e6 #f8fafc; + background-color: #1a1e23; + border-color: #dee2e6 #dee2e6 #1a1e23; } .nav-tabs .dropdown-menu { margin-top: -1px; @@ -3903,7 +3903,7 @@ input[type=button].btn-block { .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; - background-color: #3490dc; + background-color: #00e5d4; } .nav-fill .nav-item { @@ -4252,13 +4252,13 @@ input[type=button].btn-block { } .navbar-dark .navbar-brand { - color: #fff; + color: #00e5d4; } .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; + color: #00e5d4; } .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); + color: #94a3b8; } .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { color: rgba(255, 255, 255, 0.75); @@ -4270,23 +4270,23 @@ input[type=button].btn-block { .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active { - color: #fff; + color: #00e5d4; } .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); + color: #94a3b8; border-color: rgba(255, 255, 255, 0.1); } .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); + color: #94a3b8; } .navbar-dark .navbar-text a { - color: #fff; + color: #00e5d4; } .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; + color: #00e5d4; } .card { @@ -4295,22 +4295,22 @@ input[type=button].btn-block { flex-direction: column; min-width: 0; word-wrap: break-word; - background-color: #fff; + background-color: #232830; background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; + border: 1px solid #2f363f; + border-radius: 0.5rem; } .card > hr { margin-right: 0; margin-left: 0; } .card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } .card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } .card-body { @@ -4342,11 +4342,11 @@ input[type=button].btn-block { .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); + background-color: rgba(0, 0, 0, 0.2); + border-bottom: 1px solid #2f363f; } .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; + border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0; } .card-header + .list-group .list-group-item:first-child { border-top: 0; @@ -4354,11 +4354,11 @@ input[type=button].btn-block { .card-footer { padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); + background-color: rgba(0, 0, 0, 0.2); + border-top: 1px solid #2f363f; } .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); + border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px); } .card-header-tabs { @@ -4391,14 +4391,14 @@ input[type=button].btn-block { .card-img, .card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); + border-top-left-radius: calc(0.5rem - 1px); + border-top-right-radius: calc(0.5rem - 1px); } .card-img, .card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); + border-bottom-right-radius: calc(0.5rem - 1px); + border-bottom-left-radius: calc(0.5rem - 1px); } .card-deck .card { @@ -4536,13 +4536,13 @@ input[type=button].btn-block { padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; - color: #3490dc; - background-color: #fff; - border: 1px solid #dee2e6; + color: #e2e8f0; + background-color: #232830; + border: 1px solid #2f363f; } .page-link:hover { z-index: 2; - color: #1d68a7; + color: #00998d; text-decoration: none; background-color: #e9ecef; border-color: #dee2e6; @@ -4550,7 +4550,7 @@ input[type=button].btn-block { .page-link:focus { z-index: 3; outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.25); } .page-item:first-child .page-link { @@ -4564,9 +4564,9 @@ input[type=button].btn-block { } .page-item.active .page-link { z-index: 3; - color: #fff; - background-color: #3490dc; - border-color: #3490dc; + color: #000; + background-color: #00e5d4; + border-color: #00e5d4; } .page-item.disabled .page-link { color: #6c757d; @@ -4606,8 +4606,8 @@ input[type=button].btn-block { .badge { display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; + padding: 0.3em 0.6em; + font-size: 0.8rem; font-weight: 700; line-height: 1; text-align: center; @@ -4641,29 +4641,29 @@ a.badge:hover, a.badge:focus { } .badge-primary { - color: #fff; - background-color: #3490dc; + color: #212529; + background-color: #00e5d4; } a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #2176bd; + color: #212529; + background-color: #00b2a5; } a.badge-primary:focus, a.badge-primary.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .badge-secondary { color: #fff; - background-color: #6c757d; + background-color: #2b313b; } a.badge-secondary:hover, a.badge-secondary:focus { color: #fff; - background-color: #545b62; + background-color: #16191e; } a.badge-secondary:focus, a.badge-secondary.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); + box-shadow: 0 0 0 0.2rem rgba(43, 49, 59, 0.5); } .badge-success { @@ -4681,15 +4681,15 @@ a.badge-success:focus, a.badge-success.focus { .badge-info { color: #212529; - background-color: #6cb2eb; + background-color: #00e5d4; } a.badge-info:hover, a.badge-info:focus { color: #212529; - background-color: #3f9ae5; + background-color: #00b2a5; } a.badge-info:focus, a.badge-info.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5); + box-shadow: 0 0 0 0.2rem rgba(0, 229, 212, 0.5); } .badge-warning { @@ -4720,28 +4720,28 @@ a.badge-danger:focus, a.badge-danger.focus { .badge-light { color: #212529; - background-color: #f8f9fa; + background-color: #e2e8f0; } a.badge-light:hover, a.badge-light:focus { color: #212529; - background-color: #dae0e5; + background-color: #c0cddf; } a.badge-light:focus, a.badge-light.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(226, 232, 240, 0.5); } .badge-dark { color: #fff; - background-color: #343a40; + background-color: #232830; } a.badge-dark:hover, a.badge-dark:focus { color: #fff; - background-color: #1d2124; + background-color: #0d0f13; } a.badge-dark:focus, a.badge-dark.focus { outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); + box-shadow: 0 0 0 0.2rem rgba(35, 40, 48, 0.5); } .jumbotron { @@ -4790,27 +4790,27 @@ a.badge-dark:focus, a.badge-dark.focus { } .alert-primary { - color: #1b4b72; - background-color: #d6e9f8; - border-color: #c6e0f5; + color: #00776e; + background-color: #ccfaf6; + border-color: #b8f8f3; } .alert-primary hr { - border-top-color: #b0d4f1; + border-top-color: #a1f6ef; } .alert-primary .alert-link { - color: #113049; + color: #00443f; } .alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; + color: #16191f; + background-color: #d5d6d8; + border-color: #c4c5c8; } .alert-secondary hr { - border-top-color: #c8cbcf; + border-top-color: #b7b8bc; } .alert-secondary .alert-link { - color: #202326; + color: #010101; } .alert-success { @@ -4826,15 +4826,15 @@ a.badge-dark:focus, a.badge-dark.focus { } .alert-info { - color: #385d7a; - background-color: #e2f0fb; - border-color: #d6e9f9; + color: #00776e; + background-color: #ccfaf6; + border-color: #b8f8f3; } .alert-info hr { - border-top-color: #c0ddf6; + border-top-color: #a1f6ef; } .alert-info .alert-link { - color: #284257; + color: #00443f; } .alert-warning { @@ -4862,27 +4862,27 @@ a.badge-dark:focus, a.badge-dark.focus { } .alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; + color: #76797d; + background-color: #f9fafc; + border-color: #f7f9fb; } .alert-light hr { - border-top-color: #ececf6; + border-top-color: #e6ecf3; } .alert-light .alert-link { - color: #686868; + color: #5d6063; } .alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; + color: #121519; + background-color: #d3d4d6; + border-color: #c1c3c5; } .alert-dark hr { - border-top-color: #b9bbbe; + border-top-color: #b4b6b9; } .alert-dark .alert-link { - color: #040505; + color: black; } @keyframes progress-bar-stripes { @@ -4910,7 +4910,7 @@ a.badge-dark:focus, a.badge-dark.focus { color: #fff; text-align: center; white-space: nowrap; - background-color: #3490dc; + background-color: #00e5d4; transition: width 0.6s ease; } @media (prefers-reduced-motion: reduce) { @@ -4961,7 +4961,7 @@ a.badge-dark:focus, a.badge-dark.focus { background-color: #f8f9fa; } .list-group-item-action:active { - color: #212529; + color: #e2e8f0; background-color: #e9ecef; } @@ -4988,8 +4988,8 @@ a.badge-dark:focus, a.badge-dark.focus { .list-group-item.active { z-index: 2; color: #fff; - background-color: #3490dc; - border-color: #3490dc; + background-color: #00e5d4; + border-color: #00e5d4; } .list-group-item + .list-group-item { border-top-width: 0; @@ -5131,31 +5131,31 @@ a.badge-dark:focus, a.badge-dark.focus { } .list-group-item-primary { - color: #1b4b72; - background-color: #c6e0f5; + color: #00776e; + background-color: #b8f8f3; } .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #1b4b72; - background-color: #b0d4f1; + color: #00776e; + background-color: #a1f6ef; } .list-group-item-primary.list-group-item-action.active { color: #fff; - background-color: #1b4b72; - border-color: #1b4b72; + background-color: #00776e; + border-color: #00776e; } .list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; + color: #16191f; + background-color: #c4c5c8; } .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; + color: #16191f; + background-color: #b7b8bc; } .list-group-item-secondary.list-group-item-action.active { color: #fff; - background-color: #383d41; - border-color: #383d41; + background-color: #16191f; + border-color: #16191f; } .list-group-item-success { @@ -5173,17 +5173,17 @@ a.badge-dark:focus, a.badge-dark.focus { } .list-group-item-info { - color: #385d7a; - background-color: #d6e9f9; + color: #00776e; + background-color: #b8f8f3; } .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #385d7a; - background-color: #c0ddf6; + color: #00776e; + background-color: #a1f6ef; } .list-group-item-info.list-group-item-action.active { color: #fff; - background-color: #385d7a; - border-color: #385d7a; + background-color: #00776e; + border-color: #00776e; } .list-group-item-warning { @@ -5215,31 +5215,31 @@ a.badge-dark:focus, a.badge-dark.focus { } .list-group-item-light { - color: #818182; - background-color: #fdfdfe; + color: #76797d; + background-color: #f7f9fb; } .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; + color: #76797d; + background-color: #e6ecf3; } .list-group-item-light.list-group-item-action.active { color: #fff; - background-color: #818182; - border-color: #818182; + background-color: #76797d; + border-color: #76797d; } .list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; + color: #121519; + background-color: #c1c3c5; } .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; + color: #121519; + background-color: #b4b6b9; } .list-group-item-dark.list-group-item-action.active { color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; + background-color: #121519; + border-color: #121519; } .close { @@ -5424,7 +5424,7 @@ a.close.disabled { align-items: flex-start; justify-content: space-between; padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; + border-bottom: 1px solid #2f363f; border-top-left-radius: calc(0.3rem - 1px); border-top-right-radius: calc(0.3rem - 1px); } @@ -5450,7 +5450,7 @@ a.close.disabled { align-items: center; justify-content: flex-end; padding: 0.75rem; - border-top: 1px solid #dee2e6; + border-top: 1px solid #2f363f; border-bottom-right-radius: calc(0.3rem - 1px); border-bottom-left-radius: calc(0.3rem - 1px); } @@ -5506,7 +5506,7 @@ a.close.disabled { z-index: 1070; display: block; margin: 0; - font-family: "Nunito", sans-serif; + font-family: "Inter", "Nunito", sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; @@ -5608,7 +5608,7 @@ a.close.disabled { z-index: 1060; display: block; max-width: 276px; - font-family: "Nunito", sans-serif; + font-family: "Inter", "Nunito", sans-serif; font-style: normal; font-weight: 400; line-height: 1.6; @@ -5743,7 +5743,7 @@ a.close.disabled { .popover-body { padding: 0.5rem 0.75rem; - color: #212529; + color: #e2e8f0; } .carousel { @@ -5995,23 +5995,23 @@ a.close.disabled { } .bg-primary { - background-color: #3490dc !important; + background-color: #00e5d4 !important; } a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus { - background-color: #2176bd !important; + background-color: #00b2a5 !important; } .bg-secondary { - background-color: #6c757d !important; + background-color: #2b313b !important; } a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus { - background-color: #545b62 !important; + background-color: #16191e !important; } .bg-success { @@ -6025,13 +6025,13 @@ button.bg-success:focus { } .bg-info { - background-color: #6cb2eb !important; + background-color: #00e5d4 !important; } a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus { - background-color: #3f9ae5 !important; + background-color: #00b2a5 !important; } .bg-warning { @@ -6055,23 +6055,23 @@ button.bg-danger:focus { } .bg-light { - background-color: #f8f9fa !important; + background-color: #e2e8f0 !important; } a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus { - background-color: #dae0e5 !important; + background-color: #c0cddf !important; } .bg-dark { - background-color: #343a40 !important; + background-color: #232830 !important; } a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus { - background-color: #1d2124 !important; + background-color: #0d0f13 !important; } .bg-white { @@ -6083,23 +6083,23 @@ button.bg-dark:focus { } .border { - border: 1px solid #dee2e6 !important; + border: 1px solid #2f363f !important; } .border-top { - border-top: 1px solid #dee2e6 !important; + border-top: 1px solid #2f363f !important; } .border-right { - border-right: 1px solid #dee2e6 !important; + border-right: 1px solid #2f363f !important; } .border-bottom { - border-bottom: 1px solid #dee2e6 !important; + border-bottom: 1px solid #2f363f !important; } .border-left { - border-left: 1px solid #dee2e6 !important; + border-left: 1px solid #2f363f !important; } .border-0 { @@ -6123,11 +6123,11 @@ button.bg-dark:focus { } .border-primary { - border-color: #3490dc !important; + border-color: #00e5d4 !important; } .border-secondary { - border-color: #6c757d !important; + border-color: #2b313b !important; } .border-success { @@ -6135,7 +6135,7 @@ button.bg-dark:focus { } .border-info { - border-color: #6cb2eb !important; + border-color: #00e5d4 !important; } .border-warning { @@ -6147,11 +6147,11 @@ button.bg-dark:focus { } .border-light { - border-color: #f8f9fa !important; + border-color: #e2e8f0 !important; } .border-dark { - border-color: #343a40 !important; + border-color: #232830 !important; } .border-white { @@ -9674,19 +9674,19 @@ button.bg-dark:focus { } .text-primary { - color: #3490dc !important; + color: #00e5d4 !important; } a.text-primary:hover, a.text-primary:focus { - color: #1d68a7 !important; + color: #00998d !important; } .text-secondary { - color: #6c757d !important; + color: #2b313b !important; } a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; + color: #0b0c0f !important; } .text-success { @@ -9698,11 +9698,11 @@ a.text-success:hover, a.text-success:focus { } .text-info { - color: #6cb2eb !important; + color: #00e5d4 !important; } a.text-info:hover, a.text-info:focus { - color: #298fe2 !important; + color: #00998d !important; } .text-warning { @@ -9722,23 +9722,23 @@ a.text-danger:hover, a.text-danger:focus { } .text-light { - color: #f8f9fa !important; + color: #e2e8f0 !important; } a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; + color: #b0c0d6 !important; } .text-dark { - color: #343a40 !important; + color: #232830 !important; } a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; + color: #030304 !important; } .text-body { - color: #212529 !important; + color: #e2e8f0 !important; } .text-muted { @@ -9868,12 +9868,12 @@ h3 { .table-dark td, .table-dark thead th, .table-dark tbody + tbody { - border-color: #dee2e6; + border-color: #2f363f; } .table .thead-dark th { color: inherit; - border-color: #dee2e6; + border-color: #2f363f; } } html { @@ -9884,55 +9884,72 @@ body { width: 100%; height: auto; min-height: 35rem; - background: linear-gradient(to bottom, rgba(1, 1, 1, 0.25) 0%, rgba(1, 1, 1, 0.45) 90%, rgba(2, 11, 26, 0.65) 100%), url("/img/world-bg.jpg"); - background-color: rgba(2, 11, 26, 0.65); - background-position: center; + background-color: #1a1e23; + background-image: linear-gradient(to bottom, rgba(1, 1, 1, 0.35) 0%, rgba(1, 1, 1, 0.55) 90%, rgba(26, 30, 35, 0.8) 100%), url("/img/world-bg.jpg"); + background-position: center top; background-repeat: no-repeat; background-attachment: fixed; background-size: cover; + color: #e2e8f0; } -.cover-container { - color: white; - max-width: 42em; +::-webkit-scrollbar { + width: 8px; } -.cover { - padding: 0 1.5rem; +::-webkit-scrollbar-track { + background: #1a1e23; } -.cover .btn-lg, .cover .btn-group-lg > .btn { - padding: 0.75rem 1.25rem; - font-weight: 700; +::-webkit-scrollbar-thumb { + background: #2b313b; + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:hover { + background: #2f363f; } .navbar { - background-color: rgba(0, 0, 0, 0) !important; + background-color: rgba(26, 30, 35, 0.95) !important; + backdrop-filter: blur(10px); + border-bottom: 1px solid #2f363f; } -.navbar-toggler { - border-color: #808080; +.navbar-brand { + color: #00e5d4 !important; + font-weight: 700; + letter-spacing: 0.5px; } .navbar-dark .nav-link { - color: #e6e6e6 !important; + color: #94a3b8 !important; + font-weight: 600; + font-size: 0.85rem; + text-transform: uppercase; + letter-spacing: 0.5px; + padding: 0.5rem 1rem; + transition: color 0.2s; } -@media (min-width: 768px) { - .navbar-searchform { - margin-left: 0.5rem; - } -} -.nav-link:hover { - text-decoration: underline !important; +.navbar-dark .nav-link:hover { + color: #00e5d4 !important; + text-decoration: none !important; } .nav-bar-divider { display: inline; padding: 0 8px; - font-size: 0.9rem; + color: #94a3b8; + opacity: 0.5; + user-select: none; } +@media (min-width: 768px) { + .navbar-searchform { + margin-left: 0.5rem; + } +} .text-lg { font-size: 1.125rem; } -- cgit v1.2.3