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 8.7 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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. @charset "utf-8";
  2. .display-none{
  3. display:none;
  4. }
  5. .title{
  6. border: none;
  7. background: none;
  8. font-size: 2em;
  9. font-weight: bold;
  10. }
  11. ul{
  12. margin: 0;
  13. padding: 0;
  14. list-style: none;
  15. }
  16. /*队伍的整个盒子*/
  17. .formation-box{
  18. width: 648px;
  19. background: rgb(119, 167, 255);
  20. }
  21. /*辅助行*/
  22. .formation-assist{
  23. }
  24. /*队伍行*/
  25. .formation-team{
  26. }
  27. /*单个怪物*/
  28. .monster{
  29. width: 100px;
  30. height: 100px;
  31. margin: 0;
  32. display: block;
  33. float: left;
  34. background-image: url(images/001.png);
  35. background-repeat: no-repeat;
  36. position: relative;
  37. }
  38. /*怪物属性*/
  39. .property,.subproperty{
  40. position:absolute;
  41. left:0;top:0;
  42. width: 100px;
  43. height: 100px;
  44. background-repeat: no-repeat;
  45. background-image: url(images/CARDFRAME2.PNG);
  46. background-position: 100px 100px; /*默认都不显示*/
  47. }
  48. /*怪物-加值*/
  49. .monster .addition{
  50. color: yellow;
  51. font-size: 20px;
  52. line-height: 20px;
  53. font-weight: bold;
  54. text-shadow: black 0 0 1px, black 2px 2px 0;
  55. position: absolute;
  56. left:0;
  57. }
  58. .monster .addition .hp::before,
  59. .monster .addition .atk::before,
  60. .monster .addition .rcv::before,
  61. .monster .addition ._297::before{
  62. content: "+";
  63. }
  64. .monster .addition ._297{ /*297默认不显示*/
  65. display:none;
  66. }
  67. .monster .addition.has297 .hp,
  68. .monster .addition.has297 .atk,
  69. .monster .addition.has297 .rcv{ /*当是297时隐藏3维*/
  70. display:none;
  71. }
  72. .monster .addition.has297 ._297{ /*当是297时显示297*/
  73. display:block;
  74. }
  75. /*怪物-觉醒*/
  76. .monster .awoken-count{
  77. color: yellow;
  78. font-size: 18px;
  79. line-height: 24px;
  80. font-weight: bold;
  81. text-shadow: black 0 0 4px;
  82. text-align: center;
  83. background-image: url(images/awoken-bg.png);
  84. background-size: 27px 30px;
  85. width: 27px;
  86. height: 30px;
  87. position: absolute;
  88. right: 0;
  89. }
  90. /*怪物-等级*/
  91. .monster .level{
  92. color: white;
  93. font-size: 18px;
  94. text-shadow: black 2px 2px 0;
  95. position: absolute;
  96. left: 5px;
  97. bottom: 0;
  98. }
  99. .monster .level::before{
  100. content: "Lv";
  101. }
  102. /*辅助和队伍的每一只框架*/
  103. .assist, .team, .acquisitus-awoken-icon {
  104. display: block;
  105. float: left;
  106. position: relative;
  107. width: 108px;
  108. }
  109. .formation-box .monster{
  110. margin: 4px; /*留给队长边框的*/
  111. }
  112. /*
  113. .assist:first-of-type, .team:first-of-type {
  114. margin-left: 0px;
  115. }
  116. */
  117. /*队伍的背景色*/
  118. .formation-assist, .formation-team{
  119. display: inline-block;
  120. }
  121. .formation-A-box .formation-team{
  122. background-color:pink;
  123. }
  124. .formation-B-box .formation-team{
  125. background-color:lightblue;
  126. }
  127. .formation-A-bigbox, .formation-B-bigbox{
  128. position: relative;
  129. font-size:0;
  130. }
  131. .formation-B-bigbox{
  132. margin-top:15px;
  133. }
  134. /*队伍A、B的文字*/
  135. .formation-A-bigbox::after, .formation-B-bigbox::before{
  136. font-size: 30px;
  137. font-weight: bold;
  138. text-align: center;
  139. line-height: 50px;
  140. white-space: pre-wrap;
  141. display: inline-block;
  142. width: 108px;
  143. height: 108px;
  144. }
  145. .formation-A-bigbox::after{
  146. color:red;
  147. background-color:pink;
  148. content: "队伍\A A";
  149. }
  150. .formation-B-bigbox::before{
  151. color:blue;
  152. background-color:lightblue;
  153. content: "队伍\A B";
  154. vertical-align:top;
  155. }
  156. .formation-A-box, .formation-B-box{
  157. display: inline-block;
  158. vertical-align:bottom;
  159. }
  160. .formation-A-box .assist::after, .formation-B-box .assist::before{
  161. text-align: center;
  162. font-size: 18px;
  163. font-weight: bold;
  164. display: block;
  165. position: relative;
  166. }
  167. .formation-A-box .assist::after{
  168. color:red;
  169. content: "▼辅助";
  170. }
  171. .formation-B-box .assist::before{
  172. color:blue;
  173. content: "▲辅助";
  174. }
  175. .a-awoken-icon-1 li{
  176. background-image: url(images/sha.png);
  177. background-size: 50px 21px;
  178. width: 50px;
  179. height: 21px;
  180. margin-right: 4px;
  181. }
  182. .a-awoken-icon-2 li{
  183. background-image: url(images/fangzuo.png);
  184. background-size: 21px 21px;
  185. width: 21px;
  186. height: 21px;
  187. margin-left: 6px;
  188. }
  189. .a-awoken-icon-ul li{
  190. float:left;
  191. }
  192. /*队长的边框*/
  193. .formation-A-box .formation-team .team-leader .monster, .formation-B-box .formation-team .team-leader .monster{
  194. border-radius: 10px;
  195. border-width:4px;
  196. border-style:solid;
  197. margin: 0;
  198. }
  199. .formation-A-box .formation-team .team-leader .monster{
  200. border-color: red;
  201. }
  202. .formation-B-box .formation-team .team-leader .monster{
  203. border-color: blue;
  204. }
  205. /*编辑窗口*/
  206. .blur-bg{
  207. filter:blur(5px);
  208. }
  209. .edit-box{
  210. background-color: rgba(200,255,200,0.8);
  211. text-shadow: white 0 0 2px;
  212. position: absolute;
  213. left:0;
  214. top:0;
  215. width:100%;
  216. padding: 10px;
  217. box-sizing: border-box;
  218. width:664px; /*测试时手机上的最大宽度*/
  219. }
  220. .edit-box-title{
  221. text-align: center;
  222. font-size: 2em;
  223. font-weight: bold;
  224. }
  225. .edit-box .edit-box-title::before{
  226. content: "修改怪物";
  227. }
  228. .setting-row{
  229. width: 100%;
  230. }
  231. .edit-box .search-box::before{
  232. content: "怪物ID";
  233. }
  234. .edit-box .search-box .m-id{
  235. box-sizing: border-box;
  236. font-size: 25px;
  237. height: 40px;
  238. width: 100%;
  239. }
  240. .edit-box .search-box .search-button{
  241. width: 100%;
  242. height: 40px;
  243. font-size: 25px;
  244. }
  245. .edit-box .monsterinfo-box{
  246. height: 100px;
  247. margin: 5px 0;
  248. }
  249. .monsterinfo-box .monster{
  250. margin-right:5px;
  251. }
  252. .monsterinfo-box .monster-id{
  253. display:inline-block;
  254. width:150px;
  255. }
  256. .monsterinfo-box .monster-id::before{
  257. content: "No.";
  258. }
  259. .monsterinfo-box .monster-rare{
  260. display:inline-block;
  261. }
  262. .monsterinfo-box .monster-rare::before{
  263. color:gold;
  264. text-shadow: black 0 0 3px;
  265. }
  266. .rare-1::before{content: "★";}
  267. .rare-2::before{content: "★★";}
  268. .rare-3::before{content: "★★★";}
  269. .rare-4::before{content: "★★★★";}
  270. .rare-5::before{content: "★★★★★";}
  271. .rare-6::before{content: "★★★★★★";}
  272. .rare-7::before{content: "★★★★★★★";}
  273. .rare-8::before{content: "★★★★★★★★";}
  274. .rare-9::before{content: "★★★★★★★★★";}
  275. .rare-10::before{content: "★★★★★★★★★★";}
  276. .monsterinfo-box .monster-id,.monsterinfo-box .monster-rare,.monsterinfo-box .monster-name{
  277. vertical-align: top;
  278. margin:0;
  279. height: 34px;
  280. font-size: 22px;
  281. }
  282. .monsterinfo-box .monster-type .type-name{
  283. display:inline-block;
  284. }
  285. .monsterinfo-box .monster-type .type-icon{
  286. margin-right:3px;
  287. }
  288. .monsterinfo-box .monster-type .type-name::after{
  289. vertical-align: middle;
  290. font-size: 22px;
  291. }
  292. .edit-box .setting-box .row-mon-level::before{
  293. content: "怪物等级";
  294. display: block;
  295. }
  296. .edit-box .setting-box .m-level{
  297. font-size: 25px;
  298. height: 40px;
  299. width: calc(100% - 150px);
  300. box-sizing: border-box;
  301. }
  302. .m-level-btn-max{
  303. height: 40px;
  304. width: 145px;
  305. box-sizing: border-box;
  306. font-size: 25px;
  307. }
  308. .m-level-btn-max::before{
  309. content: "最高Lv";
  310. }
  311. .edit-box .setting-box .row-mon-awoken::before{
  312. content: "怪物觉醒";
  313. }
  314. .row-mon-awoken .m-awoken-ul{
  315. height: 32px;
  316. }
  317. .m-awoken-ul .awoken-icon{
  318. cursor: pointer;
  319. }
  320. .m-awoken-ul .awoken-icon.unselected-awoken{
  321. opacity: 0.3;
  322. }
  323. .awoken-icon.awoken-count{
  324. color: yellow;
  325. font-size: 22px;
  326. line-height: 28px;
  327. font-weight: bold;
  328. text-shadow: black 0 0 4px;
  329. text-align: center;
  330. }
  331. .edit-box .setting-box .row-mon-addition::before{
  332. content: "怪物加值";
  333. display: block;
  334. }
  335. .setting-box .m-add-hp,.setting-box .m-add-atk,.setting-box .m-add-rcv{
  336. font-size: 25px;
  337. height: 40px;
  338. width: calc(100% - 212px);
  339. box-sizing: border-box;
  340. }
  341. .m-add-hp-li::before,.m-add-atk-li::before,.m-add-rcv-li::before{
  342. font-size: 25px;
  343. width: 55px;
  344. display: inline-block;
  345. }
  346. .m-add-hp-li::before{content: "HP";}
  347. .m-add-atk-li::before{content: "攻击";}
  348. .m-add-rcv-li::before{content: "回复";}
  349. .m-add-hp-btn-99,.m-add-atk-btn-99,.m-add-rcv-btn-99{
  350. height: 40px;
  351. width: 70px;
  352. box-sizing: border-box;
  353. font-size: 25px;
  354. }
  355. .m-add-hp-btn-99::before,.m-add-atk-btn-99::before,.m-add-rcv-btn-99::before,.m-add-btn-297::before{
  356. content: "+";
  357. }
  358. .m-add-btn-297{
  359. float:right;
  360. width: 85px;
  361. height: 120px;
  362. box-sizing: border-box;
  363. font-size: 25px;
  364. }
  365. .edit-box .setting-box .row-mon-latent::before{
  366. content: "潜在觉醒";
  367. }
  368. .m-latent-ul{
  369. text-align: center;
  370. font-size: 0;
  371. }
  372. .m-latent-ul .latent-icon{
  373. margin-left: 12px;
  374. }
  375. .m-latent-ul .latent-icon:first-of-type{
  376. margin-left: 0;
  377. }
  378. .m-latent-allowable-ul{
  379. margin-top: 5px;
  380. }
  381. .m-latent-allowable-ul .latent-icon{
  382. cursor: pointer;
  383. }
  384. .m-latent-allowable-ul .latent-icon.unselected-latent{
  385. cursor: default;
  386. opacity: 0.3;
  387. }
  388. .latent-icon-11,
  389. .latent-icon-13,
  390. .latent-icon-14,
  391. .latent-icon-15,
  392. .latent-icon-16,
  393. .latent-icon-17,
  394. .latent-icon-18,
  395. .latent-icon-19,
  396. .latent-icon-20,
  397. .latent-icon-21,
  398. .latent-icon-22,
  399. .latent-icon-23,
  400. .latent-icon-24{
  401. cursor: pointer;
  402. }
  403. .edit-box .button-box .button-done::after{
  404. content: "确认修改";
  405. }

智龙迷城队伍图制作工具

Contributors (1)