mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
Add support for paragraphs being clicked
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -40,6 +40,10 @@
|
|||||||
.dev-tools-img {
|
.dev-tools-img {
|
||||||
content:url(../../img/graphics/dev-tools-light.svg)
|
content:url(../../img/graphics/dev-tools-light.svg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dev-tools-link:hover p {
|
||||||
|
color: #000
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
@@ -71,6 +75,10 @@
|
|||||||
.connections-illustration {
|
.connections-illustration {
|
||||||
content:url(../../img/graphics/nodes-dark.png)
|
content:url(../../img/graphics/nodes-dark.png)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dev-tools-link:hover p {
|
||||||
|
color: #E0E0E1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.quickstart-image {
|
.quickstart-image {
|
||||||
@@ -98,7 +106,7 @@
|
|||||||
|
|
||||||
.page-docs-index {
|
.page-docs-index {
|
||||||
|
|
||||||
.dev-tools-links {
|
.dev-tools-link {
|
||||||
h6::before {
|
h6::before {
|
||||||
margin-top: -20px;
|
margin-top: -20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
@@ -110,12 +118,13 @@
|
|||||||
background: none!important;
|
background: none!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
p:hover {
|
&:hover p {
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
|
display: inline-block; // Inline blocks don't have underlines
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover{
|
a:hover {
|
||||||
color:#9A52FF;
|
color:#9A52FF;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,12 +78,10 @@
|
|||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro devToolsCard(link, title, description) %}
|
{% macro devToolsCard(link, title, description) %}
|
||||||
<div class="col dev-tools-links">
|
<a href="{{ link }}" class="col dev-tools-link">
|
||||||
<a href="{{ link }}">
|
<h6 class="btn-arrow">{{ title }}</h6>
|
||||||
<h6 class="btn-arrow">{{ title }}</h6>
|
<p class="no-underline"> {{ description }}</p>
|
||||||
</a>
|
</a>
|
||||||
<p> {{ description }}</p>
|
|
||||||
</div>
|
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user