-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
94 lines (83 loc) · 1.42 KB
/
styles.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
body {
width: 800px;
height: 100%;
margin: 0 auto;
background-color: #1c4147;
}
h1 {
text-align: center;
color: #eaea6b;
font-family: syne;
font-weight: bolder;
font-size: 50px;
}
form {
width: 400px;
margin: 0 auto;
}
.todo_text{
width: 100%;
}
.new_todo {
color: #ffffff;
text-align: center;
width: 600px;
margin: 0 auto;
height: auto;
background-color: #478888;
margin-top: 30px;
padding-bottom: 10px;
}
button {
margin-right: 50px;
margin-left: 47px;
margin-top: 10px;
}
.del_btn {
color: white;
background-color: #346067;
margin-right: 15px;
margin-left: 15px;
margin-top: 10px;
position: relative;
left: 145px;
}
.edit_btn {
color: white;
background-color: #346067;
margin-right: 15px;
margin-left: 15px;
margin-top: 10px;
position: relative;
left: 130px;
}
.edit_input {
position: absolute;
left: 1043px;
width: 300px;
height: 36px;
}
.checkbox {
position: relative;
left: -440px;
margin-top: 14px;
}
#done {
width: 570px;
margin: 0 auto;
background-color: white;
opacity: 40%;
position: relative;
top: 50px;
padding-left: 30px;
padding-top: 20px;
}
.done i {
display: block;
padding-bottom: 15px;
margin-left: 10px;
text-align: left;
font-size: 20px;
color: #053f48;
text-decoration: line-through;
}