Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/comp creation new #498

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions blocks/cards/support-contact-us-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li p,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li strong,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li h5,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li h6 {
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li h6,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul li {
margin: 0;
padding: 0;
font-size: 1rem;
Expand All @@ -63,6 +64,11 @@
font-family: Nunito-Regular, sans-serif;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul{
display: block;
margin-bottom: 6px;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li h3{
color: #000000;
font-size: 12px;
Expand All @@ -83,7 +89,8 @@
color: #000;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li strong {
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li strong,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul li strong {
color: #4D4D4D;
font-weight: 700;
font-family: Nunito-Bold, sans-serif;
Expand Down Expand Up @@ -120,10 +127,16 @@
font-weight: 400;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li:has(em) em {
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul li:has(em){
position: absolute;
top: 0;
right: 0;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li:has(em) em {
/* position: absolute; */
top: 0;
right: 0;
color: #F26841;
font-size: .85rem;
line-height: 20px;
Expand Down Expand Up @@ -203,8 +216,7 @@
margin-bottom: 25px;
}

.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li:has(em) em,
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li:has(a em) a em {
.section.contact-us-card-wrapper .cards-wrapper .cards ul li .cards-card-body ul li ul li:has(em) {
bottom: 0;
top: unset;
right: unset;
Expand Down Expand Up @@ -272,6 +284,10 @@
left: 25px;

}
.section.contact-us-download-wrapper.contact-us-download-wrapper .imgwithlink-wrapper>.imgwithlink>.image-href-desktop>a>picture>img{
min-height: 260px;
height: 260px;
}
@media (min-width: 1025px) and (max-width: 1300px) {
.section.contact-us-download-wrapper div:nth-child(2) {
left: calc((100% - 891px) / 2);
Expand All @@ -280,13 +296,16 @@
/* @media (min-width: 1025px) and (max-width: 1300px) {

} */
@media screen and (min-width: 768px) and (max-width: 1024px) {
@media screen and (min-width: 767px) and (max-width: 1024px) {
.section.contact-us-download-wrapper div:nth-child(2) {
/* top: 146px; */
left: 64px;
}
.section.download-piramal-wrapper .default-content-wrapper>*:nth-child(n+1) {
display: flex;
}
}
@media screen and (max-width: 768px) {
@media screen and (max-width: 767px) {
.section.download-piramal-wrapper div:nth-child(2) {
display: block;
left: unset;
Expand Down
5 changes: 4 additions & 1 deletion styles/support-contact-us/support-contact-us.css
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,11 @@
.section.support-contact-us-wrapper .wrappercreation-wrapper .wrappercreation .wrapper-creation-container .columns-wrapper .columns div:first-child div p:first-child>strong>em {
font-size: 0.75rem;
line-height: 16px;
width: 85%;
/* width: 85%; */
}
/* .section.support-contact-us-wrapper.contact-us-download-wrapper .wrappercreation-wrapper .wrappercreation .wrapper-creation-container .columns-wrapper .columns div div p{
width: 100%;
} */

.section.support-contact-us-wrapper .wrappercreation-wrapper .wrappercreation .wrapper-creation-container .columns-wrapper .columns div div p>a u {
font-size: 0.875rem;
Expand Down
Loading