-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
92 lines (84 loc) · 1.65 KB
/
main.css
File metadata and controls
92 lines (84 loc) · 1.65 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
body {
background: black;
color: white;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
/* font-size: 2em; */
text-align: center;
}
input[type="text"] {
background-color: black;
width: 60%;
height: 50%;
font-size: 3em;
text-align: center;
color: white;
outline: none;
border-top: 0;
border-right: 0;
border-bottom: 5px solid white;
border-left: 0;
/* margin-bottom: 50px; */
}
input[type="text"]:focus {
outline: none;
}
.task {
font-size: 1.5em !important;
border: none !important;
}
ul {
margin: 0;
padding: 0;
}
li {
overflow-y: auto;
width: 60%;
list-style: none;
font-size: 2em !important;
/* border: 1px solid grey; */
border: none !important;
/* box-shadow: 2px 2px 2p #999; */
margin: 5px auto;
/* padding: 10px; */
}
.button {
padding: 0;
border: none;
font: inherit;
color: inherit;
background-color: transparent;
/* show a hand cursor on hover; some argue that we
should keep the default arrow cursor for buttons */
cursor: pointer;
}
.completed {
text-decoration: line-through;
/* font-size: 0.8em; */
}
.taskDiv {
display: flex;
justify-content: space-between;
}
.delete {
border: 0;
border-radius: 0.25rem;
background: #ff000056;
color: white;
font-family: system-ui, sans-serif;
font-size: 1rem;
line-height: 1.2;
white-space: nowrap;
text-decoration: none;
padding: 0.25rem 0.5rem;
margin: 0.25rem;
/* margin-left: -1em; */
position: relative;
/* left: -20px; */
cursor: pointer;
}
.checkBox {
/* border: solid red 2px; */
margin-right: 50px;
margin-top: 40px;
}