monitor.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. body {
  2. color: var(--text-color);
  3. background: #000;
  4. padding: 20px;
  5. }
  6. .s-title {
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. margin-bottom: 10px;
  11. }
  12. .s-title .tag {
  13. color: #aa00f5;
  14. font-size: 14px;
  15. padding: 2px;
  16. border: 1px solid #aa00f5;
  17. }
  18. .video-ctrl {
  19. width: 100%;
  20. margin-bottom: 10px;
  21. }
  22. .video-ctrl video {
  23. width: 100%;
  24. height: 300px;
  25. }
  26. .m-detail{
  27. display: flex;
  28. justify-content: space-between;
  29. }
  30. .detail-left{
  31. flex:2;
  32. }
  33. .detail-left img{
  34. width: 90%;
  35. }
  36. .detail-right{
  37. flex:3;
  38. margin-left: 10px;
  39. }
  40. .detail-right .detail-item{
  41. display: flex;
  42. justify-content: space-between;
  43. line-height: 2;
  44. align-items: center;
  45. margin-bottom: 5px;
  46. font-size: 16px;
  47. }
  48. .detail-right .detail-item .di-l{
  49. color: var(--sub-text-color);
  50. flex: 2;
  51. }
  52. .detail-right .detail-item .di-r{
  53. flex: 3;
  54. text-align: right;
  55. }
  56. .settting,.cancel{
  57. text-align: right;
  58. margin: 10px auto 20px;
  59. }
  60. .settting span{
  61. color:#fff;
  62. font-size: 14px;
  63. padding: 4px 10px;
  64. background: var(--sub-text-color);
  65. cursor: pointer;
  66. }
  67. .cancel span{
  68. color:var(--sub-text-color);
  69. font-size: 14px;
  70. padding: 4px 10px;
  71. background: #fff;
  72. cursor: pointer;
  73. }
  74. a {
  75. text-decoration: none;
  76. }
  77. a:hover {
  78. text-decoration: none;
  79. }
  80. .tcdPageCode {
  81. padding: 0 0 15px 0;
  82. color: #ccc;
  83. text-align: right;
  84. }
  85. .tcdPageCode a {
  86. display: inline-block;
  87. color: #000;
  88. display: inline-block;
  89. height: 25px;
  90. line-height: 25px;
  91. padding: 0 8px;
  92. border: 1px solid #ddd;
  93. margin: 0 4px;
  94. vertical-align: middle;
  95. background: #fff;
  96. }
  97. .tcdPageCode a:hover {
  98. text-decoration: none;
  99. border: 1px solid #428bca;
  100. }
  101. .tcdPageCode span.current {
  102. display: inline-block;
  103. height: 25px;
  104. line-height: 25px;
  105. padding: 0 8px;
  106. margin: 0 4px;
  107. color: #fff;
  108. background-color: #428bca;
  109. border: 1px solid #428bca;
  110. vertical-align: middle;
  111. }
  112. .tcdPageCode span.disabled {
  113. display: inline-block;
  114. height: 25px;
  115. line-height: 25px;
  116. padding: 0 8px;
  117. margin: 0 4px;
  118. color: #bfbfbf;
  119. background: #f2f2f2;
  120. border: 1px solid #bfbfbf;
  121. vertical-align: middle;
  122. }