File size: 834 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 57 |
.bg {
border: 1px solid #ccc;
border-radius: 5px;
margin-top: 10px;
background-color: inherit;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
.bgt {
border: 1px solid #ccc;
border-radius: 5px;
height: 100%;
padding: 20px 40px 20px 40px;
width: 100%;
}
.container {
flex: auto;
flex-wrap: wrap;
flex-flow: column;
align-items: center;
margin-top: 20px;
}
.h {
text-shadow: black;
justify-content: center;
align-items: center;
font-size: large;
margin-top: 10px;
}
.sponsors {
display: flex;
flex-wrap: wrap;
flex-direction: row;
gap: 2px;
justify-content: space-around;
align-items: center;
margin-bottom: 10px;
}
.text {
flex: auto;
text-shadow: 2px;
}
.card {
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
height: 100%;
}
|