File size: 898 Bytes
e7ef6c8 |
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 |
.container {
justify-content: start;
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
padding-top: 20px;
}
.sponsor_card {
width: 180px;
height: 100px;
border-radius: 8px;
}
.sponsor_cardh {
width: 180px;
height: 100px;
background-color: rgba(19, 17, 41, 0.692);
border-radius: 8px;
border-width: 2px;
overflow: hidden;
border-color: black;
}
.sponsor_img {
display: flex;
width: 180px;
height: 75px;
justify-content: center;
align-items: center;
overflow-x: hidden;
background-color: rgb(105, 51, 211);
}
.simg {
height: 100%;
}
.sponsor_cardh:hover {
margin: 8px;
}
.sponsor_links {
background-color: rgba(6, 6, 83, 0.562);
color: rgb(245, 245, 250);
font-weight: 400;
opacity: 40%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
box-shadow: 2px;
}
|