78 lines
1.4 KiB
CSS
78 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: police1;
|
|
src: url("./fonts/Combinedd.otf");
|
|
}
|
|
/*
|
|
body {
|
|
background-color: white;
|
|
} */
|
|
|
|
|
|
/* ENTÊTE */
|
|
header {
|
|
|
|
font-family: 'police1';
|
|
background: linear-gradient(315deg, rgba(77, 168, 112, 1) 0%, rgba(193, 4, 252, 1) 66%);
|
|
|
|
text-decoration: none;
|
|
outline: none;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
/* FORMULAIRE */
|
|
|
|
form label {
|
|
font-family: police1;
|
|
/* font-size: 1rem; */
|
|
}
|
|
|
|
form input,
|
|
select, textarea {
|
|
|
|
border-color: #c104fc;
|
|
border-radius: 5px;
|
|
border-style: solid;
|
|
overflow: visible;
|
|
outline: none;
|
|
background-color: white;
|
|
}
|
|
|
|
form input:focus,
|
|
select:focus {
|
|
border: 3px solid rgba(77, 168, 112, 1);
|
|
}
|
|
|
|
input {
|
|
font-family: police1;
|
|
/* font-size: 1rem; */
|
|
font-weight: bold;
|
|
/* padding: 1.2rem; */
|
|
border-radius: 16px;
|
|
background-color: none;
|
|
color: rgb(193, 4, 252);
|
|
border: 1px solid rgb(193, 4, 252);
|
|
/* text-align: center;
|
|
text-decoration: none;
|
|
cursor: pointer; */
|
|
}
|
|
/*
|
|
input:hover {
|
|
background-color: rgb(193, 4, 252);
|
|
color: white;
|
|
} */
|
|
|
|
input:active {
|
|
border-color: rgba(77, 168, 112, 1);
|
|
|
|
}
|
|
|
|
button, [role="button"], input[type="submit"], input[type="reset"], input[type="button"], label[type="button"] {
|
|
background-color: rgb(193, 4, 252);;
|
|
|
|
}
|
|
|
|
body > header h1 {
|
|
|
|
margin: 3rem auto auto auto;
|
|
}
|