add live page

This commit is contained in:
Tykayn 2025-09-26 11:57:54 +02:00 committed by tykayn
parent 114bcca24e
commit eb8c42d0c0
19 changed files with 2759 additions and 199 deletions

View file

@ -108,6 +108,9 @@ button:hover {
.nav-links {
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.nav-links a {
@ -120,6 +123,99 @@ button:hover {
text-decoration: underline;
}
/* Navigation container */
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
flex-wrap: wrap;
}
/* Hamburger menu for mobile */
.menu-toggle {
display: none;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #0078ff;
padding: 5px;
}
/* Responsive styles */
@media (max-width: 768px) {
.nav-container {
flex-direction: column;
align-items: flex-start;
}
.menu-toggle {
display: block;
align-self: flex-end;
margin-bottom: 10px;
}
.nav-links {
display: none;
flex-direction: column;
width: 100%;
}
.nav-links.active {
display: flex;
}
.nav-links a {
padding: 10px 0;
border-bottom: 1px solid #eee;
margin-right: 0;
}
}
/* Collapsible panel styles */
.collapsible-panel {
margin-bottom: 15px;
}
.collapsible-header {
background-color: #f8f9fa;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
border: 1px solid #e9ecef;
}
.collapsible-header h3 {
margin: 0;
font-size: 16px;
}
.collapsible-header .toggle-icon {
transition: transform 0.3s ease;
}
.collapsible-header.active .toggle-icon {
transform: rotate(180deg);
}
.collapsible-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
border-left: 1px solid #e9ecef;
border-right: 1px solid #e9ecef;
border-bottom: 1px solid #e9ecef;
border-radius: 0 0 5px 5px;
}
.collapsible-content.active {
max-height: 1000px;
}
/* Authentication section styles */
.auth-section {
background-color: #f8f9fa;
@ -523,4 +619,10 @@ select:invalid {
.add-event-btn{
float: left;
width: 130px;
}
button{
padding: 1rem 0.5rem;
border-radius: 5px;
background-color: #79a2d1;
}