-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.css
112 lines (88 loc) · 1.6 KB
/
contato.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
font-family: 'Montserrat', sans-serif;
flex-flow: wrap;
}
header{
text-align: center;
background-color: #FFC107;
}
nav ul {
background-color: #FFA000;
display: flex;
justify-content: center;
gap: 58px;
}
li{
font-size: 30px;
font-weight: 700;
color: #FDFDFD;
}
#banner {
width: 100%;
}
.forms {
display: flex;
justify-content: center;
gap: 1%;
}
.fomulario {
margin-top: 1%;
display: flex;
flex-direction: column;
border: 1px solid #FFC107;
height: 680px;
width: 1000px;
border-radius: 20px;
}
h1 {
color: #FFC107;
font-size: 40px;
font-weight: 600;
margin-left: 40px;
margin-bottom: 50px;
margin-top: 20px;
}
input {
font-size: 18px;
text-indent:5%;
border:1px solid #FFC107;
margin-bottom: 23px;
border-radius: 7px;
width: 700px;
}
#nome,#email,#mensagem {
margin-left: 40px;
}
#nome,#email {
height: 40px;
}
#mensagem {
height: 350px;
}
#enviar {
border: none;
font-size: 16px;
color: #FDFDFD;
border-radius: 20px;
background-color: #FFC107;
width: 150px;
height: 40px;
margin-left: 38px;
cursor: pointer;
}
footer{
display: flex;
font-size: 18px;
background-color: #FFC107;
}
footer p {
margin: auto auto;
color: #FDFDFD;
font-size: 20px;
font-weight: 700;
}