AkademieProjekt3/style.css

201 lines
2.4 KiB
CSS
Raw Normal View History

2024-03-22 21:19:38 +00:00
/* Import barviček z colors.css */
@import "colors.css";
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2024-03-23 23:58:20 +00:00
body {
2024-03-28 17:53:22 +00:00
max-width: 1000px;
2024-03-23 23:58:20 +00:00
margin: 0 auto;
2024-03-28 17:53:22 +00:00
/*background-color: green;*/
2024-03-22 21:19:38 +00:00
2024-03-23 23:58:20 +00:00
}
2024-03-23 18:38:39 +00:00
/* Terminal ( header) */
2024-03-22 21:19:38 +00:00
2024-03-28 17:53:22 +00:00
h1 {
padding-left: 8px;
}
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-28 17:53:22 +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-23 18:38:39 +00:00
/*Terminal - navigation icons */
2024-03-22 21:19:38 +00:00
.menu-icon {
display: none;
margin-right: 30px;
2024-03-28 17:53:22 +00:00
/*background-color: white;*/
2024-03-23 23:58:20 +00:00
}
/*Dark/Light mode button*/
#toggleButton {
float: right;
margin-right: 30px;
margin-top: 10px;
2024-03-28 17:53:22 +00:00
background-color: #18f700;
color: black;
border-bottom: 60px;
border-radius: 30px;
font-size: 15px;
padding: 5px;
2024-03-22 21:19:38 +00:00
}
2024-03-23 23:58:20 +00:00
2024-03-22 21:19:38 +00:00
/*Header small display*/
@media (max-width: 600px) {
2024-03-23 23:58:20 +00:00
body {
padding: 10px;
}
2024-03-22 21:19:38 +00:00
header {
2024-03-28 17:53:22 +00:00
/*width: 375px; */
2024-03-22 21:19:38 +00:00
position: relative;
}
header nav {
2024-03-28 17:53:22 +00:00
/*background-color: white;*/
2024-03-22 21:19:38 +00:00
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-28 19:54:44 +00:00
/*padding-top: 150px;*/
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 {
padding-top: 115px;
padding-bottom: 50px;
2024-03-28 17:53:22 +00:00
}
2024-03-28 19:54:44 +00:00
2024-03-28 17:53:22 +00:00
#install {
padding-top: 50px;
2024-03-28 19:54:44 +00:00
}
#node {
padding-top: 50px;
padding-bottom: 50px;
2024-03-28 17:53:22 +00:00
}
2024-03-28 19:54:44 +00:00
#apollo {
padding-top: 50px;
padding-bottom: 50px;
}
#coc {
padding-top: 50px;
padding-bottom: 50px;
}
#contact {
padding-top: 50px;
padding-bottom: 50px;
}
#other {
padding-top: 50px;
}
2024-03-28 17:53:22 +00:00
/*Code box*/
.code-box {
background-color: grey;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-family: monospace;
max-width: auto;
}
/*Picture settings*/
.sat {
width: 175px;
2024-03-28 19:08:37 +00:00
height: 175px;
}
.photo {
text-align: center;
2024-03-28 19:54:44 +00:00
padding-top: 50px;
2024-03-28 19:08:37 +00:00
}
.photo img {
2024-03-28 17:53:22 +00:00
2024-03-28 19:08:37 +00:00
width: 300px;
2024-03-28 17:53:22 +00:00
2024-03-28 19:08:37 +00:00
height: 200px;
margin: 10px;
transition: all 0.5s linear;
}
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-23 18:38:39 +00:00
}
2024-03-22 21:19:38 +00:00
2024-03-23 18:38:39 +00:00
footer a {
text-decoration: none;
}