Josedcape commited on
Commit
6cc1012
·
verified ·
1 Parent(s): 20d54f2

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +94 -0
style.css CHANGED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
3
+
4
+ body {
5
+ background-color: #1C1C1C;
6
+ color: #ECF0F1;
7
+ background-image: url('https://s1.1zoom.me/big0/395/Fields_Sunrises_and_499477.jpg');
8
+ background-size: cover;
9
+ font-family: 'Poppins', sans-serif;
10
+ }
11
+
12
+ .stButton>button {
13
+ background-color: #007BFF;
14
+ color: #FFD700;
15
+ border: none;
16
+ border-radius: 8px;
17
+ font-size: 16px;
18
+ padding: 12px 24px;
19
+ cursor: pointer;
20
+ transition: background-color 0.3s, transform 0.3s;
21
+ }
22
+ .stButton>button:hover {
23
+ background-color: #0056b3;
24
+ transform: scale(1.05);
25
+ }
26
+
27
+ .stTextInput>div>div>input {
28
+ border: 2px solid #FFD700;
29
+ border-radius: 8px;
30
+ font-size: 16px;
31
+ padding: 10px;
32
+ background-color: #000000;
33
+ color: #ECF0F1;
34
+ }
35
+
36
+ .stMarkdown>div>p {
37
+ color: #D0D3D4;
38
+ font-size: 16px;
39
+ line-height: 1.6;
40
+ }
41
+
42
+ .stMarkdown>h1, .stMarkdown>h2, .stMarkdown>h3, .stMarkdown>h4, .stMarkdown>h5, .stMarkdown>h6 {
43
+ color: #FF6F61;
44
+ font-family: 'Poppins', sans-serif;
45
+ font-weight: bold;
46
+ text-transform: uppercase;
47
+ }
48
+
49
+ .stAudio {
50
+ margin-top: 20px;
51
+ border: 2px solid #FF6F61;
52
+ border-radius: 10px;
53
+ }
54
+
55
+ .stFileUploader>div>div>input {
56
+ border: 2px solid #FFD700;
57
+ border-radius: 8px;
58
+ font-size: 16px;
59
+ padding: 10px;
60
+ background-color: #000000;
61
+ color: #ECF0F1;
62
+ }
63
+
64
+ .spinner {
65
+ border: 8px solid #f3f3f3;
66
+ border-top: 8px solid #FF6F61;
67
+ border-radius: 50%;
68
+ width: 60px;
69
+ height: 60px;
70
+ animation: spin 1s linear infinite;
71
+ }
72
+
73
+ @keyframes spin {
74
+ 0% { transform: rotate(0deg); }
75
+ 100% { transform: rotate(360deg); }
76
+ }
77
+
78
+ .video-container {
79
+ border: 3px solid #FF6F61;
80
+ background-color: #1C1C1C;
81
+ padding: 10px;
82
+ border-radius: 10px;
83
+ margin-bottom: 20px;
84
+ }
85
+
86
+ .assistant-response {
87
+ font-size: 16px;
88
+ color: #D0D3D4;
89
+ background-color: #2E2E2E;
90
+ padding: 10px;
91
+ border-radius: 8px;
92
+ border: 1px solid #FF6F61;
93
+ }
94
+ </style>