-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
59 lines (57 loc) · 1.07 KB
/
index.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
*{
box-sizing: border-box;
}
body{
margin: 0;
background-color: aqua;
padding: 72px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1{
text-align: center;
}
button{
cursor: pointer;
}
section#edit-container{
display: flex;
pad: 32px 120px;
}
section#edit-container input{
background-color: rgba(128, 128, 128, 0.5);
border: none;
outline: none;
font-size: 20px;
padding: 3px 8px;
width: 50%;
color: white;
}
section#edit-container button{
padding: 12px 52px;
margin-left: 16px;
border: none;
background-color: blue;
color: white;
}
section#list-container ul{
list-style-type: none;
padding: 0;
max-height: 75vh;
overflow-y: auto;
}
section#list-container ul li{
background-color: white;
padding: 8px;
margin-top: 5px;
width: 75%;
display: flex;
align-items: center;
justify-content: space-between;
}
section#list-container ul li button.del-btn{
background-color: red;
color: white;
border: none;
outline: none;
padding: 12px;
}