mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Vertically align universities list items
This commit is contained in:
parent
66bfbce45f
commit
08a9534f8c
1 changed files with 45 additions and 0 deletions
|
@ -90,6 +90,51 @@
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
universities page
|
||||
*/
|
||||
#universities-container {
|
||||
display: table;
|
||||
padding: @padding-md;
|
||||
width: 100%;
|
||||
.row {
|
||||
display: table-row;
|
||||
div {
|
||||
border-bottom: 1px solid @gray-lightest;
|
||||
display: table-cell;
|
||||
float: none;
|
||||
padding: @padding-md;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
.row:first-child {
|
||||
// parent container contains padding
|
||||
div {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
.row:last-child {
|
||||
// parent container contains padding
|
||||
div {
|
||||
border: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
// Logos
|
||||
.uni-logo {
|
||||
margin: 0 auto;
|
||||
max-height: 55px;
|
||||
min-width: 55px;
|
||||
}
|
||||
.university-claim-btn {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
videos
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue