|
|
Line 1: |
Line 1: |
| .tow-disclaimer-container { | | .upper_tables { |
| display: inline-flex;
| | z-index: -1; /* Устанавливаем низкий уровень слоя, чтобы элемент был ниже других */ |
| flex-direction: column;
| |
| max-width: 50%;
| |
| width: 100%;
| |
| background-color: #EFB737; /* Фоновый цвет */
| |
| border: 2px solid #D02019; /* Граница */
| |
| border-radius: 10px 10px 0 0; /* Скругленные верхние углы */
| |
| overflow: hidden; /* Скрытие переполненного контента */
| |
| margin: 0 auto; /* Центрирование */
| |
| z-index: 100; /* Выше других слоев */ | |
| box-sizing: border-box;
| |
| }
| |
| | |
| .tow-disclaimer-banner {
| |
| text-align: center;
| |
| padding: 0.5em;
| |
| border-radius: 10px 10px 0 0;
| |
| }
| |
| | |
| .tow-disclaimer-headline {
| |
| font-family: 'MyCustomFont1', sans-serif; /* Укажите резервный шрифт */
| |
| font-size: 40px;
| |
| color: #D02019; /* Цвет текста заголовка */
| |
| font-weight: bold;
| |
| line-height: 1;
| |
| }
| |
| | |
| .tow-link-styled {
| |
| text-decoration: none; /* Убираем подчеркивание ссылки */
| |
| }
| |
| | |
| .tow-link-styled:hover .tow-disclaimer-headline {
| |
| text-decoration: underline; /* Подчеркивание при наведении */
| |
| text-decoration-color: #D02019; /* Цвет подчеркивания */
| |
| }
| |
| | |
| .tow-disclaimer-body {
| |
| padding: 0.5em 1em;
| |
| text-align: center;
| |
| color: #000; /* Цвет текста контента */
| |
| }
| |
| | |
| .tow-disclaimer-body p {
| |
| margin: 0.5em 0;
| |
| }
| |
| | |
| .tow-divider-line {
| |
| border: 0;
| |
| height: 1px;
| |
| background: #D02019; /* Цвет линии, соответствующий границе */
| |
| margin: 0.5em 0;
| |
| }
| |
| | |
| .tow-copyable-email {
| |
| cursor: pointer; /* Указатель для копируемого текста */
| |
| } | | } |
|
| |
|