Skip to content

Commit cabc6af

Browse files
authored
Merge pull request #448 from BipinKalra/eligibility_test
Eligibility test
2 parents 4e2db7f + f667705 commit cabc6af

File tree

7 files changed

+415
-3
lines changed

7 files changed

+415
-3
lines changed

examples/views/index.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="dashboard-cards.html">dashboard-cards</a></div>
8989
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="dashboard-carousel-cards.html">dashboard-carousel-cards</a></div>
9090
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="dashboard-stats-card.html">dashboard-stats-card</a></div>
91+
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="eligibility-test-modals.html">eligibility-test-modals</a></div>
9192
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="goodies-card.html">goodies-card</a></div>
9293
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="hiring-index.html">hiring-index</a></div>
9394
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="home.html">home</a></div>

examples/views/layouts/default.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link href="stylesheets/account.css" rel="stylesheet">
88
<link href="stylesheets/hb.css" rel="stylesheet">
99
<link href="stylesheets/hiringblocks.css" rel="stylesheet">
10-
<link href="stylesheets/coding-blocks.css" rel="stylesheet">
10+
{{!-- <link href="stylesheets/coding-blocks.css" rel="stylesheet"> --}}
1111
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,700,800" rel="stylesheet">
1212
<link href="https://minio.codingblocks.com/motley/Gilroy.ttf" rel="stylesheet">
1313
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">

examples/views/online-cb/eligibility-test-modals.hbs

Lines changed: 400 additions & 0 deletions
Large diffs are not rendered by default.

sass/styles/applications/online-cb/_application.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
@import "form-input.scss";
1414
@import "hamburger-nav.scss";
1515
@import "img-card.scss";
16+
@import "divided-list-horizontal.scss";
1617
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.divided-list {
2+
& > * {
3+
&:not(:last-child) {
4+
border-right: solid 1px $hover-grey;
5+
}
6+
}
7+
}

sass/styles/settings/settings.color.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ $grey: #a2a4a8;
3535
$dark-grey: #666;
3636
$border-grey: #2b2f37;
3737
$del-text-grey: #e7dddd;
38+
$pink: #f24f60;
3839

3940
$facebook: #3b5998;
4041
$google: #f4695a;
@@ -191,6 +192,7 @@ $bg-color-list: (
191192
"blue": $blue,
192193
"white": $white,
193194
"yellow": $yellow,
195+
"pink": $pink,
194196
"grey": $grey,
195197
"light-grey": $light-grey,
196198
"dark-grey": $interview-grey,
@@ -210,7 +212,7 @@ $text-color-list: (
210212
"yellow": $yellow,
211213
"grey": $grey,
212214
"purple": $purple,
213-
"pink": $dcb-pink,
215+
"pink": $pink,
214216
"med-grey": $faded-text,
215217
"dark-grey": $dark-grey,
216218
"del-text-grey": $del-text-grey,

sass/styles/utilities/border.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
('black', $black),
2525
('orange', $orange),
2626
('white', $white),
27-
('orange', $orange) {
27+
('orange', $orange),
28+
('pink', $pink) {
2829
.b-#{$type} {
2930
border-color: $color !important;
3031
}

0 commit comments

Comments
 (0)