summaryrefslogtreecommitdiffstats
path: root/style/default.css
blob: 1a68547410c1453ca8ea6c2318fb3ff29a820b65 (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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
	padding-top: 70px;
	padding-bottom: 10px;
}

p {
	font-size: 110%;
}

.form-signin {
	max-width: 330px;
	padding: 15px;
	margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
	margin-bottom: 10px;
}
.form-signin .checkbox {
	font-weight: normal;
}
.form-signin .form-control,
.form-adduser .form-control {
	position: relative;
	font-size: 16px;
	height: auto;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.form-control:focus {
	z-index: 2;
}
.form-signin input[type="text"] {
	margin-bottom: -1px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

span.form-control {
	color: #777;
}

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

.group-group .input-group-addon, .group-group, .form-control {
	border-radius: 0;
}
.group-group .input-group:first-child .input-group-addon {
	border-top-left-radius: 4px;
}
.group-group .input-group:first-child .form-control {
	border-top-right-radius: 4px;
}
.group-group .input-group:last-child .input-group-addon {
	border-bottom-left-radius: 4px;
}
.group-group .input-group:last-child .form-control {
	border-bottom-right-radius: 4px;
}

.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;
}

.linkbox {
	margin-bottom: 5px;
}
.linkbox a {
	font-weight: bold;
}
.linkbox div {
	font-style: italic;
}

.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;
}