-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (58 loc) · 1.54 KB
/
index.html
File metadata and controls
67 lines (58 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech Detection</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<script src="main.js" defer></script>
<style>
html {
font-size: 10px;
}
body {
background-color: rgb(246, 109, 109);
font-size: 2rem;
font-weight: 200;
font-family: Helvetica, sans-serif;
}
.words {
max-width: 50rem;
margin: 5rem auto;
background-color: white;
border-radius: 0.5rem;
box-shadow: 1rem 1rem 0 rgb(0, 0, 0, 0.1);
background: -webkit-gradient(linear, 0 0, 0 100%, from(#d9eaf3), color-stop(4%, #fff)) 0 0.4rem;
padding: 1rem 2rem 1rem 5rem;
background-size: 100% 3rem;
position: relative;
line-height: 3rem;
}
header {
display: flex;
flex-direction: column;
align-items: center;
color: #eaffd0;
text-align: center;
}
.words:before {
content: '';
position: absolute;
width: 0.4rem;
top: 0;
left: 3rem;
bottom: 0;
border: 1px solid;
border-color: transparent #efe4e4;
}
</style>
</head>
<body>
<header>
<h1>Speech to Text</h1>
<small>P.S. Results are not very accurate as it is in development phase. Also not say my crush name or else face conequences.</small>
</header>
<div class="words" contenteditable=""></div>
</body>
</html>