salmapm commited on
Commit
6073cba
·
verified ·
1 Parent(s): b8777f1

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +55 -0
styles.css ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f4f4f4;
4
+ margin: 0;
5
+ padding: 0;
6
+ display: flex;
7
+ justify-content: center;
8
+ align-items: center;
9
+ height: 100vh;
10
+ }
11
+
12
+ .container {
13
+ background-color: #fff;
14
+ padding: 20px;
15
+ border-radius: 8px;
16
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
17
+ width: 80%;
18
+ max-width: 600px;
19
+ }
20
+
21
+ h1 {
22
+ text-align: center;
23
+ }
24
+
25
+ textarea {
26
+ width: 100%;
27
+ height: 100px;
28
+ margin-bottom: 10px;
29
+ padding: 10px;
30
+ border: 1px solid #ccc;
31
+ border-radius: 4px;
32
+ }
33
+
34
+ button {
35
+ display: block;
36
+ width: 100%;
37
+ padding: 10px;
38
+ background-color: #007bff;
39
+ color: #fff;
40
+ border: none;
41
+ border-radius: 4px;
42
+ cursor: pointer;
43
+ }
44
+
45
+ button:hover {
46
+ background-color: #0056b3;
47
+ }
48
+
49
+ #result {
50
+ margin-top: 20px;
51
+ padding: 10px;
52
+ border: 1px solid #ccc;
53
+ border-radius: 4px;
54
+ background-color: #f9f9f9;
55
+ }