-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathstyle4.css
81 lines (69 loc) · 1.2 KB
/
style4.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
body{
margin: 0px;
padding: 0px;
background-color: #C4E0E7;
}
.area{
width: 100%;
padding:0px;
margin: 0px;
display: grid;
}
#header{
grid-template-rows: 150px;
grid-template-columns: 1fr;
justify-content: stretch;
border-bottom: solid #393939 thick;
}
.background-image{
width: 100%;
height: 100%;
}
#title{
color: #393939;
position: absolute;
margin: 0px;
padding: 0px;
left: 32%;
top: 2%;
font-size: 100px;
font-family: 'Staatliches', cursive;
}
#body{
grid-template-columns: 30px 1fr 1fr 1fr 30px;
grid-template-rows: 400px;
align-content: center;
align-items: center;
justify-content: center;
grid-column-gap: 30px;
}
.todolist{
background-color: lightgrey;
border-radius: 10%;
display: grid;
grid-template-rows: 50px 1fr 1fr 1fr;
justify-content: center;
border-style: solid;
border-width: 10px;
}
.todolist:hover{
box-shadow: 10px 10px #393939;
}
#notstarted{
grid-column: 2/ span 1;
border-color: #D57070;
}
#inprogress{
grid-column: 3/ span 1;
border-color: #F7BC7F;
}
#complete{
grid-column: 4/ span 1;
border-color: #B2CBB9;
}
.taskTitle{
font-family: 'Raleway', sans-serif;
}
.task{
font-family: 'Raleway', sans-serif;
}