Update settings.html
Browse files- settings.html +34 -79
settings.html
CHANGED
@@ -4,77 +4,36 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<title>Settings</title>
|
6 |
<style>
|
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 |
-
form{
|
38 |
-
padding-top:20px;
|
39 |
-
padding-right:20px;
|
40 |
-
padding-bottom:20px;
|
41 |
-
padding-left:20px;
|
42 |
-
}
|
43 |
-
label{
|
44 |
-
display:block;
|
45 |
-
margin-top:10px;
|
46 |
-
color:green;
|
47 |
-
text-align:left;
|
48 |
-
}
|
49 |
-
input[type="text"]{
|
50 |
-
width:100%;
|
51 |
-
padding-top:10px;
|
52 |
-
padding-right:10px;
|
53 |
-
padding-bottom:10px;
|
54 |
-
padding-left:10px;
|
55 |
-
margin-top:5px;
|
56 |
-
border-top-width:1px;
|
57 |
-
border-right-width:1px;
|
58 |
-
border-bottom-width:1px;
|
59 |
-
border-left-width:1px;
|
60 |
-
border-top-style:solid;
|
61 |
-
border-right-style:solid;
|
62 |
-
border-bottom-style:solid;
|
63 |
-
border-left-style:solid;
|
64 |
-
border-top-color:rgb(204, 204, 204);
|
65 |
-
border-right-color:rgb(204, 204, 204);
|
66 |
-
border-bottom-color:rgb(204, 204, 204);
|
67 |
-
border-left-color:rgb(204, 204, 204);
|
68 |
-
border-image-source:initial;
|
69 |
-
border-image-slice:initial;
|
70 |
-
border-image-width:initial;
|
71 |
-
border-image-outset:initial;
|
72 |
-
border-image-repeat:initial;
|
73 |
-
border-top-left-radius:4px;
|
74 |
-
border-top-right-radius:4px;
|
75 |
-
border-bottom-right-radius:4px;
|
76 |
-
border-bottom-left-radius:4px;
|
77 |
-
}
|
78 |
button {
|
79 |
background-color: green;
|
80 |
color: white;
|
@@ -84,14 +43,10 @@ input[type="text"]{
|
|
84 |
cursor: pointer;
|
85 |
margin-top: 20px;
|
86 |
}
|
87 |
-
button:hover{
|
88 |
-
|
89 |
-
}
|
90 |
-
|
91 |
-
padding:20px 20px 20px 50px;
|
92 |
-
}
|
93 |
-
|
94 |
-
</style>
|
95 |
</head>
|
96 |
<body>
|
97 |
<h1>Settings</h1>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<title>Settings</title>
|
6 |
<style>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background-color: #f4f4f4;
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
}
|
14 |
+
h1 {
|
15 |
+
color: green;
|
16 |
+
text-align: left;
|
17 |
+
padding: 20px;
|
18 |
+
background-color: #e0e0e0;
|
19 |
+
margin: 0;
|
20 |
+
}
|
21 |
+
form {
|
22 |
+
padding: 20px;
|
23 |
+
}
|
24 |
+
label {
|
25 |
+
display: block;
|
26 |
+
margin-top: 10px;
|
27 |
+
color: green;
|
28 |
+
text-align: left;
|
29 |
+
}
|
30 |
+
input[type="text"] {
|
31 |
+
width: 100%;
|
32 |
+
padding: 10px;
|
33 |
+
margin-top: 5px;
|
34 |
+
border: 1px solid #ccc;
|
35 |
+
border-radius: 4px;
|
36 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
button {
|
38 |
background-color: green;
|
39 |
color: white;
|
|
|
43 |
cursor: pointer;
|
44 |
margin-top: 20px;
|
45 |
}
|
46 |
+
button:hover {
|
47 |
+
background-color: darkgreen;
|
48 |
+
}
|
49 |
+
</style>
|
|
|
|
|
|
|
|
|
50 |
</head>
|
51 |
<body>
|
52 |
<h1>Settings</h1>
|