This file contains hidden or 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
/* Messages */ | |
.message { | |
padding: 1rem; | |
border-radius: 4px; | |
border: 1px solid var(--color-dark-text); | |
background: var(--color-gray-2); | |
color: var(--color-dark-text); | |
} | |
.messages-container { |
This file contains hidden or 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
.form-content { | |
max-width: 64rem; | |
margin: 0 auto; | |
margin-bottom: var(--spacing-gutter-medium); | |
} | |
.form-content label, | |
.form-content .help-text, | |
.errorlist { | |
display: block; |
This file contains hidden or 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
# from inspect import signature | |
from random import randint | |
from faker import Faker | |
def rand_ratio(): | |
return randint(840, 900), randint(473, 573) | |
This file contains hidden or 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
# Django # | |
*.log | |
*.pot | |
*.pyc | |
__pycache__ | |
db.sqlite3 | |
media | |
# Backup files # | |
*.bak |
This file contains hidden or 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
{ | |
"window.zoomLevel": 0, | |
"python.languageServer": "Pylance", // ms-python.vscode-pylance | |
"python.testing.unittestEnabled": false, // ms-python.python | |
"python.testing.pytestEnabled": true, | |
"python.testing.pytestArgs": [], // -x to bail | |
"python.linting.flake8Enabled": true, | |
"python.linting.mypyEnabled": true, | |
"python.linting.pylintArgs": [ | |
"--load-plugins=pylint_django", |