カテゴリー別アーカイブ: Responsive

Responsive body、a、ul設定

body設定は「globals.css」です。
body {
background: #fff;
font-family:’ヒラギノ角ゴ Pro W3′,’Hiragino Kaku Gothic Pro’,’メイリオ’,Meiryo,’MS Pゴシック’,’MS PGothic’,sans-serif;
font-size: 13px; font-size: 1.3rem;
line-height: 18px;
color: #555;
position: relative;
-webkit-font-smoothing: antialiased;
}

このcssで、リンクとリストも設定します
/*  :: Links */
a { color: #2a85e8; text-decoration: none; line-height: inherit; }
a:hover { color: #11639d; }
a:focus { color: #cc4714; }
a:hover, a:active { outline: none; }
p a, p a:visited { line-height: inherit; }

/*  :: Lists */
ul, ol { margin-bottom: 18px; }
ul { list-style: none outside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ol ol { margin: 4px 0 5px 30px; }
li { margin-bottom: 12px; }
ul.large li { line-height: 21px; }