calendarLess.les 1.1 KB
@import "../../less/variables";
 
.calendar_wrap{
	width:100%;
	font-size: 12px;
	text-align:center;
	tr{
		height: auto; 
	}
	.calendar_week_head{
		tr{
			line-height: 40px;
			height: 40px;
		}
		td{
			width:65px;
			color:#818286; 
			font-size: 12px;
		}
		.week_day{
			color:#BFBEC3;  
		}
	}
	.week_day{
		color:#BFBEC3;  
	} 
	.day_wrap:hover{
		background-color: rgba(64, 158, 255, 0.2); 
	}
	.current_day:hover{
		background-color: rgba(64, 158, 255, 1);
		color:#fff;
	}
	.day_wrap{
		cursor: pointer; 
		display: inline-block;
		padding: 4px;
		width: 25px;
    	text-align: center;
    	border-radius: 50%;
    	transition: all .3s;
    	color: #1e1f34; 
	}
	.current_day{
		background-color: rgba(64, 158, 255, 1);
		color:#fff;
		box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    	border-color: transparent;
	}
	.week_day{
		.day_wrap{ 	    	
			color: #BFBEC3;
		}
		.current_day{ 
			color:#fff;
		}
	}
}
 
.bottom_wrap{
	text-align:right;
	margin-top: 40px;
    margin-right: 16px;
}
.week_day_td_wrap{
	margin-top:8px;
}
.week_day_nongli_wrap{
	font-weight: lighter;
    color: #BFBEC3;
}