-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (72 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (72 loc) · 1.36 KB
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
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
margin-top: 50px;
font-family: "Ubuntu";
}
.title {
color: rgb(110, 110, 199);
text-align: center;
margin: 20px;
}
.todo {
margin: auto;
padding: 32px;
border-radius: 16px;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.todo__form {
}
.todo__input {
width: 100%;
line-height: 32px;
margin-bottom: 32px;
padding: 0 16px;
font-size: 18px;
border-radius: 50px;
border: 1px rgb(110, 110, 199) solid;
}
.todo__input:focus {
outline: 1px rgb(110, 110, 199) solid;
border-radius: 50px;
}
.todo__task {
display: flex;
justify-content: space-between;
align-items: center;
margin: 8px 0;
height: 32px;
border-bottom: 1px solid rgb(141, 141, 141);
width: 100%;
}
.todo__task-delete {
text-decoration: none;
color: #bb1c1c;
padding: 6px 0;
font-weight: bolder;
transition: 0.3s ease-in-out;
cursor: pointer;
}
.todo__task-delete:focus {
background-color: #b86868;
transition: 0.3s;
}
.todo__defualt {
text-align: center;
}
.todo__error-message {
display: none;
text-align: center;
background-color: #eb22222f;
color: #bb1c1c;
border-radius: 6px;
margin-bottom: 16px;
padding: 16px;
}