-
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.
styles all of the existing pages. looking good, me!
- Loading branch information
1 parent
945122c
commit 63c1a13
Showing
20 changed files
with
136 additions
and
82 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
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
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,13 @@ | ||
#discover-hero { | ||
font-size: 72px; | ||
@include super-center(); | ||
} | ||
|
||
.cloud { | ||
|
||
.picture { | ||
position: absolute; | ||
height: 200px; | ||
width: 200px; | ||
} | ||
} |
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,24 +1,13 @@ | ||
.feed { | ||
|
||
// @for $i from 1 through 100 { | ||
// #picture-#{$i} { | ||
// position: absolute; | ||
// top: random(500) + px; | ||
// left: random(1000) + px; | ||
// right: random(1000) + px; | ||
// bottom: random(1000) + px; | ||
// z-index: $i; | ||
|
||
// img { | ||
// height: 200px; | ||
// width: 200px; | ||
// } | ||
// } | ||
// } | ||
|
||
.picture { | ||
position: absolute; | ||
height: 200px; | ||
width: 200px; | ||
margin-top: 40px; | ||
padding-top: 10px; | ||
background-color: rgba(6, 82, 255, .5); | ||
width: 510px; | ||
|
||
.media { | ||
padding-left: 10px; | ||
} | ||
} | ||
} |
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,22 @@ | ||
#form { | ||
|
||
h1 { | ||
font-size: 72px; | ||
} | ||
|
||
label { | ||
color: $blue; | ||
font-family: $main-text; | ||
font-size: 36px; | ||
} | ||
|
||
input { | ||
@include glitch-form; | ||
} | ||
|
||
@include placeholder-change($blue); | ||
|
||
button { | ||
@include glitch-button; | ||
} | ||
} |
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,19 @@ | ||
html, body { | ||
overflow-x: hidden; | ||
} | ||
|
||
.user-show { | ||
position: relative; | ||
padding: 25px; | ||
background-color: $blue-steel-clear; | ||
z-index: 9999; | ||
} | ||
|
||
.grid { | ||
margin-top: 30px; | ||
.picture { | ||
display: inline-block; | ||
width: 195px; | ||
height: 195px; | ||
} | ||
} |
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,2 @@ | ||
<h1>Every picture is made up of a thousand tiny pixels</h1> | ||
<h1 id="discover-hero">Every picture is made up of a thousand tiny pixels</h1> | ||
<gl-picture-grid></gl-picture-grid> |
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,4 +1 @@ | ||
<h1> Please Log In W/ Your Deets</h1> | ||
<div class="row"> | ||
<gl-login-form></gl-login-form> | ||
</div> | ||
<gl-login-form></gl-login-form> |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
<div ng-repeat="picture in PictureCtrl.pictures"> | ||
<div class ="grid-picture"> | ||
<img ng-src="{{picture.medium_url}}"/> | ||
<div class="word-wrap"> | ||
<h1><a href="#/pictures/{{picture.id}}">{{ picture.caption }}</a></h1> | ||
<div class="row cloud"> | ||
<div ng-repeat="picture in PictureCtrl.pictures" > | ||
<img class="picture" data-id="{{picture.id}}" ng-src="{{picture.large_url}}" gl-cloud-picture /> | ||
</div> | ||
</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
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
<h1>Howdy doodee</h1> | ||
<div class ="user-show"> | ||
<img ng-src="{{UserCtrl.user.profile_url}}"/> | ||
<div class="word-wrap"> | ||
<h1>{{ UserCtrl.user.username}}</h1> | ||
<p>{{ UserCtrl.user.bio}}</p> | ||
<div class="row"> | ||
<div class ="user-show"> | ||
<div class="media"> | ||
<div class="media-left"> | ||
<img ng-src="{{UserCtrl.user.profile_url}}"/> | ||
</div> | ||
<div class="media-body"> | ||
<h1>{{ UserCtrl.user.username}}</h1> | ||
<p>{{ UserCtrl.user.bio}}</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="row grid"> | ||
<img ng-repeat="picture in UserCtrl.user.pictures"class="picture" data-id="{{picture.id}}" ng-src="https://s3.amazonaws.com/testbucketfoshosies/large/{{picture.id}}/{{picture.image_file_name}}" /> | ||
</div> |