-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Keyboard</title>
<link rel="stylesheet" href="dist/katex.min.css">
<script defer src="dist/katex.min.js"></script>
<style>
* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
margin: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
width: 80%;
}
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#keyboard_input {
padding: 10px;
width: 100%;
font-size: 20px;
outline: none;
border: 2px solid rgb(70, 70, 172);
}
#keyboard_input:focus {
border: 2px solid rgb(70, 70, 172);
}
</style>
</head>
<body>
<h1>Keyboard</h1>
<div class="container">
<textarea name="" id="keyboard_input" rows="10" placeholder="Click here to show the keyboard"></textarea>
</div>
<script src="dist/katex.min.js"></script>
<script src="keyboard.js"></script>
<script src="app.js"></script>
</body>
</html>