mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 04:05:49 +00:00
edits to the card class, js function at bottom of explore pages
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -122,10 +122,16 @@ td:nth-child(1) {
|
|||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
background: rgba(34, 37, 43, 0.5);
|
background: rgba(34, 37, 43, 0.5);
|
||||||
backdrop-filter: blur(3px);
|
backdrop-filter: blur(3px);
|
||||||
|
border-radius: 8px;
|
||||||
|
opacity: 1;
|
||||||
|
transition: all 0.35s ease-in-out;
|
||||||
@include media-breakpoint-down(sm) {
|
@include media-breakpoint-down(sm) {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
&.not-hover {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.section-marker {
|
.section-marker {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|||||||
@@ -111,6 +111,17 @@
|
|||||||
|
|
||||||
|
|
||||||
{% block endbody %}
|
{% block endbody %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
$( '.card-b' )
|
||||||
|
.mouseover( function(e){
|
||||||
|
$( '.card-b' ).addClass( 'not-hover' );
|
||||||
|
$( this ).removeClass( 'not-hover' );
|
||||||
|
})
|
||||||
|
.mouseout( function(e){
|
||||||
|
$( '.card-b' ).removeClass( 'not-hover' );
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
<script type="application/javascript">
|
<script type="application/javascript">
|
||||||
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -77,6 +77,16 @@
|
|||||||
|
|
||||||
|
|
||||||
{% block endbody %}
|
{% block endbody %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
$( '.card-b' )
|
||||||
|
.mouseover( function(e){
|
||||||
|
$( '.card-b' ).addClass( 'not-hover' );
|
||||||
|
$( this ).removeClass( 'not-hover' );
|
||||||
|
})
|
||||||
|
.mouseout( function(e){
|
||||||
|
$( '.card-b' ).removeClass( 'not-hover' );
|
||||||
|
});
|
||||||
|
</script>
|
||||||
<script type="application/javascript">
|
<script type="application/javascript">
|
||||||
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -69,6 +69,16 @@
|
|||||||
|
|
||||||
|
|
||||||
{% block endbody %}
|
{% block endbody %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
$( '.card-b' )
|
||||||
|
.mouseover( function(e){
|
||||||
|
$( '.card-b' ).addClass( 'not-hover' );
|
||||||
|
$( this ).removeClass( 'not-hover' );
|
||||||
|
})
|
||||||
|
.mouseout( function(e){
|
||||||
|
$( '.card-b' ).removeClass( 'not-hover' );
|
||||||
|
});
|
||||||
|
</script>
|
||||||
<script type="application/javascript">
|
<script type="application/javascript">
|
||||||
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
gtag('config', 'UA-157720658-3', {'content_group1': 'Hub Pages'});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user