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 13 kB

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
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  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. }
  15. .display-none{
  16. display:none;
  17. }
  18. .disabled{
  19. cursor: not-allowed;
  20. pointer-events: none;
  21. opacity: 0.5;
  22. }
  23. .title{
  24. font-size: 2em;
  25. font-weight: bold;
  26. }
  27. .detail{
  28. min-height: 100px;
  29. font-size: 1.5em;
  30. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  31. }
  32. .title,.detail{
  33. width:100%;
  34. border: none;
  35. background: none;
  36. box-sizing: border-box;
  37. padding: 1px;
  38. }
  39. .title:focus,.detail:focus{
  40. border: black solid 1px;;
  41. background-color: #eee;
  42. padding: 0;
  43. }
  44. ul{
  45. margin: 0;
  46. padding: 0;
  47. list-style: none;
  48. }
  49. /*队伍的整个盒子*/
  50. .formation-box{
  51. width: 648px;
  52. min-width: 648px;
  53. }
  54. /*单个怪物*/
  55. .monster{
  56. font-family: 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  57. width: 100px;
  58. height: 100px;
  59. margin: 0;
  60. display: block;
  61. float: left;
  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: 20px;
  116. line-height: 20px;
  117. text-shadow: black 0 0 1px, black 2px 2px 0;
  118. position: absolute;
  119. left:0;
  120. }
  121. .null .plus,.delay .plus,
  122. .null .awoken-count,.delay .awoken-count,
  123. .null .level,.delay .level{
  124. display:none;
  125. }
  126. /*.monster .plus .hp::before,
  127. .monster .plus .atk::before,
  128. .monster .plus .rcv::before,
  129. .monster .plus ._297::before{
  130. content: "+";
  131. }*/
  132. .monster .plus ._297{ /*297默认不显示*/
  133. display:none;
  134. }
  135. .monster .plus.has297 .hp,.monster .plus.zero .hp,
  136. .monster .plus.has297 .atk,.monster .plus.zero .atk,
  137. .monster .plus.has297 .rcv,.monster .plus.zero .rcv{ /*当是297时隐藏3维*/
  138. display:none;
  139. }
  140. .monster .plus.has297 ._297{ /*当是297时显示297*/
  141. display:block;
  142. }
  143. /*怪物-觉醒*/
  144. .monster .awoken-count{
  145. color: yellow;
  146. font-size: 20px;
  147. line-height: 30px;
  148. text-shadow: black 0 0 4px;
  149. text-align: center;
  150. background-image: url(images/awoken-bg.png);
  151. background-repeat: no-repeat;
  152. width: 34px;
  153. height: 38px;
  154. position: absolute;
  155. right: 0;
  156. }
  157. .monster .awoken-count.allowable-assist{
  158. font-size: 0;
  159. text-shadow: none;
  160. background-position: 0 -38px;
  161. }
  162. /*怪物-超觉醒*/
  163. .monster .super-awoken{
  164. position: absolute;
  165. right:0;
  166. top: 30px;
  167. transform: scale(0.80) translateX(4px);
  168. }
  169. /*怪物-等级*/
  170. .monster .level{
  171. color: white;
  172. font-size: 18px;
  173. line-height: 27px;
  174. height: 27px;
  175. text-shadow: black 0 0 1px, black 2px 2px 0;
  176. position: absolute;
  177. left: 5px;
  178. bottom: 0;
  179. vertical-align: top;
  180. }
  181. .monster .level._110{
  182. color: lightskyblue;
  183. }
  184. /*.monster .level::before{
  185. content: "Lv.";
  186. }*/
  187. .monster .level.max{
  188. font-size: 0;
  189. }
  190. .monster .level.max::before{
  191. font-size: 18px;
  192. /*content: "Lv.最大";*/
  193. }
  194. /*辅助和队伍的每一只框架*/
  195. .member, .acquisitus-awoken-icon {
  196. display: block;
  197. float: left;
  198. position: relative;
  199. width: 108px;
  200. }
  201. .formation-box .monster{
  202. margin: 4px; /*留给队长边框的*/
  203. }
  204. /*队伍的背景色*/
  205. .formation-assist, .formation-team{
  206. display: inline-block;
  207. }
  208. .formation-A-box .formation-team,.formation-A-box .formation-latents{
  209. background-color:pink;
  210. }
  211. .formation-B-box .formation-team,.formation-B-box .formation-latents{
  212. background-color:lightblue;
  213. }
  214. .formation-A-bigbox, .formation-B-bigbox{
  215. position: relative;
  216. font-size:0;
  217. }
  218. .formation-B-bigbox{
  219. margin-top:15px;
  220. }
  221. /*队伍A、B的文字*/
  222. .formation-A-bigbox::after, .formation-B-bigbox::before{
  223. font-size: 30px;
  224. font-weight: bold;
  225. text-align: center;
  226. line-height: 50px;
  227. white-space: pre-wrap;
  228. display: inline-block;
  229. width: 108px;
  230. height: 108px;
  231. }
  232. .formation-A-bigbox::after{
  233. color:red;
  234. background-color:pink;
  235. /*content: "队伍\A A";*/
  236. }
  237. .formation-B-bigbox::before{
  238. color:blue;
  239. background-color:lightblue;
  240. /*content: "队伍\A B";*/
  241. vertical-align:top;
  242. }
  243. .formation-A-box, .formation-B-box{
  244. display: inline-block;
  245. vertical-align:bottom;
  246. }
  247. .formation-A-box .formation-assist .member::after, .formation-B-box .formation-assist .member::before{
  248. width: 108px;
  249. text-align: center;
  250. font-size: 18px;
  251. font-weight: bold;
  252. display: inline-block;
  253. position: relative;
  254. }
  255. .formation-A-box .formation-assist .member::after{
  256. color:red;
  257. /*content: "▼辅助";*/
  258. }
  259. .formation-B-box .formation-assist .member::before{
  260. color:blue;
  261. /*content: "▲辅助";*/
  262. }
  263. /*队伍的潜觉*/
  264. .formation-box .latents{
  265. width: 108px;
  266. /*float:left;*/
  267. margin-bottom: -19px;
  268. display: inline-block;
  269. }
  270. .formation-box .latent-ul{
  271. font-size: 0;
  272. width: 152px;
  273. transform: translate(-22px,-10px) scale(0.71);
  274. }
  275. .a-awoken-icon-1 li{
  276. background-image: url(images/sha.png);
  277. background-size: 50px 21px;
  278. width: 50px;
  279. height: 21px;
  280. margin-right: 4px;
  281. }
  282. .a-awoken-icon-2 li{
  283. background-image: url(images/fangzuo.png);
  284. background-size: 21px 21px;
  285. width: 21px;
  286. height: 21px;
  287. margin-left: 6px;
  288. }
  289. .a-awoken-icon-ul li{
  290. float:left;
  291. }
  292. /*队长的边框*/
  293. .formation-A-box .formation-team .team-leader .monster, .formation-B-box .formation-team .team-leader .monster{
  294. border-radius: 10px;
  295. border-width:4px;
  296. border-style:solid;
  297. box-sizing: initial;
  298. margin: 0;
  299. }
  300. .formation-A-box .formation-team .team-leader .monster{
  301. border-color: red;
  302. }
  303. .formation-B-box .formation-team .team-leader .monster{
  304. border-color: blue;
  305. }
  306. /*编辑窗口*/
  307. .blur-bg{
  308. filter:blur(5px);
  309. pointer-events: none;
  310. }
  311. .edit-box{
  312. background-color: rgba(82, 53, 30, 0.8);
  313. color: white;
  314. position: absolute;
  315. left:0;
  316. top:0;
  317. width:100%;
  318. box-sizing: border-box;
  319. min-width:664px;
  320. }
  321. .edit-box-title{
  322. text-align: center;
  323. font-size: 2em;
  324. font-weight: bold;
  325. }
  326. /*.edit-box .edit-box-title::before{
  327. content: "修改队员";
  328. }
  329. .edit-box .edit-box-title.edit-box-title-assist::before{
  330. content: "修改辅助";
  331. }*/
  332. .edit-box .monsterinfo-box{
  333. font-family: 'FOT-KurokaneStd-EB';
  334. color: white;
  335. text-shadow: black 2px 2px 0;
  336. height: 100px;
  337. margin: 5px 0;
  338. background-image: linear-gradient(#798421,#394914);
  339. border-top: #B1BB39 solid 4px;
  340. border-bottom: #72941D ridge 7px;
  341. box-shadow: black 0 3px 3px;
  342. padding: 5px 10px;
  343. }
  344. /*.edit-box .search-box::before{
  345. content: "▼怪物ID";
  346. }*/
  347. .edit-box .search-box .m-id{
  348. box-sizing: border-box;
  349. font-size: 25px;
  350. height: 40px;
  351. width: 100%;
  352. }
  353. .edit-box .search-box .search-button{
  354. width: 100%;
  355. height: 40px;
  356. font-size: 25px;
  357. }
  358. .edit-box .search-box,.edit-box .setting-box{
  359. padding: 0 10px;
  360. }
  361. .edit-box .setting-row{
  362. width: 100%;
  363. }
  364. .monsterinfo-box .monster{
  365. margin-right:5px;
  366. }
  367. .monsterinfo-box .monster-id{
  368. display:inline-block;
  369. width:150px;
  370. }
  371. /*.monsterinfo-box .monster-id::before{
  372. content: "No.";
  373. }*/
  374. .monsterinfo-box .monster-rare{
  375. display:inline-block;
  376. }
  377. .monsterinfo-box .monster-rare::before{
  378. color:gold;
  379. text-shadow: black 0 0 3px,black 0 2px 3px;
  380. }
  381. .rare-1::before{content: "★";}
  382. .rare-2::before{content: "★★";}
  383. .rare-3::before{content: "★★★";}
  384. .rare-4::before{content: "★★★★";}
  385. .rare-5::before{content: "★★★★★";}
  386. .rare-6::before{content: "★★★★★★";}
  387. .rare-7::before{content: "★★★★★★★";}
  388. .rare-8::before{content: "★★★★★★★★";}
  389. .rare-9::before{content: "★★★★★★★★★";}
  390. .rare-10::before{content: "★★★★★★★★★★";}
  391. .monsterinfo-box .monster-id,.monsterinfo-box .monster-rare,.monsterinfo-box .monster-name{
  392. vertical-align: top;
  393. margin:0;
  394. height: 34px;
  395. font-size: 22px;
  396. line-height: 22px;
  397. }
  398. .monsterinfo-box .monster-type{
  399. font-size: 0;
  400. }
  401. .monsterinfo-box .monster-type .type-name{
  402. display:inline-block;
  403. margin-right: 10px;
  404. }
  405. .monsterinfo-box .monster-type .type-icon{
  406. margin-right:3px;
  407. }
  408. .monsterinfo-box .monster-type .type-name::after{
  409. vertical-align: middle;
  410. font-size: 22px;
  411. line-height: 22px;
  412. }
  413. .edit-box .setting-box .row-mon-level::before{
  414. /*content: "▼怪物等级";*/
  415. display: block;
  416. }
  417. .edit-box .setting-box .m-level{
  418. font-size: 25px;
  419. height: 40px;
  420. width: calc(100% - 150px);
  421. box-sizing: border-box;
  422. }
  423. .m-level-btn-max{
  424. height: 40px;
  425. width: 145px;
  426. box-sizing: border-box;
  427. font-size: 25px;
  428. }
  429. /*.m-level-btn-max::before{
  430. content: "最高Lv";
  431. }
  432. .edit-box .setting-box .row-mon-awoken::before{
  433. content: "▼怪物觉醒";
  434. }*/
  435. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  436. font-size: 0;
  437. height: 32px;
  438. }
  439. .awoken-ul li{
  440. margin-left: 5px;
  441. }
  442. .awoken-ul li:first-of-type{
  443. margin-left: 0;
  444. }
  445. .edit-box .awoken-ul .awoken-icon{
  446. cursor: pointer;
  447. }
  448. .awoken-ul .awoken-icon.unselected-awoken{
  449. opacity: 0.3;
  450. }
  451. .row-mon-awoken .awoken-icon.awoken-count{
  452. color: yellow;
  453. font-size: 22px;
  454. line-height: 28px;
  455. font-weight: bold;
  456. text-shadow: black 0 0 4px;
  457. text-align: center;
  458. }
  459. .row-mon-awoken .m-super-awoken-ul{
  460. margin-top: 5px;
  461. }
  462. /*.edit-box .setting-box .row-mon-super-awoken::before{
  463. content: "▼超觉醒";
  464. }*/
  465. .edit-box .setting-box .row-mon-plus::before{
  466. /*content: "▼怪物加值";*/
  467. display: block;
  468. }
  469. .setting-box .m-plus-hp,.setting-box .m-plus-atk,.setting-box .m-plus-rcv{
  470. font-size: 25px;
  471. height: 40px;
  472. width: calc(100% - 212px);
  473. box-sizing: border-box;
  474. }
  475. .m-plus-hp-li::before,.m-plus-atk-li::before,.m-plus-rcv-li::before{
  476. font-size: 25px;
  477. width: 55px;
  478. display: inline-block;
  479. }
  480. /*.m-plus-hp-li::before{content: "HP";}
  481. .m-plus-atk-li::before{content: "攻击";}
  482. .m-plus-rcv-li::before{content: "回复";}*/
  483. .m-plus-hp-btn-99,.m-plus-atk-btn-99,.m-plus-rcv-btn-99{
  484. height: 40px;
  485. width: 70px;
  486. box-sizing: border-box;
  487. font-size: 25px;
  488. }
  489. /*.m-plus-hp-btn-99::before,.m-plus-atk-btn-99::before,.m-plus-rcv-btn-99::before,.m-plus-btn-297::before{
  490. content: "+";
  491. }*/
  492. .m-plus-btn-297{
  493. float:right;
  494. width: 85px;
  495. height: 120px;
  496. box-sizing: border-box;
  497. font-size: 25px;
  498. }
  499. /*.edit-box .setting-box .row-mon-latent::before{
  500. content: "▼潜在觉醒";
  501. }*/
  502. .m-latent-ul{
  503. text-align: center;
  504. font-size: 0;
  505. }
  506. .m-latent-ul .latent-icon{
  507. margin-left: 12px;
  508. }
  509. .m-latent-ul .latent-icon:first-of-type{
  510. margin-left: 0;
  511. }
  512. .m-latent-allowable-ul{
  513. margin-top: 5px;
  514. }
  515. .m-latent-allowable-ul .latent-icon{
  516. cursor: pointer;
  517. }
  518. .m-latent-allowable-ul .latent-icon.unselected-latent{
  519. cursor: default;
  520. opacity: 0.3;
  521. }
  522. .latent-icon-11,
  523. .latent-icon-13,
  524. .latent-icon-14,
  525. .latent-icon-15,
  526. .latent-icon-16,
  527. .latent-icon-17,
  528. .latent-icon-18,
  529. .latent-icon-19,
  530. .latent-icon-20,
  531. .latent-icon-21,
  532. .latent-icon-22,
  533. .latent-icon-23,
  534. .latent-icon-24{
  535. cursor: pointer;
  536. }
  537. .edit-box .button-box{
  538. border-top: black solid 3px;
  539. background-color: rgba(0,0,0,0.5);
  540. margin-top: 10px;
  541. padding: 5px;
  542. height: 50px;
  543. }
  544. .edit-box .button-box .button-null,
  545. .edit-box .button-box .button-delay,
  546. .edit-box .button-box .button-cancel,
  547. .edit-box .button-box .button-done{
  548. height: 50px;
  549. box-sizing: border-box;
  550. font-size: 25px;
  551. font-weight: bold;
  552. }
  553. .edit-box .button-box .button-null,
  554. .edit-box .button-box .button-delay{
  555. float: left;
  556. margin-right:5px;
  557. }
  558. .edit-box .button-box .button-cancel,
  559. .edit-box .button-box .button-done{
  560. float: right;
  561. margin-left:5px;
  562. }
  563. /*.edit-box .button-box .button-null::after{
  564. content: "留空格子";
  565. }
  566. .edit-box .button-box .button-delay::after{
  567. content: "应对威吓";
  568. }
  569. .edit-box .button-box .button-cancel::after{
  570. content: "取消修改";
  571. }
  572. .edit-box .button-box .button-done::after{
  573. content: "确认修改";
  574. }
  575. .edit-box .button-box .button-done.cant-assist::after{
  576. content: "不能辅助";
  577. }*/
  578. .awoken-total-box::before{
  579. font-size: 20px;
  580. /*content: "觉醒总计:";*/
  581. }
  582. .detail-box{
  583. margin-top:5px;
  584. }
  585. .awoken-total-box .awoken-ul .awoken-count{
  586. font-size: 20px;
  587. line-height: 32px;
  588. font-family: 'FOT-KurokaneStd-EB';
  589. float: left;
  590. margin-right: 5px;
  591. }
  592. .awoken-total-box .awoken-ul .count{
  593. height: 32px;
  594. width: 45px;
  595. display: inline-block;
  596. vertical-align: middle;
  597. }
  598. .awoken-total-box .awoken-ul .count::before{
  599. content: "×";
  600. }
  601. .control-box{
  602. margin-bottom: 10px;
  603. }
  604. .control-box .languages-label::before{
  605. content: "Lanuage:";
  606. }
  607. .control-box .solo-link,.control-box .multi-link{
  608. margin-left: 10px;
  609. }
  610. .control-box .solo-link::before{
  611. content: "Jump To Solo Version";
  612. }
  613. .control-box .multi-link::before{
  614. content: "Jump To 2-Player Version";
  615. }

智龙迷城队伍图制作工具