Skip to content

Commit

Permalink
Updation of necessary elements
Browse files Browse the repository at this point in the history
  • Loading branch information
FenyRoy committed Nov 30, 2019
1 parent f8fbee0 commit f7d4618
Show file tree
Hide file tree
Showing 7 changed files with 517 additions and 1,932 deletions.
239 changes: 239 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
. PROJECTS SECTION (PORTFOLIO)
. BLOG SECTION
. COUNTER SECTION
. Schedule Section
. Testimonial SECTION
. Contact Section
.PROGRESSBAR
Expand Down Expand Up @@ -1627,6 +1628,10 @@ img {
margin-bottom: -150px;
}

.wow {
visibility: hidden;
}

/* ----------------------------------------------------
2. HEADER
-------------------------------------------------------- */
Expand Down Expand Up @@ -2730,6 +2735,240 @@ Cover
transition: all ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/

.section-header {
margin-bottom: 60px;
position: relative;
padding-bottom: 20px;
}

.section-header::before {
content: '';
position: absolute;
display: block;
width: 60px;
height: 5px;
background: #f82249;
bottom: 0;
left: calc(5% - 25px);
}

.section-header h2 {
font-size: 36px;
text-transform: uppercase;
text-align: left;
font-weight: 700;
margin-bottom: 10px;
}

.section-header p {
text-align: left;
padding: 0;
margin: 0;
font-size: 18px;
font-weight: 500;
color: #9195a2;
}

.section-with-bg {
background-color: #f6f7fd;
}


#schedule {
padding: 60px 0 60px 0;
}

#schedule .nav-tabs {
text-align: center;
margin: auto;
display: block;
border-bottom: 0;
margin-bottom: 30px;
}

#schedule .nav-tabs li {
display: inline-block;
margin-bottom: 0;
}

#schedule .nav-tabs a {
border: none;
border-radius: 50px;
font-weight: 600;
background-color: #0e1b4d;
color: #fff;
padding: 10px 100px;
}

#schedule .nav-tabs a.active {
background-color: #f82249;
color: #fff;
}

#schedule .sub-heading {
text-align: center;
font-size: 18px;
font-style: italic;
margin: 0 auto 30px auto;
}

#schedule .tab-pane {
transition: ease-in-out .2s;
}

#schedule .schedule-item {
border-bottom: 1px solid #cad4f6;
padding-top: 15px;
padding-bottom: 15px;
transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item:hover {
background-color: #fff;
}

#schedule .schedule-item time {
padding-bottom: 5px;
display: inline-block;
}

#schedule .schedule-item .speaker {
width: 60px;
height: 60px;
overflow: hidden;
border-radius: 50%;
float: left;
margin: 0 10px 10px 0;
}

#schedule .schedule-item .speaker img {
height: 100%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
margin-left: 50%;
transition: all ease-in-out 0.3s;
}

#schedule .schedule-item h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}

#schedule .schedule-item h4 span {
font-style: italic;
color: #19328e;
font-weight: normal;
font-size: 16px;
}

#schedule .schedule-item p {
font-style: italic;
color: #152b79;
margin-bottom: 0;
}

@media (min-width: 991px) {
#schedule .sub-heading {
width: 75%;
}
}

@media (max-width: 991px) {
#header {
background: rgba(6, 12, 34, 0.98);
height: 70px;
padding: 15px 0;
transition: all 0.5s;
}

#schedule .nav-tabs a {
padding: 8px 60px;
}
}

@media (max-width: 767px) {
#schedule .nav-tabs a {
padding: 8px 50px;
}
}

@media (max-width: 480px) {
#schedule .nav-tabs a {
padding: 8px 30px;
}
}


/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
padding: 60px 0;
}

#faq #faq-list {
padding: 0;
list-style: none;
}

#faq #faq-list li {
border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
padding: 18px 0;
display: block;
position: relative;
font-family: "Raleway", sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 600;
padding-right: 20px;
}

#faq #faq-list i {
font-size: 24px;
position: absolute;
right: 0;
top: 16px;
}

#faq #faq-list p {
margin-bottom: 20px;
}

#faq #faq-list a.collapse {
color: #f82249;
}

#faq #faq-list a.collapsed {
color: #000;
}

#faq #faq-list a.collapsed i::before {
content: "\f055" !important;
}

@media (max-width: 768px) {
.back-to-top {
bottom: 15px;
}

#faq #faq-list a {
font-size: 18px;
}

#faq #faq-list i {
top: 13px;
}
}

/* ----------------------------------------------------
9 testimonial
-------------------------------------------------------- */
Expand Down
Loading

0 comments on commit f7d4618

Please sign in to comment.