-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
279 lines (279 loc) · 5.63 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
::selection{
color: #ffff;
background: #F63366;
}
html {
min-height: 100%;
}
body{
width: 100%;
height: 100vh;
overflow: hidden;
padding: 10px;
background: url('./assets/tt.gif');
background-repeat: no-repeat;
background-position: top center;
background-attachment: fixed;
background-color: #c4ead7;
background-size: cover;
}
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: -10px;
}
.wrapper{
background: #fff;
max-width: 400px;
width: 100%;
margin: 30px auto;
padding: 25px;
border-radius: 5px;
color: #000;
border: 2px solid black;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
}
.wrapper header{
font-size: 30px;
font-weight: 600;
}
.wrapper .inputField{
margin: 20px 0;
width: 100%;
display: flex;
height: 45px;
}
.inputField input{
width: 85%;
height: 100%;
outline: none;
border-radius: 3px;
border: 1px solid #ccc;
font-size: 17px;
padding-left: 15px;
transition: all 0.3s ease;
}
.inputField input:focus{
border-color: #F63366;
}
.inputField button{
font-family: "Open Sans", sans-serif;
font-size: 16px;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
color: #000;
cursor: pointer;
border: 2px solid;
padding: 0.25em 0.5em;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.inputField button:hover,
.footer button:hover{
background: #F63366;
}
/* .inputField button.active{
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
} */
.wrapper .todoList{
max-height: 250px;
overflow-y: auto;
}
.todoList li{
position: relative;
list-style: none;
margin-bottom: 8px;
background: #f2f2f2;
border-radius: 3px;
padding: 10px 15px;
cursor: default;
overflow: hidden;
word-wrap: break-word;
}
.todoList li .icon{
position: absolute;
right: -45px;
top: 50%;
transform: translateY(-50%);
background: #e74c3c;
width: 45px;
text-align: center;
color: #fff;
padding: 10px 15px;
border-radius: 0 3px 3px 0;
cursor: pointer;
transition: all 0.2s ease;
}
.todoList li:hover .icon{
right: 0px;
}
.wrapper .footer{
display: flex;
width: 100%;
margin-top: 20px;
align-items: center;
justify-content: space-between;
}
.footer button{
font-family: "Open Sans", sans-serif;
font-size: 16px;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
color: #000;
cursor: pointer;
border: 2px solid;
padding: 0.25em 0.5em;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
/* .footer button.active{
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
} */
.footer_controls button{
font-family: "Open Sans", sans-serif;
font-size: 16px;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
color: #000;
cursor: pointer;
border: 2px solid;
padding: 0.25em 0.5em;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
position: relative;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.footer_controls button:hover,
.footer button:hover{
background: #F63366;
}
/* .footer_controls button.active{
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
} */
.inputField_controls input{
width: 85%;
height: 100%;
outline: none;
border-radius: 3px;
border: 1px solid #ccc;
font-size: 17px;
padding-left: 15px;
transition: all 0.3s ease;
margin-left: auto;
}
.inputField_controls input:focus{
border-color: #F63366;
}
.inputField_controls button{
width: 50px;
height: 100%;
border: none;
color: #fff;
margin-left: 8px;
font-size: 21px;
outline: none;
background: #F63366;
cursor: pointer;
border-radius: 3px;
opacity: 0.6;
pointer-events: none;
transition: all 0.3s ease;
align-self: middle;
}
.inputField_controls button:hover,
.footer button:hover{
background: #F63366;
}
/* .inputField_controls button.active{
box-shadow: 0px 0px 0px 0px;
top: 5px;
left: 5px;
} */
.wrapper_controls .inputField_controls{
margin: 30px 0;
width: 100%;
display: flex;
height: 45px;
text-align: left;
}
.wrapper_controls{
background: #fff;
max-width: 400px;
width: 100%;
margin: 30px auto;
padding: 25px;
border-radius: 5px;
color: #000;
border: 2px solid black;
box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
}
.wrapper_controls header{
font-size: 30px;
font-weight: 600;
}
label {
display: flex;
flex-direction: row;
justify-content: flex;
text-align: justify;
width: 400px;
line-height: 26px;
}
label {
display: flex;
flex-direction: row;
justify-content: flex;
text-align: justify;
width: 400px;
line-height: 26px;
}
.ml1 {
font-weight: 900;
font-size: 3.5em;
}
.ml1 .letter {
display: inline-block;
line-height: 1em;
}
.ml1 .text-wrapper {
position: relative;
display: inline-block;
padding-top: 0.1em;
padding-right: 0.05em;
padding-bottom: 0.15em;
}
.ml1 .line {
opacity: 0;
position: absolute;
left: 0;
height: 4px;
width: 100%;
background-color: #f63366;
transform-origin: 0 0;
}
.ml1 .line1 { top: 0;
}
.ml1 .line2 { bottom: 0; }