사용자:Senior9324/Notification.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
13번째 줄: 13번째 줄:
.libre_right_notify .notify-icon {
.libre_right_notify .notify-icon {
width: 10%;
width: 10%;
min-width: 20px;
font-style: normal;
font-style: normal;
font-weight: bold;
font-weight: bold;
41번째 줄: 40번째 줄:
position: fixed;
position: fixed;
top: 94px;
top: 94px;
right: -202px;
right: -207px;
visibility: visible;
visibility: visible;
transition: right 0.5s;
transition: right 0.5s;

2015년 6월 14일 (일) 20:20 판

.libre_right_notify {
	margin-top: 10px;
	border-radius: 4px;
	text-align: center;
	background: #EEEEEE;
	box-shadow: 1px 1px 1px #CCCCCC;
	width: 230px;
}
.libre_right_notify * {
	display: inline-block;
	padding: 4px;
}
.libre_right_notify .notify-icon {
	width: 10%;
	font-style: normal;
	font-weight: bold;
	background: #AAAAAA;
	color: white;
	cursor: pointer;
}
.libre_right_notify .notify-icon:before {
	content: "!";
}
.libre_right_notify .notify-link {
	padding: 0;
	width: 90%;
	color: black;
}
.libre_right_notify .notify-msg {
	width: 80%;
}
.libre_right_notify .notify-count {
	font-weight: bold;
	background: #FF6363;
	color: white;
	width: 20%;
}
@media (max-width: 991px) {
	.libre_right_notify {
		position: fixed;
		top: 94px;
		right: -207px;
		visibility: visible;
		transition: right 0.5s;
	}
	.libre_right_notify.expand {
		right: 0;
	}
}