From 5ed17ed4ee6fe50ea2f0fb10e402a74100bc036e Mon Sep 17 00:00:00 2001 From: V Suhas Date: Wed, 18 Oct 2023 19:13:13 +0530 Subject: [PATCH 1/3] Fixed-minor-issues --- index.html | 272 +++++++++++---------- src/pages/nav/nav.css | 124 +++++----- src/pages/sophomore.html | 483 ++++++++++++++++---------------------- src/pages/third-year.html | 166 ++++++------- 4 files changed, 487 insertions(+), 558 deletions(-) diff --git a/index.html b/index.html index a2fe6a1..c26250e 100644 --- a/index.html +++ b/index.html @@ -1,151 +1,147 @@ - - - - - - - - - Open Source IIIT Ranchi - - -
-

- Welcome to - IIIT Ranchi
- Hacktoberfest 2023 -

+ -

- Are you ready to dive into the world of open source? The unofficial IIIT - Ranchi Hacktoberfest 2023 website is your gateway to an exciting - opportunity to contribute, collaborate, and grow as a developer. -

- - -
-
-

- What is Hacktoberfest + +
+ +
+

+ Welcome to + IIIT Ranchi
+ Hacktoberfest 2023 +

+ +

+ Are you ready to dive into the world of open source? The unofficial IIIT + Ranchi Hacktoberfest 2023 website is your gateway to an exciting + opportunity to contribute, collaborate, and grow as a developer. +

+ + +
+
+

+ What is Hacktoberfest ?

-

- Hacktoberfest is an annual celebration of open source during the month - of October. It's a fantastic opportunity for you to: -

+

+ Hacktoberfest is an annual celebration of open source during the month + of October. It's a fantastic opportunity for you to: +

-
    -
  • 🌐 Contribute to open source projects.
  • -
  • 🤝 Collaborate with developers from around the world.
  • -
  • 🚀 Enhance your coding skills.
  • -
-
+
    +
  • 🌐 Contribute to open source projects.
  • +
  • 🤝 Collaborate with developers from around the world.
  • +
  • 🚀 Enhance your coding skills.
  • +
+

-
-

- How to get started ? -

+
+

+ How to get started ? +

-
    -
  • - Create Your Portfolio : Build a - personal portfolio website that highlights your projects, skills, and - experiences. -
  • -
  • - Contribute : Add your portfolio to - the this website repository. It's as simple as a pull - request! -
  • -
  • - Connect : Join our community of - IIIT Ranchi students who are sharing their portfolios. Explore their - work and get inspired. -
  • -
  • - Celebrate : Be recognized for your - hard work and creativity. -
  • -
-
-
-

- Featured Portfolio -

-

- Here are some impressive portfolios created by your peers: -

- -
+
    +
  • + Create Your Portfolio : Build a + personal portfolio website that highlights your projects, skills, and + experiences. +
  • +
  • + Contribute : Add your portfolio to + the this website repository. It's as simple as a pull + request! +
  • +
  • + Connect : Join our community of + IIIT Ranchi students who are sharing their portfolios. Explore their + work and get inspired. +
  • +
  • + Celebrate : Be recognized for your + hard work and creativity. +
  • +
+
+
+

+ Featured Portfolio +

+

+ Here are some impressive portfolios created by your peers: +

+ +
-
-

- Join the Celebration -

-

- Let's celebrate your achievements and the spirit of Hacktoberfest 2023! Create your portfolio and contribute it to the main unofficial website. Start showcasing your work to the world. -

- +
+

+ Join the Celebration +

+

+ Let's celebrate your achievements and the spirit of Hacktoberfest 2023! Create your portfolio and contribute it to + the main unofficial website. Start showcasing your work to the world. +

+ +
+
+
+

© 2023 IIIT Ranchi Hacktoberfest. All rights reserved.

+

Empowering Students to Innovate and Contribute to Open Source

+

Made in IIIT Ranchi with ❤️ by Alok Gupta

-
-
-

© 2023 IIIT Ranchi Hacktoberfest. All rights reserved.

-

Empowering Students to Innovate and Contribute to Open Source

-

Made in IIIT Ranchi with ❤️ by Alok Gupta

-
-
+
+ + - - + \ No newline at end of file diff --git a/src/pages/nav/nav.css b/src/pages/nav/nav.css index 265f3b2..9ecffa5 100644 --- a/src/pages/nav/nav.css +++ b/src/pages/nav/nav.css @@ -1,75 +1,77 @@ - #dropdown{ - display: none; + #dropdown { + display: none; } + /* Navbar container */ -.navbar { - overflow: hidden; - background-color: #333; - font-family: Arial; -} + .navbar { + overflow: hidden; + background-color: #333; + font-family: Arial; + } -/* Links inside the navbar */ -.navbar a { - float: left; - font-size: 16px; - color: white; - text-align: center; - padding: 14px 16px; - text-decoration: none; -} + /* Links inside the navbar */ + .navbar a { + float: left; + font-size: 15px; + color: white; + text-align: center; + padding: 14px 15px; + text-decoration: none; + } + + /* The dropdown container */ + .dropdown { + float: left; + overflow: hidden; + } -/* The dropdown container */ -.dropdown { - float: left; - overflow: hidden; -} + .dropdown .dropbtn { + font-size: 16px; + border: none; + outline: none; + font-weight: bold; + padding: 14px 16px; + background-color: inherit; + font-family: inherit; + margin: 0; + } -.dropdown .dropbtn { - font-size: 16px; - border: none; - outline: none; - font-weight: bold; - padding: 14px 16px; - background-color: inherit; - font-family: inherit; - margin: 0; -} + .dropdown-content { + display: none; + position: absolute; + background-color: #f9f9f8; + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); + z-index: 1; + } -.dropdown-content { - display: none; - position: absolute; - background-color: #f9f9f8; - min-width: 160px; - box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); - z-index: 1; -} + .dropdown-content a { + float: none; + color: black; + padding: 13px 15px; + text-decoration: none; + display: block; + text-align: left; + } -.dropdown-content a { - float: none; - color: black; - padding: 12px 16px; - text-decoration: none; - display: block; - text-align: left; -} + .dropdown-content a:hover { + background-color: #ddd1dd; + } -.dropdown-content a:hover { - background-color: #ddd; -} + .dropdown:hover .dropdown-content { + display: block; + } -.dropdown:hover .dropdown-content { - display: block; -} + @media screen and (max-width : 660px) { + #mobile_ui { + display: none; + } -@media screen and (max-width : 660px) { - #mobile_ui{ - display: none; - } - #dropdown{ - display: inline-block; - } -} \ No newline at end of file + #dropdown { + display: inline-block; + } + } \ No newline at end of file diff --git a/src/pages/sophomore.html b/src/pages/sophomore.html index 3044858..dffb115 100644 --- a/src/pages/sophomore.html +++ b/src/pages/sophomore.html @@ -1,317 +1,248 @@ - - - - - - - - - Open Source IIIT Ranchi - - - - -
- -
-
- -
-
-
- -
+ + + + + + + + + + Open Source IIIT Ranchi + + + + +
+ +
+
+ + +
+
+
+
- + +
+
Gaurang Agarwal
+

Branch : CSE DS & AI

+

Hobbies: Coding, Badminton

+ +
-
-
-
-
- Image -
-
-
-
Alok Gupta
-

Branch: CSE

-

Hobby: Coding, Photography

- +
+
+
+
+
+ Image
+ +
+
Alok Gupta
+

Branch: CSE

+

Hobby: Coding, Photography

+ +
-
-
-
-
- Image -
-
-
-
Manesh Koppisetti
-

Branch: CSE

-

Hobby: Open Source

- +
+
+
+
+
+ Image
+
+
Manesh Koppisetti
+

Branch: CSE

+

Hobby: Open Source

+ +
+
-
-
-
-
- Image -
-
-
-
Arion Das
-

Branch: CSE

-

- Hobby: Detective Novels,Football -

- +
+
+
+
+ Image
+
+
Arion Das
+

Branch: CSE

+

+ Hobby: Detective Novels,Football +

+ +
-
+
+
- -
-
-
- -
-
- -
-
ADITYA RAJPUT
-

Branch: CSE

-

Hobbies: GK, Movies, Coding

- + +
+
+
+
- + +
+
ADITYA RAJPUT
+

Branch: CSE

+

Hobbies: GK, Movies, Coding

+ +
- -
-
-
-
- Image -
-
-
-
Prakhar Pandey
-

Branch: CSE

-

Hobby: Coding, Volleyball

- +
+ + +
+
+
+
+ Image
+
+
Prakhar Pandey
+

Branch: CSE

+

Hobby: Coding, Volleyball

+ +
+
-
-
-
-
- Image -
-
-
-
Akshay Kumar Dubey
-

Branch: CSE

-

- Hobby: Football, Coding, Singing -

- +
+
+
+
+ Image
+
+
Akshay Kumar Dubey
+

Branch: CSE

+

+ Hobby: Football, Coding, Singing +

+ +
+
-
-
-
-
- Image -
-
-
-
Mohit Verma
-

Branch: CSE

-

- Hobby: Geopolitics, coding, web development -

- +
+
+
+
+ Image
+
+
Mohit Verma
+

Branch: CSE

+

+ Hobby: Geopolitics, coding, web development +

+ +
+
-
-
-
-
- Image -
-
-
-
Yatin Kumar
-

Branch: CSE

-

- Hobby: Coding, web development, Football -

- +
+
+
+
+ Image
+
+
Yatin Kumar
+

Branch: CSE

+

+ Hobby: Coding, web development, Football +

+ +
-
- - + +
+ + + \ No newline at end of file diff --git a/src/pages/third-year.html b/src/pages/third-year.html index 2d39168..60f22b3 100644 --- a/src/pages/third-year.html +++ b/src/pages/third-year.html @@ -1,104 +1,104 @@ - - - - - - - - - Open Source IIIT Ranchi - - - - -
+
+ +
+
Shaik Abdul Wahid
+

Branch: CSE

+

Hobby: Coding

+ +
+
-
+
- -
- +
- -
-
Shaik Abdul Wahid
-

Branch: CSE

-

Hobby: Coding

- -
-
-
- - -
-
-
- -
-
- -
-
V Suhas
-

Branch : Electronics and Communication Engineering

-

Hobby: Open source , Reading Books

- -
+
+
V Suhas
+

Branch : Electronics and Communication Engineering

+

Hobby: Open source , Reading Books

+
-
+
+
- - + + + \ No newline at end of file From 2a24e5839548ffe874cfd37af2598c2d293c3474 Mon Sep 17 00:00:00 2001 From: V Suhas Date: Wed, 18 Oct 2023 19:23:48 +0530 Subject: [PATCH 2/3] Fixed-changes --- src/pages/freshers.html | 131 ++++++++++++++++++++-------------------- src/pages/nav/nav.css | 12 ++-- src/pages/senior.html | 105 ++++++++++++++++---------------- 3 files changed, 125 insertions(+), 123 deletions(-) diff --git a/src/pages/freshers.html b/src/pages/freshers.html index 3f929e2..437a13b 100644 --- a/src/pages/freshers.html +++ b/src/pages/freshers.html @@ -1,70 +1,73 @@ - - - - - - - - - - - - - - Open Source IIIT Ranchi - - - - + + + +
- -
+ +
+ +
- -
- -
+ - - + \ No newline at end of file diff --git a/src/pages/nav/nav.css b/src/pages/nav/nav.css index 9ecffa5..fe3141a 100644 --- a/src/pages/nav/nav.css +++ b/src/pages/nav/nav.css @@ -5,17 +5,17 @@ /* Navbar container */ .navbar { overflow: hidden; - background-color: #333; + background-color: #333333; font-family: Arial; } /* Links inside the navbar */ .navbar a { float: left; - font-size: 15px; + font-size: 16px; color: white; text-align: center; - padding: 14px 15px; + padding: 14px 16px; text-decoration: none; } @@ -42,7 +42,7 @@ position: absolute; background-color: #f9f9f8; min-width: 160px; - box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); + box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.23); z-index: 1; } @@ -50,7 +50,7 @@ .dropdown-content a { float: none; color: black; - padding: 13px 15px; + padding: 12px 16px; text-decoration: none; display: block; text-align: left; @@ -66,7 +66,7 @@ display: block; } - @media screen and (max-width : 660px) { + @media screen and (max-width : 666px) { #mobile_ui { display: none; } diff --git a/src/pages/senior.html b/src/pages/senior.html index 2294acd..004f58b 100644 --- a/src/pages/senior.html +++ b/src/pages/senior.html @@ -1,58 +1,57 @@ - - - - - - - - - Open Source IIIT Ranchi - - + + +
+ +
+ +
-
- -
+ - - + \ No newline at end of file From 6bef10806e51e10fdf0762541520fc1954014447 Mon Sep 17 00:00:00 2001 From: V Suhas Date: Wed, 18 Oct 2023 19:30:12 +0530 Subject: [PATCH 3/3] changed-styling --- index.html | 11 +++++++++++ src/pages/freshers.html | 1 + src/pages/nav/nav.css | 8 ++++---- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index c26250e..9cfb6a0 100644 --- a/index.html +++ b/index.html @@ -3,15 +3,21 @@ + + + + + Open Source IIIT Ranchi
diff --git a/src/pages/freshers.html b/src/pages/freshers.html index 437a13b..9e2b0f6 100644 --- a/src/pages/freshers.html +++ b/src/pages/freshers.html @@ -4,6 +4,7 @@ + diff --git a/src/pages/nav/nav.css b/src/pages/nav/nav.css index fe3141a..bc339e0 100644 --- a/src/pages/nav/nav.css +++ b/src/pages/nav/nav.css @@ -12,7 +12,7 @@ /* Links inside the navbar */ .navbar a { float: left; - font-size: 16px; + font-size: 15px; color: white; text-align: center; padding: 14px 16px; @@ -27,7 +27,7 @@ .dropdown .dropbtn { - font-size: 16px; + font-size: 15px; border: none; outline: none; font-weight: bold; @@ -40,7 +40,7 @@ .dropdown-content { display: none; position: absolute; - background-color: #f9f9f8; + background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.23); z-index: 1; @@ -72,6 +72,6 @@ } #dropdown { - display: inline-block; + display:inline-block; } } \ No newline at end of file