gitlabhq/app/assets/stylesheets/application.css

43 lines
835 B
CSS
Raw Normal View History

2011-10-09 00:36:38 +03: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 22:42:24 +05:00
*= require jquery-ui/jquery-ui
*= require jquery-ui/jquery.ui.selectmenu
2011-11-04 10:11:14 +02:00
*= require jquery-ui/jquery.tagify
2011-11-15 12:45:15 +04:00
*= require chosen
2011-10-09 00:36:38 +03:00
*= require_self
*= require_tree .
2011-10-09 00:36:38 +03:00
*/
2011-11-12 14:45:32 +02:00
/** COLORS **/
.cgray { color:gray; }
.cred { color:#D12F19; }
.cgreen { color:#44aa22; }
/** COMMON STYLES **/
2011-11-15 12:34:30 +04:00
.left {
2011-11-12 14:45:32 +02:00
float:left;
}
2011-11-15 12:34:30 +04:00
.right {
2011-11-12 14:45:32 +02:00
float:right;
}
.width-50p{
width:50%;
}
.width-49p{
width:49%;
}
.width-30p{
width:30%;
}
.width-65p{
width:65%;
}
2011-11-15 12:34:30 +04:00
.append-bottom-10 {
2011-11-12 14:45:32 +02:00
margin-bottom:10px;
}
.prepend-top-10 {
margin-top:10px;
}