-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (90 loc) · 1.93 KB
/
style.css
File metadata and controls
93 lines (90 loc) · 1.93 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
body {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.container {
text-align: center;
}
.heading {
font-size: 50px;
font-family: "Source Sans Pro", sans-serif;
}
.userValue {
display: inline;
}
#item {
width: 650px;
height: 50px;
font-size: 30px;
border-radius: 9px;
}
.addList {
margin-left: 16px;
font-size: 30px;
width: 80px;
height: 50px;
border-radius: 9px;
font-family: "Source Sans Pro", sans-serif;
color: #fff;
background-color: #007bff;
border-color: #007bff;
cursor: pointer;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.addList:hover {
background-color: #064181;
}
.clearText{
font-size: 25px;
width: 150px;
border-radius: 9px;
background-color: rgb(0, 0, 0);
color: white;
font-family: "Source Sans Pro", sans-serif;
}
.list {
font-family: "Source Sans Pro", sans-serif;
width: 1500PX;
height: fit-content;
}
.workArea {
display: inline-block;
}
.toDos {
color: black;
font-family: "Source Sans Pro", sans-serif;
font-size: 30px;
}
/* .remove {
width: 80px;
font-size: 20px;
color: white;
background-color: black;
} */
.list li {
margin-top: 25px;
font-size: 30px;
font-family: "Source Sans Pro", sans-serif;
text-transform: capitalize;
display: flex;
justify-content: space-between;
border-bottom: 0.5px dotted;
border-collapse: collapse;
border-spacing: 2px;
padding: 10px;
height: fit-content;
}
.list li button {
background-color: red;
cursor: pointer;
color: white;
font-size: 20px;
font-family: "Source Sans Pro", sans-serif;
width: 70px;
height: 30px;
margin-right: 10px;
}
.list li button:hover{
background-color: rgb(204, 13, 13);
}