add subscripts pages

This commit is contained in:
2023-05-13 00:33:13 +03:00
parent aa220a02e0
commit 83a2fcaa32
6 changed files with 127 additions and 42 deletions

View File

@@ -556,6 +556,41 @@ a{
}
.button-group {
display: flex;
justify-content: space-between;
align-items: center;
}
.button-group-button {
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
color: #fff;
border: none;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.yes-button {
}
.no-button {
}
.yes-button:hover, .no-button:hover {
opacity: 0.8;
}
Этот код создаст группу кнопок, которые будут размещены в одной линии, в соответствии с указанными стилями. Кнопки будут иметь разные фоновые цвета и эффект наведения.
.orange_block a{