forked from alwaysPasindu/Life_Below_Water_Website_UNSDG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththingsToDo.css
68 lines (45 loc) · 889 Bytes
/
thingsToDo.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
img{
width: 3rem;
float: left;
margin-right: 1.5rem;
}
p{
text-align: justify;
}
.todolist{
display: grid;
gap: rem;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 1fr 1fr 1fr ;
grid-row-gap: 5px;
width: 95%;
margin-top: 150px;
}
.list{
margin: .8rem ;
margin-left: 2rem;
padding: 2rem;
color: aliceblue;
box-shadow : 0px 2px 4px rgba(0, 0, 0, .2);
/* margin-top: 44px; */
border-radius: 1rem;
backdrop-filter: blur(30px);
}
.ptext{
font-weight: 500;
text-align: justify;
font-size: 17px;
}
.list:hover{
backdrop-filter: blur(90px);
/* background-color: rgba(62, 62, 62, 62); */
color:aqua;
transform: scale(1.03);
transition: all .1s ease;
}