index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. input,
  2. button {
  3. /* line-height: 20px; */
  4. font-size: 13px;
  5. padding: 3px 5px
  6. }
  7. body {
  8. height: 100vh;
  9. background: #ccc;
  10. }
  11. .container {
  12. padding: 30px 30px;
  13. width: 1000px;
  14. margin: 0 auto;
  15. /* border: 1px solid pink; */
  16. background: #fff
  17. /* height: 400px; */
  18. /* background: pink */
  19. }
  20. .filter-item {
  21. display: inline-block;
  22. margin-right: 20px;
  23. margin-bottom: 20px;
  24. }
  25. .filter-item span {
  26. width: 92px;
  27. display: inline-block;
  28. text-align: right;
  29. }
  30. .connect-sec input {
  31. width: 120px;
  32. }
  33. .openWebsocket {
  34. cursor: pointer;
  35. margin-right: 10px;
  36. }
  37. .closeWebsocket {
  38. cursor: not-allowed;
  39. opacity: .5
  40. }
  41. /* .param-sec input {
  42. width: 280px;
  43. } */
  44. .xunJian-sec input {
  45. width: 140px;
  46. }
  47. .button-sec button {
  48. margin-right: 30px;
  49. cursor: pointer
  50. }
  51. .data-view {
  52. box-sizing: border-box;
  53. padding: 20px;
  54. margin-top: 30px;
  55. width: 100%;
  56. height: calc(100vh - 360px);
  57. /* height: 100vh; */
  58. border: 1px solid #000;
  59. overflow-y: auto;
  60. }
  61. .receive-time {
  62. color: blue
  63. }
  64. .send-time {
  65. color: green
  66. }
  67. .send-status {
  68. color: red
  69. }
  70. .send-status,
  71. .send-request,
  72. .send-time,
  73. .receive-time,
  74. .receive-request {
  75. margin-bottom: 10px;
  76. }