AkademieProjekt3/style.css

205 lines
2.5 KiB
CSS
Raw Normal View History

2024-03-22 21:19:38 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2024-03-23 23:58:20 +00:00
body {
2024-03-29 01:32:24 +00:00
max-width: 1000px;
margin: 0 auto;
2024-03-29 01:43:36 +00:00
font-family: "Ubuntu", sans-serif;
2024-03-23 23:58:20 +00:00
}
2024-03-29 01:43:36 +00:00
2024-03-29 01:32:24 +00:00
/*Header */
2024-03-22 21:19:38 +00:00
2024-03-28 17:53:22 +00:00
h1 {
2024-03-29 01:32:24 +00:00
padding-left: 8px;
2024-03-28 17:53:22 +00:00
}
2024-03-22 21:19:38 +00:00
header {
2024-03-23 18:38:39 +00:00
margin-top: 25px;
2024-03-22 21:19:38 +00:00
display: flex;
align-items: center;
height: 70px;
flex-direction: row;
2024-03-29 01:32:24 +00:00
/*position: fixed;*/
2024-03-22 21:19:38 +00:00
}
.title {
2024-03-23 18:38:39 +00:00
padding-top: 25px;
2024-03-22 21:19:38 +00:00
}
2024-03-28 17:53:22 +00:00
.title {
2024-03-22 21:19:38 +00:00
flex-grow: 1;
display: flex;
}
2024-03-28 17:53:22 +00:00
/* navigation */
2024-03-22 21:19:38 +00:00
nav {
margin-right: 30px;
}
nav li {
display: inline-block;
list-style-type: none;
margin-right: 20px;
}
nav li a {
text-decoration: none;
2024-03-23 18:38:39 +00:00
color: black;
2024-03-22 21:19:38 +00:00
}
2024-03-29 01:32:24 +00:00
/* navigation icons */
2024-03-22 21:19:38 +00:00
.menu-icon {
display: none;
margin-right: 30px;
2024-03-23 23:58:20 +00:00
}
/*Dark/Light mode button*/
#toggleButton {
2024-03-29 01:32:24 +00:00
float: right;
margin-right: 30px;
margin-top: 10px;
padding: 5px;
}
#toggleButton {
bottom: 20px;
right: 20px;
border: none;
outline: none;
background-color: transparent;
font-size: 34px;
cursor: pointer;
2024-03-22 21:19:38 +00:00
}
/*Header small display*/
@media (max-width: 600px) {
2024-03-29 01:32:24 +00:00
body {
padding: 10px;
}
2024-03-23 23:58:20 +00:00
2024-03-22 21:19:38 +00:00
header {
position: relative;
}
header nav {
position: absolute;
top: 70px;
width: 100%;
display: none;
}
.menu-icon {
display: block;
font-size: 23px;
}
header nav li {
display: block !important;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
}
2024-03-23 18:38:39 +00:00
/* Sekce */
2024-03-28 17:53:22 +00:00
.content {
2024-03-23 18:38:39 +00:00
text-align: center;
}
2024-03-22 21:19:38 +00:00
2024-03-28 19:54:44 +00:00
.welcome {
2024-03-29 01:32:24 +00:00
padding-top: 115px;
padding-bottom: 50px;
2024-03-28 17:53:22 +00:00
}
#install {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
2024-03-28 19:54:44 +00:00
}
#node {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
padding-bottom: 50px;
2024-03-28 17:53:22 +00:00
}
2024-03-28 19:54:44 +00:00
#apollo {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
padding-bottom: 50px;
2024-03-28 19:54:44 +00:00
}
#coc {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
padding-bottom: 50px;
2024-03-28 19:54:44 +00:00
}
#contact {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
padding-bottom: 50px;
2024-03-28 19:54:44 +00:00
}
#other {
2024-03-29 01:32:24 +00:00
padding-top: 50px;
2024-03-28 19:54:44 +00:00
}
2024-03-28 17:53:22 +00:00
/*Code box*/
.code-box {
2024-03-29 01:32:24 +00:00
background-color: #353535;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-family: monospace;
max-width: auto;
2024-03-28 17:53:22 +00:00
}
/*Picture settings*/
2024-03-29 01:32:24 +00:00
2024-03-28 17:53:22 +00:00
.sat {
2024-03-29 01:32:24 +00:00
width: 175px;
height: 175px;
2024-03-28 19:08:37 +00:00
}
.photo {
2024-03-29 01:32:24 +00:00
text-align: center;
padding-top: 50px;
2024-03-28 19:08:37 +00:00
}
.photo img {
2024-03-29 01:32:24 +00:00
width: 300px;
height: 200px;
margin: 10px;
transition: all 0.5s linear;
2024-03-28 19:08:37 +00:00
}
2024-03-22 21:19:38 +00:00
/*footer pevná pozice*/
footer {
bottom: 0;
2024-03-23 18:38:39 +00:00
margin-bottom: 10px;
margin-left: 25px;
2024-03-28 17:53:22 +00:00
margin-top: 20px;
2024-03-29 01:32:24 +00:00
}
2024-03-22 21:19:38 +00:00
2024-03-23 18:38:39 +00:00
footer a {
text-decoration: none;
}
2024-03-28 20:16:26 +00:00
#scrollToTopBtn {
2024-03-29 01:43:36 +00:00
display: none;
position: fixed;
2024-03-28 20:16:26 +00:00
bottom: 20px;
right: 20px;
2024-03-29 01:43:36 +00:00
/*butoon přes obsah*/
z-index: 99;
2024-03-28 20:16:26 +00:00
outline: none;
cursor: pointer;
padding: 15px;
border-radius: 50%;
2024-03-29 01:32:24 +00:00
background-color: transparent;
}
/* Styl pro ikonu */
#scrollToTopBtn i {
font-size: 34px;
2024-03-28 20:16:26 +00:00
}