février 16, 2006

MT3.2-ja-2・自己流スタイルシート記述

/* Base Weblog (base-weblog.css) */

/* basic elements */
body
{
margin: 0;
/* setting border: 0 hoses ie5 win window inner well border */
padding: 0;
font-family: verdana, 'trebuchet ms', sans-serif;
font-size: 12px;
}/*customize・文字サイズ*/
A:HOVER{position : relative;top : 1px;left : 1px;}/*マウスが上にあるとき位置をずらす*/
form, input { margin: 0; padding: 0; }
a { text-decoration: none; }/*customize・リンクの腺を消す*/
a img { border: 0; }
省略

/* basic page elements */

body
{
font-family: 'trebuchet ms', verdana, helvetica, arial, sans-serif;
font-size: 12px;
}/*customize・エントリ記事の文字サイズ*/

a { color: #36414d; text-decoration: none; }/*customize・リンクの腺を消す*/
a:hover { color: #36414d;background-color: #d7d7d7 }/*customize・マウスをのせると色がつく・エントリ記事*/

#banner a { color: #292e33; text-decoration: none; }/*customize・バナータイトル文字の色*/
#banner a:hover { color: #292e33;background-color: #d7d7d7 }/*customize・バナータイトル・マウスが上にあるリンク*/

.module-content a { color: #36414d; }
.module-content a:hover { color: #36414d;background-color: #d7d7d7 }/*customize・リンクの上にマウスがきたとき色をつける*/
省略
.archive-header
{
/* ie win (5, 5.5, 6) bugfix */
p\osition: relative;
width: 100%;
w\idth: auto;

margin: 0;
color: #292e33;
background-image: url("con_back.gif");
background-position: top left;
background-repeat: no-repeat;
font-family: Verdana, Arial, sans-serif;
font-size:10px;
text-align: left;
font-weight: bold;
padding:2px 0px 2px 26px;
line-height: 15px;
}/*customize・リストタイトルに画像をつける*/

省略
.archive-header a:hover
{
color: #292e33;
}/*customize・アーカイブリンクマウスオーバー色指定*/


Continue reading"MT3.2-ja-2・自己流スタイルシート記述" »