201 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			201 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Import barviček z colors.css */
 | 
						|
@import "colors.css";
 | 
						|
 | 
						|
* {
 | 
						|
  margin: 0;
 | 
						|
 | 
						|
  padding: 0;
 | 
						|
 | 
						|
  box-sizing: border-box;
 | 
						|
}
 | 
						|
body {
 | 
						|
	  max-width: 1000px;
 | 
						|
	  margin: 0 auto;
 | 
						|
	  /*background-color: green;*/
 | 
						|
 | 
						|
}
 | 
						|
/* Terminal ( header) */
 | 
						|
 | 
						|
h1 {
 | 
						|
	padding-left: 8px;
 | 
						|
}
 | 
						|
 | 
						|
header {
 | 
						|
  margin-top: 25px;
 | 
						|
  display: flex;
 | 
						|
  align-items: center;
 | 
						|
  height: 70px;
 | 
						|
  flex-direction: row;
 | 
						|
/*position: fixed;*/
 | 
						|
}
 | 
						|
 | 
						|
.title {
 | 
						|
  padding-top: 25px;
 | 
						|
}
 | 
						|
 | 
						|
.title {
 | 
						|
  flex-grow: 1;
 | 
						|
  display: flex;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
/* navigation */
 | 
						|
nav {
 | 
						|
  margin-right: 30px;
 | 
						|
}
 | 
						|
 | 
						|
nav li {
 | 
						|
  display: inline-block;
 | 
						|
  list-style-type: none;
 | 
						|
  margin-right: 20px;
 | 
						|
}
 | 
						|
 | 
						|
nav li a {
 | 
						|
  text-decoration: none;
 | 
						|
  color: black;
 | 
						|
}
 | 
						|
 | 
						|
/*Terminal - navigation icons */
 | 
						|
 | 
						|
.menu-icon {
 | 
						|
  display: none;
 | 
						|
  margin-right: 30px;
 | 
						|
/*background-color: white;*/
 | 
						|
}
 | 
						|
 | 
						|
/*Dark/Light mode button*/
 | 
						|
#toggleButton {
 | 
						|
float: right;
 | 
						|
margin-right: 30px;
 | 
						|
margin-top: 10px;
 | 
						|
background-color: #18f700;
 | 
						|
color: black;
 | 
						|
border-bottom: 60px;
 | 
						|
border-radius: 30px;
 | 
						|
font-size: 15px;
 | 
						|
padding: 5px;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
/*Header small display*/
 | 
						|
@media (max-width: 600px) {
 | 
						|
	body {
 | 
						|
padding: 10px;
 | 
						|
	}
 | 
						|
 | 
						|
  header {
 | 
						|
	/*width: 375px;  */
 | 
						|
    position: relative;
 | 
						|
  }
 | 
						|
  header nav {
 | 
						|
    /*background-color: white;*/
 | 
						|
    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;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
/* Sekce */
 | 
						|
 | 
						|
.content {
 | 
						|
  /*padding-top: 150px;*/
 | 
						|
  text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
.welcome {
 | 
						|
	padding-top: 115px;
 | 
						|
	padding-bottom: 50px;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
#install {
 | 
						|
	padding-top: 50px;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#node {
 | 
						|
	padding-top: 50px;
 | 
						|
	padding-bottom: 50px;
 | 
						|
}
 | 
						|
 | 
						|
#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;
 | 
						|
	
 | 
						|
}
 | 
						|
 | 
						|
/*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;
 | 
						|
	height: 175px;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
.photo {
 | 
						|
	text-align: center;
 | 
						|
	padding-top: 50px;
 | 
						|
}
 | 
						|
.photo img {
 | 
						|
 | 
						|
    width: 300px;
 | 
						|
 | 
						|
    height: 200px;
 | 
						|
 | 
						|
    margin: 10px;
 | 
						|
 | 
						|
    transition: all 0.5s linear;
 | 
						|
 | 
						|
}
 | 
						|
/*footer pevná pozice*/
 | 
						|
 | 
						|
footer {
 | 
						|
  bottom: 0;
 | 
						|
  margin-bottom: 10px;
 | 
						|
  margin-left: 25px;
 | 
						|
  margin-top: 20px;
 | 
						|
 }
 | 
						|
 | 
						|
footer a {
 | 
						|
  text-decoration: none;
 | 
						|
}
 |