-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from mitul-garg/dev
Updated Portfolio (without Dark Theme)
- Loading branch information
Showing
34 changed files
with
542 additions
and
393 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,70 @@ | ||
.education { | ||
padding-top: 4rem; | ||
padding-bottom: 4rem; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
place-items: center; | ||
gap: 4rem; | ||
} | ||
|
||
.education h1 { | ||
color: #102a42; | ||
font-family: "Roboto", sans-serif; | ||
font-size: 2.4rem; | ||
letter-spacing: 2.4px; | ||
text-decoration: underline #2caeba 0.3rem; | ||
text-underline-offset: 0.7rem; | ||
} | ||
.education-list { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
gap: 3rem; | ||
} | ||
|
||
.education-details { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: left; | ||
gap: 2rem; | ||
border-radius: 20px; | ||
height: 300px; | ||
width: 400px; | ||
padding: 20px 40px; | ||
/* background: linear-gradient(to top, #35d7e6, #72f3ff); */ | ||
background: #d0f4f8; | ||
color: black; | ||
font-family: "Montserrat", sans-serif; | ||
transition: all 0.5s ease-in-out; | ||
} | ||
|
||
.education-details h2 { | ||
text-align: center; | ||
font-family: "Josefin Sans", sans-serif; | ||
font-size: 1.8rem; | ||
line-height: 35px; | ||
} | ||
|
||
.education-details h3 { | ||
font-size: 1.3rem; | ||
} | ||
|
||
.education-details h4 { | ||
font-size: 1.2rem; | ||
} | ||
|
||
.education-details p { | ||
font-size: 1.2rem; | ||
} | ||
|
||
.education-details:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
@media (max-width: 900px) { | ||
.education-details { | ||
width: 90%; | ||
} | ||
} |
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
Oops, something went wrong.