live.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. body {
  2. text-align: center;
  3. }
  4. .btn-container {
  5. text-align: center;
  6. margin-top: 30px;
  7. }
  8. .btn-container .btn-item {
  9. display: inline-block;
  10. width: 20%;
  11. vertical-align: top;
  12. cursor: pointer;
  13. }
  14. .btn-container .btn-item img {
  15. display: inline-block;
  16. width: 60%;
  17. }
  18. .deck-container {
  19. display: inline-block;
  20. width: 200px;
  21. height: 200px;
  22. /* border: 1px solid #1890ff; */
  23. box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  24. margin-top: 30px;
  25. padding: 10px;
  26. border-radius: 100%;
  27. }
  28. .deck {
  29. position: relative;
  30. }
  31. .deck .top {
  32. transform: rotate(-90deg);
  33. width: 42px;
  34. }
  35. .deck .left {
  36. transform: rotate(180deg);
  37. left: 0;
  38. top: 75px;
  39. position: absolute;
  40. width: 42px;
  41. }
  42. .deck .right {
  43. transform: rotate(0deg);
  44. right: 0;
  45. top: 75px;
  46. position: absolute;
  47. width: 42px;
  48. }
  49. .deck .bottom {
  50. transform: rotate(90deg);
  51. position: absolute;
  52. top: 150px;
  53. left: 80px;
  54. width: 42px;
  55. }
  56. .time-container {
  57. margin: 0.5rem 20px;
  58. /* margin-top: 30px; */
  59. position: relative;
  60. }
  61. .mark-area-container {
  62. z-index: -1;
  63. display: inline-block;
  64. width: 100%;
  65. height: 1rem;
  66. /* outline: 1px solid red; */
  67. /* margin-bottom: 20px; */
  68. position: absolute;
  69. left: 0;
  70. top: 0;
  71. text-align: left;
  72. background: #f3f3f3;
  73. }
  74. .area {
  75. display: inline-block;
  76. height: 1rem;
  77. vertical-align: top;
  78. background: red;
  79. width: 20px;
  80. position: absolute;
  81. }