mirror of
https://github.com/Alvin-Zilverstand/school.git
synced 2026-03-06 13:26:22 +01:00
53 lines
767 B
CSS
53 lines
767 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f9f9f9;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #F56E28;
|
|
}
|
|
|
|
.orders-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.order {
|
|
background-color: white;
|
|
border: 2px solid #F56E28;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
width: 300px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
text-align: left;
|
|
}
|
|
|
|
.order h2 {
|
|
margin-top: 0;
|
|
color: #F56E28;
|
|
}
|
|
|
|
.order p {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.order ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.order li {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
/* Responsive design */
|
|
@media (max-width: 768px) {
|
|
.order {
|
|
width: 100%; /* Full width for smaller screens */
|
|
}
|
|
}
|