/*このファイルではテキストの大きさや色などを変更する事が出来ます。*/ /******************************************/ body{/*全体的な設定*/ margin:100px; /*全体の余白*/ text-align:center; /*センタリングIEバグ回避用*/ } /******************************************/ a:link , a:visited , a:hover , a:active{/*リンクフォントの設定*/ color: #88f; /*リンクの色*/ text-decoration: none; /*リンク下線の設定。underlineで下線有り。noneで下線無し。*/ } /******************************************/ #baseBlock1{/*コンテンツ全体の設定*/ font-family:MS 明朝,Times New Roman;/*フォントの設定*/ color:#000; /*文字色の設定*/ margin-left:auto; /*センタリングのための左の余白*/ margin-right:auto; /*センタリングのための右の余白*/ width:800px; /*コンテンツ全体の幅*/ text-align:left; /*IEセンタリングバグ回避用。*/ font-size: 0.82em; /*文字サイズ。 Internet Explorerの文字のサイズ−中、Firefoxの文字サイズ−標準サイズに合わせてあります。*/ } /******************************************/ #title{/*タイトル部分*/ width:800px; /*タイトル部分の幅*/ background:url(); /*タイトル部分の背景設定*/ height:20px; /*高さの設定*/ } /******************************************/ h1{/*タイトル部分のフォント、文字位置の設定*/ font-size:1.7em; /*タイトル文字の大きさ*/ color:#FFFAF0; /*タイトル文字の色*/ padding-top:20px; /*文字上側の余白*/ padding-left:10px; /*文字左側の余白*/ font-weight: normal; /*文字の太さ*/ margin:0px; /*IEとFirefoxのずれを回避*/ } /******************************************/ #main{/*メインコンテンツ部分の設定。メニューと反対側の部分になります*/ width:800; /*メインコンテンツの幅*/ float:left; /*メインコンテンツ位置設定*/ padding-top:20px; /*文字上部の余白*/ padding-right:0px; /*文字右部の余白*/ padding-bottom:20px; /*フッターとの間隔*/ } /******************************************/ #maintext{/*IEとfirefoxのズレ対策用*/ padding-left:20px; /*文字左側の余白*/ padding-right:20px; /*文字右側の余白*/ } /******************************************/ #menu{/*メニュー部分の設定*/ width:200px; /*メニューの幅*/ float:right; /*メニュー位置設定*/ font-size:0.9em; /*メニューの文字サイズ*/ text-align:center; /*文字位置設定*/ padding-top:20px; /*上に余白*/ padding-left:20px; } /******************************************/ #menutext{/*IEとfirefoxのズレ対策用*/ padding-right:20px; /*メニューと枠との間隔の設定*/} /******************************************/ #menu a{/*メニューリンクテキスト部分の設定*/ color:#000; /*テキストの色*/ } /******************************************/ .m-title{/*メニュータイトルの設定*/ height:20px; /*高さ*/ font-size:1.2em; /*テキストサイズ*/ border:0px solid #fff; /*枠線の設定*/ color:#fff; /*テキスト色*/ margin:10px; /*全体的な余白*/ background:url(); /*メニュータイトル部分背景*/ } /******************************************/ #footer{/*ページ下部の設定*/ clear:both; /*floatによるメインコンテンツとメニュー分割の終了*/ text-align:right; /*フッター文字を中心に配置*/ color:#aaa; /*テキスト色*/ font-size:0.8em; /*テキストの大きさ*/ background:#FFF; /*背景の設定*/ padding-top:10px /*文字の上に余白*/ } /******************************************/