diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-06 17:02:05 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-06 17:02:05 -0700 |
commit | 69fe1efa98ab9e08d416891f96e3c762f1ec0411 (patch) | |
tree | 9a2a2d37f87d5ceb69e00efefab47dd9c87c8d8e /view | |
parent | a48efe0bc0ff035137d519988619c6e79c371425 (diff) | |
download | volse-hubzilla-69fe1efa98ab9e08d416891f96e3c762f1ec0411.tar.gz volse-hubzilla-69fe1efa98ab9e08d416891f96e3c762f1ec0411.tar.bz2 volse-hubzilla-69fe1efa98ab9e08d416891f96e3c762f1ec0411.zip |
added hearts
Diffstat (limited to 'view')
-rw-r--r-- | view/profile.php | 2 | ||||
-rw-r--r-- | view/style.css | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/view/profile.php b/view/profile.php index 8ec9ab599..57130c073 100644 --- a/view/profile.php +++ b/view/profile.php @@ -53,7 +53,7 @@ </div>
<?php } ?>
<?php if(strlen($profile['marital'])) { ?>
-<div class="marital"><span class="marital-label">Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
+<div class="marital"><span class="marital-label"><span class="heart">♥</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
<?php } ?>
<?php if(strlen($profile['url'])) { ?>
<div class="homepage"><span class="homepage-label">Status: </span><span class="homepage-url"><?php echo $profile['homepage']; ?></span></div>
diff --git a/view/style.css b/view/style.css index 77f3d12c9..fa7fa58c0 100644 --- a/view/style.css +++ b/view/style.css @@ -39,6 +39,11 @@ img.photo { margin-left: 280px; } +.heart { + color: #FF0000; + font-size: 120%; +} + aside { position: absolute; left: 0px; |