Mabasej_Team/websites/WikiSpotCSS.css

84 lines
1.6 KiB
CSS
Raw Normal View History

2021-05-07 21:15:20 +02:00
/* ---------- Základné štýly ---------- */
header {
background-image: url(header-background.jpg);
}
2021-05-07 21:15:20 +02:00
body {
background-image: url(header-background.jpg);
margin: 0;
2021-05-07 21:15:20 +02:00
user-select: none;
}
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-05-07 21:15:20 +02:00
.item {
list-style: none;
margin-right: 3rem;
cursor: pointer;
}
2021-05-07 21:15:20 +02:00
.item:first-child {
margin-right: auto;
margin-left: 1.3rem;
}
2021-05-07 21:15:20 +02:00
.itemImg {
margin-right: auto;
margin-left: 1.3rem;
}
2021-05-07 21:15:20 +02:00
.list li {
color: #FFFFFF;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
2021-05-07 21:15:20 +02:00
font-size: 20px;
}
2021-05-07 21:15:20 +02:00
.list li:hover {
color: chartreuse;
transition: color 0.2s ease-in-out;
}
2021-05-07 21:15:20 +02:00
.wsImg {
border-radius: 10px;
}
2021-05-07 21:15:20 +02:00
.wsImg:first-child {
margin-right: auto;
}
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-05-07 21:15:20 +02:00
.burgerList {
display: none;
}
2021-05-07 21:15:20 +02:00
@media (max-width: 800px) {
.item {
display: none;
}
2021-05-07 21:15:20 +02:00
.burger {
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;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 20px;
}
2021-05-07 21:15:20 +02:00
.bItem {
margin-top: 10px;
}
2021-05-07 21:15:20 +02:00
.appear {
display: flex;
}
}