Blane187 commited on
Commit
2059dc4
1 Parent(s): 2be8bea

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +8 -5
index.html CHANGED
@@ -8,8 +8,8 @@
8
  <style>
9
  body {
10
  font-family: 'Roboto', sans-serif;
11
- background-color: #f5f5f5;
12
- color: #333;
13
  display: flex;
14
  flex-direction: column;
15
  align-items: center;
@@ -20,10 +20,11 @@
20
  color: #4CAF50;
21
  }
22
  .container {
23
- background-color: #fff;
24
  padding: 20px;
25
  border-radius: 8px;
26
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
27
  max-width: 600px;
28
  width: 100%;
29
  }
@@ -32,6 +33,8 @@
32
  padding: 10px;
33
  border: 1px solid #ccc;
34
  border-radius: 4px;
 
 
35
  resize: vertical;
36
  margin-bottom: 10px;
37
  }
@@ -54,7 +57,7 @@
54
  margin-right: 10px;
55
  }
56
  button:disabled {
57
- background-color: #ddd;
58
  cursor: not-allowed;
59
  }
60
  a {
 
8
  <style>
9
  body {
10
  font-family: 'Roboto', sans-serif;
11
+ background-color: #000; /* Set background to black */
12
+ color: #fff;
13
  display: flex;
14
  flex-direction: column;
15
  align-items: center;
 
20
  color: #4CAF50;
21
  }
22
  .container {
23
+ background-color: #111; /* Dark gray for container background */
24
  padding: 20px;
25
  border-radius: 8px;
26
+ border: 2px solid #fff; /* White border around the box */
27
+ box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* White shadow for slight emphasis */
28
  max-width: 600px;
29
  width: 100%;
30
  }
 
33
  padding: 10px;
34
  border: 1px solid #ccc;
35
  border-radius: 4px;
36
+ background-color: #222; /* Darker background for textarea */
37
+ color: #fff; /* White text in textarea */
38
  resize: vertical;
39
  margin-bottom: 10px;
40
  }
 
57
  margin-right: 10px;
58
  }
59
  button:disabled {
60
+ background-color: #555;
61
  cursor: not-allowed;
62
  }
63
  a {