diff options
author | Friendika <info@friendika.com> | 2010-12-14 14:15:31 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-14 14:15:31 -0800 |
commit | 78d8bcbc6023ae62d84c77cd91619bf0f016d376 (patch) | |
tree | 515ac31e57505a76bfc21bc7a5503bdad65974b4 /view | |
parent | 46bc84b2f26fd1370a89a8954d743f23925a4a11 (diff) | |
download | volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.tar.gz volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.tar.bz2 volse-hubzilla-78d8bcbc6023ae62d84c77cd91619bf0f016d376.zip |
personal config storage, template the vcard profile, logging failed uri's to help track down transient dreamhost issues
Diffstat (limited to 'view')
-rw-r--r-- | view/profile_vcard.tpl | 26 | ||||
-rw-r--r-- | view/theme/default/style.css | 21 |
2 files changed, 45 insertions, 2 deletions
diff --git a/view/profile_vcard.tpl b/view/profile_vcard.tpl new file mode 100644 index 000000000..81659af6a --- /dev/null +++ b/view/profile_vcard.tpl @@ -0,0 +1,26 @@ +<div class="vcard"> + + $fullname + + $tabs + + $photo + + <div id="profile-extra-links"> + <ul> + $connect + </ul> + </div> + + $location + + $gender + + $pubkey + +</div> + +$marital + +$homepage + diff --git a/view/theme/default/style.css b/view/theme/default/style.css index f20341dd6..491486794 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -188,7 +188,7 @@ img.photo { .heart { color: #FF0000; - font-size: 120%; + font-size: 100%; } aside { @@ -1893,4 +1893,21 @@ a.mail-list-link { #search-box { margin-bottom: 25px; -}
\ No newline at end of file +} + +.location-label, .gender-label, .marital-label, .homepage-label { + float: left; + text-align: right; + display: block; + width: 65px; +} + +.adr, .x-gender, .marital-text, .homepage-url { + float: left; + display: block; + margin-left: 8px; +} + +.profile-clear { + clear: both; +} |