-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (49 loc) · 1.38 KB
/
main.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
/* Styles for pagination buttons in the "beautiful rooms" section */
.bUKxlt .pagination-style-2 button {
border: 2px solid #9AA969;
position: relative;
}
.bUKxlt .pagination-style-2 button:before,
.bcwUIO .pagination-style-2 button:before {
background-color: #9AA969;
padding: 0px;
}
/* Placeholder text styling for a specific input field (ID-based targeting) */
#field-93a19208::placeholder {
color: transparent;
}
/* General styles for home product list items */
.home-product-list-item {
position: relative;
}
/* Show the "add-to-cart-container" on hover over product items */
.home-product-list-item:hover .add-to-cart-container {
visibility: visible;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
}
/* Default state of the "add-to-cart" container */
.add-to-cart-container {
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
visibility: hidden;
background-color: #3a3a3a9c;
position: absolute;
top: 0%;
text-align: center;
justify-content: center;
}
/* Button styles for a specific class */
.pf-cmIldm {
text-decoration: none;
border: 1px solid #283618 ;
padding: 10px 30px 40px 30px;
color: #283618;
font-size: 16px;
font-weight: 600;
}
/* Hover effect for the button */
.pf-cmIldm:hover {
background-color: #283618;
color: #fff;
}