-
Notifications
You must be signed in to change notification settings - Fork 10
/
newtab.html
83 lines (80 loc) · 1.61 KB
/
newtab.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
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript" src="browser-polyfill.js"></script>
<meta charset="utf-8" />
</head>
<body>
<script src="newtab.js"></script>
<div class="title">Pronounce:</div>
<div id="2" class="word"></div>
<div id="1" class="list">
<text class="headerlist"> total words pronounced: </text>
<text id="3" class="headerlist"> </text>
</div>
<div class="footer">made with ❤️ by filipeisho</div>
</body>
<style>
.headerlist {
text-align: center;
font-size: 1.5rem;
/*text-decoration: underline;*/
}
li {
/*color: blue;*/
font-size: 1rem;
margin-top: 1rem;
}
ul {
/*list-style-type: none;*/
text-align: start;
}
body {
background-color: #222;
color: #ddd;
/*font-family: Helvetica;*/
align-items: center;
justify-content: center;
margin-top: 10vh;
}
.title {
/*margin-top: 10vh;*/
text-align: center;
/*font-size: 9vw;*/
font-size: 6rem;
}
.word {
margin-top: 10vh;
margin-bottom: 10vh;
text-align: center;
/*font-size: 4vw;*/
font-size: 2rem;
}
.footer {
position: absolute;
width: 100vw;
margin-left: auto;
margin-right: auto;
bottom: 2rem;
text-align: center;
font-size: 1rem;
}
.list {
padding: 10px;
margin-top: 10vh;
/*background-color: red;*/
border-color: #ddd;
border-width: 1px;
border-style: solid;
border-radius: 15px;
justify-content: center;
align-items: center;
width: fit-content;
margin-left: auto;
margin-right: auto;
max-height: 30vh;
overflow: auto;
text-align: center;
}
</style>
</html>