Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion assets/css/starter.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
* {box-sizing: border-box;}
html { height: 100%; }
body { min-height: 100%; }
body { background: #f5f5f5; color: #555; font-family: Avenir, "Helvetica neue", sans-serif; display: flex; flex-direction: column; margin:0; width: 100%; }
body { background: #f5f5f5; color: #555; font-family: Avenir, "Helvetica neue", sans-serif; display: flex; flex-direction: column; padding: 1rem 0 0 1rem; width: 100%; }

.qs-wrapper { margin: 0; }

.qs-logo { height: 120px; width: 120px; background: url(http://i.imgur.com/XDaaJqX.png); background-size: 120px 120px; margin: 0.8rem 0; }

.qs-nav-bar { display: flex; flex-direction: row; margin-bottom: 0.8rem; }

.qs-nav-btn { margin-right: 10px; padding: 0px 10px; border: 1px solid #555 ; border-radius: 4px; }

.qs-flappy { margin-top: 1rem; width: 80px; }


16 changes: 16 additions & 0 deletions programs/quickstart.eve
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
This will be where you write your web app for the quickstart!
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would just add a header, since some people at the meetup were editing in markdown editors.


As you add blocks of code from the quickstart guide, remember to include code fences (```)! Eve programs are written as comments with bits of code embedded inside it, so none of this prose here will be run as Eve code. They're just for you to read.

Eve code looks like this:


```
// Only things in between the code fences are counted as code, and everything between a set of code fences is one block.
```

~~~
// Tildes can be used for code fences too :)
~~~

Add your first block below: