-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
68 lines (55 loc) · 983 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
64
65
66
h1, h2, h3, h4, ul, li, p {
margin: 0px;
padding: 0px;
}
img{
max-width: 100%; /*This will make the image fit into the container and not burst out of it*/
}
body{
font-family: Arial;
color: #333;
}
header{
padding: 50px;
background-color: cornflowerblue;
text-align: center;
color: white;
margin-bottom: 20px;
}
main{
max-width: 800px;
padding:20px;
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;
/* display: block; */
}
label{
display: block;
margin-bottom: 1rem;
}
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;
}