-
Notifications
You must be signed in to change notification settings - Fork 0
/
places.css
126 lines (107 loc) · 2.16 KB
/
places.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
body {
background-color: rgb(255, 255, 255);
}
img {
height: 250px;
}
.col {
padding: 10px;
}
a{
text-decoration: none;
}
a:hover{
text-decoration: none;
}
.fa-solid{
font-size: x-small;
}
.card {
background-color: #fff;
transition: transform 0.3s ease;
}
.card:hover {
transform: scale(1.02);
}
.shadow-custom {
box-shadow: 5px 5px 8px rgba(84, 84, 85, 0.5);
border-radius: 30px;
transition: transform 0.3s, box-shadow 0;
}
.card-img-top {
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}
.navbar-custom {
background: rgb(165, 165, 221);
height: 40px;
/* background-color: rgba(255, 255, 255, 0.7); Transparent background */
padding: 1rem;
}
.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
color: rgb(0, 0, 0); /* Black text */
}
.navbar-custom .nav-link:hover {
color: #181515; /* Darker text on hover */
}
/* Centered nav items */
.navbar-nav {
height: 40px;
margin-left: auto; /* Pushes navbar items to the right */
}
.navbar-nav .nav-item {
margin-left: 20px;
}
.nav-item {
font-size: 1rem;
padding: 40px;
padding-top: 0px;
text-decoration: none;
}
.nav-item:hover {
text-decoration: none;
}
.col-md-2 {
width: 200px;
}
img {
height: 250px;
}
.card .btn-location {
background-color: #28a745; /* Green background */
color: white; /* White text */
border: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}
.card .btn-location:hover {
background-color: #218838; /* Darker green on hover */
transform: scale(1.05); /* Slightly larger on hover */
}
h2{
font-family: "Dancing Script", cursive;
color: rgb(62, 60, 139);
font-size: 40px;
}
h5{
font-family: cursive;
}
.card {
position: relative;
}
.card .fa-heart {
position: absolute;
top: 20px;
right: 20px;
font-size: 24px;
color: rgb(250, 247, 247);
}
.fa-location-dot{
font-size: 20px;
/* color: green; */
}
.fa-heart{
color: red;
}