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

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-adduser {
  max-width: 600px;
  padding: 10px;
  margin: 0 auto;
}
.form-narrow {
	max-width: 320px;
}
.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;
}

.slx-default {
  color: #888;
  font-size: 90%;
  font-style: italic;
}

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

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

.bootstrap-tagsinput {
  width: 100%;
  margin: 0px;
  border-radius: 0;
  height: 34px;
}

.isdir {
	font-weight: bold;
}

.slx-litehead {
	margin: 0px 10px 5px 10px;
	color: #aaa;
	text-transform: uppercase;
	font-weight: bold;
}

.red {
	color: red;
}

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

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

.input-group {
	margin-bottom: 2px;
}

.slx-md-width {
	max-width: 600px;
}

.slx-storechart {
	max-width: 140px;
	margin: 5px;
	padding: 3px;
	float: left;
	background-color: #eee;
}

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

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