This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 1.26 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 1.26 KB
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
<!doctype html>
<html>
<head>
<title>Halogen Datepicker Example</title>
<style>
body {
font-family: sans-serif;
max-width: 570px;
margin: auto;
}
.Picker {
list-style: none;
padding: 0;
margin: 20px 0 0.5ch;
}
.Picker--invalid .Picker-input {
border: 1px solid red;
outline-color: red;
}
.Picker-component {
display: inline-block;
}
.Picker .Picker {
margin: 0;
display: inline-block;
}
.Picker-component + .Picker-component,
.Picker .Picker + .Picker {
margin-left: 0.5ch;
}
.Picker-input {
border: 1px solid hsl(0, 0%, 85%);
}
.Picker-input--invalid {
color: red;
outline-color: red;
}
.Picker-placeholder {
white-space: pre;
}
input, button {
font-family: sans-serif;
font-size: 14px;
max-width: 70px;
}
input[type=text] {
width: 500px;
margin: 0px 4px;
}
.Picker-input--length-3 {
width: 3.5em;
}
.Picker-input--length-2 {
width: 2.7em;
}
</style>
</head>
<body>
<script src="example.js"></script>
</body>
</html>