-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
index-dev.html
63 lines (55 loc) · 1.7 KB
/
index-dev.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<title>Air Datepicker - development</title>
<style type="text/css">
.container {
max-width: 700px;
margin: 200px auto;
overflow: auto;
height: 500px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
input[type='text'] {
width: 300px;
height: 32px;
margin: 0 0 16px;
}
.input-wrap {
padding: 1px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.actions {
margin: 16px 0;
display: flex;
grid-gap: 16px;
justify-content: center;
}
.air-datepicker.-disabled- {
--adp-cell-background-color-selected: rgba(0, 0, 0, 0.1);
--adp-cell-background-color-in-range: rgba(0, 0, 0, 0.05);
}
</style>
</head>
<body>
<div class="dp-custom"></div>
<div class="container">
<div class='input-wrap'>
<input type="text" readonly id="dp1" />
</div>
<div class="actions">
<button id='update'>update</button>
<button id='destroy'>destory</button>
<button id='action'>action</button>
</div>
</div>
</body>
</html>