1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00
galene/static/mainpage.css
Alexandre Iooss e330765563 Use column flexbox on mainpage
This removes the need to hardcode the footer height in a CSS calc().
2021-04-22 18:09:36 +02:00

46 lines
550 B
CSS

body {
/* Used to move footer at bottom of the page */
display: flex;
flex-direction: column;
}
.groups {
}
.nogroups {
display: none;
}
.navbar-brand {
margin-bottom: 5rem;
}
.home {
margin-bottom: auto;
padding: 1.875rem;
}
#public-groups-table tr a{
margin-left: 0.9375rem;
font-weight: 700;
}
a {
text-decoration: none;
color: #0058e4;
}
a:hover {
color: #0a429c;
}
label {
display: block;
}
@media only screen and (max-device-width: 768px) {
.home {
padding: 0.625rem;
}
}