12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @charset "UTF-8";
- .calendar-box {
- height: 720px;
- overflow-y: auto;
- background: rgb(255, 255, 255);
- padding-left: 15px;
- padding-top: 20px;
- padding-right: 15px;
- border-radius: 5px;
- }
- .tag-tip{
- text-align: right;
- margin-bottom: 20px;
- }
- //左侧会议室列表
- .room-content{
- box-shadow: 0 0 5px #999;
- padding-top: 15px;
- text-align: center;
- .room-title{
- font-size: 16px;
- font-weight: bold;
- border-bottom: 2px solid #3AA1FF;
- padding-bottom: 15px;
- }
- .room-list{
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #eee;
- font-size: 14px;
- cursor: pointer;
- position: relative;
- i{
- position: absolute;
- top: 14px;
- right: 15px;
- }
- }
- .room-list:last-child{
- border: none;
- }
- }
- .active-list, .room-list:hover{
- background-color: #3AA1FF;
- color: #fff
- }
- .line{
- text-align: center;
- }
|