Spaces:
Running
Running
File size: 2,952 Bytes
d2e7050 cf838f4 d2e7050 e3e4474 cf838f4 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 cf838f4 d2e7050 cf838f4 e3e4474 d2e7050 cf838f4 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 d2e7050 cf838f4 d2e7050 e3e4474 cf838f4 d2e7050 e3e4474 d2e7050 e3e4474 d2e7050 e3e4474 |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
/* Reset e Estilo Geral */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f0f2f5;
color: #1a1a1a;
}
/* Cabeçalho */
.header {
text-align: center;
padding: 20px;
background: linear-gradient(135deg, #6b48ff, #00ddeb);
color: white;
border-radius: 12px 12px 0 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.logo {
width: 40px;
vertical-align: middle;
margin-right: 10px;
}
.header h1 {
font-size: 28px;
font-weight: 700;
display: inline;
}
.subtitle {
font-size: 14px;
opacity: 0.9;
margin-top: 5px;
}
/* Container Principal */
.main-container {
max-width: 1200px;
margin: 20px auto;
display: flex;
gap: 20px;
}
/* Seção de Entrada */
.input-section {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s;
}
.input-section:hover {
transform: translateY(-2px);
}
.image-upload {
border: 2px dashed #6b48ff;
border-radius: 8px;
padding: 10px;
background: #fafafa;
}
.prompt-box, .api-key-box {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 12px;
font-size: 14px;
margin-top: 10px;
transition: border-color 0.3s;
}
.prompt-box:focus, .api-key-box:focus {
border-color: #6b48ff;
outline: none;
}
.submit-btn {
background: #6b48ff;
color: white;
border: none;
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
transition: background 0.3s;
}
.submit-btn:hover {
background: #5439cc;
}
.clear-btn {
background: #e0e0e0;
color: #1a1a1a;
border: none;
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
transition: background 0.3s;
}
.clear-btn:hover {
background: #d0d0d0;
}
/* Seção de Saída */
.output-section {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.output-image {
border-radius: 8px;
overflow: hidden;
max-height: 400px;
}
.output-text {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 12px;
font-size: 14px;
margin-top: 10px;
background: #fafafa;
}
/* Acordeão de Informações */
.info-accordion {
margin: 20px auto;
max-width: 1200px;
background: white;
border-radius: 12px;
padding: 15px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.info-accordion a {
color: #6b48ff;
text-decoration: none;
}
.info-accordion a:hover {
text-decoration: underline;
}
/* Exemplos */
.examples-header {
text-align: center;
font-size: 20px;
font-weight: 600;
color: #6b48ff;
margin: 20px 0 10px;
}
.gr-examples {
max-width: 1200px;
margin: 0 auto;
background: white;
padding: 15px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
} |