diff --git a/CineSync/static/css/style.css b/CineSync/static/css/style.css index 2d4d91d..41bc62e 100644 --- a/CineSync/static/css/style.css +++ b/CineSync/static/css/style.css @@ -64,7 +64,7 @@ .film_card_column::-webkit-scrollbar-thumb { background-color: #0d1d3a; border-radius: 5vw; - border: 1px solid #ffffff; + border: 1px solid #eaeaea; } .film_card_title_row { height: 20%; @@ -94,11 +94,11 @@ background-color: rgb(255, 64, 96); color: #eaeaea; font-weight: bold; - padding: 10px; - padding-top: 15px; - padding-bottom: 15px; - margin: 5px; - border-radius: 5px; + padding: 1vw; + padding-top: 1vw; + padding-bottom: 1vw; + margin: 0.3vw; + border-radius: 0.5vw; text-decoration: none; display: flex; align-items: center; diff --git a/CineSync/timetable/models.py b/CineSync/timetable/models.py index d9d4253..9744ada 100644 --- a/CineSync/timetable/models.py +++ b/CineSync/timetable/models.py @@ -39,13 +39,6 @@ class Auditorium(Model): verbose_name='Номер кинозала', ) - # row_count = IntegerField( - # verbose_name='Количество рядов кресел в зале', - # validators=[ - # MinValueValidator(1), - # ], - # ) - def __str__(self): return self.number