Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions pages/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,20 @@
filter: brightness(0.85) saturate(0.75);
}

.showcase-flip-container{
background-color: rgba(0, 0, 0, 0.32);
border-radius: 1rem;
padding: 1rem;

position: absolute;
top: 50%;
left: 12px;
z-index: 5;
}
.showcase-flip-container:hover{
background-color: rgba(0, 0, 0, 0.50);
}

.showcase-flip-left,
.showcase-flip-right {
position: absolute;
Expand Down Expand Up @@ -360,9 +374,13 @@ <h2>
{% endif %}
{% endfor %}
</div>

<div class="showcase-flip-left"></div>
<div class="showcase-flip-right"></div>
<!-- fix accesibility issue -->
<div class="showcase-flip-container">
<div class="showcase-flip-left"></div>
</div>
<div class="showcase-flip-container">
<div class="showcase-flip-right"></div>
</div>
</div>

<a href="/showcase/" class="btn btn-flat btn-flat-white btn-flat-frosted btn-see-showcase">
Expand Down