Skip to content
Merged

Dev #49

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/christmas_theme/background3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/christmas_theme/christmas-theme-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions components/button/Button.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
.rippleButton {
@apply text-lg inline-block overflow-hidden relative rounded-full px-10 py-[13px] cursor-pointer;
/* @apply text-lg inline-block overflow-hidden relative rounded-full px-10 py-[13px] cursor-pointer; */
@apply text-lg inline-block overflow-hidden relative px-10 py-[13px] cursor-pointer;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: border-color 0.4s;
border-radius: 10px;
/* background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%); */
}

.rippleButton::before {
Expand All @@ -14,12 +17,9 @@
height: 0;
border-radius: 50%;
background: rgb(51, 121, 238);
background: radial-gradient(
circle,
rgba(51, 121, 238, 1) 0%,
rgba(36, 172, 255, 1) 100%
);
background: radial-gradient(circle, #ffed79 1.18%, #ffa776 98.69%);
transition: width 0.5s, height 0.5s;
/* background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%); */
}

.rippleButton:hover {
Expand Down
4 changes: 3 additions & 1 deletion components/navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import { HiMenuAlt4 } from 'react-icons/hi';
import Image from 'next/image';
import Link from 'next/link';
import styles from './Navbar.module.css';
import Logo from '../../assets/hncc-logo.png';
// import Logo from '../../assets/hncc-logo.png';
// this is the logo for the current theme
import Logo from '../../assets/christmas_theme/christmas-theme-logo.png';
import Button from '../button/Button';
import Sidebar from './Sidebar';

Expand Down
4 changes: 2 additions & 2 deletions components/navbar/Navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
@apply sm:px-6;
@apply xs:px-3;
background-color: rgba(24, 30, 35, 0.45);
/* background-color: transparent; */
backdrop-filter: blur(8px);
overflow-x: hidden;
}

.navTitle {
Expand All @@ -28,7 +28,7 @@
width: fit-content;
}
.navbarList > .navLink:hover {
@apply text-blue font-medium;
@apply text-golden font-medium;
}

.humburgerMenu {
Expand Down
5 changes: 4 additions & 1 deletion components/socialsbar/SocialsBar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
}
.socialsBarIcons:hover {
@apply text-blue-light;
fill: rgb(56, 200, 236) !important;
fill: rgb(255, 237, 121) !important;

/* background: radial-gradient(circle, #ffed79 1.18%, #ffa776 98.69%);
overflow: hidden; */
}
1 change: 1 addition & 0 deletions components/video/Video.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ function Video() {
</video>
</div>
)}

<div className={styles.content}>
{documentWidth >= 600 ? (
<>
Expand Down
13 changes: 13 additions & 0 deletions components/video/Video.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
@apply relative;
height: 90vh;
@apply sm:h-auto;
background: url(../../assets/christmas_theme/background3.png);
background-size: cover;
}

.GRADIENT {
background-image: linear-gradient(
to bottom,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 1) 90%
);
}

.designVideoContainer {
Expand Down Expand Up @@ -56,6 +66,9 @@
@apply my-8 mx-4 text-7xl z-30 font-extrabold relative;
@apply md:text-5xl;
@apply sm:my-4;
background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%);
-webkit-background-clip: text;
color: transparent;
}

.content > h1::before,
Expand Down
2 changes: 2 additions & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export default function Home() {
name="keywords"
content="HTML, CSS, JavaScript, ReactJS, NextJS, TailwindCSS, HnCC, Hackathon & Coding Club, BIT Sindri, Dhanbad"
/>

<script src="https://app.embed.im/snow.js" defer />
</Head>
<Video />
<HomeAbout />
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/old-favicon.ico
Binary file not shown.
Binary file modified public/teams/2k20/kunal_mahta.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/teams/2k20/lazy/kunal_mahta-min.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/teams/2k21/lazy/pratik_srivastava-min.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/teams/2k21/pratik_srivastava.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ body {
background-color: #000;
}

::-webkit-scrollbar {
width: 5px;
}

::-webkit-scrollbar-track {
background-color: transparent;
-webkit-border-radius: 10px;
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #6d6d6d;
}

.scroll-lock {
@apply relative h-full overflow-hidden;
}
Expand Down
4 changes: 4 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ module.exports = {
DEFAULT: "#24ACFF",
light: "#98e8fc",
},
golden: {
DEFAULT: "#FFED79",
light: "#FFA776",
},
},
screens: {
'm2xl': { min: '1500px' },
Expand Down