lewiskimaru commited on
Commit
3ea004f
1 Parent(s): 6cbf028

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +68 -13
static/style.css CHANGED
@@ -1,13 +1,68 @@
1
- .Header {
2
- text-align: center;
3
- }
4
- .LanguageDropdown {
5
- text-align: center;
6
- }
7
- .instructions {
8
- background-color: #056e33;
9
- padding: 20px;
10
- }
11
- .footer {
12
- text-align: center;
13
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: 'Arial', sans-serif;
3
+ margin: 0;
4
+ padding: 0;
5
+ background-color: #f4f4f4;
6
+ }
7
+
8
+ .container {
9
+ display: flex;
10
+ justify-content: space-around;
11
+ align-items: center;
12
+ margin: 50px 0;
13
+ }
14
+
15
+ .text-box {
16
+ background-color: #fff;
17
+ border-radius: 8px;
18
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
19
+ padding: 20px;
20
+ width: 45%;
21
+ }
22
+
23
+ select,
24
+ textarea {
25
+ width: 100%;
26
+ padding: 10px;
27
+ margin-bottom: 15px;
28
+ border: 1px solid #ccc;
29
+ border-radius: 4px;
30
+ box-sizing: border-box;
31
+ }
32
+
33
+ textarea {
34
+ height: 150px;
35
+ }
36
+
37
+ .center-container {
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ height: 10px;
42
+ margin: 0;
43
+ }
44
+
45
+ input[type="submit"] {
46
+ background-color: #4caf50;
47
+ color: #fff;
48
+ border: none;
49
+ padding: 10px 20px;
50
+ font-size: 16px;
51
+ cursor: pointer;
52
+ border-radius: 4px;
53
+ }
54
+
55
+
56
+ input[type="submit"]:hover {
57
+ background-color: #2674d4;
58
+ }
59
+
60
+ #output:disabled {
61
+ background-color: #f4f4f4;
62
+ color: #555;
63
+ }
64
+
65
+ h1 {
66
+ text-align: center;
67
+ color: #333;
68
+ }