generated from Templates_CodeFirst/templateHtmlCss
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.
80 lines
1.3 KiB
80 lines
1.3 KiB
*{
|
|
color: white;
|
|
font-family: Arial;
|
|
}
|
|
|
|
body {
|
|
background-color: lightgray;
|
|
height: 100vh;
|
|
margin: 0px;
|
|
}
|
|
|
|
header {
|
|
background-color: black;
|
|
height: 98px;
|
|
width: 100vw;
|
|
padding-top: 0;
|
|
border-bottom: 2px solid gray;
|
|
}
|
|
|
|
.navbar_link {
|
|
text-decoration: none;
|
|
text-align: center;
|
|
border: 2px solid gray;
|
|
margin:0;
|
|
padding-top:0.5vh;
|
|
padding-bottom: 0.5vh;
|
|
flex:1;
|
|
}
|
|
|
|
.navbar_link:hover
|
|
{
|
|
color:black;
|
|
background-color: lightgray;
|
|
border-top-color: lightgray;
|
|
border-right-color: lightgray;
|
|
}
|
|
|
|
nav {
|
|
flex-wrap: nowrap;
|
|
height: 34px;
|
|
display: flex;
|
|
}
|
|
|
|
#current_page {
|
|
background-color: white;
|
|
color: black;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.description{
|
|
font-size: 2vh;
|
|
padding: 2%;
|
|
border: 2px solid black;
|
|
border-top:none;
|
|
border-bottom-left-radius: 10px;
|
|
background-color: gray;
|
|
}
|
|
|
|
section > h2 {
|
|
clear: left;
|
|
background-color: black;
|
|
border-top-right-radius: 10px;
|
|
padding: 1%;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.illustration {
|
|
height: 25vh;
|
|
margin-top: 2.5vh;
|
|
}
|
|
|
|
section {
|
|
margin-top: 5vh;
|
|
margin-left: 10vw;
|
|
margin-bottom: 2vh;
|
|
font-size: 110%;
|
|
border-bottom-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
width: 80vw;
|
|
} |