-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 1.3 KB
/
style.css
File metadata and controls
65 lines (56 loc) · 1.3 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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: whitesmoke;
}
h1, h2 {
text-align: center;
}
.input-container {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
#input-todo {
width: 250px;
height: 25px;
font-size: 1.25rem;
}
#add-todo {
height: 40px;
width: 40px;
border-radius: 20%;
border: none;
background-color: #DCD0FF;
font-size: 1.5rem;
cursor: pointer;
}
.todo-container {
width: 80vw;
margin: auto;
display: flex;
flex-direction: column;
gap: 10px;
}
.todo {
background-color: #E0B0FF;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
padding: 0px 10px;
font-size: 1.2rem;
}
.actions > form {
display: inline;
}
.actions > form > button {
font-family: inherit;
background-color: purple;
color: white;
border: none;
padding: 5px;
font-size: 1.2rem;
cursor: pointer;
border-radius: 10px;
}