File size: 964 Bytes
8942435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569a99d
 
 
 
 
 
8942435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

#root > .block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 200px;
    border-radius: 10px;
}

/* Centrer le H1 */
h1 {
    text-align: center;
}
#duplicate-button {
  margin: auto;
  color: white;
  background: #1565c0;
  border-radius: 100vh;
}

/* Arrondir légèrement les angles des éléments Gradio */
.gr-form, .gr-box, .gr-input, .gr-textarea, .gr-radio, .gr-checkbox, .gr-panel {
    border-radius: 6px;
}

.gr-panel > .label {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

button, .button-primary, .button-secondary {
    border-radius: 6px;
}

/* Responsive design */
@media (max-width: 768px) {
    #root > .block {
        padding: 15px;
    }
}