Files
stagiaire/css/style.css
T
2026-06-17 11:49:02 +02:00

93 lines
1.6 KiB
CSS

body {
width: 100%;
height: 100%;
background-color: rgb(190, 255, 255);
margin: 0;
}
#img_1 {
display: flex;
width: 20%;
height: 20%;
}
.image_footer {
display: flex;
width: 30%;
height: 30%;
}
.align_x {
display: flex;
width: 100%;
height: 100%;
flex-direction: row;
justify-content: space-between;
}
#text_1 {
display: flex;
width: 65%;
height: 15%;
font-size: 200%;
}
h1 {
background-color: steelblue;
font-size: 40px;
}
.footer {
text-align: center;
background-color: cadetblue;
font-size: 25px;
position: fixed;
bottom: 0;
width: 100%;
}
#nav_barre {
display: flex;
width: 100%;
height: 100px;
background-color: steelblue;
}
.styled {
border: 0;
height: 50%;
width: 40%;
line-height: 2.5;
padding: 0 20px;
font-size: 1rem;
text-align: center;
color: white;
text-shadow: 1px 1px 1px black;
border-radius: 10px;
background-color: royalblue;
background-image: linear-gradient(
to top left,
rgb(0 0 0 / 0.2),
rgb(0 0 0 / 0.2) 30%,
transparent
);
}
.styled:hover {
background-color: midnightblue;
}
.styled:active {
box-shadow:
inset -2px -2px 3px rgb(255 255 255 / 0.6),
inset 2px 2px 3px rgb(0 0 0 / 0.6);
}
#buttons {
height: 100%;
width: 25%;
display: flex;
justify-content: space-around;
flex-direction: row-reverse;
margin-left: auto;
align-items: center;
}
.shadow {
box-shadow: 0px 10px 5px gray;
}
p {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;