summaryrefslogtreecommitdiff
path: root/ui/app/css/common.css
blob: 7d8680f45ac452910a705a8f5ff3e6c4cefaa20d (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
  padding: 0;
  margin: 0;
}

.debug-panel {
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1000;
  padding: 20px;
}
.debug-panel a {
  cursor: pointer;
  margin: 10px;
}


.area-light {
  background-color: #f7f7f7;
}
.area-dark {
  background-color: #e7e7e7;
}
.area-clear {
  background-color: #fff;
}

/*
 * Greeter
 */
.greeter {
  border-color: #555;
  border-width: 8px;
}

/*
 * bootstrap
 */

.help-block {
  margin: 2px 0 0 0;
  font-size: small;
  opacity: 0.7;
}
.btn.btn-inverse {
  color: white;
  background-color: #333;
}
.btn.btn-flat {
  border-color: transparent;
  background-color: transparent;
}

/*.btn.btn-default {
  background-color: #eee !important;
}
*/

/*
 * center component
 */

.center-container {
  display: -webkit-flex;
  display: flex;

  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;

  -webkit-justify-content: center;
  justify-content: center;

  -webkit-align-content: center;
  align-content: center;

  -webkit-align-items: center;
  align-items: center;
}

.center-vertical {
  display: -webkit-flex;
  display: flex;

  -webkit-flex-direction: row;
  flex-direction: row;

  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;

  -webkit-justify-content: flex-start;
  justify-content: flex-start;

  -webkit-align-content: center;
  align-content: center;

  -webkit-align-items: center;
  align-items: center;
}

.center-container.center-both {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.center-container .center-item,
.center-vertical .center-item {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}

/*
 * typography
 */

h1.first { margin-top: 0px }

.vspacer {margin-top: 20px }

.clickable {cursor: pointer;}