-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
101 lines (86 loc) · 1.45 KB
/
Copy pathcss.css
File metadata and controls
101 lines (86 loc) · 1.45 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
* {
padding: 0;
margin: 0;
box-sizing: content-box;
}
html {
min-height: 100%;
background: linear-gradient(135deg, pink, purple);
}
body {
/* border: 1px solid green; */
padding-top: 50px;
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
height: auto;
width: 100%;
}
.container {
width: 50%;
min-height: 10%;
border: 5px solid black;
padding: 10px;
}
h1 {
text-align: center;
}
hr {
border: 3px solid black;
}
.taskContainer {
display: flex;
}
#inputArea {
background-color: transparent;
font-size: 30px;
border: 5px solid black;
border-radius: 10px;
width: 80%;
}
#addButton {
margin-left: auto;
background-color: transparent;
border: 5px solid black;
border-radius: 10px;
padding: 10px;
}
label {
/* background-color: transparent; */
/* border: 2px solid black; */
/* border-radius: 10px; */
margin-bottom: 5px;
cursor: pointer;
}
label img {
/* border: 1px solid green; */
width: 10%;
height: auto;
}
label input[type="checkbox"] {
appearance: none;
}
p {
/* border: 1px solid green; */
font-size: 40px;
width: 80%;
color: #1eafeb;
}
i {
/* border: 1px solid green; */
font-size: 55px !important;
}
/* div {
/* background-color: darkgoldenrod; */
/* height: 70vh; */
/* width: 70vw; */
/* border: 10px solid red; */
/* border-color: red; */
/* } */
.l {
cursor: pointer;
}
.clickable {
cursor: pointer; /* Makes the "Click" text clickable */
}