-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
175 lines (147 loc) · 2.98 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@700&family=Shippori+Antique&display=swap');
:root {
--form-second-color: #edf2f7;
--form-second-color-text: #718096;
--form-color-text: #31314f;
--principal-color: #4c6fff;
--second-color: #fe7a15;
}
* {
margin: 0;
padding: 0;
text-decoration: none;
font-family: 'Shippori Antique', sans-serif;
}
.area-conteudo {
width: 50vw;
height: 100vh;
}
#aplicacao {
background-color: #FFFFFF;
}
#images {
background-color: var(--principal-color);
}
main {
display: flex;
}
.banner {
overflow: hidden;
background-image: url(/assets/imagens-de-fundo/Image.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.banner-dois
{
overflow: hidden;
background-image: url(/assets/imagens-de-fundo/cara-aviao.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.area-funcionalidade {
background-color: #FFFFFF;
margin: auto;
width: 500px;
height: 550px;
display: flex;
flex-direction: column;
}
.separacao {
display: flex;
flex-direction: column;
width: 100%;
}
.area-selecao {
display: flex;
max-width: 500px;
margin: auto;
}
.area {
width: 100%;
height: 100%;
}
.input {
border-top: none;
border-bottom: 1px solid var();
border-left: none;
border-right: none;
margin: 10px 0;
width: 200px;
}
.selecao {
margin-top: 40px;
background-color: #FFFFFF;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid var();
width: 200px
}
button {
color: #FFFFFF;
background-color: var(--second-color);
border-radius: 10px;
border: none;
margin-top: 50px;
width: 100%;
height: 40px;
}
.icon-input-pointer {
background-image: url(/assets/icons/point.png);
background-repeat: no-repeat;
padding-left: 20px;
}
.icon-input-calendar {
background-image: url(/assets/icons/calendar.svg);
background-repeat: no-repeat;
padding-left: 20px;
}
.area-conteudo h1 {
color: var(--principal-color);
font-family: Arial, Helvetica, sans-serif;
}
.area-conteudo h2 {
margin-top: 100px;
color: var(--form-second-color-text);
}
.tipo-viagem {
margin: 20px 0;
}
.tipo-viagem img {
margin: 20px 20px 0 0;
width: 15px;
padding: 10px;
}
.tipo-viagem img:hover {
border-bottom: 2px solid var(--second-color);
}
.segundo {
width: 50vw;
max-height: 350px;
background-color: var(--principal-color);
}
.anuncio {
margin: 60px;
}
.img-icons {
vertical-align: middle;
display: flex;
margin: 30px;
align-items: center;
}
.img-icons h1 {
font-size: 15px;
margin-left: 15px;
color: #FFFFFF;
}
.cards {
max-width: 70vw;
height: 100vh;
margin: auto;
margin-top: 200px;
}
.popover {
display: none !important;
}