-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdd-Item.css
More file actions
91 lines (91 loc) · 1.35 KB
/
Copy pathAdd-Item.css
File metadata and controls
91 lines (91 loc) · 1.35 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
*
{
margin:0;
padding:0;
font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.head-container
{
display: flex;
flex-direction: row;
justify-content:space-evenly;
/* margin: auto; */
}
.header-title
{
margin-bottom: 40px;
font-size: 30px;
margin-top:100px;
}
.header-add
{
margin-top:130px;
margin-left: 10px;
font-size: 25px;
}
.Lists
{
font-weight: lighter;
color:lightslategray;
}
.card-container
{
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: auto;
}
.card
{
width:220px;
margin-left:50px;
height:350px;
border:1px solid red;
border-radius: 6px ;
box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.15);
}
.card-header
{
margin-left: 30px;
margin-top:30px;
color: red;
}
.card-header h4
{
font-size: 25px;
font-weight: lighter;
margin-bottom:10px;
}
.card-content
{
margin-left: 30px;
margin-top:30px;
color: red;
}
.card-content h5
{
font-size: 25px;
font-weight: lighter;
text-decoration: line-through;
margin-bottom:10px;
}
.card-footer
{
display: flex;
margin-left:10px;
margin-top: 20px;
align-items: center;
align-content: space-between;
}
.card-footer input
{
height:20px;
width:20px;
margin-right:10px;
display: flex none;
}
.card-footer label
{
font-size: 20px;
font-weight: 500;
}