2020-11-03 14:28:41 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
<title>PBS Prune Simulator</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="extjs/theme-crisp/resources/theme-crisp-all.css">
|
2020-11-07 12:37:54 +00:00
|
|
|
<style>
|
2020-11-08 12:14:55 +00:00
|
|
|
.cal {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2020-11-07 12:37:54 +00:00
|
|
|
.cal-day {
|
|
|
|
vertical-align: top;
|
|
|
|
width: 150px;
|
2020-11-11 07:10:43 +00:00
|
|
|
height: 75px; /* this is like min-height when used in tables */
|
2020-11-07 12:37:54 +00:00
|
|
|
border: #939393 1px solid;
|
|
|
|
color: #454545;
|
|
|
|
}
|
|
|
|
.cal-day-date {
|
|
|
|
border-bottom: #444 1px solid;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.strikethrough {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
.black {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.sun {
|
|
|
|
background-color: #ededed;
|
|
|
|
}
|
|
|
|
.first-of-month {
|
|
|
|
border-right: dashed black 4px;
|
|
|
|
}
|
2020-11-11 09:07:03 +00:00
|
|
|
.clear-trigger {
|
|
|
|
background-image: url(./clear-trigger.png);
|
|
|
|
}
|
2020-11-07 12:37:54 +00:00
|
|
|
</style>
|
|
|
|
|
2020-11-03 14:28:41 +00:00
|
|
|
<script type="text/javascript" src="extjs/ext-all.js"></script>
|
|
|
|
<script type="text/javascript" src="prune-simulator.js"></script>
|
|
|
|
</head>
|
|
|
|
<body></body>
|
|
|
|
</html>
|