-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.css
More file actions
45 lines (43 loc) · 830 Bytes
/
Copy pathnew.css
File metadata and controls
45 lines (43 loc) · 830 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
h2{
margin-top: 40px;
text-align: center;
}
.card{
display:grid;
grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
padding:20px;
grid gap:40px;
}
.card1,.card2,.card3
{
background-color: gray;
box-sizing:border-box;
height:100%;
width:90%;
margin-right:15px;
border:solid 1px black;
}
.card1 h4{
background-color: rgb(241, 114, 135);
margin-top: 0px;
height:25px;
width:60px;
text-align: center;
float:right;
}
.card2 h4{
background-color: brown;
margin-top: 0px;
height:25px;
width:60px;
text-align: center;
float:right;
}
.card3 h4{
background-color:rgb(167, 110, 4);
margin-top: 0px;
height:25px;
width:60px;
text-align: center;
float:right;
}