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.
108 lines
1.7 KiB
108 lines
1.7 KiB
@font-face {
|
|
font-family:"Kaushan";
|
|
src: url("../fonts/Caveat/kaushan-script/KaushanScript-Regular.otf") format("truetype");
|
|
}
|
|
|
|
body{
|
|
background-color: rgb(203, 223, 255);
|
|
margin: 0;
|
|
font-family:"Kaushan";
|
|
font-size: 17px;
|
|
}
|
|
|
|
header{
|
|
text-align: center;
|
|
}
|
|
|
|
.navbar {
|
|
background: linear-gradient(to right, #0063cd, #badbff);
|
|
box-shadow: 0px 10px 0px #6bb2ff;
|
|
height: 100px;
|
|
width: 100%;
|
|
margin: 0;
|
|
position: sticky;
|
|
top: 0;
|
|
padding: 0px;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
flex-flow: wrap;
|
|
}
|
|
|
|
.navbar a {
|
|
float: left;
|
|
font-size: 20px;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.deroulant {
|
|
float: left;
|
|
overflow: hidden;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.deroulant .sousmenu {
|
|
font-size: 20px;
|
|
border: none;
|
|
outline: none;
|
|
color: white;
|
|
padding: 14px 16px;
|
|
background-color: inherit;
|
|
font-family: inherit;
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar a {
|
|
transition-duration: 0.5s;
|
|
}
|
|
|
|
.navbar a:hover, .deroulant:hover .sousmenu {
|
|
background-color: #aed5ff;
|
|
color: black;
|
|
}
|
|
|
|
.deroulant-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
}
|
|
|
|
.deroulant-content a {
|
|
float: none;
|
|
color: black;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
display: block;
|
|
text-align: left;
|
|
}
|
|
|
|
.deroulant-content a:hover {
|
|
background-color: #aed5ff;
|
|
}
|
|
|
|
.deroulant:hover .deroulant-content {
|
|
display: block;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.debut{
|
|
padding: 80px;
|
|
margin: 0;
|
|
}
|
|
|
|
.clearfloat{
|
|
clear: left;
|
|
}
|
|
|
|
.fin{
|
|
padding-top: 30px;
|
|
text-align: center;
|
|
color: white;
|
|
} |