1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/*--- 主控台的格子內容 ---*/
.dash-segment .segment-content{
	border: 3px solid rgba(255, 255, 255, 0); /* 透明3px框線 */
	background-color: rgba(0, 0, 0, 0.3);     /* 黑色(半透明30%)背景 */
	transition: all .35s ease-in-out;         /* 過渡效果 */
}
/*--- 主控台的格子內容(當鼠標移過去) ---*/
.dash-segment .segment-content:hover{
	border: 3px solid rgb(252, 186, 3);   /* 橙色3px框線 */
	background-color: rgb(0, 0, 0);       /* 純黑色背景 */
}