room names

This commit is contained in:
Rob 2019-09-21 02:31:43 +02:00
parent 6682aac455
commit abe4f7d4e5
2 changed files with 14 additions and 3 deletions

View File

@ -11,6 +11,10 @@ body{
border-width: 0.5em; border-width: 0.5em;
} }
.roomname{
color: #c00303ff;
}
.talks { .talks {
padding-bottom: 5px; padding-bottom: 5px;
} }

View File

@ -97,7 +97,14 @@
<p> ${event.abstract} </p> <p> ${event.abstract} </p>
</div> </div>
<div class="card-footer"> <div class="card-footer">
<h2 class="ml-1">${(event.persons !== "\n") ? event.persons : "<br>"}</h2> <div class="row">
<div class="col ml-1">
<h2>${(event.persons !== "\n") ? event.persons : "<br>"}</h2>
</div>
<div class="col text-center roomname">
<h2>${event.room}</h2>
</div>
</div>
<p> <p>
<h2 class="float-left ml-1">${event.start}Uhr</h2> <h2 class="float-left ml-1">${event.start}Uhr</h2>
<h2 class="float-right mr-2">${event.duration}h</h2> <h2 class="float-right mr-2">${event.duration}h</h2>
@ -141,11 +148,11 @@
// change screen after 20Sek and 40Sek // change screen after 20Sek and 40Sek
setTimeout(function () { setTimeout(function () {
setPage(3); setPage(1);
}, 1); }, 1);
setTimeout(function () { setTimeout(function () {
setPage(1); setPage(2);
}, 20000); }, 20000);
setTimeout(function () { setTimeout(function () {