Skip to content

Commit 21dff3f

Browse files
authored
Merge pull request #452 from BipinKalra/events-page-updates
Events page updates
2 parents a70faf5 + 81dc0b3 commit 21dff3f

File tree

5 files changed

+87
-2
lines changed

5 files changed

+87
-2
lines changed

examples/views/live-classes-course-page-new.hbs

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@
2424
</div>
2525
</div>
2626
<div class="row no-gutters align-items-center justify-content-between">
27-
<h4 class="bold">Batch Starts 1st June 2020</h4>
27+
<div class="col-xl-8 col-sm-6">
28+
<div class="bold backdrop font-mds v-align-ma mb-xl-0 mb-5">
29+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/user-white.svg" class="mr-2tea">
30+
Enrollment through Selection process only
31+
</div>
32+
<div class="bold backdrop font-mds v-align-ma ml-xl-5 mb-md-0 mb-5">
33+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/group-white.svg" class="mr-2">
34+
50 Students
35+
</div>
36+
</div>
2837
<div class="d-inline-flex align-items-center">
2938
<span class="font-mdxl bold">&#8377;&nbsp;12499</span>
3039
<span class="font-xl bold del-text-grey pl-3"><del>&#8377;&nbsp;18999</del></span>
@@ -168,6 +177,32 @@
168177
</div>
169178

170179
<div class="col-lg-4 mb-lg-0 mb-5">
180+
<div class="br-10 overflow-hidden white mb-5">
181+
<div class="row no-gutters align-items-center bg-gradient-green px-lg-5 px-4 py-4">
182+
<div class="round s-60x60 border b-white border-2 all-center" style="background: inherit;">
183+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/master-tropgy.svg">
184+
</div>
185+
<div class="flex-1 pl-4">
186+
<div class="card-md mb-1">
187+
Get free access to
188+
</div>
189+
<div class="bold">
190+
Master Interview Questions for FAANG & Product Companies
191+
</div>
192+
</div>
193+
</div>
194+
</div>
195+
196+
<div class="border-card p-lg-5 p-4 bg-gradient-orange white position-relative mb-5">
197+
<div class="font-md bold">Selection Tests</div>
198+
<div class="card-md mt-1">Choose your preffered Test Date</div>
199+
<div class="mt-5">
200+
<button class="button-dashed button-white">25th July</button>
201+
<button class="button-solid orange button-white ml-xl-3 ml-lg-2 ml-4">31st July</button>
202+
</div>
203+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/victory.svg" class="victory-vector">
204+
</div>
205+
171206
<div class="border-card p-lg-5 p-4 bg-gradient-orange mb-5 white">
172207
<div class="row no-gutters align-items-center justify-content-between pb-3 border-bottom">
173208
<div class="font-md bold">Selection Test</div>
@@ -193,6 +228,7 @@
193228
</div>
194229
</div>
195230
</div>
231+
196232
<div class="border-card p-lg-5 p-4 b-orange mb-5">
197233
<div class="font-mds bold">
198234
Timeline
@@ -232,6 +268,19 @@
232268
</div>
233269
</div>
234270
</div>
271+
272+
<div class="border-card bg-grey px-lg-5 px-4 py-4 mb-5">
273+
<div class="row no-gutters align-items-center">
274+
<div class="all-center round bg-white s-50x50">
275+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/phone-gradient-orange.svg">
276+
</div>
277+
<div class="flex-1 pl-4">
278+
In case of any query/doubt, please contact
279+
<strong>9999579111 or 9999579222</strong>
280+
</div>
281+
</div>
282+
</div>
283+
235284
<div class="border-card b-orange p-4 mb-4">
236285
<div class="row justify-content-between align-items-center no-gutters">
237286
<div class="flex-1 pr-3">

sass/styles/_components.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
@import "components/img-review-card.scss";
1515
@import "components/events-page.scss";
1616
@import "components/label-card.scss";
17-
@import "components/indicator.scss";
17+
@import "components/indicator.scss";
18+
@import "components/backdrop.scss";

sass/styles/components/backdrop.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.backdrop {
2+
z-index: 1;
3+
position: relative;
4+
display: inline-block;
5+
margin: 0 1.5rem;
6+
7+
&:before {
8+
content: "";
9+
z-index: 0;
10+
position: absolute;
11+
height: calc(100% + 2rem);
12+
width: calc(100% + 3rem);
13+
left: -1.5rem;
14+
top: -1rem;
15+
border-radius: 10px;
16+
background: $light-grey;
17+
opacity: 0.3;
18+
}
19+
}

sass/styles/components/live-classes.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,10 @@
5656
}
5757
}
5858
}
59+
60+
.victory-vector {
61+
position: absolute;
62+
bottom: 2rem;
63+
right: 2rem;
64+
}
5965
}

sass/styles/objects/buttons.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,16 @@
128128
}
129129
}
130130

131+
&.button-white {
132+
border: solid 1px $white;
133+
color: $white;
134+
135+
&:hover {
136+
background: $white;
137+
color: $dark-grey !important;
138+
}
139+
}
140+
131141
&.disabled,
132142
&:disabled {
133143
border-color: $faded-text !important;

0 commit comments

Comments
 (0)