-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
95 lines (95 loc) · 1.85 KB
/
main.css
File metadata and controls
95 lines (95 loc) · 1.85 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
header{
display: flex;
background-color: skyblue;
height: 70px;
width: 100%;
align-items: center;
justify-content: center;
}
.logo{
color: blue;
font-size: 30px;
font-weight: 700;
position: relative;
left: 30px;
border: 5px solid white;
border-radius: 20px;
padding: 10px;
margin: 0 50px;
}
.inner{
position: relative;
width: 80%;
height: max-content;
}
.inner input.text{
height: 30px;
border-radius: 5px;
font-weight: 700;
width: 400px;
}
.inner button.add{
background-color: white;
border: 0;
font-weight: 700;
color: blue;
height: 30px;
width: 60px;
border-radius: 5px;
cursor: pointer;
box-shadow: 2px 2px 3px rgba(255,255,255,0.7);
}
.inner button.add:hover{
background-color: rgba(255,255,255,0.8);
box-shadow: 3px 3px 4px rgba(255,255,255,0.5);
}
main{
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
main .item{
display: flex;
padding: 30px 10px;
background-color: skyblue;
border: 3px solid blue;
margin: 10px auto;
width: 100%;
border-radius: 20px;
justify-content: space-around;
flex-wrap: nowrap;
align-items: center;
}
main .item.checked{
background-color: rgba(255,150,150);
border: 3px solid red;
}
main .item .name{
width: 500px;
margin: 5px;
}
main .item.checked .name{
text-decoration: line-through;
}
.createlist, .updatelist{
width: max-content;
display: block;
}
.create, .update{
margin: 0 5px;
}
button.delete{
background-image: url(./61155.png);
width: 30px;
height: 30px;
background-color: white;
border: 3px solid blue;
border-radius: 5px;
background-size: contain;
background-repeat: no-repeat;
}
main .item.checked button.delete{
border: 3px solid red;
}