-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
86 lines (73 loc) · 1.44 KB
/
index.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
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
height: 100%;
background-image: linear-gradient(to right top, #c56d09 0%, rgb(200, 90, 5) 100%);
}
body {
text-align: center;
}
h1 {
text-align: center;
font-size: 15px;
font-family: Helvetica, sans-serif;
color: #ffffff;
border-radius: 5px;
width: auto;
border: rgb(255, 102, 0) 1px solid;
padding: 5px 10px 5px 10px;
margin-top: 50px;
}
ul {
text-align: left;
margin-top: 20px;
}
li {
list-style: none;
width: 70%;
font-size: medium;
font-family: Helvetica;
padding: 10px 20px;
color: rgb(255, 102, 0);
text-transform: capitalize;
font-weight: 600;
border: 2px solid rgb(255, 102, 0);
border-radius: 5px;
margin-bottom: 10px;
background: floralwhite;
}
li>button {
font-weight: normal;
background: none;
border: none;
float: right;
color: #025f70;
font-weight: 800;
}
/* */
input {
border-radius: 5px;
min-width: 65%;
padding: 15px;
border: none;
}
button {
border: none;
padding: 11px;
font-size: 20px;
font-family: Helvetica;
border-radius: 5px;
color: #ffffff;
background-color: rgb(255, 102, 0);
}
button:hover {
background-color: rgb(224, 132, 10);
color: #ffffff;
}
.done {
background: rgb(255, 102, 0) !important;
color: #ffffff;
text-decoration: line-through;
}
.delete {
display: none;
}