All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
55 lines
1,002 B
Svelte
55 lines
1,002 B
Svelte
<footer>
|
|
<div class="row">
|
|
<div>
|
|
Contents are licensed under <a
|
|
rel="license"
|
|
href="http://creativecommons.org/licenses/by/4.0/">CC 4.0</a
|
|
>
|
|
unless specified otherwise.<br />Source code for this website is available at
|
|
<a href="https://gitea.bgenc.net/kaan/bgenc.net">gitea.bgenc.net</a>.
|
|
</div>
|
|
<div>.</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<style lang="scss">
|
|
@import '../vars';
|
|
|
|
footer {
|
|
padding: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
background: repeating-linear-gradient(
|
|
70deg,
|
|
#ff0018,
|
|
#ff0018 170px,
|
|
#ffa52c 170px,
|
|
#ffa52c 340px,
|
|
#ffff41 340px,
|
|
#ffff41 510px,
|
|
#008018 510px,
|
|
#008018 680px,
|
|
#0000f9 680px,
|
|
#0000f9 850px,
|
|
#86007d 850px,
|
|
#86007d 1020px
|
|
);
|
|
}
|
|
|
|
.row {
|
|
margin: 0 auto;
|
|
max-width: $size-container;
|
|
background-color: $color-bg;
|
|
padding: 1rem;
|
|
border-radius: 0.5rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.row > * {
|
|
flex-grow: 1;
|
|
flex-shrink: 1;
|
|
}
|
|
</style>
|