application.css 937 Bytes
Newer Older
gitlabhq's avatar
gitlabhq committed
1 2 3 4
/*
 * 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.
5 6
 *= require jquery-ui/jquery-ui
 *= require jquery-ui/jquery.ui.selectmenu
Aleksei Kvitinskii's avatar
Aleksei Kvitinskii committed
7
 *= require jquery-ui/jquery.tagify
8
 *= require chosen
gitlabhq's avatar
gitlabhq committed
9
 *= require_self
Nihad Abbasov's avatar
Nihad Abbasov committed
10
 *= require_tree .
gitlabhq's avatar
gitlabhq committed
11
*/
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
12 13 14 15 16 17 18

/** COLORS **/
.cgray { color:gray; }
.cred { color:#D12F19; }
.cgreen { color:#44aa22; }

/** COMMON STYLES **/
19
.left {
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
20 21
  float:left;
}
22
.right {
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36
  float:right;
}
.width-50p{
  width:50%;
}
.width-49p{
  width:49%;
}
.width-30p{
  width:30%;
}
.width-65p{
  width:65%;
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
37 38 39
.width-100p{
  width:100%;
}
40
.append-bottom-10 {
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
41 42 43 44 45
  margin-bottom:10px;
}
.prepend-top-10 {
  margin-top:10px;
}
46 47 48
.no-borders { 
  border:none;
}
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
49 50 51
.no-padding { 
  padding:0 !important;
}