-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5196dca
commit 5b19eff
Showing
11 changed files
with
100 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,68 @@ | ||
import event1 from '../images/event1.png' | ||
import event2 from '../images/event2.png' | ||
import event3 from '../images/event3.png' | ||
import event4 from '../images/event4.png' | ||
import event5 from '../images/event5.png' | ||
import event6 from '../images/event6.png' | ||
import event7 from '../images/event7.png' | ||
import event8 from '../images/event8.png' | ||
import event9 from '../images/event9.png' | ||
import event1 from "../images/event1.png"; | ||
import event2 from "../images/event2.png"; | ||
import event3 from "../images/event3.png"; | ||
import event4 from "../images/event4.png"; | ||
import event5 from "../images/event5.png"; | ||
import event6 from "../images/event6.png"; | ||
import event7 from "../images/event7.png"; | ||
import event8 from "../images/event8.png"; | ||
import event9 from "../images/event9.png"; | ||
|
||
const events = [ | ||
{ | ||
title: "Codease", | ||
date: "10th February", | ||
img: event5, | ||
link:"https://forms.gle/FmCBiEwB8Cx72sfB7", | ||
link: "https://forms.gle/FmCBiEwB8Cx72sfB7", | ||
}, | ||
{ | ||
title: "Code Riddles", | ||
date: "11th February", | ||
img: event6, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "IT Quiz", | ||
date: "11th February", | ||
img: event8, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "Logo Design", | ||
date: "12th February", | ||
img: event9, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "Ultimate Gaming", | ||
date: "11th and 12th February", | ||
img: event7, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "Cloud Techniques and Placement Tips", | ||
date: "14th and 15th January", | ||
img: event1, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "28 Hours Hackathon", | ||
date: "11th and 12th February", | ||
img: event2, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "CP and Algo Bootcamp", | ||
date: "21st and 22nd January", | ||
img: event3, | ||
link:"", | ||
link: "", | ||
}, | ||
{ | ||
title: "AI and Machine Learning", | ||
date: "28th and 29th January", | ||
img: event4, | ||
link:"https://forms.gle/zetADszoQMTad7JV8", | ||
link: "https://forms.gle/zetADszoQMTad7JV8", | ||
}, | ||
]; | ||
|
||
export default events; | ||
export default events; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
.modal-overlay { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba(0, 0, 0, 0.8); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 9999; | ||
opacity: 0; | ||
transition: opacity 1s ease-in-out; | ||
} | ||
.modal-overlay.open { | ||
opacity: 1; | ||
} | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba(0, 0, 0, 0.8); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 9999; | ||
opacity: 0; | ||
transition: opacity 1s ease-in-out; | ||
} | ||
.modal-overlay.open { | ||
opacity: 1; | ||
} | ||
|
||
.modal-content { | ||
padding: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); | ||
position: relative; | ||
max-width: 80%; | ||
text-align: center; | ||
} | ||
padding: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); | ||
position: relative; | ||
max-width: 80%; | ||
text-align: center; | ||
} | ||
.modal-content img { | ||
max-width: 100%; | ||
max-height: 80vh; | ||
width: auto; | ||
height: auto; | ||
display: block; | ||
margin: 0 auto; | ||
position: relative; | ||
top: 50%; | ||
transform: translateY(5%); | ||
} | ||
.close-button { | ||
position: absolute; | ||
top: 90px; | ||
right: 60px; | ||
font-size: 70px; | ||
cursor: pointer; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
color: #e76909; | ||
} | ||
.close-button::before { | ||
content: "×"; | ||
} | ||
max-width: 100%; | ||
max-height: 80vh; | ||
width: auto; | ||
height: auto; | ||
display: block; | ||
margin: 0 auto; | ||
position: relative; | ||
top: 50%; | ||
transform: translateY(5%); | ||
} | ||
.close-button { | ||
position: absolute; | ||
top: 90px; | ||
right: 60px; | ||
font-size: 70px; | ||
cursor: pointer; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
color: white; | ||
} | ||
.close-button::before { | ||
content: "×"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters