-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
147 lines (127 loc) · 2.62 KB
/
index.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body{
display: flex;
align-items: center;
justify-content: center;
}
.main_area{
margin: 100px auto;
padding: 20px;
width: 80%;
min-height: 300px;
background-color: wheat;
border-radius: 10px;
box-shadow: 2px 2px rgb(85, 85, 2);
}
h1{
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.add-div input{
width: 70%;
height: 40px;
border-radius: 8px;
padding: 10px;
font-size: 1.5em;
transition: width 1s ease;
}
.add-div input:hover{
background-color: grey;
/* color: white; */
cursor: pointer;
width: 80%;
}
.add-div input:focus{
background-color: black;
color: white;
width: 80%;
background-color: black;
}
.add-div .add-button{
width: 10%;
height: 45px;
margin-left: 30px;
margin-right: 0;
border-radius: 8px;
border: 2px solid black;
background-color: aqua;
font-size: 2em;
color: purple;
box-shadow: 2px 2px rgba(0, 0, 50, 0.822);
transition: transform 0.5s ease;
}
.add-div .add-button:hover{
background-color: blue;
color: aliceblue;
transform: scaleX(1.2) scaleY(1.2);
}
.add-div .add-button:active{
background-color: black;
color: aliceblue;
}
hr{
height: 2px;
background-color: black;
border-color: black;
border-radius: 2px;
/* margin-bottom: 20px; */
}
.list-div{
margin-top: 20px;
margin-left: 0;
}
ul{
list-style-type: none;
/* margin-left: 0; */
padding-left: 0;
}
.task-item{
margin-top: 20px;
margin-bottom: 30px;
padding-bottom: 5px;
box-shadow: 2px 2px rgb(66, 66, 1);
background-color: wheat;
border-radius: 5px;
transition:transform 0.5s ease,opacity 2s ease, text-decoration 1s ease ;
}
.task-item:hover{
/* width: 110%; */
/* height: 50px; */
transform: scaleX(1.1) scaleY(1.3);
/* transform: ; */
background-color: rgb(196, 135, 21);
margin-left: 0;
/* align: center; */
font-size: 1.5em;
}
.item{
font-size: 1.5em;
display: flex;
justify-content: space-between;
padding-right: 10px;
padding-left: 10px;
height: 40px;
}
.item button{
height: 100%;
background-color: rebeccapurple;
color: aliceblue;
width: 10%;
border-radius: 5px;
margin-top: 3px;
transition: transform 0.5s ease,margin-right 0.5s ease;
}
.item button:hover{
background-color: red;
/* transform: scaleX(1.2); */
transform: scaleX(1.2) scaleY(1.2);
margin-right: 10px;
}
.item button:active{
background-color: black;
}
.removing{
text-decoration:line-through;
opacity:0;
}