24Sureshkumar commited on
Commit
09de243
·
verified ·
1 Parent(s): 3dd44c2

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +78 -6
style.css CHANGED
@@ -1,8 +1,80 @@
1
- /* style.css */
2
- body {
3
- font-family: 'Noto Sans Tamil', sans-serif;
4
- background-color: #f5f5f5;
5
  }
6
- h1 {
7
- color: #4b0082;
 
 
 
 
 
 
 
 
8
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base styles */
2
+ .stApp {
3
+ background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f4 100%);
4
+ background-attachment: fixed;
5
  }
6
+
7
+ /* Header styling */
8
+ .header {
9
+ text-align: center;
10
+ padding: 1.5rem;
11
+ background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
12
+ border-radius: 10px;
13
+ margin-bottom: 2rem;
14
+ color: white;
15
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
16
  }
17
+
18
+ .header h1 {
19
+ font-size: 2.5rem;
20
+ margin-bottom: 0.5rem;
21
+ }
22
+
23
+ .header p {
24
+ font-size: 1.1rem;
25
+ opacity: 0.9;
26
+ }
27
+
28
+ /* Text area styling */
29
+ textarea {
30
+ border-radius: 12px !important;
31
+ padding: 1rem !important;
32
+ font-size: 1.1rem !important;
33
+ border: 2px solid #4b6cb7 !important;
34
+ }
35
+
36
+ /* Button styling */
37
+ button {
38
+ border-radius: 12px !important;
39
+ padding: 0.75rem 1.5rem !important;
40
+ font-weight: bold !important;
41
+ font-size: 1.1rem !important;
42
+ background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%) !important;
43
+ border: none !important;
44
+ transition: all 0.3s ease !important;
45
+ }
46
+
47
+ button:hover {
48
+ transform: scale(1.05) !important;
49
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
50
+ }
51
+
52
+ /* Card styling */
53
+ .stExpander {
54
+ background: white !important;
55
+ border-radius: 12px !important;
56
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
57
+ border: none !important;
58
+ padding: 1rem !important;
59
+ }
60
+
61
+ /* Spinner styling */
62
+ .stSpinner > div {
63
+ border-top-color: #4b6cb7 !important;
64
+ }
65
+
66
+ /* Image styling */
67
+ .stImage > div > img {
68
+ border-radius: 12px !important;
69
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
70
+ border: 3px solid white !important;
71
+ }
72
+
73
+ /* Footer styling */
74
+ footer {
75
+ text-align: center;
76
+ padding: 1rem;
77
+ margin-top: 2rem;
78
+ color: #6c757d;
79
+ font-size: 0.9rem;
80
+ }