-
Notifications
You must be signed in to change notification settings - Fork 0
/
obrigado-contato.css
125 lines (110 loc) · 2.5 KB
/
obrigado-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
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
background-color: #8f5faf;
display: flex;
justify-content: center;
align-items: center;
}
.sessao-contato {
width: 100vw;
height: 100vh;
background-color: #8f5faf;
display: flex;
align-items: center;
justify-content: center;
}
.sessao-contato .contato {
background-color: rgb(231, 226, 226);
width: 50%;
height: 50%;
border-top-right-radius: 3rem;
border-bottom-right-radius: 3rem;
box-shadow: 0 1rem 1rem 1rem rgb(0, 0, 0, 0.2);
}
.sessao-contato .contato img {
display: center;
margin-left: 30%;
margin-right: 50%;
margin-top: 5%;
margin-bottom: 1%;
width: 12rem;
height: 9rem;
}
.sessao-contato h1 {
width: 100%;
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
color: rgb(51, 48, 48);
font-size: 2rem;
text-transform: uppercase;
font-weight: lighter;
margin-bottom: 0.7rem;
}
.sessao-contato p {
width: 100%;
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
color: rgb(51, 48, 48);
font-size: 1rem;
text-transform: uppercase;
font-weight: lighter;
margin-bottom: 0.5rem;
}
.sessao-contato .btn-submit {
background: #8f5faf;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #fff;
border-radius: 0.5rem;
border: none;
box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, .4);
width: 50%;
height: 2rem;
margin-left: 25%;
font-size: 1rem;
text-transform: uppercase;
}
.sessao-contato .btn-submit:hover {
background: rgb(117, 113, 113);
box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2) ;
text-shadow: none;
}
@media (max-width: 769px) {
.sessao-contato{
width: 100vw;
}
.sessao-contato .contato {
width: 75%;
height: 75%;
border-top-left-radius: 3rem;
border-bottom-left-radius: 3rem;
}
.sessao-contato .contato img {
margin-left: 30%;
margin-top: 15%;
margin-bottom: 10%;
}
.sessao-contato h1 {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 2rem;
}
.sessao-contato .contato button.btn-submit{
width: 75%;
margin-left: 10%;
}
}
@media (max-width: 425px) {
.sessao-contato .contato img {
margin-left: 15%;
}
}
@media (max-width: 375px) {
.sessao-contato .contato img {
margin-left: 5%;
}
}