easter egg

This commit is contained in:
Elisabeth Dickinson 2021-04-21 09:28:09 +02:00
parent 7ebd65a193
commit 77d4296304
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 141.5 132.2"><path d="M140.35,43.52c-3-3-6.36-.86-11.07,1.64-12.5,6.65-27.41,6.66-41.59,7.18-1.22,0-2.86.77-3.54-.85,7.63-14.21,6.15-32.81-6.77-44.18C67.15,1.13,54.82-1.66,44,1,36.77,2.78,18.6,9.58,18.6,27.31c0,5.37-1,7.78-.63,13.67.49,7,7.85,12.07,9,13.65s1.33,2.66-.81,3.24C3.69,67.23,6.68,96.84,19.85,113c16.42,17.92,35.43,20,58.68,18.94C123.82,126.34,147.08,87,140.35,43.52ZM22.78,23.18v.06l-.15,0h0A.8.8,0,0,0,22.78,23.18Z" style="fill:#ffcf00"/><path d="M19.73,20.25a163.35,163.35,0,0,0-1.62,21.43C13.79,41,5.69,42,3.11,39c-1.36-1.58-1.82-3.56,0-5.43S4.89,30.25,3,28.41c-1.14-1.1-5.39-5.29-1.14-10.55,1.77-2.18,4-.72,5.79.58C10.5,20.47,16.35,20.9,19.73,20.25Z" style="fill:#ee7406"/><circle cx="42.74" cy="26.94" r="5.77" style="fill:#160f03"/></svg>

After

Width:  |  Height:  |  Size: 809 B

View File

@ -57,6 +57,25 @@ header.o_main_header{
span {
@include font-size($font-size-base);
color: $o-violet;
position: relative;
&:after {
content: '';
display: block;
width: 100%;
height: 20px;
@include o-position-absolute(0, 0, 0, 0);
background-color: white;
background-image: url(/_static/img/ducky.svg);
background-repeat: no-repeat;
opacity: 0;
visibility: hidden;
@include o-transition(all, .5s, ease-out, .5s);
}
&:hover:after {
opacity: 1;
visibility: visible;
@include o-transition(all, .5s, ease-in, 5s);
}
}
}
@include media-breakpoint-up(xl) {