Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
naelstrof committed Mar 14, 2016
0 parents commit 8a522b3
Show file tree
Hide file tree
Showing 16 changed files with 3,260 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dub.sdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name "omnichem"
description "A simple application help you burn your eyebrows."
copyright "Copyright © 2016, naelstrof"
homepage "http://naelstrof.com"
authors "naelstrof"
dependency "vibe-d" version="~>0.7.23"
versions "VibeDefaultMain"
11 changes: 11 additions & 0 deletions dub.selections.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"fileVersion": 1,
"versions": {
"memutils": "0.4.4",
"vibe-d": "0.7.28",
"libevent": "2.0.1+2.0.16",
"libev": "5.0.0+4.04",
"openssl": "1.1.4+1.0.1g",
"libasync": "0.7.8"
}
}
Binary file added omnichem
Binary file not shown.
Binary file added public/images/brand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/mixer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/scripts/bootstrap.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions public/scripts/filter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$('#search').keyup( function() {
var valThis = $(this).val();
$('tbody>tr').each(function(){
var text = $(this).text().toLowerCase();
(text.indexOf(valThis) != -1) ? $(this).show() : $(this).hide();
});
});
4 changes: 4 additions & 0 deletions public/scripts/jquery.min.js

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions public/styles/application.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.brand {
height: 42px;
padding-top: 10px;
}

.search {
height: 42px;
padding-top: 15px;
}

.brand-image {
background: url(../images/mixer.gif) left top;
width: 32px;
height: 32px;
margin-top: 5px;
display: block;
float: left;
}

.brand-text {
background: url(../images/brand.png);
width: 297px;
height: 42px;
margin-bottom: 10px;
display: block;
float: left;
}
5 changes: 5 additions & 0 deletions public/styles/bootstrap.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 8a522b3

Please sign in to comment.