Swathi6 commited on
Commit
bd0804a
·
verified ·
1 Parent(s): b3af35a

Create static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +50 -0
static/css/style.css ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background-color: #f5f7fa;
3
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
4
+ color: #333;
5
+ margin: 0;
6
+ padding: 0;
7
+ text-align: center;
8
+ }
9
+
10
+ h1 {
11
+ color: #4a90e2;
12
+ margin-top: 30px;
13
+ font-size: 2.5em;
14
+ }
15
+
16
+ .container {
17
+ margin: 50px auto;
18
+ width: 50%;
19
+ padding: 20px;
20
+ border-radius: 12px;
21
+ background-color: white;
22
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
23
+ }
24
+
25
+ input[type="text"], textarea {
26
+ width: 90%;
27
+ padding: 12px;
28
+ margin-top: 15px;
29
+ margin-bottom: 20px;
30
+ border: 1px solid #ccc;
31
+ border-radius: 8px;
32
+ font-size: 1em;
33
+ }
34
+
35
+ button {
36
+ background-color: #4a90e2;
37
+ color: white;
38
+ border: none;
39
+ padding: 10px 24px;
40
+ font-size: 1em;
41
+ border-radius: 8px;
42
+ cursor: pointer;
43
+ }
44
+
45
+ button:hover {
46
+ background-color: #357ab8;
47
+ }
48
+
49
+ .result {
50
+ font-size: