Greasy Fork is available in English.

high pena CSS for smartphone

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

Verze ze dne 14. 02. 2018. Zobrazit nejnovější verzi.

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