* 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>
83 lines
1.3 KiB
SCSS
83 lines
1.3 KiB
SCSS
.projects-section {
|
|
.card {
|
|
.card-header {
|
|
background-color: $bg-card;
|
|
padding: 0.7rem;
|
|
padding-bottom: 0rem;
|
|
text-decoration: none;
|
|
|
|
.card-img-xs {
|
|
margin-right: 0.5rem;
|
|
}
|
|
.sub-title {
|
|
color: $muted-text-color;
|
|
margin-top: 0.4rem;
|
|
|
|
span {
|
|
&:nth-child(1) {
|
|
float: left;
|
|
}
|
|
&:nth-child(2) {
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.card-body {
|
|
padding: 0.7rem;
|
|
}
|
|
}
|
|
|
|
.filtr-projects {
|
|
padding: 1rem !important;
|
|
}
|
|
|
|
.project-card-footer {
|
|
display: flex;
|
|
}
|
|
|
|
.project-tags-holder {
|
|
width: 70%;
|
|
}
|
|
|
|
.project-btn-holder {
|
|
width: 30%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
flex-direction: column;
|
|
|
|
span {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
|
|
@include media('<=large') {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
width: 100%;
|
|
|
|
.container {
|
|
max-width: 100%;
|
|
}
|
|
.filtr-projects {
|
|
padding: 0;
|
|
}
|
|
.filtr-item {
|
|
flex: 50%;
|
|
padding-left: 0.2rem;
|
|
padding-right: 0.2rem;
|
|
max-width: calc(100% / 2 - 0.2rem);
|
|
}
|
|
}
|
|
|
|
@include media('<=small') {
|
|
.btn {
|
|
margin-top: 0.3125rem;
|
|
}
|
|
.filtr-item {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|