Skip to content

Commit

Permalink
update sytles.
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed Aug 9, 2024
1 parent eaf0f05 commit ad8ea08
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 8 deletions.
73 changes: 72 additions & 1 deletion styles/styles.header.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ header nav[aria-expanded='true'] {


header nav[aria-expanded='true'] .section.menu ul:last-child {
display: flex !important;
/* display: flex !important; */
flex-direction: row;
justify-content: center;
align-items: center;
Expand Down Expand Up @@ -248,4 +248,75 @@ header nav[aria-expanded='true'] .section.menu ul:last-child .button-container a
display: flex;
justify-content: center;
align-items: center;
}

@media (width <= 900px) {
header nav[aria-expanded='true'] .section.menu ul:last-child {
display: flex !important;
}
}

@media (width >= 900px) {
header nav[aria-expanded='true'] {
display: flex !important;
flex-direction: row !important;
justify-content: space-between !important;
align-items: center !important;
padding-left: 60px !important;
padding-right: 60px !important;
margin-right: auto !important;
margin-left: auto !important;
vertical-align: middle !important;
}
header nav[aria-expanded='true'] .section.menu {
padding: 0;
height: 110px !important;
max-height: fit-content;
align-items: center !important;
vertical-align: middle !important;
}
header nav .nav-sections ul {
height: 110px;
align-items: center;
vertical-align: middle;
justify-content: start;
}
header nav .nav-sections ul li {
padding: 0px;
margin: 0px;
}

header nav[aria-expanded='true'] .section.menu ul:first-child {
padding: 0px !important;
margin: 0px !important;
}

header nav[aria-expanded='true'] .section.menu ul:first-child li {
padding: 0px !important;
margin: 0px !important;
height: 100%;
vertical-align: middle;
/* display: flex; */
justify-content: center;
align-items: center;
vertical-align: middle;
align-content: center;
}

header nav[aria-expanded='true'] .section.menu ul:first-child li a {
padding: 0px !important;
margin: 0px !important;
/* height: 100%; */
vertical-align: middle;
line-height: 1;
font-weight: 700;
color: #E6FF00;
height: 25px;
max-height: 25px;
min-height: 25px;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
}

}
9 changes: 9 additions & 0 deletions styles/styles.section.contactus.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

main .section.contactus {
position: relative;
padding-top: 60px;
}

main .section.contactus .content-wrapper {
padding-right: 60px;
padding-left: 60px;
margin-right: auto;
margin-left: auto;
max-width: 1440px;
}

main .section.contactus::after {
Expand Down
19 changes: 12 additions & 7 deletions styles/styles.section.faq.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ main .section.faq {
position: relative;
}


@media (width <= 900px) {
main .section.faq {
padding: 30px 25px;
}
}

main .section.faq .default-content-wrapper {
margin-bottom: 30px;
padding-right: 60px;
Expand All @@ -35,3 +28,15 @@ main .section.faq h3 em {
color: #fff;
}




@media (width <= 900px) {
main .section.faq {
padding: 30px 25px;
}
main .section.faq .default-content-wrapper,
main .section.faq .accordion-wrapper {
padding: 0px;
}
}

0 comments on commit ad8ea08

Please sign in to comment.