-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (58 loc) · 935 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(to right, #782bed, #d85a7f);
}
header {
padding: 20px 30px;
background-color: #66a5ad;
border-radius: 5px;
}
input[type="text"] {
width: 300px;
height: 30px;
}
.add {
outline: none;
border: none;
padding: 6px;
cursor: pointer;
}
.add:active {
transform: scale(0.98);
}
.listContainer {
background-color: #66a5ad;
border-radius: 5px;
margin-top: 5px;
}
.listBox {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
}
.listText {
display: flex;
align-items: center;
background-color: aliceblue;
height: 25px;
width: 330px;
padding-left: 8px;
cursor: pointer;
}
.listText:active {
transform: scale(0.98);
}
i {
cursor: pointer;
color: #fff;
}