Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/samrobbins85/hugo-developer-portfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Robbins <samrobbinsgb@gmail.com>2020-06-28 21:19:23 +0300
committerSam Robbins <samrobbinsgb@gmail.com>2020-06-28 21:19:23 +0300
commitb8327e3a2616670797585aabb978a54a183bf9f4 (patch)
tree38191a90ab887d434142fc27f025189fd8ae0703
parent7440d02d0a5c45f640d465aebb26753b4349e40b (diff)
Styling for built with
-rw-r--r--layouts/_default/single.html25
1 files changed, 24 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 21edf71..733b01c 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -50,7 +50,9 @@
body p:last-child { margin-bottom: 0em; }
-
+ img.skills{
+ height: 80px;
+ }
@media only screen and (min-width: 960px) {
.content img{width:60%}}
@@ -112,6 +114,27 @@
{{end}}
<hr class="full-width">
+ <h2 class="uk-text-center uk-heading-small">Built with</h2>
+
+ <section >
+ <div class="uk-container">
+
+ <div class="uk-child-width-1-6@l uk-child-width-1-3@m uk-child-width-1-3@s uk-child-width-1-2 uk-text-center uk-flex-center"
+ uk-grid>
+ {{ range .Params.tech }}
+ <div class="imagemargin">
+ <a href="{{.url}}">
+ <img class="contain skills" src="{{.logo}}" alt="{{.name}}" loading="lazy" style="cursor: pointer">
+ </a>
+ </div>
+ {{ end }}
+ </div>
+
+ </div>
+
+ </section>
+
+ <hr class="full-width">
<div class="content">
{{.Content }}
</div>