diff --git a/brutaldon/forms.py b/brutaldon/forms.py index bb9e8af..5b07b8a 100644 --- a/brutaldon/forms.py +++ b/brutaldon/forms.py @@ -7,3 +7,11 @@ class LoginForm(forms.Form): max_length=256) password = forms.CharField(widget=forms.PasswordInput()) +class SettingsForm(forms.Form): + fullbrutalism = forms.BooleanField(label="Use FULLBRUTALISM mode?", + required=False, + help_text= + """FULLBRUTALISM mode strips away most of the niceties of modern web design when + brutaldon is viewed in a graphical browser. It has no effect in text-only browsers.""") + + diff --git a/brutaldon/static/css/fullbrutalism.css b/brutaldon/static/css/fullbrutalism.css index bccac5e..e7b7672 100644 --- a/brutaldon/static/css/fullbrutalism.css +++ b/brutaldon/static/css/fullbrutalism.css @@ -172,11 +172,21 @@ img { .title { font-size: 3ex; font-weight: bold; + margin-top: 1ex; + margin-bottom: 1ex; } .subtitle { font-size: 1.5ex; font-weight: bold; + margin-top: 0.25ex; + margin-bottom: 0.25ex; } .toot { clear: both; } + +.box { + padding: 4px; + margin: 4px; + border: 8px ridge #CCC; +} diff --git a/brutaldon/templates/base.html b/brutaldon/templates/base.html index 4b21b58..549acd4 100644 --- a/brutaldon/templates/base.html +++ b/brutaldon/templates/base.html @@ -36,6 +36,7 @@ Federated
diff --git a/brutaldon/templates/setup/settings.html b/brutaldon/templates/setup/settings.html new file mode 100644 index 0000000..7f182f7 --- /dev/null +++ b/brutaldon/templates/setup/settings.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} +{% load widget_tweaks %} + +{% block content %} +