2024-08-30 13:45:16 +02:00
|
|
|
.app {
|
2024-08-27 13:16:43 +02:00
|
|
|
background-color: blue;
|
|
|
|
}
|
2024-08-30 13:45:16 +02:00
|
|
|
|
|
|
|
.buttons {
|
2024-08-27 13:16:43 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2024-08-30 13:45:16 +02:00
|
|
|
margin-left: 20px;
|
|
|
|
color: rgb(28, 46, 46);
|
|
|
|
width: auto;
|
2024-08-27 13:16:43 +02:00
|
|
|
}
|
2024-08-30 13:45:16 +02:00
|
|
|
.button{
|
|
|
|
border-radius: 25px;
|
|
|
|
background: #73AD21;
|
|
|
|
padding: 10px;
|
|
|
|
width: 50px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sentence {
|
2024-08-27 13:16:43 +02:00
|
|
|
padding: 20px;
|
2024-08-30 13:45:16 +02:00
|
|
|
background-color: blanchedalmond;
|
|
|
|
font-size: x-large;
|
2024-08-27 13:16:43 +02:00
|
|
|
}
|