2021-05-07 21:15:20 +02:00
|
|
|
/* ---------- Základné štýly ---------- */
|
|
|
|
header {
|
|
|
|
background-image: url(header-background.jpg);
|
2021-03-21 20:39:58 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
body {
|
|
|
|
background-image: url(header-background.jpg);
|
2021-03-16 23:16:26 +01:00
|
|
|
margin: 0;
|
2021-05-07 21:15:20 +02:00
|
|
|
user-select: none;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
/* ---------- Navigačná lišta (navbar) ---------- */
|
|
|
|
.list {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 1rem 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.item {
|
|
|
|
list-style: none;
|
|
|
|
margin-right: 3rem;
|
|
|
|
cursor: pointer;
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.item:first-child {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 1.3rem;
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.itemImg {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 1.3rem;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.list li {
|
2021-03-16 23:16:26 +01:00
|
|
|
color: #FFFFFF;
|
|
|
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
2021-05-07 21:15:20 +02:00
|
|
|
font-size: 20px;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.list li:hover {
|
|
|
|
color: chartreuse;
|
|
|
|
transition: color 0.2s ease-in-out;
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.wsImg {
|
|
|
|
border-radius: 10px;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.wsImg:first-child {
|
|
|
|
margin-right: auto;
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
/* ---------- Burger Menu ---------- */
|
|
|
|
.burger {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 40px;
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
visibility: collapse;
|
|
|
|
margin-right: 2rem;
|
|
|
|
margin-top: -10px;
|
|
|
|
position: absolute;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.burgerList {
|
2021-03-21 20:39:58 +01:00
|
|
|
display: none;
|
2021-03-16 23:16:26 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
@media (max-width: 800px) {
|
|
|
|
.item {
|
|
|
|
display: none;
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.burger {
|
2021-03-21 00:00:34 +01:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.burgerList {
|
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 30px;
|
|
|
|
margin-top: 0px;
|
|
|
|
color: white;
|
|
|
|
list-style: none;
|
2021-03-21 00:00:34 +01:00
|
|
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
|
|
font-size: 20px;
|
2021-03-21 20:39:58 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.bItem {
|
|
|
|
margin-top: 10px;
|
2021-03-21 20:39:58 +01:00
|
|
|
}
|
2021-05-07 21:15:20 +02:00
|
|
|
.appear {
|
|
|
|
display: flex;
|
2021-03-21 20:39:58 +01:00
|
|
|
}
|
2021-03-21 00:00:34 +01:00
|
|
|
}
|