forked from ken107/read-aloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.html
55 lines (54 loc) · 1.33 KB
/
languages.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Select Languages</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
h2 {
margin-top: 15px;
margin-bottom: 20px;
}
.container {
min-width: 300px;
}
.voice-list {
display: inline-block;
margin: .2em 0 .8em 1em;
padding: .5em 1em;
background-color: #f6f6f6;
color: #454545;
border: 1px solid #c5c5c5;
border-radius: 5px;
white-space: nowrap;
}
.voice-list input[type=radio] {
margin-right: .4em;
}
.dark-mode .voice-list {
background-color: #333;
border: none;
box-shadow: 1px 1px black;
color: #ddd;
}
</style>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/defaults.js"></script>
<script src="js/tts-engines.js"></script>
<script src="js/languages.js"></script>
</head>
<body>
<div class="container">
<h2 data-i18n="languages_heading"></h2>
<form>
<div class="form-group" id="lang-list">
</div>
<div class="form-group">
<button id="back-button" type="button" class="btn btn-secondary" data-i18n="languages_back_button"></button>
</div>
</form>
</div>
</body>
</html>