-
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
Nick Schaubeck
committed
Nov 12, 2015
1 parent
dafcd67
commit 066ea87
Showing
8 changed files
with
209 additions
and
11 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title></title> | ||
<title></title> | ||
</head> | ||
<body> | ||
<script src="components/bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> | ||
<link rel="import" href="hacker-card.html"> | ||
<hacker-card></hacker-card> | ||
<script src="components/bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> | ||
<link rel="import" href="hacker-card.html"> | ||
|
||
<hacker-card user-name='MGerrior'></hacker-card> | ||
</body> | ||
</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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "hacker_card", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"superagent": "^1.4.0" | ||
} | ||
} |
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,79 @@ | ||
.user-photo, .user-avatar { | ||
border-radius: 50%; } | ||
|
||
.user-entry { | ||
text-align: center; | ||
} | ||
|
||
.entry-body h5 { | ||
font-weight: bold; | ||
} | ||
|
||
.entry-body p { | ||
color: rgb(87, 85, 83); | ||
font-family: 'Helvetica Neue', sans-serif; | ||
font-size: 14px; | ||
font-style: italic; | ||
font-weight: normal; | ||
} | ||
|
||
.user-entry, .user-entry:hover, .user-entry:active, .user-entry:focus { | ||
border-color: #b3b3b3; | ||
box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.4); | ||
} | ||
|
||
.user-entry header { | ||
height: 70px; | ||
background-image: url(/devpost-reversed-rgb.svg); | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
background-color: #003E54; | ||
} | ||
|
||
.user-entry .entry-body h4 { | ||
margin-top: 0.5em; | ||
} | ||
|
||
.user-entry footer { | ||
background-color: #f0f0f0; | ||
padding: 6px; | ||
} | ||
|
||
.user-entry footer .count { | ||
display: inline-block; | ||
width: 32%; | ||
font-size: 0.6875em; | ||
color: #999794; | ||
} | ||
|
||
.user-entry footer .count span { | ||
font-weight: bold; | ||
color: #1a1918; | ||
font-size: 1rem; | ||
} | ||
|
||
.user-entry .user-photo { | ||
background: white; | ||
margin: 0 auto; | ||
height: 90px; | ||
width: 90px; | ||
margin-top: -52px; | ||
border: 3px solid white; | ||
} | ||
|
||
.user-entry .follow-button-wrapper { | ||
min-height: 1.5em; | ||
margin-bottom: 0.3em; | ||
} | ||
|
||
.hacker-card { | ||
cursor: pointer; | ||
max-width: 270px; | ||
font-family: 'HelveticaNeue', sans-serif; | ||
} | ||
|
||
.hacker-tile { | ||
cursor: pointer; | ||
max-width: 300px; | ||
font-family: 'HelveticaNeue', sans-serif; | ||
} |