-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (47 loc) · 1019 Bytes
/
Copy pathstyle.css
File metadata and controls
56 lines (47 loc) · 1019 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) ,url("https://post.greatist.com/wp-content/uploads/sites/2/2020/04/151115-GRT-to-do-lists_1200x728-Facebook-1200x628.jpg");
height: 100vh;
background-size: cover;
background-position: cover cover;
position: relative;
}
.todo {
margin-left: 3%;
}
.logout {
margin-left: 80%;
}
.popup {
visibility: hidden;
z-index: 100;
text-align: center;
width: 50%;
position: fixed;
left: 25%;
top: 30%;
color: black;
padding: 25px 0;
box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.6);
border-radius: 5px;
background-color: whitesmoke;
}
.popup h3 {
margin-bottom: 30px;
}
#list {
display: flex;
justify-content: center;
align-items: center;
}
.todolist {
visibility: hidden;
padding: 5% 10%;
background-color: black;
width: max-content;
color:yellow;
}