36 lines
1,004 B
PHP
36 lines
1,004 B
PHP
<?php
|
|
if (!defined('_GNUBOARD_'))
|
|
exit;
|
|
|
|
//if (defined('_INDEX_')) return;
|
|
|
|
/* *************************************
|
|
:: 좌측 메뉴 스타일 ::
|
|
-----------------------------------------
|
|
좌측메뉴로 설정했을 경우 출력되는 영역입니다.
|
|
|
|
- Menu Link 에서 class="change-link" 를 적용하는 경우
|
|
- 메뉴가 유지되며 링크가 이동됩니다.
|
|
************************************* */
|
|
add_stylesheet('<link rel="stylesheet" href="' . $menu_skin_url . '/css/style.R.css">', 0);
|
|
|
|
?>
|
|
<style>
|
|
<?php if ($header_inside) { // 메뉴가 박스 안쪽에 위치해야 할 경우 ?>
|
|
@media all and (min-width:1025px) {
|
|
#header {
|
|
<?php echo "right:50%; margin-right:-" . (($b_w / 2) - 20) . "px;"; ?>
|
|
}
|
|
}
|
|
|
|
@media all and (max-width:<?= ($b_w + 20) ?>px) and (min-width:1025px) {
|
|
#header {
|
|
right: 20px;
|
|
margin-right: 0px;
|
|
}
|
|
}
|
|
|
|
<?php } ?>
|
|
</style>
|
|
|
|
<?php @include_once $menu_skin_path . "/menu.cmm.inc.php"; ?>
|