Comment link.css. Add card.css and height.css

This commit is contained in:
Konstantinos Triantafyllou 2022-01-20 16:04:03 +02:00
parent 1a89d01d84
commit 11e66695a5
6 changed files with 18 additions and 5 deletions

1
css/import.css vendored
View File

@ -9,6 +9,7 @@
@import "structure/background.css";
@import "structure/icons.css";
@import "structure/breadcrumbs.css";
@import "structure/card.css";
@import "openaire.css";

View File

@ -13,6 +13,7 @@
background-image: var(--button-primary-background-image);
color: var(--button-primary-color);
}
.uk-button-primary:hover {
background-color: var(--button-secondary-background);
background-image: var(--button-primary-background-image);

3
css/structure/card.css Normal file
View File

@ -0,0 +1,3 @@
.uk-card.uk-disabled {
box-shadow: none;
}

9
css/structure/height.css Normal file
View File

@ -0,0 +1,9 @@
/** These classes apply a height or max-height of 150px. */
.uk-height-xsmall {
height: 75px;
}
.uk-height-max-xsmall {
max-height: 75px;
}
/**/

View File

@ -1,4 +1,4 @@
:root{
/*:root{
--link-color: var(--primary-color);
--link-color-hover: var(--secondary-color);
}
@ -10,4 +10,4 @@
.uk-link:hover, a:hover{
color:var(--link-color-hover);
}
}*/

View File

@ -1,10 +1,9 @@
:root {
--font-default-color: #4b4b4b;
--font-primary-color: var(--primary-color);
--font-secondary-color: var(--secondary-color);
}
.uk-text-primary, .uk-section-primary:not(.uk-preserve-color) .uk-text-primary{
.uk-text-primary, .uk-section-primary:not(.uk-preserve-color) .uk-text-primary {
color: var(--font-primary-color) !important;
}