-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (89 loc) · 2.03 KB
/
index.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
<!DOCTYPE html>
<style>
#id-div-input {
border: 2px solid #e8e8e8;
width: 85%;
min-width: 400px;
min-height: 100px;
border-radius: 5px;
}
#id-div-api {
width: 85%;
min-width: 400px;
margin: 10px 0px;
}
#id-div-reinput {
margin: 14px 0px;
}
#id-div-reinput span {
cursor: pointer;
}
#id-div-reinput span:hover {
color: #55BB8E
}
#id-div-api input {
width: 95%;
border: 1px solid #e8e8e8;
padding: 5px 15px;
}
.hidden {
display: none;
}
span {
font-size: 14px;
margin: 10px 15px;
color: #7b7b7b;
}
.button {
margin: 0;
padding: 5px 15px;
border: 1px solid transparent;
outline: none;
margin: 10px;
background: #55BB8E;
border-color: #55BB8E;
}
.button span{
color: #FFF;
font-size: 12px;
}
.button-disabled {
background: #AADDC6;
border-color: #AADDC6;
cursor: not-allowed;
}
textarea {
max-width: 92%;
min-width: 94%;
outline: none;
border: 1px solid transparent;
margin: 15px 10px;
overflow: hidden;
display: inline-block;
vertical-align: middle;
}
</style>
<html>
<body>
<div id="id-div-content">
<div id="id-div-api">
<div id="id-div-api-input">
<input placeholder="请输入您的 flomo 专属记录 API"></input>
</div>
<div id="id-div-reinput" class="hidden">
<span>点此重新输入您的 flomo 专属记录 API</input>
</div>
</div>
<div id="id-div-input">
<div>
<textarea id="id-textarea-thought" placeholder="现在的想法是..."></textarea>
</div>
<div>
<button class="button button-disabled"><span>发送</span></button>
</div>
</div>
</div>
<script src="utils.js"></script>
<script src="main.js"></script>
</body>
</html>