-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
14 changed files
with
117 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin: 200px; | ||
margin: 5vw; | ||
} | ||
|
||
.icon { | ||
|
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 +1,10 @@ | ||
<p>It works</p> | ||
<div class="container"> | ||
<div class="header"> | ||
<img src="assets/default-user.svg" class="avatar" /> | ||
<div> | ||
<h1 class="title">Kanban Board of Foo Bar</h1> | ||
<h2 class="subtitle">[email protected]</h2> | ||
</div> | ||
</div> | ||
<app-board-list [boards]="boards"></app-board-list> | ||
</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 |
---|---|---|
@@ -1 +1,24 @@ | ||
/* Empty */ | ||
.container { | ||
margin: 30px; | ||
} | ||
|
||
.header { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.avatar { | ||
margin-right: 10px; | ||
border-radius: 50%; | ||
max-height: 60px; | ||
} | ||
|
||
.title { | ||
margin-bottom: 0; | ||
} | ||
|
||
.subtitle { | ||
margin-top: 0; | ||
font-size: medium; | ||
color: gray; | ||
} |
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,3 +1,19 @@ | ||
<header> | ||
<h1>This is the Home Page</h1> | ||
</header> | ||
<div class="layout header"> | ||
<img class="logo" src="assets/app-logo.png" /> | ||
<h1>Welcome to Kanban 看板</h1> | ||
<p> | ||
The Kanban storyboard app inspired by Trello. <br /> | ||
Based on the course by | ||
<a href="https://fireship.io/courses/angular/">Fireship</a>. | ||
</p> | ||
<p>Built with Angular and Firebase 🔥.</p> | ||
<button routerLink="/login" mat-raised-button color="primary"> | ||
Sign up for Free | ||
</button> | ||
</div> | ||
<div class="layout"> | ||
<h1>Play with the demo!</h1> | ||
<div class="demo-board-container"> | ||
<mat-card><app-demo-board></app-demo-board></mat-card> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,3 +1,17 @@ | ||
header { | ||
text-align: center; | ||
.layout { | ||
max-width: 80vw; | ||
margin: 5vh auto; | ||
} | ||
|
||
.logo { | ||
max-height: 200px; | ||
} | ||
|
||
.header { | ||
min-height: 20vh; | ||
} | ||
|
||
.demo-board-container { | ||
display: flex; | ||
justify-content: center; | ||
} |
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
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 |
---|---|---|
|
@@ -7,8 +7,7 @@ | |
} | ||
|
||
mat-card { | ||
min-width: 150px; | ||
max-width: 500px; | ||
width: 100%; | ||
margin: 100px auto; | ||
margin: 5vw auto; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.