-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubject.css
More file actions
55 lines (54 loc) · 937 Bytes
/
subject.css
File metadata and controls
55 lines (54 loc) · 937 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width:500px;
margin:20px auto;
padding:20px;
}
.container h1 {
margin-bottom: 20px;
}
.container p {
margin-bottom: 20px;
}
.hidden {
opacity: 0; /*투명도*/
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
white-space: nowrap; /* 텍스트가 한 줄로 보이도록 하여 넘치는 내용 숨김 */
}
input[type="text"] {
width:370px;
float:left;
height:30px;
padding-left:30px;
border-color: rgb(105, 105, 221);
}
button {
width:90px;
height:30px;
float:right;
background:#222;
color:#fff;
border:none;
}
hr {
clear:both; display:none;
}
ul {
list-style:square;
padding-top:50px;
margin-left: 80px;
}
li {
line-height: 2.5;
}
li:hover {
cursor:pointer;
}