Last change
on this file since 43a1688 was 43a1688, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
I CALLED A PROCEDURE FROM SPRING
|
-
Property mode
set to
100644
|
File size:
761 bytes
|
Rev | Line | |
---|
[43a1688] | 1 | <style>
|
---|
| 2 | .genres{
|
---|
| 3 | width: 100px;
|
---|
| 4 | text-align: center;
|
---|
| 5 | background-color: #ff5019;
|
---|
| 6 | border-radius: 20px;
|
---|
| 7 | color: #111111;
|
---|
| 8 | font-size: 20px;
|
---|
| 9 | font-weight: 200;
|
---|
| 10 | margin: 20px;
|
---|
| 11 | }
|
---|
| 12 | .main{
|
---|
| 13 | display: flex;
|
---|
| 14 | justify-content: flex-start;
|
---|
| 15 | align-items: flex-start;
|
---|
| 16 | margin-left: 100px;
|
---|
| 17 | }
|
---|
| 18 | </style>
|
---|
| 19 | <div xmlns:th="http://www.thymeleaf.org">
|
---|
| 20 | <div class="main">
|
---|
| 21 | <div class="container-1">
|
---|
| 22 | <h1 style="color: white; font-weight: 600" class="name" th:text="${film.getName()}">
|
---|
| 23 | </h1>
|
---|
| 24 | <div th:each="genre : ${genres}" class="genres">
|
---|
| 25 | <span th:text="${genre}"></span>
|
---|
| 26 | </div>
|
---|
[eb5426c] | 27 |
|
---|
[43a1688] | 28 | </div>
|
---|
| 29 |
|
---|
| 30 | </div>
|
---|
| 31 | </div>
|
---|
| 32 | </div> |
---|
Note:
See
TracBrowser
for help on using the repository browser.