☆ 실습 : 로그인 창 꾸미기
CSS
.member {
font-size: 50px;
text-shadow: 0 0 10px #666;
color: #fff;
margin: 0 auto;
text-align: center;
text-transform: capitalize;
font-family: "맑은 고딕";
font-style: italic;
}
body {
font-family: "맑은 고딕";
font-size: 12px;
}
.form {
width: 498px;
height: 300px;
border-radius: 25px;
border: 5px double #999;
margin: 30px auto;
}
.form2 {
width: 380px;
min-width: 320px;
height: 200px;
margin: 60px auto;
margin-left:20px;
}
.form3 {
float: left;
/* background:#f00; */
}
.form3 label {
width: 100px;
height: 20px;
/* display: block; */
float: left;
}
.form4 {
padding: 0px 0px 0px 70px;
}
#wrap {
width: 600px;
height: 500px;
margin: 0 auto;
}
.clear {
clear: both;
}
input[type="submit"] {
float: left;
/* display:block; */
height: 50px;
background: #FFBB00;
border-radius: 5px;
border: none;
font-family: "맑은 고딕";
}
input[type="button"] {
height: 30px;
background: gray;
border-radius: 5px;
/* width: 140px; */
font-family:"맑은 고딕";
margin-top:10px;
margin-right:20px;
}
input[type="checkbox"] {
margin-top:20px;
}
HTML
<form>
<div id="wrap">
<h1 class="member">member login</h1>
<div class="form">
<div class="form2">
<div class="form3">
<label for="user">아이디</label><input type="text" id="user">
<div class="clear"></div>
<label for="user">비밀번호</label><input type="password" id="user">
</div>
<input type="submit" value="로그인하기">
<div class="clear"></div>
<div class="form4">
<label><input type="checkbox">아이디저장</label> <label><input
type="checkbox">보안접속</label>
<div class="clear"></div>
<label><input type="button" value="회원가입"></label> <label><input
type="button" value="아이디/비밀번호 찾기"></label>
</div>
</div>
</div>
</div>
</form>
'N스크린하이브리드앱과정 > HTML&CSS' 카테고리의 다른 글
[8주][2일][1~2th] HTML/CSS: 게시판 꾸미기 (0) | 2013.09.03 |
---|---|
[8주][1일][1~2th] HTML/CSS: 쇼핑몰 주문자 정보 입력 꾸미기 (0) | 2013.09.02 |
[7주][4일][1~2th] HTML/CSS: 실습하기 (0) | 2013.08.29 |
[7주][3일][1~2th] HTML/CSS: 그라데이션 효과, 기타 실습. (0) | 2013.08.28 |
[7주][2일][1~2th] HTML/CSS: 마우스롤오버 페이지, -webkit, -ms의 사용 (0) | 2013.08.27 |