This commit is contained in:
Leo
2021-12-01 10:28:49 -06:00
3 changed files with 15 additions and 4 deletions

View File

@@ -13,10 +13,10 @@ $black: #000 !default;
$blue: #0d6efd !default; $blue: #0d6efd !default;
$indigo: #6610f2 !default; $indigo: #6610f2 !default;
$purple: hsl(265deg 60% 50%) !default; // Chosen #6f42c1 !default; $purple: hsl(265, 60%, 50%) !default; // Chosen #6f42c1 !default;
$pink: #d63384 !default; $pink: #d63384 !default;
$red: #da0000 !default; // Chosen $red: #da0000 !default; // Chosen
$orange: hsla(30, 100%, 50%, 1) !default; // Chosen, the Gold color from God $orange: hsl(30, 100%, 50%) !default; // Chosen, the Gold color from God
$green: hsl(134, 87%, 30%) !default; // Chosen $green: hsl(134, 87%, 30%) !default; // Chosen
$green: #198754 !default; $green: #198754 !default;
$teal: #20c997 !default; $teal: #20c997 !default;
@@ -82,7 +82,8 @@ $code-color: $primary !default;
// Forms // Forms
$input-bg: $white; $input-bg: $white;
$input-color: $black; $input-color: $black;
$input-transition: null; $input-border-color: $gray-500;
$input-transition: none;
// Buttons // Buttons
$btn-box-shadow: null; $btn-box-shadow: null;

View File

@@ -1,3 +1,14 @@
.form-control { .form-control {
background-clip: inherit; // Remove weird border in input boxes background-clip: inherit; // Remove weird border in input boxes
} }
.form-control,
.form-select {
&:hover {
border-color: $gray-600;
}
&:focus {
border-color: $input-focus-border-color;
}
}

View File

@@ -1,5 +1,4 @@
#footer { #footer {
margin-top: 1rem;
padding-top: 1rem; padding-top: 1rem;
padding-bottom: 1.5rem; padding-bottom: 1.5rem;
color: $gray-500; color: $gray-500;