-
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.
- Loading branch information
Darshan Javiya
committed
May 2, 2024
1 parent
251de6c
commit f2cc011
Showing
5 changed files
with
494 additions
and
4 deletions.
There are no files selected for viewing
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,11 @@ | ||
.fontLibRegular { | ||
font-family: "Libre Baskerville", serif; | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
|
||
.fontLibBold { | ||
font-family: "Libre Baskerville", serif; | ||
font-weight: 700; | ||
font-style: normal; | ||
} |
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,124 @@ | ||
.fullScreenContainer { | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
min-height: 100%; | ||
padding: 30; | ||
} | ||
|
||
.nameContainer { | ||
align-items: center; | ||
justify-content: center; | ||
background-color: rgb(0, 0, 0); | ||
padding-left: 30px; | ||
padding-right: 30px; | ||
} | ||
|
||
@keyframes animateName { | ||
from { | ||
color: black; | ||
} | ||
to { | ||
color: rgb(103, 206, 0); | ||
} | ||
} | ||
.name { | ||
overflow: hidden; | ||
color: rgb(103, 206, 0); | ||
animation: animateName 1s, blink-caret 0.5s infinite; | ||
border-right: 0.5em solid rgb(103, 206, 0); | ||
} | ||
|
||
/* The typing effect */ | ||
@keyframes typing { | ||
from { | ||
width: 0; | ||
} | ||
to { | ||
width: 100%; | ||
} | ||
} | ||
|
||
/* The typewriter cursor effect */ | ||
@keyframes blink-caret { | ||
from, | ||
to { | ||
border-color: transparent; | ||
} | ||
50% { | ||
border-color: rgb(103, 206, 0); | ||
} | ||
} | ||
|
||
@keyframes animateMoreInfoIcon { | ||
0% { | ||
scale: 0.6; | ||
} | ||
50% { | ||
scale: 1; | ||
} | ||
|
||
100% { | ||
scale: 0.6; | ||
} | ||
} | ||
.moreInfoIcon { | ||
color: chartreuse; | ||
animation-name: animateMoreInfoIcon; | ||
animation-duration: 2s; | ||
animation-iteration-count: infinite; | ||
} | ||
|
||
/* Tool Bar */ | ||
.toolBar { | ||
height: 100%; | ||
position: fixed; | ||
right: 0; | ||
top: 0; | ||
bottom: 0; | ||
display: flex; | ||
} | ||
.toolBarContainer { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.toolBarItemContainer { | ||
margin: 4 10 4 0; | ||
} | ||
.toolBarIcon { | ||
border-radius: 50%; | ||
width: 100%; | ||
padding: 10; | ||
color: blueviolet; | ||
} | ||
.toolBarIcon:hover { | ||
background-color: aliceblue; | ||
} | ||
|
||
/* About Me */ | ||
.aboutMe { | ||
background-color: grey; | ||
} | ||
|
||
/* Experience */ | ||
.experience { | ||
} | ||
|
||
/* Project */ | ||
.projects { | ||
background-color: blue; | ||
} | ||
|
||
/* Academics */ | ||
.academics { | ||
} | ||
|
||
/* Accounts */ | ||
.socialHandles { | ||
} | ||
|
||
/* Contact Me */ | ||
.contactMe { | ||
} |
Oops, something went wrong.