-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (51 loc) · 891 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
html, body{
margin: 0;
padding: 0;
min-width: 100%;
width: 100%;
max-width: 100%;
min-height: 100%;
height: 100%;
max-height: 100%;
}
body{
background-position: center;
background-image: url(backgroundimage.jpg);
background-size: cover;
display: block;
}
hr{
border: 1.5px solid rgb(133, 87, 35);;
}
.container{
margin: 0px 0.5em;
}
#parafirst{
font-family: 'Roboto Condensed', sans-serif;
font-size: 1.5em;
}
#parasecond{
font-family: 'Roboto Condensed', sans-serif;
font-size: 1em;
font-style: italic;
}
#iteminput, #additemsbutton{
margin: 25px 0px;
}
.deleteItem{
float: right;
cursor: pointer;
}
.done{
text-decoration: line-through;
color: red;
}
.done:hover{
text-decoration: line-through;
}
#additemsbutton:hover{
color: white;
}
#additemsbutton:focus{
color: white;
}