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;*/ /* padding-top:4px;*/
/*}*/ /*}*/
.uk-logo > img {max-height:70px;} /*.uk-logo > img {max-height:70px;}*/
/*.inner {*/ /*.inner {*/
/* left:0px;*/ /* 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 { .login {
color: white; color: var(--login-color);
font-weight: 400 !important; }
.login:hover {
color: var(--login-color-hover);
} }
.login circle, .login svg, .login circle, .login svg,
.login svg svg *, .login svg * { .login svg svg *, .login svg * {
fill: var(--primary-color); fill: var(--login-background-color);
} }
.login:hover circle { .login:hover circle {
fill: var(--secondary-color); fill: var(--login-background-color-hover);
} }
.login text { .login text {
stroke: white; stroke: var(--login-color);
fill: white; 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"; @import "library-css/import.css";
/*!* theme *!*/ main {
body { min-height: calc(100vh - var(--navbar-height));
overflow: unset !important;
} }
/*!* theme *!*/
/*body {*/
/* overflow: unset !important;*/
/*}*/
/*.custom-footer {*/ /*.custom-footer {*/
/* position: relative;*/ /* position: relative;*/
/* bottom: 0;*/ /* bottom: 0;*/
@ -942,32 +946,32 @@ body {
/* box-shadow: 0 5px 12px rgba(0, 0, 0, .15);*/ /* box-shadow: 0 5px 12px rgba(0, 0, 0, .15);*/
/*}*/ /*}*/
.small-beta-indication { /*.small-beta-indication {*/
height: 60px; /* height: 60px;*/
} /*}*/
.large-beta-indication { /*.large-beta-indication {*/
height: 104px; /* height: 104px;*/
position: absolute; /* position: absolute;*/
top: 0; /* top: 0;*/
left: 0; /* left: 0;*/
z-index: 10000; /* z-index: 10000;*/
} /*}*/
.uk-navbar-sticky .beta-indication-sticky { /*.uk-navbar-sticky .beta-indication-sticky {*/
position: fixed !important; /* position: fixed !important;*/
display: block; /* display: block;*/
} /*}*/
.beta-indication-sticky { /*.beta-indication-sticky {*/
height: 102px; /* height: 102px;*/
position: fixed; /* position: fixed;*/
top: 0; /* top: 0;*/
left: 0; /* left: 0;*/
display: none; /* display: none;*/
z-index: 10000; /* z-index: 10000;*/
} /*}*/
/*!* theme *!*/ /*!* theme *!*/
/*.uk-modal .uk-modal-dialog {*/ /*.uk-modal .uk-modal-dialog {*/