-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
65 lines (56 loc) · 971 Bytes
/
style.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
*{
box-sizing: border-box;
font-family: sans-serif;
}
body{
background-color: lightcoral;
}
h1{
margin: 0px auto 25px;
text-align: center;
}
.app{
max-width: 333px;
margin: 10px auto 0px;
background-color: white;
border: 5px solid #cc4646;
border-radius: 50px 10px;
padding: 30px;
}
.btn-link{
border: 0px;
background-color: transparent;
color: blue;
text-decoration: underline;
padding: 0px;
margin: 0px;
margin-left: 10px;
font-size: 1rem;
float: right;
}
ul.todo{
list-style: none;
padding: 0px;
}
ul.todo li{
padding: 10px 0;
border-bottom: 1px solid #ccc;
overflow: hidden;
}
ul.todo li:last-child{
border-bottom: 0px;
}
form.add input[type="text"]{
font-size: 1em;
border-radius: 5px;
border: 1px solid #CCC;
padding: 5px;
}
form.add input[type="submit"]{
font-size: 1em;
border-radius: 5px;
padding: 5px 7px;
border: 1px solid lightcoral;
background-color: #cc4646;
color: #ffffff;
}