모바일: 작업 중3
This commit is contained in:
@ -104,6 +104,15 @@ sup {display:none !important}
|
||||
/* 게시판 목록 */
|
||||
.bo_list table {margin-bottom:20px;width:100%;border-collapse:collapse;border-spacing:0}
|
||||
|
||||
.bo_list th {padding:12px 0 8px;background:#565e60;color:#fff}
|
||||
.bo_list th a {color:#fff;text-decoration:none}
|
||||
|
||||
.bo_list td {border-bottom:1px solid #ddd}
|
||||
.bo_list td a {display:block;padding:10px 5px;color:#000;text-decoration:none}
|
||||
|
||||
.bo_list img {margin-right:4px}
|
||||
.bo_list img:nth-last-of-type(1) {margin-right:0}
|
||||
|
||||
/* 관리자일 때 생략 */
|
||||
#bo_list_admin th:nth-of-type(1) {display:none}
|
||||
#bo_list_admin th:nth-of-type(4) {display:none}
|
||||
@ -129,15 +138,6 @@ sup {display:none !important}
|
||||
#bo_list td:nth-of-type(5) {display:none}
|
||||
#bo_list td:nth-of-type(6) {display:none}
|
||||
|
||||
#bo_list th {padding:12px 0 8px;background:#565e60;color:#fff}
|
||||
#bo_list th a {color:#fff;text-decoration:none}
|
||||
|
||||
#bo_list td {border-bottom:1px solid #ddd}
|
||||
#bo_list td a {display:block;padding:10px 5px;color:#000;text-decoration:none}
|
||||
|
||||
#bo_list img {margin-right:4px}
|
||||
#bo_list img:nth-last-of-type(1) {margin-right:0}
|
||||
|
||||
.bo_fx {margin-bottom:5px;zoom:1}
|
||||
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
.bo_fx ul {margin:0;padding:0;list-style:none}
|
||||
|
||||
8
head.php
8
head.php
@ -13,6 +13,14 @@ if (G4_IS_MOBILE) {
|
||||
include_once(G4_MOBILE_PATH.'/head.php');
|
||||
return;
|
||||
}
|
||||
|
||||
// 상단 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
|
||||
if ($config['cf_include_head']) {
|
||||
if (!@include_once($config['cf_include_head'])) {
|
||||
die('기본환경 설정에서 상단 파일 경로가 잘못 설정되어 있습니다.');
|
||||
}
|
||||
return; // 이 코드의 아래는 실행을 하지 않습니다.
|
||||
}
|
||||
?>
|
||||
|
||||
<header id="hd">
|
||||
|
||||
8
tail.php
8
tail.php
@ -5,6 +5,14 @@ if (G4_IS_MOBILE) {
|
||||
include_once(G4_MOBILE_PATH.'/tail.php');
|
||||
return;
|
||||
}
|
||||
|
||||
// 하단 파일 경로 지정 : 이 코드는 가능한 삭제하지 마십시오.
|
||||
if ($config['cf_include_tail']) {
|
||||
if (!@include_once($config['cf_include_tail'])) {
|
||||
die('기본환경 설정에서 하단 파일 경로가 잘못 설정되어 있습니다.');
|
||||
}
|
||||
return; // 이 코드의 아래는 실행을 하지 않습니다.
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user