-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (61 loc) · 1.04 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
#inp1{
width: 400px;
border: 2px solid black;
border-radius: 10px;
height: 30px;
}
body{
background-color: blueviolet;
align-items: center;
}
.heading{
font-size: 30px;
padding-top: -30px;
font-family: Arial, Helvetica, sans-serif;
padding-right: 400px;
}
#btn1{
border: 2px solid black;
border-radius: 20px;
color: rgb(42, 165, 99);
background-color: brown;
width: 80px;
}
.container{
margin: 100px;
text-align: center;
padding-left: 430px;
padding-top: -10px;
align-items: center;
}
.Todoinput{
padding-right: 300px;
display: flex;
}
li{
list-style-type: none;
border: 1px solid yellow;
background-color: turquoise;
display: flex;
width:260px;
height: 30px;
justify-content: space-between;
align-items: center;
}
span{
width: 20px;
color: darkred;
border: 1px solid black;
cursor: pointer;
}
li{
margin: 10px;
}
span:hover{
background-color: violet;
color: wheat;
width: 20px;
}
li:hover{
color:red;
}