forked from likelionsg/11th_JS_PART1_Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.05 KB
/
style.css
File metadata and controls
77 lines (65 loc) · 1.05 KB
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
@font-face {
font-family: "Pretendard";
src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
format("woff");
font-weight: 400;
font-style: normal;
}
body,
html {
width: 100%;
}
body * {
box-sizing: border-box;
font-family: "Pretendard";
}
body {
}
.todo_container {
padding: 30px;
width: 1000px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
#todo_lifeQuote {
font-size: 32px;
}
.todo_generator {
margin-top: 50px;
}
form {
display: flex;
justify-content: center;
}
form input {
padding: 15px;
border-radius: 15px;
}
#todo_listTitle {
margin-top: 50px;
font-size: 26px;
}
.todo_lists {
margin-top: 30px;
display: flex;
justify-content: center;
gap: 20px;
align-items: center;
flex-direction: column;
}
.todo_lists li {
border: 1px solid black;
width: 500px;
padding: 15px;
border-radius: 15px;
display: flex;
align-items: center;
}
ul img {
width: 20px;
height: 20px;
margin-left: 20px;
}