Mmyyyzsj commited on
Commit
8aff753
·
verified ·
1 Parent(s): 5d76988

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +43 -0
style.css CHANGED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* تنسيق الواجهة العامة */
2
+ .gradio-container {
3
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
4
+ color: #f8fafc !important;
5
+ }
6
+
7
+ /* تجميل صناديق الرفع */
8
+ .upload-container {
9
+ border: 2px dashed #6366f1 !important;
10
+ border-radius: 20px !important;
11
+ background: rgba(99, 102, 241, 0.05) !important;
12
+ transition: all 0.3s ease;
13
+ }
14
+
15
+ .upload-container:hover {
16
+ border-color: #818cf8 !important;
17
+ background: rgba(99, 102, 241, 0.1) !important;
18
+ }
19
+
20
+ /* زر الـ Mix السحري */
21
+ #mix-btn {
22
+ background: linear-gradient(45deg, #4f46e5, #9333ea) !important;
23
+ border: none !important;
24
+ color: white !important;
25
+ font-size: 1.2rem !important;
26
+ font-weight: bold !important;
27
+ padding: 15px 30px !important;
28
+ border-radius: 12px !important;
29
+ cursor: pointer !important;
30
+ box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.4) !important;
31
+ }
32
+
33
+ #mix-btn:hover {
34
+ transform: translateY(-2px);
35
+ box-shadow: 0 20px 25px -5px rgba(147, 51, 234, 0.5) !important;
36
+ }
37
+
38
+ /* شكل الفيديو النهائي */
39
+ #output-video {
40
+ border-radius: 15px !important;
41
+ overflow: hidden !important;
42
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5) !important;
43
+ }