Updated card styles

Added a new custom style replacing the previous one.
This commit is contained in:
Angelos Chalaris 2017-11-13 23:24:14 +02:00
parent 4d9c7ecc35
commit 6a9379fee3
5 changed files with 99 additions and 51 deletions

View file

@ -677,8 +677,8 @@ a:hover, a:focus {
--card-border-color: #a71a1a; --card-border-color: #a71a1a;
} }
.card > .section.special { .card > .section.dark {
--card-back-color: linear-gradient(135deg, #18FFFF 10%, #1565C0 100%); --card-back-color: linear-gradient(135deg, #eceff1 10%, #90a4ae 100%);
} }
.card > .section.double-padded { .card > .section.double-padded {

File diff suppressed because one or more lines are too long

View file

@ -641,6 +641,45 @@ a:hover, a:focus {
border-bottom: 0; border-bottom: 0;
} }
/*
Custom elements for card elements.
*/
@media screen and (min-width: 240px) {
.card.small {
max-width: 240px;
}
}
@media screen and (min-width: 480px) {
.card.large {
max-width: 480px;
}
}
.card.fluid {
max-width: 100%;
width: auto;
}
.card.warning {
--card-back-color: #ffca28;
--card-border-color: #e8b825;
}
.card.error {
--card-back-color: #b71c1c;
--card-fore-color: #f8f8f8;
--card-border-color: #a71a1a;
}
.card > .section.dark {
--card-back-color: linear-gradient(135deg, #eceff1 10%, #90a4ae 100%);
}
.card > .section.double-padded {
padding: calc(1.5 * var(--universal-padding));
}
/* /*
Definitions for forms and input elements. Definitions for forms and input elements.
*/ */
@ -894,6 +933,55 @@ input:disabled, input[disabled], textarea:disabled, textarea[disabled], select:d
} }
} }
/*
Custom elements for forms and input elements.
*/
button.primary, [type="button"].primary, [type="submit"].primary, [type="reset"].primary, .button.primary, [role="button"].primary {
--button-back-color: #1976d2;
--button-fore-color: #f8f8f8;
}
button.primary:hover, button.primary:focus, [type="button"].primary:hover, [type="button"].primary:focus, [type="submit"].primary:hover, [type="submit"].primary:focus, [type="reset"].primary:hover, [type="reset"].primary:focus, .button.primary:hover, .button.primary:focus, [role="button"].primary:hover, [role="button"].primary:focus {
--button-hover-back-color: #1565c0;
}
button.secondary, [type="button"].secondary, [type="submit"].secondary, [type="reset"].secondary, .button.secondary, [role="button"].secondary {
--button-back-color: #d32f2f;
--button-fore-color: #f8f8f8;
}
button.secondary:hover, button.secondary:focus, [type="button"].secondary:hover, [type="button"].secondary:focus, [type="submit"].secondary:hover, [type="submit"].secondary:focus, [type="reset"].secondary:hover, [type="reset"].secondary:focus, .button.secondary:hover, .button.secondary:focus, [role="button"].secondary:hover, [role="button"].secondary:focus {
--button-hover-back-color: #c62828;
}
button.tertiary, [type="button"].tertiary, [type="submit"].tertiary, [type="reset"].tertiary, .button.tertiary, [role="button"].tertiary {
--button-back-color: #308732;
--button-fore-color: #f8f8f8;
}
button.tertiary:hover, button.tertiary:focus, [type="button"].tertiary:hover, [type="button"].tertiary:focus, [type="submit"].tertiary:hover, [type="submit"].tertiary:focus, [type="reset"].tertiary:hover, [type="reset"].tertiary:focus, .button.tertiary:hover, .button.tertiary:focus, [role="button"].tertiary:hover, [role="button"].tertiary:focus {
--button-hover-back-color: #277529;
}
button.inverse, [type="button"].inverse, [type="submit"].inverse, [type="reset"].inverse, .button.inverse, [role="button"].inverse {
--button-back-color: #212121;
--button-fore-color: #f8f8f8;
}
button.inverse:hover, button.inverse:focus, [type="button"].inverse:hover, [type="button"].inverse:focus, [type="submit"].inverse:hover, [type="submit"].inverse:focus, [type="reset"].inverse:hover, [type="reset"].inverse:focus, .button.inverse:hover, .button.inverse:focus, [role="button"].inverse:hover, [role="button"].inverse:focus {
--button-hover-back-color: #111;
}
button.small, [type="button"].small, [type="submit"].small, [type="reset"].small, .button.small, [role="button"].small {
padding: calc(0.5 * var(--universal-padding)) calc(0.75 * var(--universal-padding));
margin: var(--universal-margin);
}
button.large, [type="button"].large, [type="submit"].large, [type="reset"].large, .button.large, [role="button"].large {
padding: calc(1.5 * var(--universal-padding)) calc(2 * var(--universal-padding));
margin: var(--universal-margin);
}
/* /*
Definitions for navigation elements. Definitions for navigation elements.
*/ */
@ -1286,43 +1374,3 @@ p.splash {
height: 100%; height: 100%;
overflow-y: auto; overflow-y: auto;
} }
@media screen and (min-width: 480px) {
.card.large {
max-width: 480px;
}
}
@media screen and (min-width: 240px) {
.card.small {
max-width: 240px;
}
}
.card.fluid {
max-width: 100%;
width: auto;
}
.card.warning {
--card-back-color: #ffca28;
--card-border-color: #e8b825;
}
.card.error {
--card-back-color: #b71c1c;
--card-fore-color: #fafafa;
--card-border-color: #a71a1a;
}
.card > .section.dark {
--card-back-color: #e0e0e0;
}
.card > .section.darker {
--card-back-color: #bdbdbd;
}
.card > .section.double-padded {
padding: 0.75rem;
}

View file

@ -37,10 +37,10 @@ $card-error-fore-color: #f8f8f8; // Text color for card error
$card-error-border-color: #a71a1a; // Border style for card error color variant. $card-error-border-color: #a71a1a; // Border style for card error color variant.
@include make-card-alt-color ($card-error-name, $card-error-back-color, $card-error-fore-color, $card-error-border-color); @include make-card-alt-color ($card-error-name, $card-error-back-color, $card-error-fore-color, $card-error-border-color);
$card-section-special-name: 'special'; // Class name and background color for card special section variant. $card-section-dark-name: 'dark'; // Class name and background color for card dark section variant.
$card-section-special-back-color: linear-gradient(135deg, #18FFFF 10%, #1565C0 100%); $card-section-dark-back-color: linear-gradient(135deg, #eceff1 10%, #90a4ae 100%);
$card-section-special-fore-color: #111; // Text color for card special section variant. $card-section-dark-fore-color: #111; // Text color for card dark section variant.
@include make-card-section-alt-color ($card-section-special-name, $card-section-special-back-color, $card-section-special-fore-color); @include make-card-section-alt-color ($card-section-dark-name, $card-section-dark-back-color, $card-section-dark-fore-color);
$card-section-double-padded-name: 'double-padded'; // Class name for card double-padded section variant. $card-section-double-padded-name: 'double-padded'; // Class name for card double-padded section variant.
$card-section-double-padded-padding: calc(1.5 * var(#{$universal-padding-var})); // Padding for card sectiondouble-padded section variant. $card-section-double-padded-padding: calc(1.5 * var(#{$universal-padding-var})); // Padding for card sectiondouble-padded section variant.

View file

@ -30,10 +30,10 @@ $card-error-fore-color: #f8f8f8; // Text color for card error
$card-error-border-color: #a71a1a; // Border style for card error color variant. $card-error-border-color: #a71a1a; // Border style for card error color variant.
@include make-card-alt-color ($card-error-name, $card-error-back-color, $card-error-fore-color, $card-error-border-color); @include make-card-alt-color ($card-error-name, $card-error-back-color, $card-error-fore-color, $card-error-border-color);
$card-section-special-name: 'special'; // Class name and background color for card special section variant. $card-section-dark-name: 'dark'; // Class name and background color for card dark section variant.
$card-section-special-back-color: linear-gradient(135deg, #18FFFF 10%, #1565C0 100%); $card-section-dark-back-color: linear-gradient(135deg, #eceff1 10%, #90a4ae 100%);
$card-section-special-fore-color: #111; // Text color for card special section variant. $card-section-dark-fore-color: #111; // Text color for card dark section variant.
@include make-card-section-alt-color ($card-section-special-name, $card-section-special-back-color, $card-section-special-fore-color); @include make-card-section-alt-color ($card-section-dark-name, $card-section-dark-back-color, $card-section-dark-fore-color);
$card-section-double-padded-name: 'double-padded'; // Class name for card double-padded section variant. $card-section-double-padded-name: 'double-padded'; // Class name for card double-padded section variant.
$card-section-double-padded-padding: calc(1.5 * var(#{$universal-padding-var})); // Padding for card sectiondouble-padded section variant. $card-section-double-padded-padding: calc(1.5 * var(#{$universal-padding-var})); // Padding for card sectiondouble-padded section variant.