Compare commits
No commits in common. "91762fe286cee6265e4fa4db1e445aa35ad15aac" and "fcccd6f72febcb7e26ca96f81a8c4bd5ad0b82be" have entirely different histories.
91762fe286
...
fcccd6f72f
2 changed files with 7 additions and 9 deletions
|
@ -123,20 +123,12 @@ TIME_ZONE = 'America/New_York'
|
||||||
LANGUAGE_CODE = 'en-us'
|
LANGUAGE_CODE = 'en-us'
|
||||||
USE_TZ = False
|
USE_TZ = False
|
||||||
|
|
||||||
STORAGES = {
|
|
||||||
'default': {
|
|
||||||
'BACKEND': 'django.core.files.storage.FileSystemStorage',
|
|
||||||
},
|
|
||||||
'staticfiles': {
|
|
||||||
'BACKEND': 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC_URL = '/static/'
|
STATIC_URL = '/static/'
|
||||||
STATIC_ROOT = BASE_DIR.parent / 'collected_static'
|
STATIC_ROOT = BASE_DIR.parent / 'collected_static'
|
||||||
STATICFILES_DIRS = [
|
STATICFILES_DIRS = [
|
||||||
BASE_DIR / 'static',
|
BASE_DIR / 'static',
|
||||||
]
|
]
|
||||||
|
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
|
||||||
|
|
||||||
MEDIA_ROOT = BASE_DIR.parent / 'media'
|
MEDIA_ROOT = BASE_DIR.parent / 'media'
|
||||||
MEDIA_URL = '/media/'
|
MEDIA_URL = '/media/'
|
||||||
|
|
|
@ -76,6 +76,12 @@ form[action$="#fixme"]:before {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input:focus {
|
||||||
|
z-index: 3;
|
||||||
|
border-color: #86b7fe;
|
||||||
|
box-shadow: 0 0 0 .25rem rgb(236, 99, 67, .5);
|
||||||
|
}
|
||||||
|
|
||||||
video {
|
video {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue