CSS Code
01 | /* UI Object */ |
02 | .progress{ overflow : hidden ; height : 25px ; margin : 10px 0 0 ; background : url (http:// static .naver.com/groupware/ 2010 /bg_progress.gif); border-right : 1px solid #e3e3e3 ; font-family : '돋움' ,dotum; font-size : 11px ; line-height : 15px ; letter-spacing : -1px } |
03 | .progress .tit{ float : left ; position : relative ; z-index : 1000 ; width : 74px ; height : 20px ; margin : 0 ; padding : 5px 0 0 ; background : url (http:// static .naver.com/groupware/ 2010 /bg_progress_tit.gif) no-repeat ; font-size : 11px ; color : #fff ; line-height : 15px ; text-align : center } |
04 | .progress ol{ float : left ; margin : 0 ; padding : 0 } |
05 | .progress li,.progress li span{ background : url (http:// static .naver.com/groupware/ 2010 /bg_progress_item.gif) no-repeat ; font-size : 11px ; white-space : nowrap } |
06 | .progress li{ float : left ; margin : 0 0 0 -13px ; padding : 0 0 0 13px ; background-position : -287px 0 } |
07 | .progress li span{ display :inline- block ; height : 20px ; padding : 5px 28px 0 13px ; background-position : 100% top } |
08 | .progress li.on{ position : relative ; z-index : 10 ; background-position : 0 100% ; color : #fff } |
09 | .progress li.on span{ background : url (http:// static .naver.com/groupware/ 2010 /bg_progress_item.gif) no-repeat 100% 100% } |
10 | .progress li.last,.progress li.last span{ background : none } |
11 | .progress . right { position : absolute ; top : 6px ; right : 10px ; color : #444 } |
12 | /* //UI Object */ |
HTML Code
01 | <!-- UI Object --> |
02 | < div class = "progress" > |
03 | < strong class = "tit" >진행상태</ strong > |
04 | < ol > |
05 | < li class = "on" >< span >상세스펙 협의</ span ></ li > |
06 | < li >< span >담당자 배정</ span ></ li > |
07 | < li >< span >일정 협의</ span ></ li > |
08 | < li >< span >실무 협의</ span ></ li > |
09 | < li >< span >완료</ span ></ li > |
10 | </ ol > |
11 | </ div > |
12 | <!-- //UI Object --> |