-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (82 loc) · 1.48 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (82 loc) · 1.48 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
85
86
87
88
89
90
91
92
93
94
95
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600&display=swap");
body {
font-family: "Inter Tight", sans-serif;
line-height: 1.6;
}
.header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 50px;
}
.title {
color: #3c87ff;
font-weight: bold;
font-size: 28px;
margin-bottom: 15px;
}
.todos-container {
background-color: rgb(241, 240, 240);
border-radius: 1rem;
padding: 2rem;
margin: 50px;
}
.todos-list {
margin: 40px;
}
.item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
border-radius: 0.5rem;
}
.item:hover {
background-color: white;
}
.task-input {
width: 70%;
display: flex;
gap: 10px;
}
.task-input button {
width: 15%;
background-color: #3c87ff;
border-radius: 5px;
color: white;
border: 1px solid #3c87ff;
cursor: pointer;
}
.task-input button:hover {
opacity: 90%;
}
.task-input input {
height: 100%;
width: 100%;
outline: none;
font-size: 18px;
border-radius: 5px;
padding: 10px;
border: 1px solid #999;
}
.task-input input:focus,
.task-input input.active {
border: 2px solid #3c87ff;
}
.task-input input::placeholder {
color: #bfbfbf;
}
hr {
border: 1px solid #d7dadf;
}
.manage > button {
background-color: transparent;
border: transparent;
cursor: pointer;
padding: 15px;
}
.manage > button:hover {
background-color: rgb(241, 240, 240);
border: transparent;
border-radius: 50%;
}