1. vlozenie obsahu, :)
Co-authored-by: Bruno Rybársky <bruno@brn.systems>
This commit is contained in:
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.
Vendored
+4
File diff suppressed because one or more lines are too long
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user