lewiskimaru commited on
Commit
490f4af
1 Parent(s): 25cab18

Create style.css

Browse files
Files changed (1) hide show
  1. modules/templates/style.css +59 -0
modules/templates/style.css ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ input[type="submit"] {
38
+ background-color: #4caf50;
39
+ color: #fff;
40
+ border: none;
41
+ padding: 10px 20px;
42
+ font-size: 16px;
43
+ cursor: pointer;
44
+ border-radius: 4px;
45
+ }
46
+
47
+ input[type="submit"]:hover {
48
+ background-color: #2674d4;
49
+ }
50
+
51
+ #output:disabled {
52
+ background-color: #f4f4f4;
53
+ color: #555;
54
+ }
55
+
56
+ h1 {
57
+ text-align: center;
58
+ color: #333;
59
+ }