DmitrMakeev commited on
Commit
7213e39
·
verified ·
1 Parent(s): a39a88c

Update settings.html

Browse files
Files changed (1) hide show
  1. settings.html +27 -21
settings.html CHANGED
@@ -5,18 +5,21 @@
5
  <title>Settings</title>
6
  <style>
7
  body {
8
- font-family: Arial, sans-serif;
9
- background-color: #f4f4f4;
10
- margin: 0;
11
- padding: 0;
12
- }
 
13
  h1 {
14
- color: green;
15
- text-align: left;
16
- padding: 20px;
17
- background-color: #e0e0e0;
18
- margin: 0;
19
- }
 
 
20
  form {
21
  padding: 20px;
22
  }
@@ -34,17 +37,20 @@
34
  border-radius: 4px;
35
  }
36
  button {
37
- background-color: green;
38
- color: white;
39
- padding: 10px 20px;
40
- border: none;
41
- border-radius: 4px;
42
- cursor: pointer;
43
- margin-top: 20px;
44
- }
 
 
 
45
  button:hover {
46
- background-color: darkgreen;
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>