Files
Challenge_14_Magazijn_App_p…/concept/style.css

53 lines
869 B
CSS
Raw Normal View History

2025-09-29 09:51:54 +02:00
body{
2025-09-30 11:37:54 +02:00
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;
2025-09-29 09:51:54 +02:00
}
2025-09-30 11:37:54 +02:00
.left-buttons, .right-buttons {
display: flex;
gap: 10px;
}
2025-09-30 09:49:14 +02:00
ul {
2025-10-01 10:57:26 +02:00
list-style-type: none;
margin: 0;
padding: 0;
display: none;
2025-09-29 09:57:22 +02:00
}
button{
2025-09-30 10:00:51 +02:00
color: white;
2025-09-30 09:49:14 +02:00
font-size: large;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
2025-09-30 11:37:54 +02:00
background-color: #d3705a;
height: 75px;
width: 100px;
2025-09-30 09:49:14 +02:00
border-radius: 5px;
2025-10-01 10:41:14 +02:00
border: black solid 2px;
2025-09-30 11:37:54 +02:00
}
button:hover{
background-color: #cd977e;
2025-10-01 10:41:14 +02:00
}
#info{
padding: 10px;
border-radius: 15px;
border:black solid 2px ;
margin: 3rem;
background-color: white;
height: 600px;
width: 900px;
2025-09-29 09:51:54 +02:00
}