184 lines
3.4 KiB
CSS
184 lines
3.4 KiB
CSS
@font-face {
|
|
font-family: bethellen;
|
|
src: url('bethellen.otf') format('opentype');
|
|
}
|
|
|
|
|
|
body{
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
background-image: url('img/liege.jpg');
|
|
background-size: 500px;
|
|
font-weight: 400;
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin:0;
|
|
color: rgb(75, 56, 8);
|
|
}
|
|
|
|
h2{
|
|
font-weight: 500;
|
|
margin: 0;
|
|
}
|
|
|
|
.separateur{
|
|
height: 50px;
|
|
}
|
|
|
|
hr{
|
|
border-radius: solid 1px;
|
|
border-radius: 50%;
|
|
opacity: 50%;
|
|
width: 85%;
|
|
margin-top: 5px;
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
nav{
|
|
max-width: 300px;
|
|
flex: 3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
text-align: center;
|
|
padding:15px;
|
|
background-image: url('img/nav.avif');
|
|
background-size: 300px;
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
|
|
}
|
|
|
|
input{
|
|
color: inherit;
|
|
font-size: medium;
|
|
width: 80%;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
background-color: lightyellow;
|
|
border: none;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
}
|
|
|
|
label{
|
|
margin-top: 10px;
|
|
font-weight: 400;
|
|
color: rgb(75, 56, 8);
|
|
font-size: large;
|
|
}
|
|
|
|
button{
|
|
color: inherit;
|
|
font-size: larger;
|
|
font-weight: 500;
|
|
border-radius: 5px;
|
|
min-width: 85%;
|
|
|
|
border: none;
|
|
background-color: lightyellow;
|
|
padding: 10px;
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
|
|
}
|
|
|
|
button:hover{
|
|
background-color: yellow;
|
|
rotate:(-1deg);
|
|
-moz-transform: rotate(-1deg);
|
|
-o-transform: rotate(-1deg);
|
|
-ms-transform: rotate(-1deg);
|
|
transform: rotate(-1deg);
|
|
}
|
|
|
|
#conteneur{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
align-content: flex-start;
|
|
flex: 7;
|
|
padding: 10px;
|
|
}
|
|
|
|
#commandes{
|
|
background-color: rgba(255, 255, 255, 0.171);
|
|
}
|
|
|
|
.tache{
|
|
font-family: bethellen;
|
|
line-height: 1.5;
|
|
display: flex;
|
|
margin:10px;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 200px;
|
|
height: fit-content;
|
|
background-color: gold;
|
|
box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
|
|
padding: 15px;
|
|
rotate:(2deg);
|
|
-moz-transform: rotate(2deg);
|
|
-o-transform: rotate(2deg);
|
|
-ms-transform: rotate(2deg);
|
|
transform: rotate(2deg);
|
|
transition: all 300ms;
|
|
}
|
|
|
|
.tache:hover{
|
|
rotate:(0deg);
|
|
-moz-transform: rotate(0deg);
|
|
-o-transform: rotate(0deg);
|
|
-ms-transform: rotate(0deg);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.titre_tache{
|
|
margin:0;
|
|
padding-top:10px;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.corps_tache{
|
|
margin: 0;
|
|
padding: 5px;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.poubelle{
|
|
width: 20px;
|
|
opacity: 50%;
|
|
transition: all 500ms;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.poubelle:hover{
|
|
opacity: 90%;
|
|
}
|
|
|
|
.radio-conteneur{
|
|
margin-top: 5px;
|
|
padding: 10px;
|
|
background-color: lightyellow;
|
|
border-radius: 10px;
|
|
width: 80%;
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.radio_line{
|
|
display: flex;
|
|
width: 80%;
|
|
justify-content: right;
|
|
}
|
|
|
|
.radio{
|
|
width: 15px;
|
|
margin-left: 1vw;
|
|
position: relative;
|
|
top: 4px;
|
|
} |