krejvl / DSpace

(Official) The DSpace digital asset management system that powers your Institutional Repository
https://wiki.duraspace.org/display/DSDOC4x/Introduction
Other
1 stars 0 forks source link

BS4 responsive layout #47

Open empt-ak opened 9 years ago

empt-ak commented 9 years ago
empt-ak commented 8 years ago

Acta Carolinae has thumbnail of different dimensions 146x200 while the others have 134x200

empt-ak commented 8 years ago

following code makes website title vertically aligned:

.vertical-wrapper
{
    display: table;
    overflow: hidden;
    height: 150px;
}

.vertical-align
{
    display: table-cell;
    vertical-align: middle;
}
<div class="vertical-wrapper">
    <h1 class="vertical-align">
        <a class="page-header" href="/digilib5">Digitální knihovna Filozofické fakulty Masarykovy univerzity</a>
    </h1>
</div>