forked from NirejBatrai/To-do-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (59 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (59 loc) · 1.04 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
body{
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: white;
}
.container{
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
.to-do div{
height: auto;
display: flex;
justify-content: right;
justify-content: space-between;
padding: 3px 6px;
}
.to-do div button{
background-color: red;
width: 40px;
height: 20px;
cursor: pointer;
}
.Box{
background-color: grey;
padding: 20px 40px;
}
.to-do{
padding: 10px;
background-color: black;
}
#inputfield{
width: 300px;
height: 46px;
border: 1px solid black;
outline: none;
font-size: 25px;
vertical-align: middle;
}
#addToDo{
height: 50px;
width: 50px;
border: 1px solid black;
vertical-align: middle;
font-size: 30px;
background-color: greenyellow;
cursor: pointer;
}
.to-dos{
margin-top: 25px;
}
.paragraph-styling{
margin: 0;
cursor: pointer;
font-size: 20px;
}