summaryrefslogtreecommitdiffstats
path: root/custom.scss
diff options
context:
space:
mode:
authoranoduck <11767-anoduck@users.noreply.gitgud.io>2024-09-30 06:54:11 -0400
committeranoduck <11767-anoduck@users.noreply.gitgud.io>2024-09-30 06:54:35 -0400
commit668312fe84a562c1d00b890ea433d9e2d4502afb (patch)
treec9b432b262793f6d60f8552f79271e69f5734b3d /custom.scss
parent6b2c92638482a7b7eeb5e8320a816e471069b0c7 (diff)
chore: 🤖 Added content, fixed menu
Added more content, flushing out structure, and corrected some bugs.
Diffstat (limited to 'custom.scss')
-rw-r--r--custom.scss97
1 files changed, 5 insertions, 92 deletions
diff --git a/custom.scss b/custom.scss
index e957b89..de9380d 100644
--- a/custom.scss
+++ b/custom.scss
@@ -1,95 +1,8 @@
-// .gradient-featured {
-// background: $white;
-// background: linear-gradient(135deg, $white 0%, tint-color($primary, 80%) 100%);
-// }
+// Custom.scss
+// Option A: Include all of Bootstrap
-// .card-feature {
-// background-color: var(--#{$prefix}light) if($enable-important-utilities, !important, null);
-// }
+// Include any default variable overrides here (though functions won't be available)
-// .card-feature div i {
-// background: linear-gradient(135deg, tint-color($primary, 80%) 0%, $primary 100%);
-// -webkit-background-clip: text;
-// background-clip: text;
-// -webkit-text-fill-color: transparent;
-// }
+@import "../node_modules/bootstrap/scss/bootstrap";
-// scss-docs-start styling
-// .card-shrink {
-// transition: 0.3s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), 0.3s box-shadow, 0.3s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
-// cursor: pointer;
-// }
-
-// .card-shrink:hover {
-// transform: scale(0.99);
-// box-shadow: none if($enable-important-utilities, !important, null);
-// }
-// scss-docs-end styling
-
-// .footer {
-// background-color: $gray-800 if($enable-important-utilities, !important, null);
-// color: var(--#{$prefix}light) if($enable-important-utilities, !important, null);
-// }
-
-// .footer-muted {
-// color: var(--#{$prefix}light) if($enable-important-utilities, !important, null);
-// opacity: .7 if($enable-important-utilities, !important, null);
-// }
-
-// .link-bg-footer {
-// color: var(--#{$prefix}light) if($enable-important-utilities, !important, null);
-// &:hover,
-// &:focus {
-// color: $gray-400 if($enable-important-utilities, !important, null);
-// }
-// }
-
-// @if $enable-dark-mode {
-// @include color-mode(dark) {
-// .gradient-featured {
-// background: $gray-900;
-// background: linear-gradient(135deg, $gray-900 0%, shade-color($primary, 60%) 100%);
-// }
-
-// .card-feature {
-// background-color: var(--#{$prefix}tertiary-bg) if($enable-important-utilities, !important, null);
-// }
-
-// .card-feature div i {
-// background: linear-gradient(135deg, $primary 0%, shade-color($primary, 60%) 100%);
-// -webkit-background-clip: text;
-// background-clip: text;
-// -webkit-text-fill-color: transparent;
-// }
-
-// .footer {
-// background-color: var(--#{$prefix}tertiary-bg) if($enable-important-utilities, !important, null);
-// color: var(--#{$prefix}tertiary) if($enable-important-utilities, !important, null);
-// }
-
-// .link-bg-footer {
-// color: var(--#{$prefix}tertiary) if($enable-important-utilities, !important, null);
-// &:hover,
-// &:focus {
-// color: $gray-400 if($enable-important-utilities, !important, null);
-// }
-// }
-// }
-// }
-
-// .accordion-theme {
-// --#{$prefix}accordion-btn-padding-x: 0;
-// --#{$prefix}accordion-btn-focus-border-color: none;
-// --#{$prefix}accordion-btn-focus-box-shadow: none;
-// --#{$prefix}accordion-body-padding-x: 0;
-// --#{$prefix}accordion-active-color: var(--#{$prefix}primary);
-// --#{$prefix}accordion-active-bg: none;
-// }
-
-// @if $enable-dark-mode {
-// @include color-mode(dark) {
-// .accordion-theme .accordion-button {
-// background-color: transparent;
-// }
-// }
-// } \ No newline at end of file
+// Then add additional custom code here