Remove border from icon-button. Add list disc scale and color variables. Add more variables for openaire-theme
This commit is contained in:
parent
559ea1a77d
commit
dc0d575cda
|
@ -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;
|
||||
|
|
|
@ -47,3 +47,7 @@
|
|||
color: var(--button-secondary-color-hover);
|
||||
border-color: var(--button-secondary-border-color-hover);
|
||||
}
|
||||
|
||||
.uk-icon-button {
|
||||
border: none;
|
||||
}
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue