game_pkg.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. .checkbox {
  2. padding-left: 20px; display: inline-block;}
  3. .checkbox label {
  4. display: inline-block;
  5. vertical-align: middle;
  6. position: relative;
  7. padding-left: 5px; }
  8. .checkbox label::before {
  9. content: "";
  10. display: inline-block;
  11. position: absolute;
  12. width: 17px;
  13. height: 17px;
  14. left: 0;
  15. margin-left: -20px;
  16. border: 1px solid #cccccc;
  17. border-radius: 3px;
  18. background-color: #fff;
  19. -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  20. -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  21. transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
  22. .checkbox label::after {
  23. display: inline-block;
  24. position: absolute;
  25. width: 16px;
  26. height: 16px;
  27. left: 2px;
  28. top: 0;
  29. margin-left: -20px;
  30. padding-left: 1px;
  31. padding-top: 1px;
  32. font-size: 11px;
  33. color: #555555; }
  34. .checkbox input[type="checkbox"],
  35. .checkbox input[type="radio"] {
  36. width: 100%;
  37. opacity: 0;
  38. z-index: 1;
  39. outline: none}
  40. .checkbox input[type="checkbox"]:focus + label::before,
  41. .checkbox input[type="radio"]:focus + label::before {
  42. outline: thin dotted;
  43. outline: 5px auto -webkit-focus-ring-color;
  44. outline-offset: -2px; }
  45. .checkbox input[type="checkbox"]:checked + label::after,
  46. .checkbox input[type="radio"]:checked + label::after {
  47. font-family: "FontAwesome";
  48. content: "\f00c";}
  49. .checkbox input[type="checkbox"]:indeterminate + label::after,
  50. .checkbox input[type="radio"]:indeterminate + label::after {
  51. display: block;
  52. content: "";
  53. width: 10px;
  54. height: 3px;
  55. background-color: #555555;
  56. border-radius: 2px;
  57. margin-left: -16.5px;
  58. margin-top: 7px;
  59. }
  60. .checkbox input[type="checkbox"]:disabled + label,
  61. .checkbox input[type="radio"]:disabled + label {
  62. opacity: 0.65; }
  63. .checkbox input[type="checkbox"]:disabled + label::before,
  64. .checkbox input[type="radio"]:disabled + label::before {
  65. background-color: #eeeeee;
  66. cursor: not-allowed; }
  67. .checkbox.checkbox-circle label::before {
  68. border-radius: 50%; }
  69. .checkbox.checkbox-inline {
  70. margin-top: 0; }
  71. .checkbox-primary input[type="checkbox"]:checked + label::before,
  72. .checkbox-primary input[type="radio"]:checked + label::before {
  73. background-color: #337ab7;
  74. border-color: #337ab7; }
  75. .checkbox-primary input[type="checkbox"]:checked + label::after,
  76. .checkbox-primary input[type="radio"]:checked + label::after {
  77. color: #fff; }
  78. .checkbox-danger input[type="checkbox"]:checked + label::before,
  79. .checkbox-danger input[type="radio"]:checked + label::before {
  80. background-color: #d9534f;
  81. border-color: #d9534f; }
  82. .checkbox-danger input[type="checkbox"]:checked + label::after,
  83. .checkbox-danger input[type="radio"]:checked + label::after {
  84. color: #fff; }
  85. .checkbox-info input[type="checkbox"]:checked + label::before,
  86. .checkbox-info input[type="radio"]:checked + label::before {
  87. background-color: #5bc0de;
  88. border-color: #5bc0de; }
  89. .checkbox-info input[type="checkbox"]:checked + label::after,
  90. .checkbox-info input[type="radio"]:checked + label::after {
  91. color: #fff; }
  92. .checkbox-warning input[type="checkbox"]:checked + label::before,
  93. .checkbox-warning input[type="radio"]:checked + label::before {
  94. background-color: #f0ad4e;
  95. border-color: #f0ad4e; }
  96. .checkbox-warning input[type="checkbox"]:checked + label::after,
  97. .checkbox-warning input[type="radio"]:checked + label::after {
  98. color: #fff; }
  99. .checkbox-success input[type="checkbox"]:checked + label::before,
  100. .checkbox-success input[type="radio"]:checked + label::before {
  101. background-color: #5cb85c;
  102. border-color: #5cb85c; }
  103. .checkbox-success input[type="checkbox"]:checked + label::after,
  104. .checkbox-success input[type="radio"]:checked + label::after {
  105. color: #fff;}
  106. .checkbox-primary input[type="checkbox"]:indeterminate + label::before,
  107. .checkbox-primary input[type="radio"]:indeterminate + label::before {
  108. background-color: #337ab7;
  109. border-color: #337ab7;
  110. }
  111. .checkbox-primary input[type="checkbox"]:indeterminate + label::after,
  112. .checkbox-primary input[type="radio"]:indeterminate + label::after {
  113. background-color: #fff;
  114. }
  115. .checkbox-danger input[type="checkbox"]:indeterminate + label::before,
  116. .checkbox-danger input[type="radio"]:indeterminate + label::before {
  117. background-color: #d9534f;
  118. border-color: #d9534f;
  119. }
  120. .checkbox-danger input[type="checkbox"]:indeterminate + label::after,
  121. .checkbox-danger input[type="radio"]:indeterminate + label::after {
  122. background-color: #fff;
  123. }
  124. .checkbox-info input[type="checkbox"]:indeterminate + label::before,
  125. .checkbox-info input[type="radio"]:indeterminate + label::before {
  126. background-color: #5bc0de;
  127. border-color: #5bc0de;
  128. }
  129. .checkbox-info input[type="checkbox"]:indeterminate + label::after,
  130. .checkbox-info input[type="radio"]:indeterminate + label::after {
  131. background-color: #fff;
  132. }
  133. .checkbox-warning input[type="checkbox"]:indeterminate + label::before,
  134. .checkbox-warning input[type="radio"]:indeterminate + label::before {
  135. background-color: #f0ad4e;
  136. border-color: #f0ad4e;
  137. }
  138. .checkbox-warning input[type="checkbox"]:indeterminate + label::after,
  139. .checkbox-warning input[type="radio"]:indeterminate + label::after {
  140. background-color: #fff;
  141. }
  142. .checkbox-success input[type="checkbox"]:indeterminate + label::before,
  143. .checkbox-success input[type="radio"]:indeterminate + label::before {
  144. background-color: #5cb85c;
  145. border-color: #5cb85c;
  146. }
  147. .checkbox-success input[type="checkbox"]:indeterminate + label::after,
  148. .checkbox-success input[type="radio"]:indeterminate + label::after {
  149. background-color: #fff;
  150. }
  151. .radio {
  152. padding-left: 20px;display: inline-block;}
  153. .radio label {
  154. display: inline-block;
  155. vertical-align: middle;
  156. position: relative;
  157. padding-left: 5px; }
  158. .radio label::before {
  159. content: "";
  160. display: inline-block;
  161. position: absolute;
  162. width: 17px;
  163. height: 17px;
  164. left: 0;
  165. top: 1px;
  166. margin-left: -15px;
  167. border: 1px solid #cccccc;
  168. border-radius: 50%;
  169. background-color: #fff;
  170. -webkit-transition: border 0.15s ease-in-out;
  171. -o-transition: border 0.15s ease-in-out;
  172. transition: border 0.15s ease-in-out; }
  173. .radio label::after {
  174. display: inline-block;
  175. position: absolute;
  176. content: " ";
  177. width: 11px;
  178. height: 11px;
  179. left: 3px;
  180. top: 4px;
  181. margin-left: -15px;
  182. border-radius: 50%;
  183. background-color: #555555;
  184. -webkit-transform: scale(0, 0);
  185. -ms-transform: scale(0, 0);
  186. -o-transform: scale(0, 0);
  187. transform: scale(0, 0);
  188. -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  189. -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  190. -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  191. transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }
  192. .radio input[type="radio"] {
  193. width: 100%;
  194. opacity: 0;
  195. z-index: 1;
  196. outline: none}
  197. .radio input[type="radio"]:focus + label::before {
  198. outline: thin dotted;
  199. outline: 5px auto -webkit-focus-ring-color;
  200. outline-offset: -2px; }
  201. .radio input[type="radio"]:checked + label::after {
  202. -webkit-transform: scale(1, 1);
  203. -ms-transform: scale(1, 1);
  204. -o-transform: scale(1, 1);
  205. transform: scale(1, 1); }
  206. .radio input[type="radio"]:disabled + label {
  207. opacity: 0.65; }
  208. .radio input[type="radio"]:disabled + label::before {
  209. cursor: not-allowed; }
  210. .radio.radio-inline {
  211. margin-top: 0; }
  212. .radio-primary input[type="radio"] + label::after {
  213. background-color: #337ab7; }
  214. .radio-primary input[type="radio"]:checked + label::before {
  215. border-color: #337ab7; }
  216. .radio-primary input[type="radio"]:checked + label::after {
  217. background-color: #337ab7; }
  218. .radio-danger input[type="radio"] + label::after {
  219. background-color: #d9534f; }
  220. .radio-danger input[type="radio"]:checked + label::before {
  221. border-color: #d9534f; }
  222. .radio-danger input[type="radio"]:checked + label::after {
  223. background-color: #d9534f; }
  224. .radio-info input[type="radio"] + label::after {
  225. background-color: #5bc0de; }
  226. .radio-info input[type="radio"]:checked + label::before {
  227. border-color: #5bc0de; }
  228. .radio-info input[type="radio"]:checked + label::after {
  229. background-color: #5bc0de; }
  230. .radio-warning input[type="radio"] + label::after {
  231. background-color: #f0ad4e; }
  232. .radio-warning input[type="radio"]:checked + label::before {
  233. border-color: #f0ad4e; }
  234. .radio-warning input[type="radio"]:checked + label::after {
  235. background-color: #f0ad4e; }
  236. .radio-success input[type="radio"] + label::after {
  237. background-color: #5cb85c; }
  238. .radio-success input[type="radio"]:checked + label::before {
  239. border-color: #5cb85c; }
  240. .radio-success input[type="radio"]:checked + label::after {
  241. background-color: #5cb85c; }
  242. input[type="checkbox"].styled:checked + label:after,
  243. input[type="radio"].styled:checked + label:after {
  244. font-family: 'FontAwesome';
  245. content: "\f00c"; }
  246. input[type="checkbox"] .styled:checked + label::before,
  247. input[type="radio"] .styled:checked + label::before {
  248. color: #fff; }
  249. input[type="checkbox"] .styled:checked + label::after,
  250. input[type="radio"] .styled:checked + label::after {
  251. color: #fff; }
  252. @media (min-width: 992px){
  253. .page-content-wrapper .page-content{
  254. padding-top: 0;
  255. }
  256. }
  257. .form-group-add{
  258. overflow: hidden;
  259. padding-bottom: 20px;
  260. padding-top: 10px;
  261. }
  262. .form-group-add .form-control,
  263. #copy-model .form-control
  264. {
  265. width: 120px;
  266. display: inline-block;
  267. }
  268. .form-group-add .group,
  269. #copy-model .group{
  270. position: relative;
  271. margin-right: 20px;
  272. vertical-align: middle;
  273. display: inline-block;
  274. }
  275. .form-group-add .group>span,#copy-model .group>span{
  276. vertical-align: middle;
  277. }
  278. /*.form-group-add .control-label,*/
  279. .form-group-add .version,#copy-model .version{
  280. position: relative;
  281. }
  282. .form-group-add .little-tip,#copy-model .little-tip{
  283. /*position: absolute;*/
  284. /*bottom: -20px;*/
  285. /*left: 0;*/
  286. color: #cccccc;
  287. }
  288. .little-tip{
  289. color: #cccccc;
  290. }
  291. /*.form-group-add [name=product],*/
  292. /*.form-group-add [name=package]{*/
  293. /*vertical-align: middle;*/
  294. /*}*/
  295. /*
  296. * loading
  297. */
  298. .opacity{
  299. position: fixed;
  300. top: 0;
  301. left: 0;
  302. z-index: 100000;
  303. width: 100%;
  304. height: 100%;
  305. font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei","\9ED1\4F53",Arial,sans-serif;
  306. display: none;
  307. }
  308. .opacity .bg{
  309. position: absolute;
  310. top: 0;
  311. left: 0;
  312. width: 100%;
  313. height: 100%;
  314. opacity: 0.7;
  315. filter: alpha(opacity=70);
  316. background: #000;
  317. }
  318. .opacity .size{
  319. position: absolute;
  320. height: 30px;
  321. width: 100%;
  322. top: 50%;
  323. margin-top: -15px;
  324. text-align: center;
  325. }
  326. .opacity .size span{
  327. display: inline-block;
  328. color: #fff;
  329. font-size: 20px;
  330. line-break: 30px;
  331. transition: all 0.2s linear;
  332. transform: translate(0,0);
  333. }
  334. .opacity .size span.active{
  335. transform: translate(0,-10px);
  336. }
  337. /* pages */
  338. .page{
  339. display: inline-block;
  340. vertical-align: middle;
  341. }
  342. .page .page-list{
  343. display: inline-block;
  344. }
  345. .page .page-list.page-first a{
  346. color: #0a6aa1;
  347. border-radius: 5px 0 0 5px;
  348. }
  349. .page .page-list.page-next a{
  350. color: #0a6aa1;
  351. border-radius: 0 5px 5px 0;
  352. }
  353. .page .page-list a{
  354. display: inline-block;
  355. margin-left: 0;
  356. color: #777;
  357. cursor: pointer;
  358. background-color: #fff;
  359. border-color: #ddd;
  360. position: relative;
  361. float: left;
  362. padding: 6px 12px;
  363. line-height: 1.42857143;
  364. text-decoration: none;
  365. }
  366. .page .page-list a:hover{
  367. background: #eee;
  368. }
  369. .page .page-list.active a{
  370. background: #eeeeee;
  371. }
  372. .label-title{
  373. color: #57a3f3;
  374. padding-left: 15px;
  375. position: relative;
  376. margin-bottom: 15px;
  377. }
  378. .lable-title .btn{
  379. position: relative;
  380. right: 20px;
  381. top: 0;
  382. }
  383. .label-title::before{
  384. height: 100%;
  385. width: 3px;
  386. position: absolute;
  387. left: 0;
  388. top: 0;
  389. content: '';
  390. background: #57a3f3;
  391. }
  392. .modal .group-close{
  393. width: 26px;
  394. height: 26px;
  395. border-radius: 50%;
  396. margin-top: 4px;
  397. line-height: 26px;
  398. text-align: center;
  399. color: #fff;
  400. background: #eee;
  401. cursor: pointer;
  402. font-size: 26px;
  403. font-weight: bold;
  404. transition: all .1s linear;
  405. }
  406. .label-purple {
  407. background: #8d60a1;
  408. }
  409. .label-yellow {
  410. background: #c49f47;
  411. }
  412. .modal .group-close:hover{
  413. background: #F3565D;
  414. }
  415. .overflow-hidden{
  416. overflow: hidden;
  417. }
  418. .hover-tip-he{
  419. position: absolute;
  420. /* max-width: 100px; */
  421. background: #575d77;
  422. padding: 6px 8px;
  423. color: #fff;
  424. font-size: 11px;
  425. min-width: 50px;
  426. border-radius: 4px;
  427. font-weight: 300;
  428. z-index: 11;
  429. word-break: initial;
  430. border: 1px solid #fff;
  431. }
  432. .hover-tip-he::before {
  433. content: "";
  434. display: inline-block;
  435. width: 12px;
  436. height: 12px;
  437. background: #575d77;
  438. border: 1px solid #fff;
  439. border-bottom: transparent;
  440. border-left: transparent;
  441. transform: rotate(-45deg);
  442. position: absolute;
  443. top: -6px;
  444. right: 5px;
  445. border-radius: 1px;
  446. }