This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
planner.html
103 lines (89 loc) · 1.88 KB
/
planner.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<head>
<style>
body {
background-image: url("images/1.jpg");
background-attachment: fixed;
}
.layer {
background-color: rgba(255, 254, 236, 0.7);
background-size: cover;
background-clip: padding-box;
padding: 15px;
}
.button {
margin: auto;
background-color: #F3DBA4;
border: none;
color: black;
padding: 12px 24px;
display: block;
text-align: center;
font-size: 18px;
font: helvetica;
cursor: default;
width: 200px;
margin-bottom: 8px;
}
.button:hover {
background-color: rgb(21, 3 13)
}
.center {
font-family: helvetica;
font-size: 18px;
position: absolute;
vertical-align: middle;
text-align: center;
overflow: hidden;
margin-top: 4px;
margin-left: 50%;
margin-right: 50%;
width: 60%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, 0%);
}
.top-center {
margin: 0;
font-family: helvetica;
position: absolute;
text-align: center;
vertical-align: middle;
overflow: hidden;
top:0%;
left: 50%;
margin-right: -50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, 0%);
}
</style>
</head>
<body>
<link rel="stylesheet" href='theme2.css'>
<script src='caleandar.js'></script>
<div id="caleandar">
</div>
<form>
<center>
<font color="white">Year (yyyy):</font> <input type="text" id=year>
<br>
<font color="white">Month (mm):</font> <input type="text" id=month>
<br>
<font color="white">Day (dd):</font> <input type="text" id=day>
<br>
<br>
</center>
</form>
<div id="buttons">
</div>
<center>
<font color="white">Please select recipe to make on this day.</font>
</center>
<br>
<br>
<button class="button" id="addEvent">Add this meal</button>
<button class="button" onclick="location.href='basic.html'">Back</button>
</body>
<script>
require('./planner2.js');
</script>
</html>