Blog
前のページ
|
次のページ
2004/01/08のBlog
[ 18:06 ]
[ CSSを弄り倒そう ]
さぁはじめましょう。
.myblog-position { text-align : left ; }
まずleftをcenterにします。
次に
.myblog-contents { margin-right: auto; margin-left: auto;}
.myblog-header { margin-right: auto; margin-left: auto;}
table { margin-right: auto; margin-left: auto;}
.footer { margin-right: auto; margin-left: auto;}
これも同じ意味を持ちます
.myblog-contents, .myblog-header, table, .footer
{
margin-right: auto; margin-left: auto;
}
お好きな方を自分のCSSに貼り付けてください。
これで、InternetExplorer・Netscape・OPERA(win版) でもセンター表示されるようになります。
デザイン変更する場合、プレビュー機能を使いましょう。一応バックアップをお忘れなく。
訂正 .TABLE=× TABLE=○ ピリオドは要りませんでした。
.myblog-position { text-align : left ; }
まずleftをcenterにします。
次に
.myblog-contents { margin-right: auto; margin-left: auto;}
.myblog-header { margin-right: auto; margin-left: auto;}
table { margin-right: auto; margin-left: auto;}
.footer { margin-right: auto; margin-left: auto;}
これも同じ意味を持ちます
.myblog-contents, .myblog-header, table, .footer
{
margin-right: auto; margin-left: auto;
}
お好きな方を自分のCSSに貼り付けてください。
これで、InternetExplorer・Netscape・OPERA(win版) でもセンター表示されるようになります。
デザイン変更する場合、プレビュー機能を使いましょう。一応バックアップをお忘れなく。
訂正 .TABLE=× TABLE=○ ピリオドは要りませんでした。
2004/01/07のBlog
[ 17:14 ]
タグは無理でした。
ん~意地でも変えてやる・・・・
CSS直撃指定作戦 文字色変更来い!
ABCDE あいうえお
ん~意地でも変えてやる・・・・
CSS直撃指定作戦 文字色変更来い!
ABCDE あいうえお
[ 16:12 ]
[ CSSを弄り倒そう ]
CSSの習得をかねて、DoblogのCSS(デザイン)を弄り倒そうと思います。
パート1 超簡単!壁紙設定
body {
color : #000000 ;
background-color : #FFFFFF ;
background-image: url(ファイル名.gif) ;
}
bodyに background-image: url(ファイル名.gif); を追加記述するだけです。
まず画像を投稿して、その画像のURLをコピペでOK
別の方法で画像がアップできるのであれば、わかり次第書いておきます。
注意事項
設定変更の再は現状のCSSのバックアップは必須です。
設定変更のすべては自己責任でお願いします。
快適に見てもらうために余計な画像表示など、なるべく控えましょう。
尚、当方CSS初心者なので、気まぐれ・マイペース進行いたします。
パート1 超簡単!壁紙設定
body {
color : #000000 ;
background-color : #FFFFFF ;
background-image: url(ファイル名.gif) ;
}
bodyに background-image: url(ファイル名.gif); を追加記述するだけです。
まず画像を投稿して、その画像のURLをコピペでOK
別の方法で画像がアップできるのであれば、わかり次第書いておきます。
注意事項
設定変更の再は現状のCSSのバックアップは必須です。
設定変更のすべては自己責任でお願いします。
快適に見てもらうために余計な画像表示など、なるべく控えましょう。
尚、当方CSS初心者なので、気まぐれ・マイペース進行いたします。
2003/12/01のBlog
[ 14:01 ]
2003/09/11のBlog
[ 12:16 ]
/*****************************************************/
/* ヒヨコ君増殖中テンプレート プチ デザイン変更練習用 */
/* http://www.doblog.com/weblog/myblog/3613 */
/*****************************************************/
/*** 全体の背景設定 ***/
body {
color : #666666;
background-color : #FFFFFF;
text-align: center;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*********************************************/
/************** 自分用スペース ***************/
/*********************************************/
.blog img {
/* border: 1px solid #666666; */
}
hr {
color: #666666;
height: 1px;
}
/*********************************************/
/****************** Newtag *******************/
/*********************************************/
/*** この記事のURL・トラックバックURLの部分 ***/
.blog-linkurl {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 70%;
border-top: 1px dotted #ccc;
border-bottom: 1px dotted #ccc;
padding: 5px;
margin-bottom: 10px;
line-height: 150%;
}
.menu-contents P { margin: 0px 0px 2px }
/*** ブログタイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.myblog-header-text a:link {
color : #FFFFFF;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.myblog-header-text a:visited {
color : #FFFFFF;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.myblog-header-text a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.myblog-header-text a:active {
color : #999999;
text-decoration: none;
}
/*** 記事タイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.blog-title-title a:link {
color : #000000;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.blog-title-title a:visited {
color : #000000;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.blog-title-title a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.blog-title-title a:active {
color : #999999;
text-decoration: none;
}
/*********************************************/
/************** リンク色の設定 ***************/
/*********************************************/
/*** 未訪問リンク色 ***/
a:link { color : #0066CC;}
/*** 訪問済みリンク色 ***/
a:visited { color : #003366;}
/*** マウスを上に乗せたときの色 ***/
a:hover { color : #FF0000;}
/*** リンクをクリックしたときの色 ***/
a:active { color : #0099FF;}
/*********************************************/
/******************* form ********************/
/*********************************************/
form {
margin : 0px
}
input {
border: 1px solid #000;
margin: 2px;
}
form table input {
border: 1px solid #000;
height: 20px;
/*filter: Alpha(opacity=50)*/
}
textarea {
border: 1px solid #000;
margin: 2px;
}
/*********************************************/
/************* navigation table **************/
/*********************************************/
.myblog-position form table {
background-image: none;
position: absolute;
left: 0px;
top: 99px;
width: 680px;
color: #FFFFFF;
height: 50px;
}
.myblog-position form td { text-align: right;}
/*** Doblogナビゲーションリンク色 ***/
/*** 未訪問リンク色 ***/
.myblog-position A.portalbar:link { color: #FFFFFF; text-decoration: none;}
/*** 訪問済みリンク色 ***/
.myblog-position A.portalbar:visited { color: #FFFFFF; text-decoration: none;}
/*** マウスを上に乗せたときの色 ***/
.myblog-position A.portalbar:hover { color: #FF0000; text-decoration: none; background-color: transparent;}
/*** リンクをクリックしたときの色 ***/
.myblog-position A.portalbar:active { color: #FFFFFF; text-decoration: none;}
/*********************************************/
/******************** etc ********************/
/*********************************************/
/*** 外周ボーダー&メニュー部分背景色 ***/
.myblog-position {
text-align : left;
width: 690px;
position: relative;
background-color: #f7f7f7;
border: 1px solid #999;
margin-left: auto;
margin-right: auto;
}
.myblog-contents {
padding-bottom: 1px;
border-top: 1px solid #999999;
}
/*** NTT-DATA著作権部 ***/
.myblog-position .footer {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
width: auto;
margin-left: 15px;
margin-right: 15px;
margin-top: 0px;
background-color: transparent;
color: #000000;
}
/* ヒヨコ君増殖中テンプレート プチ デザイン変更練習用 */
/* http://www.doblog.com/weblog/myblog/3613 */
/*****************************************************/
/*** 全体の背景設定 ***/
body {
color : #666666;
background-color : #FFFFFF;
text-align: center;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*********************************************/
/************** 自分用スペース ***************/
/*********************************************/
.blog img {
/* border: 1px solid #666666; */
}
hr {
color: #666666;
height: 1px;
}
/*********************************************/
/****************** Newtag *******************/
/*********************************************/
/*** この記事のURL・トラックバックURLの部分 ***/
.blog-linkurl {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 70%;
border-top: 1px dotted #ccc;
border-bottom: 1px dotted #ccc;
padding: 5px;
margin-bottom: 10px;
line-height: 150%;
}
.menu-contents P { margin: 0px 0px 2px }
/*** ブログタイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.myblog-header-text a:link {
color : #FFFFFF;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.myblog-header-text a:visited {
color : #FFFFFF;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.myblog-header-text a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.myblog-header-text a:active {
color : #999999;
text-decoration: none;
}
/*** 記事タイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.blog-title-title a:link {
color : #000000;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.blog-title-title a:visited {
color : #000000;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.blog-title-title a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.blog-title-title a:active {
color : #999999;
text-decoration: none;
}
/*********************************************/
/************** リンク色の設定 ***************/
/*********************************************/
/*** 未訪問リンク色 ***/
a:link { color : #0066CC;}
/*** 訪問済みリンク色 ***/
a:visited { color : #003366;}
/*** マウスを上に乗せたときの色 ***/
a:hover { color : #FF0000;}
/*** リンクをクリックしたときの色 ***/
a:active { color : #0099FF;}
/*********************************************/
/******************* form ********************/
/*********************************************/
form {
margin : 0px
}
input {
border: 1px solid #000;
margin: 2px;
}
form table input {
border: 1px solid #000;
height: 20px;
/*filter: Alpha(opacity=50)*/
}
textarea {
border: 1px solid #000;
margin: 2px;
}
/*********************************************/
/************* navigation table **************/
/*********************************************/
.myblog-position form table {
background-image: none;
position: absolute;
left: 0px;
top: 99px;
width: 680px;
color: #FFFFFF;
height: 50px;
}
.myblog-position form td { text-align: right;}
/*** Doblogナビゲーションリンク色 ***/
/*** 未訪問リンク色 ***/
.myblog-position A.portalbar:link { color: #FFFFFF; text-decoration: none;}
/*** 訪問済みリンク色 ***/
.myblog-position A.portalbar:visited { color: #FFFFFF; text-decoration: none;}
/*** マウスを上に乗せたときの色 ***/
.myblog-position A.portalbar:hover { color: #FF0000; text-decoration: none; background-color: transparent;}
/*** リンクをクリックしたときの色 ***/
.myblog-position A.portalbar:active { color: #FFFFFF; text-decoration: none;}
/*********************************************/
/******************** etc ********************/
/*********************************************/
/*** 外周ボーダー&メニュー部分背景色 ***/
.myblog-position {
text-align : left;
width: 690px;
position: relative;
background-color: #f7f7f7;
border: 1px solid #999;
margin-left: auto;
margin-right: auto;
}
.myblog-contents {
padding-bottom: 1px;
border-top: 1px solid #999999;
}
/*** NTT-DATA著作権部 ***/
.myblog-position .footer {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
width: auto;
margin-left: 15px;
margin-right: 15px;
margin-top: 0px;
background-color: transparent;
color: #000000;
}
/*********************************************/
/****************** header *******************/
/*********************************************/
/*** ヘッダの幅&背景設定 ***/
.myblog-header {
background-color : #003366;
height: 150px;
width: 100%;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*** ブログタイトル設定 ***/
.myblog-header-text {
color: #FFFFFF;
font-size: 100%;
font-weight: bold;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 12px 15px 0px;
display: block;
clear: right;
}
/*** ブログタイトル横につく画像の設定 ***/
.myblog-header img {
float: left;
margin: 12px 15px 0px;
}
/*********************************************/
/******************* menu ********************/
/*********************************************/
/*** メニュー部の幅 ***/
.menu {
width : 182px;
float : left;
padding-top: 10px;
}
/*** メニュー見出し部分 ***/
.menu-header {
font-weight: bold;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #999;
color: #003366;
padding-bottom: 3px;
padding-top: 5px;
text-indent: 2px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** メニューコンテンツ部分 ***/
.menu-contents {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
line-height: 140%;
word-break: break-all;
padding: 5px 0px 5px 3px;
margin: 5px 0px 15px 5px;
}
/*** カレンダー幅 ***/
.menu table {
text-align: center;
font-size: 12px;
width: 170px;
}
nobr {
color: #000000;
white-space: normal;
}
/*********************************************/
/***************** calender ******************/
/*********************************************/
/*** カレンダー通常 ***/
.calender {
font-family: Verdana, "MS Pゴシック", Osaka, sans-serif;
padding-top: 2px;
padding-bottom: 2px;
}
/*** カレンダーフォーカス時 ***/
.calender-focus {
font-family: Verdana, "MS Pゴシック", Osaka, sans-serif;
padding-top: 2px;
padding-bottom: 2px;
}
/*********************************************/
/******************* blog ********************/
/*********************************************/
/*** ブログ部背景色・メニューとの境界線ボーダー ***/
.blog {
width : 494px;
float: right;
padding-bottom: 10px;
background-color: #FFFFFF;
border-left: 1px solid #999;
}
.blog-contents {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 5px;
}
.blog .blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #000000;
width: 100%;
text-indent: 10px;
padding-top: 5px;
padding-bottom: 5px;
display: none;
}
/*** このブログをブックマークする~部分 ***/
.blog-number {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
padding-bottom: 5px;
padding-top: 5px;
line-height: 140%;
}
.blog-category {
padding-bottom: 10px;
}
.blog-genre {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
.blog-search {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
/*** 前のページ・次のページ部分 ***/
.blog-pageselect {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
border: 1px solid #999;
padding: 5px;
margin-top: 5px;
}
/*** 記事の日付部分 ***/
.blog-date {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 5px;
clear: both;
margin-top: 10px;
text-indent: 5px;
}
.blog-entry {
margin-bottom: 40px;
}
.blog-title {
margin-bottom: 15px;
}
.blog-scene {
padding: 5px;
margin-bottom: 10px;
}
/*** 記事タイトル左下の時間・ジャンル部分 ***/
.blog-title-time {
font-size: 75%;
color: #999999;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
float: left;
}
/*** 記事タイトル部分 ***/
.blog-title-title {
font-weight: bold;
font-size: 90%;
color: #336699;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 2px;
padding-bottom: 3px;
margin-left: 4px;
margin-right: 4px;
}
/*** 記事タイトル右下のスライドショー・編集・削除部分 ***/
.blog-title-slide {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
padding: 5px;
color: #999999;
clear: right;
}
/*** 投稿画像のマージン・画像の位置 ***/
.blog-image {
float: right;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** 記事の文章フォント設定(サイズ・行間・種類など) ***/
.blog-text {
font-size: 75%;
line-height: 155%;
word-break: break-all;
font-family: "MS Pゴシック", Osaka, sans-serif;
}
/*** DoblogツールバーでURLを指定したときに出てくるリンク部 ***/
.blog-text-url {
margin-top: 1em;
word-break: break-all;
}
/*** 記事右下の最終更新部分 ***/
.blog-update {
clear: both;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
margin-bottom: 10px;
color: #999999;
margin-top: 30px;
}
.blog-entry-footer {
}
/*** トラックバックを見る書く部分 ***/
.blog-trackback {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
line-height: 140%;
}
/*** ↑ページトップ部分 ***/
.blog-pagetop {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
display: none;
}
/*********************************************/
/******************* popup *******************/
/*********************************************/
.blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #003366;
text-align: left;
margin-right: 5px;
margin-left: 5px;
border: none;
}
/*** ポップアップないの背景色など ***/
.blog-popup {
padding: 5px;
background-color: #f7f7f7;
text-align: left;
clear: both;
margin: 5px;
border: 1px solid #333333;
}
/*** ポップアップのフォント設定 ***/
.blog-popup-text {
line-height: 135%;
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size: 75%;
}
/*** 説明面倒なので省略 ***/
.blog-popup .blog-title-title {
font-weight: bold;
font-size: 100%;
color: #999;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 0px;
padding-bottom: 3px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 3px;
}
/*********************************************/
/******************** END ********************/
/*********************************************/
/****************** header *******************/
/*********************************************/
/*** ヘッダの幅&背景設定 ***/
.myblog-header {
background-color : #003366;
height: 150px;
width: 100%;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*** ブログタイトル設定 ***/
.myblog-header-text {
color: #FFFFFF;
font-size: 100%;
font-weight: bold;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 12px 15px 0px;
display: block;
clear: right;
}
/*** ブログタイトル横につく画像の設定 ***/
.myblog-header img {
float: left;
margin: 12px 15px 0px;
}
/*********************************************/
/******************* menu ********************/
/*********************************************/
/*** メニュー部の幅 ***/
.menu {
width : 182px;
float : left;
padding-top: 10px;
}
/*** メニュー見出し部分 ***/
.menu-header {
font-weight: bold;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #999;
color: #003366;
padding-bottom: 3px;
padding-top: 5px;
text-indent: 2px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** メニューコンテンツ部分 ***/
.menu-contents {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
line-height: 140%;
word-break: break-all;
padding: 5px 0px 5px 3px;
margin: 5px 0px 15px 5px;
}
/*** カレンダー幅 ***/
.menu table {
text-align: center;
font-size: 12px;
width: 170px;
}
nobr {
color: #000000;
white-space: normal;
}
/*********************************************/
/***************** calender ******************/
/*********************************************/
/*** カレンダー通常 ***/
.calender {
font-family: Verdana, "MS Pゴシック", Osaka, sans-serif;
padding-top: 2px;
padding-bottom: 2px;
}
/*** カレンダーフォーカス時 ***/
.calender-focus {
font-family: Verdana, "MS Pゴシック", Osaka, sans-serif;
padding-top: 2px;
padding-bottom: 2px;
}
/*********************************************/
/******************* blog ********************/
/*********************************************/
/*** ブログ部背景色・メニューとの境界線ボーダー ***/
.blog {
width : 494px;
float: right;
padding-bottom: 10px;
background-color: #FFFFFF;
border-left: 1px solid #999;
}
.blog-contents {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 5px;
}
.blog .blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #000000;
width: 100%;
text-indent: 10px;
padding-top: 5px;
padding-bottom: 5px;
display: none;
}
/*** このブログをブックマークする~部分 ***/
.blog-number {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
padding-bottom: 5px;
padding-top: 5px;
line-height: 140%;
}
.blog-category {
padding-bottom: 10px;
}
.blog-genre {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
.blog-search {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
/*** 前のページ・次のページ部分 ***/
.blog-pageselect {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
border: 1px solid #999;
padding: 5px;
margin-top: 5px;
}
/*** 記事の日付部分 ***/
.blog-date {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 5px;
clear: both;
margin-top: 10px;
text-indent: 5px;
}
.blog-entry {
margin-bottom: 40px;
}
.blog-title {
margin-bottom: 15px;
}
.blog-scene {
padding: 5px;
margin-bottom: 10px;
}
/*** 記事タイトル左下の時間・ジャンル部分 ***/
.blog-title-time {
font-size: 75%;
color: #999999;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
float: left;
}
/*** 記事タイトル部分 ***/
.blog-title-title {
font-weight: bold;
font-size: 90%;
color: #336699;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 2px;
padding-bottom: 3px;
margin-left: 4px;
margin-right: 4px;
}
/*** 記事タイトル右下のスライドショー・編集・削除部分 ***/
.blog-title-slide {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
padding: 5px;
color: #999999;
clear: right;
}
/*** 投稿画像のマージン・画像の位置 ***/
.blog-image {
float: right;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** 記事の文章フォント設定(サイズ・行間・種類など) ***/
.blog-text {
font-size: 75%;
line-height: 155%;
word-break: break-all;
font-family: "MS Pゴシック", Osaka, sans-serif;
}
/*** DoblogツールバーでURLを指定したときに出てくるリンク部 ***/
.blog-text-url {
margin-top: 1em;
word-break: break-all;
}
/*** 記事右下の最終更新部分 ***/
.blog-update {
clear: both;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
margin-bottom: 10px;
color: #999999;
margin-top: 30px;
}
.blog-entry-footer {
}
/*** トラックバックを見る書く部分 ***/
.blog-trackback {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
line-height: 140%;
}
/*** ↑ページトップ部分 ***/
.blog-pagetop {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
display: none;
}
/*********************************************/
/******************* popup *******************/
/*********************************************/
.blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #003366;
text-align: left;
margin-right: 5px;
margin-left: 5px;
border: none;
}
/*** ポップアップないの背景色など ***/
.blog-popup {
padding: 5px;
background-color: #f7f7f7;
text-align: left;
clear: both;
margin: 5px;
border: 1px solid #333333;
}
/*** ポップアップのフォント設定 ***/
.blog-popup-text {
line-height: 135%;
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size: 75%;
}
/*** 説明面倒なので省略 ***/
.blog-popup .blog-title-title {
font-weight: bold;
font-size: 100%;
color: #999;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 0px;
padding-bottom: 3px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 3px;
}
/*********************************************/
/******************** END ********************/
/*********************************************/
2003/09/02のBlog
[ 20:45 ]
/*****************************************************/
/* ヒヨコ君増殖中テンプレート 通常版デザイン変更練習用 */
/* http://www.doblog.com/weblog/myblog/3613 */
/*****************************************************/
/*** 全体の背景設定 ***/
body {
color : #666666;
background-color : #FFFFFF;
text-align: center;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/****************** OPTION *******************/
.blog img {
/* border: 1px solid #666666; */
}
hr {
color: #666666;
height: 1px;
}
/****************** Newtag *******************/
/*** この記事のURL・トラックバックURLの部分 ***/
.blog-linkurl {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
border-top: 1px dotted #ccc;
border-bottom: 1px dotted #ccc;
padding: 5px;
margin-bottom: 10px;
line-height: 150%;
}
.menu-contents P { margin: 0px 0px 2px }
/*** ブログタイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.myblog-header-text a:link {
color : #FFFFFF;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.myblog-header-text a:visited {
color : #FFFFFF;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.myblog-header-text a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.myblog-header-text a:active {
color : #999999;
text-decoration: none;
}
/*** 記事タイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.blog-title-title a:link {
color : #000000;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.blog-title-title a:visited {
color : #000000;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.blog-title-title a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.blog-title-title a:active {
color : #999999;
text-decoration: none;
}
/****************** links *******************/
/*** 未訪問リンク色 ***/
a:link { color : #0066CC;}
/*** 訪問済みリンク色 ***/
a:visited { color : #003366;}
/*** マウスを上に乗せたときの色 ***/
a:hover { color : #FF0000;}
/*** リンクをクリックしたときの色 ***/
a:active { color : #0099FF;}
/****************** form ********************/
form {
margin : 0px
}
input {
border: 1px solid #000;
margin: 2px;
}
form table input {
border: 1px solid #000;
height: 20px;
/*filter: Alpha(opacity=50)*/
}
textarea {
border: 1px solid #000;
margin: 2px;
}
/************* navigation table **************/
.myblog-position form table {
background-image: none;
position: absolute;
left: 0px;
top: 79px;
width: 765px;
color: #FFFFFF;
height: 50px;
}
.myblog-position form td { text-align: right;}
/*** Doblogナビゲーションリンク色 ***/
/*** 未訪問リンク色 ***/
.myblog-position A.portalbar:link { color: #FFFFFF; text-decoration: none;}
/*** 訪問済みリンク色 ***/
.myblog-position A.portalbar:visited { color: #FFFFFF; text-decoration: none;}
/*** マウスを上に乗せたときの色 ***/
.myblog-position A.portalbar:hover { color: #FF0000; text-decoration: none; background-color: transparent;}
/*** リンクをクリックしたときの色 ***/
.myblog-position A.portalbar:active { color: #FFFFFF; text-decoration: none;}
/******************** etc *********************/
/*** 外周ボーダー&メニュー部分背景色 ***/
.myblog-position {
text-align : left;
width: 776px;
position: relative;
background-color: #f7f7f7;
border: 1px solid #999;
margin-left: auto;
margin-right: auto;
}
.myblog-contents {
padding-bottom: 1px;
border-top: 1px solid #999999;
}
/*** NTT-DATA著作権部 ***/
.myblog-position .footer {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
width: auto;
margin-left: 10px;
margin-right: 10px;
margin-top: 0px;
background-color: transparent;
color: #000000;
}
/* ヒヨコ君増殖中テンプレート 通常版デザイン変更練習用 */
/* http://www.doblog.com/weblog/myblog/3613 */
/*****************************************************/
/*** 全体の背景設定 ***/
body {
color : #666666;
background-color : #FFFFFF;
text-align: center;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/****************** OPTION *******************/
.blog img {
/* border: 1px solid #666666; */
}
hr {
color: #666666;
height: 1px;
}
/****************** Newtag *******************/
/*** この記事のURL・トラックバックURLの部分 ***/
.blog-linkurl {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
border-top: 1px dotted #ccc;
border-bottom: 1px dotted #ccc;
padding: 5px;
margin-bottom: 10px;
line-height: 150%;
}
.menu-contents P { margin: 0px 0px 2px }
/*** ブログタイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.myblog-header-text a:link {
color : #FFFFFF;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.myblog-header-text a:visited {
color : #FFFFFF;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.myblog-header-text a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.myblog-header-text a:active {
color : #999999;
text-decoration: none;
}
/*** 記事タイトルリンクカラー ***/
/*** 未訪問リンク色 ***/
.blog-title-title a:link {
color : #000000;
text-decoration: none;
}
/*** 訪問済みリンク色 ***/
.blog-title-title a:visited {
color : #000000;
text-decoration: none;
}
/*** マウスを上に乗せたときの色 ***/
.blog-title-title a:hover {
color : #FF0000;
text-decoration: none;
}
/*** リンクをクリックしたときの色 ***/
.blog-title-title a:active {
color : #999999;
text-decoration: none;
}
/****************** links *******************/
/*** 未訪問リンク色 ***/
a:link { color : #0066CC;}
/*** 訪問済みリンク色 ***/
a:visited { color : #003366;}
/*** マウスを上に乗せたときの色 ***/
a:hover { color : #FF0000;}
/*** リンクをクリックしたときの色 ***/
a:active { color : #0099FF;}
/****************** form ********************/
form {
margin : 0px
}
input {
border: 1px solid #000;
margin: 2px;
}
form table input {
border: 1px solid #000;
height: 20px;
/*filter: Alpha(opacity=50)*/
}
textarea {
border: 1px solid #000;
margin: 2px;
}
/************* navigation table **************/
.myblog-position form table {
background-image: none;
position: absolute;
left: 0px;
top: 79px;
width: 765px;
color: #FFFFFF;
height: 50px;
}
.myblog-position form td { text-align: right;}
/*** Doblogナビゲーションリンク色 ***/
/*** 未訪問リンク色 ***/
.myblog-position A.portalbar:link { color: #FFFFFF; text-decoration: none;}
/*** 訪問済みリンク色 ***/
.myblog-position A.portalbar:visited { color: #FFFFFF; text-decoration: none;}
/*** マウスを上に乗せたときの色 ***/
.myblog-position A.portalbar:hover { color: #FF0000; text-decoration: none; background-color: transparent;}
/*** リンクをクリックしたときの色 ***/
.myblog-position A.portalbar:active { color: #FFFFFF; text-decoration: none;}
/******************** etc *********************/
/*** 外周ボーダー&メニュー部分背景色 ***/
.myblog-position {
text-align : left;
width: 776px;
position: relative;
background-color: #f7f7f7;
border: 1px solid #999;
margin-left: auto;
margin-right: auto;
}
.myblog-contents {
padding-bottom: 1px;
border-top: 1px solid #999999;
}
/*** NTT-DATA著作権部 ***/
.myblog-position .footer {
border: 1px solid #999;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
width: auto;
margin-left: 10px;
margin-right: 10px;
margin-top: 0px;
background-color: transparent;
color: #000000;
}
/******************* header ********************/
/*** ヘッダの幅&背景設定 ***/
.myblog-header {
background-color : #003366;
height: 130px;
width: 100%;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*** ブログタイトル設定 ***/
.myblog-header-text {
color: #FFFFFF;
font-size: 100%;
font-weight: bold;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 12px 15px 0px;
display: block;
clear: right;
}
/*** ブログタイトル横につく画像の設定 ***/
.myblog-header img {
float: left;
margin: 12px 15px 0px;
}
/******************** menu *********************/
/*** メニュー部の幅 ***/
.menu {
width : 192px;
float : left;
padding-top: 10px;
}
/*** メニュー見出し部分 ***/
.menu-header {
font-weight: bold;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #999;
color: #003366;
padding-bottom: 3px;
padding-top: 5px;
text-indent: 2px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** メニューコンテンツ部分 ***/
.menu-contents {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
line-height: 140%;
word-break: break-all;
padding: 5px 0px 5px 3px;
margin: 5px 0px 15px 5px;
}
/*** カレンダー幅 ***/
.menu table {
text-align: center;
font-size: 12px;
width: 178px;
}
nobr {
color: #000000;
white-space: normal;
}
/******************* calender *******************/
/*** カレンダー通常 ***/
.calender {
padding-top: 2px;
padding-bottom: 2px;
}
/*** カレンダーフォーカス時 ***/
.calender-focus {
padding-top: 2px;
padding-bottom: 2px;
}
/********************* blog *********************/
/*** ブログ部背景色・メニューとの境界線ボーダー ***/
.blog {
width : 570px;
float: right;
padding-bottom: 10px;
background-color: #FFFFFF;
border-left: 1px solid #999;
}
.blog-contents {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
}
.blog .blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #000000;
width: 100%;
text-indent: 10px;
padding-top: 5px;
padding-bottom: 5px;
display: none;
}
/*** このブログをブックマークする~部分 ***/
.blog-number {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
padding-bottom: 5px;
padding-top: 5px;
line-height: 140%;
}
.blog-category {
padding-bottom: 10px;
}
.blog-genre {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
.blog-search {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
/*** 前のページ・次のページ部分 ***/
.blog-pageselect {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
border: 1px solid #999;
padding: 5px;
margin-top: 5px;
}
/*** 記事の日付部分 ***/
.blog-date {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 5px;
clear: both;
margin-top: 10px;
text-indent: 5px;
}
.blog-entry {
margin-bottom: 40px;
}
.blog-title {
margin-bottom: 15px;
}
.blog-scene {
padding: 5px;
margin-bottom: 10px;
}
/*** 記事タイトル左下の時間・ジャンル部分 ***/
.blog-title-time {
font-size: 75%;
color: #999999;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
float: left;
}
/*** 記事タイトル部分 ***/
.blog-title-title {
font-weight: bold;
font-size: 90%;
color: #003366;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 2px;
padding-bottom: 3px;
margin-left: 4px;
margin-right: 4px;
}
/*** 記事タイトル右下のスライドショー・編集・削除部分 ***/
.blog-title-slide {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
padding: 5px;
color: #999999;
clear: right;
}
/*** 投稿画像のマージン・画像の位置 ***/
.blog-image {
float: right;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** 記事の文章フォント設定(サイズ・行間・種類など) ***/
.blog-text {
font-size: 75%;
line-height: 155%;
word-break: break-all;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-right: 5px;
padding-left: 5px;
}
/*** DoblogツールバーでURLを指定したときに出てくるリンク部 ***/
.blog-text-url {
margin-top: 1em;
word-break: break-all;
}
/*** 記事右下の最終更新部分 ***/
.blog-update {
clear: both;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
margin-bottom: 10px;
color: #999999;
}
.blog-entry-footer {
}
/*** トラックバックを見る書く部分 ***/
.blog-trackback {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
line-height: 140%;
}
/*** ↑ページトップ部分 ***/
.blog-pagetop {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
display: block;
}
/******************** popup ********************/
.blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #003366;
text-align: left;
margin-right: 5px;
margin-left: 5px;
border: none;
}
/*** ポップアップないの背景色など ***/
.blog-popup {
padding: 5px;
background-color: #f7f7f7;
text-align: left;
clear: both;
margin: 5px;
border: 1px solid #333333;
}
/*** ポップアップのフォント設定 ***/
.blog-popup-text {
line-height: 135%;
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size: 75%;
}
/*** 説明面倒なので省略 ***/
.blog-popup .blog-title-title {
font-weight: bold;
font-size: 100%;
color: #999;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 5px;
padding-bottom: 3px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 3px;
}
/********************* END **********************/
/*** ヘッダの幅&背景設定 ***/
.myblog-header {
background-color : #003366;
height: 130px;
width: 100%;
/* background-image: url("http://www.doblog.com/img/○○○/○○○/ファイル名"); */
}
/*** ブログタイトル設定 ***/
.myblog-header-text {
color: #FFFFFF;
font-size: 100%;
font-weight: bold;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 12px 15px 0px;
display: block;
clear: right;
}
/*** ブログタイトル横につく画像の設定 ***/
.myblog-header img {
float: left;
margin: 12px 15px 0px;
}
/******************** menu *********************/
/*** メニュー部の幅 ***/
.menu {
width : 192px;
float : left;
padding-top: 10px;
}
/*** メニュー見出し部分 ***/
.menu-header {
font-weight: bold;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #999;
color: #003366;
padding-bottom: 3px;
padding-top: 5px;
text-indent: 2px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** メニューコンテンツ部分 ***/
.menu-contents {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
line-height: 140%;
word-break: break-all;
padding: 5px 0px 5px 3px;
margin: 5px 0px 15px 5px;
}
/*** カレンダー幅 ***/
.menu table {
text-align: center;
font-size: 12px;
width: 178px;
}
nobr {
color: #000000;
white-space: normal;
}
/******************* calender *******************/
/*** カレンダー通常 ***/
.calender {
padding-top: 2px;
padding-bottom: 2px;
}
/*** カレンダーフォーカス時 ***/
.calender-focus {
padding-top: 2px;
padding-bottom: 2px;
}
/********************* blog *********************/
/*** ブログ部背景色・メニューとの境界線ボーダー ***/
.blog {
width : 570px;
float: right;
padding-bottom: 10px;
background-color: #FFFFFF;
border-left: 1px solid #999;
}
.blog-contents {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
}
.blog .blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #000000;
width: 100%;
text-indent: 10px;
padding-top: 5px;
padding-bottom: 5px;
display: none;
}
/*** このブログをブックマークする~部分 ***/
.blog-number {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
padding-bottom: 5px;
padding-top: 5px;
line-height: 140%;
}
.blog-category {
padding-bottom: 10px;
}
.blog-genre {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
.blog-search {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
line-height : 125%;
padding-top : 5px;
padding-bottom : 4px;
padding-left : 5px;
margin-bottom : 5px;
border: 1px solid #999999;
}
/*** 前のページ・次のページ部分 ***/
.blog-pageselect {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
text-align : right;
border: 1px solid #999;
padding: 5px;
margin-top: 5px;
}
/*** 記事の日付部分 ***/
.blog-date {
font-size: 70%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-top: 5px;
clear: both;
margin-top: 10px;
text-indent: 5px;
}
.blog-entry {
margin-bottom: 40px;
}
.blog-title {
margin-bottom: 15px;
}
.blog-scene {
padding: 5px;
margin-bottom: 10px;
}
/*** 記事タイトル左下の時間・ジャンル部分 ***/
.blog-title-time {
font-size: 75%;
color: #999999;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
float: left;
}
/*** 記事タイトル部分 ***/
.blog-title-title {
font-weight: bold;
font-size: 90%;
color: #003366;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 2px;
padding-bottom: 3px;
margin-left: 4px;
margin-right: 4px;
}
/*** 記事タイトル右下のスライドショー・編集・削除部分 ***/
.blog-title-slide {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
padding: 5px;
color: #999999;
clear: right;
}
/*** 投稿画像のマージン・画像の位置 ***/
.blog-image {
float: right;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
/*** 記事の文章フォント設定(サイズ・行間・種類など) ***/
.blog-text {
font-size: 75%;
line-height: 155%;
word-break: break-all;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding-right: 5px;
padding-left: 5px;
}
/*** DoblogツールバーでURLを指定したときに出てくるリンク部 ***/
.blog-text-url {
margin-top: 1em;
word-break: break-all;
}
/*** 記事右下の最終更新部分 ***/
.blog-update {
clear: both;
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
padding: 5px;
margin-bottom: 10px;
color: #999999;
}
.blog-entry-footer {
}
/*** トラックバックを見る書く部分 ***/
.blog-trackback {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
padding: 5px;
line-height: 140%;
}
/*** ↑ページトップ部分 ***/
.blog-pagetop {
font-size: 75%;
font-family: "MS Pゴシック", Osaka, sans-serif;
text-align: right;
display: block;
}
/******************** popup ********************/
.blog-header {
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size : 75%;
font-weight : bold;
color: #003366;
text-align: left;
margin-right: 5px;
margin-left: 5px;
border: none;
}
/*** ポップアップないの背景色など ***/
.blog-popup {
padding: 5px;
background-color: #f7f7f7;
text-align: left;
clear: both;
margin: 5px;
border: 1px solid #333333;
}
/*** ポップアップのフォント設定 ***/
.blog-popup-text {
line-height: 135%;
font-family: "MS Pゴシック", Osaka, sans-serif;
font-size: 75%;
}
/*** 説明面倒なので省略 ***/
.blog-popup .blog-title-title {
font-weight: bold;
font-size: 100%;
color: #999;
font-family: "MS Pゴシック", Osaka, sans-serif;
border-bottom: 1px dotted #666666;
padding-top: 5px;
padding-bottom: 3px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 3px;
}
/********************* END **********************/
前のページ
|
次のページ