maccounter
20 строк · 370.0 Байт
1.button {
2display: flex;
3align-items: center;
4justify-content: center;
5align-self: center;
6margin-top: 60px;
7width: 255px;
8height: 40px;
9background: var(--color-main);
10color: var(--color-bg-component);
11border: none;
12border-radius: var(--size-border-rad-component);
13
14transition: .2s;
15cursor: pointer;
16
17&:hover {
18background: #1173B9;
19}
20}
21