-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (64 loc) · 1.36 KB
/
style.css
File metadata and controls
68 lines (64 loc) · 1.36 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
*{
margin: 0;
padding: 0;
}
body{
background-color: aqua;
}
.container{
background-color: white;
width: 50%;
margin: auto;
min-height: 100vh;
padding: 30px;
box-sizing: border-box;
}
form{
display: flex;
flex-direction: column;
}
input,textarea,button{
padding: 10px;
border: 1px solid rgba(0, 0, 0, 0.3);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
border-radius: 5px;
outline: none;
margin: 10px;
}
button{
background-color: rgb(47, 45, 45);
color: white;
cursor: pointer;
font-weight: 800;
}
button:hover{
background-color: rgb(79, 11, 142);
}
.tasks{
background-color: bisque;
margin: 10px;
padding: 10px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: medium;
border-radius: 5px;
outline: none;
display: flex;
align-items: center;
}
.tasks > div{
width: 100%;
}
.tasks span{
color: rgb(94, 94, 94);
}
.delbtn{
display: flex;
background-color: rgb(91, 15, 162);
border-radius: 10rem;
font-size: 40px;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
}