Spaces:
Running
Running
File size: 2,837 Bytes
110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc 110e71c ff31ddc | 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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | class CustomHeader extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
:host {
display: block;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 1.5rem;
color: #3b82f6;
text-decoration: none;
}
.logo i {
margin-right: 0.5rem;
}
.nav-content {
display: flex;
align-items: center;
gap: 1.5rem;
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 1.5rem;
}
.nav-links a {
text-decoration: none;
color: #374151;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #3b82f6;
}
.auth-buttons {
display: flex;
align-items: center;
gap: 0.75rem;
}
.btn {
padding: 0.5rem 1.25rem;
border-radius: 9999px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
font-size: 0.875rem;
}
.btn-outline {
border: 2px solid #3b82f6;
color: #3b82f6;
background: transparent;
}
.btn-outline:hover {
background: #3b82f6;
color: white;
}
.btn-primary {
background: #3b82f6;
color: white;
border: 2px solid #3b82f6;
}
.btn-primary:hover {
background: #2563eb;
border-color: #2563eb;
}
.user-section {
display: flex;
align-items: center;
gap: 0.75rem;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.auth-buttons {
display: none;
}
}
.btn-outline:hover {
|