ZooWebseite/JereZoo/css/layout.css

56 lines
867 B
CSS
Raw Permalink Normal View History

2024-04-17 08:53:49 +02:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
2024-04-18 16:15:43 +02:00
background-image: url('../Picture/background.jpg');
background-size: cover;
background-position: center;
text-align: center;
color:rgb(96, 74, 45);
2024-04-17 08:53:49 +02:00
}
header, footer {
2024-04-18 16:15:43 +02:00
background-color: rgb(255, 172, 70);
color:rgb(161, 116, 58);
2024-04-17 08:53:49 +02:00
text-align: center;
padding: 20px 0;
}
section {
padding: 20px;
2024-04-18 16:15:43 +02:00
margin: 20px auto;
max-width: 800px;
background-color: rgba(255, 195, 122, 0.8);
2024-04-17 08:53:49 +02:00
}
h2 {
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
2024-04-18 16:15:43 +02:00
border: 1px solid #000000;
2024-04-17 08:53:49 +02:00
padding: 10px;
}
#animal-gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
#animal-gallery img {
max-width: 100%;
height: auto;
}