-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ami Wang
committed
Mar 20, 2016
1 parent
8229dbf
commit ea668cd
Showing
6 changed files
with
118 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from 'angular2/core'; | ||
|
||
const HTML = require('../views/pokemon.html'); | ||
|
||
@Component({ | ||
selector: 'pokemon', | ||
template: HTML | ||
}) | ||
export class PokemonComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
$font-primary: 'Alegreya Sans', 'Helvetica', sans-serif; | ||
$font-secondary: 'Montserrat', 'Helvetica', sans-serif; | ||
|
||
$brand-primary: #ffcb05; | ||
$brand-primary: #ffd924; | ||
$brand-primary-light: lighten($brand-primary, 20%); | ||
$brand-secondary: #18447d; | ||
$brand-secondary-dark: darken($brand-secondary, 7%); | ||
$light-gray: #f1f1f1; | ||
|
||
$pokemon-box-size: 110px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,33 @@ | ||
<hr> | ||
<p>this is a dex box</p> | ||
<h1>001 - 030</h1> | ||
<div class="box-container"> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="captured disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="captured disabled"></pokemon> | ||
<pokemon class="captured disabled"></pokemon> | ||
<pokemon class="captured disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon class="disabled"></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
<pokemon class="captured"></pokemon> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h4>Fletchinder</h4> | ||
<img src="http://cdn.bulbagarden.net/upload/e/ec/001MS.png"> | ||
<p>#001</p> |