public.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. * {
  2. font-family: 'SY-medium';
  3. }
  4. img {
  5. -webkit-user-drag: none;
  6. }
  7. .ui-button {
  8. height: 50px;
  9. line-height: 1;
  10. border-radius: 25px;
  11. border: none;
  12. background-color: transparent;
  13. text-align: center;
  14. letter-spacing: 1px;
  15. outline: none;
  16. white-space: nowrap;
  17. cursor: pointer;
  18. }
  19. .ui-button.default {
  20. background-color: #CCCCCC;
  21. color: #333333;
  22. }
  23. .ui-button.submit {
  24. color: #fff;
  25. background-color: #BC1915;
  26. }
  27. .ui-button.cancel {
  28. color: #05c8ae;
  29. background-color: transparent;
  30. }
  31. .ui-button.block {
  32. width: 100%;
  33. }
  34. .ui-button.link {
  35. display: inline-block;
  36. text-decoration: none;
  37. }
  38. .ui-button.danger {
  39. background-color: #c80303;
  40. color: #fff;
  41. }
  42. .ui-input {
  43. padding: 0 14px;
  44. color: #fff;
  45. letter-spacing: 1px;
  46. height: 50px;
  47. line-height: 50px;
  48. width: 100%;
  49. background: rgba(204, 204, 204, 0.2);
  50. border: 1px solid #FFB521;
  51. border-radius: 25px;
  52. }
  53. input::-webkit-input-placeholder {
  54. color: #fff;
  55. }
  56. input::-moz-placeholder {
  57. /* Mozilla Firefox 19+ */
  58. color: #fff;
  59. }
  60. input:-moz-placeholder {
  61. /* Mozilla Firefox 4 to 18 */
  62. color: #fff;
  63. }
  64. input:-ms-input-placeholder {
  65. /* Internet Explorer 10-11 */
  66. color: #fff;
  67. }
  68. .cad {
  69. position: fixed;
  70. right: 10px;
  71. top: 130px;
  72. width: 280px;
  73. height: 150px;
  74. z-index: 999;
  75. transition: 0.3s ease all;
  76. }
  77. .cad #cad {
  78. width: 100%;
  79. height: 100%;
  80. margin-top: -20px;
  81. }
  82. @media only screen and (max-width: 487px), (max-height: 487px),(orientation: portrait) {
  83. .cad {
  84. position: fixed;
  85. top: 38%;
  86. left: 50%;
  87. transform: translate(-150%, -50%);
  88. width: 280px;
  89. height: 150px;
  90. z-index: 999;
  91. transition: none;
  92. }
  93. .cad #cad {
  94. width: 100%;
  95. height: 100%;
  96. }
  97. .ui-input {
  98. padding: 0 14px;
  99. color: #fff;
  100. letter-spacing: 0;
  101. height: 34px;
  102. line-height: 34px;
  103. width: 100%;
  104. background: rgba(0, 0, 0, 0.8);
  105. border: 1px solid #FFB521;
  106. border-radius: 17px;
  107. }
  108. }
  109. .no-record {
  110. text-align: center;
  111. margin: 28vh auto;
  112. }