Skip to content

Commit

Permalink
Initial commit πŸš€
Browse files Browse the repository at this point in the history
  • Loading branch information
toddmotto committed Jun 7, 2019
0 parents commit afc7ac4
Show file tree
Hide file tree
Showing 18 changed files with 10,954 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
16 changes: 16 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,16 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {}
}
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
node_modules
dist/*
15 changes: 15 additions & 0 deletions README.md
@@ -0,0 +1,15 @@
<h1 align="center">
<img width="40" valign="bottom" src="https://ultimatecourses.com/wp-content/themes/storefront-child/assets/images/topic/javascript.svg">
JavaScript Basics: Starter Project
</h1>
<h4 align="center">Starter Project for the Ultimate Courses JavaScript Basics course.</h4>

---

<div align="center">
<a href="https://ultimatecourses.com/courses/javascript" target="_blank"><img width="100%" src="https://ultimatecourses.com/assets/img/banners/ultimate-javascript-leader.svg"></a>
</div>

---

Members, please refer to the [course setup](https://ultimatecourses.com/course/javascript-basics) instructions to get started!
82 changes: 82 additions & 0 deletions assets/css/style.css
@@ -0,0 +1,82 @@
@font-face {
font-family: 'Geomanist';
src: url('../fonts/geomanist/geomanist-book.eot');
src: url('../fonts/geomanist/geomanist-book.eot?#iefix')
format('embedded-opentype'),
url('../fonts/geomanist/geomanist-book.woff2') format('woff2'),
url('../fonts/geomanist/geomanist-book.woff') format('woff'),
url('../fonts/geomanist/geomanist-book.ttf') format('truetype'),
url('../fonts/geomanist/geomanist-book.svg#geomanist-book') format('svg');
font-weight: normal;
font-style: normal;
}

html,
body {
padding: 0;
margin: 0;
}

html {
font-family: 'Geomanist';
font-size: 62.5%;
font-weight: normal;
letter-spacing: 0.2px;
color: #545e6f;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
background: #f1f2f5;
}

.header {
background: #451771;
padding: 20px 25px;
}

.logo {
display: flex;
justify-content: center;
}

.logo-ultimate {
height: 30px;
width: 30px;
background: url('../img/ultimate.svg') no-repeat center center;
background-size: contain;
}

.logo-name {
margin: 0 0 0 14px;
line-height: 30px;
font-size: 1.6rem;
color: #fff;
}

.header-logo img {
height: 100%;
}

#app {
padding-top: 50px;
text-align: center;
}

#app h1 {
margin: 0;
font-size: 3rem;
}

#app h1:before {
content: '';
background: url('../img/javascript.svg') no-repeat center center;
background-size: contain;
width: 34px;
height: 34px;
display: inline-block;
margin-right: 14px;
position: relative;
top: 6px;
}
Binary file added assets/fonts/geomanist/geomanist-book.eot
Binary file not shown.
2,391 changes: 2,391 additions & 0 deletions assets/fonts/geomanist/geomanist-book.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/fonts/geomanist/geomanist-book.ttf
Binary file not shown.
Binary file added assets/fonts/geomanist/geomanist-book.woff
Binary file not shown.
Binary file added assets/fonts/geomanist/geomanist-book.woff2
Binary file not shown.
Binary file added assets/img/favicon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/javascript.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/img/ultimate.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions index.html
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Ultimate Courses</title>
</head>
<body>
<header class="header">
<div class="logo">
<div class="logo-ultimate"></div>
<p class="logo-name">Ultimate Courses<span>&trade;</span></p>
</div>
</header>
<div id="app"></div>
</body>
</html>

0 comments on commit afc7ac4

Please sign in to comment.