-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab38758
commit 97d1520
Showing
82 changed files
with
8,411 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/******* Customized Bootstrap ********/ | ||
|
||
$primary: #00B074; | ||
$secondary: #2B9BFF; | ||
$light: #EFFDF5; | ||
$dark: #2B3940; | ||
|
||
$font-family-base: 'Heebo', sans-serif; | ||
|
||
$headings-font-family: 'Inter', sans-serif; | ||
|
||
$body-bg: $light; | ||
|
||
$body-color: #666565; | ||
|
||
$headings-color: $dark; | ||
|
||
$headings-font-weight: 700; | ||
|
||
$display-font-weight: 800; | ||
|
||
$enable-responsive-font-sizes: true; | ||
|
||
$border-radius: 2px; | ||
|
||
$link-decoration: none; | ||
|
||
$enable-negative-margins: true; | ||
|
||
@import "bootstrap/scss/bootstrap"; |
118 changes: 118 additions & 0 deletions
118
content/project/OUTLIER_DETECTION/scss/bootstrap/scss/_accordion.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
// | ||
// Base styles | ||
// | ||
|
||
.accordion-button { | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
width: 100%; | ||
padding: $accordion-button-padding-y $accordion-button-padding-x; | ||
@include font-size($font-size-base); | ||
color: $accordion-button-color; | ||
text-align: left; // Reset button style | ||
background-color: $accordion-button-bg; | ||
border: 0; | ||
@include border-radius(0); | ||
overflow-anchor: none; | ||
@include transition($accordion-transition); | ||
|
||
&:not(.collapsed) { | ||
color: $accordion-button-active-color; | ||
background-color: $accordion-button-active-bg; | ||
box-shadow: inset 0 ($accordion-border-width * -1) 0 $accordion-border-color; | ||
|
||
&::after { | ||
background-image: escape-svg($accordion-button-active-icon); | ||
transform: $accordion-icon-transform; | ||
} | ||
} | ||
|
||
// Accordion icon | ||
&::after { | ||
flex-shrink: 0; | ||
width: $accordion-icon-width; | ||
height: $accordion-icon-width; | ||
margin-left: auto; | ||
content: ""; | ||
background-image: escape-svg($accordion-button-icon); | ||
background-repeat: no-repeat; | ||
background-size: $accordion-icon-width; | ||
@include transition($accordion-icon-transition); | ||
} | ||
|
||
&:hover { | ||
z-index: 2; | ||
} | ||
|
||
&:focus { | ||
z-index: 3; | ||
border-color: $accordion-button-focus-border-color; | ||
outline: 0; | ||
box-shadow: $accordion-button-focus-box-shadow; | ||
} | ||
} | ||
|
||
.accordion-header { | ||
margin-bottom: 0; | ||
} | ||
|
||
.accordion-item { | ||
background-color: $accordion-bg; | ||
border: $accordion-border-width solid $accordion-border-color; | ||
|
||
&:first-of-type { | ||
@include border-top-radius($accordion-border-radius); | ||
|
||
.accordion-button { | ||
@include border-top-radius($accordion-inner-border-radius); | ||
} | ||
} | ||
|
||
&:not(:first-of-type) { | ||
border-top: 0; | ||
} | ||
|
||
// Only set a border-radius on the last item if the accordion is collapsed | ||
&:last-of-type { | ||
@include border-bottom-radius($accordion-border-radius); | ||
|
||
.accordion-button { | ||
&.collapsed { | ||
@include border-bottom-radius($accordion-inner-border-radius); | ||
} | ||
} | ||
|
||
.accordion-collapse { | ||
@include border-bottom-radius($accordion-border-radius); | ||
} | ||
} | ||
} | ||
|
||
.accordion-body { | ||
padding: $accordion-body-padding-y $accordion-body-padding-x; | ||
} | ||
|
||
|
||
// Flush accordion items | ||
// | ||
// Remove borders and border-radius to keep accordion items edge-to-edge. | ||
|
||
.accordion-flush { | ||
.accordion-collapse { | ||
border-width: 0; | ||
} | ||
|
||
.accordion-item { | ||
border-right: 0; | ||
border-left: 0; | ||
@include border-radius(0); | ||
|
||
&:first-child { border-top: 0; } | ||
&:last-child { border-bottom: 0; } | ||
|
||
.accordion-button { | ||
@include border-radius(0); | ||
} | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
content/project/OUTLIER_DETECTION/scss/bootstrap/scss/_alert.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// | ||
// Base styles | ||
// | ||
|
||
.alert { | ||
position: relative; | ||
padding: $alert-padding-y $alert-padding-x; | ||
margin-bottom: $alert-margin-bottom; | ||
border: $alert-border-width solid transparent; | ||
@include border-radius($alert-border-radius); | ||
} | ||
|
||
// Headings for larger alerts | ||
.alert-heading { | ||
// Specified to prevent conflicts of changing $headings-color | ||
color: inherit; | ||
} | ||
|
||
// Provide class for links that match alerts | ||
.alert-link { | ||
font-weight: $alert-link-font-weight; | ||
} | ||
|
||
|
||
// Dismissible alerts | ||
// | ||
// Expand the right padding and account for the close button's positioning. | ||
|
||
.alert-dismissible { | ||
padding-right: $alert-dismissible-padding-r; | ||
|
||
// Adjust close link position | ||
.btn-close { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
z-index: $stretched-link-z-index + 1; | ||
padding: $alert-padding-y * 1.25 $alert-padding-x; | ||
} | ||
} | ||
|
||
|
||
// scss-docs-start alert-modifiers | ||
// Generate contextual modifier classes for colorizing the alert. | ||
|
||
@each $state, $value in $theme-colors { | ||
$alert-background: shift-color($value, $alert-bg-scale); | ||
$alert-border: shift-color($value, $alert-border-scale); | ||
$alert-color: shift-color($value, $alert-color-scale); | ||
@if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) { | ||
$alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale)); | ||
} | ||
.alert-#{$state} { | ||
@include alert-variant($alert-background, $alert-border, $alert-color); | ||
} | ||
} | ||
// scss-docs-end alert-modifiers |
29 changes: 29 additions & 0 deletions
29
content/project/OUTLIER_DETECTION/scss/bootstrap/scss/_badge.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Base class | ||
// | ||
// Requires one of the contextual, color modifier classes for `color` and | ||
// `background-color`. | ||
|
||
.badge { | ||
display: inline-block; | ||
padding: $badge-padding-y $badge-padding-x; | ||
@include font-size($badge-font-size); | ||
font-weight: $badge-font-weight; | ||
line-height: 1; | ||
color: $badge-color; | ||
text-align: center; | ||
white-space: nowrap; | ||
vertical-align: baseline; | ||
@include border-radius($badge-border-radius); | ||
@include gradient-bg(); | ||
|
||
// Empty badges collapse automatically | ||
&:empty { | ||
display: none; | ||
} | ||
} | ||
|
||
// Quick fix for badges in buttons | ||
.btn .badge { | ||
position: relative; | ||
top: -1px; | ||
} |
28 changes: 28 additions & 0 deletions
28
content/project/OUTLIER_DETECTION/scss/bootstrap/scss/_breadcrumb.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.breadcrumb { | ||
display: flex; | ||
flex-wrap: wrap; | ||
padding: $breadcrumb-padding-y $breadcrumb-padding-x; | ||
margin-bottom: $breadcrumb-margin-bottom; | ||
@include font-size($breadcrumb-font-size); | ||
list-style: none; | ||
background-color: $breadcrumb-bg; | ||
@include border-radius($breadcrumb-border-radius); | ||
} | ||
|
||
.breadcrumb-item { | ||
// The separator between breadcrumbs (by default, a forward-slash: "/") | ||
+ .breadcrumb-item { | ||
padding-left: $breadcrumb-item-padding-x; | ||
|
||
&::before { | ||
float: left; // Suppress inline spacings and underlining of the separator | ||
padding-right: $breadcrumb-item-padding-x; | ||
color: $breadcrumb-divider-color; | ||
content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{"/* rtl:"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{"*/"}; | ||
} | ||
} | ||
|
||
&.active { | ||
color: $breadcrumb-active-color; | ||
} | ||
} |
Oops, something went wrong.