forked from ashwinpra/gyfe
-
Notifications
You must be signed in to change notification settings - Fork 8
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
8f1c775
commit 45cf54c
Showing
22 changed files
with
306 additions
and
204 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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from "react"; | ||
|
||
let circles_list = [ | ||
{ | ||
position: [10, 15], | ||
color: "0 0 400px 140px rgba(0, 133, 255, 1)", | ||
}, | ||
{ | ||
position: [10, 90], | ||
color: "0 0 100px 100px rgba(0, 255, 102, 0.72)", | ||
}, | ||
{ position: [40, 40], color: "0 0 150px 100px #FFD447" }, | ||
{ | ||
position: [100, 10], | ||
color: "0 0 250px 150px rgba(204, 0, 255, 0.75)", | ||
}, | ||
{ | ||
position: [80, 90], | ||
color: "0 0 200px 80px rgba(204, 0, 255, 1)", | ||
}, | ||
]; | ||
|
||
const Circles: React.FC = () => { | ||
return ( | ||
<div className="circle-container"> | ||
{circles_list.map((x) => ( | ||
<> | ||
<div | ||
className="circle" | ||
style={{ | ||
top: `${x.position[0]}%`, | ||
left: `${x.position[1]}%`, | ||
boxShadow: x.color, | ||
}} | ||
/> | ||
</> | ||
))} | ||
</div> | ||
); | ||
}; | ||
export default Circles; |
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
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,9 +1,33 @@ | ||
footer { | ||
font-size: 1.2rem; | ||
margin-top: 1rem; | ||
.metakgp { | ||
font-family: $metakgp-font; | ||
font-weight: 800; | ||
font-size: 1.2rem; | ||
} | ||
margin-top: 1rem; | ||
text-align: center; | ||
.metakgp { | ||
font-family: $metakgp-font; | ||
font-weight: 800; | ||
font-size: 1.2rem; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
} | ||
.help { | ||
display: flex; | ||
gap: 1rem; | ||
justify-content: center; | ||
align-items: center; | ||
.help-button, | ||
.logout-button { | ||
margin-top: 1rem; | ||
border: none; | ||
width: fit-content; | ||
padding: 0.5rem 1rem; | ||
font-size: 1rem; | ||
border-radius: 8px; | ||
color: white !important; | ||
font-weight: bold; | ||
background-color: #989898; | ||
box-shadow: none; | ||
cursor: pointer; | ||
} | ||
} |
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,18 +1,18 @@ | ||
.header { | ||
@include flexbox(column, center, center, 2rem); | ||
margin-bottom: 2rem; | ||
.header-logo { | ||
max-width: 7rem; | ||
img { | ||
width: 100%; | ||
height: auto; | ||
@include flexbox(column, center, center, 0); | ||
margin-bottom: 2rem; | ||
.header-logo { | ||
img { | ||
width: 100%; | ||
height: auto; | ||
} | ||
} | ||
} | ||
.header-title { | ||
font-size: 2.5em; | ||
line-height: 1; | ||
#word { | ||
font-family: $cursive-font; | ||
.header-title { | ||
font-size: 2rem; | ||
line-height: 1; | ||
#word { | ||
font-family: $cursive-font; | ||
font-size: 3.5rem; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.