Skip to content

Commit

Permalink
landing page started
Browse files Browse the repository at this point in the history
  • Loading branch information
BipinKalra committed Jul 13, 2020
1 parent 4b7dc04 commit 5db1a8b
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 4 deletions.
Binary file not shown.
Binary file added examples/public/fonts/Muli-VariableFont_wght.ttf
Binary file not shown.
16 changes: 16 additions & 0 deletions examples/views/coding-blocks/landing-page_main.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div class="a-cbm">
<div class="landing-page">
<div class="landing-page__section">
<div class="row">
<div class="col-6">
<div class="heading-font extra-bold">
WELCOME TO
</div>
</div>
</div>
</div>
<div class="landing-page__section">

</div>
</div>
</div>
2 changes: 1 addition & 1 deletion examples/views/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="home-vh">
<div class="row no-gutters">
<div class="col-sm-3 pb-4 position-relative border-right" style="height: calc(100vh - 70px); overflow-y: scroll">
<h2 class="position-sticky bg-white p-4">Views</h2>
<h2 class="position-sticky bg-white p-4 tr">Views</h2>
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="n-account-address.html">n-account-address</a></div>
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="n-account-application.html">n-account-application</a></div>
<div class="py-2 px-4 text-ellipses"><a target="preview" class="font-sm" href="n-account-client.html">n-account-client</a></div>
Expand Down
2 changes: 1 addition & 1 deletion file-list-gen.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ html = `
<div class="home-vh">
<div class="row no-gutters">
<div class="col-sm-3 pb-4 position-relative border-right" style="height: calc(100vh - 70px); overflow-y: scroll">
<h2 class="position-sticky bg-white p-4">Views</h2>
<h2 class="position-sticky bg-white p-4 tr">Views</h2>
${fileListViews}
</div>
<div class="col-sm-9 p-4">
Expand Down
1 change: 1 addition & 0 deletions sass/styles/applications/coding-blocks/_application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
@import "heading.scss";
@import "font.scss";
@import "color.scss";
@import "landing-page.scss";
}
19 changes: 19 additions & 0 deletions sass/styles/applications/coding-blocks/landing-page.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.landing-page {
color: $white;

.heading-font {
font-size: 4.142rem;
}

&__section {
padding: 7.142rem;

&:nth-child(2n-1) {
background: $grey-dark-2;
}

&:nth-child(2n) {
background: $black;
}
}
}
4 changes: 2 additions & 2 deletions sass/styles/applications/coding-blocks/settings/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

// Neutral colors
$black: #08090c;
$grey-dark-2: #191d24;
$grey-dark-2: #15171e;
$grey-dark-1: #2a2f3c;
$grey: #3b4254;
$grey-light-1: #cccccc;
$grey-light-1: #d6d6d6;
$grey-light-2: #e0e0e0;
$grey-light-3: #f5f5f5;

Expand Down

0 comments on commit 5db1a8b

Please sign in to comment.