css : reset li, header sticky, import events, ignore CLAUDE.md

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-05-07 07:45:41 +02:00
parent bcfc952e27
commit 1f24355dc6
7 changed files with 15 additions and 4 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
Icon
.DS_Store
CLAUDE.md
# Temporary files
# ---------------

View file

@ -7,3 +7,7 @@ body {
button {
cursor: pointer;
}
main {
height: 200vh;
}

View file

@ -10,7 +10,7 @@ body > .logo {
z-index: -1;
}
.main-header {
position: fixed;
position: sticky;
top: 0;
width: 100%;
text-align: center;

View file

@ -22,3 +22,7 @@ figcaption {
margin: 0;
padding: 0;
}
li {
list-style-type: none;
}

View file

@ -0,0 +1,4 @@
[data-template="events"] {
.events-grid {
}
}

View file

@ -1,5 +1,2 @@
[data-template="home"] {
main {
height: 200vh;
}
}

View file

@ -4,3 +4,4 @@
@import "src/global";
@import "src/header";
@import "src/pages/home";
@import "src/pages/events";