diff options
author | akshaythakur8764 | 2024-12-19 17:13:59 +0530 |
---|---|---|
committer | akshaythakur8764 | 2024-12-19 17:13:59 +0530 |
commit | e15790414177da132bf5d0aa14acb1a339a70896 (patch) | |
tree | 448fe2cb09f14ee03b01148ed3c97767fe1b1455 | |
parent | a18a1e133924443403d1f3a2853607ec059e558e (diff) | |
download | scilab_case_study_hackathon-e15790414177da132bf5d0aa14acb1a339a70896.tar.gz scilab_case_study_hackathon-e15790414177da132bf5d0aa14acb1a339a70896.tar.bz2 scilab_case_study_hackathon-e15790414177da132bf5d0aa14acb1a339a70896.zip |
content changes and alignment
-rw-r--r-- | src/assets/css/custom.css | 8 | ||||
-rw-r--r-- | src/components/Hero.astro | 4 | ||||
-rw-r--r-- | src/components/HomeBody.astro | 4 |
3 files changed, 12 insertions, 4 deletions
diff --git a/src/assets/css/custom.css b/src/assets/css/custom.css index 8a8ab78..0e968fa 100644 --- a/src/assets/css/custom.css +++ b/src/assets/css/custom.css @@ -72,6 +72,7 @@ font-size: 1.7rem; font-weight: 700; padding: 2rem 2rem; + padding-top: 4vw; transition: 1.3s; } @@ -86,4 +87,11 @@ padding: 1rem 2rem; font-weight: 700; } + } + + + /***************/ + + .text-shadow{ + text-shadow: 1px 2px 11px #f00; }
\ No newline at end of file diff --git a/src/components/Hero.astro b/src/components/Hero.astro index f82a880..49dc9b8 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -24,7 +24,7 @@ import btn1 from "../assets/img/button-img-01.png" <p> An initiative of the FOSSEE Project,</p> <p>Indian Institute of Technology Bombay, India </p></h6> <br> - <h1 class="text-white text-6xl font-bold">Scilab Case Study </h1> + <h1 class="text-white text-6xl font-bold drop-shadow-lg text-shadow">Scilab Case Study </h1> <h1 class="text-white text-6xl font-bold"><span class="text-red-600">Hackathon</span></h1> <br> <h3 class="text-white text-xl font-bold">Registration date: <span class="text-2xl">20 December 2024</span></h3> @@ -33,7 +33,7 @@ import btn1 from "../assets/img/button-img-01.png" <p class="bg-[#fefe16] py-4 px-4 text-red-600"> *Anyone can register and submit their case study from 20 December 2024 to 10 February 2025</p> <div class="py-4"> - <button class="neon-button">Register</button> + <a href="/#register"><button class="neon-button">Register</button></a> </div> </div> diff --git a/src/components/HomeBody.astro b/src/components/HomeBody.astro index addf77b..bc543a5 100644 --- a/src/components/HomeBody.astro +++ b/src/components/HomeBody.astro @@ -216,7 +216,7 @@ import st from "../assets/img/spoken.png"; <div class="bg-white md:px-4 pb-5"> <div class="md:px-20 px-3 space-x-6"> - <h1 class="text-xl md:text-2xl font-bold text-center section-title mx-4 mb-5" id="how-to-participate"> + <h1 class="text-xl md:text-2xl font-bold text-center section-title mx-4 mb-5" id="register"> How to participate? </h1> @@ -302,7 +302,7 @@ import st from "../assets/img/spoken.png"; <div class="bg-gray-100 p-5 rounded-lg shadow-md"> <h4 class="text-xl font-semibold mb-3"><strong>Linux:</strong></h4> <ul class="space-y-2"> - <li><h3>OS: Ubuntu 22.04+ or equivalent</h3></li> + <li><h3>OS: Ubuntu 22.04+ </h3></li> <li><h3>Scilab: <a target="_blank" href="https://www.scilab.org/download" class="text-blue-500 hover:underline">Download latest version</a></h3></li> </ul> </div> |