better organization on skills section

This commit is contained in:
shockrah 2020-02-05 20:21:23 -08:00
parent 3583672bea
commit 286de66401
2 changed files with 6 additions and 2 deletions

View File

@ -18,6 +18,7 @@
<div class="col-sm-8 text-white pt-3"> <div class="col-sm-8 text-white pt-3">
{{ partial "project.html" . }} {{ partial "project.html" . }}
{{ partial "experience.html" . }} {{ partial "experience.html" . }}
{{ partial "skill.html" }}
</div> </div>
</div> </div>
@ -25,6 +26,9 @@
</body> </body>
<style> <style>
.skill-type { .skill-type {
color: #ffc107;
}
.skill-indent {
text-indent: 30px; text-indent: 30px;
} }
</style> </style>

View File

@ -2,7 +2,7 @@
<h3>{{ .Site.Params.language.title }}</h3> <h3>{{ .Site.Params.language.title }}</h3>
<ul class="list-unstyled" style="text-indent: 1.25em;"> <ul class="list-unstyled" style="text-indent: 1.25em;">
{{ range .Site.Params.language.list }} {{ range .Site.Params.language.list }}
<div class="skill-indent">{{ .type }}</div> <div class="skill-type">{{ .type }}</div>
<div class="skill-type">{{ .language }}</div><br> <div class="skill-indent">{{ .language }}</div><br>
{{ end }} {{ end }}
</ul> </ul>