You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
883 B
51 lines
883 B
@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: "roboto condensed", sans-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 {
|
|
} |