File size: 1,663 Bytes
f904c62
 
 
 
 
 
0ffc7ed
f904c62
0ffc7ed
f904c62
 
0ffc7ed
f904c62
0ffc7ed
 
f904c62
 
 
 
 
0ffc7ed
 
 
 
f904c62
0ffc7ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* ── Brand overrides ─────────────────────────────────────────── */
:root {
  --color-brand-primary:   #E7AB12;
  --color-brand-secondary: #0D456C;
}

/* ── Page background ────────────────────────────────────────── */
body, .gradio-container {
  background-color: #003C66 !important;
}

/* ── Global button look ─────────────────────────────────────── */
button.gr-button {
  background-color: #003C66 !important;
  color:            #E7AB12 !important;
}
button.gr-button:hover {
  background-color: #0056b3 !important;
}

/* force the logo container to left‐align its child */
#logo-primary {
  display: block;          /* ensure it’s a block container */
  text-align: left !important;
}

/* still keep your size constraints */
#logo-primary img {
  max-width: 80%;
  max-height: 90%;
  height: auto;
  object-fit: contain;
  margin: 2 !important;
  
  /* nix any auto‐margins that might center it */
}

/* ── Header Markdown styling ───────────────────────────────── */
#header-text {
  /* overall container */
  font-size:   1.75rem;        /* ~23px */
  line-height: 1.6;
  font-weight: bold;
  color:       #C1CDDF !important;
}

/* ensure all child text elements inherit that color */
#header-text,
#header-text h1,
#header-text p,
#header-text strong,
#header-text b,
#header-text em {
  color: #C1CDDF !important;
}