DmitrMakeev commited on
Commit
6f7577f
·
verified ·
1 Parent(s): e350c94

Update settings.html

Browse files
Files changed (1) hide show
  1. settings.html +12 -9
settings.html CHANGED
@@ -36,15 +36,18 @@
36
  border: 1px solid #ccc;
37
  border-radius: 4px;
38
  }
39
- button {
40
- background-color: green;
41
- color: white;
42
- padding: 10px 20px;
43
- border: none;
44
- border-radius: 4px;
45
- cursor: pointer;
46
- margin-top: 20px;
47
- }
 
 
 
48
  button:hover {
49
  background-color: #388E3C;
50
  }
 
36
  border: 1px solid #ccc;
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
  }