-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (81 loc) · 1.42 KB
/
style.css
File metadata and controls
82 lines (81 loc) · 1.42 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
* {
padding: 0;
margin: 0;
font-size: 62.5%;
}
body {
font-size: 3rem;
text-align: center;
background-image: url('pics/Background.jpg');
}
input {
border-radius: 0.5rem;
}
button {
border-radius: 0.5rem;
}
#heading {
font-size: 6rem;
padding: 5rem 0 1rem 0;
font-family: "Montserrat", sans-serif;
}
.ListContainer {
display: grid;
grid-template-columns: repeat(3, 3fr);
}
.ListCard {
border: black solid 0.3rem;
border-radius: 2rem;
background-color: rgba(122, 129, 129, 0.6);
margin: 3rem;
}
.ListHead {
display: flex;
justify-content: space-between;
border-bottom: black solid 0.3rem;
}
h3 {
text-align: center;
margin: auto;
font-size: 4rem;
color: rgb(27, 41, 49);
}
.CrossListBtn {
display: block;
width: 3.7rem;
max-height: 3.7rem;
font-size: 2rem;
background-color: red;
padding: 0.5rem;
margin-left: auto;
border-radius: 50%;
}
.ListBody {
font-size: 3rem;
font-weight: bold;
}
.TaskDoneBtn {
background-color: greenyellow;
padding: 0.5rem 1rem;
margin: 1rem 1rem 1rem 0.5rem;
border-radius: 0.5rem;
}
.TaskDeleteBtn {
background-color: rgb(238, 73, 73);
padding: 0.5rem 1rem;
margin: 1rem 0.5rem 1rem 2rem;
border-radius: 0.5rem;
}
li {
font-family: "Lato", sans-serif;
list-style: none;
font-size: 2.5rem;
display: flex;
align-items: center;
}
.TaskComplete {
text-decoration: line-through rgb(238, 73, 73);
}
.AddTaskBtn {
margin: 1.5rem;
}