This commit is contained in:
Bruno Rybársky 2024-02-06 19:23:06 +01:00
parent b4c23070a9
commit e16024ff43
3 changed files with 10 additions and 8 deletions

@ -251,11 +251,11 @@ table.list-table > tbody, table.list-table > tbody > th, table.list-table > tbod
width: 175px; width: 175px;
} }
#pagearea { #pagearea_container {
flex-grow: 1; flex-grow: 1;
} }
#navbar, #footer { nav, footer {
padding: 1.2rem 1rem; padding: 1.2rem 1rem;
background-color: rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 20px 28px 0 rgba(0,0,0,0.2); -webkit-box-shadow: 0 20px 28px 0 rgba(0,0,0,0.2);
@ -263,12 +263,12 @@ table.list-table > tbody, table.list-table > tbody > th, table.list-table > tbod
box-shadow: 0 20px 28px 0 rgba(0,0,0,0.2); box-shadow: 0 20px 28px 0 rgba(0,0,0,0.2);
} }
#navbar { #navbar_container {
height: 75px !important; height: 75px !important;
position: relative; position: relative;
z-index: 500; z-index: 500;
} }
#navbar, #pagearea, #footer { #navbar_container, #pagearea_container, #footer_container {
width: 100%; width: 100%;
} }

@ -1 +1,3 @@
<footer>
<p>Toto nie je oficiálna stránka Adlerky, jedná sa o neoficiálnu študentskú stránku</p> <p>Toto nie je oficiálna stránka Adlerky, jedná sa o neoficiálnu študentskú stránku</p>
</footer>

@ -12,13 +12,13 @@
<title>Adlerka __TEMPLATE_PAGE_TITLE__</title> <title>Adlerka __TEMPLATE_PAGE_TITLE__</title>
</head> </head>
<body> <body>
<div id="navbar"> <div id="navbar_container">
__TEMPLATE__NAV__ __TEMPLATE__NAV__
</div> </div>
<div id="pagearea"> <div id="page_container">
__TEMPLATE__PAGE__ __TEMPLATE__PAGE__
</div> </div>
<div id="footer"> <div id="footer_container">
__TEMPLATE__FOOTER__ __TEMPLATE__FOOTER__
</div> </div>
</body> </body>