1
0

remodal-custom.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. .success, .fail{
  18. color: #fff;
  19. }
  20. #modal1Title{
  21. font-size: 18px;
  22. font-weight: bold;
  23. color: red;
  24. }
  25. .putField {
  26. width: 100px;
  27. padding: 0 15px;
  28. height: 20px;
  29. background: #fff;
  30. margin-bottom: 15px;
  31. border-radius: 2px;
  32. border:none;
  33. outline: none;
  34. }
  35. .btn{
  36. width: 242px;
  37. height: 42px;
  38. background: #e57373;
  39. margin-bottom: 15px;
  40. border-radius: 2px;
  41. border:none;
  42. outline: none;
  43. color: #fff;
  44. cursor: pointer;
  45. }
  46. .btn:hover{
  47. background: #C94141;
  48. }
  49. .remodal {
  50. -webkit-box-sizing: border-box;
  51. box-sizing: border-box;
  52. width: 99.2%;
  53. padding: .8%;
  54. -webkit-transform: translate3d(0, 0, 0);
  55. transform: translate3d(0, 0, 0);
  56. color: black;
  57. background: white;
  58. margin-bottom: 10px;
  59. overflow: hidden;
  60. }
  61. .remodalDel {
  62. -webkit-box-sizing: border-box;
  63. box-sizing: border-box;
  64. width: 99.2%;
  65. padding: .8%;
  66. -webkit-transform: translate3d(0, 0, 0);
  67. transform: translate3d(0, 0, 0);
  68. color: black;
  69. background: white;
  70. margin-bottom: 10px;
  71. overflow: hidden;
  72. }
  73. @media only screen and (min-width: 140px) {
  74. .remodal {
  75. max-width: 380px;
  76. }
  77. }