rewrite v1.0

This commit is contained in:
Pontoporeia
2023-05-02 20:17:58 +02:00
parent 763ad7d722
commit 4a1e4b696e
9 changed files with 301 additions and 25 deletions

View File

@@ -1,8 +1,26 @@
@font-face {
font-family: police1;
src: url("./fonts/Combinedd.otf");
src: url("./Combinedd.otf");
}
/* Dark theme */
/* UTILE POUR FORCER UN MODE LIGHT */
@media (prefers-color-scheme: dark) {
:root,
::backdrop {
--bg: #fff;
--accent-bg: #f5f7ff;
--text: #212121;
--text-light: #585858;
--border: #898EA4;
--accent: #0d47a1;
--code: #d81b60;
--preformatted: #444;
--marked: #ffdd33;
--disabled: #efefef;
}
}
body{
background-color: white;
}
@@ -10,15 +28,18 @@
/* ENTÊTE */
header {
font-family: 'police1';
background: linear-gradient(315deg, rgba(77, 168, 112, 1) 0%, rgba(193, 4, 252, 1) 66%);
background: linear-gradient(280deg, rgba(77, 168, 112, 1) 0%, rgba(193, 4, 252, 1) 85%);
text-decoration: none;
outline: none;
font-size: 2rem;
}
body > header h1 {
color: white;
margin: 3rem auto auto auto;
}
/* FORMULAIRE */
form label {
@@ -44,8 +65,8 @@
}
input {
font-family: police1;
font-weight: bold;
/* font-family: police1; */
/* font-weight: bold; */
background-color: none;
color: rgb(193, 4, 252);
border: 1px solid rgb(193, 4, 252);
@@ -72,10 +93,7 @@ input {
margin-top: 2rem;
}
body > header h1 {
color: white;
margin: 3rem auto auto auto;
}