123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .projects-section {
- .card {
- .card-header {
- background-color: get-light-color('bg-card');
- padding: 0.7rem;
- padding-bottom: 0rem;
- text-decoration: none;
- .card-img-xs {
- margin-right: 0.5rem;
- }
- .sub-title {
- color: get-light-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%;
- }
- }
- }
- html[data-theme='dark'] {
- .projects-section {
- .card {
- .card-header {
- background-color: get-dark-color('bg-card');
- .sub-title {
- color: get-dark-color('muted-text-color');
- }
- }
- }
- }
- }
|