-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (106 loc) · 2.27 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
103
104
105
106
<!DOCTYPE html>
<html lang="ja">
<title>アクセント辞典: accentjiten.com</title>
<meta name="description" content="An online Japanese pitch accent dictionary. オンライン日本語アクセント辞典。"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<meta name="google-site-verification" content="B5m0GOG08ay81i2iYZM69W60mxMYFToP3hi1aIy2cZ4" />
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
color: #333;
}
header {
padding: 7px 3px 0px 3px;
text-align: center;
}
header h1 {
margin: 0;
white-space: nowrap;
font-size: 1.3rem;
}
.search-bar {
margin: 10px 30px 5px 30px;
display: flex;
}
.search-bar input {
width: 100%;
padding: 10px;
font-size: 1.1rem;
border: 1px solid #ddd;
border-radius: 5px;
}
.search-bar input::placeholder {
color: #bbb;
}
main {
margin: 14px;
}
.results-counter {
margin: 4px 0;
font-size: 1rem;
color: #555;
}
.entry {
background-color: white;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 5px;
padding: 1px 13px 1px 0px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
width: fit-content;
white-space: nowrap;
min-width: 100%;
box-sizing: border-box;
}
.entry-title {
font-size: 1.25rem;
padding-right: 8px;
padding-left: 15px;
}
.data-content {
display: inline-block;
margin-right: 5px;
font-size: 1.25rem;
vertical-align: middle;
}
.source-counter {
color: #bbb;
vertical-align: middle;
}
.sources {
color: #bbb;
font-size: 0.6rem;
vertical-align: middle;
}
.tonetext {
align-items: center;
display: inline;
}
.hightone {
border-top: 1px solid red;
}
.lowtone {
border-bottom: 1px solid red;
}
.hightonenextlow {
border-top: 1px solid red;
border-right: 1px solid red;
}
.lowtonenexthigh {
border-bottom: 1px solid red;
border-right: 1px solid red;
}
</style>
</head>
<body>
<header>
<h1>accentjiten [alpha]</h1>
</header>
</body>
<script src="accentjiten.js"></script>
</html>