-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
74 lines (64 loc) · 1.2 KB
/
style1.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
/* Basic styling for the body and main elements */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #eaeaea;
text-align: center;
color: #333;
}
header {
background-color: #007bff;
color: white;
padding: 20px;
margin-bottom: 20px;
}
h1 {
margin: 0;
font-size: 2.5em;
}
p {
font-size: 1.2em;
}
/* Styling for each place section */
.place {
background-color: white;
margin: 20px;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
}
.place img {
width: 200px;
height: 150px;
border-radius: 8px;
margin-right: 20px;
}
.place-info {
text-align: left;
}
.place-info h2 {
margin-top: 0;
color: #007bff;
}
button {
padding: 10px 15px;
margin: 5px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
footer {
background-color: #007bff;
color: white;
padding: 10px;
margin-top: 20px;
}