You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 21 kB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. @charset "utf-8";
  2. @font-face {
  3. font-family: 'FOT-KurokaneStd-EB';
  4. font-style: normal;
  5. /*font-weight: 400;*/
  6. src: url("fonts/FOT-KurokaneStd-EB.woff2") format('woff2'),
  7. url("fonts/FOT-KurokaneStd-EB.woff") format('woff'),
  8. url("fonts/FOT-KurokaneStd-EB.ttf") format('truetype'),
  9. url("fonts/FOT-KurokaneStd-EB.eot") format('embedded-opentype'),
  10. url("fonts/FOT-KurokaneStd-EB.svg") format('svg');
  11. }
  12. body{
  13. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  14. --search-icon-unchecked: 0.4;
  15. }
  16. .display-none{
  17. display:none !important;
  18. }
  19. .disabled{
  20. cursor: not-allowed;
  21. pointer-events: none;
  22. opacity: 0.5;
  23. }
  24. .title{
  25. font-size: 2em;
  26. font-weight: bold;
  27. }
  28. .detail{
  29. min-height: 100px;
  30. font-size: 1.5em;
  31. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  32. }
  33. .title,.detail{
  34. width:100%;
  35. border: none;
  36. background: none;
  37. box-sizing: border-box;
  38. padding: 1px;
  39. }
  40. .title:focus,.detail:focus{
  41. border: black solid 1px;;
  42. background-color: #eee;
  43. padding: 0;
  44. }
  45. ul{
  46. margin: 0;
  47. padding: 0;
  48. list-style: none;
  49. }
  50. /*队伍的整个盒子*/
  51. .formation-box{
  52. width: 648px;
  53. min-width: 648px;
  54. }
  55. /*单个怪物*/
  56. .monster{
  57. font-family: 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  58. width: 100px;
  59. height: 100px;
  60. margin: 0;
  61. display: block;
  62. background-repeat: no-repeat;
  63. position: relative;
  64. cursor: pointer;
  65. border-radius: 5px;
  66. }
  67. .null .monster,.delay .monster,
  68. .null .property,.delay .property,
  69. .null .subproperty,.delay .subproperty
  70. {
  71. box-sizing: border-box;
  72. background-image: none;
  73. }
  74. .null .monster{
  75. background-color: rgba(230,230,230,0.5);
  76. border: 3px grey dashed;
  77. }
  78. .edit-box .null .monster{
  79. background-color: #653;
  80. border: none;
  81. box-shadow: inset black 0 0 7px;
  82. }
  83. .delay .monster{
  84. background-color: yellow;
  85. box-shadow: inset orange 0 0 7px;
  86. border: 3px black solid;
  87. }
  88. .delay .monster::before{
  89. display: block;
  90. width: 94px;
  91. height: 94px;
  92. color: black;
  93. font-size: 30px;
  94. line-height: 47px;
  95. text-align: center;
  96. font-weight: bold;
  97. /*content: "应 对\A威 吓";*/
  98. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  99. white-space: pre-wrap;
  100. display: inline-block;
  101. }
  102. /*怪物属性*/
  103. .property,.subproperty{
  104. position:absolute;
  105. left:0;top:0;
  106. width: 100px;
  107. height: 100px;
  108. background-repeat: no-repeat;
  109. background-image: url(images/CARDFRAME2.PNG);
  110. background-position: 100px 100px; /*默认都不显示*/
  111. }
  112. /*怪物-加值*/
  113. .monster .plus{
  114. color: yellow;
  115. font-size: 17px;
  116. line-height: 17px;
  117. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  118. position: absolute;
  119. left:10px;
  120. }
  121. .null .monster>div,.delay .monster>div{
  122. display:none;
  123. }
  124. .monster .plus .hp::before,
  125. .monster .plus .atk::before,
  126. .monster .plus .rcv::before,
  127. .monster .plus ._297::before{
  128. content: "+";
  129. }
  130. .monster .plus ._297{ /*297默认不显示*/
  131. display:none;
  132. }
  133. .monster .plus.has297 .hp,.monster .plus.zero .hp,
  134. .monster .plus.has297 .atk,.monster .plus.zero .atk,
  135. .monster .plus.has297 .rcv,.monster .plus.zero .rcv{ /*当是297时隐藏3维*/
  136. display:none;
  137. }
  138. .monster .plus.has297 ._297{ /*当是297时显示297*/
  139. display:block;
  140. }
  141. /*怪物-觉醒*/
  142. .monster .awoken-count{
  143. color: yellow;
  144. text-shadow: black 0 0 4px;
  145. text-align: center;
  146. background-image: url(images/awoken-count-bg.png);
  147. background-repeat: no-repeat;
  148. width: 34px;
  149. height: 38px;
  150. position: absolute;
  151. top: -4px;
  152. right: 0;
  153. transform: scale(0.75) translateX(4px);
  154. }
  155. .monster .awoken-count,
  156. .monster .awoken-count.full-awoken::before{
  157. font-size: 20px;
  158. line-height: 28px;
  159. }
  160. .monster .awoken-count.full-awoken{
  161. font-size: 0;
  162. }
  163. .monster .awoken-count.full-awoken::before{
  164. content: "★";
  165. }
  166. .monster .awoken-count.allowable-assist.full-awoken::before{
  167. content: none;
  168. }
  169. .monster .awoken-count.allowable-assist{
  170. font-size: 0;
  171. text-shadow: none;
  172. background-position: 0 -38px;
  173. }
  174. /*怪物-超觉醒*/
  175. .monster .super-awoken{
  176. position: absolute;
  177. right:0;
  178. top: 25px;
  179. transform: scale(0.75) translateX(4px);
  180. }
  181. /*怪物-等级*/
  182. .monster .level{
  183. color: white;
  184. height: 17px;
  185. text-shadow: black 0 0 2px, black 2px 2px 0;
  186. position: absolute;
  187. left: 5px;
  188. bottom: 0px;
  189. vertical-align: top;
  190. }
  191. .monster .level,.monster .level.max::before{
  192. font-size: 15px;
  193. line-height: 17px;
  194. }
  195. .monster .level.max{
  196. font-size: 0;
  197. }
  198. .monster .level._110{
  199. color: lightskyblue;
  200. }
  201. /*.monster .level::before{
  202. content: "Lv.";
  203. }.monster .level.max::before{
  204. content: "Lv.最大";
  205. }*/
  206. .monster .id{
  207. display: block;
  208. color: white;
  209. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  210. font-size: 15px;
  211. line-height: 17px;
  212. height: 17px;
  213. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px;
  214. position: absolute;
  215. left: 5px;
  216. bottom: 15px;
  217. }
  218. .not-show-mon-id .monster .id{
  219. display: none;
  220. }
  221. /*.monster .id::before{
  222. content: "No.";
  223. }*/
  224. /*辅助和队伍的每一只框架*/
  225. .member, .acquisitus-awoken-icon{
  226. display: block;
  227. float: left;
  228. position: relative;
  229. width: 108px;
  230. }
  231. .formation-box .monster{
  232. margin: 4px; /*留给队长边框的*/
  233. }
  234. .formation-assist, .formation-team,.formation-badge{
  235. display: inline-block;
  236. }
  237. /*队伍的背景色*/
  238. .formation-A-box .formation-team,.formation-A-box .formation-latents{
  239. background-color:pink;
  240. }
  241. .formation-B-box .formation-team,.formation-B-box .formation-latents{
  242. background-color:lightblue;
  243. }
  244. .formation-A-bigbox, .formation-B-bigbox{
  245. position: relative;
  246. font-size:0;
  247. }
  248. .formation-B-bigbox{
  249. margin-top:15px;
  250. }
  251. /*队伍A、B的文字*/
  252. .formation-A-bigbox::after, .formation-B-bigbox::before{
  253. font-size: 30px;
  254. font-weight: bold;
  255. text-align: center;
  256. line-height: 50px;
  257. white-space: pre-wrap;
  258. display: inline-block;
  259. width: 108px;
  260. height: 108px;
  261. }
  262. .formation-A-bigbox::after{
  263. color:red;
  264. background-color:pink;
  265. /*content: "队伍\A A";*/
  266. }
  267. .formation-B-bigbox::before{
  268. color:blue;
  269. background-color:lightblue;
  270. /*content: "队伍\A B";*/
  271. vertical-align:top;
  272. }
  273. .formation-A-box, .formation-B-box{
  274. display: inline-block;
  275. vertical-align:bottom;
  276. }
  277. .formation-A-box .formation-assist .member::after, .formation-B-box .formation-assist .member::before{
  278. width: 108px;
  279. text-align: center;
  280. font-size: 18px;
  281. font-weight: bold;
  282. display: inline-block;
  283. position: relative;
  284. }
  285. .formation-A-box .formation-assist .member::after{
  286. color:red;
  287. /*content: "▼辅助";*/
  288. }
  289. .formation-B-box .formation-assist .member::before{
  290. color:blue;
  291. /*content: "▲辅助";*/
  292. }
  293. .formation-box .team-info{
  294. font-size: 15px;
  295. }
  296. .team-info .tIf-total-hp,.team-info .tIf-total-rcv{
  297. display:inline-block;
  298. }
  299. /*队伍的潜觉*/
  300. .formation-latents .latents{
  301. width: 108px;
  302. /*float:left;*/
  303. margin-bottom: -20px;
  304. display: inline-block;
  305. }
  306. .formation-latents .latent-ul{
  307. font-size: 0;
  308. width: 152px;
  309. transform: translate(-22px,-8px) scale(0.63);
  310. }
  311. .formation-latents .latent-icon{
  312. margin-left: 3px;
  313. margin-right: 3px;
  314. }
  315. .formation-latents .latent-icon-12,
  316. .formation-latents .latent-icon-13,
  317. .formation-latents .latent-icon-14,
  318. .formation-latents .latent-icon-15,
  319. .formation-latents .latent-icon-16,
  320. .formation-latents .latent-icon-17,
  321. .formation-latents .latent-icon-18,
  322. .formation-latents .latent-icon-19,
  323. .formation-latents .latent-icon-20,
  324. .formation-latents .latent-icon-21,
  325. .formation-latents .latent-icon-22,
  326. .formation-latents .latent-icon-23,
  327. .formation-latents .latent-icon-24,
  328. .formation-latents .latent-icon-25,
  329. .formation-latents .latent-icon-26,
  330. .formation-latents .latent-icon-27,
  331. .formation-latents .latent-icon-28,
  332. .formation-latents .latent-icon-29,
  333. .formation-latents .latent-icon-30,
  334. .formation-latents .latent-icon-31,
  335. .formation-latents .latent-icon-32,
  336. .formation-latents .latent-icon-33{
  337. margin: 0;
  338. }
  339. /*队长的边框*/
  340. .formation-A-box .formation-team .team-leader .monster, .formation-B-box .formation-team .team-leader .monster{
  341. border-radius: 10px;
  342. border-width:4px;
  343. border-style:solid;
  344. box-sizing: initial;
  345. margin: 0;
  346. }
  347. .formation-A-box .formation-team .team-leader .monster{
  348. border-color: red;
  349. }
  350. .formation-B-box .formation-team .team-leader .monster{
  351. border-color: blue;
  352. }
  353. /*三维计算值*/
  354. .formation-ability .abilitys{
  355. padding-left: 5px;
  356. box-sizing: border-box;
  357. font-size: 15px;
  358. width: 108px;
  359. display: inline-block;
  360. }
  361. .abilitys .hp::before,.abilitys .atk::before,.abilitys .rcv::before{
  362. width: 45px;
  363. display: inline-block;
  364. }
  365. /*.abilitys .hp::before{
  366. content: "HP:";
  367. }
  368. .abilitys .atk::before{
  369. content: "攻击:";
  370. }
  371. .abilitys .rcv::before{
  372. content: "回复:";
  373. }*/
  374. /*编辑窗口*/
  375. .blur-bg{
  376. filter:blur(5px);
  377. pointer-events: none;
  378. }
  379. .edit-box{
  380. background-color: rgba(82, 53, 30, 0.8);
  381. color: white;
  382. position: absolute;
  383. left:0;
  384. top:0;
  385. width:100%;
  386. box-sizing: border-box;
  387. min-width:664px;
  388. }
  389. .edit-box-title{
  390. text-align: center;
  391. font-size: 2em;
  392. font-weight: bold;
  393. }
  394. /*.edit-box .edit-box-title::before{
  395. content: "修改队员";
  396. }
  397. .edit-box .edit-box-title.edit-box-title-assist::before{
  398. content: "修改辅助";
  399. }*/
  400. .edit-box .monsterinfo-box{
  401. font-family: 'FOT-KurokaneStd-EB';
  402. color: white;
  403. text-shadow: black 2px 2px 0;
  404. height: 100px;
  405. margin: 5px 0;
  406. background-image: linear-gradient(#798421,#394914);
  407. border-top: #B1BB39 solid 4px;
  408. border-bottom: #72941D ridge 7px;
  409. box-shadow: black 0 3px 3px;
  410. padding: 5px 10px;
  411. }
  412. .edit-box .search-box,
  413. .edit-box .setting-box{
  414. padding: 0 10px;
  415. }
  416. /*.edit-box .setting-box .row-mon-id::before{
  417. content: "▼怪物ID";
  418. }*/
  419. .edit-box .setting-box .row-mon-id .m-id{
  420. box-sizing: border-box;
  421. font-size: 25px;
  422. height: 40px;
  423. width: 100%;
  424. }
  425. .edit-box .setting-box .row-mon-id .unable-monster{
  426. pointer-events: none;
  427. opacity: 0.5;
  428. }
  429. .edit-box .setting-box .row-mon-id .unable-monster .monster{
  430. box-sizing: border-box;
  431. border: 5px solid red;
  432. border-radius: 10px;
  433. overflow: hidden;
  434. }
  435. .edit-box .setting-box .row-mon-id .unable-monster .id{
  436. display: none;
  437. }
  438. .edit-box .setting-box .row-mon-id .search-button{
  439. width: 100%;
  440. height: 40px;
  441. font-size: 25px;
  442. }
  443. .edit-box .setting-box .row-mon-id .evo-card-list li,
  444. .edit-box .search-box .search-mon-list li{
  445. display: inline-block;
  446. vertical-align: top;
  447. top: 0;
  448. width: 78px;
  449. height: 80px;
  450. }
  451. .edit-box .setting-box .row-mon-id .evo-card-list .monster,
  452. .edit-box .search-box .search-mon-list .monster{
  453. float: none;
  454. transform: scale(0.75) translate(-13px,-13px);
  455. }
  456. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id,
  457. .edit-box .search-box .search-mon-list .monster .id{
  458. bottom: 5px;
  459. font-size: 20px;
  460. }
  461. /*.setting-box .row-mon-id .open-search::before{
  462. content: "搜索怪物";
  463. }
  464. .search-box::before{
  465. content: "▼简易搜索";
  466. }
  467. .attrs .attr-all::before{
  468. content: "不限";
  469. }
  470. .attrs .attr-none::before{
  471. content: "无";
  472. }*/
  473. .search-box>div{
  474. margin-bottom: 5px;
  475. }
  476. .search-box>div ul{
  477. display: inline-block;
  478. }
  479. .search-box .attrs ul{
  480. display: block;
  481. }
  482. .search-box>div ul>li{
  483. display: inline-block;
  484. vertical-align: top;
  485. font-size:16px;
  486. overflow: hidden;
  487. }
  488. .search-box>div ul>li>label{
  489. cursor: pointer;
  490. display: block;
  491. text-align: center;
  492. }
  493. .attrs .attr-list-1::before,
  494. .attrs .attr-list-2::before,
  495. .types-div::before,
  496. .awoken-div::before,
  497. .sawoken-div::before{
  498. /*float: left;*/
  499. font-size: 16px;
  500. /*width: 55px;*/
  501. margin-right: 3px;
  502. display: inline-block;
  503. }
  504. /*.search-box .attrs .attr-list-1::before{
  505. content: "属性1";
  506. }
  507. .search-box .attrs .attr-list-2::before{
  508. content: "属性2";
  509. }
  510. .search-box .attrs .fix-main-color-label::after{
  511. content: "限制属性1为主属性,属性2为副属性";
  512. }*/
  513. .attr-radio,.type-check,.sawoken-check{
  514. display: none;
  515. }
  516. .attrs .attr-list{
  517. font-size:0;
  518. }
  519. .attrs .attr-list li{
  520. border: 1px solid white;
  521. border-left: none;
  522. background: #947244;
  523. }
  524. .attrs .attr-list li:hover{
  525. background: #E9CB9E;
  526. }
  527. .attrs .attr-list li:first-of-type{
  528. border-radius: 8px 0 0 8px;
  529. border-left: 1px solid white;
  530. }
  531. .attrs .attr-list li:last-of-type{
  532. border-radius: 0 8px 8px 0;
  533. }
  534. .attrs .attr-list li label{
  535. line-height: 30px;
  536. width: 55px;
  537. height: 30px;
  538. }
  539. .attrs .attr-list input:checked~label{
  540. background-color:#8C4242;
  541. box-shadow: inset black 0 0 5px;
  542. cursor: auto;
  543. }
  544. .attr-list-1{
  545. margin-bottom: 5px;
  546. }
  547. /*.search-box .types-div::before{
  548. content: "类型";
  549. }*/
  550. .types-div .type-list li label{
  551. opacity: var(--search-icon-unchecked);
  552. }
  553. .types-div .type-list input:checked~label{
  554. opacity: 1;
  555. }
  556. /*.search-box .awoken-div::before{
  557. content: "觉醒";
  558. }*/
  559. .search-box .awoken-list .awoken-count{
  560. float: none;
  561. }
  562. .search-box .awoken-list button{
  563. border: none;
  564. background-color: unset;
  565. font-family: 'FOT-KurokaneStd-EB';
  566. color: white;
  567. line-height: 32px;
  568. font-size: 16px;
  569. padding: 0;
  570. }
  571. .search-box .awoken-list .awoken-count.zero{
  572. opacity: var(--search-icon-unchecked);
  573. }
  574. .search-box .awoken-list .count{
  575. width: 30px;
  576. }
  577. .search-box .awoken-list .awoken-count .awoken-icon{
  578. cursor: pointer;
  579. }
  580. .search-box .awoken-list .awoken-count .count{
  581. cursor: pointer;
  582. }
  583. .search-box .awoken-list .awoken-count.zero .count{
  584. cursor: auto;
  585. }
  586. /*.search-box .sawoken-div::before{
  587. content: "超觉醒";
  588. }*/
  589. .sawoken-div .sawoken-list li label{
  590. opacity: var(--search-icon-unchecked);
  591. }
  592. .sawoken-div .sawoken-list input:checked~label{
  593. opacity: 1;
  594. }
  595. .control-div button{
  596. font-size: 20px;
  597. }
  598. .control-div .search-start{
  599. float: right;
  600. margin-left: 5px;
  601. }
  602. /*.control-div .search-start::before{
  603. content: "开始搜索";
  604. }
  605. .control-div .search-clear::before{
  606. content: "清空搜索条件";
  607. }
  608. .control-div .search-close::before{
  609. content: "关闭搜索";
  610. }*/
  611. .search-box .search-mon-list{
  612. border: 1px solid white;
  613. border-radius: 5px;
  614. background: grey;
  615. }
  616. .setting-box .row-mon-id .open-search{
  617. float: right;
  618. }
  619. .edit-box .setting-row{
  620. width: 100%;
  621. }
  622. .monsterinfo-box .monster-head{
  623. float: left;
  624. margin-right:5px;
  625. }
  626. .monsterinfo-box .monster-id{
  627. display:inline-block;
  628. width:150px;
  629. }
  630. /*.monsterinfo-box .monster-id::before{
  631. content: "No.";
  632. }*/
  633. .monsterinfo-box .monster-rare{
  634. display:inline-block;
  635. }
  636. .monsterinfo-box .monster-rare::before{
  637. color:gold;
  638. text-shadow: black 0 0 3px,black 0 2px 3px;
  639. }
  640. .rare-1::before{content: "★";}
  641. .rare-2::before{content: "★★";}
  642. .rare-3::before{content: "★★★";}
  643. .rare-4::before{content: "★★★★";}
  644. .rare-5::before{content: "★★★★★";}
  645. .rare-6::before{content: "★★★★★★";}
  646. .rare-7::before{content: "★★★★★★★";}
  647. .rare-8::before{content: "★★★★★★★★";}
  648. .rare-9::before{content: "★★★★★★★★★";}
  649. .rare-10::before{content: "★★★★★★★★★★";}
  650. .monsterinfo-box .monster-id,.monsterinfo-box .monster-rare,.monsterinfo-box .monster-name{
  651. vertical-align: top;
  652. margin:0;
  653. height: 34px;
  654. font-size: 22px;
  655. line-height: 22px;
  656. }
  657. .monsterinfo-box .monster-type{
  658. font-size: 0;
  659. }
  660. .monsterinfo-box .monster-type .type-name{
  661. display:inline-block;
  662. margin-right: 10px;
  663. }
  664. .monsterinfo-box .monster-type .type-icon{
  665. margin-right:3px;
  666. }
  667. .monsterinfo-box .monster-type .type-name::after{
  668. vertical-align: middle;
  669. font-size: 22px;
  670. line-height: 22px;
  671. }
  672. .edit-box .setting-box .row-mon-level::before{
  673. /*content: "▼怪物等级";*/
  674. display: block;
  675. }
  676. .edit-box .setting-box .m-level{
  677. font-size: 25px;
  678. height: 40px;
  679. width: calc(100% - 215px);
  680. box-sizing: border-box;
  681. }
  682. .m-level-btn-min,.m-level-btn-max{
  683. height: 40px;
  684. box-sizing: border-box;
  685. font-size: 25px;
  686. }
  687. .m-level-btn-min{
  688. width: 60px;
  689. }
  690. .m-level-btn-max{
  691. width: 145px;
  692. }
  693. /*.m-level-btn-max::before{
  694. content: "最高Lv";
  695. }
  696. .edit-box .setting-box .row-mon-awoken::before{
  697. content: "▼怪物觉醒";
  698. }*/
  699. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  700. font-size: 0;
  701. height: 32px;
  702. }
  703. .awoken-ul li{
  704. margin-right: 5px;
  705. }
  706. .awoken-ul li:last-of-type{
  707. margin-right: 0;
  708. }
  709. .edit-box .awoken-ul .awoken-icon{
  710. cursor: pointer;
  711. }
  712. .awoken-ul .awoken-icon.unselected-awoken{
  713. opacity: var(--search-icon-unchecked);
  714. }
  715. .row-mon-awoken .awoken-icon.awoken-count,
  716. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before
  717. {
  718. color: yellow;
  719. font-size: 22px;
  720. line-height: 28px;
  721. font-weight: bold;
  722. text-shadow: black 0 0 4px;
  723. text-align: center;
  724. }
  725. .row-mon-awoken .awoken-icon.awoken-count.full-awoken{
  726. font-size: 0;
  727. }
  728. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before{
  729. content: "★";
  730. }
  731. .row-mon-awoken .m-super-awoken-ul{
  732. margin-top: 5px;
  733. }
  734. /*.edit-box .setting-box .row-mon-super-awoken::before{
  735. content: "▼超觉醒";
  736. }*/
  737. .edit-box .setting-box .row-mon-plus::before{
  738. /*content: "▼怪物加值";*/
  739. display: block;
  740. }
  741. .row-mon-plus .ability-value::before{content: "(";}
  742. .row-mon-plus .ability-value::after{content: ")";}
  743. .setting-box .m-plus-hp,.setting-box .m-plus-atk,.setting-box .m-plus-rcv{
  744. font-size: 25px;
  745. height: 40px;
  746. width: calc(100% - 288px);
  747. box-sizing: border-box;
  748. }
  749. .m-plus-hp-li::before,.m-plus-atk-li::before,.m-plus-rcv-li::before,.row-mon-plus .ability-value{
  750. font-size: 25px;
  751. width: 55px;
  752. display: inline-block;
  753. }
  754. .row-mon-plus .ability-value{
  755. width: 90px;
  756. }
  757. /*.m-plus-hp-li::before{content: "HP";}
  758. .m-plus-atk-li::before{content: "攻击";}
  759. .m-plus-rcv-li::before{content: "回复";}*/
  760. .m-plus-btn{
  761. height: 40px;
  762. width: 55px;
  763. box-sizing: border-box;
  764. font-size: 25px;
  765. }
  766. .m-plus-btn::before,.m-plus-btn-297::before{
  767. content: "+";
  768. }
  769. .m-plus-btn-297{
  770. float:right;
  771. width: 85px;
  772. height: 120px;
  773. box-sizing: border-box;
  774. font-size: 25px;
  775. }
  776. /*.edit-box .setting-box .row-mon-latent::before{
  777. content: "▼潜在觉醒";
  778. }*/
  779. .m-latent-ul{
  780. text-align: center;
  781. font-size: 0;
  782. }
  783. .m-latent-ul .latent-icon{
  784. margin-left: 12px;
  785. }
  786. .m-latent-ul .latent-icon:first-of-type{
  787. margin-left: 0;
  788. }
  789. .m-latent-allowable-ul{
  790. margin-top: 5px;
  791. }
  792. .m-latent-allowable-ul .latent-icon,
  793. .m-latent-ul .latent-icon-1,
  794. .m-latent-ul .latent-icon-2,
  795. .m-latent-ul .latent-icon-3,
  796. .m-latent-ul .latent-icon-4,
  797. .m-latent-ul .latent-icon-5,
  798. .m-latent-ul .latent-icon-6,
  799. .m-latent-ul .latent-icon-7,
  800. .m-latent-ul .latent-icon-8,
  801. .m-latent-ul .latent-icon-9,
  802. .m-latent-ul .latent-icon-10,
  803. .m-latent-ul .latent-icon-11,
  804. .m-latent-ul .latent-icon-12,
  805. .m-latent-ul .latent-icon-13,
  806. .m-latent-ul .latent-icon-14,
  807. .m-latent-ul .latent-icon-15,
  808. .m-latent-ul .latent-icon-16,
  809. .m-latent-ul .latent-icon-17,
  810. .m-latent-ul .latent-icon-18,
  811. .m-latent-ul .latent-icon-19,
  812. .m-latent-ul .latent-icon-20,
  813. .m-latent-ul .latent-icon-21,
  814. .m-latent-ul .latent-icon-22,
  815. .m-latent-ul .latent-icon-23,
  816. .m-latent-ul .latent-icon-24{
  817. cursor: pointer;
  818. }
  819. .m-latent-allowable-ul .latent-icon.unselected-latent{
  820. cursor: default;
  821. opacity: var(--search-icon-unchecked);
  822. }
  823. .edit-box .button-box{
  824. border-top: black solid 3px;
  825. background-color: rgba(0,0,0,0.5);
  826. margin-top: 10px;
  827. padding: 5px;
  828. height: 50px;
  829. }
  830. .edit-box .button-box .button-null,
  831. .edit-box .button-box .button-delay,
  832. .edit-box .button-box .button-cancel,
  833. .edit-box .button-box .button-done{
  834. height: 50px;
  835. box-sizing: border-box;
  836. font-size: 25px;
  837. font-weight: bold;
  838. }
  839. .edit-box .button-box .button-null,
  840. .edit-box .button-box .button-delay{
  841. float: left;
  842. margin-right:5px;
  843. }
  844. .edit-box .button-box .button-cancel,
  845. .edit-box .button-box .button-done{
  846. float: right;
  847. margin-left:5px;
  848. }
  849. /*.edit-box .button-box .button-null::after{
  850. content: "留空格子";
  851. }
  852. .edit-box .button-box .button-delay::after{
  853. content: "应对威吓";
  854. }
  855. .edit-box .button-box .button-cancel::after{
  856. content: "取消修改";
  857. }
  858. .edit-box .button-box .button-done::after{
  859. content: "确认修改";
  860. }
  861. .edit-box .button-box .button-done.cant-assist::after{
  862. content: "不能辅助";
  863. }*/
  864. .awoken-total-box::before{
  865. font-size: 20px;
  866. margin-top:5px;
  867. /*content: "觉醒总计:";*/
  868. }
  869. .detail-box{
  870. margin-top:5px;
  871. }
  872. .awoken-total-box .awoken-ul .awoken-count,
  873. .search-box .awoken-list .awoken-count{
  874. font-size: 16px;
  875. line-height: 32px;
  876. font-family: 'FOT-KurokaneStd-EB';
  877. float: left;
  878. margin-right: 3px;
  879. }
  880. .awoken-total-box .awoken-ul .count,
  881. .search-box .awoken-list .count{
  882. height: 32px;
  883. width: 37px;
  884. display: inline-block;
  885. vertical-align: middle;
  886. }
  887. .awoken-total-box .awoken-ul .count::before,
  888. .search-box .awoken-list .count::before{
  889. content: "×";
  890. }
  891. /*控制框*/
  892. .control-box{
  893. margin-bottom: 10px;
  894. }
  895. .control-box .languages-label::before{
  896. content: "Lanuage:";
  897. }
  898. .control-box .solo-link::before{
  899. content: "Jump To Solo Version";
  900. }
  901. .control-box .multi-link::before{
  902. content: "Jump To 2-Player Version";
  903. }
  904. .control-box .btn-show-mon-id{
  905. margin-left: 5px;
  906. }
  907. /*.control-box .btn-show-mon-id::before{
  908. content: "隐藏怪物ID";
  909. }
  910. .not-show-mon-id .control-box .btn-show-mon-id::before{
  911. content: "显示怪物ID";
  912. }*/
  913. #interchange-line{
  914. pointer-events: none;
  915. position: absolute;
  916. left: 0;
  917. top: 0;
  918. }
  919. #interchange-line g line {
  920. fill: none;
  921. stroke: blue;
  922. stroke-linecap: round;
  923. stroke-width: 5;
  924. stroke-dasharray: 10;
  925. }

智龙迷城队伍图制作工具