diff --git a/assets/css/profileMode.css b/assets/css/profileMode.css index c3a95bce..456438ab 100644 --- a/assets/css/profileMode.css +++ b/assets/css/profileMode.css @@ -10,7 +10,11 @@ } .main>.profile>.profile_inner { - transform: translate(0, -20%); + transform: translate(0, -10%); +} + +.profile_inner h1 { + padding: 8px; } img { @@ -31,3 +35,19 @@ img { .social-icons { padding: 16px; } + +.buttons { + max-width: 300px; + line-height: 2.8; +} + +.button { + background: var(--tertiary); + border-radius: var(--radius); + margin: 8px; + padding: 8px; +} + +.button-inner { + padding: 10px; +} \ No newline at end of file diff --git a/layouts/partials/indexProfile.html b/layouts/partials/indexProfile.html index 284829bd..7757d510 100644 --- a/layouts/partials/indexProfile.html +++ b/layouts/partials/indexProfile.html @@ -12,5 +12,10 @@ {{ partial "social-icons.html" . }} {{- end }} + {{- with .Site.Params.profileMode.buttons }} +
+ {{- end }} \ No newline at end of file diff --git a/layouts/partials/indexProfileButtons.html b/layouts/partials/indexProfileButtons.html new file mode 100644 index 00000000..43ff7162 --- /dev/null +++ b/layouts/partials/indexProfileButtons.html @@ -0,0 +1,7 @@ +{{ range . -}} + +{{- end -}} \ No newline at end of file