-
Notifications
You must be signed in to change notification settings - Fork 0
/
attraction.css
49 lines (46 loc) · 931 Bytes
/
attraction.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
.attraction-part {
padding: 20px;
.things-to-do {
display: flex;
gap: 20px;
justify-content: space-between;
width: 100%;
}
img {
width: 50%;
object-fit: cover;
}
p {
color: black;
}
div {
background-color: #fff;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 23%;
&:hover{transform: scale(.9);}
}
button {
margin-top: 10px;
padding: 10px;
background-color: #ffcc00;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
h2 {
color: black;
font-size: 3rem;
text-shadow: 8px 8px 4px rgba(12, 11, 11, 0.178);
}
h3 {
font-size: 2rem;
color: #003b5c;
text-shadow: 8px 8px 4px rgba(12, 11, 11, 0.37);
}
}