From b116bc18b9b817ba5792c707cd5dcc862e0a44c4 Mon Sep 17 00:00:00 2001 From: andrei Date: Sat, 20 Apr 2024 21:52:46 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BC=D0=B8=D0=B3=D1=80=D0=B0=D1=86=D0=B8=D1=8E=20=D0=B8=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=20=D1=81=D1=82?= =?UTF-8?q?=D0=B8=D0=BB=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CineSync/static/css/style.css | 12 ++++++------ CineSync/timetable/models.py | 7 ------- 2 files changed, 6 insertions(+), 13 deletions(-) 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