Skip to content

Commit

Permalink
Fixed conflicting username.
Browse files Browse the repository at this point in the history
  • Loading branch information
pents90 committed Feb 7, 2014
2 parents dd21bce + 2942f4f commit bd597d0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 21 deletions.
5 changes: 3 additions & 2 deletions config/userlist.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
module.exports = {
users: [
users: [ // ADD YOUR USERNAME AT THE TOP
'megamattron',
'pents90',
'michaelnovakjr',
'markbao',
'kalmi'
'kalmi',
'lablayers'
]
};
41 changes: 22 additions & 19 deletions views/404.jade
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
doctype html
html
head
title The page you were looking for doesn't exist (404)
title 404 Not Found
style.
@import url("//fonts.googleapis.com/css?family=Lato:400,700,900,400italic");
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
font-family: "Lato", arial, sans-serif;
}
div.dialog {
width: 25em;
Expand All @@ -19,28 +20,30 @@ html
border-top: #8CC84B solid 4px;
border-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
overflow: hidden;
}
h1 {
font-size: 100%;
font-size: 40px;
color: #480;
line-height: 1.5em;
line-height: 1em;
}
body > p {
width: 33em;
margin: 0 auto 1em;
p {
padding: 0 1em 1em 1em;
}
a {
background: #8CC84B;
color: white;
padding: 1em 0;
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-color: #DADADA;
color: #666;
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
text-decoration: none;
display: block;
width: 100%
}
::selection {
background: #8CC84B;
color: white;
}
body
.dialog
h1 404 Not Found
p The page you were looking for doesn't exist.
h1 You Found Me!
p I'm pretty sure that this is the page you're looking for if you're trying to get lost in the jungle of links.
a(href='http://pullup.herokuapp.com/') Back to Recent News

0 comments on commit bd597d0

Please sign in to comment.