/*
 * CSS Name: FontSizeSelect
 * Author: NORTH HILL WORK STUDIO
 * Author URI: https://nhws.localinfo.jp/
 */


.fontsizeselect{
	line-height: 26px;
	color: #222;
}
.fontsizeselect a { display: inline !important; }
.fontsizeselect a:nth-child(n+2){
	border: solid 1px #666;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
}
.fontsizeselect a:hover:nth-child(n+2){
	background-color: rgba(255, 255, 255, 0.6);
}
.fontsizeselect span{
	font-size: 15px;
}
.fontsizeselect a:nth-child(2){
	font-size: 12px;
}
.fontsizeselect a:nth-child(3){
	font-size: 14px;
}
.fontsizeselect a:nth-child(4){
	font-size: 16px;
}
.fontsizeselect a.selected{
	background-color: rgba(255, 255, 255, 0.6);
}
