2023-05-23 00:46:07 +03:00
|
|
|
.result-container {
|
2024-01-21 21:06:32 +02:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
grid-gap: 10px;
|
2023-05-23 00:46:07 +03:00
|
|
|
}
|
|
|
|
|
|
2024-01-21 21:06:32 +02:00
|
|
|
.result-item {
|
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
text-align: center;
|
2023-06-22 19:20:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.resultTitle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.resultTitle h3 {
|
|
|
|
|
margin: 0;
|
2023-05-23 00:46:07 +03:00
|
|
|
}
|