Untitled
unknown
plain_text
a year ago
1.4 kB
9
Indexable
h3 {
color: #CBFC01;
}
.btndl {
padding: 5px 10px; /* Adjust padding for less space around the text */
background: #cbfc01;
color: black;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
display: inline-block;
/* Center the button */
position: relative;
left: 50%;
transform: translateX(-50%);
text-align: center;
/* Convert text to uppercase */
text-transform: uppercase;
/* Ensure no extra margins or spacing */
margin: 0;
line-height: 1; /* Adjust line height to match text size */
transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}
.btndl:hover {
background: #ce0ce8;
color: white;
}
.btnwo {
padding: 5px 10px; /* Adjust padding for less space around the text */
background: #00d0ff;
color: black;
text-decoration: none;
font-weight: bold;
border-radius: 4px;
display: inline-block;
/* Center the button */
position: relative;
left: 50%;
transform: translateX(-50%);
text-align: center;
/* Convert text to uppercase */
text-transform: uppercase;
/* Ensure no extra margins or spacing */
margin: 0;
line-height: 1; /* Adjust line height to match text size */
transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}
.btnwo:hover {
background: #ce0ce8;
color: white;
}
Editor is loading...
Leave a Comment