|
@@ -0,0 +1,169 @@
|
|
1
|
+@media all and (orientation: portrait) {
|
|
2
|
+ #content {
|
|
3
|
+ background: none !important;
|
|
4
|
+ }
|
|
5
|
+ table#maincontent {
|
|
6
|
+ margin: auto;
|
|
7
|
+ }
|
|
8
|
+}
|
|
9
|
+
|
|
10
|
+* {
|
|
11
|
+ margin: 0;
|
|
12
|
+ padding: 0;
|
|
13
|
+}
|
|
14
|
+
|
|
15
|
+html, body {
|
|
16
|
+ height: 100%;
|
|
17
|
+}
|
|
18
|
+
|
|
19
|
+body {
|
|
20
|
+ font-family: Bitstream Vera Sans, Tahoma, sans-serif;
|
|
21
|
+ font-size: 11px;
|
|
22
|
+ color: black;
|
|
23
|
+ background: url('/static/common/hiware.png');
|
|
24
|
+}
|
|
25
|
+
|
|
26
|
+table {
|
|
27
|
+ font-size: inherit;
|
|
28
|
+}
|
|
29
|
+
|
|
30
|
+a {
|
|
31
|
+ color: #016670;
|
|
32
|
+ text-decoration: none;
|
|
33
|
+}
|
|
34
|
+
|
|
35
|
+a:hover {
|
|
36
|
+ color: black;
|
|
37
|
+ text-decoration: underline;
|
|
38
|
+}
|
|
39
|
+
|
|
40
|
+p {
|
|
41
|
+ margin: 1em 0;
|
|
42
|
+}
|
|
43
|
+
|
|
44
|
+input[type="text"], input[type="password"], input[type="email"] {
|
|
45
|
+ color: black;
|
|
46
|
+ background-color: white;
|
|
47
|
+ padding: 0 0 0 6px;
|
|
48
|
+ font: 500 14px/29px Helvetica, Arial, sans-serif;
|
|
49
|
+ width: 100%;
|
|
50
|
+ box-sizing: border-box;
|
|
51
|
+}
|
|
52
|
+
|
|
53
|
+input[type="text"]:valid, input[type="password"]:valid, input[type="email"] {
|
|
54
|
+ border-style: none;
|
|
55
|
+}
|
|
56
|
+
|
|
57
|
+input[type="text"]:invalid, input[type="password"]:invalid {
|
|
58
|
+ border: none;
|
|
59
|
+ border-right: 2px solid red;
|
|
60
|
+}
|
|
61
|
+
|
|
62
|
+#loginform > table, #recoverform > div > table {
|
|
63
|
+ border-spacing: 1px;
|
|
64
|
+}
|
|
65
|
+
|
|
66
|
+#loginform #username, #recoverform #new_pass_1 {
|
|
67
|
+ border-radius: 5px 5px 0 0;
|
|
68
|
+}
|
|
69
|
+
|
|
70
|
+#loginform input[type="submit"], #recoverform input[type="submit"], input[type="submit"] {
|
|
71
|
+ width: 100%;
|
|
72
|
+ background-color: #fbe180;
|
|
73
|
+ font: 500 14px/29px Helvetica, Arial, sans-serif;
|
|
74
|
+ border: none;
|
|
75
|
+ border-radius: 0 0 5px 5px;
|
|
76
|
+ cursor: pointer;
|
|
77
|
+}
|
|
78
|
+#loginform input[type="submit"]:hover, #recoverform input[type="submit"]:hover, input[type="submit"]:hover {
|
|
79
|
+ background-color: #fff9c7;
|
|
80
|
+}
|
|
81
|
+
|
|
82
|
+#recoverform .layout td:first-child {
|
|
83
|
+ width: 100%;
|
|
84
|
+ text-align: right;
|
|
85
|
+ padding-right: 5px;
|
|
86
|
+}
|
|
87
|
+
|
|
88
|
+#head, #foot {
|
|
89
|
+ height: 30px;
|
|
90
|
+ width: 100%;
|
|
91
|
+ background: #016670;
|
|
92
|
+ overflow: hidden;
|
|
93
|
+}
|
|
94
|
+
|
|
95
|
+#head {
|
|
96
|
+ text-align: right;
|
|
97
|
+}
|
|
98
|
+
|
|
99
|
+#foot {
|
|
100
|
+ text-align: center;
|
|
101
|
+ bottom: 0;
|
|
102
|
+ position: absolute;
|
|
103
|
+}
|
|
104
|
+
|
|
105
|
+#foot > span, #head > span {
|
|
106
|
+ line-height: 30px;
|
|
107
|
+ margin: 1em;
|
|
108
|
+}
|
|
109
|
+
|
|
110
|
+#foot > span, #head > span {
|
|
111
|
+ color: white;
|
|
112
|
+}
|
|
113
|
+
|
|
114
|
+#foot a, #head a {
|
|
115
|
+ color: white;
|
|
116
|
+}
|
|
117
|
+
|
|
118
|
+#foot a:hover, #head a:hover {
|
|
119
|
+ color: white;
|
|
120
|
+}
|
|
121
|
+
|
|
122
|
+#content {
|
|
123
|
+ height: calc(100% - 60px);
|
|
124
|
+ overflow-y: auto;
|
|
125
|
+ box-sizing: border-box;
|
|
126
|
+ background-repeat: no-repeat;
|
|
127
|
+ background-size: contain;
|
|
128
|
+ display: flex;
|
|
129
|
+ align-items: center;
|
|
130
|
+ padding: 0 25%;
|
|
131
|
+}
|
|
132
|
+
|
|
133
|
+#maincontent {
|
|
134
|
+ margin: auto 0 auto auto;
|
|
135
|
+ background-color: transparent;
|
|
136
|
+}
|
|
137
|
+
|
|
138
|
+#logo {
|
|
139
|
+ width: 250px;
|
|
140
|
+ height: 50px;
|
|
141
|
+ background-image: url('/static/common/logo-black.png');
|
|
142
|
+ background-repeat: no-repeat;
|
|
143
|
+ background-position: center;
|
|
144
|
+ background-size: contain;
|
|
145
|
+ margin: 1em 0;
|
|
146
|
+}
|
|
147
|
+
|
|
148
|
+.centered {
|
|
149
|
+ /* text-align: center; */
|
|
150
|
+ vertical-align: middle;
|
|
151
|
+}
|
|
152
|
+
|
|
153
|
+.hidden {
|
|
154
|
+ display: none;
|
|
155
|
+}
|
|
156
|
+
|
|
157
|
+.info {
|
|
158
|
+ color: green;
|
|
159
|
+ font-weight: bold;
|
|
160
|
+}
|
|
161
|
+
|
|
162
|
+.warning {
|
|
163
|
+ color: red;
|
|
164
|
+ font-weight: bold;
|
|
165
|
+}
|
|
166
|
+
|
|
167
|
+.notice {
|
|
168
|
+ width: 250px;
|
|
169
|
+}
|