mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
37be0f4fa1
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.
45 lines
715 B
CSS
45 lines
715 B
CSS
@import url('blueprint/screen.css');
|
|
@import url('awesome/awesome.css');
|
|
@import url('uniform/blue.uni-form.css');
|
|
|
|
/** CSS3 fonts **/
|
|
@import url(http://fonts.googleapis.com/css?family=Lobster);
|
|
@import url(http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here);
|
|
|
|
|
|
#title{
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.container h1{
|
|
text-align: center;
|
|
font-family: 'Lobster', arial, serif;
|
|
}
|
|
|
|
.fleft{
|
|
float: left;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#content h2 {
|
|
font-weight: bold;
|
|
text-shadow: #DDD 2px 5px 2px;
|
|
}
|
|
|
|
#topmenu{
|
|
margin-top: 15px;
|
|
}
|
|
|
|
#topmenu ul{
|
|
float: right;
|
|
}
|
|
#topmenu ul li{
|
|
float: right;
|
|
list-style-type: none;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
/** links **/
|
|
a {
|
|
color: #a45900;
|
|
}
|