* Refactor CSS Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor about section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor CSS for experiences section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Update education section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Update projects section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Update publication + accomplishment section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Update achievements section Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor footer CSS Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Re-use section title adjustment css for top header Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor navbar CSS Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor sidebar CSS Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Use unified navbar for all pages Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor 404 page CSS Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor list page css Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Fix notes page css Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Refactor single page css Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Introduce color variables Signed-off-by: hossainemruz <hossainemruz@gmail.com> --------- Signed-off-by: hossainemruz <hossainemruz@gmail.com>
115 lines
2 KiB
SCSS
115 lines
2 KiB
SCSS
.experiences-section {
|
|
@include section-title-adjustment();
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
ul {
|
|
padding-left: 1rem;
|
|
& > li {
|
|
margin-left: 0;
|
|
color: $text-color;
|
|
}
|
|
}
|
|
|
|
.designation {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.circle {
|
|
padding: 13px 20px;
|
|
border-radius: 50%;
|
|
background-color: $accent-color;
|
|
color: $text-over-accent-color;
|
|
max-height: 50px;
|
|
z-index: 2;
|
|
}
|
|
|
|
.timeline {
|
|
margin-top: 1.5rem !important;
|
|
|
|
.vertical-line {
|
|
align-self: stretch;
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
border-left: 3px solid $accent-color;
|
|
z-index: 1;
|
|
height: 100%;
|
|
left: 50%;
|
|
}
|
|
&:nth-child(even)::after {
|
|
left: calc(50% - 3px) !important;
|
|
}
|
|
}
|
|
.horizontal-line {
|
|
div {
|
|
padding: 0;
|
|
height: 40px;
|
|
}
|
|
hr {
|
|
border-top: 3px solid $accent-color;
|
|
margin: 0;
|
|
top: 17px;
|
|
position: relative;
|
|
}
|
|
.timeline-side-div {
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
.corner {
|
|
border: 3px solid $accent-color;
|
|
width: 100%;
|
|
position: relative;
|
|
border-radius: 15px;
|
|
}
|
|
}
|
|
.row {
|
|
&:nth-child(2n) {
|
|
div {
|
|
&:nth-child(1) .corner {
|
|
left: 50%;
|
|
top: -50%;
|
|
}
|
|
&:nth-child(3) .corner {
|
|
left: -50%;
|
|
top: calc(50% - 3px);
|
|
}
|
|
}
|
|
}
|
|
&:nth-child(4n) {
|
|
div {
|
|
&:nth-child(1) .corner {
|
|
left: 50%;
|
|
top: calc(50% - 3px);
|
|
}
|
|
&:nth-child(3) .corner {
|
|
left: -50%;
|
|
top: -50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media('<=medium') {
|
|
.container {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
@include media('<=small') {
|
|
.container {
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
.timeline {
|
|
.vertical-line {
|
|
visibility: hidden;
|
|
}
|
|
.horizontal-line {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|