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.
155 lines
2.4 KiB
155 lines
2.4 KiB
*{
|
|
color: white;
|
|
font-family: Arial;
|
|
}
|
|
|
|
body {
|
|
background-color: lightgray;
|
|
height: 100vh;
|
|
margin: 0px;
|
|
}
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 98vw;
|
|
height: 8vh;
|
|
background-color: black;
|
|
padding-top: 1vh;
|
|
padding-bottom: 1vh;
|
|
padding-left: 1vw;
|
|
padding-right: 1vw;
|
|
border-top: 2px solid gray;
|
|
}
|
|
|
|
aside {
|
|
position:absolute;
|
|
right:0;
|
|
top: 100px;
|
|
width: 19vh;
|
|
height: 150px;
|
|
background-color: black;
|
|
border-bottom-left-radius: 10px;
|
|
border-left: 3px solid gray;
|
|
border-bottom: 2px solid gray;
|
|
box-shadow: -10px 10px 15px 0px gray;
|
|
}
|
|
|
|
aside a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
header {
|
|
background-color: black;
|
|
height: 98px;
|
|
width: 100vw;
|
|
padding-top: 0;
|
|
border-bottom: 2px solid gray;
|
|
}
|
|
|
|
aside h2 {
|
|
background-color: black;
|
|
margin: 0px;
|
|
padding: 1vh;
|
|
text-align: center;
|
|
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, nav ul li:hover
|
|
{
|
|
color:black;
|
|
background-color: lightgray;
|
|
border-top-color: lightgray;
|
|
border-right-color: lightgray;
|
|
}
|
|
|
|
nav {
|
|
flex-wrap: nowrap;
|
|
height: 34px;
|
|
}
|
|
|
|
.nav_img {
|
|
height: 5vh;
|
|
width: 5vh;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#contact {
|
|
padding-top: 25px;
|
|
padding-left:1vh;
|
|
}
|
|
|
|
#current_page {
|
|
background-color: white;
|
|
color: black;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
}
|
|
|
|
.sous {
|
|
display: none;
|
|
background-color: black;
|
|
}
|
|
|
|
nav > div:hover .sous {
|
|
display:block;
|
|
}
|
|
|
|
#deroulant_div {
|
|
padding: 0;
|
|
}
|
|
|
|
#media_par {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding-top:0.5vh;
|
|
padding-bottom: -0.5vh;
|
|
}
|
|
|
|
#deroule_wrapper {
|
|
position: absolute;
|
|
top:32px;
|
|
width: 20.05vw;
|
|
left: 20vw;
|
|
}
|
|
|
|
|
|
section, form {
|
|
width: 75vw;
|
|
margin-left: 5vw;
|
|
margin-right: 5vw;
|
|
background: linear-gradient(to right, gray, lightgray 85%);
|
|
margin-bottom: 2vh;
|
|
border-bottom-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.description{
|
|
font-size: 1.15em;
|
|
padding: 2%;
|
|
border: 2px solid black;
|
|
border-top:none;
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
|
|
section h2 {
|
|
clear: left;
|
|
background-color: black;
|
|
border-top-right-radius: 10px;
|
|
padding: 1%;
|
|
margin-bottom: 0px;
|
|
} |