-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex12.css
More file actions
82 lines (74 loc) · 1.4 KB
/
index12.css
File metadata and controls
82 lines (74 loc) · 1.4 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
body{
background-color: darkgoldenrod;
}
.to-do-list{
font-family:Georgia, 'Times New Roman', Times, serif ;
text-align: center;
margin-top: 80px;
}
h1{
font-size: 4rem;
}
button{
font-size: 1.5rem;
font-weight: bold;
padding: 10px 20px;
color: blue;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.5s ease;
}
.add-button{
background-color: orange;
}
.add-button:hover{
background-color: rgb(142, 105, 37);
}
.delete-button{
background-color: crimson;
}
.delete-button:hover{
background-color: rgb(152, 0, 30);
}
.move-up-button{
background-color: greenyellow;
}
.move-up-button:hover{
background-color: rgb(123, 192, 20);
}
.move-down-button{
background-color:aqua;
}
.move-down-button:hover{
background-color:aquamarine;
}
input[type="text"]{
font-size: 1.6rem;
padding: 10px;
border: 2px solid cadetblue;
border-radius: 7px;
color: black;
}
ol{
padding: 0;
}
li{
font-size: 2.5rem;
font-weight: bold;
font-style: oblique;
padding: 15px;
background-color: wheat;
border: 3px solid rgb(83, 81, 81);
border-radius: 10px;
display: flex;
align-items: center;
}
.text{
flex:1;
}
ol button{
padding: 8px 12px;
font-size: 1.4rem;
margin-left: 10px;
}