-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (84 loc) · 1.64 KB
/
style.css
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
*{
margin: 0%;
padding: 0%;
}
body{
background-color: antiquewhite;
}
.container{
/* border: 2px solid greenyellow; */
background-color: white;
width: 70%;
min-height: 100vh;
margin: auto;
padding: 30px;
/* display: flex; */
box-sizing: border-box;
}
/* #header{
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
padding: 20px;
} */
form{
display: flex;
flex-direction: column;
}
input,textarea,button{
/* width: 80%; */
/* margin-left: 12%; */
padding: 10px;
/* margin-top: 10px; */
outline: none;
/* font-family: Georgia, 'Times New Roman', Times, serif; */
border: 1px solid rgb(0, 0, 0,0.2);
font: 1.1rem sans-serif;
border-radius: 5px;
margin: 10px;
}
button{
background-color: rgb(117, 113, 113);
color: white;
transition: all 0.5s;
cursor: pointer;
}
button:hover{
background-color: blueviolet;
}
.task{
/* border: 2px solid gray; */
background-color: rgb(221, 232, 240);
padding: 30px;
display: flex;
justify-content: center;
align-items: center;
font: 1.1rem sans-serif;
margin: 2vmax;
/* width: 100%; */
}
/* *{
border: 2px solid beige;
} */
.task span{
color: rgb(0, 0, 0,0.623);
}
.task>div{
width: 100%;
}
#deleteBtn{
/* border: 2px solid rgb(74, 77, 74); */
border-radius: 100%;
height: 30px;
width: 30px;
outline: none;
background-color: rgb(238, 62, 62);
display: flex;
align-items: center;
}
.subtask{
width: 100%;
/* border: 2px solid crimson; */
}
#header{
text-align: center;
}