Another round of splash design

* Add map to splash
* Reverse venue<->conference relation
* Split venue address into fields
* Don't go through venue for lodgings anymore
This commit is contained in:
Henne Vogelsang 2014-11-20 14:57:03 +01:00
parent 30e8ab856c
commit cb227a0afc
55 changed files with 717 additions and 548 deletions

View file

@ -5,11 +5,15 @@ html {
body {
/* Margin bottom by 2 times the footer height */
margin-bottom: 120px;
margin-bottom: 60px;
/* Margin bottom by navbar height */
padding-top: 60px;
}
#content {
padding-bottom: 60px;
}
#footer {
position: absolute;
bottom: 0;
@ -28,4 +32,21 @@ body {
.img-center {
margin: 0 auto;
}
/* centered columns styles */
.row-centered {
text-align:center;
}
.col-centered {
display:inline-block;
float:none;
/* reset the text-align */
text-align:left;
/* inline-block space fix */
margin-right:-4px;
}
.col-top {
vertical-align:top;
}