@import url(./style.css); /* ====== DARK MODE ====== */ body.dark-mode h1, body.dark-mode h2, body.dark-mode p { color: var(--main-dark-text-color); } body.dark-mode #box{ background: var(--main-dark-other-color); } /* ====== LIGHT MODE ====== */ body.light-mode h1, body.light-mode h2, body.light-mode p { color: var(--main-light-text-color); } body.light-mode #box{ background: var(--main-light-other-color); } /* ====== ECRAN DEFAULT ====== */ h1, h2{ font-family: "Lemon", serif; text-align: center; } #box { display: flex; flex-direction: column; height: 60vh; width: 60vw; margin: auto; padding: 2%; border-radius: 25px; } /* ====== DIVERS ====== */ #contentField, #characterField, #sourceField, #imageField { } #contentField p, #characterField p, #sourceField p, #imageField p { } #confirm { }