diff --git a/components/ContactForm.vue b/components/ContactForm.vue index bff2fc9..21aba50 100644 --- a/components/ContactForm.vue +++ b/components/ContactForm.vue @@ -1,149 +1,190 @@ + + - - - \ No newline at end of file + +.box + background-color: $beige + width: 100% + min-height: 50px + margin-top: -20px + + h2 + color: #333 + font-size: 1.2rem + font-family: 'Mainfont-Bold' + +.marquee + overflow: hidden + width: 100% + +.marquee-track + display: flex + animation: scroll 20s linear infinite + width: max-content + +.marquee-list + display: flex + gap: 3rem + list-style: none + padding: 1rem 0 + margin: 0 + +.marquee-item + flex-shrink: 0 + +.custLogo + width: auto + max-width: 250px + height: 50px + filter: grayscale(100%) + transition: filter 0.3s ease + &:hover + filter: grayscale(0) + +@keyframes scroll + from + transform: translateX(0) + to + transform: translateX(-50%) + +.waveBox + position: relative + height: 120px + +#waver + display: block + position: absolute + left: 0 + height: 120px + width: 100% + padding: 0 + margin: 0 + +@keyframes move_wave + 0% + transform: translateX(0) translateZ(0) scaleY(1) + 50% + transform: translateX(-25%) translateZ(0) scaleY(0.55) + 100% + transform: translateX(-50%) translateZ(0) scaleY(1) + +.waveWrapper + overflow: hidden + position: absolute + left: 0 + right: 0 + bottom: 0 + top: 0 + margin: auto + +.waveWrapperInner + position: absolute + width: 100% + overflow: hidden + height: 120px + top: 0 + background-image: linear-gradient(to top, $beige 20%, $beige 80%) + +@media (max-width: 1024px) + .waveWrapperInner + height: 50px + +.bgTop + z-index: 15 + opacity: 0.5 + +.bgMiddle + z-index: 10 + opacity: 0.75 + +.bgBottom + z-index: 5 + +.wave + position: absolute + left: 0 + width: 200% + height: 100% + background-repeat: repeat no-repeat + background-position: 0 bottom + transform-origin: center bottom + +.waveTop + background-size: auto 100% + animation: move_wave 18s linear infinite + +.waveMiddle + background-size: auto 100% + animation: move_wave 11s linear infinite + +.waveBottom + background-size: auto 100% + animation: move_wave 15s linear infinite + diff --git a/public/favicon.ico b/public/favicon.ico index 18993ad..c80057a 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ