forked from jce-il/project-template
-
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
Showing
20 changed files
with
600 additions
and
46 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
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,10 +1,26 @@ | ||
table, th, td { | ||
border: 1px solid black; | ||
} | ||
table { | ||
width: 100%; | ||
td:hover { | ||
background-color: yellow; | ||
} | ||
|
||
th { | ||
height: 50px; | ||
} | ||
input | ||
{ | ||
height:100%; | ||
width:100%; | ||
} | ||
button.manage_users_btn | ||
{ | ||
height:100%; | ||
} | ||
|
||
div.top_buttons_div | ||
{ | ||
background-color: red; | ||
} | ||
|
||
div.table_div | ||
{ | ||
background-color: orange; | ||
} |
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
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,9 @@ | ||
div.top_buttons_div | ||
{ | ||
background-color: red; | ||
} | ||
|
||
div.form_div | ||
{ | ||
background-color: green; | ||
} |
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,25 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<!--jquery loading file--> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | ||
<!--END of jquery loading file--> | ||
|
||
<!--Google Firebase API loading files--> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-app.js"></script> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-auth.js"></script> | ||
<script src="https://www.gstatic.com/firebasejs/3.7.1/firebase-database.js"></script> | ||
<!--END of Google Firebase API loading files--> | ||
|
||
<!--Loaded a personal script to combine API's as well as page design and logic initate--> | ||
<script src="../config.js"></script> | ||
<script src="script.js"></script> | ||
<link rel='stylesheet' href='style.css' /> | ||
<!--END of Loaded a personal script to combine API's as well as page design and logic initate--> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.