Remove border from icon-button. Add list disc scale and color variables. Add more variables for openaire-theme

This commit is contained in:
Konstantinos Triantafyllou 2022-03-02 23:50:22 +02:00
parent 559ea1a77d
commit dc0d575cda
4 changed files with 21 additions and 4 deletions

View File

@ -15,12 +15,9 @@
--openaire-light-blue: #3086ED;
--default-element-bg: #DEDEDE;
--grey-900: #2C2C2C;
--grey-700: #6E6E6E;
--primary-color: #1D193C;
/*--primary-color: #AD20E7;*/
--link-color: #2D72D6;
--link-hover-color: #3665ab;

View File

@ -47,3 +47,7 @@
color: var(--button-secondary-color-hover);
border-color: var(--button-secondary-border-color-hover);
}
.uk-icon-button {
border: none;
}

View File

@ -1,3 +1,13 @@
:root {
--list-disc-color: var(--grey-color);
--list-disc-scale: 2;
}
.uk-list-xlarge>*>ul, .uk-list-xlarge>:nth-child(n+2) {
margin-top: 40px;
}
.uk-list.uk-list-disc > li::before {
color: var(--list-disc-color);
transform: scale(var(--list-disc-scale));
}

View File

@ -1,8 +1,14 @@
:root {
--primary-color: #211F7E;
--secondary-color: #3086ED;
--primary-color-rgb: 33, 31, 126;
--primary-light-color: #4687E6;
--primary-dark-color: #1F2379;
--secondary-color: #3C8DEE;
--secondary-color-rgb: 48, 134, 237;
--dark-color: #2C2C2C;
--grey-color: #4B4B4B;
--placeholder-color: #8E8E8E;
--muted-color: #EAEAEA;
--light-color: #FFFFFF;
--default-color: #F9F9F9;