-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (79 loc) · 1.69 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
html {
background-image: url(https://2.bp.blogspot.com/-vM0jXCySZ1g/XOlXujbjcvI/AAAAAAAADIU/jj6yvAKidsMSQhyQDv710BD44CHjkK0zgCKgBGAs/w0/hatsune-miku-anime-girl-uhdpaper.com-4K-190.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
text-align: center;
}
.grid {
border-color: black;
color: aliceblue;
font-size: larger;
background-color: slateblue;
border-style: double ;
width: fit-content;
padding: 1%;
margin: auto;
display: flex;
border-color: aqua;
border-style: inset;
border-width: 3px;
border-radius: 25px 25px 25px 25px;
}
#todoList {
flex-direction: column;
border-color: black;
color: aliceblue;
font-size: larger;
background-color: slateblue;
border-style: double ;
width: fit-content;
padding: 1%;
margin: auto;
display: flex;
justify-content: space-between;
border-color: aqua;
border-style: inset;
border-width: 3px;
border-radius: 25px 25px 25px 25px;
}
form#myForms {
align-items: center;
justify-content: center;
}
input#addButton {
float: left;
border-style: inset;
border-color: aqua;
border-width: 3px;
color: black;
background-color: white;
border-radius: 25px 25px 25px 25px;
}
input#textBox {
float: right;
border-color: aqua;
border-style: inset;
border-width: 3px;
border-radius: 25px 25px 25px 25px;
}
input {
background-color: white;
float:left;
margin-right: 10px;
}
p {
color: black;
float: right;
margin-top: -2px;
}
p#listTitle {
margin-bottom: -5px;
}
div {
align-items: center;
margin-top: 15px;
}