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
|
body {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.title {
display: flex;
justify-content: center;
}
.selection {
display: flex;
justify-content: center;
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.card {
margin: 10px;
display: flex;
justify-content: center;
flex-direction: column;
}
.card-title {
align-self: center;
}
.card-body {
width: 400px;
height: 400px;
padding: 0 0 20px 20px;
vertical-align: top;
}
iframe {
width: 100%;
height: 100%;
}
|