-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (60 loc) · 1.3 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
*{
margin: 0;
padding: 0;
border: 0;
}
:root{
--primary-color: #f9f9f9;
--secondary-color: #4CAF50;
--border:1px solid #b0bd42;
--border-radius:20px;
}
/*style du titre*/
h1{
text-decoration: underline;
text-align: center;
}
/*style des paragraphes*/
p{
text-align: center;
font-weight: 50px;
}
/* Style du formulaire */
form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: var(--border);
border-radius:var(--border-radius);
background-color:var(--primary-color) ;
}
/* Style des labels */
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
/* Style des champs de saisie */
input[type="text"],
input[type="email"],
input[type="date"] {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: var(--border);
border-radius: var(--border-radius);
box-sizing: border-box; /* Garantit que la largeur inclut le rembourrage et la bordure */
}
/* Style du bouton d'envoi */
input[type="submit"] {
background-color:var(--secondary-color);
color: white;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: blink;
}
input[type="submit"]:hover {
background-color: var(--secondary-color);
}