mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
38 lines
498 B
CSS
38 lines
498 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
form {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
form input[type="number"],
|
|
form button {
|
|
margin: 5px;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
td {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.n {
|
|
background-color: #000;
|
|
}
|
|
|
|
.b {
|
|
background-color: #fff;
|
|
} |