shfw-walkthrough/logic/style.css

50 lines
762 B
CSS
Raw Normal View History

2024-05-10 17:37:02 +02:00
css
2024-03-24 14:53:43 +01:00
body {
font-family: Arial, sans-serif;
background-color: #121212;
2024-03-26 10:11:11 +01:00
color: white;
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-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;
background-color: #333;
2024-03-26 10:11:11 +01:00
border: 1px solid #444;
color: white;
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
}