-
Notifications
You must be signed in to change notification settings - Fork 1
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
AsianPsychoBoy
committed
Dec 17, 2016
1 parent
4545ace
commit bcf4753
Showing
6 changed files
with
86 additions
and
24 deletions.
There are no files selected for viewing
16 changes: 13 additions & 3 deletions
16
src/app/scheduling/display-session/display-session.component.html
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,13 @@ | ||
<p> | ||
display-session works! | ||
</p> | ||
<div class="card"> | ||
<div class="view overlay hm-white-slight"> | ||
<img class="img-fluid" [src]="session.tutor.pfp"> | ||
<a (click)="joinSession()"> | ||
<div class="mask"></div> | ||
</a> | ||
</div> | ||
<div class="card-block"> | ||
<h4 class="card-title">{{ session.title }}</h4> | ||
<p class="card-text">{{ session.desc }}</p> | ||
<button (click)="joinSession()" class="btn btn-primary">Join Session</button> | ||
</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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.card { | ||
img { | ||
height: 300px | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.session-display { | ||
display: flex; | ||
justify-content: flex-start; | ||
flex-wrap: wrap; | ||
padding: 15px; | ||
div { | ||
margin: 15px; | ||
} | ||
} |
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