diff options
author | redmatrix <git@macgirvin.com> | 2016-02-01 21:14:36 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-01 21:14:36 -0800 |
commit | 15e003f030523b0284be20d0d5b86b47079420c0 (patch) | |
tree | 33ef5aeb31865bac515eef5dc0731187d6ae7e86 /view/tpl/zcard.tpl | |
parent | 5edbc008659141349857363974f3760c41e7a5e5 (diff) | |
download | volse-hubzilla-15e003f030523b0284be20d0d5b86b47079420c0.tar.gz volse-hubzilla-15e003f030523b0284be20d0d5b86b47079420c0.tar.bz2 volse-hubzilla-15e003f030523b0284be20d0d5b86b47079420c0.zip |
missing template
Diffstat (limited to 'view/tpl/zcard.tpl')
-rw-r--r-- | view/tpl/zcard.tpl | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/view/tpl/zcard.tpl b/view/tpl/zcard.tpl new file mode 100644 index 000000000..7572ad2cb --- /dev/null +++ b/view/tpl/zcard.tpl @@ -0,0 +1,50 @@ +<style> +.hz_card { + -moz-transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}}); + transform: translate(-{{$translate}}%, -{{$translate}}%) scale({{$scale}}, {{$scale}}); +} +.hz_cover_photo { + max-width: 100%; +} +.hz_profile_photo { + position: relative; + top: -300px; + left: 30px; + background-color: white; + border: 1px solid #ddd; + border-radius: 5px; + -moz-border-radius: 5px; + padding: 10px; + width: 320px; + height: 320px; +} + +.hz_name { + position: relative; + top: -100px; + left: 400px; + color: #fff; + font-size: 48px; + text-rendering: optimizelegibility; + text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); +} +.hz_addr { + position: relative; + top: -110px; + left: 400px; + color: #fff; + font-size: 24px; + text-rendering: optimizelegibility; + text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); +} + +</style> + +<div class="hz_card"> + <div class="hz_cover_photo"><img src="{{$cover.href}}" alt="{{$zcard.chan.xchan_name}}" /> + <div class="hz_name">{{$zcard.chan.xchan_name}}</div> + <div class="hz_addr">{{$zcard.chan.channel_addr}}</div> + </div> + <div class="hz_profile_photo"><img src="{{$pphoto.href}}" alt="{{$zcard.chan.xchan_name}}" /></div> +</div> + |