Skip to content

Commit 64f236e

Browse files
committed
Updated
1 parent 83836f0 commit 64f236e

File tree

5 files changed

+218
-22
lines changed

5 files changed

+218
-22
lines changed

assets/css/main.css

Lines changed: 125 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -675,13 +675,16 @@ filter: grayscale(100%);
675675

676676
.color img:hover{
677677
filter: grayscale(0%);
678-
filter: gray;
678+
filter: rgb(105, 100, 100);
679679
-webkit-filter: grayscale(0%);
680680
filter: none;
681681
transition: 1s ease;
682682
}
683683

684-
/* Join Our Team Section */
684+
685+
/* ===================================== Join Our Team Section ================================*/
686+
687+
685688
.sectionimg{
686689
background: url('../images/banner2.svg');
687690
background-position: left center;
@@ -744,30 +747,145 @@ transition: 1s ease;
744747
margin-bottom: 10px;
745748
font-size: 30px;
746749
transition: 0.5s;
747-
color: #777;
750+
color: black;
748751
}
749752
.containerfx .card div p{
750753
font-size: 18px;
751754
transition: 0.5s;
752-
color: #777;
755+
color: rgb(0, 0, 0);
753756
}
754757
.containerfx .card div a{
755758
margin-top:20px;
756-
font-size: 14px;
759+
font-size: 16px;
757760
display: inline-block;
758761
text-decoration: none;
759762
transition: :0.5s;
760763
background: #fff;
761764
color: #777;
762-
padding: 6px 10px;
765+
padding: 6px 18px;
763766
font-weight: 600;
764-
box-shadow: 0 2px 20px rgba(0,0,0,0.5);
767+
box-shadow: 0 0px 15px rgba(0,0,0,0.5);
765768
}
766769

767770
.containerfx .card:hover div h2,
768771
.containerfx .card:hover div p{
769772
color: #fff;
770773
}
774+
775+
776+
/*================================================ Team Members ==========================================*/
777+
.teamtxt{
778+
margin: 0 0 0 50px;
779+
padding: 200px 0 50px 27px;
780+
font-weight: 300;
781+
font-family: 'Anton', sans-serif;
782+
font-size: 45px;
783+
text-transform: uppercase;
784+
line-height: 3.1rem;
785+
letter-spacing: 0.2px;
786+
color: #fff;
787+
}
788+
.teamsimg{
789+
background: url('../images/members/banner3.svg');
790+
background-position: left center;
791+
background-size: cover;
792+
}
793+
794+
#speakers {
795+
padding: 60px 0 30px 0;
796+
}
797+
798+
#speakers .speaker {
799+
position: relative;
800+
overflow: hidden;
801+
margin-bottom: 30px;
802+
}
803+
804+
#speakers .speaker .details {
805+
background: rgba(6, 12, 34, 0.76);
806+
position: absolute;
807+
left: 0;
808+
bottom: -30px;
809+
right: 0;
810+
text-align: center;
811+
padding-top: 10px;
812+
transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
813+
}
814+
815+
#speakers .speaker .details h3 {
816+
color: #fff;
817+
font-size: 22px;
818+
font-weight: 600;
819+
margin-bottom: 5px;
820+
}
821+
822+
#speakers .speaker .details p {
823+
color: #fff;
824+
font-size: 15px;
825+
margin-bottom: 10px;
826+
font-style: italic;
827+
}
828+
829+
#speakers .speaker .details .social {
830+
height: 30px;
831+
}
832+
833+
#speakers .speaker .details a {
834+
color: #fff;
835+
}
836+
837+
#speakers .speaker .details a:hover {
838+
color: #f82249;
839+
}
840+
841+
#speakers .speaker:hover .details {
842+
bottom: 0;
843+
}
844+
845+
#speakers-details {
846+
padding: 60px 0;
847+
}
848+
849+
#speakers-details .details h2 {
850+
color: #112363;
851+
font-size: 28px;
852+
font-weight: 700;
853+
margin-bottom: 10px;
854+
}
855+
856+
#speakers-details .details .social {
857+
margin-bottom: 15px;
858+
}
859+
860+
#speakers-details .details .social a {
861+
background: #e9edfb;
862+
color: #112363;
863+
line-height: 1;
864+
display: inline-block;
865+
text-align: center;
866+
border-radius: 50%;
867+
width: 36px;
868+
height: 36px;
869+
padding-top: 9px;
870+
}
871+
872+
#speakers-details .details .social a:hover {
873+
background: #f82249;
874+
color: #fff;
875+
}
876+
877+
#speakers-details .details .social a i {
878+
font-size: 18px;
879+
}
880+
881+
#speakers-details .details p {
882+
color: #112363;
883+
font-size: 15px;
884+
margin-bottom: 10px;
885+
}
886+
887+
888+
771889
/*Back to Top Button*/
772890
/* Back to top button */
773891

0 commit comments

Comments
 (0)