-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODOLIST.CSS
112 lines (98 loc) · 2.14 KB
/
TODOLIST.CSS
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
background-color: #f4ded2;
}
.container {
display: flex; /*디스플레이 플렉스 == 요소들을 중앙으로*/
flex-direction: column; /*요소들을 위에서 아래로 쌓이게*/
padding: 32px 0;
}
.input-container {
width: 80%;
display: flex;
align-self: center;
justify-content: space-between;
}
#frm {
display: flex; /*기본 정렬이 row!*/
justify-content: flex-start;
}
#input {
width: 400px;
padding: 8px 12px;
border-radius: 4px;
border: 1px solid rosybrown;
margin: auto;
}
.Clear {
background-color: #613232;
color: whitesmoke;
border-radius: 4px;
border: 1px solid rosybrown;
margin-left: 3%;
width: 20%;
}
#add-button {
width: 20%;
height: 100%;
background-color: rgba(175, 114, 67, 0.723);
border-radius: 4px;
border: 1px solid rosybrown;
color: white;
margin-left: 3%; /*왼쪽에 여백 5프로만 주기*/
}
.list-container {
display: flex;
flex-direction: column;
margin-top: 48px;
width: 80%;
height: 420px; /*높이를 설정하고*/
align-self: center;
border-radius: 4px;
border: 3px solid #b67d7d;
background-color: white;
overflow-y: scroll; /*높이를 벗어나면 스크롤 형식으로 바뀌도록 기능 추가*/
}
h3 {
padding: 16px 24px;
margin: 0;
font-size: 16px;
border-bottom: 1px solid #d5baba;
}
#title {
padding: 2rem;
text-align: center;
color: rosybrown;
font-size: 4rem;
margin-bottom: 0.1%;
}
#list {
margin: 32px 0;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.list-item {
border-bottom: 1px solid #eaeaea;
margin-right: 32px;
padding: 16px 0;
font-size: 14px;
flex: 0 0 50%; /*뭔지 확인*/
}
/* 체크박스를 숨김 */
input.check-box {
display: flex;
}
/* 체크박스 대신 보여줄 라벨 스타일 */
input.check-box + label {
display: inline-block;
width: 20px;
height: 20px;
border: 2px solid #bcbcbc;
cursor: pointer;
}
/* 체크박스가 체크됐을 때의 라벨 스타일 */
input.check-box:checked + label {
background-color: #613232;
}
/*체크박스 css인데 적용이 안됌. 이유를 도저히 모르겠음 */
/*css는 나중에 하기로 결정*/