Page 576 - Nodejs 교과서 개정2판
P. 576

border-radius:	4px;
           		background:	white;
           		border:	1px	solid	silver;
           		color:	crimson;
           		height:	37px;
           		line-height:	37px;
           		vertical-align:	top;
           		font-size:	12px;
           }
           input,	textarea	{
           		border-radius:	4px;
           		height:	37px;
           		padding:	10px;
           		border:	1px	solid	silver;
           }
           .container	{	width:	100%;	height:	100%;	}
           @media	screen	and	(min-width:	800px)	{
           		.container	{	width:	800px;	margin:	0	auto;	}
           }
           .input-group	{	margin-bottom:	15px;	}
           .input-group	label	{	width:	25%;	display:	inline-block;	}
           .input-group	input	{	width:	70%;	}
           #join	{	float:	right;	}
           .profile-wrap	{
           		width:	100%;
           		display:	inline-block;
           		vertical-align:	top;
           		margin:	10px	0;
           }
           @media	screen	and	(min-width:	800px)	{
           		.profile-wrap	{	width:	290px;	margin-bottom:	0;	}
           }
           .profile	{
           		text-align:	left;
           		padding:	10px;
           		margin-right:	10px;
           		border-radius:	4px;
           		border:	1px	solid	silver;
           		background:	yellow;
           }
           .user-name,	.user-money	{
           		font-weight:	bold;
           		font-size:	18px;
           		margin-bottom:	10px;
           }
   571   572   573   574   575   576   577   578   579   580   581