mirror of
https://github.com/System-End/haxmas-day-5.git
synced 2026-04-19 16:28:18 +00:00
81 lines
1.1 KiB
CSS
81 lines
1.1 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #2d5a3f;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 25px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
h1 {
|
|
color: #c41e3a;
|
|
}
|
|
|
|
img {
|
|
width: 100px;
|
|
}
|
|
|
|
form {
|
|
background: #f5f5f5;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"],
|
|
select {
|
|
padding: 8px;
|
|
margin: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
input[type="submit"],
|
|
button {
|
|
background: #c41e3a;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.stats {
|
|
background: #1a472a;
|
|
color: white;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.gift-item {
|
|
background: #fafafa;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
margin: 8px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.gift-buttons button {
|
|
padding: 5px 10px;
|
|
margin: 3px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|