Skip to content

Commit

Permalink
add opacity in buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Jovany-Vergara committed Jan 30, 2024
1 parent 660b6bf commit a05dae4
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,13 @@ p {

.clip-caption {
width: 100%;
position: absolute;
position: relative;
top: 50%;
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
z-index: 2;
}

.hexagon-each {
Expand Down Expand Up @@ -163,8 +164,17 @@ a.hexagon-each:hover {
right: 0;
bottom: 0;
left: 0;
background-color: #000000cc;
opacity: 0.5;
opacity: 1.5;
}
.hexagon-each.clip-gradient::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.486);
z-index: 1;
}

.social-each {
Expand Down

0 comments on commit a05dae4

Please sign in to comment.