configure.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .alarmInfoWrap {
  2. position: absolute;
  3. top: 0%;
  4. left: 0%;
  5. height: 100%;
  6. width: 100%;
  7. border: none;
  8. background-color: rgba(0, 0, 0, 0);
  9. z-index: 999;
  10. }
  11. .wrap-dialog {
  12. position: fixed;
  13. top: 20%;
  14. left: 40%;
  15. width: 30%;
  16. height: 30%;
  17. font-size: 1.2rem;
  18. text-align: center;
  19. background-color: rgba(0, 0, 0, .4);
  20. z-index: 999;
  21. /*border:solid 1px red;*/
  22. }
  23. .dialog {
  24. position: relative;
  25. margin: 0.5%;
  26. width: 99%;
  27. height: 98%;
  28. background-color: #FFFFFF;
  29. /*border: solid 1px blue;*/
  30. }
  31. .dialog .dialog-header {
  32. height: 20%;
  33. /*padding: 2%;*/
  34. background-color: lightskyblue;
  35. border: solid 1px #ffd800;
  36. }
  37. .dialog .dialog-header .dialog-title {
  38. font-size: 1.2rem;
  39. padding: 2%;
  40. }
  41. .dialog .dialog-body {
  42. height: 60%;
  43. padding: 2%;
  44. font-size: 1rem;
  45. /*/*border:solid 1px #b6ff00;*/
  46. }
  47. .dialog .dialog-footer {
  48. height: 19.5%;
  49. background-color: whitesmoke;
  50. /*border:solid 1px #1cd4f8;*/
  51. }
  52. .dialog .dialog-footer .btn {
  53. width: 15%;
  54. /*padding: 2%;*/
  55. height: 88%;
  56. color: blue;
  57. background-color:transparent;
  58. border: none;
  59. }
  60. .hide {
  61. display: none;
  62. }
  63. .ml50 {
  64. margin-left: 40%;
  65. }