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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/* Make thumbnails with equal heights */
@media only screen and (min-width : 500px) {
.row.equal-height {
display: flex;
flex-wrap: wrap;
}
.row.equal-height > [class*='col-'] {
display: flex;
flex-direction: row, column;
}
.row.equal-height.row:after,
.row.equal-height.row:before {
display: flex;
}
.row.equal-height > [class*='col-'] > .thumbnail,
.row.equal-height > [class*='col-'] > .thumbnail > .caption {
display: flex;
flex: .9 .1 auto;
flex-direction: column;
}
.row.equal-height > [class*='col-'] > .thumbnail > .caption > .flex-text {
flex-grow: 1;
}
.row.equal-height > [class*='col-'] > .thumbnail > img {
width: 400px;
height: 100%; /* force image's height */
/* force image fit inside it's "box" */
-webkit-object-fit: cover;
-moz-object-fit: cover;
-ms-object-fit: cover;
-o-object-fit: cover;
object-fit: cover;
}
}
.row.extra-bottom-padding{
margin-bottom: 20px;
}
.topnavicons {
margin-left: 10% !important;
}
.topnavicons li {
margin-left: 0px !important;
min-width: 100px;
text-align: center;
}
.topnavicons .thumbnail {
margin-right: 10px;
border: none;
box-shadow: none;
text-align: center;
font-size: 85%;
font-weight: bold;
line-height: 10px;
height: 100px;
}
.topnavicons .thumbnail img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Table with a scrollbar */
.bodycontainer { max-height: 800px; width: 100%; margin: 0; padding: 0; overflow-y: auto; }
.table-scrollable { margin: 0; padding: 0; }
.label {
color: #E74C3C;
font-size: 100%;
font-weight: bold;
width: 100%;
height: 100%;
text-align: left;
vertical-align: middle;
padding: 6px;
margin: 2px;
overflow-x: auto;
overflow-y: auto;
}
div.body {
max-width: 1080px;
}
table.longtable.align-default{
text-align: left;
}
|