-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (85 loc) · 1.69 KB
/
styles.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
*{
margin :0;
padding : 0;
box-sizing : border-box;
}
body{
background:#0e0c0c49;
}
.container{
width : 350px;
height:400px;
background:#0c0b0bc7;
position:absolute;
top:20%;
left:30%;
border-radius:10px;
}
.todolist{
display:flex;
justify-content:space-between;
margin:10px;
align-items:center;
background:#ffffff;
padding:5px;
border-bottom: 1px solid gray;
border-radius: 5px;
height: 40px;
box-shadow: 5px 5px rgb(0, 0,15);
font-weight : bold;
flex-wrap: wrap;
width: 325px;
}
.deleteTask{
cursor:pointer;
width : 25px;
height: 25px;
text-align: center;
border-radius:50%;
background: orangered;
color:#ffffff;
outline:none;
align-items:center;
margin:0;
padding:0;
}
.pText{
background:#ffffff;
text-transform: capitalize;
}
.inputvalue{
display:flex;
margin:5px;
margin-bottom: 60px;
}
.inputVal{
width: 250px;
height: 40px;
border-radius: 5px;
margin-right :5px;
border : 2px solid rgb(69,5,187);
}
.btn{
width:100px;
background: #097d56;
color: #ffffff;
text-transform: uppercase;
font-weight:bold;
outline-style:none;
border-radius: 5px;
box-shadow: 1px 1px #03110c;;
}
.clearTask{
position: absolute;
bottom: 5px;
left: 15%;
background: orangered;
color: #ffffff;
width: 250px;
height: 35px;
border-radius: 5px;
text-transform: capitalize;
font-weight: bold;
cursor:pointer;
outline-style: none;
}