Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
krestenlaust committed Dec 2, 2024
2 parents b42b8f4 + 01ade46 commit 499ee6e
Show file tree
Hide file tree
Showing 12 changed files with 210 additions and 217 deletions.
1 change: 0 additions & 1 deletion stregsystem/fixtures/testdata-themes.json
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,6 @@
"name": "snow",
"html": "snow.html",
"css": "snow.css",
"js": "snow.js",
"begin_month": 12,
"end_month": 12,
"end_day": 24
Expand Down
23 changes: 21 additions & 2 deletions stregsystem/static/stregsystem/stregsystem.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
:root {
color-scheme: light;
}

body {
color: black;
background-color: white;
margin: 0;
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -67,6 +69,19 @@ ol span {
font-weight: normal;
}

button.linkalike {
background: none;
border: none;
cursor: pointer;
font: inherit;
text-decoration: underline;
color: LinkText;

&:active{
color: ActiveText;
}
}

.horizontal-table {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -164,6 +179,10 @@ footer {
}
}

#theme-content {
display: contents;
}

@keyframes blink-frame {
0%, 100% {
opacity: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
max-height: 75%;
max-width: 400px;
pointer-events: none;
z-index: 1;
animation: advent-candle-burn-down 2073600s linear
calc(var(--advent-candle-start-day) * -86400s) forwards;

Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 499ee6e

Please sign in to comment.