-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (60 loc) · 1002 Bytes
/
style.css
File metadata and controls
68 lines (60 loc) · 1002 Bytes
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
body {
font-family: 'Open Sans', sans-serif;
background-color: #1c1c1c;
color: #e5e5e5;
margin: 0;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
font-weight: 300;
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
form {
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
}
input {
padding: 0.5rem;
font-size: 1rem;
background-color: #333;
border: none;
color: #fff;
border-radius: 4px;
}
button {
padding: 0.5rem 1rem;
background-color: #e63946;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button.remove {
background-color: #999;
margin-left: 0.5rem;
}
ul {
list-style: none;
padding: 0;
width: 100%;
max-width: 500px;
}
li {
background-color: #2a2a2a;
padding: 0.75rem;
margin-bottom: 0.5rem;
border-radius: 4px;
display: flex;
justify-content: space-between;
align-items: center;
}
.crossed {
text-decoration: line-through;
color: #777;
}