CoolFace
Apppublic

AniseF/pln_ddgp_plus-LG

sourceHugging Facemitupdated 1mo agoView on Hugging Face
0likes
style.css105 linesDownload Raw Back to root
1/* ------------------------------------------------------------2   DDGP Plus — style.css3   Estilos principais da aplicação Streamlit4------------------------------------------------------------ */5 6/* Fonte Alegreya */7@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;700&display=swap');8 9html, body, textarea, input, button {10    font-family: 'Alegreya', serif !important;11}12 13/* Logo */14.logo-ddgp {15    width: 40%;16    max-width: 600px;17    display: block;18    margin-left: auto;19    margin-right: auto;20}21 22/* Abreviaturas em itálico azul */23.abrev {24    font-style: italic;25    color: #1a4d8f;26}27 28.abrev, .abrev-author { cursor: help; }29 30/* Exemplos em grego — não itálico */31.exemplo-gr {32    font-style: normal !important;33}34 35/* Autores — caixa alta pequena */36.autor-sc {37    font-variant: small-caps;38    font-size: 0.9em;39    color: #0066cc;40}41 42/* Etimologia dentro de 〈…〉 */43.etimo {44    font-weight: 500;45    padding-left: 4px;46}47 48/* Rodapé */49.footer-ddgp {50    text-align: center;51    font-size: 0.85em;52    color: #666;53    margin-top: 20px;54}55 56/* Abreviaturas gramaticais */57.abrev {58    font-style: italic;59    color: #0066cc; !important;60}61 62p .autor-sc,63span.autor-sc,64div .autor-sc,65.stMarkdown .autor-sc,66html body .autor-sc {67    font-variant: small-caps;68    color: #1a4d8f !important;69}70 71span.autor-sc {72    color: #0066cc !important;73}74 75/* Seções do dicionário (♦ ativa, ♦ média, ♦ passiva) */76.ddgp-sec {77    font-weight: 600;78    margin-top: 0.8em;79    margin-bottom: 0.3em;80    font-size: 1.05em;81}82/* força estilo das abreviaturas de autores */83.autor-sc,84p .autor-sc,85.stMarkdown p .autor-sc,86.stMarkdown .autor-sc {87    font-variant: small-caps;88    color: #0066cc !important;89}90 91/* aumenta fonte apenas no corpo do Streamlit */92:root {93    --ddgp-font-size: 23px;94}95 96div.stMarkdown, div.stText, div.stJson, div.stAlert {97    font-size: var(--ddgp-font-size);98}99 100#ddgp-instrucao {101    font-size: 24px !important;102    font-weight: 500;103}104 105