Greasy Fork is available in English.

high pena CSS for smartphone

high pena 2 スマホ用のCSSです。不具合があるかもしれないので自己責任で使ってください。Android版FirefoxにアドオンTampermonkeyで動作確認。iOSは不明。

2018-02-14 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

  1. // ==UserScript==
  2. // @name high pena CSS for smartphone
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.02
  5. // @description high pena 2 スマホ用のCSSです。不具合があるかもしれないので自己責任で使ってください。Android版FirefoxにアドオンTampermonkeyで動作確認。iOSは不明。
  6. // @author ankoiri
  7. // @match http://yaranaika.s64.coreserver.jp/highpena2/*
  8. // @match file:///R:/highpena_smartphone(local)2/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. (function() {
  14.  
  15.  
  16.  
  17. var url = location.href;
  18.  
  19. //ラッパーのtable width 変更
  20. var xpath = document.evaluate("/html/body/table" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  21. var xpath_obj = xpath.singleNodeValue;
  22. xpath_obj.width = "99%";
  23.  
  24. //野手・投手のテーブル横スクロール用
  25. var table_width = parseInt(window.innerWidth *0.90);
  26. //console.log("screen.width:" + table_width);
  27.  
  28.  
  29.  
  30. var linkobj = document.getElementsByTagName('link')[0];
  31. //console.log("linkobj:" + linkobj);
  32. //linkobj.parentNode.removeChild(linkobj);
  33.  
  34.  
  35. var head ;
  36. var link , link2;
  37.  
  38. head = document.getElementsByTagName('head')[0];
  39. //console.log("head:"+head);
  40. if( ! head ) return ;
  41.  
  42. //viewport980に固定
  43.  
  44. var viewport_meta;
  45.  
  46. viewport_meta = document.createElement('meta') ;
  47. viewport_meta.name = 'viewport';
  48. viewport_meta.content = 'width=980';
  49. head.appendChild(viewport_meta) ;
  50.  
  51. //CSS追加
  52. link = document.createElement('link') ;
  53. link.typ = 'text/css' ;
  54. link.rel = 'stylesheet' ;
  55. head.appendChild(link) ;
  56.  
  57. //link2 = document.createElement('link') ;
  58. //link2.typ = 'text/css' ;
  59. //link2.rel = 'stylesheet' ;
  60. //link2.href = drawer;
  61.  
  62. //head.appendChild(link2) ;
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. //トップ画面
  72. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[2]/tbody/tr/td[3]/input[3]" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  73. xpath_obj = xpath.singleNodeValue;
  74. //console.log("type=" + xpath_obj.value);
  75.  
  76. //トップ画面(オフシーズン 日本シリーズ の場合)
  77. xpath4 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr[1]/td/table/tbody/tr/td/table/tbody/tr/td[2]/font/font/b" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  78. xpath_obj4 = xpath4.singleNodeValue;
  79.  
  80. //console.log("type=" + xpath_obj.value);
  81.  
  82.  
  83. //能力アップ画面 意識設定画面
  84. xpath2 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h3" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  85. xpath_obj2 = xpath2.singleNodeValue;
  86. //console.log("xpath_obj2.innerHTML:" + xpath_obj2.innerHTML);
  87.  
  88.  
  89. //ログイン画面
  90. xpath3 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/table/tbody/tr/td[2]/table[2]/tbody/tr[1]/td[1]" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  91. xpath_obj3 = xpath3.singleNodeValue;
  92. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  93.  
  94. //公式記録とタイトル
  95. xpath5 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h3" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  96. xpath_obj5 = xpath5.singleNodeValue;
  97. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  98.  
  99.  
  100. //練習成果
  101. xpath6 = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/h4" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  102. xpath_obj6 = xpath6.singleNodeValue;
  103. //console.log("xpath_obj3.innerHTML:" + xpath_obj3.innerHTML);
  104.  
  105.  
  106.  
  107.  
  108. var flag = 0;
  109. var syurui = "default";
  110.  
  111. //記録
  112. if(xpath_obj5 && xpath_obj5.innerHTML.match(/公式記録とタイトル/)){
  113.  
  114. //console.log( "URL:" + location.href);
  115. //link.href = record;
  116. syurui = "record";
  117.  
  118. //球団偵察モード
  119. }else if(xpath_obj6 && xpath_obj6.innerHTML.match(/練習成果/)){
  120.  
  121. //console.log( "URL:" + location.href);
  122. //link.href = training;
  123. syurui = "training";
  124.  
  125. //球団偵察モード
  126. }else if(location.href.match(/mode=team&team_id/)){
  127.  
  128. //console.log( "URL:" + location.href);
  129. //link.href = team_mode;
  130. syurui = "team_mode";
  131. flag = 7;
  132.  
  133. }else if(xpath_obj4 && xpath_obj4.innerHTML.match(/日本シリーズ/) && xpath_obj && xpath_obj.value == "ログイン"){
  134. //console.log("ホーム画面(日本シリーズ)");
  135.  
  136. //link.href = home_nihon;
  137. syurui = "home_nihon";
  138.  
  139. flag = 4;
  140.  
  141. //ホーム画面(オフシーズン 新規登録リンク有り)
  142. }else if(xpath_obj4 && xpath_obj4.innerHTML.match(/オフシーズン/) && xpath_obj && xpath_obj.value == "ログイン"){
  143. //console.log("ホーム画面(オフシーズン)");
  144.  
  145. //link.href = home_off;
  146. syurui = "home_off";
  147. flag = 5;
  148.  
  149. //ホーム画面(オフ・日シリ以外)
  150. }else if (xpath_obj && xpath_obj.value == "ログイン" ){
  151.  
  152. //link.href = home_on;
  153. syurui = "home_on";
  154. flag = 1;
  155.  
  156. //能力アップ結果画面
  157. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/能力アップ結果/)){
  158. console.log("能力アップ結果画面1");
  159. //link.href = skill2;
  160. syurui = "skill2";
  161. flag = 0;
  162.  
  163. //能力アップ画面
  164. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/能力アップ/)){
  165. console.log("能力アップ画面1");
  166. //link.href = skill;
  167. syurui = "skill";
  168. flag = 2;
  169.  
  170. //意識設定画面
  171. }else if(xpath_obj2 && xpath_obj2.innerHTML.match(/意識設定/)){
  172. console.log("意識設定画面1");
  173. //link.href = consciousness;
  174. syurui = "consciousness";
  175. flag = 6;
  176.  
  177. //ログイン画面
  178. }else if(xpath_obj3 && xpath_obj3.innerHTML.match(/ドラフト指名/)){
  179. console.log("ログイン画面");
  180.  
  181. //link.href = login;
  182. syurui = "login";
  183. flag = 3;
  184. /*
  185. }else if(location.href.match(/rule.html/)){
  186. console.log(location.href);
  187. //link.href = rule;
  188. syurui = "rule";
  189. */
  190.  
  191. }else{
  192.  
  193. //link.href = defaultcss;
  194.  
  195.  
  196. }
  197.  
  198. console.log("flag:" + flag);
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208. //ドロワー追加用
  209. var div_element = document.createElement("div");
  210. div_element.classList.add("header_wrapper");
  211.  
  212. //オフシーズンの場合、新規登録を追加する
  213. if(flag === 5){
  214. div_element.innerHTML = '<div class="header"><div class="nav-drawer"><input id="nav-input" type="checkbox" class="nav-unshown"><label id="nav-open" for="nav-input"><span></span></label><label class="nav-unshown" id="nav-close" for="nav-input"></label><div id="nav-content">' +
  215. '<ul>' +
  216. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi">ホーム</a></li>' +
  217. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=ranking">ランキング</a></li>' +
  218. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=record">記録</a></li>' +
  219. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=calendar">日程</a></li>' +
  220. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/rule.html">あそびかた</a></li>' +
  221. '<li><a href="http://jbbs.livedoor.jp/game/44608/">掲示板</a></li>' +
  222. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=draft">ドラフト</a></li>' +
  223. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=entry">新規登録</a></li>' +
  224. '</ul></div></div><DIV STYLE="font-size:60px;font-weight:900; color:#DC143C; margin-top:-70pt; margin-left:170pt">2</DIV><DIV STYLE="font-size:40px; font-weight:600; color:000000;margin-top:-45pt;margin-left:115pt">high pena</DIV></div>';
  225.  
  226. //document.body.appendChild(div_element);
  227. //console.log(div_element.innerHTML);
  228. }else{
  229.  
  230.  
  231. div_element.innerHTML = '<div class="header"><div class="nav-drawer"><input id="nav-input" type="checkbox" class="nav-unshown"><label id="nav-open" for="nav-input"><span></span></label><label class="nav-unshown" id="nav-close" for="nav-input"></label><div id="nav-content">' +
  232. '<ul>' +
  233. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi">ホーム</a></li>' +
  234. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=ranking">ランキング</a></li>' +
  235. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=record">記録</a></li>' +
  236. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=calendar">日程</a></li>' +
  237. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/rule.html">あそびかた</a></li>' +
  238. '<li><a href="http://jbbs.livedoor.jp/game/44608/">掲示板</a></li>' +
  239. '<li><a href="http://yaranaika.s64.coreserver.jp/highpena2/index.cgi?mode=draft">ドラフト</a></li>' +
  240. '</ul></div></div><DIV STYLE="font-size:60px;font-weight:900; color:#DC143C; margin-top:-70pt; margin-left:170pt">2</DIV><DIV STYLE="font-size:40px; font-weight:600; color:000000;margin-top:-45pt;margin-left:115pt">high pena</DIV></div>';
  241.  
  242. //document.body.appendChild(div_element);
  243. //console.log(div_element.innerHTML);
  244.  
  245. }
  246.  
  247. //一番上に追加する
  248. var parentObject = document.getElementsByTagName("body")[0];
  249. parentObject.insertBefore(div_element,parentObject.firstChild);
  250.  
  251.  
  252. //-----------------------------------
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262. // ログイン後の画面
  263. if(flag === 3 ){
  264.  
  265.  
  266.  
  267.  
  268.  
  269. //投手 折りたたむ
  270. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  271.  
  272. //console.log("xpathtousyu:" + xpath.singleNodeValue);
  273. xpath_obj = xpath.singleNodeValue;
  274.  
  275. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open2').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼タップで表示</a></div><div id=\"open2\" style=\"display:none;clear:both;\"><div style=\"\width:" + table_width + "px; overflow-x:scroll;\">" + xpath_obj.outerHTML + "</div></div><br>";
  276.  
  277.  
  278. //野手 折りたたむ
  279. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/table[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  280. //console.log("xpathyasyu:" + xpath.singleNodeValue);
  281. xpath_obj = xpath.singleNodeValue;
  282.  
  283. //var temp = "<thread>" + xpath_obj.innerHTML;
  284. //xpath_obj.innerHTML = temp;
  285. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open1').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼タップで表示</a></div><div id=\"open1\" style=\"display:none;clear:both;\"><div style=\"width:" + table_width + "px; overflow-x:scroll;\">" + xpath_obj.outerHTML + "</div></div><br>";
  286.  
  287. //console.log("xpath_obj:" + xpath_obj.innerHTML);
  288.  
  289. //チーム方針変更 折りたたむ
  290. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/table/tbody/tr/td[1]/table[3]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  291. //console.log("xpathhoushin:" + xpath.singleNodeValue);
  292. xpath_obj = xpath.singleNodeValue;
  293.  
  294. xpath_obj.outerHTML = "<div onclick=\"obj=document.getElementById('open3').style; obj.display=(obj.display=='none')?'block':'none';\"><a style=\"font-size:30px;cursor:pointer;text-decoration: underline;\">▼チーム方針変更 表示</a></div><div id=\"open3\" style=\"display:none;clear:both;\">" + xpath_obj.outerHTML + "</div><br>";
  295.  
  296. //野手ポジション・打順変更ボタン 左寄せ
  297. xpath = document.evaluate("//*[@id=\"open1\"]/div/table/tbody/tr/td/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  298. xpath_obj = xpath.singleNodeValue;
  299. xpath_obj.align = "left";
  300.  
  301.  
  302. //投手起用順変更ボタン 左寄せ
  303. xpath = document.evaluate("//*[@id=\"open2\"]/div/table/tbody/tr/td/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  304. xpath_obj = xpath.singleNodeValue;
  305. xpath_obj.align = "left";
  306.  
  307. // 契約更改~設定 再設計
  308. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]/tbody/tr/td[3]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  309. //console.log("xpathhoushin:" + xpath.singleNodeValue);
  310. xpath_obj = xpath.singleNodeValue;
  311.  
  312.  
  313. var menu2 = ["","","","","","","","","","","","","",""];
  314.  
  315. var arr = xpath_obj.innerHTML.split(/></g);
  316. var k=-1;
  317.  
  318. //add the brackets back in
  319. for(var i = 0; i < arr.length; i++){
  320.  
  321.  
  322. if(i == 0){
  323. arr[i] = arr[i] + '>';
  324. }else if(i == arr.length -1){
  325. arr[i] = '<' + arr[i];
  326. }else{
  327. arr[i] = '<' + arr[i] + '>';
  328.  
  329. }
  330.  
  331.  
  332. //console.log("arr[" + i + "]:" + arr[i]);
  333. if(arr[i].match(/<h4/) || arr[i].match(/<table/) ){
  334. //console.log("next:" + k);
  335. k++;
  336. }
  337.  
  338. if(!(arr[i].match(/<table/) || arr[i].match(/<\/table/) || arr[i].match(/<tbody/) || arr[i].match(/<\/tbody/) || arr[i].match(/<tr/) || arr[i].match(/<\/tr/) || arr[i].match(/<td/) || arr[i].match(/<\/td/) || arr[i].match(/<form/) || arr[i].match(/<\/form/) )){
  339. menu2[k] += arr[i];
  340.  
  341. }
  342.  
  343. }
  344. var table_str ="<table>";
  345.  
  346. for(i=0;i<k+1;i++){
  347. //console.log("menu2[" + i + "]:" + menu2[i]);
  348.  
  349.  
  350.  
  351.  
  352. if(menu2[i].match(/<h4/)){
  353. table_str = table_str + "</tr><tr>";
  354. //console.log("tr:" + i);
  355. }
  356.  
  357. table_str = table_str + "<td><form action='index.cgi' method='post'>" + menu2[i] + "</td></form>";
  358.  
  359.  
  360. }
  361. table_str = table_str + "</table>";
  362.  
  363. //console.log("table_str:" + table_str);
  364.  
  365. xpath_obj.innerHTML = table_str;
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377. //画面更新ボタン 左寄せ
  378. /*
  379. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[5]/tbody/tr/td/form/form/table[1]/tbody/tr/td[1]/form/div", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  380. xpath_obj = xpath.singleNodeValue;
  381. xpath_obj.align = "left";
  382. */
  383.  
  384.  
  385. }
  386.  
  387. if(flag === 2) {
  388. //能力 ポイントテーブル tr入れ替え
  389.  
  390.  
  391. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table/tbody/tr[2]/td[1]/form/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  392. var table = xpath.singleNodeValue;
  393.  
  394.  
  395.  
  396. //console.log("row1:" + table.innerHTML);
  397.  
  398. var point_cell = [];
  399.  
  400. for(j=0;j<10;j++){
  401.  
  402. //console.log("table.rows[" + j + "].innerHTML" + table.rows[j].cells[0].innerHTML);
  403. point_cell[j] = table.rows[j].cells[0].innerHTML;
  404. }
  405.  
  406. table.innerHTML = "";
  407.  
  408. // 行要素を追加
  409. var tr0 = table.insertRow(-1);
  410. var tr1 = table.insertRow(-1);
  411.  
  412. var td = [];
  413.  
  414.  
  415.  
  416. //table.innerHTML = "";
  417.  
  418. for(j=0;j<10;j=j+2){
  419.  
  420. td[j] = tr0.insertCell(-1);
  421. td[j].innerHTML = point_cell[j];
  422. td[j+1] = tr1.insertCell(-1);
  423. td[j+1].innerHTML = point_cell[j+1];
  424.  
  425. }
  426. //console.log("aa" + newtable.innerHTML);
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433. }
  434.  
  435.  
  436.  
  437. // 他球団偵察モードの画面
  438.  
  439. if(flag === 7 ){
  440.  
  441. console.log("table_width:" + table_width);
  442.  
  443. //投手 テーブルスクロール
  444. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table[3]/tbody/tr/td/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  445.  
  446. //console.log("xpathtousyu:" + xpath.singleNodeValue);
  447. xpath_obj = xpath.singleNodeValue;
  448.  
  449. xpath_obj.outerHTML = "<div style=\"\width:" + table_width + "px; overflow-x:scroll; padding-bottom:30px;\">" + xpath_obj.outerHTML + "</div>";
  450.  
  451.  
  452. //野手 テーブルスクロール
  453. xpath = document.evaluate("/html/body/table/tbody/tr[1]/td[2]/table[4]/tbody/tr/td/table[2]/tbody/tr/td/table", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  454. //console.log("xpathyasyu:" + xpath.singleNodeValue);
  455. xpath_obj = xpath.singleNodeValue;
  456.  
  457. //var temp = "<thread>" + xpath_obj.innerHTML;
  458. //xpath_obj.innerHTML = temp;
  459. xpath_obj.outerHTML = "<div style=\"width:" + table_width + "px; overflow-x:scroll; padding-bottom:30px;\">" + xpath_obj.outerHTML + "</div><br>";
  460.  
  461. //console.log("xpath_obj:" + xpath_obj.innerHTML);
  462.  
  463.  
  464. }
  465.  
  466. /* --------------------------------------------------------------------------------------------------- */
  467. /* headにCSS 追加 */
  468. //headにドロワーCSS追加
  469. xpath = document.evaluate("/html/head" , document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
  470. xpath_obj = xpath.singleNodeValue;
  471. xpath_obj.innerHTML = xpath_obj.innerHTML + "<style>" + loadCSS("drawer") + "</style>";
  472.  
  473.  
  474. //ページに対応したcss追加
  475. xpath_obj.innerHTML = xpath_obj.innerHTML + "<style>" + loadCSS(syurui) + "</style>";
  476.  
  477. console.log("syurui = " + syurui);
  478.  
  479.  
  480. /* --------------------------------------------------------------------------------------------------- */
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493. /* CSS 関数 本体 */
  494. function loadCSS(syurui){
  495.  
  496. var txt;
  497.  
  498.  
  499. if(syurui == "drawer"){
  500. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  501.  
  502. /* ヘッダーの分、上に余白 */
  503. body > table {
  504.  
  505. padding-top: 100px;
  506.  
  507. }
  508.  
  509. .header_wrapper {
  510.  
  511. width: 100%;
  512. position: relative;
  513. z-index: 98;
  514.  
  515. }
  516.  
  517. /*ヘッダーまわりはご自由に*/
  518. .header {
  519.  
  520. //background-color: #0066FF;
  521. height: 95px;
  522. width: 99%;
  523. position: fixed; /* 固定 */
  524. margin:0 auto;
  525.  
  526.  
  527.  
  528. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0066ff+0,0066ff+50,ffffff+99 */
  529. background: rgb(0,102,255); /* Old browsers */
  530. background: -moz-linear-gradient(left, rgba(0,102,255,1) 0%, rgba(0,102,255,1) 50%, rgba(255,255,255,1) 99%); /* FF3.6-15 */
  531. background: -webkit-linear-gradient(left, rgba(0,102,255,1) 0%,rgba(0,102,255,1) 50%,rgba(255,255,255,1) 99%); /* Chrome10-25,Safari5.1-6 */
  532. background: linear-gradient(to right, rgba(0,102,255,1) 0%,rgba(0,102,255,1) 50%,rgba(255,255,255,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  533. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0066ff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
  534.  
  535. }
  536.  
  537. .nav-drawer {
  538. position: relative;
  539. padding-left:20px;
  540. width:98%;
  541. display: block;
  542.  
  543. }
  544.  
  545. /*チェックボックス等は非表示に*/
  546. .nav-unshown {
  547. display:none;
  548. }
  549.  
  550. /*アイコンのスペース*/
  551. #nav-open {
  552. display: inline-block;
  553. width: 80px;
  554. height: 80px;
  555. vertical-align: middle;
  556. padding: 15 10 0 10;
  557. background-color:#e4e4e4;
  558. }
  559.  
  560. /*ハンバーガーアイコンをCSSだけで表現*/
  561. #nav-open span, #nav-open span:before, #nav-open span:after {
  562. position: absolute;
  563. height: 5px;/*線の太さ*/
  564. width: 80px;/*長さ*/
  565. border-radius: 3px;
  566. background: #555;
  567. display: block;
  568. content: '';
  569. cursor: pointer;
  570. }
  571. #nav-open span:before {
  572. bottom: -26px;
  573. }
  574. #nav-open span:after {
  575. bottom: -52px;
  576. }
  577.  
  578. /*閉じる用の薄黒カバー*/
  579. #nav-close {
  580. display: none;/*はじめは隠しておく*/
  581. position: fixed;
  582. z-index: 99;
  583. top: 0;/*全体に広がるように*/
  584. left: 0;
  585. width: 100%;
  586. height: 100%;
  587. background: black;
  588. opacity: 0;
  589. transition: .3s ease-in-out;
  590. }
  591.  
  592. /*中身*/
  593. #nav-content {
  594. overflow: auto;
  595. position: fixed;
  596. top: 0;
  597. left: 0;
  598. z-index: 9999;/*最前面に*/
  599. width: 90%;/*右側に隙間を作る*/
  600. max-width: 360px;/*最大幅*/
  601. height: 100%;
  602. background: #e4e4e4;/*背景色*/
  603. transition: .3s ease-in-out;/*滑らかに表示*/
  604. -webkit-transform: translateX(-105%);
  605. transform: translateX(-105%);/*左に隠しておく*/
  606. }
  607.  
  608. /*チェックが入ったらもろもろ表示*/
  609. #nav-input:checked ~ #nav-close {
  610. display: block;/*カバーを表示*/
  611. opacity: .5;
  612. }
  613.  
  614. #nav-input:checked ~ #nav-content {
  615. -webkit-transform: translateX(0%);
  616. transform: translateX(0%);/*中身を表示*/
  617. box-shadow: 6px 0 25px rgba(0,0,0,.15);
  618. }
  619.  
  620.  
  621. .nav-drawer ul{
  622. list-style-type: none;
  623. font-size: 60px;
  624. bor: underline;
  625. padding: 0 10 0 10;
  626.  
  627.  
  628. }
  629. #nav-content > ul > li:nth-child(1) {
  630.  
  631. border-top: 2px solid #000000;
  632. }
  633.  
  634.  
  635. .nav-drawer li{
  636. border-bottom: 2px solid #000000;
  637. padding: 5 0 5 0;
  638.  
  639. }
  640.  
  641.  
  642.  
  643.  
  644.  
  645. .nav-drawer a:link {
  646. color:#215dc6;
  647. background-color:inherit;
  648. text-decoration:none;
  649. }
  650. .nav-drawer a:active {
  651. color:#215dc6;
  652. background-color:#ccddee;
  653. text-decoration:none;
  654. }
  655. .nav-drawer a:visited {
  656. color:#613da6;
  657. background-color:inherit;
  658. text-decoration:none;
  659. }
  660. .nav-drawer a:hover {
  661. color:#215dc6;
  662. background-color:#ccddee;
  663. text-decoration:underline;
  664. }
  665.  
  666.  
  667.  
  668. /* li全体をリンクにする */
  669. #nav-content > ul > li:nth-child(1n) > a {
  670.  
  671. display:block;
  672.  
  673. }
  674.  
  675.  
  676. #nav-content > ul > li:nth-child(1n) > a:link {
  677.  
  678. color:#215dc6;
  679. background-color:inherit;
  680. text-decoration:none;
  681. }
  682.  
  683. #nav-content > ul > li:nth-child(1n) > a:active {
  684. color:#215dc6;
  685. background-color:#ccddee;
  686. text-decoration:none;
  687. }
  688.  
  689. #nav-content > ul > li:nth-child(1n) > a:active {
  690.  
  691. color:#613da6;
  692. background-color:inherit;
  693. text-decoration:none;
  694. }
  695.  
  696.  
  697. `;
  698. }
  699. if(syurui != "drawer"){
  700. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  701.  
  702. body {
  703. width: 100%;
  704. min-width: 980px;
  705. color:black;
  706. background-color:white;
  707. font-size:18px;
  708. font-family:verdana, arial, helvetica, Sans-Serif;
  709. }
  710. th,td {
  711. font-size:18px;
  712. font-family:verdana, arial, helvetica, Sans-Serif;
  713. }
  714.  
  715. `;
  716. }
  717.  
  718.  
  719. if(syurui == "login"){
  720.  
  721.  
  722. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  723.  
  724. body {
  725. width: 100%;
  726. min-width: 980px;
  727. color:black;
  728. background-color:white;
  729. font-size:18px;
  730. font-family:verdana, arial, helvetica, Sans-Serif;
  731. }
  732. th,td {
  733. font-size:18px;
  734. font-family:verdana, arial, helvetica, Sans-Serif;
  735. }
  736.  
  737.  
  738.  
  739.  
  740. /* 練習セレクトメニュー */
  741. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(13) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(6) {
  742.  
  743. text-align:center;
  744.  
  745. }
  746.  
  747.  
  748.  
  749. /* 掲示板・お知らせ */
  750. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td {
  751.  
  752. display: block;
  753. width: 100%;
  754.  
  755. }
  756.  
  757. /* 掲示板 5個まで 名前部分 */
  758. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > dt:nth-child(n+21) {
  759.  
  760. display: none;
  761.  
  762. }
  763.  
  764. /* 掲示板 5個まで コメント部分 */
  765. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > dd:nth-child(n+22) {
  766.  
  767. display: none;
  768.  
  769. }
  770.  
  771. /* 掲示板 5個まで 改行部分 */
  772. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(15) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > dl:nth-child(2) > br:nth-child(n+23) {
  773.  
  774. display: none;
  775.  
  776. }
  777.  
  778.  
  779.  
  780.  
  781. /* 練習セレクトボックス */
  782. body > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > form:nth-child(4) > table:nth-child(13) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(6) > select {
  783.  
  784. width: 200px;
  785.  
  786. }
  787.  
  788. select {
  789.  
  790. width: 140px;
  791. height: 80px;
  792. font-size: 20px;
  793.  
  794. }
  795.  
  796.  
  797. input {
  798.  
  799. width: 160px;
  800. height: 80px;
  801. font-size: 20px;
  802.  
  803. }
  804.  
  805.  
  806. /* 意識 画像拡大 */
  807. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) > table:nth-child(3) img {
  808.  
  809. height:6px;
  810.  
  811. }
  812.  
  813. /* 日程 フォントサイズ */
  814. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  815.  
  816. font-size:18px;
  817.  
  818. }
  819.  
  820.  
  821.  
  822.  
  823. /* 上部 */
  824.  
  825.  
  826. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  827.  
  828. width:100%;
  829. display: block;
  830. }
  831.  
  832. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(2) {
  833.  
  834. width:100%;
  835. display: block;
  836. }
  837.  
  838.  
  839. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(3) {
  840.  
  841. width:100%;
  842. display: block;
  843. }
  844.  
  845.  
  846. /* チーム方針 td サイズ */
  847.  
  848.  
  849. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table:nth-child(5) > tbody > tr:nth-child(1) > td:nth-child(2n+6) {
  850.  
  851. width:20%;
  852.  
  853. }
  854.  
  855.  
  856. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table:nth-child(5) select{
  857.  
  858. width: 100%;
  859.  
  860. }
  861.  
  862.  
  863.  
  864.  
  865. /* 次の試合1 */
  866. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  867.  
  868. word-wrap: break-word;
  869. white-space: normal;
  870. display: block;
  871.  
  872. }
  873.  
  874. /* 次の試合2 */
  875. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  876.  
  877. word-wrap: break-word;
  878. white-space: normal;
  879. display: block;
  880.  
  881. }
  882.  
  883.  
  884.  
  885. /* X年度 X月X日 width調整 */
  886. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  887.  
  888. width: 140px;
  889.  
  890. }
  891.  
  892. /* X年度 調整 */
  893. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  894.  
  895. font-size:20px;
  896.  
  897. }
  898.  
  899. /* 試合日の球場名を非表示 */
  900.  
  901. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  902.  
  903. display: none;
  904.  
  905. }
  906.  
  907. /* 球場情報を非表示 */
  908. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > table > tbody > tr > td:nth-child(1) > table:nth-child(2) {
  909.  
  910. display: none;
  911.  
  912. }
  913.  
  914.  
  915. /* 行動 table 縦表示 */
  916.  
  917.  
  918. /* 名前~アイテム */
  919. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) {
  920. display:list-item;
  921. list-style:none;
  922. width:100%;
  923. }
  924.  
  925. /* 練習~意識 */
  926. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(2) {
  927.  
  928. display:list-item;
  929. list-style:none;
  930. width:100%;
  931.  
  932. }
  933.  
  934. /* 練習メニュー 大きさ */
  935. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  936.  
  937. width:250px;
  938.  
  939. }
  940.  
  941.  
  942. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) {
  943.  
  944. display:list-item;
  945. list-style:none;
  946. width:100%;
  947. }
  948.  
  949.  
  950. /* 契約更改~設定 調整 */
  951.  
  952.  
  953.  
  954. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table:nth-child(1) {
  955.  
  956.  
  957. display:block;
  958.  
  959. }
  960.  
  961.  
  962. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table tr {
  963.  
  964.  
  965. display:inline-block;
  966.  
  967. }
  968.  
  969.  
  970. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table tr td {
  971.  
  972.  
  973. display:block;
  974.  
  975. }
  976.  
  977. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) form {
  978.  
  979. margin: 0;
  980.  
  981. }
  982.  
  983.  
  984. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(3) > table:nth-child(n) > tbody > tr:nth-child(n) {
  985.  
  986. height: 150px;
  987. width: 25%;
  988.  
  989. }
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998. /* 練習セレクトメニュー サイズ */
  999. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1000.  
  1001. width: 200px;
  1002.  
  1003. }
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009. /* 掲示板 */
  1010.  
  1011. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(1) > td:nth-child(1) {
  1012.  
  1013. display:list-item;
  1014. list-style:none;
  1015. width:100%;
  1016.  
  1017. }
  1018.  
  1019. /* お知らせ */
  1020. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(1) > td:nth-child(2) {
  1021.  
  1022. display:list-item;
  1023. list-style:none;
  1024. width:100%;
  1025.  
  1026. }
  1027.  
  1028.  
  1029.  
  1030.  
  1031. /* 書き込み */
  1032.  
  1033.  
  1034. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(11) > tbody > tr:nth-child(2) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1035.  
  1036. display:list-item;
  1037. list-style:none;
  1038. width:100%;
  1039.  
  1040. }
  1041.  
  1042.  
  1043. textarea[name="com_content"] {
  1044.  
  1045. height: 150px;
  1046.  
  1047. }
  1048.  
  1049. /* 野手テーブル 改行しない*/
  1050. #open1 > div > table > tbody > tr > td > table {
  1051. white-space: nowrap;
  1052.  
  1053. }
  1054.  
  1055. /* セル間隔調整 */
  1056. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1057.  
  1058. padding: 0 6 0 6;
  1059.  
  1060. }
  1061.  
  1062. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1063.  
  1064. padding: 15 0 15 0;
  1065.  
  1066. }
  1067.  
  1068.  
  1069. /* 投手テーブル 改行しない*/
  1070. #open2 > div > table > tbody > tr > td > table {
  1071. white-space: nowrap;
  1072.  
  1073. }
  1074.  
  1075. /* セル間隔調整 */
  1076. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  1077.  
  1078. padding: 0 6 0 6;
  1079.  
  1080. }
  1081. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  1082.  
  1083. padding: 15 0 15 0;
  1084.  
  1085. }
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091. /* ヘッダ部 */
  1092. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1093.  
  1094. height: 80px;
  1095.  
  1096.  
  1097. }
  1098. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1099.  
  1100. width: 80px;
  1101.  
  1102. }
  1103.  
  1104. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1105.  
  1106. height: 40px;
  1107.  
  1108. }
  1109.  
  1110.  
  1111. /* 順番移動▲ */
  1112. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1113. font-size: 50px;
  1114. }
  1115.  
  1116. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1117. font-size: 50px;
  1118. }
  1119.  
  1120. /* 順番移動▲ */
  1121. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(1) {
  1122. font-size: 50px;
  1123. }
  1124.  
  1125. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > font:nth-child(5) {
  1126. font-size: 50px;
  1127. }
  1128.  
  1129. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1130.  
  1131. width: 100px;
  1132.  
  1133. }
  1134.  
  1135. #open1 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(2) > select {
  1136.  
  1137. width: 100px;
  1138.  
  1139. }
  1140.  
  1141. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) > input[type="text"] {
  1142.  
  1143. width: 100px;
  1144.  
  1145. }
  1146.  
  1147.  
  1148.  
  1149.  
  1150. /* 野手ポジション・打順変更ボタン 位置調整 */
  1151. #open1 > div > table > tbody > tr > td > div {
  1152.  
  1153. padding-bottom: 30px;
  1154. position: relative;
  1155. left: 150px;
  1156.  
  1157.  
  1158. }
  1159. #open1 > div > table > tbody > tr > td > div > input {
  1160.  
  1161. width: 300px;
  1162.  
  1163. }
  1164.  
  1165.  
  1166. /* 投手起用順変更ボタン 位置調整 */
  1167.  
  1168. #open2 > div > table > tbody > tr > td > div {
  1169.  
  1170. padding-bottom: 30px;
  1171. position: relative;
  1172. left: 150px;
  1173.  
  1174. }
  1175. #open2 > div > table > tbody > tr > td > div > input {
  1176.  
  1177. width: 300px;
  1178.  
  1179. }
  1180.  
  1181. /* 画面更新ボタン 位置調整 */
  1182. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > form > table:nth-child(9) > tbody > tr > td:nth-child(1) > form > div {
  1183.  
  1184.  
  1185. padding: 30 0 30 0;
  1186. position: relative;
  1187.  
  1188.  
  1189.  
  1190. }
  1191.  
  1192.  
  1193. #oreore_sm {
  1194. background-color: #ff00ff;
  1195. }
  1196.  
  1197. #oreore_sm2 {
  1198. background-color: #ff0055;
  1199. }
  1200.  
  1201.  
  1202. /* ヘッダ画像 */
  1203. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1204.  
  1205.  
  1206. display: none;
  1207.  
  1208. }
  1209. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1210.  
  1211. display: none;
  1212.  
  1213.  
  1214. }
  1215.  
  1216. /* メニュー非表示 */
  1217. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  1218.  
  1219. display: none;
  1220.  
  1221. }
  1222.  
  1223.  
  1224. /* ロゴ */
  1225. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1226.  
  1227. height: 80px;
  1228. width: 250px;
  1229. }
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240. /* 通常メニューを消す */
  1241. /* ヘッダ画像 */
  1242. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1243.  
  1244.  
  1245. display: none;
  1246.  
  1247. }
  1248. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1249.  
  1250. display: none;
  1251.  
  1252.  
  1253. }
  1254.  
  1255. /* メニュー非表示 */
  1256. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1257.  
  1258. display: none;
  1259.  
  1260. }
  1261.  
  1262. /* ドラフト メニュー非表示 */
  1263. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1264.  
  1265. display: none;
  1266.  
  1267. }
  1268.  
  1269.  
  1270. /* ロゴのテーブルを非表示 */
  1271. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1272.  
  1273. display: none;
  1274.  
  1275. }
  1276.  
  1277.  
  1278.  
  1279.  
  1280. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  1281.  
  1282. z-index:1;
  1283. position: relative;
  1284.  
  1285. }
  1286.  
  1287. `;
  1288.  
  1289.  
  1290. }else if(syurui == "home_on"){
  1291.  
  1292. console.log("home_on");
  1293. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1294.  
  1295. body {
  1296. width: 100%;
  1297. min-width: 980px;
  1298. color:black;
  1299. background-color:white;
  1300. font-size:18px;
  1301. font-family:verdana, arial, helvetica, Sans-Serif;
  1302. }
  1303. th,td {
  1304. font-size:18px;
  1305. font-family:verdana, arial, helvetica, Sans-Serif;
  1306. }
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314. input {
  1315.  
  1316. width: 140px;
  1317. height: 80px;
  1318. font-size: 20px;
  1319.  
  1320. }
  1321.  
  1322.  
  1323.  
  1324. /* 日程 フォントサイズ */
  1325. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1326.  
  1327. font-size:18px;
  1328.  
  1329. }
  1330.  
  1331.  
  1332.  
  1333.  
  1334.  
  1335.  
  1336. /* 次の試合1 */
  1337. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1338.  
  1339. word-wrap: break-word;
  1340. white-space: normal;
  1341. display: block;
  1342.  
  1343. }
  1344.  
  1345. /* 次の試合2 */
  1346. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1347.  
  1348. word-wrap: break-word;
  1349. white-space: normal;
  1350. display: block;
  1351.  
  1352. }
  1353.  
  1354.  
  1355.  
  1356. /* X年度 X月X日 width調整 */
  1357. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1358.  
  1359. width: 140px;
  1360.  
  1361. }
  1362.  
  1363. /* X年度 調整 */
  1364. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1365.  
  1366. font-size:20px;
  1367.  
  1368. }
  1369.  
  1370. /* 試合日の球場名を非表示 */
  1371.  
  1372. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1373.  
  1374. display: none;
  1375.  
  1376. }
  1377.  
  1378.  
  1379.  
  1380.  
  1381. /* 練習セレクトメニュー サイズ */
  1382. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1383.  
  1384. width: 200px;
  1385.  
  1386. }
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397. textarea[name="com_content"] {
  1398.  
  1399. height: 150px;
  1400.  
  1401. }
  1402.  
  1403. /* ヘッダ部 */
  1404. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1405.  
  1406. height: 80px;
  1407.  
  1408.  
  1409. }
  1410. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1411.  
  1412. width: 80px;
  1413.  
  1414. }
  1415.  
  1416. /* ロゴ */
  1417. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1418.  
  1419. height: 80px;
  1420. width: 250px;
  1421.  
  1422.  
  1423. }
  1424. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1425.  
  1426. width: 250px;
  1427. }
  1428.  
  1429.  
  1430.  
  1431. /* ログイン部分 */
  1432.  
  1433. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1434.  
  1435. display: block;
  1436. }
  1437.  
  1438.  
  1439.  
  1440.  
  1441. /* メニュー(ランキング等) */
  1442. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  1443.  
  1444. height: 30px;
  1445. }
  1446.  
  1447. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1448.  
  1449.  
  1450. height: 50px;
  1451.  
  1452. }
  1453.  
  1454.  
  1455. /* ロゴとログインメニューを並べる */
  1456. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1457. float:left;
  1458.  
  1459. }
  1460.  
  1461. /* ドラフト */
  1462. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1463.  
  1464. //display:none;
  1465. position:absolute;
  1466. height: 50px;
  1467.  
  1468. }
  1469.  
  1470. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1471.  
  1472. height: 30px;
  1473.  
  1474. }
  1475.  
  1476.  
  1477.  
  1478.  
  1479.  
  1480.  
  1481. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1482.  
  1483. display: none;
  1484.  
  1485. }
  1486.  
  1487.  
  1488.  
  1489. /* 通常メニューを消す */
  1490. /* ヘッダ画像 */
  1491. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1492.  
  1493.  
  1494. display: none;
  1495.  
  1496. }
  1497. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1498.  
  1499. display: none;
  1500.  
  1501.  
  1502. }
  1503.  
  1504. /* メニュー非表示 */
  1505. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1506.  
  1507. display: none;
  1508.  
  1509. }
  1510.  
  1511. /* ドラフト メニュー非表示 */
  1512. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1513.  
  1514. display: none;
  1515.  
  1516. }
  1517.  
  1518. /* ロゴを非表示 */
  1519. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1520.  
  1521. display: none;
  1522.  
  1523. }
  1524.  
  1525.  
  1526.  
  1527.  
  1528. /* 順位表 */
  1529.  
  1530. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1531.  
  1532. margin: 2px;
  1533. width: 98%;
  1534. }
  1535.  
  1536. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1537.  
  1538. width: 98%;
  1539. margin: 2px;
  1540. }
  1541.  
  1542. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1543.  
  1544. width: 98%;
  1545. margin: 2px;
  1546.  
  1547. }
  1548.  
  1549.  
  1550. `;
  1551. }else if(syurui == "home_nihon"){
  1552.  
  1553. txt = (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1554.  
  1555.  
  1556. body {
  1557. width: 100%;
  1558. min-width: 980px;
  1559. color:black;
  1560. background-color:white;
  1561. font-size:18px;
  1562. font-family:verdana, arial, helvetica, Sans-Serif;
  1563. }
  1564. th,td {
  1565. font-size:18px;
  1566. font-family:verdana, arial, helvetica, Sans-Serif;
  1567. }
  1568.  
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576. input {
  1577.  
  1578. width: 140px;
  1579. height: 80px;
  1580. font-size: 20px;
  1581.  
  1582. }
  1583.  
  1584.  
  1585.  
  1586. /* 日程 フォントサイズ */
  1587. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1588.  
  1589. font-size:18px;
  1590.  
  1591. }
  1592.  
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598. /* 次の試合1 */
  1599. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1600.  
  1601. word-wrap: break-word;
  1602. white-space: normal;
  1603. display: block;
  1604.  
  1605. }
  1606.  
  1607. /* 次の試合2 */
  1608. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1609.  
  1610. word-wrap: break-word;
  1611. white-space: normal;
  1612. display: block;
  1613.  
  1614. }
  1615.  
  1616.  
  1617.  
  1618. /* X年度 X月X日 width調整 */
  1619. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1620.  
  1621. width: 140px;
  1622.  
  1623. }
  1624.  
  1625. /* X年度 調整 */
  1626. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1627.  
  1628. font-size:20px;
  1629.  
  1630. }
  1631.  
  1632. /* 試合日の球場名を非表示 */
  1633.  
  1634. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1635.  
  1636. display: none;
  1637.  
  1638. }
  1639.  
  1640.  
  1641.  
  1642.  
  1643. /* 練習セレクトメニュー サイズ */
  1644. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1645.  
  1646. width: 200px;
  1647.  
  1648. }
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.  
  1658.  
  1659. textarea[name="com_content"] {
  1660.  
  1661. height: 150px;
  1662.  
  1663. }
  1664.  
  1665. /* ヘッダ部 */
  1666. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1667.  
  1668. height: 80px;
  1669.  
  1670.  
  1671. }
  1672. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  1673.  
  1674. width: 80px;
  1675.  
  1676. }
  1677.  
  1678. /* ロゴ */
  1679. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  1680.  
  1681. height: 80px;
  1682. width: 250px;
  1683.  
  1684.  
  1685. }
  1686. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1687.  
  1688. width: 250px;
  1689. }
  1690.  
  1691.  
  1692.  
  1693. /* ログイン部分 */
  1694.  
  1695. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  1696.  
  1697. display: block;
  1698. }
  1699.  
  1700.  
  1701.  
  1702.  
  1703. /* メニュー(ランキング等) */
  1704. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  1705.  
  1706. height: 30px;
  1707. }
  1708.  
  1709. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1710.  
  1711.  
  1712. height: 50px;
  1713.  
  1714. }
  1715.  
  1716.  
  1717. /* ロゴとログインメニューを並べる */
  1718. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1719. float:left;
  1720.  
  1721. }
  1722.  
  1723. /* ドラフト */
  1724. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1725.  
  1726. //display:none;
  1727. position:absolute;
  1728. height: 50px;
  1729.  
  1730. }
  1731.  
  1732. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  1733.  
  1734. height: 30px;
  1735.  
  1736. }
  1737.  
  1738.  
  1739.  
  1740.  
  1741.  
  1742.  
  1743. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1744.  
  1745. display: none;
  1746.  
  1747. }
  1748.  
  1749.  
  1750.  
  1751. /* 通常メニューを消す */
  1752. /* ヘッダ画像 */
  1753. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  1754.  
  1755.  
  1756. display: none;
  1757.  
  1758. }
  1759. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  1760.  
  1761. display: none;
  1762.  
  1763.  
  1764. }
  1765.  
  1766. /* メニュー非表示 */
  1767. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  1768.  
  1769. display: none;
  1770.  
  1771. }
  1772.  
  1773. /* ドラフト メニュー非表示 */
  1774. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  1775.  
  1776. display: none;
  1777.  
  1778. }
  1779.  
  1780. /* ロゴを非表示 */
  1781. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  1782.  
  1783. display: none;
  1784.  
  1785. }
  1786.  
  1787.  
  1788.  
  1789.  
  1790. /* 順位表 */
  1791.  
  1792. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  1793.  
  1794. margin: 2px;
  1795. width: 98%;
  1796. }
  1797.  
  1798. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1799.  
  1800. width: 98%;
  1801. margin: 2px;
  1802. }
  1803.  
  1804. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  1805.  
  1806. width: 98%;
  1807. margin: 2px;
  1808.  
  1809. }
  1810.  
  1811.  
  1812.  
  1813.  
  1814. /* 日本シリーズ結果表示 調整 */
  1815. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  1816. width: 30%;
  1817. }
  1818.  
  1819. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  1820. width: 40%;
  1821. }
  1822.  
  1823. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  1824. width: 30%;
  1825. }
  1826.  
  1827.  
  1828. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(3) {
  1829. width: 98%;
  1830. }
  1831.  
  1832. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(5) {
  1833. width: 98%;
  1834. }
  1835.  
  1836. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(3) {
  1837. width: 98%;
  1838. }
  1839.  
  1840. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(5) {
  1841. width: 98%;
  1842. }
  1843.  
  1844.  
  1845. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  1846.  
  1847. font-size: 16px;
  1848.  
  1849. }
  1850.  
  1851. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  1852.  
  1853. font-size: 16px;
  1854.  
  1855. }
  1856.  
  1857.  
  1858.  
  1859. /* 日シリ テーブル調整 */
  1860. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  1861.  
  1862. width: 98%;
  1863.  
  1864. }
  1865.  
  1866.  
  1867. /* 日シリ 勝敗 */
  1868.  
  1869. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  1870.  
  1871. font-size: 16px;
  1872.  
  1873. }
  1874.  
  1875. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  1876.  
  1877. font-size: 16px;
  1878.  
  1879. }
  1880.  
  1881.  
  1882. `;
  1883.  
  1884.  
  1885. }else if(syurui == "home_off"){
  1886.  
  1887. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  1888.  
  1889. body {
  1890. width: 100%;
  1891. min-width: 980px;
  1892. color:black;
  1893. background-color:white;
  1894. font-size:18px;
  1895. font-family:verdana, arial, helvetica, Sans-Serif;
  1896. }
  1897. th,td {
  1898. font-size:18px;
  1899. font-family:verdana, arial, helvetica, Sans-Serif;
  1900. }
  1901.  
  1902.  
  1903. input {
  1904.  
  1905. width: 140px;
  1906. height: 80px;
  1907. font-size: 20px;
  1908.  
  1909. }
  1910.  
  1911.  
  1912.  
  1913. /* 日程 フォントサイズ */
  1914. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  1915.  
  1916. font-size:18px;
  1917.  
  1918. }
  1919.  
  1920.  
  1921.  
  1922.  
  1923.  
  1924.  
  1925. /* 次の試合1 */
  1926. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  1927.  
  1928. word-wrap: break-word;
  1929. white-space: normal;
  1930. display: block;
  1931.  
  1932. }
  1933.  
  1934. /* 次の試合2 */
  1935. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  1936.  
  1937. word-wrap: break-word;
  1938. white-space: normal;
  1939. display: block;
  1940.  
  1941. }
  1942.  
  1943.  
  1944.  
  1945. /* X年度 X月X日 width調整 */
  1946. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  1947.  
  1948. width: 140px;
  1949.  
  1950. }
  1951.  
  1952. /* X年度 調整 */
  1953. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  1954.  
  1955. font-size:20px;
  1956.  
  1957. }
  1958.  
  1959. /* 試合日の球場名を非表示 */
  1960.  
  1961. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  1962.  
  1963. display: none;
  1964.  
  1965. }
  1966.  
  1967.  
  1968.  
  1969.  
  1970. /* 練習セレクトメニュー サイズ */
  1971. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  1972.  
  1973. width: 200px;
  1974.  
  1975. }
  1976.  
  1977.  
  1978.  
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984.  
  1985.  
  1986. textarea[name="com_content"] {
  1987.  
  1988. height: 150px;
  1989.  
  1990. }
  1991.  
  1992. /* ヘッダ部 */
  1993. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  1994.  
  1995. height: 80px;
  1996.  
  1997.  
  1998. }
  1999. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2000.  
  2001. width: 80px;
  2002.  
  2003. }
  2004.  
  2005. /* ロゴ */
  2006. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2007.  
  2008. height: 80px;
  2009. width: 250px;
  2010.  
  2011.  
  2012. }
  2013. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2014.  
  2015. width: 250px;
  2016. }
  2017.  
  2018.  
  2019.  
  2020. /* ログイン部分 */
  2021.  
  2022. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2023.  
  2024. display: block;
  2025. }
  2026.  
  2027.  
  2028.  
  2029.  
  2030. /* メニュー(ランキング等) */
  2031. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2032.  
  2033. height: 30px;
  2034. }
  2035.  
  2036. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2037.  
  2038.  
  2039. height: 50px;
  2040.  
  2041. }
  2042.  
  2043.  
  2044. /* ロゴとログインメニューを並べる */
  2045. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2046. float:left;
  2047.  
  2048. }
  2049.  
  2050. /* ドラフト */
  2051. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2052.  
  2053. //display:none;
  2054. position:absolute;
  2055. height: 50px;
  2056.  
  2057. }
  2058.  
  2059. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2060.  
  2061. height: 30px;
  2062.  
  2063. }
  2064.  
  2065.  
  2066.  
  2067.  
  2068.  
  2069.  
  2070. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2071.  
  2072. display: none;
  2073.  
  2074. }
  2075.  
  2076.  
  2077.  
  2078. /* 通常メニューを消す */
  2079. /* ヘッダ画像 */
  2080. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2081.  
  2082.  
  2083. display: none;
  2084.  
  2085. }
  2086. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2087.  
  2088. display: none;
  2089.  
  2090.  
  2091. }
  2092.  
  2093. /* メニュー非表示 */
  2094. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(8) > table {
  2095.  
  2096. display: none;
  2097.  
  2098. }
  2099.  
  2100. /* 新規登録 メニュー非表示 */
  2101. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2102.  
  2103. display: none;
  2104.  
  2105. }
  2106.  
  2107. /* ドラフト メニュー非表示 */
  2108. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) {
  2109.  
  2110. display: none;
  2111.  
  2112. }
  2113.  
  2114.  
  2115. /* ロゴを非表示 */
  2116. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2117.  
  2118. display: none;
  2119.  
  2120. }
  2121.  
  2122. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody {
  2123.  
  2124.  
  2125. }
  2126.  
  2127.  
  2128. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  2129.  
  2130. border-style: none;
  2131.  
  2132.  
  2133. }
  2134.  
  2135.  
  2136.  
  2137. /* 順位表 */
  2138.  
  2139. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(11) {
  2140.  
  2141. margin: 2px;
  2142. width: 98%;
  2143. }
  2144.  
  2145. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  2146.  
  2147. width: 98%;
  2148. margin: 2px;
  2149. }
  2150.  
  2151. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table > tbody > tr > td > table > tbody > tr:nth-child(2) > td > table {
  2152.  
  2153. width: 98%;
  2154. margin: 2px;
  2155.  
  2156. }
  2157.  
  2158.  
  2159.  
  2160. /* 日本シリーズ結果表示 調整 */
  2161.  
  2162.  
  2163. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) {
  2164. width: 30%;
  2165.  
  2166. }
  2167.  
  2168. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(2) {
  2169. width: 40%;
  2170. }
  2171.  
  2172. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) {
  2173. width: 30%;
  2174. }
  2175.  
  2176.  
  2177. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(3) {
  2178. width: 98%;
  2179.  
  2180.  
  2181. }
  2182.  
  2183. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(5) {
  2184. width: 98%;
  2185. }
  2186.  
  2187. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(3) {
  2188. width: 98%;
  2189. }
  2190.  
  2191. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(5) {
  2192. width: 98%;
  2193. }
  2194.  
  2195. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  2196.  
  2197. font-size: 16px;
  2198.  
  2199. }
  2200.  
  2201. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(n+3) > tbody > tr:nth-child(n) > td:nth-child(n) {
  2202.  
  2203. font-size: 16px;
  2204.  
  2205. }
  2206.  
  2207.  
  2208. /* 日シリ テーブル調整 */
  2209. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) {
  2210.  
  2211. width: 98%;
  2212.  
  2213. }
  2214.  
  2215.  
  2216. /* 日シリ 勝敗 */
  2217.  
  2218. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(1) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  2219.  
  2220. font-size: 16px;
  2221.  
  2222. }
  2223.  
  2224. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td:nth-child(3) > table:nth-child(1) > tbody > tr > td:nth-child(2) {
  2225.  
  2226. font-size: 16px;
  2227.  
  2228. }
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236. `;
  2237.  
  2238.  
  2239. }else if(syurui == "skill"){
  2240.  
  2241. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2242.  
  2243. input {
  2244.  
  2245. width: 250px;
  2246. height: 80px;
  2247. font-size: 20px;
  2248.  
  2249. }
  2250.  
  2251.  
  2252.  
  2253. /* 日程 フォントサイズ */
  2254. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  2255.  
  2256. font-size:18px;
  2257.  
  2258. }
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264.  
  2265. /* 次の試合1 */
  2266. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  2267.  
  2268. word-wrap: break-word;
  2269. white-space: normal;
  2270. display: block;
  2271.  
  2272. }
  2273.  
  2274. /* 次の試合2 */
  2275. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  2276.  
  2277. word-wrap: break-word;
  2278. white-space: normal;
  2279. display: block;
  2280.  
  2281. }
  2282.  
  2283.  
  2284.  
  2285. /* X年度 X月X日 width調整 */
  2286. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) {
  2287.  
  2288. width: 140px;
  2289.  
  2290. }
  2291.  
  2292. /* X年度 調整 */
  2293. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(1) > span > font {
  2294.  
  2295. font-size:20px;
  2296.  
  2297. }
  2298.  
  2299. /* 試合日の球場名を非表示 */
  2300.  
  2301. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) small {
  2302.  
  2303. display: none;
  2304.  
  2305. }
  2306.  
  2307.  
  2308.  
  2309.  
  2310. /* 練習セレクトメニュー サイズ */
  2311. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  2312.  
  2313. width: 200px;
  2314.  
  2315. }
  2316.  
  2317.  
  2318.  
  2319.  
  2320.  
  2321.  
  2322.  
  2323.  
  2324.  
  2325.  
  2326. textarea[name="com_content"] {
  2327.  
  2328. height: 150px;
  2329.  
  2330. }
  2331.  
  2332. /* ヘッダ部 */
  2333. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2334.  
  2335. height: 80px;
  2336.  
  2337.  
  2338. }
  2339. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2340.  
  2341. width: 80px;
  2342.  
  2343. }
  2344.  
  2345. /* ロゴ */
  2346. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2347.  
  2348. height: 80px;
  2349. width: 250px;
  2350. }
  2351.  
  2352.  
  2353.  
  2354. /* ログイン部分 */
  2355.  
  2356. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2357.  
  2358. display: block;
  2359. }
  2360.  
  2361.  
  2362.  
  2363.  
  2364. /* メニュー(ランキング等) */
  2365. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2366.  
  2367. height: 30px;
  2368. }
  2369.  
  2370. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2371.  
  2372.  
  2373. height: 50px;
  2374.  
  2375. }
  2376.  
  2377.  
  2378. /* ロゴとログインメニューを並べる */
  2379. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2380. float:left;
  2381.  
  2382. }
  2383.  
  2384. /* ドラフト */
  2385. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2386.  
  2387. //display:none;
  2388. position:absolute;
  2389. height: 50px;
  2390.  
  2391. }
  2392.  
  2393. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2394.  
  2395. height: 30px;
  2396.  
  2397. }
  2398.  
  2399.  
  2400.  
  2401.  
  2402.  
  2403.  
  2404. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2405.  
  2406. display: none;
  2407.  
  2408. }
  2409.  
  2410.  
  2411.  
  2412. /* ヘッダ画像 */
  2413. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2414.  
  2415.  
  2416. display: none;
  2417.  
  2418. }
  2419. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2420.  
  2421. display: none;
  2422.  
  2423.  
  2424. }
  2425.  
  2426. /* メニュー非表示 */
  2427. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2428.  
  2429. display: none;
  2430.  
  2431. }
  2432.  
  2433.  
  2434. /* ロゴ */
  2435. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2436.  
  2437. height: 80px;
  2438. width: 250px;
  2439. }
  2440.  
  2441. /* タイトルロゴのセル表示調整 */
  2442. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2443.  
  2444. width: 100%;
  2445. height: 80px;
  2446.  
  2447. }
  2448.  
  2449. /* ロゴのテーブルを非表示 */
  2450. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2451.  
  2452. display: none;
  2453.  
  2454. }
  2455.  
  2456.  
  2457. /* 能力アップ 全体テーブル */
  2458.  
  2459.  
  2460. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) {
  2461.  
  2462. width:98%;
  2463. }
  2464.  
  2465. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table {
  2466.  
  2467. width:99%;
  2468.  
  2469. }
  2470.  
  2471.  
  2472.  
  2473. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) {
  2474. display:list-item;
  2475. list-style:none;
  2476. width:100%;
  2477.  
  2478. }
  2479.  
  2480.  
  2481. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) {
  2482.  
  2483. display:list-item;
  2484. list-style:none;
  2485. width:100%;
  2486.  
  2487. }
  2488.  
  2489.  
  2490. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(2n) > td > input {
  2491.  
  2492. height:40px;
  2493. width: 80px;
  2494. }
  2495.  
  2496.  
  2497.  
  2498. /* 名前 ステータス テーブル */
  2499. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(1),
  2500. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(2),
  2501. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(3) {
  2502. display: block;
  2503. width: 100%;
  2504.  
  2505.  
  2506. }
  2507.  
  2508. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(1) > td > table > tbody > tr > td:nth-child(3) > table > tbody > tr:nth-child(2) > td:nth-child(n) > small {
  2509.  
  2510. font-size: 18px;
  2511.  
  2512. }
  2513.  
  2514.  
  2515.  
  2516.  
  2517. /* ポイントテーブル */
  2518.  
  2519.  
  2520. /* greasemonkeyでテーブル作り直し カラー */
  2521. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table {
  2522. text-align: center;
  2523.  
  2524. }
  2525.  
  2526. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table tr td {
  2527.  
  2528. font-size: 24px;
  2529.  
  2530.  
  2531. }
  2532.  
  2533.  
  2534. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(2) > td:nth-child(n) > input {
  2535.  
  2536. font-size:24px;
  2537. width:140px;
  2538. text-align: center;
  2539. }
  2540.  
  2541. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(1) {
  2542. background-color: #ffdddd;
  2543.  
  2544. }
  2545.  
  2546. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(2) {
  2547. background-color: #ddffdd;
  2548. }
  2549. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(3) {
  2550. background-color: #ddddff;
  2551. }
  2552. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(4) {
  2553. background-color: #ffffdd;
  2554. }
  2555. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(1) > form > table > tbody > tr:nth-child(1) > td:nth-child(5) {
  2556. background-color: #ddffff;
  2557. }
  2558.  
  2559.  
  2560.  
  2561.  
  2562. /* ポイントテーブル end */
  2563.  
  2564.  
  2565.  
  2566. /* ポイント振り分けテーブル */
  2567.  
  2568.  
  2569. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(1) > tbody > tr:nth-child(2n) > td:nth-child(n) > select {
  2570.  
  2571. width: 140px;
  2572. height: 80px;
  2573. font-size:26px;
  2574.  
  2575. }
  2576.  
  2577.  
  2578. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(3) > tbody > tr:nth-child(n) > td:nth-child(n) > table > tbody > tr > td:nth-child(1) > input[type="checkbox"] {
  2579.  
  2580.  
  2581. width: 40px;
  2582. height: 80px;
  2583.  
  2584. }
  2585.  
  2586. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(6) > tbody > tr > td > table > tbody > tr:nth-child(2) > td:nth-child(2) > table:nth-child(9) > tbody > tr:nth-child(1) > td > input[type="submit"] {
  2587.  
  2588. width: 250px;
  2589. height: 100px;
  2590.  
  2591.  
  2592. }
  2593.  
  2594.  
  2595. `;
  2596.  
  2597. }else if(syurui == "skill2"){
  2598.  
  2599. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2600.  
  2601. input {
  2602.  
  2603. width: 250px;
  2604. height: 80px;
  2605. font-size: 20px;
  2606.  
  2607. }
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614. /* 練習セレクトメニュー サイズ */
  2615. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(9) > tbody > tr > td > form > table:nth-child(17) > tbody > tr > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) > select {
  2616.  
  2617. width: 200px;
  2618.  
  2619. }
  2620.  
  2621.  
  2622.  
  2623.  
  2624. /* ヘッダ部 */
  2625. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2626.  
  2627. height: 80px;
  2628.  
  2629.  
  2630. }
  2631. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2632.  
  2633. width: 80px;
  2634.  
  2635. }
  2636.  
  2637. /* ロゴ */
  2638. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2639.  
  2640. height: 80px;
  2641. width: 250px;
  2642. }
  2643.  
  2644.  
  2645.  
  2646. /* ログイン部分 */
  2647.  
  2648. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  2649.  
  2650. display: block;
  2651. }
  2652.  
  2653.  
  2654.  
  2655.  
  2656. /* メニュー(ランキング等) */
  2657. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table > tbody > tr > td > a > img {
  2658.  
  2659. height: 30px;
  2660. }
  2661.  
  2662. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2663.  
  2664.  
  2665. height: 50px;
  2666.  
  2667. }
  2668.  
  2669.  
  2670. /* ロゴとログインメニューを並べる */
  2671. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) {
  2672. float:left;
  2673.  
  2674. }
  2675.  
  2676. /* ドラフト */
  2677. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2678.  
  2679. //display:none;
  2680. position:absolute;
  2681. height: 50px;
  2682.  
  2683. }
  2684.  
  2685. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  2686.  
  2687. height: 30px;
  2688.  
  2689. }
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2697.  
  2698. display: none;
  2699.  
  2700. }
  2701.  
  2702.  
  2703.  
  2704. /* ヘッダ画像 */
  2705. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2706.  
  2707.  
  2708. display: none;
  2709.  
  2710. }
  2711. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2712.  
  2713. display: none;
  2714.  
  2715.  
  2716. }
  2717.  
  2718. /* メニュー非表示 */
  2719. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2720.  
  2721. display: none;
  2722.  
  2723. }
  2724.  
  2725.  
  2726. /* ロゴ */
  2727. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2728.  
  2729. height: 80px;
  2730. width: 250px;
  2731. }
  2732.  
  2733. /* タイトルロゴのセル表示調整 */
  2734. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  2735.  
  2736. width: 100%;
  2737. height: 80px;
  2738.  
  2739. }
  2740.  
  2741. /* ロゴのテーブルを非表示 */
  2742. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2743.  
  2744. display: none;
  2745.  
  2746. }
  2747.  
  2748.  
  2749.  
  2750.  
  2751. /* 能力アップ結果 数値サイズ */
  2752.  
  2753.  
  2754.  
  2755. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(2) > tbody > tr:nth-child(1) > td > table small ,
  2756. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table:nth-child(2) > tbody > tr:nth-child(3) > td > table small {
  2757.  
  2758. font-size: 18px;
  2759.  
  2760. }
  2761.  
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  
  2768. `;
  2769.  
  2770.  
  2771. }else if(syurui == "team_mode"){
  2772.  
  2773. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2774. /* 日程 フォントサイズ */
  2775. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > font {
  2776.  
  2777. font-size:18px;
  2778.  
  2779. }
  2780.  
  2781.  
  2782.  
  2783.  
  2784. /* 上部 */
  2785. /*body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) td {*/
  2786. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) td {
  2787. display: block;
  2788. width: 100%;
  2789. }
  2790.  
  2791. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(1) table:nth-child(4) td {
  2792.  
  2793. display: table-cell;
  2794. width: 25%;
  2795. }
  2796.  
  2797. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(1) td table td {
  2798.  
  2799. display: table-cell;
  2800. width: unset;
  2801.  
  2802. }
  2803.  
  2804. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(n) td table tbody tr:nth-child(n) td {
  2805.  
  2806. display: table-cell;
  2807. width: unset;
  2808.  
  2809.  
  2810. }
  2811.  
  2812. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody >tr td table:nth-child(2) tbody tr td:nth-child(2) table tbody tr:nth-child(3) td table td {
  2813. display: table-cell;
  2814. width: unset;
  2815.  
  2816.  
  2817. }
  2818.  
  2819.  
  2820.  
  2821.  
  2822.  
  2823. /* 野手テーブル 改行しない*/
  2824.  
  2825. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(4) tbody tr td table td {
  2826. white-space: nowrap;
  2827.  
  2828. }
  2829.  
  2830.  
  2831.  
  2832. /* 投手テーブル 改行しない*/
  2833. body table tbody tr:nth-child(1) td:nth-child(2) table:nth-child(7) tbody tr td table:nth-child(7) tbody tr td table td {
  2834.  
  2835. white-space: nowrap;
  2836.  
  2837. }
  2838.  
  2839. /* セル間隔調整 */
  2840. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(1) > td:nth-child(n) {
  2841.  
  2842. padding: 0 6 0 6;
  2843.  
  2844. }
  2845. #open2 > div > table > tbody > tr > td > table > tbody > tr:nth-child(2n) > td:nth-child(1) {
  2846.  
  2847. padding: 15 0 15 0;
  2848.  
  2849. }
  2850.  
  2851.  
  2852.  
  2853.  
  2854.  
  2855. /* ヘッダ部 */
  2856. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2857.  
  2858. height: 80px;
  2859.  
  2860.  
  2861. }
  2862. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  2863.  
  2864. width: 80px;
  2865.  
  2866. }
  2867.  
  2868. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2869.  
  2870. height: 40px;
  2871.  
  2872. }
  2873.  
  2874.  
  2875.  
  2876.  
  2877.  
  2878. /* ヘッダ画像 */
  2879. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2880.  
  2881.  
  2882. display: none;
  2883.  
  2884. }
  2885. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2886.  
  2887. display: none;
  2888.  
  2889.  
  2890. }
  2891.  
  2892. /* メニュー非表示 */
  2893. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  2894.  
  2895. display: none;
  2896.  
  2897. }
  2898.  
  2899.  
  2900. /* ロゴ */
  2901. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  2902.  
  2903. height: 80px;
  2904. width: 250px;
  2905. }
  2906.  
  2907.  
  2908.  
  2909.  
  2910.  
  2911.  
  2912.  
  2913.  
  2914.  
  2915.  
  2916. /* 通常メニューを消す */
  2917. /* ヘッダ画像 */
  2918. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  2919.  
  2920.  
  2921. display: none;
  2922.  
  2923. }
  2924. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  2925.  
  2926. display: none;
  2927.  
  2928.  
  2929. }
  2930.  
  2931. /* メニュー非表示 */
  2932. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(7) > table {
  2933.  
  2934. display: none;
  2935.  
  2936. }
  2937.  
  2938. /* ドラフト メニュー非表示 */
  2939. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) {
  2940.  
  2941. display: none;
  2942.  
  2943. }
  2944.  
  2945.  
  2946. /* ロゴのテーブルを非表示 */
  2947. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  2948.  
  2949. display: none;
  2950.  
  2951. }
  2952.  
  2953.  
  2954.  
  2955.  
  2956. #open2 > div > table > tbody > tr > td > div > input[type="submit"] {
  2957.  
  2958. z-index:1;
  2959. position: relative;
  2960.  
  2961. }
  2962.  
  2963.  
  2964.  
  2965. `;
  2966. }else if(syurui == "consciousness"){
  2967.  
  2968. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  2969.  
  2970. input[type="submit"] {
  2971.  
  2972. width: 250px;
  2973. height: 80px;
  2974. font-size: 20px;
  2975.  
  2976. }
  2977.  
  2978.  
  2979.  
  2980.  
  2981.  
  2982.  
  2983.  
  2984.  
  2985.  
  2986.  
  2987.  
  2988. textarea[name="com_content"] {
  2989.  
  2990. height: 150px;
  2991.  
  2992. }
  2993.  
  2994.  
  2995.  
  2996.  
  2997.  
  2998.  
  2999.  
  3000.  
  3001. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(6) img {
  3002.  
  3003. height: 30px;
  3004.  
  3005. }
  3006.  
  3007.  
  3008.  
  3009.  
  3010.  
  3011.  
  3012. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3013.  
  3014. display: none;
  3015.  
  3016. }
  3017.  
  3018.  
  3019.  
  3020. /* ヘッダ画像 */
  3021. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3022.  
  3023.  
  3024. display: none;
  3025.  
  3026. }
  3027. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3028.  
  3029. display: none;
  3030.  
  3031.  
  3032. }
  3033.  
  3034. /* メニュー非表示 */
  3035. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3036.  
  3037. display: none;
  3038.  
  3039. }
  3040.  
  3041.  
  3042. /* ロゴ */
  3043. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3044.  
  3045. height: 80px;
  3046. width: 250px;
  3047. }
  3048.  
  3049. /* タイトルロゴのセル表示調整 */
  3050. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3051.  
  3052. width: 100%;
  3053. height: 80px;
  3054.  
  3055. }
  3056.  
  3057. /* ロゴのテーブルを非表示 */
  3058. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3059.  
  3060. display: none;
  3061.  
  3062. }
  3063.  
  3064.  
  3065. select {
  3066.  
  3067. //width: 140px;
  3068. height: 80px;
  3069. font-size:26px;
  3070.  
  3071. }
  3072.  
  3073. input[type="radio"] {
  3074.  
  3075. width: 30px;
  3076. height: 40px;
  3077.  
  3078. }
  3079.  
  3080. /* テーブル枠調整 */
  3081. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3082.  
  3083. width: 99%;
  3084.  
  3085. }
  3086.  
  3087. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) > tbody > tr > td > table {
  3088.  
  3089. width: 98%;
  3090.  
  3091. }
  3092.  
  3093.  
  3094.  
  3095.  
  3096. `;
  3097.  
  3098. }else if(syurui == "training"){
  3099.  
  3100. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3101.  
  3102. input {
  3103.  
  3104. width: 270px;
  3105. height: 80px;
  3106. font-size: 20px;
  3107.  
  3108. }
  3109.  
  3110.  
  3111.  
  3112. /* 次の試合1 */
  3113. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > b {
  3114.  
  3115. word-wrap: break-word;
  3116. white-space: normal;
  3117. display: block;
  3118.  
  3119. }
  3120.  
  3121. /* 次の試合2 */
  3122. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(4) > tbody > tr:nth-child(1) > td > table > tbody > tr > td > table > tbody > tr > td:nth-child(2) > strong {
  3123.  
  3124. word-wrap: break-word;
  3125. white-space: normal;
  3126. display: block;
  3127.  
  3128. }
  3129.  
  3130.  
  3131.  
  3132.  
  3133. /* ヘッダ部 */
  3134. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3135.  
  3136. height: 80px;
  3137.  
  3138.  
  3139. }
  3140. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(n+2) img {
  3141.  
  3142. width: 80px;
  3143.  
  3144. }
  3145.  
  3146. /* ロゴ */
  3147. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3148.  
  3149. height: 80px;
  3150. width: 250px;
  3151. }
  3152.  
  3153.  
  3154.  
  3155. /* ログイン部分 */
  3156.  
  3157. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td {
  3158.  
  3159. display: block;
  3160. }
  3161.  
  3162.  
  3163.  
  3164.  
  3165.  
  3166.  
  3167.  
  3168.  
  3169.  
  3170.  
  3171. /* ヘッダ画像 */
  3172. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(2) {
  3173.  
  3174.  
  3175. display: none;
  3176.  
  3177. }
  3178. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) > table > tbody > tr > td:nth-child(1) {
  3179.  
  3180. display: none;
  3181.  
  3182.  
  3183. }
  3184.  
  3185. /* メニュー非表示 */
  3186. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(4) {
  3187.  
  3188. display: none;
  3189.  
  3190. }
  3191.  
  3192.  
  3193. /* ロゴ */
  3194. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(1) > a > strong > img {
  3195.  
  3196. height: 80px;
  3197. width: 250px;
  3198. }
  3199.  
  3200. /* タイトルロゴのセル表示調整 */
  3201. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) > tbody > tr > td:nth-child(3) {
  3202.  
  3203. width: 100%;
  3204. height: 80px;
  3205.  
  3206. }
  3207.  
  3208. /* ロゴのテーブルを非表示 */
  3209. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(2) {
  3210.  
  3211. display: none;
  3212.  
  3213. }
  3214.  
  3215.  
  3216.  
  3217.  
  3218. /* テーブル枠調整 */
  3219. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(5) {
  3220.  
  3221. width: 99%;
  3222.  
  3223. }
  3224.  
  3225.  
  3226.  
  3227.  
  3228. /* 戻る リンク */
  3229.  
  3230. a[href="javascript:history.back()"] {
  3231.  
  3232. font-size: 40px;
  3233.  
  3234. }
  3235.  
  3236.  
  3237.  
  3238. /* 休息ボタン */
  3239. input[value="休息する"] {
  3240. width: 150px;
  3241. padding: 0 20 0 20;
  3242. }
  3243.  
  3244.  
  3245. /* 休息ボタン */
  3246. input[value="ログイン画面に戻る"] {
  3247. width: 210px;
  3248. padding: 0 20 0 20;
  3249. }
  3250.  
  3251. /* ステータス */
  3252. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(3) td {
  3253.  
  3254. font-size: 24px;
  3255.  
  3256. }
  3257.  
  3258. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > center > font {
  3259.  
  3260. font-size: 20px;
  3261.  
  3262. }
  3263.  
  3264. body > table > tbody > tr:nth-child(1) > td:nth-child(2) > table:nth-child(8) > tbody > tr > td > table:nth-child(10) {
  3265.  
  3266. width: 100%;
  3267.  
  3268. }
  3269.  
  3270.  
  3271.  
  3272.  
  3273.  
  3274.  
  3275.  
  3276. `;
  3277.  
  3278. /*
  3279. }else if(syurui == "rule"){
  3280.  
  3281. txt = txt + (function(param) {return param[0].replace(/\n|\r/g, "");})`
  3282.  
  3283.  
  3284.  
  3285. `;
  3286. */
  3287.  
  3288.  
  3289.  
  3290. }
  3291.  
  3292.  
  3293.  
  3294.  
  3295.  
  3296.  
  3297.  
  3298.  
  3299.  
  3300.  
  3301.  
  3302.  
  3303. return txt;
  3304.  
  3305.  
  3306.  
  3307.  
  3308. }
  3309.  
  3310.  
  3311.  
  3312.  
  3313.  
  3314.  
  3315.  
  3316.  
  3317.  
  3318. })();
  3319.  
  3320.  
  3321.