Files
CTFd/assets/scss/main.scss
Kevin Chung a64e7d51ef Squashed 'CTFd/themes/core-beta/' changes from 9126d77d..5ce3003b
5ce3003b Merge pull request #47 from aCursedComrade/patch-1
c9887cb1 Fix team template

git-subtree-dir: CTFd/themes/core-beta
git-subtree-split: 5ce3003b4d68352e629ee2d390bc999e7d6b071e
2023-06-11 15:56:28 -04:00

86 lines
1.8 KiB
SCSS

@use "bootstrap/scss/bootstrap" as * with (
$info: #5c728f
);
@use "includes/components/table";
@use "includes/components/jumbotron";
@use "includes/components/challenge";
@use "includes/components/sticky-footer";
@use "includes/components/graphs";
@use "includes/utils/fonts";
@use "includes/utils/opacity";
@use "includes/utils/min-height";
@use "includes/utils/cursors";
@use "includes/utils/lolight";
@use "includes/icons/award-icons";
@use "includes/icons/flag-icons";
h1,
h2 {
font-weight: 500;
letter-spacing: 2px;
}
a {
color: #337ab7;
text-decoration: none !important;
}
blockquote {
border-left: 4px solid $secondary;
padding-left: 15px;
}
.fa-spin.spinner {
text-align: center;
opacity: 0.5;
}
.badge-notification {
vertical-align: top;
margin-left: -1.5em;
font-size: 50%;
}
select.form-control {
height: auto !important;
}
.form-select {
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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 !important;
}
// HMM
.input-filled-valid {
background-color: transparent !important;
border-color: #a3d39c;
box-shadow: 0 0 0 0.1rem #a3d39c;
transition: background-color 0.3s, border-color 0.3s;
}
.input-filled-invalid {
background-color: transparent !important;
border-color: #d46767;
box-shadow: 0 0 0 0.1rem #d46767;
transition: background-color 0.3s, border-color 0.3s;
}
.form-control {
padding: 0.8em !important;
background: #f0f0f0;
color: #aaa;
/* Behavior changed in Bootstrap v4.1.3. See https://github.com/twbs/bootstrap/issues/27629 */
height: auto !important;
}
.form-control:focus {
background-color: transparent;
border-color: #a3d39c;
box-shadow: 0 0 0 0.1rem #a3d39c;
transition: background-color 0.3s, border-color 0.3s;
}