Spaces:
Running
Running
Update settings.html
Browse files- settings.html +27 -21
settings.html
CHANGED
@@ -5,18 +5,21 @@
|
|
5 |
<title>Settings</title>
|
6 |
<style>
|
7 |
body {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
13 |
h1 {
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
20 |
form {
|
21 |
padding: 20px;
|
22 |
}
|
@@ -34,17 +37,20 @@
|
|
34 |
border-radius: 4px;
|
35 |
}
|
36 |
button {
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
45 |
button:hover {
|
46 |
-
|
47 |
-
|
48 |
</style>
|
49 |
</head>
|
50 |
<body>
|
|
|
5 |
<title>Settings</title>
|
6 |
<style>
|
7 |
body {
|
8 |
+
font-family: Arial, sans-serif;
|
9 |
+
text-align: center;
|
10 |
+
background-color: #f0f0f0;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
}
|
14 |
h1 {
|
15 |
+
background-color: #4CAF50;
|
16 |
+
color: white;
|
17 |
+
padding: 20px;
|
18 |
+
margin: 0;
|
19 |
+
border-bottom: 2px solid #388E3C;
|
20 |
+
font-size: 28px;
|
21 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
22 |
+
}
|
23 |
form {
|
24 |
padding: 20px;
|
25 |
}
|
|
|
37 |
border-radius: 4px;
|
38 |
}
|
39 |
button {
|
40 |
+
display: block;
|
41 |
+
margin: 20px auto;
|
42 |
+
color: white;
|
43 |
+
background-color: #4CAF50;
|
44 |
+
border: none;
|
45 |
+
cursor: pointer;
|
46 |
+
padding: 12px 24px;
|
47 |
+
font-size: 16px;
|
48 |
+
border-radius: 5px;
|
49 |
+
transition: background-color 0.3s ease;
|
50 |
+
}
|
51 |
button:hover {
|
52 |
+
background-color: #388E3C;
|
53 |
+
}
|
54 |
</style>
|
55 |
</head>
|
56 |
<body>
|