diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-31 15:39:32 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-31 16:33:29 +0200 |
| commit | 37be0f4fa196de8c160f1ec59978fd3c15a8bf8d (patch) | |
| tree | 39f0568a851e69dd98de20b467259c63fe2410c1 /budget/static/awesome/awesome.css | |
| parent | 3417a5a7d48ade7744586a711127d2302f58109a (diff) | |
| download | ihatemoney-mirror-37be0f4fa196de8c160f1ec59978fd3c15a8bf8d.zip ihatemoney-mirror-37be0f4fa196de8c160f1ec59978fd3c15a8bf8d.tar.gz ihatemoney-mirror-37be0f4fa196de8c160f1ec59978fd3c15a8bf8d.tar.bz2 | |
Theming.
Uses uni-form to style forms and add a macro to ease this.
Of course, the overall thing has to be reworked, but having this in place will
help us to have something easier to change when we will really care about design.
All the form templates can now be defined in templates/forms.html and be called
thansk to {{ forms.name_of_the_form(form) }}.
I've done some styling, but that's really not my thing, feel free to modify it.
Diffstat (limited to 'budget/static/awesome/awesome.css')
| -rw-r--r-- | budget/static/awesome/awesome.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/budget/static/awesome/awesome.css b/budget/static/awesome/awesome.css new file mode 100644 index 0000000..47c624a --- /dev/null +++ b/budget/static/awesome/awesome.css @@ -0,0 +1,29 @@ +@import url('awesome-buttons.css'); + +/* awesome buttons extensions */ +.awesome.blue { + background-color: #0A50FF !important; +} +.awesome.red { + background-color: #e33100 !important; +} +.awesome.green { + background-color: #3ACC00 !important; +} +.awesome.orange { + background-color: #ff8f0b !important; +} +.awesome.small { + padding: 4px 7px 5px !important; + font-size: 10px !important; +} +.awesome.small:active { + padding: 5px 7px 4px !important; +} +.awesome.large { + padding: 8px 14px 9px !important; + font-size: 14px !important; +} +.awesome.large:active { + padding: 9px 14px 8px !important; +} |
