-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (64 loc) · 1.17 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
html{
background-color: #E4E9FD ;
background-image: -webkit-linear-gradient(65deg, #a683e3 50%,#E4E9FD 50%);
min-height: 1000px;
}
.heading{
text-align: center;
padding: 2%;
}
.item{
/* text-align: center; */
background-color: rgb(246, 242, 247);
width: 40vw;
padding: 4px;
margin: 0 auto;
}
input[type="checkbox"]{
display: inline;
margin: 0 2% 0 0%;
/* margin: 60px 0 0 -150px; */
}
input[type="checkbox"]:checked+p{
text-decoration: line-through;
}
p{
margin-left: 20px;
font-size: 1.2rem;
padding: 0px;
display: inline;
}
input[type="text"]{
margin: 0 2% 0 30%;
height: 30px;
}
.list{
margin: 0 2% 0 30%;
text-decoration: none;
list-style: none;
}
button{
border: 2px solid blue;
border-radius: 100px;
height: 40px;
width: 40px;
background-color: blue;
color: white;
font-size: 2rem;
margin-top: 2px;
}
@media screen and (max-width:500px){
.item{
width: 100%;
}
h1{
line-height: 20px;
}
.list{
margin: 0 2% 0 10%;
}
input[type="text"]{
margin: 4% 2% 0 10%;
width: 50%;
}
}