-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (92 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (92 loc) · 1.7 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
* {
margin: 0;
padding: 0;
}
body{
background-color: bisque;
}
main {
justify-content: center;
align-items: center;
padding: 20px;
}
input {
padding: 11px;
width: 80%;
border: 2px solid #000;
}
button {
padding: 10px;
background-color: rgb(41, 192, 41);
color: #fff;
cursor: pointer;
}
button:hover {
background-color: rgb(54, 170, 54);
}
form {
padding-top: 20px;
margin-bottom: 20px;
text-align: center;
@media (max-width: 1250px) {
button {
width: max-width;
margin-top:10px;
}
}
}
.task-content {
display: block;
gap: 1rem;
padding: 2rem;
border: 1px solid black;
}
li {
border: 2px solid #ffff;
list-style: none;
display: flex;
background-color: green;
color: #ffff;
font-weight: bold;
box-shadow: rgb(0, 0, 0, 0) inset;
padding: 20px;
}
.btnDelete {
background-color: red;
cursor: pointer;
border-radius: 20%;
}
.btnDelete:hover {
background-color: rgb(253, 139, 139);
border: 2px solid #fff;
}
.list-content {
align-items: center;
}
.btnEdit {
border-radius: 20%;
cursor: pointer;
}
.btnEdit:hover {
border-radius: 20%;
background-color: rgb(71, 208, 71);
border: 2px solid #fff;
}
.actions {
width: 100%;
display: flex;
justify-content: flex-end;
gap: 10px;
}
.header-task {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.header-task div:first-child{
grid-column: span 3;
text-align: center;
}
.header-task div:nth-child(2){
text-align: end;
margin-right: 40px;
}