-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: 59d5e2d78365333efa91b43e16501d4f43fc1e7b
- Loading branch information
Ubuntu
committed
Nov 24, 2021
1 parent
a9ac9b7
commit 9b66263
Showing
13 changed files
with
405 additions
and
13 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.9 on 2021-11-24 08:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('movies', '0010_movie_trailer_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='review', | ||
name='draw', | ||
field=models.ImageField(blank=True, upload_to='images/'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section { | ||
display: block; | ||
} | ||
|
||
blockquote:before, blockquote:after, | ||
q:before, q:after { | ||
content: ''; | ||
content: none; | ||
} | ||
body { | ||
background-color: none; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, | ||
'Open Sans', 'Helvetica Neue', sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 50px 0px; | ||
} | ||
|
||
.canvas{ | ||
width: 700px; | ||
height: 700px; | ||
background-color: white; | ||
border-radius: 15px; | ||
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); | ||
} | ||
|
||
.controls { | ||
margin-top: 80px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.controls__btns button { | ||
all: unset; | ||
cursor: pointer; | ||
background-color: white; | ||
padding: 5px 0px; | ||
width: 80px; | ||
text-align: center; | ||
border-radius: 5px; | ||
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); | ||
border: 2px solid rgb(0, 0, 0, 0.2); | ||
color: rgba(0, 0, 0, 0.8); | ||
text-transform: uppercase; | ||
font-weight: 800; | ||
font-size: 12px; | ||
} | ||
|
||
.controls__btns button:active{ | ||
transform: scale(0.98); | ||
} | ||
|
||
.controls .controls__btns { | ||
margin-bottom: 30px; | ||
} | ||
|
||
.controls .controls__colors { | ||
display: flex; | ||
} | ||
|
||
.controls__colors .controls__color { | ||
width: 50px; | ||
height: 50px; | ||
border-radius: 25px; | ||
cursor: pointer; | ||
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); | ||
} | ||
|
||
.controls .controls__range { | ||
margin-bottom: 30px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.