-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.less
53 lines (48 loc) · 935 Bytes
/
index.less
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
* {
font-family: -apple-system, system-ui;
margin: 0.4rem;
}
body {
font-family: -apple-system, system-ui;
h1 {
font-size: 2rem;
}
div#todo-tasks-container {
display: flex;
flex-direction: column;
div.task-container {
&.task-removed {
opacity: 0;
transition: opacity 200ms;
}
h2.task-description {
font-size: 1rem;
font-weight: normal;
}
input[type=checkbox] {
transform: scale(1.5);
}
display: flex;
flex-direction: row;
}
}
div#todo-add-task-container {
display: flex;
}
input#input-task,
button {
border: 0px none #FFF;
border-radius: 1rem;
background-color: #ececec;
padding: 0.5rem;
font-size: 1rem;
transition: background-color 0.2s;
&:hover {
background-color: #dddddd;
}
&:focus {
outline: none;
background-color: #d0d0d0;
}
}
}