From e288338bc66050983210338a5c09c2c0c25c5638 Mon Sep 17 00:00:00 2001 From: akshaythakur8764 Date: Sat, 21 Dec 2024 13:32:08 +0530 Subject: content changed and aligned --- src/assets/css/custom.css | 50 ++++++++++++++++++++++++++++++++++++++++- src/components/Hero.astro | 8 +++---- src/components/HomeBody.astro | 27 +++++++++++++++++----- src/components/layout/Nav.astro | 30 +++++++++++++++---------- src/pages/results.astro | 6 +++-- 5 files changed, 96 insertions(+), 25 deletions(-) diff --git a/src/assets/css/custom.css b/src/assets/css/custom.css index fc2c71c..dd401c5 100644 --- a/src/assets/css/custom.css +++ b/src/assets/css/custom.css @@ -98,4 +98,52 @@ .text-shadow{ text-shadow: 1px 2px 11px #f00; - } \ No newline at end of file + } + + + + + /*********neon button********** */ + + +.neon-button { + padding: 15px 30px; + font-size: 18px; + color: white; + background-color: black; + border: 2px solid red; + border-radius: 5px; + cursor: pointer; + text-transform: uppercase; + letter-spacing: 2px; + position: relative; + overflow: hidden; + transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out; + box-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red; +} + +.neon-button::before { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: red; + filter: blur(10px); + z-index: -1; + transition: opacity 0.3s ease-in-out; + opacity: 0.8; +} + +.neon-button:hover { + color: black; + background-color: red; + box-shadow: 0 0 15px red, 0 0 30px red, 0 0 45px red; +} + +.neon-button:hover::before { + opacity: 1; +} + +/*********end neon button********** */ \ No newline at end of file diff --git a/src/components/Hero.astro b/src/components/Hero.astro index e9db472..1865503 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -19,15 +19,15 @@ import { Image } from "astro:assets"
-

A global challenge for bright minds

+

A global challenge for bright minds


-
+

An initiative of the FOSSEE Project,

Indian Institute of Technology Bombay, India


-

Scilab Case Study

-

Hackathon

+

Scilab Case Study

+

Hackathon


Registration date: 20 December 2024

Submission end date: 10 February 2025

diff --git a/src/components/HomeBody.astro b/src/components/HomeBody.astro index 230ac45..c0448dc 100644 --- a/src/components/HomeBody.astro +++ b/src/components/HomeBody.astro @@ -210,7 +210,7 @@ import process from "../assets/img/process.png"; Before proceeding, it is mandatory to fill out this Google Form: google form link
+ class="text-blue-600 hover:underline">Click here to open
Your participation will not be considered if this form is not filled out. @@ -218,7 +218,7 @@ import process from "../assets/img/process.png"; After completing the form, visit this website to read all the instructions: https://scilab.in/case-study-portal/case-study-project
+ class="text-blue-600 hover:underline">Click here
Please go through all the links provided under the Case Study Project tab.
  • @@ -249,13 +249,28 @@ import process from "../assets/img/process.png";

    -->
  • - -
    + +
    +
    +
    +

    Evaluation Criteria:

    +
      +
    • Complexity of the problem, including its technical depth and challenges.  
    • +
    • Quality of the journal, considering its credibility and impact factor.  
    • +
    • Novelty of the topic, focusing on originality and innovation.   
    • +
    • Accuracy of the reproduced results compared to the reference paper.  
    • +
    • Effective and innovative use of Scilab features and toolboxes.  
    • +
    • Readability, proper documentation, and adherence to best coding practices.  
    • +
    +
    +
    + +

    Resources

    -

    +

    Explore the Spoken Tutorial series on Scilab to strengthen your understanding of Scilab concepts. These tutorials cover a wide range of topics. Access them here: @@ -266,7 +281,7 @@ import process from "../assets/img/process.png";

    - +

    System Requirements

    diff --git a/src/components/layout/Nav.astro b/src/components/layout/Nav.astro index 999cf3e..8cdd2ac 100644 --- a/src/components/layout/Nav.astro +++ b/src/components/layout/Nav.astro @@ -127,18 +127,7 @@ function addActiveClass() { list-style: none; padding: 0px 8px; } - - @media only screen and (max-width: 600px) { - nav, - ul { - display:block; - /* background-color: #000000; */ - } - - ul.menu li { - display:block; - } - } + ul.menu li a{ text-decoration: none; color:#6c5353; @@ -158,6 +147,7 @@ function addActiveClass() { padding: 10px; border-radius: 10px; } + ul.menu li:last-child{ border-right: none; } @@ -166,5 +156,21 @@ function addActiveClass() { ul.menu li .active{ color:#f70000; } + + @media only screen and (max-width: 600px) { + nav, + ul { + display:block; + /* background-color: #000000; */ + } + + ul.menu li { + display:block; + } + a.nav-link.active{ + padding: 3px; + border-radius: 2px; + } + } \ No newline at end of file diff --git a/src/pages/results.astro b/src/pages/results.astro index 43bd7b5..6c4aca8 100644 --- a/src/pages/results.astro +++ b/src/pages/results.astro @@ -3,8 +3,9 @@ import Layout from '../layouts/Layout.astro'; --- -
    -

    Results

    +
    +
    +

    Results

    • Cash rewards
    • Certificates for all participants.
    • @@ -13,4 +14,5 @@ import Layout from '../layouts/Layout.astro';
    +
    \ No newline at end of file -- cgit