Delete old custom css. Comment all classes in custom.css. Add variables for login colors. Make main height as viewport

This commit is contained in:
Konstantinos Triantafyllou 2022-03-04 17:32:45 +02:00
parent 4e99b0887c
commit b5dcabf266
4 changed files with 46 additions and 1158 deletions

View File

@ -105,7 +105,7 @@
/* padding-top:4px;*/
/*}*/
.uk-logo > img {max-height:70px;}
/*.uk-logo > img {max-height:70px;}*/
/*.inner {*/
/* left:0px;*/

File diff suppressed because it is too large Load Diff

View File

@ -1,33 +1,28 @@
:root {
--login-background-color: var(--primary-color);
--login-background-color-hover: var(--secondary-color);
--login-color: var(--light-color);
--login-color-hover: var(--light-color);
}
.login {
color: white;
font-weight: 400 !important;
color: var(--login-color);
}
.login:hover {
color: var(--login-color-hover);
}
.login circle, .login svg,
.login svg svg *, .login svg * {
fill: var(--primary-color);
fill: var(--login-background-color);
}
.login:hover circle {
fill: var(--secondary-color);
fill: var(--login-background-color-hover);
}
.login text {
stroke: white;
fill: white;
stroke: var(--login-color);
fill: var(--login-color);
}
/*.uk-dark .login {*/
/* color: var(--primary-color);*/
/* font-weight: 400 !important;*/
/*}*/
/*.uk-dark .login circle, .uk-dark .login svg,*/
/*.uk-dark .login svg svg *,.uk-dark .login svg * {*/
/* fill: white;*/
/*}*/
/*.uk-dark .login text {*/
/* stroke: var(--primary-color);*/
/* fill: var(--primary-color);*/
/*}*/

View File

@ -1,10 +1,14 @@
@import "library-css/import.css";
/*!* theme *!*/
body {
overflow: unset !important;
main {
min-height: calc(100vh - var(--navbar-height));
}
/*!* theme *!*/
/*body {*/
/* overflow: unset !important;*/
/*}*/
/*.custom-footer {*/
/* position: relative;*/
/* bottom: 0;*/
@ -942,32 +946,32 @@ body {
/* box-shadow: 0 5px 12px rgba(0, 0, 0, .15);*/
/*}*/
.small-beta-indication {
height: 60px;
}
/*.small-beta-indication {*/
/* height: 60px;*/
/*}*/
.large-beta-indication {
height: 104px;
position: absolute;
top: 0;
left: 0;
z-index: 10000;
}
/*.large-beta-indication {*/
/* height: 104px;*/
/* position: absolute;*/
/* top: 0;*/
/* left: 0;*/
/* z-index: 10000;*/
/*}*/
.uk-navbar-sticky .beta-indication-sticky {
position: fixed !important;
display: block;
/*.uk-navbar-sticky .beta-indication-sticky {*/
/* position: fixed !important;*/
/* display: block;*/
}
/*}*/
.beta-indication-sticky {
height: 102px;
position: fixed;
top: 0;
left: 0;
display: none;
z-index: 10000;
}
/*.beta-indication-sticky {*/
/* height: 102px;*/
/* position: fixed;*/
/* top: 0;*/
/* left: 0;*/
/* display: none;*/
/* z-index: 10000;*/
/*}*/
/*!* theme *!*/
/*.uk-modal .uk-modal-dialog {*/