- Posts: 155
- Thank you received: 10
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
html { font-size: 200%; }
Please Log in to join the conversation.
/******************
User custom CSS
In this file you can add your own custom CSS
It will be loaded last, so you can override any other property.
Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
.question-wrapper {font-size: x-large}
html {
font-size: 500%;
}
Please Log in to join the conversation.
.form-control{ font-size: inherit; }
Please Log in to join the conversation.
Non, c'est quasi impossible ça.Merci
Est-ce que ça va aussi doubler les tailles des polices fixées manuellement avec les outils d'édition de texte des questions ?
Please Log in to join the conversation.
C'est une copie de Fruity.Quel modèle ? J'ai testé sur fruity_twentythree : c'est OK.
*/
.question-wrapper {font-size: x-large}
html {
font-size: 500%;
}
.form-control{
font-size: inherit;
}
Tant mieux.Non, c'est quasi impossible ça.
Please Log in to join the conversation.
html { font-size: 100%; } body { font-size: 2rem; } .form-control{ font-size: inherit; }
Please Log in to join the conversation.
:root{ --bs-body-font-size : 2rem } .form-control{ font-size: inherit; }
Please Log in to join the conversation.
Celui-ci a fonctionné, merci ! (L'autre peut-être aussi, mais du coup je ne l'ai pas testé).Pour fuity (et sans doute vanilla)
Code:html { font-size: 100%; } body { font-size: 2rem; } .form-control{ font-size: inherit; }
Please Log in to join the conversation.
Please Log in to join the conversation.