Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. @import url('../twentyeleven/style.css');
  2.  
  3. /*↓ここから上書きしたいスタイルを記述↓*/
  4.  
  5. /*フォント変更*/
  6. body, input, textarea {
  7. color: #373737;
  8. font: 15px "メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “MS Pゴシック”, “MS PGothic”, sans-serif;
  9. font-weight: 300;
  10. line-height: 1.625;
  11. }
  12.  
  13. /*フォント変更-反映確認できず*/
  14. blockquote {
  15. font-family: Georgia, "メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “MS Pゴシック”, “MS PGothic”, sans-serif;
  16. font-style: normal;
  17. font-weight: normal;
  18. margin: 0 3em;
  19. }
  20.  
  21. blockquote cite {
  22. color: #666;
  23. font: 12px "メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “MS Pゴシック”, “MS PGothic”, sans-serif;
  24. font-weight: 300;
  25. letter-spacing: 0.05em;
  26. text-transform: uppercase;
  27. }
  28.  
  29. pre {
  30. background: #f4f4f4;
  31. font: 13px "メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “MS Pゴシック”, “MS PGothic”, sans-serif;
  32. line-height: 1.5;
  33. margin-bottom: 1.625em;
  34. overflow: auto;
  35. padding: 0.75em 1.625em;
  36. }
  37.  
  38. code, kbd, samp, var {
  39. font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  40. }
  41.  
  42. /*見出h1タグ、デフォルトスタイルをリセット-おそらく現在無効*/
  43. h2 {
  44. margin: 0 0 30px 0; /* 上マージン0、右マージン0、下マージン30px、左マージン0 */
  45. font-size: 130%; /* 文字サイズを130% */
  46. color: #333333; /* 文字色を#333333 */
  47. padding: 5px 10px; /* 上下パディング5ピクセル、左右パディング10px */
  48. }
  49.  
  50. /*h2スタイリング-現在無効*/
  51. .entry-content h2 {
  52. border-left: 10px solid #FFFFFF; /* 左ボーダーを、10px幅の実線、線色#FFFFFFに */
  53. border-bottom: 1px solid #FFFFFF; /* 下ボーダーを、1px幅の実線、線色#FFFFFFに */
  54. }
  55.  
  56. /*テーブルに縦線挿入-現在無効*/
  57. .entry-content td {
  58. border: 1px solid #DDD;
  59. padding: 6px 10px 6px 0;
  60. }
  61.  
  62. /*記事タイトルフォント変更-現在無効*/
  63. .singular .entry-title {
  64. font-family:"メイリオ, Meiryo, Osaka, “ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”, “MS Pゴシック”, “MS PGothic”, sans-serif;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement