You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
175 lines
2.3 KiB
175 lines
2.3 KiB
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Trebuchet MS', sans-serif;
|
|
color: lightgrey;
|
|
text-shadow: 1px 2px 4px black;
|
|
}
|
|
|
|
body {
|
|
background-color: #35363a;
|
|
z-index: 0;
|
|
}
|
|
|
|
header {
|
|
background-color: #202124;
|
|
z-index: 100;
|
|
font-size: 18px;
|
|
}
|
|
|
|
header.sticky {
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
footer {
|
|
background-color: #202124;
|
|
height: 75px;
|
|
margin-top: 25px;
|
|
padding-top: 29px;
|
|
}
|
|
|
|
ul li {
|
|
list-style: none;
|
|
}
|
|
|
|
ul li p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
ul li a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
padding-left: 3%;
|
|
padding-right: 3%;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.navbar {
|
|
width: 100%;
|
|
display: flex;
|
|
margin-top: 5px;
|
|
height: 85px;
|
|
align-items: center;
|
|
}
|
|
|
|
#logo {
|
|
display: block;
|
|
width: 94px;
|
|
height: 50px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 2px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.titleLogo {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
nav {
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
|
|
.navbar nav ul li {
|
|
list-style: none;
|
|
display: inline-block;
|
|
margin-right: 22px;
|
|
}
|
|
|
|
nav ul li a {
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
.borderButton {
|
|
border: 2px solid black;
|
|
|
|
padding: 8px;
|
|
|
|
background-color: black;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
text-decoration: none;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.borderButton:hover {
|
|
border-color: #e4994a;
|
|
box-shadow: 0 0 6px #e4994f;
|
|
}
|
|
|
|
p .borderButton {
|
|
border-radius: 5px;
|
|
border: 2px solid #131415;
|
|
background-color: #131415;
|
|
}
|
|
|
|
.barSeperation {
|
|
border-bottom: 5px solid #e4994a;
|
|
height: 100%;
|
|
margin-left: -100%;
|
|
margin-right: -100%;
|
|
}
|
|
|
|
.firstCol {
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.firstCol h2 {
|
|
text-align: center;
|
|
font-size: 23px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
section {
|
|
background-color: #202124;
|
|
margin: 20px;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
transition: 0.1s;
|
|
}
|
|
|
|
section:hover {
|
|
box-shadow: 0 0 3px #e4994f;
|
|
}
|
|
|
|
.firstCol h3 {
|
|
padding: 20px;
|
|
padding-bottom: 25px;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
}
|
|
|
|
p {
|
|
font-size: 15px;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
footer p {
|
|
font-size: 13px;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
.titleLogo {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.firstCol {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|