diff --git a/index.html b/index.html index 6b5c40f..bc610c8 100644 --- a/index.html +++ b/index.html @@ -59,7 +59,7 @@ Download + class="relative z-40 inline-block w-auto h-full px-5 py-3 text-sm font-bold leading-none text-white transition-all transition duration-100 duration-300 bg-gray-900 rounded shadow-md fold-bold lg:bg-white lg:text-gray-600 sm:w-full lg:shadow-none hover:shadow-xl btn-hover-effect">Download

Are you ready to start your adventure and start writing awesome Bash scripts?

Free Download + class="relative self-start inline-block w-auto px-8 py-4 mx-auto mt-0 text-base font-bold text-white bg-gray-900 hover:bg-gray-700 border-t border-gray-200 rounded-md shadow-xl sm:mt-1 fold-bold lg:mx-0 btn-hover-effect">Free Download @@ -428,7 +428,7 @@

Light Theme

Download the Light theme of the Introduction to Bash Scripting eBook

- Free Download + Free Download @@ -447,7 +447,7 @@
Light Theme

Enjoying the free eBook?

Support this opensource project by staring it on GitHub!

- + @@ -525,6 +525,62 @@

Enjoying the free eBook?

+ diff --git a/style.css b/style.css index 6b6bd95..864fb31 100644 --- a/style.css +++ b/style.css @@ -24,4 +24,21 @@ html { background: #a0aec0; } +.fire-particle { + position: fixed; + pointer-events: none; + font-weight: bold; + font-size: 1.2rem; + animation: floatEffect 1.5s linear forwards; + z-index: 9999; + transform: translate(-50%, -50%); +} + +@keyframes floatEffect { + to { + opacity: 0; + transform: translate(calc(-50% + var(--translateX)), calc(-50% + var(--translateY))); + } +} + /* Css is same for both the html file index.html and training.html */ \ No newline at end of file