Co-authored-by: Bruno Rybársky <bruno@brn.systems>

This commit is contained in:
Dávid Jančár 2024-05-16 09:08:13 +02:00
parent 975e824363
commit 2c36eb05bc
10 changed files with 355 additions and 4 deletions

@ -0,0 +1,249 @@
body{
min-width: 100%;
margin: 0;
}
.wrapper {
display: flex;
flex-flow: row wrap;
font-weight: bold;
text-align: center;
background-color: #333333;
}
.wrapper > * {
/*padding: 10px;*/
flex: 1 100%;
}
.container{
/* We first create a flex layout context */
display: flex;
/* Then we define the flow direction
and if we allow the items to wrap
* Remember this is the same as:
* flex-direction: row;
* flex-wrap: wrap;
*/
flex-flow: row wrap;
/* Then we define how is distributed the remaining space */
justify-content: space-around;
margin-right: auto;
margin-left: auto;
min-height: auto;
max-width: 1200px;
min-width: auto;
}
.container_menu{
/* We first create a flex layout context */
display: flex;
/* Then we define the flow direction
and if we allow the items to wrap
* Remember this is the same as:
* flex-direction: row;
* flex-wrap: wrap;
*/
flex-flow: row wrap;
/* Then we define how is distributed the remaining space */
justify-content: left;
margin-right: auto;
margin-left: auto;
min-height: auto;
max-width: 1200px;
min-width: auto;
}
/******* header *******/
header{
background-color: #151b54;
}
#header .flex-item {
padding: 5px;
margin: 5px;
width: auto;
height: 30px;
line-height: 30px;
color: white;
font-weight: bold;
font-size: 1em;
text-align: center;
}
#header p{
margin: 0;
padding: 0;
}
/* navigation */
/* Add a black background color to the top navigation */
nav{
background-color: #333;
}
.topnav {
background-color: #333;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Add an active class to highlight the current page */
.active {
background-color: #000080;
color: white;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
display: none;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
float: left;
overflow: hidden;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Style the links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
background-color: #555;
color: white;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
color: black;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
display: block;
}
main
{
background-color: #eeeeee;
}
/* Medium screens */
@media all and (max-width: 600px) {
/******* header *******/
#header {
/* When on medium sized screens, we center it by evenly distributing empty space around items */
flex-flow: column wrap;
}
#header .flex-item{
padding: 2px;
margin: 2px;
line-height: 25px;
height: 25px;
margin-left: 0 !important;
}
/******* navigation *******/
}
/* Small screens */
@media all and (max-width: 500px) {
/******* header *******/
#header {
/* On small screens, we are no longer using row direction but column */
flex-flow: column wrap;
}
#header .flex-item{
padding: 2px;
margin: 2px;
line-height: 25px;
height: 25px;
color: black;
}
/******* navigation *******/
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
.topnav a:not(:first-child), .dropdown .dropbtn {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
.container_menu{
display: flex;
flex-flow: row;
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
.topnav.responsive {position: relative;}
.topnav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
.responsive{
display: flex;
flex-flow: column;
}
}

@ -0,0 +1,8 @@
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav container_menu") {
x.className += " responsive";
} else {
x.className = "topnav container_menu";
}
}

@ -1 +1,53 @@
<p>jello</p>
<h1>Úvod</h1>
<article>
<h2>Slovanská mytológia patrí medzi už skoro zabudnúté mytológie, ale je veľmi fascinujúca.</h2>
</article>
<article>
<h2>Krajiny v ktorých sa vyznávalo slovanské náboěnstvo.
Aktuálne Rusko, Ukrajina, Bielorusko, Česko, Poľsko, Slovensko, Srbsko, Slovinsko, Chorvátsko a aj časti Maďarska.
</h2>
<p></p>
</article>
<article>
<table border="5px" align="center">
<tr>
<th>Slovanskí bohovia a bohyne</th>
<th>Bohovia a bohyne s iných mytológií</th>
</tr>
<tr>
<td>Perún</td>
<td>Zeus, Thor</td>
</tr>
<tr>
<td>Veles</td>
<td>Hades, Loki</td>
</tr>
</table>
</article>
<article>
<h2>white Orbs</h2>
</article>
<article>
<h2>Blue Orbs</h2>
</article>
<article>
<h2>Purple Orbs</h2>
</article>
<article>
<h2>Yellow Orbs</h2>
</article>
<article>
<h2>Gold Orbs</h2>
</article>

0
stranky/jarilo.html Normal file

0
stranky/svarog.html Normal file

0
stranky/veles.html Normal file

@ -1 +1 @@
<h1>pata</h1>
<a href="#hore"><p>Späť nahor</p></a>

@ -1 +1,43 @@
<h1>hlava</h1>
<div id="header" class="container">
<div id="header_nazov" class="flex-item" style="align-self: center;">
<p>Slovanská mytológia</p>
</div>
</div>
<nav>
<div class="topnav container_menu" id="myTopnav">
<a href="/index" class="active">Domov</a>
<div class="dropdown">
<button class="dropbtn">Bohovia
</button>
<div class="dropdown-content">
<a href="/perun">Perún</a>
<a href="/veles">Veles</a>
<a href="/svarog">Svarog</a>
<a href="/jarilo">Jarilo</a> <!--neskôr upracem abecedne-->
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Bohyne
</button>
<div class="dropdown-content">
<a href="/morena">Morena</a>
<a href="/lada">Lada</a>
<a href="/devana">Devana</a>
<a href="/jaga">Jaga</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Bytosti a Démoni
</button>
<div class="dropdown-content">
<a href="/rusalka">Rusalka</a>
<a href="/lesovik">Lesovik</a>
<a href="/kikimora">Kikimora</a>
<a href="/zmej">Zmej</a>
</div>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()"></a>
<br>
</div>
</nav>

@ -17,7 +17,7 @@
</head>
<body>
<header>
<header id="hore">
__TEMPLATE_HEADER__
</header>
<main>