first.css
898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#container {
width:600px;
margin:10px auto;
}
fieldset {
margin-bottom: 20px;
}
ul {
list-style: none;
padding-left: 0;
}
ul li {
margin:10px;
}
.register {width: 200%;}
.login {width: 200%;}
/* label 텍스트 스타일 */
li label {
width:120px;
line-height: 36px;
float:left;
font-weight:bold;
}
/* 텍스트 필드 스타일 */
input[type="text"], input[type="password"], input[type="email"] {
width:300px;
height:30px;
}
/* 버튼 스타일 */
#buttons {
width: 800px;
margin:400px auto;
text-align: center;
}
#buttons input {
width: 500px;
height:100px;
font-size:20px;
}
#buttons input:hover {
background-color:rgb(27, 134, 221);
color:#fff;
border-color:#fff;
}
/* 드롭다운 메뉴 스타일 */
select {
width:100px;
height:30px;
}