shfw-walkthrough/logic/style.css

50 lines
999 B
CSS
Raw Normal View History

2024-03-24 14:53:43 +01:00
body {
font-family: Arial, sans-serif;
2024-05-10 18:09:49 +02:00
background-color: #121212; /* Dark background */
color: white; /* Light text for readability in dark mode */
2024-03-24 14:53:43 +01:00
margin: 0;
2024-03-26 10:11:11 +01:00
padding: 0;
box-sizing: border-box;
2024-03-24 14:53:43 +01:00
}
.container {
max-width: 600px;
2024-03-26 10:11:11 +01:00
margin: 20px auto;
padding: 0 15px;
box-sizing: border-box;
2024-03-24 14:53:43 +01:00
}
.input-section label {
display: block;
2024-03-26 10:11:11 +01:00
margin-top: 20px;
2024-05-10 18:09:49 +02:00
color: white; /* Ensuring text is visible in dark mode */
2024-03-24 14:53:43 +01:00
}
2024-03-26 10:11:11 +01:00
.input-section input,
button {
2024-03-24 14:53:43 +01:00
width: 100%;
padding: 10px;
margin-bottom: 20px;
2024-05-10 18:09:49 +02:00
background-color: #333; /* Darker elements to fit dark mode */
border: 1px solid #444; /* Subtle border in dark mode */
color: white; /* Text color in inputs and buttons */
2024-03-26 10:11:11 +01:00
box-sizing: border-box;
2024-03-24 14:53:43 +01:00
}
button {
cursor: pointer;
2024-03-26 10:11:11 +01:00
display: block;
2024-03-24 14:53:43 +01:00
}
2024-03-26 10:11:11 +01:00
@media (max-width: 768px) {
.container {
margin: 10px;
}
.input-section input,
button {
margin-left: auto;
margin-right: auto;
}
2024-05-10 17:37:02 +02:00
}