forked from padster/CalendarThemeExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
136 lines (134 loc) · 3.59 KB
/
options.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<title>Google Wall Calendar options</title>
<style>
html, head, body { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; }
.field {
display: flex;
align-items: center;
height: 3em;
}
.title {
width: 120px;
text-align: center;
font-size: 16px;
}
.input {
display: flex;
flex-grow: 1;
}
.input input {
height: 2.4em;
padding: 0 12px;
flex-grow: 1;
}
button {
float: right;
margin: 8px;
line-height: 2em;
cursor: pointer;
}
#demo {
width: 60%;
height: 60%;
margin: 0 auto;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-position: center;
background-size: cover;
}
#status {
position: absolute;
left: 12px;
bottom: 12px;
padding: 8px;
font-size: 20px;
color: white;
background-color: black;
}
.options {
padding-bottom: 1.5em;
}
label {
font-size: 16px;
height: 24px;
padding: 8px 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Google Wall Calendar options</h1>
<div>
<div class="options">
<label><input id="t1" type="radio" name="type">Single Image</label>
<label><input id="t2" type="radio" name="type">Monthly Images</label>
</div>
<div id="t1Fields">
<div class="field">
<div class="title">Image URL:</div>
<div class="input">
<input id="url" type="url"/>
</div>
</div>
</div>
<div id="t2Fields">
<div class="field">
<div class="title">January:</div>
<div class="input"><input id="urlMonth0" type="url"/></div>
</div>
<div class="field">
<div class="title">Februrary:</div>
<div class="input"><input id="urlMonth1" type="url"/></div>
</div>
<div class="field">
<div class="title">March:</div>
<div class="input"><input id="urlMonth2" type="url"/></div>
</div>
<div class="field">
<div class="title">April:</div>
<div class="input"><input id="urlMonth3" type="url"/></div>
</div>
<div class="field">
<div class="title">May:</div>
<div class="input"><input id="urlMonth4" type="url"/></div>
</div>
<div class="field">
<div class="title">June:</div>
<div class="input"><input id="urlMonth5" type="url"/></div>
</div>
<div class="field">
<div class="title">July:</div>
<div class="input"><input id="urlMonth6" type="url"/></div>
</div>
<div class="field">
<div class="title">August:</div>
<div class="input"><input id="urlMonth7" type="url"/></div>
</div>
<div class="field">
<div class="title">September:</div>
<div class="input"><input id="urlMonth8" type="url"/></div>
</div>
<div class="field">
<div class="title">October:</div>
<div class="input"><input id="urlMonth9" type="url"/></div>
</div>
<div class="field">
<div class="title">November:</div>
<div class="input"><input id="urlMonth10" type="url"/></div>
</div>
<div class="field">
<div class="title">December:</div>
<div class="input"><input id="urlMonth11" type="url"/></div>
</div>
</div>
<button id="save">Save</button>
<button id="reset">Reset (without save)</button>
<div id="status"></div>
</div>
<div id="demo"></div>
<script src='options.js'></script>
</body>
</html>