Skip to content
Merged
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
14 changes: 7 additions & 7 deletions components/AnimatedScrollButton/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
}

.mouse:hover {
/* @apply border-blue; */
/* box-shadow: 0px 0px 14px 1px rgb(36 172 255); */
@apply border-blue;
box-shadow: 0px 0px 14px 1px rgb(36 172 255);
/* For Christmas theme */
@apply border-golden;
box-shadow: 0px 0px 14px 1px #ffed79;
/* @apply border-golden; */
/* box-shadow: 0px 0px 14px 1px #ffed79; */
}

.cursor {
Expand All @@ -30,10 +30,10 @@
}

.mouse:hover .cursor {
/* @apply bg-blue; */
@apply bg-blue;
/* For Christmas Theme */
@apply bg-golden;
animation: none;
/* @apply bg-golden; */
/* animation: none; */
}

@keyframes scrollDown {
Expand Down
4 changes: 2 additions & 2 deletions components/StyledText/Glitter.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
position: absolute;
bottom: 0;
left: 0;
/* background: linear-gradient(to right, transparent, #24acff); */
background: linear-gradient(to right, transparent, #24acff);
/* For christmas theme */
background: linear-gradient(to right, transparent, rgb(255, 237, 121));
/* background: linear-gradient(to right, transparent, rgb(255, 237, 121)); */
height: 3px;
width: 100%;
animation: animate 2s linear infinite;
Expand Down
6 changes: 3 additions & 3 deletions components/associations/association.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
height: 130%;
width: 130%;
border-radius: 50%;
/* background: linear-gradient(90deg, #00ccff, #98e8fc); */
background: linear-gradient(90deg, #00ccff, #98e8fc);
/* For Christmas Theme */
background: linear-gradient(90deg, #ffa776, #ffed79);
opacity: 0.25;
/* background: linear-gradient(90deg, #ffa776, #ffed79); */
/* opacity: 0.25; */
}

.associationMenuItem:hover::before {
Expand Down
12 changes: 6 additions & 6 deletions components/button/Button.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
width: 0;
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: rgb(51, 121, 238);
background: radial-gradient(circle, rgba(51, 121, 238, 1) 0%, rgba(36, 172, 255, 1) 100%);
/* For Christmas Theme */
background: #ffed79;
background: radial-gradient(circle, #ffa776 0%, #ffed79, 100%);
/* background: #ffed79; */
/* background: radial-gradient(circle, #ffa776 0%, #ffed79, 100%); */
transition: width 0.5s, height 0.5s;
}

.rippleButton:hover {
border-color: transparent;
}
/* Below span tag styling is For christmas Theme */
.rippleButton:hover > span {
/* .rippleButton:hover > span {
transition: 150ms;
@apply text-primary;
}
} */

.rippleButton:hover::before {
height: 400px;
Expand Down
12 changes: 6 additions & 6 deletions components/event/event.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
transition: transform ease 250ms;
border-radius: 0.5rem;
overflow: hidden;
/* box-shadow: 0 0 5px 1px hsl(203, 100%, 57%); */
box-shadow: 0 0 5px 1px hsl(203, 100%, 57%);
/* For Christmas Theme */
box-shadow: 0 0 5px 1px #ffed79;
/* box-shadow: 0 0 5px 1px #ffed79; */
}

.card:hover {
Expand Down Expand Up @@ -69,9 +69,9 @@
top: 100%;
height: 3px;
width: calc(100% + 2.5rem);
/* background: hsl(203, 100%, 57%); */
background: hsl(203, 100%, 57%);
/* For Christmas Theme */
background: #FFED79;
/* background: #FFED79; */
transform: scaleX(0);
transition: transform 200ms ease;
transform-origin: left;
Expand All @@ -92,8 +92,8 @@
text-decoration: none;
color: black;
/* For Christmas Theme */
background: #ffed79;
/* background: hsl(203, 100%, 57%); */
/* background: #ffed79; */
background: hsl(203, 100%, 57%);
padding: 0.5em 1.25em;
border-radius: 0.25rem;
}
Expand Down
4 changes: 2 additions & 2 deletions components/navbar/Hamburger.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
}

.navLink:hover {
/* @apply text-blue; */
@apply text-blue;
/* For Christmas Theme */
@apply text-golden;
/* @apply text-golden; */
}

.navLink:hover::after {
Expand Down
2 changes: 1 addition & 1 deletion components/navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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/christmas_theme/christmas-theme-logo.png';
import Logo from '../../assets/hncc-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 @@ -27,10 +27,10 @@
width: fit-content;
}
.navbarList > .navLink:hover {
/* @apply text-blue font-medium; */
@apply text-blue font-medium;

/* For christmas theme */
@apply text-golden font-medium;
/* @apply text-golden font-medium; */
}

.humburgerMenu {
Expand Down
2 changes: 1 addition & 1 deletion components/navbar/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CgClose } from 'react-icons/cg';
import Image from 'next/image';
import Link from 'next/link';
import styles from './Hamburger.module.css';
import Logo from '../../assets/christmas_theme/christmas-theme-logo.png';
import Logo from '../../assets/hncc-logo.png';
import Button from '../button/Button';

const SpanStyle = {
Expand Down
4 changes: 2 additions & 2 deletions components/screen/Screen.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from 'react';
import ParticleBackground from '../../assets/christmas_theme/ParticlesBg';
// import ParticleBackground from '../../assets/christmas_theme/ParticlesBg';
import Footer from '../footer/Footer';
import Navbar from '../navbar/Navbar';
import SocialsBar from '../socialsbar/SocialsBar';
Expand All @@ -23,7 +23,7 @@ function Screen({ children }) {
<main id="overlayScreen" className="h-full relative">
<div className="cursor" />
{/* For Christmas Theme */}
<ParticleBackground />
{/* <ParticleBackground /> */}
<Navbar />
<SocialsBar />
{children}
Expand Down
4 changes: 2 additions & 2 deletions components/socialsbar/SocialsBar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
.socialsBarIcons:hover {
@apply text-blue-light;
/* fill: rgb(56, 200, 236) !important; */
fill: rgb(56, 200, 236) !important;
/* For christmas theme */
fill: rgb(255, 237, 121) !important;
/* fill: rgb(255, 237, 121) !important; */
}
4 changes: 2 additions & 2 deletions components/sponsors/sponsors.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
height: 160%;
min-height: calc(100% + 50px);
width: 50%;
/* background: linear-gradient(#00ccff, #98e8fc); */
background: linear-gradient(#00ccff, #98e8fc);
/* For christmas theme */
background: linear-gradient(rgb(255, 237, 121), rgb(253, 244, 186));
/* background: linear-gradient(rgb(255, 237, 121), rgb(253, 244, 186)); */
animation: animate 4s linear infinite;
opacity: 0.25;
transition: all 400ms ease-in-out;
Expand Down
18 changes: 9 additions & 9 deletions components/teams/Team.module.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
.card {
@apply p-4 relative flex flex-col justify-center items-center overflow-hidden rounded-2xl;
min-height: 350px;
/* background: rgb(0, 204, 255); */
background: rgb(0, 204, 255);
/* For christmas theme */
background: rgb(255, 237, 121);
/* background: rgb(255, 237, 121);
background: linear-gradient(
45deg,
rgba(255, 237, 121, 0.44861694677871145) 0%,
rgba(253, 244, 186, 0.4) 100%
);
/* background: linear-gradient(
); */
background: linear-gradient(
45deg,
rgba(0, 204, 255, 0.44861694677871145) 0%,
rgba(152, 232, 252, 0.4) 100%
);
transition: all 300ms ease-in-out;*/
transition: all 300ms ease-in-out;
}

.cardContainer {
Expand All @@ -29,9 +29,9 @@
.card::before {
@apply absolute w-32;
content: '';
/* background: linear-gradient(#00ccff, #98e8fc); */
background: linear-gradient(#00ccff, #98e8fc);
/* For christmas theme */
background: linear-gradient(#ffed79, #ffa776);
/* background: linear-gradient(#ffed79, #ffa776); */
animation: animate 4s linear infinite;
height: 140%;
opacity: 0;
Expand All @@ -53,9 +53,9 @@
}

.socials > a:hover > svg {
/* fill: #51bcff; */
fill: #51bcff;
/* For Christmas theme */
fill: rgb(255, 237, 121);
/* fill: rgb(255, 237, 121); */
}

.postHead {
Expand Down
6 changes: 3 additions & 3 deletions components/video/Video.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
height: 90vh;
@apply sm:h-auto;
/* For christmas theme */
background: url('../../assets/christmas_theme/background3.png');
background-size: cover;
/* background: url('../../assets/christmas_theme/background3.png'); */
/* background-size: cover; */
}

.GRADIENT {
Expand All @@ -22,7 +22,7 @@
height: 100%;
overflow: hidden;
/* For christmas theme */
background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%);
/* background: linear-gradient(90.28deg, #ffed79 1.18%, #ffa776 98.69%); */
background-clip: text;
color: transparent;
}
Expand Down
4 changes: 2 additions & 2 deletions pages/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ function ContactUs() {
<Button
style={{ border: 'none' }}
/* For Christmas Theme */
// className="bg-primary-light text-primary"
className="bg-primary-light text-primary hover:text-primary-light"
className="bg-primary-light text-primary"
// className="bg-primary-light text-primary hover:text-primary-light"
>
<span
style={{
Expand Down
4 changes: 2 additions & 2 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ a {
}

.cursor {
/* background: rgb(51, 121, 238); */
background: rgb(51, 121, 238);
/* For christmas theme */
background: rgb(255, 237, 121);
/* background: rgb(255, 237, 121); */
transform: translate(-50%, -50%);
@apply h-[10px] w-[10px] fixed top-0 left-0 z-[9999999] pointer-events-none rounded-2xl;
transition: all 0.15s ease;
Expand Down
Loading