5.4 버전 내용 적용
This commit is contained in:
@ -1,15 +1,12 @@
|
||||
@charset "utf-8";
|
||||
|
||||
/* 방문자 집계 */
|
||||
#visit {border: 1px solid #d2d9e6; border-bottom: 1px solid #c1ccda;margin:40px 20px 20px;background:#fff;position:relative;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
||||
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
||||
box-shadow:0 1px 2px rgba(0,0,0,0.1)}
|
||||
#visit .btn_admin{position:absolute;top:10px;right:10px;height:25px;line-height:25px;padding:0 5px;border-radius:3px}
|
||||
#visit h2 {font-size:1.167em;text-align:center;padding-bottom:15px;padding-top:25px;color:#16b3d6;position:relative}
|
||||
#visit h2 i{position:absolute;top:-22px;left:50%;width:44px;line-height:44px;margin-left:-22px;border-radius:25px;background:#16b3d6;color:#fff}
|
||||
#visit dl {border-top:1px solid #e9e9e9;padding:10px 15px;border-radius:5px}
|
||||
#visit {position:relative}
|
||||
#visit .btn_admin {position:absolute;top:0;right:20px;height:25px;line-height:25px;padding:0 5px;border-radius:3px}
|
||||
#visit h2 {font-size:1.2em;margin-bottom:20px;text-align:left;color:#fff;position:relative}
|
||||
#visit dl {padding:10px 0}
|
||||
#visit dl:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#visit dt {float:left;width:20%;padding:0 5px;line-height:23px;height:23px;color:#555}
|
||||
#visit dt span{display:inline-block;width:5px;height:5px;border-radius:50%;vertical-align: middle;}
|
||||
#visit dd {float:left;;width:30%;padding:0 5px;;text-align:right;text-align:right;font-weight:bold;line-height:23px;height:23px;font-size:0.92em}
|
||||
#visit dd strong{display:inline-block;padding:0 5px;border-radius:20px;line-height:15px;color:#fff;}
|
||||
#visit dt {float:left;width:50%;text-align:left;line-height:23px;height:23px;color:#e3e3e3}
|
||||
#visit dt span {display:inline-block;width:5px;height:5px;border-radius:50%;vertical-align:middle;margin-right:10px;background:#3a8afd}
|
||||
#visit dd {float:left;width:50%;padding:0 5px;text-align:right;text-align:right;font-weight:bold;line-height:23px;height:23px;font-size:0.92em}
|
||||
#visit dd strong {display:inline-block;padding:0 5px;border-radius:20px;line-height:15px;color:#fff}
|
||||
|
||||
@ -8,18 +8,18 @@ add_stylesheet('<link rel="stylesheet" href="'.$visit_skin_url.'/style.css">', 0
|
||||
?>
|
||||
|
||||
<!-- 접속자집계 시작 { -->
|
||||
<section id="visit">
|
||||
<h2><i class="fa fa-users" aria-hidden="true"></i> 접속자집계</h2>
|
||||
<section id="visit" class="ft_cnt">
|
||||
<h2>접속자집계</h2>
|
||||
<dl>
|
||||
<dt><span class="color_1"></span> 오늘</dt>
|
||||
<dd><strong class="color_1"><?php echo number_format($visit[1]) ?></strong></dd>
|
||||
<dt><span class="color_2"></span> 어제</dt>
|
||||
<dd><strong class="color_2"><?php echo number_format($visit[2]) ?></strong></dd>
|
||||
<dt><span class="color_3"></span> 최대</dt>
|
||||
<dd><strong class="color_3"><?php echo number_format($visit[3]) ?></strong></dd>
|
||||
<dt><span class="color_4"></span> 전체</dt>
|
||||
<dd><strong class="color_4"><?php echo number_format($visit[4]) ?></strong></dd>
|
||||
<dt><span></span> 오늘</dt>
|
||||
<dd><strong><?php echo number_format($visit[1]) ?></strong></dd>
|
||||
<dt><span></span> 어제</dt>
|
||||
<dd><strong><?php echo number_format($visit[2]) ?></strong></dd>
|
||||
<dt><span></span> 최대</dt>
|
||||
<dd><strong><?php echo number_format($visit[3]) ?></strong></dd>
|
||||
<dt><span></span> 전체</dt>
|
||||
<dd><strong><?php echo number_format($visit[4]) ?></strong></dd>
|
||||
</dl>
|
||||
<?php if ($is_admin == "super") { ?><a href="<?php echo G5_ADMIN_URL ?>/visit_list.php" class="btn_admin">상세보기</a><?php } ?>
|
||||
<?php if ($is_admin == "super") { ?><a href="<?php echo G5_ADMIN_URL ?>/visit_list.php" class="btn_admin btn"><i class="fa fa-cog fa-spin fa-fw"></i><span class="sound_only">관리자</span></a><?php } ?>
|
||||
</section>
|
||||
<!-- } 접속자집계 끝 -->
|
||||
Reference in New Issue
Block a user