-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (98 loc) · 1.75 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #FFE53B;
background: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%) center center/cover no-repeat;
min-height: 100vh;
font-family: 'Poppins', sans-serif;
}
header,form{
display: flex;
justify-content: center;
align-items: center;
min-height: 15vh;
}
header{
margin-top: 40px;
font-size: 2rem;
color: black;
font-weight: 600;
}
form input,
form button{
padding: 14px 18px;
font-size: 1.3rem;
outline: none;
border: none;
background: black;
color: white;
}
form button{
background-color: purple;
cursor: pointer;
transition: all .4s ease;
}
form button:hover{
background-color: white;
color: black;
}
.todo-container{
display: flex;
justify-content: center;
align-items: center;
}
.todo-list{
list-style: none;
min-width: 25%;
}
.todo{
display: flex;
background: white;
color: black;
font-size: 1.3rem;
font-weight: 600;
margin: 16px 0;
height: 40px;
align-items: center;
justify-content: space-between;
transition: all .5s ease;
}
.todo-item{
flex: 1;
padding: 8px;
}
.checked-btn,
.removed-btn{
padding: .7rem;
font-size: 1rem;
height: 100%;
border: none;
cursor: pointer;
}
.checked-btn{
background: rgb(1, 194, 1);
}
.checked-btn:hover{
background: rgb(85, 231, 18);
}
.removed-btn{
background: rgb(156, 15, 15);
}
.removed-btn:hover{
background: rgb(250, 11, 11);
}
.fa-trash,.fa-check{
pointer-events: none;
}
.lineIt{
text-decoration: line-through;
opacity: .4;
}
.jharyo{
transform: translateY(9rem) rotateZ(20deg);
background-color: blue;
opacity: 0;
}