-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed tailwind CSS; Added theming;
- Loading branch information
Ankit Singh Bhamra
authored and
Ankit Singh Bhamra
committed
Jan 10, 2022
1 parent
f6009c7
commit c684788
Showing
20 changed files
with
8,272 additions
and
3,935 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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
.aboutMainContainer { | ||
padding: 0 1rem; | ||
margin: 0 auto; | ||
} | ||
|
||
.aboutMainContentContainer { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
text-align: center; | ||
} | ||
|
||
.aboutTextContainer { | ||
padding: 0 1rem; | ||
margin: 3rem 0 0 0; | ||
text-align: left; | ||
} | ||
|
||
.aboutTextHeader { | ||
font-weight: 700; | ||
} | ||
|
||
.aboutTextContent { | ||
margin-top: 1.5rem; | ||
font-weight: 300; | ||
} | ||
|
||
.aboutTextPara { | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.buttonDiv { | ||
font-weight: 700; | ||
padding: 0.5rem 1rem; | ||
border-radius: 0.25rem; | ||
display: inline-flex; | ||
align-items: center; | ||
text-decoration: none; | ||
} | ||
|
||
.buttonDiv:hover { | ||
background: #9ca3af; | ||
} | ||
|
||
.buttonSVG { | ||
fill: white; | ||
width: 1rem; | ||
height: 1rem; | ||
margin-right: 0.5rem; | ||
} | ||
|
||
.imageContainer { | ||
margin-top: 3rem; | ||
padding: 0 1rem; | ||
margin-bottom: 2.5rem; | ||
flex-shrink: 0; | ||
} | ||
|
||
.imageContent { | ||
border-radius: 999999px; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
@import "../../styles/colors"; | ||
|
||
.footerMainContainer { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
max-width: 56rem; | ||
margin: 3rem auto 0 auto; | ||
padding: 3rem 1rem 9rem 1rem; | ||
} | ||
|
||
.footerMainContentContainer { | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
} | ||
|
||
.footerBorder { | ||
border-top: 2px solid; | ||
border-top-color: $gray; | ||
padding-bottom: 2rem; | ||
margin-bottom: 0.5rem; | ||
} | ||
|
||
.footerData { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.linksContainer { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.linkData { | ||
color: inherit; | ||
text-decoration: none; | ||
margin: 1rem; | ||
} | ||
|
||
.linkData:hover { | ||
color: $yellow; | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.