1. vlozenie obsahu, :)

Co-authored-by: Bruno Rybársky <bruno@brn.systems>
This commit is contained in:
2024-06-05 19:14:38 +02:00
parent 85da055b95
commit 761862d36e
21 changed files with 8398 additions and 0 deletions

BIN
assets/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

4
assets/pico.min.css vendored Normal file

File diff suppressed because one or more lines are too long

0
assets/script.js Normal file
View File

68
assets/style.css Normal file
View File

@@ -0,0 +1,68 @@
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header.menu {
background-color: #333;
}
header.menu nav ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
justify-content: center;
}
header.menu nav ul li {
position: relative;
}
header.menu nav ul li a {
display: block;
padding: 14px 20px;
text-decoration: none;
color: white;
}
header.menu nav ul li:hover > a {
background-color: #575757;
}
header.menu nav ul li .submenu {
display: none;
position: absolute;
background-color: #333;
top: 100%;
left: 0;
flex-direction: column;
}
header.menu nav ul li:hover .submenu {
display: flex;
}
header.menu nav ul li .submenu li a {
padding: 10px;
}
.content {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
}