Skip to content

Commit

Permalink
remove max height/width image styling; add hyperlink to intro figure;
Browse files Browse the repository at this point in the history
  • Loading branch information
blendtwenty committed Feb 5, 2024
1 parent cb69e62 commit d831a55
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
10 changes: 6 additions & 4 deletions content/trailnap/_intro.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
---

<img src="/doge-placehodlr-bright.webp"/>
<img class="space-below center-div" src="/doge-placehodlr-bright.webp"/>

# Introduction

Expand All @@ -20,9 +20,11 @@ of development deficit that needed to be addressed before we would be able to
begin developing the features we beleive will establish Dogecoin as a viable
global currency for all humanity.

<figure>
<img src="/libdogecoin-ecosystem.png"/>
<figcaption align="center"><b>2022 Trailmap developer utility plan</b></figcaption>
<figure class="space-around center-div">
<a href="/libdogecoin-ecosystem.png" target="_blank">
<img src="/libdogecoin-ecosystem.png"/>
<figcaption align="center"><b>2022 Trailmap developer utility plan</b></figcaption>
</a>
</figure>

These projects: [libdogecoin](https://lib.dogecoin.org): a standard ANSI C library
Expand Down
38 changes: 33 additions & 5 deletions themes/hello-friend-ng/layouts/partials/head.trailmap.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
text-decoration: none;
}

.tm figure a {
color: unset;
text-decoration: none;
}

.tm a:hover {
text-decoration: underline;
}
Expand Down Expand Up @@ -137,16 +142,39 @@
}

.tm header img, .tm footer img {
max-width: 300px;
max-height: 300px;
background: #f1f1f2;
margin: 0em auto 4em auto;
@media only screen and (min-width: 980px) {
margin: 2em auto 5em auto;
max-width: 900px;

}
}

.tm .space-around {
margin-top: 1.5em;
margin-bottom: 2em;
@media only screen and (min-width: 980px) {
margin-top: 3em;
margin-bottom: 4em;
}
}

.tm .space-below {
margin-top: 0em;
margin-bottom: 3em;
@media only screen and (min-width: 980px) {
margin-top: 0em;
margin-bottom: 4em;
}
}

.tm .center-div {
margin-left: auto;
margin-right: auto;
}

.tm .center {
text-align: center;
}

.tm .card {
margin: 20px 0px 50px 0px;
width: auto;
Expand Down

0 comments on commit d831a55

Please sign in to comment.