-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtargets.css
74 lines (46 loc) · 888 Bytes
/
targets.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.img1{
float: left;
margin-right: 5px;
padding: 4px 4px;
height: 160px;
border: 1px solid whitesmoke;
}
.T1{
border-radius: 1rem;
backdrop-filter: blur(30px);
}
h2{
text-align:left;
align-items: flex-start;
}
.p1{
font-weight: 500;
text-align: justify;
font-size: 17px;
}
.Container{
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
grid-row-gap: 5px;
width: 95%;
margin-top: 150px;
}
.T1{
margin-left: 2rem;
padding: 1rem;
color: aliceblue;
box-shadow : 0px 2px 4px rgba(0, 0, 0, .2);
}
.T1:hover{
backdrop-filter: blur(90px);
color:aqua;
transform: scale(1.03);
transition: all .1s ease;
}