diff --git a/frontend/simple/classes/DisplayController.php b/frontend/simple/classes/DisplayController.php index 36aba06ce..3340a1585 100644 --- a/frontend/simple/classes/DisplayController.php +++ b/frontend/simple/classes/DisplayController.php @@ -391,11 +391,21 @@ class DisplayController{ echo '
'.AppSettings::getInstance()->getSetting('app_settings-app_name').'
'; - - + echo '
'; + echo '
TEST 1KA
'; + + // APP SUBTITLE + echo '
'; + if(isVirtual()) + echo $lang['app_virtual_domain']; + else + echo $lang['app_installation']; + echo '
'; // WHITE BOX FOR LOGIN / REGISTRATION - echo '
'; + + echo '
'; + // Tabs - samo pri lastni instalaciji, pri virtualkah nimamo registracije if(isVirtual()){ echo '
'; @@ -429,17 +439,18 @@ class DisplayController{ $this->displayFrontPageRegistration(); echo '
'; } - + + echo '
'; echo '
'; - // APP SUBTITLE - echo '
'; - if(isVirtual()) - echo $lang['app_virtual_domain']; - else - echo $lang['app_installation']; - echo '
'; + // // APP SUBTITLE + // echo '
'; + // if(isVirtual()) + // echo $lang['app_virtual_domain']; + // else + // echo $lang['app_installation']; + // echo '
'; } // Izris okna na prvi strani - AAI diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css index 016600ca3..f5bda1d33 100644 --- a/frontend/simple/css/style.css +++ b/frontend/simple/css/style.css @@ -892,3 +892,55 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle { } /*# sourceMappingURL=style.css.map */ + + +/* + Author : Nejc Kovač + Urejanje landing page +*/ + +@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap"); + +body.landing_page #main { + background-image: none; +} + +.landing_page_content { + font-family: "Source Sans Pro", "sans-serif"; + text-align: center; + color: #333333; + +} + +.landing_page_content .landing_page_title { + font-weight: 300; + font-size: 50px; + line-height: 63px; +} + + + +body.landing_page #main .app_subtitle { + text-shadow: unset; + color: #333333; +} + +body.landing_page #main .landing_page_window { + border: 1px solid #C4C4C4; + max-width: 400px; + width: unset; + min-height: 327px; +} + +body.landing_page #main .landing_page_window .tabs .tab { + font-size: 16px; + font-weight: 600; + + background-color: unset; + color: #777777; +} + +body.landing_page #main .landing_page_window .tabs .tab.active { + color: #1E88E5; +} +