Changeset b5ce654 for src/main/resources/templates/film.html
- Timestamp:
- 02/06/23 19:28:42 (22 months ago)
- Branches:
- master
- Children:
- 0fb69cc
- Parents:
- a69d48c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/film.html
ra69d48c rb5ce654 12 12 .main{ 13 13 display: flex; 14 justify-content: flex-start;14 justify-content: space-between; 15 15 align-items: flex-start; 16 16 margin-left: 100px; 17 } 18 .slika{ 19 margin-right: 100px; 20 } 21 img{ 22 width: 300px; 23 height: 350px; 24 border-radius: 20px; 17 25 } 18 26 </style> … … 35 43 <span th:text="${film.director}"></span> 36 44 </h4> 45 <h4 style="color: white"> 46 <span th:text="${rating}"></span> 47 <span>/5</span> 48 </h4> 37 49 </div> 50 <div class="slika"> 51 <img th:src="@{${film.getUrl()}}"/> 52 </div> 38 53 39 54 </div> 40 55 </div> 41 </div>
Note:
See TracChangeset
for help on using the changeset viewer.