Skip to content

Commit

Permalink
add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
stsegaye2 committed Apr 10, 2018
1 parent e736e98 commit 01e0050
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 0 deletions.
26 changes: 26 additions & 0 deletions dayProgress.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<!--day progress has a table consisting of task name, initial of the perosn who completed it, and the time it was completed.
with every completion of a task, this table updates.
-->
<table>
<tr>
<th>task</th>
<th>initials</th>
<th>time</th>
</tr>
</table>








</body>
</html>
33 changes: 33 additions & 0 deletions dayProgress.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<!--day progress has a table consisting of task name, initial of the perosn who completed it, and the time it was completed.
with every completion of a task, this table updates.
-->
<table>
<tr>
<th>task</th>
<th>initials</th>
<th>time</th>
</tr>
<?php






</table>








</body>
</html>
47 changes: 47 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
.firstButtons {
text-align: center;
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 50px;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
div.task{
color: #50522B;
font-weight:bold;
font-size: 120%;
text-decoration: none;
color: white;
}
.task { /*styling the task boxes*/
float: left;
display: inline-block;
background-color: #BEC3C7; /* lavendar */
width: 45%;
height: 200px;
text-align: center;
outline-color: gray;
}
.task:hover { /*styling the tabs*/
background-color:#B9848C; /* dusty */ /* lavendar */
}
ul { /*helps align the tabs*/
list-style-type:none;
overflow: hidden;
}
.hiddenButtons {
visibility:hidden;
}
.task:hover .hiddenButtons{
visibility:visible;
}

/* day layout*/
#dayLayoutPDF {
width: 800px;
height: 1000px;
}
109 changes: 109 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html>
<head>
<title> Raceway </title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<script>
function EndDayConfirmation(){
var result = confirm("are you sure you want to end the day?");
if (result) {
//save day in pdf form
//clear day
}
}
</script>
<p>Raceway productive sheet</p>
<div>
<button class="firstButtons" onclick="location.href = 'dayLayout.pdf'"> day layout</button>
<br>
<button class="firstButtons" onclick="location.href = 'dayProgress.html'">view day progress</button>
</div>
<div id ="tasks">
<ul>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
<li> <div class="task">
Task 1
<div class="hiddenButtons">
<a href="">add completion</a>
<a href="">view progress</a>
</div>
</div>
</li>
</ul>
</div>
<button class="firstButtons" onclick="EndDayConfirmation()">end day</button>
</body>
</html>
30 changes: 30 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title> Raceway </title>
<link rel="stylesheet" type="text/css" href="try.css">
</head>
<body>
<p>Raceway productive sheet</p>
<div>
<button class="firstButtons"> day layout</button>
<br>
<button class="firstButtons">view day progress</button>
</div>
<div id ="tasks">
<ul>
<li class="task">Task 1</li>
<li class="task">Task 2</li>
<li class="task">Task 3</li>
<li class="task">Task 4</li>
<li class="task">Task 5</li>
<li class="task">Task 6</li>
<li class="task">Task 7</li>
<li class="task">Task 8</li>
<li class="task">Task 9</li>
<li class="task">Task 10</li>
</ul>
</div>
<button>end day</button>
</body>
</html>

0 comments on commit 01e0050

Please sign in to comment.