Files
Challenge_14_Magazijn_App_p…/concept/style.css

24 lines
420 B
CSS
Raw Normal View History

2025-09-29 09:51:54 +02:00
body{
2025-09-30 09:49:14 +02:00
background-color: greenyellow;
2025-09-29 09:51:54 +02:00
}
2025-09-30 09:49:14 +02:00
ul {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #333333;
display: flex;
justify-content: center;
border-radius: 15px;
2025-09-29 09:57:22 +02:00
}
button{
2025-09-30 09:49:14 +02:00
font-size: large;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
background-color: chocolate;
height: 100px;
width: 150px;
margin: 1rem;
border-radius: 5px;
2025-09-29 09:51:54 +02:00
}