-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
64 lines (56 loc) · 1.34 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Nastavení pro VideaČesky.cz na YouTube</title>
<meta charset="UTF-8">
<style>
body {
font-size: 16px;
margin: 0;
padding: 0;
width: 20rem;
}
header {
padding: 10px 10px 10px 20px;
font-size: 1.4em;
color: #fff;
font-weight: 700;
background-color: #057EF1;
}
section {
padding: 10px;
margin-left: 10px;
}
footer {
padding-left: 20px;
margin-bottom: 20px;
}
input {
font-size: inherit;
margin: 10px 10px 10px 0;
}
input:invalid {
outline-color: red;
}
#status {
color: green;
height: 1em;
}
</style>
</head>
<body>
<header>VideaČesky.cz</header>
<section>
<label>
Ulož zde svůj e-mail a budeš ho mít vždy předvyplněný při zadávání požadavku o překlad.
<br />
<input type="email" id="email" name="email" placeholder="Tvůj e-mail">
</label>
</section>
<footer>
<button id="save">Uložit</button>
<span id="status"></span>
</footer>
<script src="options.js"></script>
</body>
</html>