-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
121 lines (112 loc) · 1.78 KB
/
contact.css
File metadata and controls
121 lines (112 loc) · 1.78 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.formulaire
{
margin-top: 100px;
border: solid #d4002a;
box-shadow: 1px 2px 6px 5px #d4002a;
border-radius: 5px;
width: 60%;
margin-left: auto;
margin-right: auto;
}
p.question
{
font-family: "Poppins", sans-serif;
font-size: 25px;
font-weight: 700;
line-height: 3.25rem;
text-align: center;
}
p.definition{
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 15px;
line-height: 1.8;
font-family: "Open Sans", sans-serif;
font-weight: 400;
letter-spacing: 0.1px;
color: #051922;
max-height: 81px;
max-width: 610px;
}
div.contact
{
margin-top: 50px;
}
@media (max-width:800px)
{
.definition{
margin-bottom: 100px;
}
.formulaire
{
width: 80%;
}
}
form.information
{
display: flex;
flex-direction: column;
margin-top: 50px;
}
.information input
{
margin-left: auto;
margin-right: auto;
width: 49%;
padding: 15px;
border: 2px solid #d4002a;
border-radius: 10px;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.information label
{
color: black;
font-weight: bold;
margin-left: 25%;
}
#Message
{
width: 49%;
border: 2px solid #d4002a;
padding: 15px;
height: 200px;
border-radius: 10px;
resize: none;
font-family: inherit;
font-size: inherit;
line-height: inherit;
margin-left: auto;
margin-right: auto;
}
#submit
{
border: 2px solid #d4002a;
color: #051922;
font-weight: 700;
text-transform: uppercase;
font-size: 15px;
width: 20%;
border-radius: 30px;
margin-bottom: 30px;
}
#submit:hover
{
background-color: #d4002a;
color: white;
}
@media (max-width:800px)
{
#submit
{
width: 30%;
}
}
#contact
{
background-color: black;
color: #d4002a;
border-radius: 10px;
}