-
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.
- Loading branch information
1 parent
155737c
commit 57802ec
Showing
9 changed files
with
64 additions
and
14 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,39 @@ | ||
//::::VARS::::// | ||
|
||
$brand-primary: #910a05; | ||
$brand-secondary: #444; | ||
$brand-accent: #dc830c; | ||
$black: #000; | ||
$white: #fff; | ||
$base-pad: 1% 2%; | ||
$btn-margin: .5%; | ||
$title-font: 'Nova Square', cursive; | ||
$small-font: 'Squada One', cursive; | ||
|
||
//::::MIXINS::::// | ||
@mixin txtBig { | ||
font-family: $title-font; | ||
color: $black; | ||
font-size: 3vw; | ||
} | ||
|
||
@mixin txtSmall { | ||
font-family: $small-font; | ||
color: #fff; | ||
font-size: 2vw; | ||
} | ||
//::::STYLES::::// | ||
.return-btn{ | ||
margin: 2% 5%; | ||
} | ||
|
||
.vp-li { | ||
@include txtSmall; | ||
display: block; | ||
margin: 2% 5%; | ||
} | ||
|
||
.game-names { | ||
@include txtSmall; | ||
color: $brand-accent; | ||
} |
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,13 +1,13 @@ | ||
<a href="/#!/home">← return to feed</a> | ||
<section> | ||
<div ng-if="!viewPostCtrl.showEditPost"> | ||
<h2> this is the post: {{ viewPostCtrl.post.title }}</h2> | ||
<ul> | ||
<li>Host: {{ viewPostCtrl.post.host }}</li> | ||
<li>Players: {{ viewPostCtrl.post.groupSize }}</li> | ||
<li>Game: {{ viewPostCtrl.post.game }}</li> | ||
<li>Platform: {{ viewPostCtrl.post.platform }}</li> | ||
<li>From {{ viewPostCtrl.post.startTime }} until {{ viewPostCtrl.post.endTime }}</li> | ||
<h2 class="page-tit">{{ viewPostCtrl.post.title }}</h2> | ||
<a href="/#!/home" class="return-btn">← return to feed</a> | ||
<ul class="gamer-tags"> | ||
<li class="vp-li">Host: {{ viewPostCtrl.post.host }}</li> | ||
<li class="vp-li">Players: {{ viewPostCtrl.post.groupSize }}</li> | ||
<li class="vp-li">Game: {{ viewPostCtrl.post.game }}</li> | ||
<li class="vp-li">Platform: {{ viewPostCtrl.post.platform }}</li> | ||
<li class="vp-li">From {{ viewPostCtrl.post.startTime }} until {{ viewPostCtrl.post.endTime }}</li> | ||
</ul> | ||
</div> | ||
</section> |
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 |
---|---|---|
|
@@ -38,3 +38,7 @@ $small-font: 'Squada One', cursive; | |
margin: $base-pad; | ||
color: #black; | ||
} | ||
|
||
.update-button { | ||
display: block; | ||
} |
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
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