x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<style>

div#main {
   /*background-image: -webkit-linear-gradient(top, var(--primary-color), var(--primary-color) 500px, transparent 500px, transparent 100%) !important;*/
/*     padding-top: 50px; */
}

.back-btn-container {
    width: 90%;
    margin: auto;
}

.back-btn-container .back-btn {
    color: black;
    font-family: var(--main-font-family);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.07;
}

.page-banner {
    width: 100%;
    margin: auto;
    background-image: url(https://gsvlabs-confluence-files.s3-us-west-2.amazonaws.com/images/EIT/eit-banner.jpeg);
    display: flex;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    /*margin-top: 20px;*/
}

.banner-content {
    display: flex;
    flex-direction: column;
    margin: auto auto auto 125px;
}

.tabs {
    display: flex;
}

.tabs p {
    margin: unset;
}

.banner-content .title p {
    font-size: 57px;
    font-weight: bold;
    font-stretch: normal;
    color: var(--secondary-font-color);
    font-style: normal;
    line-height: 0.7;
    letter-spacing: 0.32px;
    text-align: center;
}

div#maincontainer .page-banner .overlay {
    display: unset;
    width: 100%;
    display: flex;
    /*background: black;
    opacity: 0.8;*/
}

.banner-content {
    align-items: flex-start;
}

.banner-content .tabs .tab {
    font-family: Poppins;
    font-size: 14px;
    font-weight: bold;
    color: var(--secondary-font-color);
    border-bottom-width: 3px;
    border-radius: 5%; 
    cursor: pointer;
    line-height: 1.71;
    letter-spacing: 1.39px;
    text-align: center;
	text-transform: uppercase;
	margin-right: 40px;
}

#all#bootcamp-tab{
	border-bottom-style: solid;
}

.tabs {
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
}

div.filter-row {
    width: 90%;
    margin: 50px auto;
}

div.filter-row .left {
    opacity: 0.5;
  font-family: Arimo;
  font-size: 15.3px;
  line-height: 1.57;
  letter-spacing: 0.5px;
  color: #555555;
  width: 8%;
}

.filter-row .right input {
    display: none;
}

.filter-row .right label {
    /*background: rgba(251, 189, 40, 0.2);*/
	background: white;
    border-radius: 2px;
    border: solid 1px #fbbd28;
    margin-right: 10px;
    padding: 0 25px;
    font-family: Arimo;
    font-size: 15.3px;
    line-height: 1.57;
    letter-spacing: 0.5px;
	cursor: pointer;
}

.filter-row .right label:hover{
	background: rgba(251, 189, 40, 0.2);
}

.filter-row .right input[type="radio"]:checked+label{
    background: #fbbd28;
}

div.filter-row .right button:focus {
    outline: none;
}

div.cardSectionStyle {
    flex-direction: column;
}

div.cardSection1{
	display: none;
}


div.cardSection2{
	display: none;
}

div.cardSection3{
	display: none;
}


div.cardSection4{
	display: none;
}


.cardSectionStyle .largeimagewithtextbelow-listmempag img {
    width: 50%;
    height: auto !important;
}

.cardSectionStyle .largeimagewithtextbelow-listmempag {
    background: unset !important;
}


.cardSectionStyle .largeimagewithtextbelow-listmempag .image-container {
    border: solid 1px rgba(51, 51, 51, 0.5);
}

.cardSectionStyle .largeimagewithtextbelow-listmempag .card-text-container .card-title {
    padding: unset;
    
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;

}

.cardSectionStyle .largeimagewithtextbelow-listmempag .card-text-container .card-subtitle {
    padding: unset;
    
  font-size: 15.3px;
  line-height: 1.31;
  letter-spacing: 0.5px;
}

.cardSectionStyle .largeimagewithtextbelow-listmempag .card-text-container {
    margin-top: 25px;
}
</style>

<style>
.iconcard {
  margin: 20px 50px !important;
}
</style>

...

HTML
<script>
  $('#all-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unsetsolid');
    $('#bootcamp-tab').css('border-bottom-style', 'solidunset');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });
  
  $('#bootcamp-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'solid');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });

  $('#business-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'solid');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });
  
  $('#startup-manual-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'solid');
  });
</script>

...