Rainbows!
This commit is contained in:
parent
ebc8385665
commit
4d892ba0ce
|
@ -14,23 +14,43 @@
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
footer {
|
footer {
|
||||||
max-width: var(--size-container);
|
width: 100%;
|
||||||
margin: 4rem auto;
|
padding: 2rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 2rem;
|
gap: 2rem;
|
||||||
transition: opacity var(--animation-speed) var(--animation-type);
|
background: repeating-linear-gradient(
|
||||||
opacity: 0.5;
|
70deg,
|
||||||
}
|
#ff0018,
|
||||||
footer:hover,
|
#ff0018 170px,
|
||||||
footer:focus-within {
|
#ffa52c 170px,
|
||||||
opacity: 1;
|
#ffa52c 340px,
|
||||||
|
#ffff41 340px,
|
||||||
|
#ffff41 510px,
|
||||||
|
#008018 510px,
|
||||||
|
#008018 680px,
|
||||||
|
#0000f9 680px,
|
||||||
|
#0000f9 850px,
|
||||||
|
#86007d 850px,
|
||||||
|
#86007d 1020px
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: var(--size-container);
|
||||||
|
background-color: var(--color-bg);
|
||||||
|
padding: 1rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
opacity: 0.6;
|
||||||
|
transition: opacity var(--animation-speed) var(--animation-type);
|
||||||
|
}
|
||||||
|
.row:hover,
|
||||||
|
.row:focus-within {
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.row > * {
|
.row > * {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
Loading…
Reference in a new issue