-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (51 loc) · 1015 Bytes
/
index.css
File metadata and controls
57 lines (51 loc) · 1015 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
body {
background: #06beb6; /* fallback for old browsers */
background: linear-gradient(
to right,
#48b1bf,
#06beb6
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
font-family: "Montserrat", sans-serif;
}
.container {
background-color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
min-width: 300px;
text-align: center;
border-radius: 4px;
}
.line {
height: 2px;
width: 50px;
background-color: black;
display: block;
margin: 0 auto;
margin-top: -5px;
}
.content {
list-style-type: none;
padding: 0;
margin-top: 40px;
}
.item {
padding: 10px;
border: 1px solid rgb(45, 45, 45);
margin: 10px 0px;
display: flex;
justify-content: space-between;
}
.delete-btn {
background-color: transparent;
border: 1px solid black;
padding: 5px 20px;
transition: all 0.2s linear;
}
.delete-btn:hover {
background-color: #06beb6;
color: white;
border: 1px solid white;
}