gitlabhq/app/assets/stylesheets/application.css

53 lines
938 B
CSS
Raw Normal View History

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
*= 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;
}
.no-borders {
border:none;
}
2011-11-25 23:19:14 +01:00
.no-padding {
padding:0 !important;
}
2011-11-28 21:16:57 +01:00