mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-04 20:05:50 +00:00
adds text shadow to footer items
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,6 +1,13 @@
|
||||
/* Footer ------------------------------------------------------------------- */
|
||||
|
||||
.xrpl-footer {
|
||||
.footer-nav{
|
||||
.nav-item{
|
||||
text-shadow: black 0px 0px 2px, black 1px 1px 2px, black 2px 2px 3px,
|
||||
black 2px 2px 4px, black 2px 2px 5px, black 2px 2px 6px, black -1px -1px 2px,
|
||||
black -2px -2px 3px, black -2px -2px 4px;
|
||||
}
|
||||
}
|
||||
padding: 7.5rem 2rem;
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
|
||||
@@ -993,4 +993,10 @@ $placeholder-color: $gray-600;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.footer-nav{
|
||||
.nav-item{
|
||||
text-shadow: white 0px 0px 2px, white 1px 1px 2px, white 2px 2px 3px,
|
||||
white 2px 2px 4px, white 2px 2px 5px, white 2px 2px 6px, white -1px -1px 2px,
|
||||
white -2px -2px 3px, white -2px -2px 4px;
|
||||
}
|
||||
}
|
||||
@@ -5,9 +5,9 @@
|
||||
<div class="col-lg">
|
||||
<h5>{% if parent_page.top_nav_name is defined %}{{ parent_page.top_nav_name }}{% else %}{{parent_page.name}}{% endif %}</h5>
|
||||
<ul class="nav footer-nav flex-column">
|
||||
<li class="nav-item"><a href="{% if '//' not in parent_page.html %}{{currentpage.prefix}}{% endif %}{{parent_page.html}}" class="nav-link">{{parent_page.name}}</a></li>
|
||||
<li class="nav-item "><a href="{% if '//' not in parent_page.html %}{{currentpage.prefix}}{% endif %}{{parent_page.html}}" class="nav-link">{{parent_page.name}}</a></li>
|
||||
{% for page in parent_page.children %}
|
||||
<li class="nav-item"><a href="{% if '//' not in page.html %}{{currentpage.prefix}}{% endif %}{{page.html}}" class="nav-link{% if '//' in page.html %} external-link{% endif %}">{% if page.top_nav_name is defined %}{{page.top_nav_name}}{% else %}{{page.name}}{% endif %}</a></li>
|
||||
<li class="nav-item "><a href="{% if '//' not in page.html %}{{currentpage.prefix}}{% endif %}{{page.html}}" class="footer-nav-item nav-link{% if '//' in page.html %} external-link{% endif %}">{% if page.top_nav_name is defined %}{{page.top_nav_name}}{% else %}{{page.name}}{% endif %}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div><!--/.col -->
|
||||
|
||||
Reference in New Issue
Block a user