-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 1.5 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>html</title>
<script type="module" src="example/example.mjs" defer></script>
<style>
body {
font-family: Helvetica Neue, Helvetica, Arial sans-serif;
margin: 0;
padding: 1.5rem;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
font-size: 16px;
line-height: 24px;
color: #323336;
}
main {
background-color: #fff;
border-radius: 1rem;
padding: 1rem 1.5rem;
}
button, custom-button {
padding: 0.5rem 1.25rem;
font-size: 0.9rem;
line-height: 1.5rem;
border: none;
border-radius: 1.25rem;
background-color: #323336;
color: #ffffff;
cursor: pointer;
}
button:hover {
background-color: #4e5056;
}
input {
padding: 0.5rem 1rem;
font-size: 0.9rem;
line-height: 1.5rem;
border: 1px solid #ccc;
border-radius: 0.5rem;
background-color: #f0f0f0;
color: #323336;
}
.blue {
color: blue;
}
.red {
color: red;
}
</style>
</head>
<body>
</body>
</html>