Files changed (3) hide show
  1. app.py +1 -1
  2. logo_mesa.png +2 -2
  3. styles.css +25 -0
app.py CHANGED
@@ -26,7 +26,7 @@ LOGO_PATH = os.path.join(os.path.dirname(__file__), "logo_mesa.png")
26
  css = carregar_css()
27
 
28
  with gr.Blocks(title="MESA - Modelagem Estatística e Sistemas de Avaliação") as app:
29
- gr.Image(LOGO_PATH, show_label=False, interactive=False, container=False)
30
 
31
  with gr.Tab("Pesquisa"):
32
  gr.Markdown("*Em desenvolvimento.*")
 
26
  css = carregar_css()
27
 
28
  with gr.Blocks(title="MESA - Modelagem Estatística e Sistemas de Avaliação") as app:
29
+ gr.Image(LOGO_PATH, show_label=False, interactive=False, container=False, elem_id="logo-mesa")
30
 
31
  with gr.Tab("Pesquisa"):
32
  gr.Markdown("*Em desenvolvimento.*")
logo_mesa.png CHANGED

Git LFS Details

  • SHA256: 17a49600747e3e884543bdf7466b256c1bb8bfa0c0c9762d1467ebfa36303cc9
  • Pointer size: 131 Bytes
  • Size of remote file: 296 kB

Git LFS Details

  • SHA256: 2f4481917b3f14c1deed9a0e55fe59f84ee9c9b6a3dd4e453543f1bf8b0a8614
  • Pointer size: 131 Bytes
  • Size of remote file: 237 kB
styles.css CHANGED
@@ -37,6 +37,31 @@
37
  background: #f5f5f5 !important;
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  .transf-card .form {
41
  background: rgb(228, 228, 231) !important
42
  }
 
37
  background: #f5f5f5 !important;
38
  }
39
 
40
+ /* Logo MESA — 30% do tamanho original, sem fundo */
41
+ #logo-mesa {
42
+ max-width: 30% !important;
43
+ margin: 0 auto !important;
44
+ background: transparent !important;
45
+ }
46
+
47
+ #logo-mesa, #logo-mesa * {
48
+ cursor: default !important;
49
+ }
50
+
51
+ #logo-mesa img {
52
+ background: transparent !important;
53
+ }
54
+
55
+ /* Textbox trigger hidden — acessível ao JS mas invisível */
56
+ .trigger-hidden {
57
+ position: absolute !important;
58
+ width: 1px !important;
59
+ height: 1px !important;
60
+ overflow: hidden !important;
61
+ opacity: 0 !important;
62
+ pointer-events: none !important;
63
+ }
64
+
65
  .transf-card .form {
66
  background: rgb(228, 228, 231) !important
67
  }