2024-01-13 19:32:02 +00:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#flex-center {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
2024-01-11 22:20:59 +00:00
|
|
|
#container {
|
|
|
|
font-size: xx-large;
|
2024-01-13 19:32:02 +00:00
|
|
|
border: 1px solid #000;
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
#view {
|
2024-01-13 23:57:05 +00:00
|
|
|
width: 246px;
|
2024-01-13 19:32:02 +00:00
|
|
|
height: 60px;
|
|
|
|
background-color: #ccc;
|
|
|
|
border: 1px solid #000;
|
2024-01-11 22:20:59 +00:00
|
|
|
}
|
|
|
|
.buttons-flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.button {
|
2024-01-13 19:32:02 +00:00
|
|
|
background-color: #fafafa;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
width: 60px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items:center;
|
2024-01-11 22:20:59 +00:00
|
|
|
border: 1px solid #000;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.button:active {
|
|
|
|
background-color: #888;
|
|
|
|
}
|