-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (58 loc) · 1013 Bytes
/
index.css
File metadata and controls
67 lines (58 loc) · 1013 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
56
57
58
59
60
61
62
63
64
65
66
67
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 0;
}
h1 {
font-size: 24px;
}
#todo-list {
padding: 10;
}
#todo-list li {
margin: 5px 0;
}
.todo-input {
margin-top: 10px;
padding: 8px;
font-size: 16px;
border-radius: 10px;
box-shadow: 2px 3px 5px 0px;
border: none;
}
.save-button {
padding: 8px 16px;
border-radius: 10px;
margin-left: 10px;
cursor: pointer;
box-shadow: 2px 3px 5px 0px;
border: none;
}
#modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
&.hidden {
display: none;
}
}
.modal-content {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 1px 2px 5px 0px;
text-align: center;
}
button {
margin: 5px;
padding: 10px 20px;
cursor: pointer;
border-radius: 10px;
box-shadow: 1px 2px 1px 0px;
}