-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (53 loc) · 1.26 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
body
{
background-image: linear-gradient(90deg,orange,yellow);
font-family: "Poppins",sans-serif ;
text-align: center;
}
header{font-size: 2rem; margin-bottom: 3rem;}
input,button
{
height: 2rem;
}
input{width: 34.3%; border: none; font-size: 1.5rem;padding: 0.5rem;}
button{
width: 2.5rem;height: 1.5rem; background: white;color: orange; cursor: pointer; border: none;
}
button:hover{background: orange; color: white;}
.btn{height: 3rem;width: 3rem; position: relative; bottom: 4px;}
p{font-size: 1.25rem;}
.list{
list-style: none;
}
.todo
{
margin: 0.5 rem;
background: white;
color: black;
font-size: 1.5rem;
width: 40%;
position: relative;
left: 27.7%
}
.todo{display: flex; margin: 1rem;}
.check-btn,.del-btn{ height: auto;}
.check-btn{background-color: greenyellow; color: white;}
.del-btn{background-color: rgb(239, 13, 88); color: white;}
.todo li {
flex: 1;
}
.todo-item{margin: 0.5rem;}
.fa-check,.fa-trash{pointer-events: none;}
.completed{
text-decoration: line-through;
opacity: 0.35;
}
@media (max-width: 1440px)
{
.todo{
width: 75%;
position: relative;
left: auto;
font-size: 1rem;
}
}