-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (75 loc) · 1.4 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
85
86
87
88
89
90
91
html, body {
min-height: 100%;
}
body {
background-color: rgb(31, 30, 30);
color: white;
background-image: url('https://drizzleandhurricanebooks.com/wp-content/uploads/2019/06/list.gif');
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-left: 25%;
margin-right: 25%;
margin-top: 3rem;
padding: 2rem 0;
border: solid 1px rgb(81, 80, 80);
border-radius: 8px;
background-color: rgb(30, 29, 29);
}
h1, p {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
}
#blockAction {
display: flex;
justify-content: center;
align-items: center;
}
.list {
display: flex;
justify-content: center;
align-items: center;
font-size: larger;
}
.hoverBtn {
transition: background 1s;
}
/* li {
transition: all 0.5s;
cursor: pointer;
}
li:hover {
-webkit-transform: scale(1.5);
transform: scale(1.5);
} */
.hoverBtn:hover {
color: white;
background-color: rgb(47, 29, 150);
}
.todo-li {
list-style: none;
}
.marcado {
background-color: rgb(128, 128, 128);
}
.completed {
text-decoration: line-through solid rgb(0, 0, 0);
}
.footer {
position: absolute;
bottom: 0;
background-color: rgb(97, 97, 192);
color: #FFF;
width: 100%;
height: 50px;
text-align: center;
text-decoration: none;
}
a {
color: white;
}