Merge Development into main. #8

Merged
luke-else merged 56 commits from development into main 2025-02-05 14:31:23 +00:00
2 changed files with 34 additions and 1 deletions
Showing only changes of commit 278fc640ce - Show all commits

View File

@ -133,6 +133,33 @@
.button:hover {
box-shadow: .3em .3em .3em var(--header);
}
@keyframes animationName {
0% { opacity:0; }
50% { opacity:1; }
100% { opacity:0; }
}
@-o-keyframes animationName{
0% { opacity:0; }
50% { opacity:1; }
100% { opacity:0; }
}
@-moz-keyframes animationName{
0% { opacity:0; }
50% { opacity:1; }
100% { opacity:0; }
}
@-webkit-keyframes animationName{
0% { opacity:0; }
50% { opacity:1; }
100% { opacity:0; }
}
.elementToFadeInAndOut {
-webkit-animation: animationName 1.5s infinite;
-moz-animation: animationName 1.5s infinite;
-o-animation: animationName 1.5s infinite;
animation: animationName 1.5s infinite;
}
</style>
</head>
<body data-sveltekit-preload-data="hover">

View File

@ -24,7 +24,13 @@
</TimelineOppositeContent>
<TimelineSeparator>
<TimelineDot style={`background-color: var(--link); border-color: var(--bg-grad);`} />
{#if item.duration.includes('Present') || !item.duration.includes('-')}
<div class="elementToFadeInAndOut">
<TimelineDot style={`background-color: var(--link); border-color: var(--bg-grad);`} />
</div>
{:else}
<TimelineDot style={`background-color: var(--link); border-color: var(--bg-grad);`} />
{/if}
<TimelineConnector />
</TimelineSeparator>
<TimelineContent>