Last change
on this file since 5867520 was 5867520, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
Projections
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[5867520] | 1 | <style>
|
---|
| 2 | .card-horizontal {
|
---|
| 3 | display: flex;
|
---|
| 4 | flex: 1 1 auto;
|
---|
| 5 | }
|
---|
| 6 | .card {
|
---|
| 7 | transition: all .2s ease-in-out;
|
---|
| 8 | }
|
---|
| 9 | .card:hover {
|
---|
| 10 | transform: scale(1.05);
|
---|
| 11 | }
|
---|
| 12 | </style>
|
---|
| 13 | <h1 style="color: white" th:text="${film.name}"></h1>
|
---|
| 14 | <div style="border-radius:30px" >
|
---|
| 15 | <div class="row">
|
---|
| 16 | <div class="col-12 mt-3" style="padding-left:100px;height:75%;">
|
---|
| 17 | <div class="card" style=" border-radius: 30px;width:92%;align-self:center">
|
---|
| 18 | <div class="card-horizontal" th:each="projection : ${projections}">
|
---|
| 19 | <div class="card-body">
|
---|
| 20 |
|
---|
| 21 | <h4 class="card-title" >
|
---|
| 22 | <div>
|
---|
| 23 | <span>Почеток на проекција: </span>
|
---|
| 24 | <span th:text="${projection.date_time_start}"></span></div>
|
---|
| 25 | <div>
|
---|
| 26 | <span>Крај на проекција: </span>
|
---|
| 27 | <span th:text="${projection.date_time_end}"></span></div>
|
---|
| 28 | </h4>
|
---|
| 29 | <p class="card-text" th:text="${projection.type_of_technology}"></p>
|
---|
| 30 | </div>
|
---|
| 31 | </div>
|
---|
| 32 | <div class="card-footer" style="border-bottom-right-radius:30px;border-bottom-left-radius:30px">
|
---|
| 33 | <small>
|
---|
| 34 |
|
---|
| 35 | </small>
|
---|
| 36 | </div>
|
---|
| 37 | </div>
|
---|
| 38 | </div>
|
---|
| 39 | </div>
|
---|
| 40 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.