Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ <h4>Upload an image</h4>
<div class="form-container">
<form action="/service" method="post" accept-charset="utf-8">
<input class="msbtn" type="file" name="file" id="file" value="" />
<p><button class="msbtn submit" type="submit">Continue →</button></p>
<p>
<a href="javascript:void(0)" class="msbtn submit" >Continue →</a>
<a href="javascript:void(0)" class="msbtn resubmit" >reGlitch →</a>
</p>
</form>
</div>
</section>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "GPL3",
Expand All @@ -13,7 +13,7 @@
"data-uri-to-buffer": "0.0.3",
"express": "^4.8.2",
"glitch-jpg": "^1.0.3",
"nconf": "^0.6.9",
"nconf": "^0.6.9"
},
"devDependencies": {
"nodemon": "^1.2.1"
Expand Down
15 changes: 11 additions & 4 deletions public/css/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
body {
background: url('../noise.png');
background-size: cover;
width: 100%;
margin: 0;
font-family: monospace, sans-serif;
Expand All @@ -23,18 +25,23 @@ img {
}

.msbtn {
text-decoration: none;
color: black;
margin-bottom: 10px;
padding: 4px;
border-radius: 2px;
border-bottom: 2px solid #000;
border-right: 2px solid #000;
border-top: 2px solid #FFF;
border-right: 2px solid #000; border-top: 2px solid #FFF;
background: #EBE8D9;
border-left: 2px solid #FFF;
}

.ms-btn:first-letter {
text-decoration: underline;
.msbtn::first-letter {
text-decoration: underline !important;
}

.resubmit {
display: none;
}

.kill {
Expand Down
Loading