-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (80 loc) · 1.54 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
body{
background-color:#aa896c;
font-family: 'Sono', sans-serif;
color: #3b2406;
justify-content: center;
margin:4px;
margin-bottom: 12px;
padding:0px;
}
h1{
padding: auto;
font-family: 'Nerko One', cursive;
font-size:4vh;
}
header{
margin: auto;
padding: auto;
display:flex;
align-items: center;
justify-content:center;
}
main{
border: 2px solid #ebc99e;
border-radius: 4px;
background-color: #a78162;
display: flex;
flex-direction: column;
margin:auto;
max-width: 400px;
min-height: 70vh;
align-items: center;
}
.newTask{
margin: 8px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.tasks{
margin: 8px;
display: flex;
flex-direction:column;
justify-content: space-evenly;
align-items: center;
}
.pStyle{
color: #ebc99e;
font-family: 'Sono', sans-serif;
margin: auto;
margin-top: 8px;
font-size: 2.5vh;
cursor: pointer;
}
img{
margin-left: 20px;
margin-right: 20px;
}
.addToDo{
border-color: #ebc99e;
background-color:#aa896c;
cursor:pointer;
font-family: 'Sono', sans-serif;
}
.TextToDo{
background-color: #e7e0d5;
}
footer{
background-color:#a78162;
position:fixed;
margin: 0px;
padding: 0px;
width: 102vw;
align-items: center;
display: flex;
flex-direction: column-reverse;
left: -1px;
bottom: 0px;
font-size:8px;
}