-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (61 loc) · 993 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
66
html {
background: url(images/bgimg.jpg) no-repeat center center
fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: 0 auto;
}
h2,
p {
color: #202012;
}
.container {
padding-left: 40px;
}
.ulcontainer {
margin: auto;
width: 30%;
}
ul {
text-align: right;
list-style-position: inside;
}
li {
color: #434324;
text-align: left;
}
button {
background: #7eddd9;
color: #4d4d06;
padding: 5px 10px;
border-radius: 5px;
}
input {
border-radius: 5px;
margin-right: 20px;
padding: 5px;
text-align: center;
}
input:focus {
outline: 2px solid #7eddd9;
}
.title {
font-size: 2rem;
}
.testingIt {
text-decoration-line: line-through;
}
.deleteButton {
float: right;
margin-right: 10px;
display: block;
}
.done {
text-decoration: line-through #ff3c3c 2px;
}