-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (52 loc) · 864 Bytes
/
styles.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
h1,h2,h3,h4,ul,li,p {
margin: 0;
padding: 0;
}
img{ max-width: 100%; }
body{
font-family: Arial;
color: #333;
}
header{
padding: 51px;
background-color: cornflowerblue;
color: white;
text-align: center;
margin-bottom: 21px;
}
main{
max-width: 800px;
padding: 21px;
margin: auto;
display: flex;
justify-content: space-between;
}
main form{
width: 40%;
}
main article{
width: 45%;
}
h1, h2, h3, h4, p {
margin-bottom: 1em;
}
#title{
text-align: center;
}
label{
display: block;
margin-bottom: 1em;
}
input, textarea, #destination_details_form button {
display: block;
width: 100%;
margin-bottom: 1em;
border: 1px solid #666;
padding: 10px;
box-sizing: border-box;
}
.card{
padding: 20px;
background-color: #efefef;
margin-bottom: 20px;
}