Files
Challenge_14_Magazijn_App_p…/concept/style.css
HodiamontHods 419bbbae15 yes
2025-10-01 10:57:26 +02:00

53 lines
869 B
CSS

body{
background: linear-gradient(to right, #d3705a, #cd977e);
}
header{
background-color: #1f4952;
border-radius: 15px;
padding: 1rem;
}
.header-buttons {
display: flex;
justify-content: space-between;
align-items: center;
}
.left-buttons, .right-buttons {
display: flex;
gap: 10px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: none;
}
button{
color: white;
font-size: large;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
background-color: #d3705a;
height: 75px;
width: 100px;
border-radius: 5px;
border: black solid 2px;
}
button:hover{
background-color: #cd977e;
}
#info{
padding: 10px;
border-radius: 15px;
border:black solid 2px ;
margin: 3rem;
background-color: white;
height: 600px;
width: 900px;
}