Ignore:
Timestamp:
02/06/23 19:28:42 (22 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
0fb69cc
Parents:
a69d48c
Message:

Style updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/film.html

    ra69d48c rb5ce654  
    1212    .main{
    1313        display: flex;
    14         justify-content: flex-start;
     14        justify-content: space-between;
    1515        align-items: flex-start;
    1616        margin-left: 100px;
     17    }
     18    .slika{
     19        margin-right: 100px;
     20    }
     21    img{
     22        width: 300px;
     23        height: 350px;
     24        border-radius: 20px;
    1725    }
    1826</style>
     
    3543                <span th:text="${film.director}"></span>
    3644            </h4>
     45            <h4 style="color: white">
     46                <span th:text="${rating}"></span>
     47                <span>/5</span>
     48            </h4>
    3749        </div>
     50    <div class="slika">
     51        <img th:src="@{${film.getUrl()}}"/>
     52    </div>
    3853
    3954</div>
    4055</div>
    41 </div>
Note: See TracChangeset for help on using the changeset viewer.