8,959
edits
| No edit summary Tag: Reverted | No edit summary Tag: Reverted | ||
| Line 1,293: | Line 1,293: | ||
| } | } | ||
| /* Стили для таблицы "New pages" */ | |||
| .new-pages-table { | |||
|     display: inline-block; | |||
|     margin-left: 7px; | |||
|     margin-right: 15px; | |||
|     float: left; | |||
|     border-radius: 10px 10px 0 0; | |||
|     width: 31%; | |||
|     height: 224px; | |||
|     background-color: #f9f9f9; /* Пример цвета фона */ | |||
|     border: 1px solid #C14424; | |||
|     margin-top: 10px; /* Чтобы было немного пространства от сайдбара */ | |||
| } | |||
| /* Стили для заголовка таблицы */ | |||
| .new-pages-table th { | |||
|     width: 40%; | |||
|     background-color: #fff5ee; /* Пример цвета фона заголовка */ | |||
|     border-radius: 10px 10px 0 0; | |||
|     border: 1px solid #C14424; | |||
|     text-align: center; | |||
| } | |||
| /* Стили для содержимого таблицы */ | |||
| .new-pages-table td { | |||
|     border: 1px solid #C14424; | |||
|     background-color: #f9f9f9; /* Пример цвета фона */ | |||
|     text-align: left; | |||
|     padding: 10px; | |||
| } | |||
| .container2 { | |||
|     width: 50vw; /* Ширина контейнера */ | |||
|     height: 100vh; /* Высота контейнера */ | |||
|     overflow: hidden; | |||
|     position: relative; | |||
|     background-color: #fff; /* Цвет фона контейнера */ | |||
|     display: flex; | |||
|     align-items: center; | |||
|     justify-content: center; | |||
| } | |||
| .gradient-text { | |||
|     font-size: 4rem; /* Размер текста */ | |||
|     font-weight: bold; | |||
|     background: linear-gradient(45deg, lightcoral 25%, lightblue 25%, lightblue 50%, lightcoral 50%, lightcoral 55%, lightblue 65%); | |||
|     background-size: 200% 200%; | |||
|     background-clip: text; | |||
|     -webkit-background-clip: text; | |||
|     color: transparent; | |||
|     animation: waveAnimation 4s infinite linear; | |||
| } | |||
| @keyframes waveAnimation { | |||
|     0% { | |||
|         background-position: 0% 0%; | |||
|     } | |||
|     100% { | |||
|         background-position: 100% 100%; | |||
|     } | |||
| } | |||
| li.tooladd { | |||
|     position: relative; | |||
|     display: inline-block; | |||
|     cursor: pointer; | |||
|     vertical-align: top; /* Добавлено для выравнивания по вертикали */ | |||
| } | |||
| li.tooladd .tooltiptext { | |||
|     visibility: hidden; | |||
|     width: 120px; | |||
|     background-color: black; | |||
|     color: #fff; | |||
|     text-align: center; | |||
|     border-radius: 6px; | |||
|     padding: 5px 0; | |||
|     position: absolute; | |||
|     z-index: 1; | |||
|     top: -125%; /* Изменено на top для появления сверху */ | |||
|     left: 50%; | |||
|     margin-left: -60px; | |||
|     opacity: 0; | |||
|     transition: opacity 0.3s; | |||
| } | |||
| li.tooladd:hover .tooltiptext { | |||
|     visibility: visible; | |||
|     opacity: 1; | |||
| } | |||
|        .container { | |||
|             position: relative; | |||
|             display: flex; | |||
|             align-items: center; | |||
|             width: 150px; /* Ширина контейнера */ | |||
|             height: 50px; | |||
|             left: 697px; | |||
|             top: -37px; | |||
|         } | |||
|         .stripe { | |||
|             width: 5px; | |||
|             height: 50%; | |||
|             background-color: #D02019; | |||
|         } | |||
|         .left-stripe { | |||
|             margin-right: 50px; /* Расстояние между полосками и линией */ | |||
|         } | |||
|         .right-stripe { | |||
|             transform: rotate(20deg); /* Наклоняем на 20 градусов */ | |||
|             margin-left: -35px; /* Подвигаем полоску на 5px влево */ | |||
|         } | |||
|         .horizontal-line { | |||
|             position: absolute; | |||
|             width: 10px; /* Ширина линии */ | |||
|             height: 5px; /* Толщина линии */ | |||
|             background-color: #D02019; | |||
|             top: 50%; /* Центрируем вертикально по середине контейнера */ | |||
|             left: calc(50% - 30px - 38px); /* Обновляем расчет для выравнивания линии */ | |||
|             transform: translateY(-50%); /* Центрируем вертикально */ | |||
|         } | |||
| .mail-icon { font-size: 48px; color: #000000; font-size: 96px; } | |||
| .custom-link-text2 a { | |||
|     color: inherit; /* Сохраняет цвет текста */ | |||
|     text-decoration: none; /* Убирает подчеркивание */ | |||
|     color: #fff; | |||
|     margin-top: 10px; | |||
|     margin-bottom: 10px; | |||
| } | |||
| @keyframes blink { | |||
|     0% { opacity: 1; } | |||
|     50% { opacity: 0; } | |||
|     100% { opacity: 1; } | |||
| } | |||
| .blinking-button { | |||
|     animation: blink 1s infinite; | |||
|     background-color: red; | |||
|     color: white; | |||
|     border: none; | |||
|     padding: 10px 20px; | |||
|     text-align: center; | |||
|     text-decoration: none; | |||
|     display: inline-block; | |||
|     font-size: 16px; | |||
|     cursor: pointer; | |||
|     border-radius: 5px; | |||
| } | |||
| @keyframes blink { | |||
|     0% { opacity: 1; } | |||
|     50% { opacity: 0; } | |||
|     100% { opacity: 1; } | |||
| } | |||
| .admin-chat-form { | |||
|     margin: 20px 0; | |||
| } | |||
| .admin-chat-form textarea { | |||
|     width: 100%; | |||
|     margin-bottom: 10px; | |||
| } | |||
| .admin-chat-form-buttons { | |||
|     text-align: right; | |||
| } | |||
| .site-button { | |||
|     background-image: url('/images/6/66/Button_Background.png'); | |||
|     background-color: #007bff; | |||
|     color: white; | |||
|     border: none; | |||
|     border-radius: 4px; | |||
|     padding: 10px 20px; | |||
|     cursor: pointer; | |||
|     transition: background-position 0.5s ease-in-out; | |||
| } | |||
| .site-button:hover { | |||
|     background-position: 5% 5%; | |||
| } | |||
| textarea { | |||
|     display: block; | |||
|     order: -1; | |||
| } | |||
| .c-item { | |||
|     order: 1; | |||
| } | |||
| #some-container { | |||
|     display: flex; | |||
|     flex-direction: column; | |||
| } | |||
| .newcombutton { | |||
|     display: inline-block; | |||
|     padding: 10px 10px; | |||
|     border: 2px solid #191919; | |||
|     color: #fff; | |||
|     text-decoration: none; | |||
|     border-radius: 5px; | |||
|     background-color: #007bff; /* Default color */ | |||
|     transition: transform 0.3s ease, background-color 0.3s ease; | |||
|     margin-right: 5px; | |||
|     word-wrap: break-word; | |||
|     word-break: break-word; | |||
|     transform-origin: left; /* Масштабирование относительно левой стороны */ | |||
|     color: inherit; /* Сохраняет цвет текста */ | |||
|     text-decoration: none; /* Убирает подчеркивание */ | |||
|     box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); | |||
| } | |||
| .newcombutton:hover { | |||
|     transform: scale(1.05); /* Slightly increase size */ | |||
|     opacity: 1.1; | |||
| } | |||
| .butting-button { | |||
|     display: inline-block; /* Make sure the link is displayed as a button */ | |||
|     background-color: red; | |||
|     color: white; | |||
|     border: none; | |||
|     padding: 10px 20px; | |||
|     text-align: center; | |||
|     font-size: 16px; | |||
|     cursor: pointer; | |||
|     border-radius: 5px; | |||
|     text-decoration: none; /* Remove underline from the link */ | |||
|     transition: background-color 0.3s ease; /* Add a smooth transition for hover effect */ | |||
| } | |||
| .butting-button:hover { | |||
|     background-color: darkred; /* Change color on hover for better UX */ | |||
| } | |||
| .comment-item { | |||
|     background-color: #EFE9DE; | |||
|     border: 3px solid #84817B; | |||
|     padding: 10px; /* Добавьте отступы по вашему усмотрению */ | |||
|     border-radius: 5px; /* При необходимости добавьте скругление углов */ | |||
|     list-style: none; | |||
|     padding-left: 20px; | |||
|     width: 42%; | |||
|     transform-origin: left; | |||
| } | |||
| .comment-item comments { | |||
|     padding-left: 50px; /* Отступ слева для содержимого */ | |||
| } | |||
| .comment-item2 { | |||
|     background-color: #E2DDD3; | |||
|     border: 3px solid #84817B; | |||
|     padding: 10px; /* Добавьте отступы по вашему усмотрению */ | |||
|     border-radius: 5px; /* При необходимости добавьте скругление углов */ | |||
|     list-style: none; | |||
|     width: 42%; /* Ограничение ширины */ | |||
|     box-sizing: border-box; /* Включает padding и border в расчет ширины */ | |||
|     overflow: hidden; /* Скрывает содержимое, выходящее за пределы элемента */ | |||
|     white-space: normal; /* Разрешает перенос текста на новую строку */ | |||
| } | |||
| .comment-item2 comments { | |||
|     padding-left: 50px; /* Отступ слева для содержимого */ | |||
|     max-width: 100%; /* Убедитесь, что содержимое не выходит за пределы границ */ | |||
|     box-sizing: border-box; /* Включает padding и border в расчет ширины */ | |||
|     overflow: hidden; /* Скрывает содержимое, выходящее за пределы элемента */ | |||
|     white-space: normal; /* Разрешает перенос текста на новую строку */ | |||
| } | |||
| .rules-item { | |||
|     background-color: #EFE9DE; | |||
|     border: 3px solid #84817B; | |||
|     padding: 10px; /* Добавьте отступы по вашему усмотрению */ | |||
|     border-radius: 5px; /* При необходимости добавьте скругление углов */ | |||
|     list-style: none; | |||
|     padding-left: 20px; | |||
|     transform-origin: left; | |||
|     float:left; | |||
| } | |||
| .comment-item-second { | |||
|     background-color: #EFE9DE; | |||
|     border: 3px solid #84817B; | |||
|     padding: 10px; /* Добавьте отступы по вашему усмотрению */ | |||
|     border-radius: 5px; /* При необходимости добавьте скругление углов */ | |||
|     list-style: none; | |||
|     padding-left: 20px; | |||
|     width: 50%; | |||
|     transform-origin: right; | |||
|     float:right; | |||
|     text-align: center; | |||
|     align-items: center; | |||
|     justify-content: center; | |||
| } | |||
| .comment-item-second comments { | |||
|     padding-left: 50px; /* Отступ слева для содержимого */ | |||
| } | |||
| .map-item { | |||
|     background-color: white; | |||
|     border: 2px solid red; | |||
|     padding: 10px; | |||
|     margin: 10px; | |||
|     list-style: none; /* Убирает стандартные маркеры списка */ | |||
|     text-align: center; /* Центрирует содержимое по горизонтали */ | |||
|     display: flex; | |||
|     justify-content: center; | |||
|     align-items: center; | |||
|     height: 900px; /* Задайте нужную высоту */ | |||
|     overflow: hidden; /* Скрывает выходящее за пределы содержимое */ | |||
|     position: relative; | |||
| } | |||
| /* Замените .custom-link-text на класс или идентификатор вашего элемента */ | |||
| .custom-link-text a { | |||
|     color: inherit; /* Сохраняет цвет текста */ | |||
|     text-decoration: none; /* Убирает подчеркивание */ | |||
| } | |||
| .red-background { | |||
|   background-color: #D02019; | |||
| } | |||
| .twentyonewikilogo { | |||
|     font-family: 'MyCustomFont1'; | |||
|     font-size: 100px; | |||
|     color: #D02019; | |||
|     cursor: pointer; /* Чтобы указать, что элемент кликабельный */ | |||
|     line-height: 1; /* Устанавливаем высоту строки, чтобы минимизировать отступы */ | |||
| } | |||
| .comment-rules-text { | |||
|     font-family: 'MyCustomFont1'; | |||
|     font-size: 22px; | |||
|     color: #000; | |||
|     line-height: 1; /* Устанавливаем высоту строки, чтобы минимизировать отступы */ | |||
|     margin-top: 10px; | |||
|     background: #F7F1E6; | |||
| } | |||
| .interactchoise { | |||
|     font-family: 'MyCustomFont1'; | |||
|     font-size: 40px; | |||
|     color: #D02019; | |||
|     line-height: 1; /* Устанавливаем высоту строки, чтобы минимизировать отступы */ | |||
|     margin-top: 10px; | |||
| } | |||
| .interactchoise:hover { | |||
|     color: #E5241D; | |||
| } | |||
| .choise { | |||
|     font-family: 'MyCustomFont1'; | |||
|     font-size: 30px; | |||
|     color: #D02019; | |||
|     line-height: 1; /* Устанавливаем высоту строки, чтобы минимизировать отступы */ | |||
|     margin-top: 10px; | |||
| } | |||
| .choise:hover { | |||
|     color: #E5241D; | |||
| } | |||
| .pie-chart11 { | |||
|     list-style: none; | |||
|     width: 200px; | |||
|     height: 200px; | |||
|     border-radius: 50%; | |||
|     position: relative; | |||
|     margin: 0; | |||
|     padding: 0; | |||
| } | |||
| .pie-chart11 .segment { | |||
|     width: 50%; | |||
|     height: 50%; | |||
|     background-color: var(--color); | |||
|     position: absolute; | |||
|     top: 50%; | |||
|     left: 50%; | |||
|     transform-origin: 0% 100%; | |||
|     transform: rotate(var(--rotate)) translateY(-100%); | |||
|     transition: transform 0.3s ease; | |||
| } | |||
| .pie-chart11 .segment:hover { | |||
|     transform: rotate(var(--rotate)) translateY(-120%); | |||
| } | |||
| .list-item { | |||
|     list-style-type: none; | |||
|     width: 100%; /* Ширина 100% родительского элемента */ | |||
|     text-align: center; | |||
|     padding: 20px; | |||
|     box-sizing: border-box; /* Учитывает отступы в общей ширине */ | |||
| } | |||
| .list-item span { | |||
|     display: inline-block; | |||
|     color: black; | |||
|     background: url(/images/1/1e/Clancy_Gif_Intro.gif) no-repeat center; | |||
|     background-size: contain; /* Сохраняет пропорции изображения */ | |||
|     padding: 20px; | |||
|     background-clip: text; | |||
|     -webkit-background-clip: text; | |||
|     color: transparent; | |||
| } | |||
|     .custom-li { | |||
|         list-style-type: none; /* Убираем маркеры у списка */ | |||
|         width: 850px; /* Ширина элемента, можно настроить по вашему усмотрению */ | |||
|         height: 850px; /* Высота элемента, можно настроить по вашему усмотрению */ | |||
|         background-image: url('/images/3/37/Is-ø-lat-ed2.png'); | |||
|         background-size: contain; /* Изображение не будет обрезаться */ | |||
|         background-repeat: no-repeat; /* Убираем повторение изображения */ | |||
|         background-position: center; /* Центрируем изображение */ | |||
|         margin: 10px; | |||
|         display: flex; | |||
|         flex-direction: column; /* Направление содержимого по вертикали */ | |||
|         align-items: center; /* Центрируем текст по горизонтали */ | |||
|         justify-content: flex-start; /* Выравниваем текст по верхнему краю элемента */ | |||
|         text-align: center; /* Выравнивание текста по центру внутри элемента */ | |||
|         color: #000; /* Цвет текста, можно изменить по желанию */ | |||
|         font-family: Arial, sans-serif; /* Шрифт текста, можно изменить по желанию */ | |||
|         font-size: 14px; /* Размер текста, можно изменить по желанию */ | |||
|         padding: 60px; /* Внутренний отступ внутри элемента, чтобы текст не примыкал к краям */ | |||
|         box-sizing: border-box; /* Включаем отступы и границы в ширину и высоту элемента */ | |||
|     } | |||
| @keyframes randomMovement { | |||
|     0% { | |||
|         top: 0; | |||
|         left: 0; | |||
|     } | |||
|     25% { | |||
|         top: 100px; | |||
|         left: 200px; | |||
|     } | |||
|     50% { | |||
|         top: 200px; | |||
|         left: 100px; | |||
|     } | |||
|     75% { | |||
|         top: 100px; | |||
|         left: 300px; | |||
|     } | |||
|     100% { | |||
|         top: 0; | |||
|         left: 0; | |||
|     } | |||
| } | |||
| ul { | |||
|     list-style-type: none; | |||
|     padding: 0; | |||
|     margin: 0; | |||
| } | |||
| .moving-li { | |||
|     background-color: #D02019; | |||
|     color: white; | |||
|     border: 2px solid #722215; | |||
|     font-size: 30px; | |||
|     padding: 10px 20px; | |||
|     position: absolute; | |||
|     border-radius: 5px; | |||
|     cursor: pointer; | |||
|     list-style: none; | |||
|     user-select: none; | |||
|     font-family: 'MyCustomFont1', sans-serif; | |||
|     animation: randomMovement 12s infinite ease-in-out; /* Плавное движение */ | |||
| } | |||
| .moving-li:hover { | |||
|     filter: brightness(1.2); | |||
| } | |||
| .table-with-spacing { | |||
|     border-spacing: 10px; | |||
| } | |||
|   .pie-chart { | |||
|     width: 280px; | |||
|     height: 280px; | |||
|     border-radius: 50%; | |||
|     background-image: conic-gradient( | |||
|       #49C2DB 0% 50%,  /* 50% голубого */ | |||
|       #A2C063 50% 90%, /* 40% зелёного */ | |||
|       #636363 90% 100% /* 10% серого */ | |||
|     ); | |||
|     position: relative; | |||
|     list-style-type: none; | |||
|     margin: 0; | |||
|     padding: 0; | |||
|     overflow: hidden; | |||
|   } | |||
|   .pie-chart li { | |||
|     position: absolute; | |||
|     width: 100%; | |||
|     height: 100%; | |||
|     border-radius: 50%; | |||
|     clip-path: polygon(50% 50%, 100% 0, 100% 100%); | |||
|   } | |||