Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
todd404 committed Apr 15, 2018
1 parent 752a0c5 commit 7f9d273
Show file tree
Hide file tree
Showing 10 changed files with 18,587 additions and 17 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.idea/
6 changes: 3 additions & 3 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"globals": {
"$" : true,
"window" : true,
"document": true
"$" : false,
"window" : false,
"document": false
},
"strict" : false,
"curly" : true,
Expand Down
14 changes: 14 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
html{
width: 100%; height: 100%;
}

body{
width: 100%; height: 100%;
}

.open_button{
width: 30%;

border-radius: 50%;
background-color: red;
}
18 changes: 18 additions & 0 deletions assets/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>UI</title>
<link rel="stylesheet" href="./css/index.css">
<script src="js/jquery-3.3.1.js"></script>
<script src="./js/bundle.js"></script>
</head>

<body>
<div class="open_button"></div>
<div class="manage_button"></div>
<div class="password_button"></div>
</body>
</html>
1 change: 1 addition & 0 deletions assets/js/bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file removed assets/js/index.js
Empty file.
Loading

0 comments on commit 7f9d273

Please sign in to comment.