Last change
on this file since a69d48c was a69d48c, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
changes in some htmls
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
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>
|
---|
[a69d48c] | 27 | <h4 style="color: white;"> Возрасна категорија:
|
---|
| 28 | <span th:text="${film.age_category}"></span>
|
---|
| 29 | </h4>
|
---|
| 30 | <h4 style="color: white"> Траење на филмот:
|
---|
| 31 | <span th:text="${film.duration}"></span>
|
---|
| 32 | минути
|
---|
| 33 | </h4>
|
---|
| 34 | <h4 style="color: white"> Режисер:
|
---|
| 35 | <span th:text="${film.director}"></span>
|
---|
| 36 | </h4>
|
---|
[43a1688] | 37 | </div>
|
---|
| 38 |
|
---|
| 39 | </div>
|
---|
| 40 | </div>
|
---|
| 41 | </div> |
---|
Note:
See
TracBrowser
for help on using the repository browser.