-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (63 loc) · 1.36 KB
/
styles.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
/* overall document */
body{
width: 100%;
min-height:100vh;
background-size: cover;
background: rgb(41,231,236);
background: linear-gradient(90deg, rgba(41,231,236,1) 0%, rgba(28,119,208,1) 45%, rgba(16,88,219,1) 65%, rgba(0,212,255,1) 100%);
}
.whole-document{
align-content: center;
text-align: center;
}
.title{
color: white;
text-shadow: 2px 2px 4px #000000;
background-color: chocolate;
box-shadow:3px 3px rgb(177, 29, 29);
margin: auto;
width: 200px;
border-radius: 25px;
}
/* Both task list divs */
.flex-container{
display: flex;
max-width: 1200px;
height: fit-content;
margin: auto;
margin-top: 30px;
}
/* Tasks List */
input{
margin-top: 20px;
}
.task-list-holder{
flex: 1;
width: 300px;
height: 500px;
background-color: rgb(247, 127, 83);
box-shadow:6px 6px rgb(231, 82, 28);
margin: auto;
border-radius: 25px;
}
.tasks{
padding-top: 10px;
margin: 30px;
list-style-type: none;
}
/* Completed Tasks List */
.completed-task-list-holder{
flex: 1;
width: 300px;
height: 500px;
background-color: rgb(83, 247, 83);
box-shadow:6px 6px rgb(28, 231, 62);
margin: auto;
border-radius: 25px;
}
.completed-tasks{
padding-top: 10px;
margin: 30px;
list-style-type: none;
text-decoration: line-through;
}