-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working vertical audio transformation and small view screen
- Loading branch information
Showing
6 changed files
with
54 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,19 @@ | ||
.rootContainer { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
.header { | ||
width: 100%; | ||
} | ||
|
||
.header mat-card { | ||
width: 100%; | ||
} | ||
body { | ||
display: block; | ||
margin: 0; | ||
width: 100%; | ||
} | ||
|
||
.title { | ||
font-size: 1.5rem; | ||
} | ||
.slogan { | ||
font-size: .75rem; | ||
} | ||
|
||
.titleBox { | ||
display: inline-block; | ||
padding-right: 20px; | ||
border-right: 2px solid white; | ||
} | ||
text-align: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
<div class="rootContainer"> | ||
<mat-card class="header"> | ||
<div class="titleBox"> | ||
<span class="title">Hot Cakes & Hot Takes</span><br/> | ||
<span class="slogan">The premier post-pancake podcast</span> | ||
</div> | ||
</mat-card> | ||
<app-episodes></app-episodes> | ||
</div> | ||
|
||
|
||
<mat-card class="header"> | ||
<div class="titleBox"> | ||
<span class="title">Hot Cakes & Hot Takes</span><br/> | ||
<span class="slogan">The premier post-pancake podcast</span> | ||
</div> | ||
</mat-card> | ||
<app-episodes></app-episodes> | ||
|
||
|
||
|
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,19 +1,15 @@ | ||
<div class="wrapper"> | ||
<div id="episodeViewContainer" class="episodeViewContainer"> | ||
<mat-card id="audioPanel" class="audioPanel"> | ||
<button class="closeBtn" (click)="close()">X</button> | ||
<div class="title"> I am the audio{{selectedEpisode.title}} </div><br/> | ||
<div class="description"> {{selectedEpisode.summary}}</div><br/> | ||
<audio controls src="{{selectedEpisode.audio}}" type="audio/mpeg"></audio> | ||
</mat-card> | ||
<mat-card class="episodes"> | ||
<mat-card class="episodeCard" *ngFor="let episode of episodes" (click)="setSelected(episode)"> | ||
<mat-card-header></mat-card-header> | ||
<img mat-card-image src="{{episode.img}}"> | ||
<mat-card-footer> | ||
<mat-card-title> {{episode.number}} </mat-card-title> | ||
</mat-card-footer> | ||
</mat-card> | ||
</mat-card> | ||
</div> | ||
</div> | ||
<mat-card id="audioPanel" class="audioPanel"> | ||
<button class="closeBtn" (click)="close()">X</button> | ||
<div class="title">{{selectedEpisode.title}} </div><br/> | ||
<audio controls src="{{selectedEpisode.audio}}" type="audio/mpeg"></audio> | ||
</mat-card> | ||
<mat-card class="episodes"> | ||
<mat-card class="episodeCard" *ngFor="let episode of episodes" (click)="setSelected(episode)"> | ||
<mat-card-header></mat-card-header> | ||
<img mat-card-image src="{{episode.img}}"> | ||
<mat-card-footer> | ||
<mat-card-title> {{episode.number}} </mat-card-title> | ||
</mat-card-footer> | ||
</mat-card> | ||
</mat-card> | ||
|
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