-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.css
79 lines (67 loc) · 1.42 KB
/
contacto.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
.header{
width: 100%;
height: 8rem;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin-top: 20px;
margin-bottom: 15px;
}
.nav-bg {
margin-top: 10rem;
}
.contenedor1 {
max-width: 100%;
max-height: 100%;
margin: 0 auto;
background-color: var(--blanco);
margin-bottom: 2rem;
margin-top: 15px;
display: flex;
justify-content: center;
align-items: center;
}
.sombra1 {
box-shadow: 0px 5px 15px 0px rgba(179,179,179,1);
background-color: #faf9f2;
padding: 2rem;
border-radius: 1rem;
}
.lbl_titulo{
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 5px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 16px;
}
.contForm{
width: 100%;
flex-direction: column;
justify-content: center;
align-items: start;
gap: 0.3rem;
}
input {
width: 100%;
height: 25px;
border: 2px solid #25686fb1;
border-radius: 5px;
}
textarea {
width: 100%;
border: 2px solid #25686fb1;
border-radius: 8px;
}
.btnEnviar {
width: 100%;
height: 55px;
background-color: #137d98;
margin-top: 45px;
border-radius: 5px;
}
.btnEnviar:hover {
opacity: 80%;
}