-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
55 lines (55 loc) · 1.19 KB
/
options.html
File metadata and controls
55 lines (55 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>MindMeld Options</title>
<style>
body {
padding: 20px;
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #2980b9;
}
.status {
margin-top: 10px;
padding: 10px;
display: none;
}
.success {
background-color: #2ecc71;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1>MindMeld Settings</h1>
<h2>Display Settings</h2>
</div>
<script src="options.js"></script>
</body>
</html>