XRachel commited on
Commit
a29f10b
·
verified ·
1 Parent(s): a86a517

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -91
style.css DELETED
@@ -1,91 +0,0 @@
1
-
2
- /* --- Page background: Single unified background --- */
3
- html, body {
4
- background-color: rgb(40,9,109) !important;
5
- background-image: url('Python_R.png') !important;
6
- background-position: top center !important;
7
- background-repeat: no-repeat !important;
8
- background-size: 100% auto !important;
9
- margin: 0 !important;
10
- padding: 0 !important;
11
- min-height: 100vh !important;
12
- }
13
-
14
- /* --- Main container --- */
15
- .gradio-container {
16
- max-width: 1400px !important;
17
- width: 94vw !important;
18
- margin: 0 auto !important;
19
- padding-top: 220px !important;
20
- padding-bottom: 150px !important;
21
- background: transparent !important;
22
- }
23
-
24
- /* --- Title in ESCP gold --- */
25
- #escp_title h1 {
26
- color: rgb(242,198,55) !important;
27
- font-size: 3rem !important;
28
- font-weight: 800 !important;
29
- text-align: center !important;
30
- margin: 0 0 12px 0 !important;
31
- }
32
-
33
- /* --- Subtitle --- */
34
- #escp_title p, #escp_title em {
35
- color: rgba(255,255,255,0.85) !important;
36
- text-align: center !important;
37
- }
38
-
39
- /* --- Tab bar background --- */
40
- .tabs > .tab-nav,
41
- .tab-nav,
42
- div[role="tablist"],
43
- .svelte-tabs > .tab-nav {
44
- background: rgba(40,9,109,0.6) !important;
45
- border-radius: 10px 10px 0 0 !important;
46
- padding: 4px !important;
47
- }
48
-
49
- /* --- ALL tab buttons: force white text --- */
50
- .tabs > .tab-nav button,
51
- .tab-nav button,
52
- div[role="tablist"] button,
53
- button[role="tab"],
54
- .svelte-tabs button,
55
- .tab-nav > button,
56
- .tabs button {
57
- color: #ffffff !important;
58
- font-weight: 600 !important;
59
- border: none !important;
60
- background: transparent !important;
61
- padding: 10px 20px !important;
62
- border-radius: 8px 8px 0 0 !important;
63
- opacity: 1 !important;
64
- }
65
-
66
- /* --- Selected tab: ESCP gold --- */
67
- .tabs > .tab-nav button.selected,
68
- .tab-nav button.selected,
69
- button[role="tab"][aria-selected="true"],
70
- button[role="tab"].selected,
71
- div[role="tablist"] button[aria-selected="true"],
72
- .svelte-tabs button.selected {
73
- color: rgb(242,198,55) !important;
74
- background: rgba(255,255,255,0.12) !important;
75
- }
76
-
77
- /* --- White card panels --- */
78
- .gradio-container .gr-block,
79
- .gradio-container .gr-box,
80
- .gradio-container .gr-panel,
81
- .gradio-container .gr-group {
82
- background: #ffffff !important;
83
- border-radius: 10px !important;
84
- }
85
-
86
- /* --- Tab content area --- */
87
- .tabitem {
88
- background: rgba(255,255,255,0.95) !important;
89
- border-radius: 0 0 10px 10px !important;
90
- padding: 16px !important;
91
- }