calendar.scss 879 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @charset "UTF-8";
  2. .calendar-box {
  3. height: 720px;
  4. overflow-y: auto;
  5. background: rgb(255, 255, 255);
  6. padding-left: 15px;
  7. padding-top: 20px;
  8. padding-right: 15px;
  9. border-radius: 5px;
  10. }
  11. .tag-tip{
  12. text-align: right;
  13. margin-bottom: 20px;
  14. }
  15. //左侧会议室列表
  16. .room-content{
  17. box-shadow: 0 0 5px #999;
  18. padding-top: 15px;
  19. text-align: center;
  20. .room-title{
  21. font-size: 16px;
  22. font-weight: bold;
  23. border-bottom: 2px solid #3AA1FF;
  24. padding-bottom: 15px;
  25. }
  26. .room-list{
  27. height: 40px;
  28. line-height: 40px;
  29. border-bottom: 1px solid #eee;
  30. font-size: 14px;
  31. cursor: pointer;
  32. position: relative;
  33. i{
  34. position: absolute;
  35. top: 14px;
  36. right: 15px;
  37. }
  38. }
  39. .room-list:last-child{
  40. border: none;
  41. }
  42. }
  43. .active-list, .room-list:hover{
  44. background-color: #3AA1FF;
  45. color: #fff
  46. }
  47. .line{
  48. text-align: center;
  49. }