remodal-custom.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .mainButton{
  2. padding: 1px 5px;
  3. background: #ffebcd;
  4. border-radius: 15px;
  5. box-shadow: 0 0 5px rgba(206, 57, 57, 0.5);
  6. color: #fff;
  7. text-decoration: none;
  8. }
  9. .delButton{
  10. padding: 1px 5px;
  11. background: #ffb3b3;
  12. border-radius: 15px;
  13. box-shadow: 0 0 5px rgba(206, 57, 57, 0.5);
  14. color: #fff;
  15. text-decoration: none;
  16. }
  17. .exportButton{
  18. padding: 1px 5px;
  19. background: #9df599;
  20. border-radius: 15px;
  21. box-shadow: 0 0 5px rgba(206, 57, 57, 0.5);
  22. color: #fff;
  23. text-decoration: none;
  24. }
  25. .success, .fail{
  26. color: #fff;
  27. }
  28. #modal1Title{
  29. font-size: 18px;
  30. font-weight: bold;
  31. color: red;
  32. }
  33. .putField {
  34. width: 100px;
  35. padding: 0 15px;
  36. height: 20px;
  37. background: #fff;
  38. margin-bottom: 15px;
  39. border-radius: 2px;
  40. border:none;
  41. outline: none;
  42. }
  43. .btn{
  44. width: 242px;
  45. height: 42px;
  46. background: #e57373;
  47. margin-bottom: 15px;
  48. border-radius: 2px;
  49. border:none;
  50. outline: none;
  51. color: #fff;
  52. cursor: pointer;
  53. }
  54. .btn:hover{
  55. background: #C94141;
  56. }
  57. .remodal {
  58. -webkit-box-sizing: border-box;
  59. box-sizing: border-box;
  60. width: 99.2%;
  61. padding: .8%;
  62. -webkit-transform: translate3d(0, 0, 0);
  63. transform: translate3d(0, 0, 0);
  64. color: black;
  65. background: white;
  66. margin-bottom: 10px;
  67. overflow: hidden;
  68. }
  69. .remodalDel {
  70. -webkit-box-sizing: border-box;
  71. box-sizing: border-box;
  72. width: 99.2%;
  73. padding: .8%;
  74. -webkit-transform: translate3d(0, 0, 0);
  75. transform: translate3d(0, 0, 0);
  76. color: black;
  77. background: white;
  78. margin-bottom: 10px;
  79. overflow: hidden;
  80. }
  81. .remodalExport {
  82. -webkit-box-sizing: border-box;
  83. box-sizing: border-box;
  84. width: 99.2%;
  85. padding: .8%;
  86. -webkit-transform: translate3d(0, 0, 0);
  87. transform: translate3d(0, 0, 0);
  88. color: black;
  89. background: white;
  90. margin-bottom: 10px;
  91. overflow: hidden;
  92. }
  93. @media only screen and (min-width: 140px) {
  94. .remodal {
  95. max-width: 480px;
  96. }
  97. }