summaryrefslogtreecommitdiffstats
path: root/style/default.css
blob: 9fe8fa298de7a213cbecc2a2f8b562b9f918f3a6 (plain) (blame)
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
body {
  padding-top: 70px;
  padding-bottom: 10px;
}

.form-narrow {
  max-width: 600px;
  padding: 10px;
  margin: 0 auto;
}
.form-narrow .input-group {
	margin-bottom: 2em;
}

.form-control:focus {
  z-index: 2;
}

.slx-ga {
	min-width: 8em;
	text-align: left;
}

.slx-dialog {
	width: 100%;
	min-width: 600px;
	max-width: 820px;
}

.slx-label {
	font-weight: bold;
	margin: auto;
}

.slx-table td {
	padding-right: 5px;
	padding-bottom: 2px;
}

.slx-bold {
	font-weight: bold;
}

.slx-ellipsis {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 240px;
}

.slx-nowrap {
	white-space: nowrap;
}

.slx-rotation {
  animation-name: rotateThis;
  animation-duration: .75s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateThis {
  from { transform: scale( 1 ) rotate( 0deg );   }
  to   { transform: scale( 1 ) rotate( 360deg ); }
}
.slx-footer {
  color: #999;
  padding: 5px;
}

.slx-fade {
  opacity: 0.5;
}

.slx-pointer {
  cursor: pointer;
}