동글동글 라운딩 하기

css/style.css
select { box-sizing: border-box; height: 30px; border-width: 1px; border-style: solid; padding: 0 10px; max-width: 100%; font-size: 12px; border-radius:10px; }

코멘트란
textarea {
box-sizing: border-box;
border-width: 1px;
border-style: solid;
padding: 5px;
width: 100%;
min-height: 50px;
border-radius:10px;
}

등록, 작성완료, 회원가입, 로그인 버튼
.ui-btn {
display: inline-block;
position: relative;
text-align: center;
border-width: 1px;
border-style: solid;
vertical-align: middle;
height: 28px;
padding: 0 15px;
box-sizing: border-box;
cursor: pointer;
border-radius:10px;
}

게시판관리, 글쓰기, 메인으로, 취소 버튼
a.ui-btn {
line-height: 26px;
border-radius:10px;
}

등록하기, 새로고침, 이모티콘, 관리자 버튼
.ui-btn.small {
height: 25px;
line-height: 23px;
font-size: 12px;
border-radius:10px;
}

.pg_wrap .pg_page {
display: inline-block;
position: relative;
height: 30px;
line-height: 28px;
min-width: 30px;
box-sizing: border-box;
padding: 0 5px;
font-size: 13px;
text-align: center;
vertical-align: middle;
border-width: 1px;
border-style: solid;
border-radius:10px;
}

아래 숫자 목록, 처음, 맨끝, 다음, 이전 버튼
.pg_wrap .pg_control {
overflow: hidden;
text-align: left;
text-indent: -999px;
border-radius:10px;
}



스킨별 list.skin.php 교체

게시판 카테고리 분류 별 각자 라운딩
<!-- 게시판 카테고리 시작 { -->
<?php if ($is_category) { ?>
<nav id="navi_category">
<ul id="bo_cate_ul">
<a href='?bo_table=<?=$bo_table?>' class='ui-btn <?=$sca == "" ? "point" : ""?>'>전체</a>
<?
$categories = explode("|", $board['bo_category_list']); // 구분자가 | 로 되어 있음
$str = "";
for ($i=0; $i<count($categories); $i++) {
$category = trim($categories[$i]);
if (!$category) continue;
$class = ' ';
if ($category == $sca) {
$class = ' point';
}
$str .= "<a href='?bo_table={$bo_table}&amp;sca={$categories[$i]}' class='ui-btn {$class}'>$categories[$i]</a>\n";
}

echo $str;
?>
</ul>
</nav>
<?php } ?>
<!-- } 게시판 카테고리 끝 -->]