Mabasej_Team/website/WikiSpotCSS.css

147 lines
3.1 KiB
CSS
Raw Permalink 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);
2021-05-10 15:03:04 +02:00
background-repeat: no-repeat;
background-attachment: fixed;
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-10 15:03:04 +02:00
flex-direction: row;
}
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 {
2021-05-11 08:55:16 +02:00
cursor: pointer;
2021-05-07 21:15:20 +02:00
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 {
2021-05-11 08:55:16 +02:00
color: rgba(255, 255, 255, 0.418);
2021-05-07 21:15:20 +02:00
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) {
2021-05-10 15:03:04 +02:00
#githubImg {
display: none;
}
2021-05-07 21:15:20 +02:00
.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;
}
2021-05-08 13:26:22 +02:00
}
/* ---------- Hlavná stránka ---------- */
#downloadHolder {
2021-05-11 08:55:16 +02:00
margin-top: 10px;
2021-05-10 22:29:01 +02:00
margin-left: 35%;
2021-05-08 13:26:22 +02:00
display: flex;
justify-content: space-between;
width: 550px;
align-items: center;
}
2021-05-10 22:29:01 +02:00
#appDownload {
2021-05-08 13:26:22 +02:00
cursor: pointer;
background-color: none;
color: white;
border: 4px white solid;
border-radius: 50px;
2021-05-11 08:55:16 +02:00
margin-right: 0px;
2021-05-08 13:26:22 +02:00
width: auto;
2021-05-11 08:55:16 +02:00
height: 30px;
2021-05-08 13:26:22 +02:00
padding: 10px;
position: static;
2021-05-11 08:55:16 +02:00
font-size: 25px;
2021-05-08 13:26:22 +02:00
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
2021-05-11 08:55:16 +02:00
transition: background-color 0.5s, color 0.5s;
2021-05-08 13:26:22 +02:00
}
2021-05-11 08:55:16 +02:00
#appDownload:hover {
2021-05-08 13:26:22 +02:00
background-color: white;
color: rgb(47, 40, 150) ;
}
#phoneImg {
2021-05-11 08:55:16 +02:00
width: 350px;
2021-05-10 22:29:01 +02:00
height: auto;
2021-05-10 15:03:04 +02:00
}
#conHolder {
width: 500px;
height: 500px;
margin-top: 15%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
/* ---------- O projekte ---------- */
#projectInfo {
2021-05-11 08:55:16 +02:00
position: absolute;
top: 250px;
left: 450px;
background-color: rgba(255, 255, 255, 0.322);
2021-05-10 15:03:04 +02:00
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
2021-05-11 08:55:16 +02:00
color: rgb(255, 255, 255);
padding: 15px;
border-radius: 20px;
width: 470px;
2021-05-10 15:03:04 +02:00
height: auto;
2021-05-11 08:55:16 +02:00
font-size: 40px;
}