Участник:IGRYIIIKA: различия между версиями
Внешний вид
IGRYIIIKA (обсуждение | вклад) Нет описания правки |
IGRYIIIKA (обсуждение | вклад) Нет описания правки |
||
Строка 13: | Строка 13: | ||
--orange-light: #FF9E1F; | --orange-light: #FF9E1F; | ||
--orange-pale: #FFD3B5; | --orange-pale: #FFD3B5; | ||
--neon-orange: #FF3131; | |||
--neon-yellow: #FFF01F; | |||
--bg-dark: #1A1A1A; | --bg-dark: #1A1A1A; | ||
--bg-light: #2D2D2D; | --bg-light: #2D2D2D; | ||
Строка 25: | Строка 27: | ||
margin: 0; | margin: 0; | ||
padding: 20px; | padding: 20px; | ||
} | } | ||
Строка 31: | Строка 32: | ||
max-width: 1000px; | max-width: 1000px; | ||
margin: 0 auto; | margin: 0 auto; | ||
border-radius: 15px; | border-radius: 15px; | ||
overflow: hidden; | overflow: hidden; | ||
box-shadow: 0 | box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); | ||
background: var(--bg-dark); | background: var(--bg-dark); | ||
border: 1px solid var(--orange-main); | border: 1px solid var(--orange-main); | ||
position: relative; | |||
} | |||
.profile-container::before { | |||
content: ''; | |||
position: absolute; | |||
top: -2px; | |||
left: -2px; | |||
right: -2px; | |||
bottom: -2px; | |||
background: linear-gradient(45deg, | |||
var(--neon-orange), | |||
var(--neon-yellow), | |||
var(--orange-light), | |||
var(--neon-orange)); | |||
background-size: 400% 400%; | |||
z-index: -1; | |||
border-radius: 16px; | |||
animation: borderGlow 3s ease infinite; | |||
opacity: 0.7; | |||
} | |||
@keyframes borderGlow { | |||
0% { background-position: 0% 50%; } | |||
50% { background-position: 100% 50%; } | |||
100% { background-position: 0% 50%; } | |||
} | } | ||
Строка 47: | Строка 72: | ||
align-items: center; | align-items: center; | ||
border-bottom: 4px solid var(--orange-main); | border-bottom: 4px solid var(--orange-main); | ||
} | } | ||
Строка 59: | Строка 83: | ||
background: url('https://i.yapx.ru/aS6Fi.png') center/cover; | background: url('https://i.yapx.ru/aS6Fi.png') center/cover; | ||
opacity: 0.15; | opacity: 0.15; | ||
} | } | ||
Строка 66: | Строка 89: | ||
height: 120px; | height: 120px; | ||
background-color: var(--bg-light); | background-color: var(--bg-light); | ||
border: 4px solid | border: 4px solid; | ||
border-radius: 10px; | border-radius: 10px; | ||
margin-right: 25px; | margin-right: 25px; | ||
overflow: hidden; | |||
position: relative; | position: relative; | ||
z-index: 1; | |||
transition: transform 0.3s ease; | |||
} | |||
.skin-display::before { | |||
content: ''; | |||
position: absolute; | |||
top: -2px; | |||
left: -2px; | |||
right: -2px; | |||
bottom: -2px; | |||
background: linear-gradient(45deg, | |||
var(--neon-orange), | |||
var(--neon-yellow), | |||
var(--orange-light), | |||
var(--neon-orange)); | |||
background-size: 400% 400%; | |||
z-index: -1; | |||
border-radius: 12px; | |||
animation: borderGlow 2s ease infinite; | |||
opacity: 0.8; | |||
} | } | ||
.skin-display:hover { | .skin-display:hover { | ||
transform: scale(1.05); | transform: scale(1.05) rotate(2deg); | ||
} | } | ||
Строка 83: | Строка 125: | ||
height: 100%; | height: 100%; | ||
object-fit: cover; | object-fit: cover; | ||
border-radius: 6px; | |||
} | } | ||
Строка 89: | Строка 131: | ||
flex-grow: 1; | flex-grow: 1; | ||
position: relative; | position: relative; | ||
} | } | ||
Строка 96: | Строка 137: | ||
font-size: 42px; | font-size: 42px; | ||
font-weight: 700; | font-weight: 700; | ||
margin: 0; | margin: 0 0 10px 0; | ||
letter-spacing: 1px; | letter-spacing: 1px; | ||
background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700); | background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700); | ||
Строка 103: | Строка 144: | ||
background-clip: text; | background-clip: text; | ||
color: transparent; | color: transparent; | ||
text-shadow: | text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); | ||
animation: shine 3s linear infinite; | animation: shine 3s linear infinite; | ||
} | } | ||
Строка 113: | Строка 152: | ||
100% { background-position: 200% center; } | 100% { background-position: 200% center; } | ||
} | } | ||
.moderator-badge { | |||
display: inline-block; | |||
background: linear-gradient(45deg, var(--orange-dark), var(--orange-light)); | background: linear-gradient(45deg, var(--orange-dark), var(--orange-light)); | ||
padding: 8px 20px; | padding: 8px 20px; | ||
Строка 120: | Строка 160: | ||
font-weight: 700; | font-weight: 700; | ||
font-size: 16px; | font-size: 16px; | ||
color: white; | color: white; | ||
text-shadow: 0 | text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); | ||
border: 1px solid rgba(255, 255, 255, 0.3); | border: 1px solid rgba(255, 255, 255, 0.3); | ||
transition: all 0. | animation: pulse 2s infinite, neonGlow 1.5s infinite alternate; | ||
box-shadow: 0 0 10px rgba(255, 107, 53, 0.7); | |||
transition: all 0.3s ease; | |||
} | } | ||
.moderator-badge:hover { | |||
0 | animation: pulse 0.5s infinite, neonGlow 0.75s infinite alternate; | ||
box-shadow: 0 0 20px rgba(255, 107, 53, 0.9); | |||
} | } | ||
@keyframes pulse { | |||
0%, 100% { transform: scale(1); } | |||
50% { transform: scale(1.05); } | |||
} | } | ||
@keyframes neonGlow { | |||
from { box-shadow: 0 0 5px rgba(255, 107, 53, 0.7), | |||
0 0 10px rgba(255, 107, 53, 0.5); } | |||
to { box-shadow: 0 0 15px rgba(255, 107, 53, 0.9), | |||
0 0 30px rgba(255, 107, 53, 0.7); } | |||
} | } | ||
Строка 167: | Строка 195: | ||
width: 220px; | width: 220px; | ||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); | box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); | ||
backdrop-filter: blur(5px); | backdrop-filter: blur(5px); | ||
transition: all 0. | transition: all 0.3s ease; | ||
animation: infoFloat 4s ease-in-out infinite; | |||
} | |||
@keyframes infoFloat { | |||
0%, 100% { transform: translateY(0); } | |||
50% { transform: translateY(-5px); } | |||
} | |||
.info-corner:hover { | |||
transform: scale(1.03) translateY(-5px); | |||
box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); | |||
animation: none; | |||
} | } | ||
Строка 179: | Строка 218: | ||
padding-bottom: 5px; | padding-bottom: 5px; | ||
text-align: center; | text-align: center; | ||
text-shadow: 0 0 5px rgba(255, 158, 31, 0.5); | |||
} | } | ||
Строка 185: | Строка 224: | ||
margin: 10px 0; | margin: 10px 0; | ||
font-size: 14px; | font-size: 14px; | ||
position: relative; | |||
padding-left: 15px; | |||
} | |||
.info-corner p::before { | |||
content: '»'; | |||
position: absolute; | |||
left: 0; | |||
color: var(--orange-light); | |||
animation: arrowBlink 1.5s infinite; | |||
} | |||
@keyframes arrowBlink { | |||
0%, 100% { opacity: 1; } | |||
50% { opacity: 0.3; } | |||
} | } | ||
Строка 194: | Строка 247: | ||
padding: 30px; | padding: 30px; | ||
background-color: var(--bg-light); | background-color: var(--bg-light); | ||
} | } | ||
.profile-block { | .profile-block { | ||
background: rgba(45, 45, 45, 0.7); | background: linear-gradient(90deg, rgba(45, 45, 45, 0.7), rgba(45, 45, 45, 0.9)); | ||
border-left: 4px solid var(--orange-main); | border-left: 4px solid var(--orange-main); | ||
padding: 20px; | padding: 20px; | ||
border-radius: 0 8px 8px 0; | border-radius: 0 8px 8px 0; | ||
transition: all 0. | transition: all 0.3s ease; | ||
position: relative; | position: relative; | ||
overflow: hidden; | overflow: hidden; | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); | |||
} | |||
.profile-block::before { | |||
content: ''; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
right: 0; | |||
bottom: 0; | |||
border: 1px solid transparent; | |||
border-radius: 0 8px 8px 0; | |||
background: linear-gradient(45deg, | |||
rgba(255, 107, 53, 0.3), | |||
rgba(255, 158, 31, 0.2), | |||
rgba(255, 107, 53, 0.3)); | |||
background-size: 200% 200%; | |||
animation: blockBorderGlow 4s linear infinite; | |||
pointer-events: none; | |||
} | |||
@keyframes blockBorderGlow { | |||
0% { background-position: 0% 50%; opacity: 0.3; } | |||
50% { background-position: 100% 50%; opacity: 0.7; } | |||
100% { background-position: 0% 50%; opacity: 0.3; } | |||
} | } | ||
.profile-block:hover { | .profile-block:hover { | ||
transform: | transform: scale(1.02); | ||
box-shadow: 0 8px 25px rgba(255, 107, 53, 0. | box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); | ||
z-index: 1; | |||
} | } | ||
Строка 219: | Строка 294: | ||
margin-top: 0; | margin-top: 0; | ||
font-size: 22px; | font-size: 22px; | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
text-shadow: 0 0 8px rgba(255, 158, 31, 0.3); | |||
position: relative; | |||
} | } | ||
Строка 230: | Строка 304: | ||
margin-right: 10px; | margin-right: 10px; | ||
color: var(--orange-main); | color: var(--orange-main); | ||
animation: starTwinkle 2s infinite; | |||
text-shadow: 0 0 5px var(--orange-light); | |||
} | |||
@keyframes starTwinkle { | |||
0%, 100% { transform: scale(1); opacity: 1; } | |||
50% { transform: scale(1.3); opacity: 0.7; } | |||
} | } | ||
.profile-block p { | .profile-block p { | ||
color: var(--text-gray); | color: var(--text-gray); | ||
line-height: 1.6; | |||
position: relative; | position: relative; | ||
} | } | ||
. | .profile-block a { | ||
color: var(--orange-pale); | |||
text-decoration: none; | |||
transition: all 0.3s ease; | |||
position: relative; | |||
} | } | ||
. | .profile-block a::after { | ||
content: ''; | |||
position: absolute; | |||
bottom: -2px; | |||
left: 0; | |||
width: 0; | |||
transition: | height: 1px; | ||
background: var(--orange-light); | |||
transition: width 0.3s ease; | |||
} | } | ||
. | .profile-block a:hover { | ||
color: var(--orange-light); | |||
text-shadow: 0 0 5px rgba(255, 158, 31, 0.3); | |||
} | } | ||
. | .profile-block a:hover::after { | ||
width: 100%; | |||
} | } | ||
.full-width { | .full-width { | ||
grid-column: 1 / -1; | grid-column: 1 / -1; | ||
} | } | ||
Строка 310: | Строка 353: | ||
width: 100%; | width: 100%; | ||
margin-top: 10px; | margin-top: 10px; | ||
transition: transform 0. | transition: transform 0.3s ease; | ||
} | } | ||
Строка 320: | Строка 363: | ||
width: 100%; | width: 100%; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
box-shadow: 0 0 10px rgba(255, 202, 0, 0.3); | |||
} | } | ||
</style> | </style> | ||
Строка 336: | Строка 376: | ||
<div class="nickname-section"> | <div class="nickname-section"> | ||
<h1 class="nickname">IGRYIIIKA</h1> | <h1 class="nickname">IGRYIIIKA</h1> | ||
< | <div class="moderator-badge">МОДЕРАТОР</div> | ||
</div> | </div> | ||
Строка 355: | Строка 395: | ||
<div class="profile-block"> | <div class="profile-block"> | ||
<h2>Сервера</h2> | <h2>Сервера</h2> | ||
< | <p><a href="https://wiki.lemoncraft.su/w/Industry">Industry2</a></p> | ||
</div> | </div> | ||
Строка 380: | Строка 414: | ||
<div class="profile-block"> | <div class="profile-block"> | ||
<h2>Юзербокс</h2> | <h2>Юзербокс</h2> | ||
<div | <div class="wikipediauserbox"> | ||
<table | <table style="width: 238px; margin: 0; background:#ffca00;"> | ||
<tr> | |||
<td style="width: 45px; height: 45px; background: #fcff81; text-align: center; font-size: 24pt; color: black; padding: 1px; line-height: 1.25em; vertical-align: middle; | <td style="width: 45px; height: 45px; background: #fcff81; text-align: center; font-size: 24pt; color: black; padding: 1px; line-height: 1.25em; vertical-align: middle;"> | ||
</td> | <img src="/images/thumb/e/ea/LemonCraft.png/32px-LemonCraft.png" width="32" height="32"> | ||
<td style="text-align:left; font-size: 8pt; padding: 4px; line-height: 1.25em; color: #ff0000; vertical-align: middle; background:#ffca00; | </td> | ||
</td></tr></ | <td style="text-align:left; font-size: 8pt; padding: 4px; line-height: 1.25em; color: #ff0000; vertical-align: middle; background:#ffca00;"> | ||
<center>Этот участник в составе команды проекта LemonCraft</center> | |||
</td> | |||
</tr> | |||
</table> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</body> | </body> | ||
</html> | </html> |
Текущая версия от 21:25, 17 августа 2025
<!DOCTYPE html>

IGRYIIIKA
МОДЕРАТОР
Быстрая информация
На проекте: 8 лет
Любит жанр: фонк
Дата рождения: 17 июня
О модераторе
Опытный администратор с глубокими знаниями правил проекта. Всегда готов помочь игрокам и поддержать порядок на сервере.
Сервера
Обязанности
• Модерация чата и форумов
• Рассмотрение жалоб
• Поддержка новых участников
• Техническая поддержка игроков
Контакты
Discord: DELL#3977
Юзербокс
![]() |
|