Spaces:
Sleeping
Sleeping
File size: 991 Bytes
98f877e 113ad2c 98f877e 113ad2c 98f877e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
/* Header.css */
.header {
background-color: var(--background);
padding: 15px 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
color: var(--foreground);
font-size: 24px;
font-weight: bold;
display: flex;
gap: 5px;
}
.header-music{
font-weight: 300;
font-size: .8rem;
line-height: .8rem;
color: var(--foreground-4);
}
.nav {
display: flex;
gap: 20px;
}
.nav-link {
color: var(--foreground);
text-decoration: none;
transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--foreground-2);
}
.search-container {
position: relative;
}
.search-input {
padding: 8px 12px;
border: 1px solid var(--foreground-3);
border-radius: 4px;
background-color: transparent;
color: var(--foreground);
}
.search-input::placeholder {
color: var(--foreground-4);
}
.search-input:focus {
outline: none;
border-color: var(--foreground-2);
}
|