Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application.css « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8deb3642a12349794cfbca24ff2ca2686939262f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * 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.
 *= require jquery-ui/jquery-ui
 *= require jquery-ui/jquery.ui.selectmenu
 *= require jquery-ui/jquery.tagify
 *= require_self
 *= require_tree .
*/

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

/** COMMON STYLES **/
.left { 
  float:left;
}
.right { 
  float:right;
}
.width-50p{
  width:50%;
}
.width-49p{
  width:49%;
}
.width-30p{
  width:30%;
}
.width-65p{
  width:65%;
}
.append-bottom-10 { 
  margin-bottom:10px;
}
.prepend-top-10 {
  margin-top:10px;
}