※このサイトで使用中のものをそのまま載せてます
参考にしたサイト
https://unofficialtokyo.com/2016/01/twenty-sixteen-customization/
https://qiita.com/39_isao/items/4f9a8c92fdfdeada61dc
https://qiita.com/39_isao/items/4f9a8c92fdfdeada61dc
style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
/* Theme Name: Twenty Sixteern Child Description: Twenty Sixteern Child Theme Author: ノッホソ Author URI: https://gamefbb.com Template: twentysixteen Version: 1.0.0 Text Domain: twentysixteen */ /*【フォント】*/ body, button, input, select, textarea, .entry-title, .main-navigation, .comment-metadata, .comment-reply-link, input[type="submit"], .post-navigation, .post-navigation .post-title, .post-navigation div + div, .comments-title, .comment-reply-title, .comment-notes, .comment-form label, .widget .widget-title, .logged-in-as { color: #3c3c3c; font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', meiryo, sans-serif; font-size: 1.0em; line-height: 2.2em; letter-spacing: 0.02em; } /*【サイトヘッダー】*/ .site-header { padding-top: 0em; padding-bottom: 2.5em; } /*【アイキャッチ】*/ .post-thumbnail { display: none; } /*【サイトのタイトル】*/ .site-branding .site-title { margin-top: 0em; margin-left: 4.5em; font-size: 1.5em; color: #3c3c3c; line-height: 2.0em; } /*【サイトの説明】*/ .site-description { margin-left: 8.8em; font-size: 0.8em; } /*【メニュー】*/ .main-navigation li a { font-size: 1.3em; font-weight:bold; color: #3c3c3c; } /*【記事の位置と幅】*/ .content-area { float: left; margin-right: -100%; margin-left: -2%; padding: 0; width: 80%; } /*【サイドバーの位置と幅】*/ .sidebar { float: left; margin-left: 82%; padding: 0; width: 20%; } /* 【横幅に余裕がない場合はサイドバーを表示しない】 */ @media (max-width: 1120px) { .content-area { float: left; margin-right: -99.8%; margin-left: 0.2%; padding: 0; width: 100%; } .sidebar { display: none; } } /* 【固定ページの記事タイトル】 */ .page .entry-title { display: none; } /*【記事タイトル】*/ .entry-title { margin-bottom: 1.5em; font-size: 1.5em; color: #3c3c3c; border-bottom: none; } /*【エントリーの日付&カテゴリ】*/ .entry-footer-home { display:none; } /*【見出し】*/ .entry-content h1 { background-color: #78fa6e; padding: 1.0em; margin-top: 2.0em; margin-bottom: 0em; font-size: 1.2em; color: #3c3c3c; } .entry-content h2 { background-color: #14415f; padding: 1.0em; margin-top: 2.0em; margin-bottom: 0em; font-size: 1.2em; color: #fefefe } .entry-content h3 { background-color: #fefefe; padding : 1.0em; padding-right: 1.0em; margin: 0em; font-size: 1.1em; color: #3c3c3c; font-weight: normal; line-height: 1.9em; } /* 【段落】 */ p { margin-top: 1.0em; margin-left: 2.0em; } /* 【動画の位置】 */ .wp-video { background-color: #222222; text-align: center; margin-top: 0; margin-bottom: 0em; margin-left: Auto; margin-right: Auto; padding: 1em 1em 1em 1em; } /* 【カスタムロゴ】 */ .site-branding { position: relative; height: 10.0em; } .site-branding .custom-logo{ position: absolute; margin: auto; } /*【ウィジェット】*/ .widget { margin-bottom: 0em; border-style: none; } .widget .widget-title { margin-left: 1.6em; font-size: 1.0em; font-weight: normal; border-bottom: none; } /*【コメント】*/ .comments-title, .comment-reply-title, .comment-notes, .comment-form label, .logged-in-as { border-style: none; } /*【全体のナビゲーション】*/ .pagination .nav-links::after, .pagination::after, .pagination .nav-links::before, .pagination::before { display: none; } /*【投稿の下のページナビゲーション】*/ .post-navigation, .post-navigation .post-title, .post-navigation div + div { font-size: 1.0em; font-weight: normal; line-height: 3.0em; border-style: none; } .post-navigation a, .post-navigation .meta-nav { padding: 0em; margin: 0em; } /*【AdSense広告のズレの修正】*/ .ad ins { margin-top: 2.0em; background: transparent; padding: 0em; } |
functions.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); wp_enqueue_style( 'font-opensans', 'https://fonts.googleapis.com/css?family=Open+Sans' ); } // PCのみ表示([pc][/pc]で囲む) function if_is_pc($atts, $content = null ) { $content = do_shortcode( $content); if(!wp_is_mobile()) { return $content; } } add_shortcode('pc', 'if_is_pc'); // スマートフォン・タブレットのみ表示([nopc][/nopc]で囲む) function if_is_nopc($atts, $content = null ) { $content = do_shortcode( $content); if(wp_is_mobile()) { return $content; } } add_shortcode('nopc', 'if_is_nopc'); |