-
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.
Merge pull request #2 from mehulgoel873/experimental
Experimental
- Loading branch information
Showing
12 changed files
with
554 additions
and
23 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.
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.
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,201 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap"); | ||
|
||
*, | ||
*:before, | ||
*:after { | ||
box-sizing: border-box; | ||
} | ||
|
||
|
||
#experience { | ||
scroll-behavior: smooth; | ||
} | ||
|
||
/* Some basic CSS overrides */ | ||
.experience { | ||
line-height: 1.5; | ||
min-height: 100vh; | ||
font-family: "Outfit", sans-serif; | ||
padding-bottom: 20vh; | ||
} | ||
|
||
.experience:hover .section_header h1 { | ||
color: var(--orange-light); | ||
} | ||
|
||
.experience button, | ||
.experience input, | ||
.experience select, | ||
.experience textarea { | ||
font: inherit; | ||
} | ||
|
||
.experience .section_header h1 { | ||
color: var(--navy-blue); | ||
} | ||
|
||
.experience a { | ||
color: inherit; | ||
} | ||
|
||
.experience img { | ||
display: block; | ||
max-width: 100%; | ||
} | ||
|
||
/* End basic CSS override */ | ||
|
||
.experience .timeline { | ||
width: 85%; | ||
max-width: 70vw; | ||
margin-left: auto; | ||
margin-right: auto; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 32px 0 32px 32px; | ||
border-left: 4px solid var(--navy-blue); | ||
font-size: 1.125rem; | ||
} | ||
|
||
|
||
.experience .timeline-item { | ||
display: flex; | ||
gap: 24px; | ||
width: 100%; | ||
} | ||
|
||
.experience .timeline-item+* { | ||
margin-top: 24px; | ||
} | ||
|
||
.experience .timeline-item+.extra-space { | ||
margin-top: 48px; | ||
} | ||
|
||
.experience .timeline-item:hover .card { | ||
border-color: var(--orange); | ||
box-shadow: 0 4px 4px 0 var(--orange-light); | ||
color: var(--orange-light); | ||
} | ||
|
||
.experience .timeline-item:hover .card .button { | ||
border-color: var(--orange-light); | ||
color: var(--orange-light); | ||
} | ||
|
||
.experience .timeline-item:hover .card .button .hover-orange { | ||
filter: invert(88%) sepia(94%) saturate(1799%) hue-rotate(305deg) brightness(101%) contrast(101%); | ||
} | ||
|
||
.experience .timeline-item:hover .icon { | ||
filter: invert(55%) sepia(73%) saturate(1298%) hue-rotate(339deg) brightness(101%) contrast(102%); | ||
} | ||
|
||
.experience .timeline-item-icon { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
width: 40px; | ||
height: 40px; | ||
border-radius: 50%; | ||
margin-left: -52px; | ||
flex-shrink: 0; | ||
overflow: hidden; | ||
background-color: var(--background); | ||
box-shadow: 0 0 0 8px var(--background); | ||
} | ||
|
||
.experience .timeline-item-icon img { | ||
width: 35px; | ||
height: 35px; | ||
filter: invert(54%) sepia(17%) saturate(958%) hue-rotate(160deg) brightness(90%) contrast(91%); | ||
/* https://isotropic.co/tool/hex-color-to-css-filter/ */ | ||
} | ||
|
||
.experience .card { | ||
margin-top: -24px; | ||
margin-bottom: 36px; | ||
color: var(--navy-blue-light); | ||
border: 3px solid var(--navy-blue); | ||
box-shadow: 0 4px 4px 0 var(--navy-blue-light); | ||
border-radius: 6px; | ||
padding: 16px; | ||
font-weight: 600; | ||
width: 100%; | ||
} | ||
|
||
.experience .card h1 { | ||
padding: 0; | ||
margin: 0; | ||
|
||
font-weight: 900; | ||
font-size: 2rem; | ||
font-family: "Source Code Pro", monospace; | ||
font-optical-sizing: auto; | ||
font-style: normal; | ||
} | ||
|
||
.experience .card h2 { | ||
padding: 0; | ||
margin: 0; | ||
|
||
font-weight: 700; | ||
font-size: 1.25rem; | ||
font-family: "Source Code Pro", monospace; | ||
font-optical-sizing: auto; | ||
font-style: italic; | ||
} | ||
|
||
.experience .card p { | ||
margin-top: 4px; | ||
color: var(--offwhite); | ||
} | ||
|
||
.experience a { | ||
color: var(--background); | ||
} | ||
|
||
.experience .button { | ||
border: 0; | ||
padding: 0; | ||
display: inline-flex; | ||
vertical-align: middle; | ||
margin-right: 4px; | ||
align-items: center; | ||
justify-content: center; | ||
height: max-content; | ||
padding: 4px 12px; | ||
|
||
border: 5px solid var(--offwhite); | ||
border-radius: 15px; | ||
background-color: var(--background); | ||
color: var(--offwhite); | ||
flex-shrink: 0; | ||
cursor: pointer; | ||
|
||
font-weight: 400; | ||
font-size: 1.25rem; | ||
font-family: "Source Code Pro", monospace; | ||
font-optical-sizing: auto; | ||
} | ||
|
||
.experience .button img { | ||
width: 1.5rem; | ||
height: 1.5rem; | ||
margin: 0px 16px 0px 8px; | ||
filter: invert(100%) sepia(1%) saturate(4960%) hue-rotate(173deg) brightness(89%) contrast(101%); | ||
} | ||
|
||
.experience .button:hover { | ||
border-color: var(--orange) !important; | ||
color: var(--orange) !important; | ||
font-weight: 700; | ||
} | ||
|
||
.experience .button:hover .hover-orange { | ||
filter: invert(55%) sepia(73%) saturate(1298%) hue-rotate(339deg) brightness(101%) contrast(102%) !important; | ||
} | ||
|
||
.experience .button:hover .icon { | ||
filter: invert(55%) sepia(73%) saturate(1298%) hue-rotate(339deg) brightness(101%) contrast(102%); | ||
} |
Oops, something went wrong.