Created
July 10, 2024 04:01
-
-
Save jonschr/cfb546fa05eb87132b760604af323d4d to your computer and use it in GitHub Desktop.
Add sold out banner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Floor Plans Sold Out Red Banner */ | |
.floorplans-loop .type-floorplans.no-units-available:before { | |
background: #E4440F; | |
content: "Sold out"; | |
top: 50%; | |
left: 50%; | |
position: absolute; | |
z-index: 10; | |
padding: 12px 17px; | |
color: white; | |
text-transform: uppercase; | |
font-weight: bold; | |
letter-spacing: 0.05em; | |
line-height: 1; | |
border-radius: 3px; | |
transform: translateX( -50% ) translateY( -50% ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment