XE 기본 서식 파일에서 특정 css class에 대해서만 서식 적용되도록 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6140 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-20 00:40:03 +00:00
parent caf26ad740
commit 8d8b680897
2 changed files with 9 additions and 38 deletions

View file

@ -1,9 +1,5 @@
/* xe_content */
.xe_content{ line-height:1.6; font-size:12px; font-family:AppleGothic, Sans-serif; color:#fff;}
.xe_content img{ border:0;}
.xe_content sup,
.xe_content sub{ font-size:10px; font-weight:normal; font-style:normal; color:#8b8b8b;}
.xe_content p{ margin-top:7px; margin-bottom:7px; font-weight:normal;}
.xe_content{ color:#fff;}
.xe_content blockquote.q1,
.xe_content blockquote.q2,
@ -40,29 +36,19 @@
.xe_content h6{ font-size:12px; border-bottom:1px dotted #666;}
/* Blockquote */
.xe_content q{ background-color:#666;}
.xe_content q { background-color:#666;}
/* Cite */
.xe_content cite{ font-style:normal; color:#8b8b8b;}
.xe_content cite { font-style:normal; color:#8b8b8b;}
/* Code */
.xe_content code{ font-family:"Courier New", Monospace; background-color:#998F73;}
.xe_content code.block{ position:relative; font-family:"Courier New", Monospace; line-height:1; display:block; padding:12px 15px 12px 15px; background-color:#998F73; -moz-border-radius:5px; -webkit-border-radius:5px;}
.xe_content code { font-family:"Courier New", Monospace; background-color:#998F73;}
.xe_content code.block { position:relative; font-family:"Courier New", Monospace; line-height:1; display:block; padding:12px 15px 12px 15px; background-color:#998F73; -moz-border-radius:5px; -webkit-border-radius:5px;}
/* Anchor */
.xe_content a.none{ color:#8b8b8b; padding-right:13px; margin-right:2px; background:url(./img/iconNone.gif); background-repeat:no-repeat; background-position:right center;}
.xe_content a.external{ padding-right:13px; margin-right:2px; background-image:url(./img/iconExternal.gif); background-repeat:no-repeat; background-position:right center;}
.xe_content a.blank{ padding-right:13px; margin-right:2px; background-image:url(./img/iconBlank.gif); background-repeat:no-repeat; background-position:right center;}
/* Table */
.xe_content caption{ font-weight:bold;}
.xe_content table th,
.xe_content table td{ border:1px solid #666; border-left:0; border-top:0; padding:2px 5px;}
.xe_content table th{ background:#333;}
.xe_content a.none { color:#8b8b8b; padding-right:13px; margin-right:2px; background:url(./img/iconNone.gif); background-repeat:no-repeat; background-position:right center;}
.xe_content a.external { padding-right:13px; margin-right:2px; background-image:url(./img/iconExternal.gif); background-repeat:no-repeat; background-position:right center;}
.xe_content a.blank { padding-right:13px; margin-right:2px; background-image:url(./img/iconBlank.gif); background-repeat:no-repeat; background-position:right center;}
/* Division */
.xe_content .mpDivision{ border:1px dotted #999; padding-left:15px; padding-right:15px; -moz-border-radius:5px; -webkit-border-radius:5px; background:#666;}
/* Definition */
.xe_content dt{ font-weight:bold; clear:both;}
.xe_content dd{ margin-left:0; clear:both;}