-
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
Ryan Torok
committed
Sep 9, 2018
1 parent
41b92c5
commit e7e5f8c
Showing
8 changed files
with
291 additions
and
319 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
public_html/jquery | ||
.idea |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,64 @@ | ||
#titleBar { | ||
background: black; | ||
margin-top: -3em; | ||
margin-left: -.5em; | ||
margin-right: -.5em; | ||
padding-top: .25em; | ||
padding-bottom: .25em; | ||
} | ||
|
||
#title { | ||
color: white; | ||
margin-left: .4em; | ||
font-size: 36pt; | ||
font-family: Comfortaa, sans-serif; | ||
font-style: normal; | ||
} | ||
|
||
#subtitle { | ||
color: white; | ||
padding-left: 1.25em; | ||
margin-top: -2.25em; | ||
margin-bottom: .5em; | ||
font-size: 14pt; | ||
font-style: italic; | ||
font-family: sans-serif; | ||
} | ||
|
||
.asRow { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: flex-start; | ||
} | ||
|
||
#barMenus { | ||
margin-top: 3.5em; | ||
margin-left: 10em; | ||
} | ||
|
||
.barMenu { | ||
color: white; | ||
font-family: sans-serif; | ||
font-size: 13pt; | ||
padding-right: 3em; | ||
cursor: pointer; | ||
} | ||
|
||
.barMenu:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
#titleBarBorder { | ||
background: #663366; | ||
margin-left: -.5em; | ||
margin-right: -.5em; | ||
height: .5em; | ||
} | ||
|
||
#scrollBar { | ||
background: #885588; | ||
margin-right: -.5em; | ||
height: .5em; | ||
width: 3.5em; | ||
margin-left: 30em; | ||
} |
Empty file.
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,13 +1,33 @@ | ||
<?php | ||
echo ('<p>This is php output</p>'); | ||
|
||
?> | ||
|
||
<html> | ||
<head> | ||
<title>Paintbrush LMS Home Page</title> | ||
<link rel="stylesheet" href="index.css"> | ||
<script type="text/javascript" src="index.js"></script> | ||
</head> | ||
<body> | ||
<div id="titleBarWrapper"> | ||
<div id="titleBar" class="asRow"> | ||
<div> | ||
<p id="title">paintbrush.</p> | ||
<p id="subtitle">Let's get something done today.</p> | ||
</div> | ||
<div id="barMenus" class="asRow"> | ||
<p class="barMenu">About</p> | ||
<p class="barMenu">For Students</p> | ||
<p class="barMenu">For Teachers</p> | ||
<p class="barMenu">For Schools</p> | ||
</div> | ||
</div> | ||
<div id="titleBarBorder"> | ||
<div id="scrollBar"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<p>This is a web server used for the function of the Paintbrush LMS client program. Please visit our home page for more information.</p> | ||
</body> | ||
</html> |
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,10 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: rtorok | ||
* Date: 8/15/18 | ||
* Time: 4:33 PM | ||
*/ | ||
|
||
//outputs the current unix timestamp in milliseconds | ||
echo (int) round(1000 * microtime(true)); |