-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
95 lines (83 loc) · 1.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
background-color: beige;
}
header.header1 {
display: flex;
background: linear-gradient(to right,rgb(158, 108, 15), orange);
height: 80px;
}
header .container {
margin-left: auto;
}
header #b1 {
background: linear-gradient(to right, rgb(234, 76, 76), rgb(224, 130, 146));
height: 30px;
margin-top: 25px;
margin-bottom: 10px;
}
h1, h2 {
text-align: center;
}
#p1 {
color: orange;
}
header button {
background: transparent;
height: 78px;
border-color: orange;
border: none;
outline:none;
cursor: pointer;
}
header button:hover {
background: rgb(158, 108, 15);
}
button {
color: white;
text-decoration: none;
font-size: 17px;
margin-left: auto;
}
header.header2 {
display: flex;
align-items: center;
background-color: rgb(68, 70, 106);
height: 250;
width: auto;
border-radius: 5px;
margin-left: 100px;
margin-right: 100px;
padding-top: 50px;
padding-bottom: 50px;
padding-left: 50px;
padding-right: 50px;
}
#b2 {
background: linear-gradient(to right, rgb(234, 76, 76), rgb(224, 130, 146));
height: 30px;
margin-bottom: 10px;
}
.form-container {
display: flex;
justify-content: space-between; /* Espace entre les formulaires */
}
.form {
display: flex;
flex-direction: column;
margin-right: 20px; /* Espace entre les formulaires */
}
label {
font-size: 16px;
color: white;
margin-bottom: 5px; /* Espace entre le label et le select */
}
select {
justify-items : center;
border-color: rgb(68, 70, 106);
border-bottom-color: white;
color: white;
background-color: rgb(68, 70, 106);
font-size: 16px;
padding: 5px;
margin-top: 5px; /* Espace entre le select et le label */
}