aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/profile_vcard.tpl26
-rw-r--r--view/theme/default/style.css21
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;
+}