2011-10-08 23:36:38 +02:00
|
|
|
/*
|
|
|
|
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
|
|
|
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
|
|
|
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
2011-10-26 19:42:24 +02:00
|
|
|
*= require jquery-ui/jquery-ui
|
|
|
|
*= require jquery-ui/jquery.ui.selectmenu
|
2011-11-04 09:11:14 +01:00
|
|
|
*= require jquery-ui/jquery.tagify
|
2011-11-15 09:45:15 +01:00
|
|
|
*= require chosen
|
2011-10-08 23:36:38 +02:00
|
|
|
*= require_self
|
2011-10-26 15:46:25 +02:00
|
|
|
*= require_tree .
|
2011-10-08 23:36:38 +02:00
|
|
|
*/
|
2011-11-12 13:45:32 +01:00
|
|
|
|
|
|
|
/** COLORS **/
|
|
|
|
.cgray { color:gray; }
|
|
|
|
.cred { color:#D12F19; }
|
|
|
|
.cgreen { color:#44aa22; }
|
|
|
|
|
|
|
|
/** COMMON STYLES **/
|
2011-11-15 09:34:30 +01:00
|
|
|
.left {
|
2011-11-12 13:45:32 +01:00
|
|
|
float:left;
|
|
|
|
}
|
2011-11-15 09:34:30 +01:00
|
|
|
.right {
|
2011-11-12 13:45:32 +01:00
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
.width-50p{
|
|
|
|
width:50%;
|
|
|
|
}
|
|
|
|
.width-49p{
|
|
|
|
width:49%;
|
|
|
|
}
|
|
|
|
.width-30p{
|
|
|
|
width:30%;
|
|
|
|
}
|
|
|
|
.width-65p{
|
|
|
|
width:65%;
|
|
|
|
}
|
2011-11-25 23:19:14 +01:00
|
|
|
.width-100p{
|
|
|
|
width:100%;
|
|
|
|
}
|
2011-11-15 09:34:30 +01:00
|
|
|
.append-bottom-10 {
|
2011-11-12 13:45:32 +01:00
|
|
|
margin-bottom:10px;
|
|
|
|
}
|
|
|
|
.prepend-top-10 {
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
2011-11-25 22:40:12 +01:00
|
|
|
.no-borders {
|
|
|
|
border:none;
|
|
|
|
}
|
2011-11-25 23:19:14 +01:00
|
|
|
.no-padding {
|
|
|
|
padding:0 !important;
|
|
|
|
}
|