-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (95 loc) · 1.59 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(
to right,
rgba(116, 139, 255, 0.5),
rgb(61, 41, 153, 0.5)
);
}
.todo-container,
header {
display: flex;
justify-content: center;
align-items: center;
margin: 30px;
}
header {
margin-top: 150px;
}
h1 {
font-size: 50px;
font-weight: 900;
color: #25273c;
font-family: "Times New Roman", Times, serif;
}
.todo-container {
margin-top: 30px;
}
.todo-input {
padding: 10px;
border-radius: 20px;
border: 0;
color: #fff;
background-color: #25273c;
outline: none;
width: 400px;
height: 60px;
}
.todo-button {
padding: 10px;
border-radius: 20px;
border: 0;
color: #fff;
background-color: #25273c;
margin-left: 3px;
cursor: pointer;
width: 60px;
height: 60px;
}
.todo-list {
user-select: none;
list-style: none;
margin-top: 30px;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.todo {
padding: 10px;
border-radius: 20px;
border: 0;
color: #fff;
background-color: #25273c;
margin-top: 10px;
outline: none;
cursor: pointer;
margin-bottom: 10px;
align-items: center;
display: flex;
justify-content: space-between;
width: 463px;
text-align: center;
height: 60px;
font-family: "Times New Roman", Times, serif;
}
.trash-btn {
height: 60px;
width: 60px;
border-radius: 10px;
border: 0;
color: #fff;
background-color: #25273c;
outline: none;
cursor: pointer;
}
.todo-item {
font-family: Arial, Helvetica, sans-serif;
}
.completed {
text-decoration: line-through;
}