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

智龙迷城队伍图制作工具

Contributors (1)