-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (57 loc) · 1.11 KB
/
style.css
File metadata and controls
67 lines (57 loc) · 1.11 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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif
}
body{
background-image:url(./background-gradient-design-wave-green-modern-abstract_343694-3962.jpg.avif);
background-size:cover;
text-align: center;
}
header{
font-size: 2rem;
margin-bottom: 100px;
}
#inputItem{
width:500px;
height:50px;
border-radius: 10px;
outline:none;
border:black solid 2px;
font-size:1.2rem;
}
#add-item{
height:50px;
width:100px;
font-size: 1.2rem;
border-radius: 10px;
border:black solid 2px;
background-color: yellow;
cursor:pointer;
}
.list-item{
background-color: yellow;
display:flex;
align-items: center;
justify-content: space-between;
padding:10px;
font-size:1.1rem;
border-radius:10px;
border:red solid 2px;
font-weight: bold;
margin:10px;
}
#noteList{
margin-top:50px;
}
.delete-btn{
color:white;
font-size:1rem;
padding:9px;
border-radius: 10px;
border:black solid 1px;
cursor:pointer;
background-color: red;
font-weight: bold;
}