You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
476 lines
7.2 KiB
CSS
476 lines
7.2 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
padding: 20px 40px !important;
|
|
}
|
|
|
|
.navLink {
|
|
color: #000033 !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
padding: 8px 16px !important;
|
|
background-color: transparent !important;
|
|
border: 2px solid rgb(97, 97, 97) !important;
|
|
border-radius: 8px !important;
|
|
font-size: 16px !important;
|
|
color: black !important;
|
|
cursor: pointer !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
.navLink::after {
|
|
content: '';
|
|
display: block;
|
|
width: 0;
|
|
height: 3px;
|
|
background: #E28527;
|
|
transition: width .4s ease-in;
|
|
}
|
|
|
|
.navLink:hover {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navLink:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.phone-number {
|
|
margin-top: 8px;
|
|
margin-left: -11px;
|
|
margin-right: 25px;
|
|
}
|
|
|
|
@media only screen and (min-width: 320px) and (max-width: 767px) {
|
|
|
|
.main-section {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 20px !important;
|
|
}
|
|
|
|
.logoImg {
|
|
width: 150px;
|
|
}
|
|
|
|
.contactBtn {
|
|
display: none !important;
|
|
}
|
|
|
|
.navList {
|
|
display: inline;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.mentorHeading {
|
|
background-color: #FFF3E4;
|
|
padding: 2rem 0 2rem 0;
|
|
}
|
|
|
|
.mentorHeading h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.search-bar {
|
|
position: relative;
|
|
display: block;
|
|
margin-inline: auto;
|
|
width: 80%;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
padding: 11px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 5px;
|
|
outline: none;
|
|
}
|
|
|
|
.search-icon {
|
|
position: absolute;
|
|
top: 26px;
|
|
right: 26px;
|
|
transform: translateY(-50%);
|
|
cursor: pointer;
|
|
border: navajowhite;
|
|
background-color: snow;
|
|
}
|
|
|
|
.inner-blog-page {
|
|
padding: 20px;
|
|
}
|
|
|
|
.back-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 10px;
|
|
font-size: 16px;
|
|
color: #333;
|
|
cursor: pointer;
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
.back-icon {
|
|
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.back-text {
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
|
|
.filter-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-left: auto;
|
|
display: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inner-blog-container {
|
|
display: flex;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.left-section {
|
|
flex: 2;
|
|
}
|
|
|
|
.blog-main-image {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.blog-date {
|
|
font-size: 16px;
|
|
color: gray;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.blog-title {
|
|
font-size: 24px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.blog-paragraph {
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.right-section {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.category-rectangle {
|
|
background-color: #FFF3E4;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.category-heading {
|
|
font-size: 26px;
|
|
margin-bottom: 18px;
|
|
color: black;
|
|
}
|
|
|
|
.category-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
color: black;
|
|
}
|
|
|
|
.category-list li {
|
|
margin-bottom: 18px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
|
|
.post-rectangle {
|
|
background-color: #FFF3E4;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.post-heading {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
color: black;
|
|
}
|
|
|
|
.post-item {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.post-meta {
|
|
font-size: 14px;
|
|
color: black;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.post-title {
|
|
font-size: 16px;
|
|
color: black;
|
|
}
|
|
|
|
.show-more {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
margin-top: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.show-more-text {
|
|
font-size: 14px;
|
|
color: #333;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.down-arrow {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.inner-blog-container {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.right-section {
|
|
margin-top: 20px;
|
|
}
|
|
.blog-title {
|
|
font-size: 14px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.blog-date {
|
|
font-size: 10px;
|
|
color: gray;
|
|
}
|
|
.blog-paragraph {
|
|
font-size: 12px;
|
|
}
|
|
.category-rectangle {
|
|
display: none;
|
|
}
|
|
.filter-icon {
|
|
display: inline-block;
|
|
}
|
|
.back-button {
|
|
justify-content: flex-start;
|
|
}
|
|
.back-icon {
|
|
margin-right: 8px;
|
|
}
|
|
.post-heading {
|
|
font-size: 20px;
|
|
margin-bottom: 15px;
|
|
color: black;
|
|
}
|
|
.post-title {
|
|
font-size: 16px;
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
.related-post {
|
|
margin-top: 40px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.related-post-heading {
|
|
font-size: 36px;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.related-post-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.related-post-item {
|
|
flex: 1;
|
|
max-width: 30%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.related-post-item img {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
.related-post-date {
|
|
font-size: 14px;
|
|
color: #DF780F;
|
|
margin-bottom: 5px;
|
|
}
|
|
.related-post-title {
|
|
font-size: 24px;
|
|
color: #333;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.related-post-container {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.related-post-item {
|
|
max-width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
.related-post-heading {
|
|
font-size: 22px;
|
|
}
|
|
.related-post-title {
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
.related-post-date {
|
|
font-size: 12px;
|
|
color: #DF780F;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
|
|
.mobileFooterSection {
|
|
display: none;
|
|
}
|
|
|
|
/* FooterSection */
|
|
|
|
.footerSection {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
background-color: #223545;
|
|
color: #fff;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.footerLogoSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
column-gap: 1rem;
|
|
}
|
|
|
|
.footerLogoImg {
|
|
width: 235px;
|
|
height: 100%;
|
|
}
|
|
|
|
.socialSection {
|
|
list-style: none;
|
|
display: flex;
|
|
column-gap: 1rem;
|
|
padding: 0;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.socialSection .socialIcons {
|
|
padding: 6px;
|
|
display: flex;
|
|
color: #FFF;
|
|
}
|
|
|
|
.socialSection .socialIcons:hover {
|
|
background: #fff;
|
|
border-radius: 50%;
|
|
color: #000;
|
|
}
|
|
|
|
.footerLogoSection p {
|
|
color: #D1D1D1;
|
|
margin-top: 0;
|
|
}
|
|
.courseSection h3,
|
|
.quickLinkSection h3 {
|
|
margin-top: 0;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.courseSection ul,
|
|
.quickLinkSection ul {
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
.courseSection ul a,
|
|
.quickLinkSection ul a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
/* Footer */
|
|
@media only screen and (min-width: 320px) and (max-width: 767px) {
|
|
|
|
.mobileFooterSection {
|
|
padding-inline: 2rem;
|
|
}
|
|
|
|
.footerSection {
|
|
display: none;
|
|
}
|
|
|
|
.mobileFooterSection {
|
|
display: block;
|
|
background-color: #223545;
|
|
color: #fff;
|
|
padding-block: 1.5rem;
|
|
}
|
|
|
|
.mobileFooterSection .footerLogoSection {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.linksSection {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.courseSection ul a,
|
|
.quickLinkSection ul a {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.courseSection h3,
|
|
.quickLinkSection h3 {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.socialSection {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.footerContent p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
} |