From f7f8c098f9dd4c47ccf04bf624af4c1a514920be Mon Sep 17 00:00:00 2001 From: Aman Date: Sun, 18 Jun 2023 11:31:17 +0530 Subject: [PATCH 1/3] Update contactus.html --- contactus.html | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/contactus.html b/contactus.html index a8543f5c..36adee1b 100644 --- a/contactus.html +++ b/contactus.html @@ -10,30 +10,23 @@ +

Contact Us

From cf58bfb4765477d76e48aaec5361f96768c12dfd Mon Sep 17 00:00:00 2001 From: Aman Date: Thu, 20 Jul 2023 23:49:15 +0530 Subject: [PATCH 2/3] Lectures section added --- about.html | 1 + index.html | 2 + lectures.css | 45 +++++++++ lectures.html | 254 +++++++++++++++++++++++++++++++++++++++++++++++++ library.html | 1 + placement.html | 1 + projects.html | 2 +- script.js | 23 ++++- style.css | 1 - syllabus.html | 3 +- utility.css | 0 11 files changed, 327 insertions(+), 6 deletions(-) create mode 100644 lectures.css create mode 100644 lectures.html create mode 100644 utility.css diff --git a/about.html b/about.html index 8d3c47d1..f3f03d4a 100644 --- a/about.html +++ b/about.html @@ -28,6 +28,7 @@
  • Placements
  • Contact
  • Syllabus
  • +
  • Lectures
  • diff --git a/index.html b/index.html index bd23971c..cf44e67b 100644 --- a/index.html +++ b/index.html @@ -38,6 +38,8 @@
  • Placements
  • Contact
  • Syllabus
  • +
  • Lectures
  • +
  • diff --git a/lectures.css b/lectures.css new file mode 100644 index 00000000..df4458aa --- /dev/null +++ b/lectures.css @@ -0,0 +1,45 @@ +.lec-section{ + background-color: rgb(255, 221, 221); +} + +.lec-card{ + background-color: rgb(245, 239, 239); + cursor: pointer; + max-width:none ; + width: 500px; +} +.lecture-container{ + width: 90%; + background-color: rgb(250, 215, 215); + padding: 50px 25px ; + margin: 20px auto ; + display: flex; + flex-direction: column; + +} +.project-card-description{ + color: black; +} +.info a{ + color: rgb(211 0 87); +} +.info .contact{ + width: 100px; + border: transparent; + cursor: pointer; + font-size: 1.2rem; + margin-top: 20px; +} +.project-card-link-2{ + font-size: 1.2rem; + color: blueviolet !important; + text-align: center; +} +.project-card-link:hover{ + transition: all 0.3s linear ; +} +@media screen and (max-width:550px){ + .lec-card{ + width: 300px; + } +} \ No newline at end of file diff --git a/lectures.html b/lectures.html new file mode 100644 index 00000000..ed74b827 --- /dev/null +++ b/lectures.html @@ -0,0 +1,254 @@ + + + + + + + Chaibasa engineering college + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    +
    +
    +

    Lectures

    +

    Explore Leactures for different syllabus of various colleges

    + +
    +
    +

    MAIT

    +

    Subject: Applied Maths

    +

    Semester: 1st

    + +
    +
    +

    IIIT Bhopal

    +

    Subject: Full Syllabus

    +

    Semester: 1st and 2nd

    + +
    +
    +
    + +
    +
    +

    Playlist

    +

    Study buddy - Applied Mathematics-1

    + Click here to see lectures +

    Lectures

    +

    + No Lectures added yet + + Add new lectures!! +
    +
    +

    Playlist

    +

    + No lectures added yet +

    Lectures

    +

    + No Lectures added yet + + Add new lectures!! +
    +
    +
    +
  • + + + +
    +

    Share Your Lectures/Playlist

    +
    +
    +
    + +

    (Type All Subjects if it is full syllabus)*

    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    +
    +
    +
    + + +
    +
    +
    + +
    +
    Nagesh Mandal
    +
    +

    Full Stack Web Developer

    + +
    +
    +

    Chaibasa Engineering College

    +

    Jamshedpur Keonjhar Highway

    +

    Chaibasa Jharkhand PIN 833215, India

    + +

    +91 - 9062941530

    +
    + +
    +

    Newsletter

    +
    + + + +
    + +
    + +
    +
    +
    + +
    +
    +
    +
    + +
    + dark-mode + light-mode +
    + +
    + + + + +
    + + + + + + + \ No newline at end of file diff --git a/library.html b/library.html index 0cb5e4b8..0242985b 100644 --- a/library.html +++ b/library.html @@ -37,6 +37,7 @@
  • Placements
  • Contact
  • Syllabus
  • +
  • Lectures
  • diff --git a/placement.html b/placement.html index f12f87ef..8190a0fd 100644 --- a/placement.html +++ b/placement.html @@ -42,6 +42,7 @@
  • Placements
  • Contact
  • Syllabus
  • +
  • Lectures
  • diff --git a/projects.html b/projects.html index 32c9db5a..4a92999e 100644 --- a/projects.html +++ b/projects.html @@ -34,7 +34,7 @@
  • Placements
  • Contact
  • Syllabus
  • - +
  • Lectures
  • diff --git a/script.js b/script.js index cc3875ba..9152cabc 100644 --- a/script.js +++ b/script.js @@ -56,7 +56,7 @@ toggle.addEventListener("click", function (e) { body.classList.add("dark-mode"); header.classList.add("header-dark-mode"); paragraph.classList.add("header-dark-mode"); - pcol.style.color="white"; + pcol.style.color = "white"; links.forEach(function (e) { e.classList.add("header-dark-mode"); }); @@ -69,7 +69,7 @@ toggle.addEventListener("click", function (e) { body.classList.remove("dark-mode"); header.classList.remove("header-dark-mode"); paragraph.classList.remove("header-dark-mode"); - pcol.style.color="black"; + pcol.style.color = "black"; links.forEach(function (e) { e.classList.remove("header-dark-mode"); }); @@ -145,4 +145,21 @@ function searchContributors(searchTerm) { } - +// // Js for lectures show/hide +// function showInfo(divNumber) { +// // Hide the main view and show the info view for the selected div +// document.querySelector('.main-view').style.display = 'none'; +// document.querySelector('.info-view').style.display = 'block'; +// document.getElementById(`info${divNumber}`).style.display = 'block'; +// } + +// function showMainView() { +// // Hide the info view and show the main view again +// document.querySelector('.main-view').style.display = 'block'; +// document.querySelector('.info-view').style.display = 'none'; + +// // Hide all info divs +// const infoDivs = document.querySelectorAll('.info'); +// infoDivs.forEach(div => div.style.display = 'none'); + +// } \ No newline at end of file diff --git a/style.css b/style.css index 486c80b3..888fd17b 100644 --- a/style.css +++ b/style.css @@ -773,7 +773,6 @@ body.dark-mode .project-card{ .container { /* text-align: center; */ padding: 15px; - margin-bottom: 50px; } h3 { diff --git a/syllabus.html b/syllabus.html index e793a62d..b7f61724 100644 --- a/syllabus.html +++ b/syllabus.html @@ -34,6 +34,7 @@
  • Placements
  • Contact
  • Syllabus
  • +
  • Lectures
  • @@ -103,7 +104,7 @@

    Semester: 1st and 2nd

  • - +

    Share Your Syllabus

    diff --git a/utility.css b/utility.css new file mode 100644 index 00000000..e69de29b From e79725f0991eeff165e594d0f16490b90a0bcd19 Mon Sep 17 00:00:00 2001 From: Aman Date: Fri, 21 Jul 2023 00:07:20 +0530 Subject: [PATCH 3/3] fixed lectures page --- about.html | 2 +- event.html | 1 + index.html | 3 +-- placement.html | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/about.html b/about.html index 6d2d5f95..50efd625 100644 --- a/about.html +++ b/about.html @@ -28,7 +28,7 @@
  • Contacts
  • Syllabus
  • Events
  • -
  • Lectures
  • +
  • Lectures
  • diff --git a/event.html b/event.html index 10d42bd7..a31f301d 100644 --- a/event.html +++ b/event.html @@ -35,6 +35,7 @@
  • Contacts
  • Syllabus
  • Events
  • +
  • Lectures
  • diff --git a/index.html b/index.html index 23756ae8..39dee2eb 100644 --- a/index.html +++ b/index.html @@ -35,9 +35,8 @@
  • Placements
  • Contacts
  • Syllabus
  • -
  • Lectures
  • -
  • Events
  • +
  • Lectures
  • diff --git a/placement.html b/placement.html index 684a4232..8b13f13b 100644 --- a/placement.html +++ b/placement.html @@ -50,6 +50,8 @@
  • Placements
  • Contacts
  • Syllabus
  • +
  • Syllabus
  • +
  • Syllabus