CoolFace
Apppublic

yboady/IA-coexya

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
style.css73 linesDownload Raw Back to static
1body {2  --text: hsl(0 0% 15%);3  font-family: 'Poppins', sans-serif; /* Utilisation de Poppins */4  color: var(--text);5}6 7body.dark-theme {8  --text: hsl(0 0% 90%);9  background-color: hsl(223 39% 7%);10}11 12main {13  width: fit-content;14  text-align: left;15  gap: 1rem;16}17 18section {19  display: flex;20  flex-direction: column;21  align-items: left;22  gap: 1rem;23}24 25a {26  color: var(--text);27}28 29form {30  width: fit-content;31  margin: 0 auto;32  gap: 1rem;33  display: flex;34  flex-direction: column;35}36 37input {38  width: 600px;39  font-size: 16px;40  padding-left: 12px;41  padding-right: 12px;42  padding-top: 12px;43  padding-bottom: 12px;44  border: 0.5px solid lightgrey;45  border-radius: 8px;46}47 48button {49  cursor: pointer;50  font-size: 18px;51  padding-left: 24px;52  padding-right: 24px;53  padding-top: 16px;54  padding-bottom: 16px;55  background-color: #33C1B1;56  font-weight: 600;57  color: white;58  border-style: none;59  border-radius: 16px;60  box-shadow: #33C1B1;61  width: fit-content;62}63 64.text-gen-output {65  width: 600px;66  font-size: 16px;67  padding-left: 12px;68  padding-right: 12px;69  padding-top: 12px;70  padding-bottom: 12px;71  min-height: 1.2rem;72}73