Skip to content

Commit

Permalink
Merge pull request PaystackHQ#1 from PaystackHQ/feature/boilerplate
Browse files Browse the repository at this point in the history
Feature/boilerplate
  • Loading branch information
fathermerry authored Jan 17, 2019
2 parents 9b19381 + 4e13494 commit 5f279c9
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
css
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nigeria Logos</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions scss/abstracts/_colors.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$col-green-1: #06DAAF;
$col-green-2: #F8FFFD;

$col-grey-1: #576F7F;
$col-grey-2: #74848A;
$col-grey-3: #C4C4C4;
$col-grey-4: #F9F9F9;

$col-white: #FFFFFF;
2 changes: 2 additions & 0 deletions scss/abstracts/_typography.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
$ff-main: 'Poppins', sans-serif;

Empty file added scss/base/_resets.scss
Empty file.
7 changes: 7 additions & 0 deletions scss/base/_typography.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500');

body{
font-family: $ff-main;
line-height: normal;
color: $col-grey-1;
}
5 changes: 5 additions & 0 deletions scss/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@import 'abstracts/colors';
@import 'abstracts/typography';

@import 'base/resets';
@import 'base/typography';

0 comments on commit 5f279c9

Please sign in to comment.