Site Skeleton
This commit is contained in:
207
mdb/scss/free/_animations-basic.scss
Executable file
207
mdb/scss/free/_animations-basic.scss
Executable file
@ -0,0 +1,207 @@
|
||||
/*!
|
||||
* animate.css -http://daneden.me/animate
|
||||
* Version - 3.7.0
|
||||
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||||
*
|
||||
* Copyright (c) 2018 Daniel Eden
|
||||
*/
|
||||
.animated {
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
&.infinite {
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
&.delay-1s {
|
||||
animation-delay: 1s;
|
||||
}
|
||||
&.delay-2s {
|
||||
animation-delay: 2s;
|
||||
}
|
||||
&.delay-3s {
|
||||
animation-delay: 3s;
|
||||
}
|
||||
&.delay-4s {
|
||||
animation-delay: 4s;
|
||||
}
|
||||
&.delay-5s {
|
||||
animation-delay: 5s;
|
||||
}
|
||||
&.fast {
|
||||
animation-duration: 800ms;
|
||||
}
|
||||
&.faster {
|
||||
animation-duration: 500ms;
|
||||
}
|
||||
&.slow {
|
||||
animation-duration: 2s;
|
||||
}
|
||||
&.slower {
|
||||
animation-duration: 3s;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion) {
|
||||
.animated {
|
||||
transition: none !important;
|
||||
animation: unset !important;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeIn {
|
||||
animation-name: fadeIn;
|
||||
}
|
||||
|
||||
@keyframes fadeInDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -100%, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInDown {
|
||||
animation-name: fadeInDown;
|
||||
}
|
||||
|
||||
@keyframes fadeInLeft {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInLeft {
|
||||
animation-name: fadeInLeft;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeInRight {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(100%, 0, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInRight {
|
||||
animation-name: fadeInRight;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeInUp {
|
||||
animation-name: fadeInUp;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeOut {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOut {
|
||||
animation-name: fadeOut;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeOutDown {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutDown {
|
||||
animation-name: fadeOutDown;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeOutLeft {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutLeft {
|
||||
animation-name: fadeOutLeft;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeOutRight {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(100%, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutRight {
|
||||
animation-name: fadeOutRight;
|
||||
}
|
||||
|
||||
|
||||
@keyframes fadeOutUp {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -100%, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.fadeOutUp {
|
||||
animation-name: fadeOutUp;
|
||||
}
|
15
mdb/scss/free/_badges.scss
Executable file
15
mdb/scss/free/_badges.scss
Executable file
@ -0,0 +1,15 @@
|
||||
// Badges
|
||||
.badge {
|
||||
color: $white !important;
|
||||
border-radius: $border-radius-base;
|
||||
box-shadow: $z-depth-1;
|
||||
}
|
||||
.badge-pill {
|
||||
padding-right: $badge-pill-padding-x;
|
||||
padding-left: $badge-pill-padding-x;
|
||||
border-radius: $badge-pill-border-radius;
|
||||
}
|
||||
@each $name, $color in $basic-mdb-colors {
|
||||
@include make-badge($name, $color);
|
||||
}
|
||||
|
98
mdb/scss/free/_buttons.scss
Executable file
98
mdb/scss/free/_buttons.scss
Executable file
@ -0,0 +1,98 @@
|
||||
// Buttons
|
||||
.btn {
|
||||
margin: $btn-margin-basic;
|
||||
color: inherit;
|
||||
text-transform: uppercase;
|
||||
word-wrap: break-word;
|
||||
white-space: normal;
|
||||
cursor: pointer;
|
||||
border: 0;
|
||||
border-radius: $border-radius-base;
|
||||
box-shadow: $z-depth-1;
|
||||
transition: $btn-transition;
|
||||
@include button-size($btn-padding-y-basic, $btn-padding-x-basic, $btn-font-size-basic);
|
||||
|
||||
@include hover-focus-active {
|
||||
outline: 0;
|
||||
box-shadow: $z-depth-1-half;
|
||||
}
|
||||
|
||||
.fas,
|
||||
.fab,
|
||||
.far {
|
||||
&.right {
|
||||
margin-left: $btn-icon-margin;
|
||||
}
|
||||
&.left {
|
||||
margin-right: $btn-icon-margin;
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-lg {
|
||||
@include button-size($btn-padding-y-large, $btn-padding-x-large, $btn-font-size-large);
|
||||
}
|
||||
&.btn-md {
|
||||
@include button-size($btn-padding-y-medium, $btn-padding-x-medium, $btn-font-size-medium);
|
||||
}
|
||||
&.btn-sm {
|
||||
@include button-size($btn-padding-y-small, $btn-padding-x-small, $btn-font-size-small);
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&:disabled {
|
||||
@include hover-focus-active {
|
||||
box-shadow: $z-depth-1;
|
||||
}
|
||||
}
|
||||
|
||||
&[class*="btn-outline-"] {
|
||||
padding-top: $btn-outline-padding-y-basic;
|
||||
padding-bottom: $btn-outline-padding-y-basic;
|
||||
&.btn-lg {
|
||||
padding-top: $btn-outline-padding-y-large;
|
||||
padding-bottom: $btn-outline-padding-y-large;
|
||||
}
|
||||
&.btn-md {
|
||||
padding-top: $btn-outline-padding-y-medium;
|
||||
padding-bottom: $btn-outline-padding-y-medium;
|
||||
}
|
||||
&.btn-sm {
|
||||
padding-top: $btn-outline-padding-y-small;
|
||||
padding-bottom: $btn-outline-padding-y-small;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-link {
|
||||
color: $black-base;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
@include hover-focus-active {
|
||||
color: $black-base;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group {
|
||||
> .btn:not(:first-child),
|
||||
> .btn-group:not(:first-child) {
|
||||
margin-left: -$btn-group-margin;
|
||||
}
|
||||
}
|
||||
|
||||
@each $btn_name, $color_value in $mdb-colors {
|
||||
@include make-button($btn_name, $color_value);
|
||||
@include make-outline-button($btn_name, $color_value);
|
||||
}
|
||||
|
||||
@each $name, $val in $gradients {
|
||||
@include make-gradient-button($name, $val);
|
||||
}
|
||||
|
||||
.btn-warning:not(:disabled):not(.disabled).active,
|
||||
.btn-warning:not(:disabled):not(.disabled):active,
|
||||
.show>.btn-warning.dropdown-toggle {
|
||||
color: $white-base;
|
||||
}
|
||||
|
33
mdb/scss/free/_cards.scss
Executable file
33
mdb/scss/free/_cards.scss
Executable file
@ -0,0 +1,33 @@
|
||||
// Cards
|
||||
.card {
|
||||
font-weight: 400;
|
||||
border: 0;
|
||||
box-shadow: $z-depth-1;
|
||||
&[class*="border"] {
|
||||
border: 1px solid $grey-base;
|
||||
box-shadow: none;
|
||||
}
|
||||
.card-body {
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 400;
|
||||
}
|
||||
.card-title {
|
||||
a {
|
||||
transition: $md-card-link-transition;
|
||||
&:hover {
|
||||
transition: $md-card-link-transition;
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-text {
|
||||
font-size: $md-card-font-size;
|
||||
font-weight: 400;
|
||||
color: $md-card-text-color;
|
||||
}
|
||||
}
|
||||
.md-form {
|
||||
label {
|
||||
font-weight: 300;
|
||||
}
|
||||
}
|
||||
}
|
51
mdb/scss/free/_carousels.scss
Executable file
51
mdb/scss/free/_carousels.scss
Executable file
@ -0,0 +1,51 @@
|
||||
// Carousels
|
||||
.carousel {
|
||||
.carousel-control-prev-icon,
|
||||
.carousel-control-next-icon {
|
||||
width: $carousel-control-icon-width;
|
||||
height: $carousel-control-icon-height;
|
||||
}
|
||||
.carousel-control-prev-icon {
|
||||
background-image: $carousel-control-prev-icon;
|
||||
}
|
||||
.carousel-control-next-icon {
|
||||
background-image: $carousel-control-next-icon;
|
||||
}
|
||||
.carousel-indicators {
|
||||
li {
|
||||
width: $carousel-indicators-width;
|
||||
height: $carousel-indicators-height;
|
||||
border-radius: $carousel-indicators-border-radius;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
.carousel-fade {
|
||||
.carousel-item {
|
||||
opacity: 0;
|
||||
transition-duration: $carousel-transition-duration;
|
||||
transition-property: opacity;
|
||||
}
|
||||
.carousel-item.active,
|
||||
.carousel-item-next.carousel-item-left,
|
||||
.carousel-item-prev.carousel-item-right
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
.carousel-item-left,
|
||||
.carousel-item-right {
|
||||
&.active {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.carousel-item-next,
|
||||
.carousel-item-prev,
|
||||
.carousel-item.active,
|
||||
.carousel-item-left.active,
|
||||
.carousel-item-prev.active {
|
||||
transform: $carousel-item-transform;
|
||||
@supports (transform-style: preserve-3d) {
|
||||
transform: $carousel-item-transform-2;
|
||||
}
|
||||
}
|
||||
}
|
18
mdb/scss/free/_depreciated.scss
Normal file
18
mdb/scss/free/_depreciated.scss
Normal file
@ -0,0 +1,18 @@
|
||||
// These settings will be only for one version
|
||||
|
||||
// Scrolable navbar
|
||||
/*
|
||||
.navbar {
|
||||
&.fixed-top,
|
||||
&.sticky-top {
|
||||
.navbar-collapse {
|
||||
@media (min-width: 400px) and (max-width: 767px),
|
||||
(min-width: 800px) and (max-width: 850px) {
|
||||
max-height: 340px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
10
mdb/scss/free/_dropdowns.scss
Executable file
10
mdb/scss/free/_dropdowns.scss
Executable file
@ -0,0 +1,10 @@
|
||||
// Dropdowns
|
||||
.dropdown {
|
||||
.dropdown-menu {
|
||||
.dropdown-item {
|
||||
&:active {
|
||||
background-color: $grey-darken-1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
18
mdb/scss/free/_footers.scss
Executable file
18
mdb/scss/free/_footers.scss
Executable file
@ -0,0 +1,18 @@
|
||||
// Footers
|
||||
footer {
|
||||
&.page-footer {
|
||||
bottom: 0;
|
||||
color: $white-base;
|
||||
.container-fluid {
|
||||
width: auto;
|
||||
}
|
||||
.footer-copyright {
|
||||
overflow: hidden;
|
||||
color: $footer-copyright-color;
|
||||
background-color: $footer-copyright-bg-color;
|
||||
}
|
||||
a {
|
||||
color: $white-base;
|
||||
}
|
||||
}
|
||||
}
|
633
mdb/scss/free/_forms.scss
Executable file
633
mdb/scss/free/_forms.scss
Executable file
@ -0,0 +1,633 @@
|
||||
// Forms basic
|
||||
// Input + label wrapper styles
|
||||
.md-form {
|
||||
|
||||
// Text inputs
|
||||
input:not([type]),
|
||||
input[type=text]:not(.browser-default),
|
||||
input[type=password]:not(.browser-default),
|
||||
input[type=email]:not(.browser-default),
|
||||
input[type=url]:not(.browser-default),
|
||||
input[type=time]:not(.browser-default),
|
||||
input[type=date]:not(.browser-default),
|
||||
input[type=datetime]:not(.browser-default),
|
||||
input[type=datetime-local]:not(.browser-default),
|
||||
input[type=tel]:not(.browser-default),
|
||||
input[type=number]:not(.browser-default),
|
||||
input[type=search]:not(.browser-default),
|
||||
input[type=search-md],
|
||||
textarea.md-textarea {
|
||||
|
||||
// General Styles
|
||||
box-sizing: content-box;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-bottom: 1px solid $input-border-color;
|
||||
border-radius: 0;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
transition: $input-transition;
|
||||
|
||||
// Focused input style
|
||||
&:focus:not([readonly]) {
|
||||
border-bottom: 1px solid $input-md-focus-color;
|
||||
box-shadow: 0 1px 0 0 $input-md-focus-color;
|
||||
|
||||
// Focused label style
|
||||
+label {
|
||||
color: $input-md-focus-color;
|
||||
}
|
||||
}
|
||||
|
||||
// Form message shared styles
|
||||
+label:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: $input-label-after-top;
|
||||
display: block;
|
||||
opacity: 0;
|
||||
transition: $input-label-after-transition;
|
||||
}
|
||||
|
||||
// Valid input style
|
||||
&.valid,
|
||||
&:focus.valid {
|
||||
border-bottom: 1px solid $input-success-color;
|
||||
box-shadow: 0 1px 0 0 $input-success-color;
|
||||
}
|
||||
|
||||
&.valid+label:after,
|
||||
&:focus.valid+label:after {
|
||||
content: attr(data-success);
|
||||
color: $input-success-color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
// Invalid input style
|
||||
&.invalid,
|
||||
&:focus.invalid {
|
||||
border-bottom: 1px solid $input-error-color;
|
||||
box-shadow: 0 1px 0 0 $input-error-color;
|
||||
}
|
||||
|
||||
&.invalid+label:after,
|
||||
&:focus.invalid+label:after {
|
||||
content: attr(data-error);
|
||||
color: $input-error-color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.form-control.valid+label:after,
|
||||
&.form-control:focus.valid+label:after {
|
||||
top: $input-label-valid-top;
|
||||
}
|
||||
|
||||
&.form-control.invalid+label:after,
|
||||
&.form-control:focus.invalid+label:after {
|
||||
top: $input-label-invalid-top;
|
||||
}
|
||||
|
||||
&.form-control-lg.valid+label:after,
|
||||
&.form-control-lg:focus.valid+label:after {
|
||||
top: $input-label-valid-top-lg;
|
||||
}
|
||||
|
||||
&.form-control-lg.invalid+label:after,
|
||||
&.form-control-lg:focus.invalid+label:after {
|
||||
top: $input-label-invalid-top-lg;
|
||||
}
|
||||
|
||||
&.form-control-sm.valid+label:after,
|
||||
&.form-control-sm:focus.valid+label:after {
|
||||
top: $input-label-valid-top-sm;
|
||||
}
|
||||
|
||||
&.form-control-sm.invalid+label:after,
|
||||
&.form-control-sm:focus.invalid+label:after {
|
||||
top: $input-label-invalid-top-sm;
|
||||
}
|
||||
}
|
||||
|
||||
>input[type=date]:not(.browser-default)+label {
|
||||
transform: translateY(-27px) scale(0.8);
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
|
||||
>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
|
||||
>input[type=time]:not(.browser-default)+label {
|
||||
font-size: .8rem;
|
||||
transform: translateY(-25px);
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
|
||||
.was-validated {
|
||||
input[type=text] {
|
||||
&:valid {
|
||||
+label {
|
||||
color: $input-success-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
&:invalid {
|
||||
+label {
|
||||
color: $input-error-color !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-control {
|
||||
&:valid:focus {
|
||||
box-shadow: 0 1px 0 0 $input-success-color !important;
|
||||
}
|
||||
|
||||
&:valid {
|
||||
border-color: $input-success-color !important;
|
||||
}
|
||||
|
||||
&:invalid:focus {
|
||||
box-shadow: 0 1px 0 0 $input-error-color !important;
|
||||
}
|
||||
|
||||
&:invalid {
|
||||
border-color: $input-error-color !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Input with label
|
||||
.form-control {
|
||||
margin: 0 0 $input-form-control-margin-bottom 0;
|
||||
border-radius: 0;
|
||||
padding: $input-form-control-padding-top 0 $input-form-control-padding-bottom 0;
|
||||
background-color: transparent;
|
||||
height: auto;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&:disabled,
|
||||
&[readonly] {
|
||||
border-bottom: 1px solid $grey-lighten-1;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
&.is-valid {
|
||||
border-color: $input-success-color;
|
||||
|
||||
&:focus {
|
||||
border-color: $input-success-color !important;
|
||||
box-shadow: 0 1px 0 0 $input-success-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-invalid {
|
||||
border-color: $input-error-color;
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 1px 0 0 $input-error-color !important;
|
||||
border-color: $input-error-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
&.is-valid,
|
||||
&.is-invalid {
|
||||
background-position: center right !important;
|
||||
}
|
||||
}
|
||||
|
||||
@include make-input($input-validate-mb, $input-label-font-size, $input-label-active-font-size, $input-prefix-top, $input-prefix-font-size, $input-prefix-margin-left, $input-prefix-width, $input-form-text-ml);
|
||||
position: relative;
|
||||
margin-top: $input-md-form-margin-top;
|
||||
margin-bottom: $input-md-form-margin-bottom;
|
||||
|
||||
label {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
font-size: 1rem;
|
||||
transition: transform .2s ease-out, color .2s ease-out;
|
||||
transform-origin: 0% 100%;
|
||||
transform: translateY(12px);
|
||||
cursor: text;
|
||||
color: $input-label-color;
|
||||
|
||||
&.active {
|
||||
transform: translateY(-14px) scale(.8);
|
||||
}
|
||||
}
|
||||
|
||||
.prefix {
|
||||
position: absolute;
|
||||
transition: $input-prefix-transition;
|
||||
|
||||
&.active {
|
||||
color: $input-md-focus-color;
|
||||
}
|
||||
}
|
||||
|
||||
&.form-lg {
|
||||
@include make-input($input-validate-mb-lg, $input-label-font-size-lg, $input-label-active-font-size-lg, $input-prefix-top-lg, $input-prefix-font-size-lg, $input-prefix-margin-left-lg, $input-prefix-width-lg, $input-form-text-ml-lg);
|
||||
}
|
||||
|
||||
&.form-sm {
|
||||
@include make-input($input-validate-mb-sm, $input-label-font-size-sm, $input-label-active-font-size-sm, $input-prefix-top-sm, $input-prefix-font-size-sm, $input-prefix-margin-left-sm, $input-prefix-width-sm, $input-form-text-ml-sm);
|
||||
}
|
||||
|
||||
// Textarea
|
||||
textarea {
|
||||
&.md-textarea {
|
||||
overflow-y: hidden;
|
||||
padding: $textarea-padding 0;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
&.md-textarea-auto {
|
||||
padding: 0;
|
||||
padding-top: $textarea-padding;
|
||||
}
|
||||
|
||||
// Label color for textarea
|
||||
// ~label {
|
||||
// &.active {
|
||||
// color: $input-md-focus-color;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
&.md-outline {
|
||||
position: relative;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
input[type=email],
|
||||
input[type=url],
|
||||
input[type=time],
|
||||
input[type=date],
|
||||
input[type=datetime-local],
|
||||
input[type=tel],
|
||||
input[type=number],
|
||||
input[type=search-md],
|
||||
input[type=search],
|
||||
textarea.md-textarea {
|
||||
// General Styles
|
||||
transition: all .3s;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
border: 1px solid #dadce0;
|
||||
border-radius: 4px;
|
||||
background-color: transparent;
|
||||
box-sizing: border-box;
|
||||
|
||||
// Focused input style
|
||||
&:focus:not([readonly]) {
|
||||
border-color: #4285f4;
|
||||
box-shadow: inset 0px 0px 0px 1px #4285f4;
|
||||
|
||||
// Focused label style
|
||||
+label {
|
||||
color: #4285f4;
|
||||
}
|
||||
}
|
||||
|
||||
// Valid input style
|
||||
&.valid,
|
||||
&:focus.valid {
|
||||
border-color: $input-success-color;
|
||||
box-shadow: inset 0px 0px 0px 1px $input-success-color;
|
||||
}
|
||||
|
||||
&:focus:not([readonly]).valid+label,
|
||||
&.valid+label:after,
|
||||
&:focus.valid+label:after {
|
||||
content: attr(data-success);
|
||||
color: $input-success-color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
// Invalid input style
|
||||
&.invalid,
|
||||
&:focus.invalid {
|
||||
border-color: $input-error-color;
|
||||
box-shadow: inset 0px 0px 0px 1px $input-error-color;
|
||||
}
|
||||
|
||||
&:focus:not([readonly]).invalid+label,
|
||||
&.invalid+label:after,
|
||||
&:focus.invalid+label:after {
|
||||
content: attr(data-error);
|
||||
color: $input-error-color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.form-control.valid+label:after,
|
||||
&.form-control:focus.valid+label:after {
|
||||
top: 2.75rem;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
&.form-control.invalid+label:after,
|
||||
&.form-control:focus.invalid+label:after {
|
||||
top: 2.75rem;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
|
||||
>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
|
||||
>input[type=time]:not(.browser-default)+label {
|
||||
transform: translateY(-9px) scale(.8);
|
||||
transform-origin: 0 0;
|
||||
background: #fff;
|
||||
font-weight: 500;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
font-size: 1rem;
|
||||
left: 8px;
|
||||
}
|
||||
|
||||
>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label.active,
|
||||
>input[type=time]:not(.browser-default)+label.active {
|
||||
transform: translateY(-9px) scale(.8);
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
|
||||
@-webkit-keyframes autofill {
|
||||
to {
|
||||
color: #495057;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes autofill {
|
||||
to {
|
||||
color: #495057;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
input:-webkit-autofill {
|
||||
-webkit-animation-name: autofill;
|
||||
animation-name: autofill;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
padding: .375rem .75rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 1rem;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding-left: 10px;
|
||||
transition: transform .2s ease-out, color .2s ease-out;
|
||||
transform-origin: 0% 100%;
|
||||
transform: translateY(9px);
|
||||
cursor: text;
|
||||
color: #757575;
|
||||
|
||||
&.active {
|
||||
transform: translateY(-13px) scale(.8);
|
||||
background: #fff;
|
||||
font-weight: 500;
|
||||
padding-right: 5px;
|
||||
padding-left: 5px;
|
||||
left: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
&.form-lg {
|
||||
.form-control {
|
||||
&.form-control-lg {
|
||||
padding: .5rem .725rem;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 1.25rem;
|
||||
transform: translateY(10px);
|
||||
|
||||
&.active {
|
||||
font-size: 1.1rem;
|
||||
transform: translateY(-14px) scale(.8);
|
||||
}
|
||||
}
|
||||
|
||||
.prefix {
|
||||
top: .65rem;
|
||||
font-size: 25px;
|
||||
|
||||
~input,
|
||||
~textarea {
|
||||
margin-left: 2.2rem;
|
||||
width: calc(100% - 2.2rem);
|
||||
}
|
||||
|
||||
~label {
|
||||
margin-left: 2.2rem;
|
||||
}
|
||||
|
||||
~.form-text {
|
||||
margin-left: 2.3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.form-sm {
|
||||
.form-control {
|
||||
&.form-control-sm {
|
||||
padding: .25rem .625rem;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: .8rem;
|
||||
transform: translateY(8px);
|
||||
|
||||
&.active {
|
||||
font-size: .85rem;
|
||||
transform: translateY(-12px) scale(.8);
|
||||
}
|
||||
}
|
||||
|
||||
.prefix {
|
||||
top: .5rem;
|
||||
font-size: 15px;
|
||||
|
||||
~input,
|
||||
~textarea {
|
||||
margin-left: 1.6rem;
|
||||
width: calc(100% - 1.6rem);
|
||||
}
|
||||
|
||||
~label {
|
||||
margin-left: 1.6rem;
|
||||
}
|
||||
|
||||
~.form-text {
|
||||
margin-left: 1.7rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.prefix {
|
||||
position: absolute;
|
||||
transition: color .2s;
|
||||
|
||||
&:focus {
|
||||
color: #4285f4;
|
||||
}
|
||||
}
|
||||
|
||||
.prefix {
|
||||
top: .6rem;
|
||||
font-size: 20px;
|
||||
|
||||
~input,
|
||||
~textarea {
|
||||
margin-left: 2rem;
|
||||
width: calc(100% - 2rem);
|
||||
}
|
||||
|
||||
~label {
|
||||
margin-left: 2rem;
|
||||
}
|
||||
|
||||
~.form-text {
|
||||
margin-left: 2.1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.character-counter {
|
||||
margin-top: -.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.md-bg {
|
||||
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
input[type=email],
|
||||
input[type=url],
|
||||
input[type=time],
|
||||
input[type=date],
|
||||
input[type=datetime-local],
|
||||
input[type=tel],
|
||||
input[type=number],
|
||||
input[type=search-md],
|
||||
input[type=search],
|
||||
textarea.md-textarea {
|
||||
&:focus:not([readonly]) {
|
||||
box-shadow: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
box-sizing: border-box;
|
||||
padding: 10px 5px;
|
||||
border: 0;
|
||||
border-top-left-radius: .3rem;
|
||||
border-top-right-radius: .3rem;
|
||||
background: #f5f5f5 no-repeat;
|
||||
background-image: linear-gradient(to bottom, $input-md-focus-color, $input-md-focus-color),
|
||||
linear-gradient(to bottom, $input-border-color, $input-border-color);
|
||||
background-size: 0 2px,
|
||||
100% 1px;
|
||||
background-position: 50% 100%,
|
||||
50% 100%;
|
||||
transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
|
||||
|
||||
&:focus {
|
||||
background-color: #dcdcdc;
|
||||
background-size: 100% 2px, 100% 1px;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
>input[type=date]:not(.browser-default)+label {
|
||||
transform: translateY(-12px) scale(0.8);
|
||||
transform-origin: 0 0;
|
||||
}
|
||||
|
||||
>input[type]:-webkit-autofill:not(.browser-default):not([type="search"])+label,
|
||||
>input[type=time]:not(.browser-default)+label {
|
||||
transform: translateY(-12px);
|
||||
transform-origin: 0 0;
|
||||
font-size: .8rem;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
padding: 1.1rem .7rem .4rem !important;
|
||||
}
|
||||
|
||||
label {
|
||||
top: 0;
|
||||
padding-left: .7rem;
|
||||
font-size: 1rem;
|
||||
transition: transform .2s ease-out, color .2s ease-out;
|
||||
transform-origin: 0% 100%;
|
||||
transform: translateY(13px);
|
||||
|
||||
&.active {
|
||||
transform: translateY(-3px) scale(.8);
|
||||
font-weight: 500;
|
||||
padding-left: .75rem;
|
||||
}
|
||||
}
|
||||
|
||||
&.form-lg {
|
||||
|
||||
label {
|
||||
transform: translateY(16px);
|
||||
|
||||
&.active {
|
||||
transform: translateY(-4px) scale(.8);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.form-sm {
|
||||
|
||||
label {
|
||||
transform: translateY(11px);
|
||||
|
||||
&.active {
|
||||
transform: translateY(-2px) scale(.8);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.md-form .form-control.is-invalid,
|
||||
.was-validated .md-form .form-control:invalid {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.md-form .form-control.is-valid,
|
||||
.was-validated .md-form .form-control:valid {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.needs-validation .md-form label {
|
||||
left: .3rem;
|
||||
}
|
||||
|
||||
// Custom fille input browser support
|
||||
@each $lang,
|
||||
$text in $custom-mdb-file-text {
|
||||
.custom-file-input {
|
||||
&:lang(#{$lang}) {
|
||||
&~.custom-file-label {
|
||||
&::after {
|
||||
content: $text;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
21
mdb/scss/free/_input-group.scss
Executable file
21
mdb/scss/free/_input-group.scss
Executable file
@ -0,0 +1,21 @@
|
||||
// Input group
|
||||
.md-form {
|
||||
&.input-group {
|
||||
label {
|
||||
top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.input-group-text {
|
||||
background-color: $input-group-text-bgc;
|
||||
&.md-addon {
|
||||
font-weight: 500;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
.form-control {
|
||||
padding: $input-group-form-control-py $input-group-form-control-px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
33
mdb/scss/free/_list-group.scss
Executable file
33
mdb/scss/free/_list-group.scss
Executable file
@ -0,0 +1,33 @@
|
||||
// List group
|
||||
.media {
|
||||
.media-left {
|
||||
padding: $list-group-padding;
|
||||
|
||||
img {
|
||||
box-shadow: $z-depth-1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-group {
|
||||
.list-group-item {
|
||||
&:first-child {
|
||||
border-top-left-radius: $border-radius-base;
|
||||
border-top-right-radius: $border-radius-base;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-bottom-left-radius: $border-radius-base;
|
||||
border-bottom-right-radius: $border-radius-base;
|
||||
}
|
||||
}
|
||||
|
||||
a,
|
||||
button {
|
||||
transition: $list-group-transition;
|
||||
|
||||
&:hover {
|
||||
transition: $list-group-transition;
|
||||
}
|
||||
}
|
||||
}
|
9
mdb/scss/free/_loader.scss
Normal file
9
mdb/scss/free/_loader.scss
Normal file
@ -0,0 +1,9 @@
|
||||
// Loader / Spinner
|
||||
.fast {
|
||||
&.spinner-border {
|
||||
animation: $spinner-border-animation;
|
||||
}
|
||||
&.spinner-grow {
|
||||
animation: $spinner-grow-animation;
|
||||
}
|
||||
}
|
293
mdb/scss/free/_modals.scss
Executable file
293
mdb/scss/free/_modals.scss
Executable file
@ -0,0 +1,293 @@
|
||||
// Modals
|
||||
// Styles for body
|
||||
body {
|
||||
&.modal-open {
|
||||
overflow: auto;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
&.scrollable {
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
// *** ENHANCED BOOTSTRAP MODALS ***///
|
||||
// General styles
|
||||
.modal-dialog {
|
||||
.modal-content {
|
||||
box-shadow: $z-depth-1-half;
|
||||
border: 0;
|
||||
border-radius: $border-radius-base;
|
||||
.modal-header {
|
||||
border-top-left-radius: $border-radius-base;
|
||||
border-top-right-radius: $border-radius-base;
|
||||
}
|
||||
}
|
||||
// Cascading modals
|
||||
&.cascading-modal {
|
||||
margin-top: 10%;
|
||||
.close {
|
||||
opacity: 1;
|
||||
text-shadow: none;
|
||||
color: $white-base;
|
||||
outline: 0;
|
||||
}
|
||||
// Cascading header
|
||||
.modal-header {
|
||||
box-shadow: $z-depth-1-half;
|
||||
margin: $cascading-modal-margin-top $cascading-modal-margin-right $cascading-modal-margin-bottom $cascading-modal-margin-left;
|
||||
border: none;
|
||||
border-radius: $border-radius-base;
|
||||
padding: $cascading-modal-padding;
|
||||
text-align: center;
|
||||
.close {
|
||||
margin-right: $cascading-modal-close-margin-right;
|
||||
}
|
||||
.title {
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
font-size: $cascading-modal-font-size;
|
||||
.fas, .fab, .far {
|
||||
margin-right: $cascading-modal-fa-margin-right;
|
||||
}
|
||||
}
|
||||
.social-buttons {
|
||||
margin-top: $cascading-modal-social-margin-top;
|
||||
a {
|
||||
font-size: $cascading-modal-a-font-size;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Cascading tabs nav
|
||||
.modal-c-tabs {
|
||||
.md-tabs {
|
||||
box-shadow: $z-depth-1;
|
||||
margin: $cascading-modal-tabs-margin-top $cascading-modal-tabs-margin-x 0 $cascading-modal-tabs-margin-x;
|
||||
display: flex;
|
||||
li {
|
||||
flex: 1;
|
||||
a {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content {
|
||||
padding: $cascading-modal-tabs-padding-top 0 0 0;
|
||||
}
|
||||
/*
|
||||
.md-tabs {
|
||||
border-radius: $md-card-border-radius;
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
border-radius: $md-card-border-radius;
|
||||
background-color: inherit;
|
||||
color: $white-base;
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
// Footer customization
|
||||
.modal-body,
|
||||
.modal-footer {
|
||||
padding-left: $modal-body-padding-left;
|
||||
padding-right: $modal-body-padding-right;
|
||||
color: $grey-darken-2;
|
||||
.additional-option {
|
||||
margin-top: $modal-body-margin-top;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
// Cascading avatar
|
||||
&.modal-avatar {
|
||||
margin-top: $modal-avatar-margin-top;
|
||||
.modal-header {
|
||||
box-shadow: none;
|
||||
@extend .img-fluid;
|
||||
margin: $modal-avatar-header-margin-top 0 $modal-avatar-header-margin-bottom;
|
||||
img {
|
||||
width: $modal-avatar-img-width;
|
||||
box-shadow: $z-depth-2;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Modal notify
|
||||
&.modal-notify {
|
||||
.heading {
|
||||
margin: 0;
|
||||
padding: $modal-notify-heading-padding;
|
||||
font-size: $modal-notify-font-size;
|
||||
color: $white-base;
|
||||
}
|
||||
.modal-header {
|
||||
box-shadow: $z-depth-1;
|
||||
border: 0;
|
||||
}
|
||||
.close {
|
||||
opacity: 1;
|
||||
}
|
||||
.modal-body {
|
||||
padding: $modal-notify-body-padding;
|
||||
color: $grey-darken-2;
|
||||
}
|
||||
@each $name, $color in $basic {
|
||||
&.modal-#{$name} {
|
||||
.modal-header {
|
||||
background-color: $color;
|
||||
}
|
||||
.fas, .fab, .far {
|
||||
color: $color;
|
||||
}
|
||||
.badge {
|
||||
background-color: $color;
|
||||
}
|
||||
.btn {
|
||||
.fas,
|
||||
.fab,
|
||||
.far {
|
||||
color: #fff;
|
||||
}
|
||||
&.btn-outline-#{$name} {
|
||||
.fas,
|
||||
.fab,
|
||||
.far {
|
||||
color: $color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Position & Size
|
||||
.modal {
|
||||
padding-right: 0 !important;
|
||||
.modal-dialog {
|
||||
@media (min-width: 768px) {
|
||||
&.modal-top {
|
||||
top: 0;
|
||||
}
|
||||
&.modal-left {
|
||||
left: 0;
|
||||
}
|
||||
&.modal-right {
|
||||
right: 0;
|
||||
}
|
||||
&.modal-bottom {
|
||||
bottom: 0;
|
||||
}
|
||||
&.modal-top-left {
|
||||
top: $modal-distance;
|
||||
left: $modal-distance;
|
||||
}
|
||||
&.modal-top-right {
|
||||
top: $modal-distance;
|
||||
right: $modal-distance;
|
||||
}
|
||||
&.modal-bottom-left {
|
||||
bottom: $modal-distance;
|
||||
left: $modal-distance;
|
||||
}
|
||||
&.modal-bottom-right {
|
||||
bottom: $modal-distance;
|
||||
right: $modal-distance;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.fade {
|
||||
&.top:not(.show) .modal-dialog {
|
||||
transform: $modal-fade-top-transform;
|
||||
}
|
||||
&.left:not(.show) .modal-dialog {
|
||||
transform: $modal-fade-left-transform;
|
||||
}
|
||||
&.right:not(.show) .modal-dialog {
|
||||
transform: $modal-fade-right-transform;
|
||||
}
|
||||
&.bottom:not(.show) .modal-dialog {
|
||||
transform: $modal-fade-bottom-transform;
|
||||
}
|
||||
}
|
||||
@media (min-width: $medium-screen) {
|
||||
&.modal-scrolling {
|
||||
position: relative;
|
||||
.modal-dialog {
|
||||
position: fixed;
|
||||
z-index: 1050;
|
||||
}
|
||||
}
|
||||
&.modal-content-clickable {
|
||||
top: auto;
|
||||
bottom: auto;
|
||||
.modal-dialog {
|
||||
position: fixed;
|
||||
}
|
||||
}
|
||||
.modal-fluid {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
.modal-content {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.modal-frame {
|
||||
position: absolute;
|
||||
margin: 0 !important;
|
||||
width: 100%;
|
||||
max-width: 100% !important;
|
||||
&.modal-bottom {
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
.modal-full-height {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
margin: 0;
|
||||
width: $modal-width;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
min-height: 100%;
|
||||
top: 0;
|
||||
right: 0;
|
||||
&.modal-top,
|
||||
&.modal-bottom {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
&.modal-top {
|
||||
bottom: auto;
|
||||
}
|
||||
&.modal-bottom {
|
||||
min-height: 0;
|
||||
top: auto;
|
||||
}
|
||||
.modal-content {
|
||||
width: 100%;
|
||||
}
|
||||
&.modal-lg {
|
||||
width: 90%;
|
||||
max-width: 90%;
|
||||
@media (min-width: $medium-screen) {
|
||||
width: $modal-full-height-medium-screen;
|
||||
max-width: $modal-full-height-medium-screen;
|
||||
}
|
||||
@media (min-width: $large-screen) {
|
||||
width: $modal-full-height-large-screen;
|
||||
max-width: $modal-full-height-large-screen;
|
||||
}
|
||||
}
|
||||
}
|
||||
.modal-side {
|
||||
position: absolute;
|
||||
bottom: $modal-distance;
|
||||
right: $modal-distance;
|
||||
margin: 0;
|
||||
width: $modal-width;
|
||||
}
|
||||
}
|
||||
}
|
125
mdb/scss/free/_msc.scss
Executable file
125
mdb/scss/free/_msc.scss
Executable file
@ -0,0 +1,125 @@
|
||||
// Miscellaneous
|
||||
// Edge Headers
|
||||
.edge-header {
|
||||
display: block;
|
||||
height: $edge-header-height;
|
||||
background-color: $edge-header-background-color;
|
||||
}
|
||||
|
||||
.free-bird {
|
||||
margin-top: $edge-header-margin-top;
|
||||
}
|
||||
|
||||
// Additional gradients
|
||||
.juicy-peach-gradient {
|
||||
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
|
||||
}
|
||||
|
||||
.young-passion-gradient {
|
||||
background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
|
||||
}
|
||||
|
||||
.lady-lips-gradient {
|
||||
background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
|
||||
}
|
||||
|
||||
.sunny-morning-gradient {
|
||||
background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
|
||||
}
|
||||
|
||||
.rainy-ashville-gradient {
|
||||
background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
|
||||
}
|
||||
|
||||
.frozen-dreams-gradient {
|
||||
background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
|
||||
}
|
||||
|
||||
.warm-flame-gradient {
|
||||
background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
|
||||
}
|
||||
|
||||
.night-fade-gradient {
|
||||
background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
|
||||
}
|
||||
|
||||
.spring-warmth-gradient {
|
||||
background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
|
||||
}
|
||||
|
||||
.winter-neva-gradient {
|
||||
background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
|
||||
}
|
||||
|
||||
.dusty-grass-gradient {
|
||||
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
|
||||
}
|
||||
|
||||
.tempting-azure-gradient {
|
||||
background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
|
||||
}
|
||||
|
||||
.heavy-rain-gradient {
|
||||
background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
|
||||
}
|
||||
|
||||
.amy-crisp-gradient {
|
||||
background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);
|
||||
}
|
||||
|
||||
.mean-fruit-gradient {
|
||||
background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
|
||||
}
|
||||
|
||||
.deep-blue-gradient {
|
||||
background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
|
||||
}
|
||||
|
||||
.ripe-malinka-gradient {
|
||||
background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
|
||||
}
|
||||
|
||||
.cloudy-knoxville-gradient {
|
||||
background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
|
||||
}
|
||||
|
||||
.morpheus-den-gradient {
|
||||
background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
|
||||
}
|
||||
|
||||
.rare-wind-gradient {
|
||||
background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
|
||||
}
|
||||
|
||||
.near-moon-gradient {
|
||||
background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%);
|
||||
}
|
||||
|
||||
.schedule-list {
|
||||
.hr-bold {
|
||||
border-top: 2px solid #212529;
|
||||
}
|
||||
|
||||
.font-smaller {
|
||||
font-size: .8rem;
|
||||
}
|
||||
}
|
||||
|
||||
.note {
|
||||
padding: 10px;
|
||||
border-left: 6px solid;
|
||||
border-radius: 5px;
|
||||
strong {
|
||||
font-weight: 600;
|
||||
}
|
||||
p {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
@each $name, $color in $note {
|
||||
.note-#{$name} {
|
||||
background-color: map-get($color, bgc);
|
||||
border-color: map-get($color, border-color);
|
||||
}
|
||||
}
|
99
mdb/scss/free/_navbars.scss
Executable file
99
mdb/scss/free/_navbars.scss
Executable file
@ -0,0 +1,99 @@
|
||||
// Navbars
|
||||
.navbar {
|
||||
box-shadow: $z-depth-1;
|
||||
font-weight: $navbar-font-weight;
|
||||
form {
|
||||
.md-form {
|
||||
input {
|
||||
margin: 0 $navbar-form-input-mr $navbar-form-input-mb $navbar-form-input-ml;
|
||||
}
|
||||
}
|
||||
}
|
||||
.breadcrumb {
|
||||
margin: 0;
|
||||
padding: $navbar-breadcrumb-padding-top 0 0 $navbar-breadcrumb-padding-left;
|
||||
background-color: inherit;
|
||||
font-size: $navbar-double-font-size;
|
||||
font-weight: $navbar-font-weight;
|
||||
.breadcrumb-item {
|
||||
color: $white-base;
|
||||
&.active {
|
||||
color: $navbar-breadcrumb-color;
|
||||
}
|
||||
&:before {
|
||||
color: $navbar-breadcrumb-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar-toggler {
|
||||
outline: 0;
|
||||
border-width: 0;
|
||||
}
|
||||
.nav-flex-icons {
|
||||
flex-direction: row;
|
||||
}
|
||||
.container {
|
||||
@media (max-width: $medium-screen) {
|
||||
width: 100%;
|
||||
.navbar-toggler-right {
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
display: block;
|
||||
&.disabled {
|
||||
&:active {
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
.fas, .fab, .far {
|
||||
padding-right: $navbar-flex-icons-padding-lg;
|
||||
padding-left: $navbar-flex-icons-padding-lg;
|
||||
}
|
||||
@media (max-width: $medium-screen) {
|
||||
padding-right: $navbar-flex-icons-padding-md;
|
||||
padding-left: $navbar-flex-icons-padding-md;
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
position: absolute !important;
|
||||
margin-top: 0;
|
||||
a {
|
||||
padding: $navbar-dropdown-menu-padding;
|
||||
font-size: $navbar-dropdown-font-size;
|
||||
font-weight: $navbar-font-weight;
|
||||
color: $black;
|
||||
}
|
||||
form {
|
||||
@media (max-width: $small-screen) {
|
||||
width: 17rem;
|
||||
}
|
||||
@media (min-width: $small-screen) {
|
||||
width: 22rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.navbar-light {
|
||||
@include make-navbar($navbar-light-disabled-color, $navbar-light-toggler-icon, $black, $navbar-light-hover-color, $navbar-light-bg-active-color);
|
||||
}
|
||||
&.navbar-dark {
|
||||
@include make-navbar($navbar-dark-disabled-color, $navbar-dark-toggler-icon, $white, $navbar-dark-hover-color, $navbar-dark-bg-active-color);
|
||||
}
|
||||
&.scrolling-navbar {
|
||||
@media (min-width: $small-screen) {
|
||||
transition: $navbar-scrolling-transition;
|
||||
padding-top: $navbar-scrolling-padding;
|
||||
padding-bottom: $navbar-scrolling-padding;
|
||||
.navbar-nav > li {
|
||||
transition-duration: $navbar-scrolling-transition-duration;
|
||||
}
|
||||
&.top-nav-collapse {
|
||||
padding-top: $navbar-top-collapse-padding;
|
||||
padding-bottom: $navbar-top-collapse-padding;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
84
mdb/scss/free/_pagination.scss
Executable file
84
mdb/scss/free/_pagination.scss
Executable file
@ -0,0 +1,84 @@
|
||||
// Pagination
|
||||
.pagination {
|
||||
.page-item {
|
||||
&.active {
|
||||
.page-link {
|
||||
box-shadow: $z-depth-1;
|
||||
transition: $pagination-active-transition;
|
||||
border-radius: $border-radius-base;
|
||||
background-color: $primary-color;
|
||||
color: $white-base;
|
||||
&:hover {
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.disabled {
|
||||
.page-link {
|
||||
color: $pagination-page-item-disabled-color;
|
||||
}
|
||||
}
|
||||
.page-link {
|
||||
transition: $pagination-page-link-transition;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
font-size: $pagination-page-link-font-size;
|
||||
color: $pagination-page-link-color;
|
||||
&:hover {
|
||||
transition: $pagination-page-link-transition;
|
||||
border-radius: $border-radius-base;
|
||||
background-color: $pagination-page-link-hover-bg-color;
|
||||
}
|
||||
&:focus {
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-lg {
|
||||
.page-item {
|
||||
.page-link {
|
||||
font-size: $pagination-page-link-font-size-lg;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-sm {
|
||||
.page-item {
|
||||
.page-link {
|
||||
font-size: $pagination-page-link-font-size-sm;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.pagination-circle {
|
||||
.page-item {
|
||||
.page-link {
|
||||
margin-left: $pagination-circle-margin-x;
|
||||
margin-right: $pagination-circle-margin-x;
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
&:hover {
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
.page-link {
|
||||
border-radius: $pagination-circle-border-radius;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@each $name, $color in $pagination-colors {
|
||||
&.pg-#{$name} {
|
||||
.page-item {
|
||||
&.active {
|
||||
.page-link {
|
||||
background-color: $color;
|
||||
&:hover {
|
||||
background-color: $color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
189
mdb/scss/free/_steppers.scss
Normal file
189
mdb/scss/free/_steppers.scss
Normal file
@ -0,0 +1,189 @@
|
||||
// Steppers
|
||||
ul.stepper {
|
||||
counter-reset: section;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
margin: 1em -1.5rem;
|
||||
padding: 0 1.5rem;
|
||||
padding: 1.5rem;
|
||||
|
||||
li {
|
||||
a {
|
||||
padding: $stepper-li-a-padding;
|
||||
text-align: center;
|
||||
|
||||
.circle {
|
||||
display: inline-block;
|
||||
color: $stepper-li-a-circle-color;
|
||||
border-radius: $stepper-li-a-circle-border-radius;
|
||||
background: $stepper-li-a-circle-bg;
|
||||
width: 1.75rem;
|
||||
height: 1.75rem;
|
||||
text-align: center;
|
||||
line-height: 1.7rem;
|
||||
margin-right: $stepper-li-a-circle-mr;
|
||||
}
|
||||
|
||||
.label {
|
||||
display: inline-block;
|
||||
color: $stepper-li-a-circle-bg;
|
||||
}
|
||||
}
|
||||
|
||||
&.active,
|
||||
&.completed {
|
||||
a {
|
||||
.circle {
|
||||
@extend .primary-color;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-weight: 600;
|
||||
color: $stepper-li-a-label-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.warning {
|
||||
a {
|
||||
.circle {
|
||||
@extend .danger-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Horizontal
|
||||
.stepper-horizontal {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
li {
|
||||
transition: $stepper-horizontal-li-transition;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex: 1;
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
.label {
|
||||
margin-top: $stepper-horizontal-li-a-label-mt;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:last-child):after {
|
||||
content: "";
|
||||
position: relative;
|
||||
flex: 1;
|
||||
margin: $stepper-horizontal-li-after-margin 0 0 0;
|
||||
height: $stepper-horizontal-li-after-height;
|
||||
background-color: $stepper-horizontal-li-after-bgc;
|
||||
}
|
||||
|
||||
&:not(:first-child):before {
|
||||
content: "";
|
||||
position: relative;
|
||||
flex: 1;
|
||||
margin: $stepper-horizontal-li-after-margin 0 0 0;
|
||||
height: $stepper-horizontal-li-after-height;
|
||||
background-color: $stepper-horizontal-li-after-bgc;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: rgba(0, 0, 0, .06);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $stepper-horizontal-breakpoint) {
|
||||
flex-direction: column;
|
||||
|
||||
li {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
|
||||
a {
|
||||
.label {
|
||||
flex-flow: column nowrap;
|
||||
order: 2;
|
||||
margin-top: $stepper-horizontal-small-li-a-label-mt;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:last-child):after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: $stepper-horizontal-small-li-after-width;
|
||||
height: $stepper-horizontal-small-li-after-height;
|
||||
left: $stepper-horizontal-small-li-after-left;
|
||||
top: $stepper-horizontal-small-li-after-top;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
>li:not(:last-of-type) {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Vertical
|
||||
.stepper-vertical {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
||||
li {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
align-self: flex-start;
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
||||
.circle {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.label {
|
||||
flex-flow: column nowrap;
|
||||
order: 2;
|
||||
margin-top: $stepper-vertical-li-a-label-mt;
|
||||
}
|
||||
}
|
||||
|
||||
&.completed {
|
||||
a {
|
||||
.label {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.step-content {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-left: $stepper-vertical-li-step-content-ml;
|
||||
padding: $stepper-vertical-li-step-content-padding;
|
||||
|
||||
p {
|
||||
font-size: $stepper-vertical-li-step-content-p-font-size;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:last-child):after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: $stepper-vertical-li-after-width;
|
||||
height: $stepper-vertical-li-after-height;
|
||||
left: $stepper-vertical-li-after-left;
|
||||
top: $stepper-vertical-li-after-top;
|
||||
background-color: $stepper-vertical-li-after-bgc;
|
||||
}
|
||||
}
|
||||
}
|
51
mdb/scss/free/_switch.scss
Normal file
51
mdb/scss/free/_switch.scss
Normal file
@ -0,0 +1,51 @@
|
||||
// Switch free
|
||||
.bs-switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 34px;
|
||||
input {
|
||||
display: none;
|
||||
&:checked {
|
||||
+ .slider {
|
||||
background-color: #2196F3;
|
||||
&:before {
|
||||
transform: translateX(26px);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:focus {
|
||||
+ .slider {
|
||||
box-shadow: 0 0 1px #2196F3;
|
||||
}
|
||||
}
|
||||
}
|
||||
.slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: white;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
&.round {
|
||||
border-radius: 34px;
|
||||
&:before {
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
78
mdb/scss/free/_tables.scss
Executable file
78
mdb/scss/free/_tables.scss
Executable file
@ -0,0 +1,78 @@
|
||||
// Tables
|
||||
table {
|
||||
th {
|
||||
font-size: $table-th-font-size;
|
||||
font-weight: 400;
|
||||
}
|
||||
td {
|
||||
font-size: $table-td-font-size;
|
||||
font-weight: 300;
|
||||
}
|
||||
&.table {
|
||||
thead th {
|
||||
border-top: none;
|
||||
}
|
||||
th,
|
||||
td {
|
||||
padding-top: $table-th-padding-top;
|
||||
padding-bottom: $table-td-padding-bottom;
|
||||
}
|
||||
a {
|
||||
margin: 0;
|
||||
color: $table-a-color;
|
||||
// &.btn {
|
||||
// color: inherit;
|
||||
// }
|
||||
}
|
||||
.label-table {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: $table-label-height;
|
||||
height: $table-label-line-height;
|
||||
}
|
||||
&.btn-table {
|
||||
td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.table-hover {
|
||||
tbody {
|
||||
tr {
|
||||
&:hover {
|
||||
transition: $table-hover-transition;
|
||||
background-color: $table-hover-background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.th-lg {
|
||||
min-width: $table-th-lg-min-width;
|
||||
}
|
||||
.th-sm {
|
||||
min-width: $table-th-sm-min-width;
|
||||
}
|
||||
&.table-sm {
|
||||
th,
|
||||
td {
|
||||
padding-top: $table-sm-padding-y;
|
||||
padding-bottom: $table-sm-padding-y;
|
||||
}
|
||||
}
|
||||
}
|
||||
.table-scroll-vertical {
|
||||
max-height: $table-scroll-vertical-max-height;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.table-fixed {
|
||||
table-layout: fixed;
|
||||
}
|
||||
.table-responsive,
|
||||
.table-responsive-sm,
|
||||
.table-responsive-md,
|
||||
.table-responsive-lg,
|
||||
.table-responsive-xl {
|
||||
> .table-bordered {
|
||||
border-top: 1px solid #dee2e6;
|
||||
}
|
||||
}
|
229
mdb/scss/free/_treeview.scss
Normal file
229
mdb/scss/free/_treeview.scss
Normal file
@ -0,0 +1,229 @@
|
||||
// Treeview
|
||||
.treeview {
|
||||
&.w-20 {
|
||||
width: 20rem;
|
||||
}
|
||||
.rotate {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
transition: all .1s linear;
|
||||
font-size: .8rem;
|
||||
vertical-align: text-top;
|
||||
margin-top: .2rem;
|
||||
&.down {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
.nested {
|
||||
display: none;
|
||||
}
|
||||
.active {
|
||||
display: block;
|
||||
}
|
||||
ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
.ic-w {
|
||||
width: 1.3rem;
|
||||
}
|
||||
}
|
||||
|
||||
.treeview-animated {
|
||||
&.w-20 {
|
||||
width: 20rem;
|
||||
}
|
||||
ul {
|
||||
position: relative;
|
||||
list-style: none;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.treeview-animated-list {
|
||||
li {
|
||||
padding: 0.2em 0 0 0.2em;
|
||||
}
|
||||
|
||||
.treeview-animated-items {
|
||||
|
||||
.nested {
|
||||
&::before {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
background-color: grey;
|
||||
left: 5px;
|
||||
width: 5px;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.closed {
|
||||
display: block;
|
||||
padding: 0.2em 0.2em 0.2em 0.4em;
|
||||
margin-right: 0;
|
||||
border-top-left-radius: 0.3em;
|
||||
border-bottom-left-radius: 0.3em;
|
||||
|
||||
&:hover {
|
||||
background-color: rgb(140, 185, 255);
|
||||
}
|
||||
|
||||
.fa-angle-right {
|
||||
transition: all .1s linear;
|
||||
font-size: .8rem;
|
||||
|
||||
&.down {
|
||||
position: relative;
|
||||
color: #f8f9fa;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.open {
|
||||
transition: all .1s linear;
|
||||
background-color: rgb(50, 160, 255);
|
||||
|
||||
&:hover {
|
||||
color: #f8f9fa;
|
||||
background-color: rgb(50, 160, 255);
|
||||
}
|
||||
|
||||
span {
|
||||
color: #f8f9fa;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.treeview-animated-element {
|
||||
padding: 0.2em 0.2em 0.2em 0.6em;
|
||||
cursor: pointer;
|
||||
transition: all .1s linear;
|
||||
border-bottom-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
|
||||
&:hover {
|
||||
background-color: rgb(140, 185, 255);
|
||||
}
|
||||
|
||||
&.opened {
|
||||
color: #f8f9fa;
|
||||
background-color: rgb(50, 160, 255);
|
||||
|
||||
&:hover {
|
||||
color: #f8f9fa;
|
||||
background-color: rgb(50, 160, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.treeview-colorful {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
background: rgba(224, 127, 178, 0.2);
|
||||
|
||||
&.w-20 {
|
||||
width: 20rem;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-color: #a2127a;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1.4em;
|
||||
font-weight: 500;
|
||||
color: #a2127a;
|
||||
}
|
||||
|
||||
ul {
|
||||
position: relative;
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.treeview-colorful-list {
|
||||
|
||||
ul {
|
||||
padding-left: 1em;
|
||||
margin-top: 0.1em;
|
||||
background: rgba(224, 127, 178, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
.treeview-colorful-element {
|
||||
padding: 0.2em 0.2em 0.2em 1em;
|
||||
cursor: pointer;
|
||||
transition: all .1s linear;
|
||||
border: 2px solid transparent;
|
||||
border-right: 0px solid transparent;
|
||||
|
||||
&:hover {
|
||||
background-color: #e07fb2;
|
||||
}
|
||||
|
||||
&.opened {
|
||||
color: #ffac47;
|
||||
border: 2px solid #ffac47;
|
||||
border-right: 0px solid transparent;
|
||||
background-color: #a2127a;
|
||||
|
||||
&:hover {
|
||||
color: #ffac47;
|
||||
background-color: #a2127a;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.treeview-colorful-items-header {
|
||||
display: block;
|
||||
padding: 0.4em;
|
||||
margin-right: 0;
|
||||
border-bottom: 2px solid transparent;
|
||||
transition: all .1s linear;
|
||||
|
||||
&:hover {
|
||||
background-color: #e07fb2
|
||||
}
|
||||
|
||||
&.open {
|
||||
transition: all .1s linear;
|
||||
background-color: #a2127a;
|
||||
border-bottom: 2px solid #ffac47;
|
||||
|
||||
span {
|
||||
color: #ffac47;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #ffac47;
|
||||
background-color: #a2127a;
|
||||
}
|
||||
|
||||
div:hover {
|
||||
background-color: #a2127a;
|
||||
}
|
||||
}
|
||||
|
||||
.fa-angle-right {
|
||||
transition: all .2s linear;
|
||||
font-size: .8rem;
|
||||
}
|
||||
|
||||
.fas {
|
||||
position: relative;
|
||||
transition: all .2s linear;
|
||||
transform: rotate(90deg);
|
||||
color: #ffac47;
|
||||
}
|
||||
|
||||
.fa-minus-circle {
|
||||
transition: all .2s linear;
|
||||
position: relative;
|
||||
color: #ffac47;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
1481
mdb/scss/free/modules/animations-extended/_module.scss
Normal file
1481
mdb/scss/free/modules/animations-extended/_module.scss
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
/*
|
||||
* MDBootstrap Animations Extended
|
||||
* Learn more: https://mdbootstrap.com/docs/jquery/css/animations/
|
||||
* About MDBootstrap: https://mdbootstrap.com/
|
||||
*/
|
||||
|
||||
@import "module";
|
Reference in New Issue
Block a user