diff --git a/css/main.scss b/css/main.scss index 0e76a6e..b8547e8 100644 --- a/css/main.scss +++ b/css/main.scss @@ -1,26 +1,31 @@ --- # Only the main Sass file needs front matter (the dashes are enough) --- @charset "utf-8"; @import "download.scss"; @import "home.scss"; @media (min-width: 768px) { - .kAppInfo a, .kAppInfo video, .kAppInfo-content { + .kAppInfo a, .kAppInfo video, .kAppInfo-content, .kTeamMember { flex: 1 0; } } + .kAppInfo a, .kAppInfo video { width: 100%; height: auto; margin: 15px; } .kAppInfo img { min-width: 100%; height: auto; margin: 0; } +.kTeamMember img { + margin-left: 15%; + box-shadow: 4px 4px 4px #808080; +} diff --git a/team/index.md b/team/index.md index ade89bc..a81b028 100644 --- a/team/index.md +++ b/team/index.md @@ -1,65 +1,65 @@ --- layout: page title: Team css-include: /css/main.css --- # The KMyMoney development team ## Who we are and what we do Our core development team is quite small, but KMyMoney was developed by many people. {% for dev in site.data.team %} {% if dev.active == true %} +

{{ dev.firstname }} {{ dev.name }}

Location: {{ dev.location }}
{% if dev.homepage %} Homepage: {{dev.homepage}}
{% endif %} Roles: {{ dev.roles }}
Since: {{ dev.since }}

About {{ dev.firstname }} {{dev.description | markdownify}}
-
+
Photo of {{ dev.firstname }} {{ dev.name }}
-
{% endif %} {% endfor %}







# Inactive Developers {% for dev in site.data.team %} {% if dev.active != true %} +

{{ dev.firstname }} {{ dev.name }}

Location: {{ dev.location }}
{% if dev.homepage %} Homepage: {{dev.homepage}}
{% endif %} Roles: {{ dev.roles }}
Since: {{ dev.since }}

About {{ dev.firstname }} {{dev.description | markdownify}}
-
+
Photo of {{ dev.firstname }} {{ dev.name }}
-
{% endif %} {% endfor %}