alexa81sumit commited on
Commit
dbb1f2e
·
verified ·
1 Parent(s): 9c2e84a

Delete custom.css

Browse files
Files changed (1) hide show
  1. custom.css +0 -61
custom.css DELETED
@@ -1,61 +0,0 @@
1
- /* CANVA STYLE UI */
2
-
3
- /* Background */
4
- body, .gradio-container {
5
- background: linear-gradient(135deg, #6EE7B7, #3B82F6, #9333EA);
6
- background-size: 300% 300%;
7
- animation: gradientFlow 12s ease infinite;
8
- }
9
-
10
- @keyframes gradientFlow {
11
- 0% { background-position: 0% 50%; }
12
- 50% { background-position: 100% 50%; }
13
- 100% { background-position: 0% 50%; }
14
- }
15
-
16
- /* Floating effect */
17
- .card {
18
- backdrop-filter: blur(25px);
19
- background: rgba(255, 255, 255, 0.2);
20
- border-radius: 22px;
21
- padding: 25px;
22
- box-shadow: 0 10px 35px rgba(0,0,0,0.2);
23
- animation: floatCard 4s ease-in-out infinite;
24
- }
25
-
26
- @keyframes floatCard {
27
- 0% { transform: translateY(0px); }
28
- 50% { transform: translateY(-10px); }
29
- 100% { transform: translateY(0px); }
30
- }
31
-
32
- /* Canva-like title */
33
- h1 {
34
- font-size: 42px !important;
35
- font-weight: 800;
36
- color: white !important;
37
- text-shadow: 0px 4px 15px rgba(0,0,0,0.35);
38
- }
39
-
40
- /* Buttons */
41
- button {
42
- background: linear-gradient(90deg, #FF8A05, #FF4D00);
43
- border-radius: 14px !important;
44
- color: white !important;
45
- font-size: 20px !important;
46
- font-weight: 700;
47
- transition: 0.3s;
48
- }
49
-
50
- button:hover {
51
- transform: scale(1.05);
52
- box-shadow: 0 8px 20px rgba(255,76,0,0.4);
53
- }
54
-
55
- /* Image Boxes */
56
- .gradio-image {
57
- border-radius: 18px !important;
58
- overflow: hidden !important;
59
- background: rgba(255,255,255,0.15) !important;
60
- border: 1px solid rgba(255,255,255,0.35);
61
- }