-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
91 lines (72 loc) · 1.27 KB
/
App.css
File metadata and controls
91 lines (72 loc) · 1.27 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
body{
background-color: rgb(78, 71, 71);
}
.todoApp{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;
margin-top: 100px;
margin-left: 200px;
}
h1{
font-size: 48px;
}
button{
font-size: 16px;
font-weight: bold;
padding: 10px 20px;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.5s ease;
}
.add-button{
background-color: green;
margin-left: 20px;
}
.add-button:hover{
background-color: rgb(2, 85, 2);
}
.delete-button{
background-color: red;
margin-left: 20px;
}
.delete-button:hover{
background-color: rgb(190, 2, 2);
}
.move-button{
background-color: blue;
margin-left: 2px;
}
.move-button:hover{
background-color: rgb(3, 3, 211);
}
.down-button{
background-color: purple;
margin-left: 2px;
}
.down-button:hover{
background-color: rgb(99, 2, 99);
}
input[type="text"]{
margin-top: 20px;
font-size: 18px;
padding: 10px;
border: 2px solid hsla(0, 0%, 47%, 0.5);
border-radius: 5px;
color: hsla(0, 0%, 0%, 0.5);
}
ol{
padding: 0;
}
li{
font-size: 16px;
font-weight: bold;
padding: 15px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.text{
flex: 1;
}