mirror of
https://github.com/raphaelsalaja/userinterface-wiki.git
synced 2026-09-14 20:06:29 +08:00
ff665aba6d
Made-with: Cursor
21 lines
422 B
CSS
21 lines
422 B
CSS
.banner {
|
|
display: flex;
|
|
gap: 6px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding-block: 8px;
|
|
font-size: 12px;
|
|
color: var(--gray-1);
|
|
letter-spacing: var(--font-letter-spacing-12px);
|
|
text-decoration: none;
|
|
background: var(--gray-12);
|
|
border-bottom: 1px solid var(--gray-a3);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.banner:hover {
|
|
color: var(--gray-2);
|
|
background: var(--gray-11);
|
|
}
|