-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (137 loc) · 2.78 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
:root{
--padding: 15px;
--margin:20px;
--border-radius:25px;
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
list-style: none;
transition: all 200ms ease-out;
}
body{
background-color: blueviolet;
}
.main-container{
position: absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
min-width:680px;
height: auto;
/* border: 2px solid black; */
/* padding: var(--padding); */
}
.Add-Task-Container{
/* margin: 0 0 100px 0; */
background-color: aqua;
width: 500px;
height:50px;
padding: var(--padding);
margin-bottom:var(--margin);
flex-direction:row !important;
justify-content: space-evenly !important;
}
.Add-Task{
width: 370px;
height: 30px;
outline: none;
font-size: 1.1rem;
padding: 0 0 0 8px;
}
.Add-Task-btn{
width: 80px;
height: 30px;
font-size: 1.1rem;
}
.Main-Task-Container{
width: 550px;
height:auto;
/* border: .5px solid black; */
/* gap: 10px; */
}
.Header-Tasks-Container{
/* border: 2px solid red; */
width:calc(inherit-30px);
flex-direction:row !important;
justify-content: space-evenly !important;
margin:6px;
padding: 5px;
position: relative;
border-radius: var(--border-radius);
gap: 15px;
}
.Task-Section{
border: 2px solid red;
width: inherit;
min-height: 45px;
justify-content:flex-start !important;
/* padding:0 var(--padding) var(--padding) var(--padding) ; */
}
.Small-Anime{
display: block;
background-color: beige;
border-radius: var(--border-radius);
width: 220px;
min-height: 6px;
position: absolute;
bottom:20%;
left: 4%;
/* transform:translateX(264px); */
}
.Tasks{
background-color: chartreuse;
border: 1px solid black;
min-height:45px;
width:100%;
flex-direction: row !important;
justify-content: space-between !important;
padding:0 var(--padding);
/* display: none !important; */
}
.falls{
transform: translateY(8.5rem) rotateZ(30deg);
opacity: 0;
}
.falls-left{
transform: translateY(8.5rem) rotateZ(-30deg);
opacity: 0;
}
.Task-Text{
font-weight: 500;
font-size: 1.2rem;
padding:5px 20px;
line-height: 25px;
}
.Empty-Text{
color: white;
font-size: 1.3rem;
padding: 10px 0;
/* display: none !important; */
}
.Tasks button{
min-width: 55px;
height: 25px;
cursor: pointer;
}
/* ====== DRY ====== */
.flex-center{
flex-direction: column;
display: flex;
align-items: center;
justify-content: center;
}
.header{
border: 1px solid red;
background-color: cadetblue;
/* border-radius: var(--border-radius); */
padding:0 0 8px 0;
font-size: 1.6rem;
height:45px;
width:250px;
cursor: pointer;
}
.clsg{
display: none;
}