-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 1.17 KB
/
style.css
File metadata and controls
44 lines (38 loc) · 1.17 KB
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
.nft-marketplace-buttons {
display: flex;
justify-content: center; /* Center the button horizontally */
align-items: center; /* Center the button vertically, if needed */
}
.nft-marketplace-buttons .nft-button {
display: inline-flex;
align-items: center;
text-decoration: none;
padding: 8px 12px;
border-radius: 4px;
color: inherit; /* Button text color */
transition: transform 0.3s ease, background-color 0.3s ease; /* Add transition for animation */
}
.nft-marketplace-buttons .nft-button svg {
height: 24px; /* Adjusted size */
margin-right: 8px;
}
.nft-marketplace-buttons .nft-button .nft-icon {
display: flex;
align-items: center;
}
.nft-marketplace-buttons .nft-button .nft-icon img {
height: 24px;
display: inline-block;
vertical-align: middle;
margin-right: 8px;
}
.nft-marketplace-buttons .nft-button .buy-text {
color: black; /* Text color for "Buy on" */
margin-right: 8px; /* Space between text and icon */
}
.nft-marketplace-buttons .nft-button:hover {
transform: scale(1.05);
/* Slightly enlarge the button */
background-color: #f0f0f0;
/* Change background color on hover */
}