8,959
edits
| No edit summary | No edit summary | ||
| Line 1: | Line 1: | ||
| /* Kitchen Sink Logo*/ | /* Kitchen Sink Logo*/ | ||
| .lifebar-frame { | .lifebar-frame { | ||
|     position: relative; | |||
|     width: 100%; | |||
|     height: 100vh; /* Занимает всю высоту экрана */ | |||
|      display: flex; |      display: flex; | ||
|     justify-content: center; | |||
|      align-items: center; |      align-items: center; | ||
| } | } | ||
| Line 10: | Line 12: | ||
|      display: flex; |      display: flex; | ||
|      align-items: center; |      align-items: center; | ||
|     margin-right: 15px; /* Отступ между полосками и текстом */ | |||
| } | } | ||
| Line 33: | Line 36: | ||
| .lifebar-caption { | .lifebar-caption { | ||
|      font-size: 16px; |      font-size: 16px; | ||
|     position: absolute; | |||
|     left: 50%; | |||
|     transform: translateX(-50%); /* Центрирует текст по горизонтали */ | |||
| } | } | ||