This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
121 lines (104 loc) · 2.07 KB
/
style.css
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
/*
* Copyright 2010 Henning Hoefer
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
* {
font-family: 'Lucida Grande', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
font-size: 12px;
color: #444;
}
body {
background-image: url(images/background.png);
background-position: 0% 100%;
background-repeat: no-repeat;
overflow-x: hidden;
margin: 20px;
}
h1 {
color: rgb(92, 97, 102);
margin-bottom: 1em;
font-size: 1.5em;
}
h1, h2, h3 {
font-weight: normal;
}
a {
color: rgb(17, 85, 204);
}
a:visited {
color: blue;
}
img#error {
visibility: hidden;
}
input#cancel {
opacity: 0.7;
}
fieldset {
margin-bottom: 1.5em;
margin-top: 0;
width: 20em;
border: 1px solid #ccc;
}
input[type=button] {
font-weight: normal;
color: #222;
border: 1px solid #999;
border-radius: 2px;
padding: 5px;
background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ccc));
}
div.optionform {
width: 20em;
padding: 0 0.75em;
text-align: center;
}
div.optionform a {
float: right;
}
div#wrapper {
min-height: 300px;
min-width: 250px;
}
table#tab td {
padding: 0.5em;
white-space: nowrap;
}
img#refreshIcon {
width: 19px;
height: 19px;
border: 0;
vertical-align: text-bottom;
}
div#refresh {
float: right;
cursor: pointer;
}
div#refresh:hover:before {
content: "Refresh ";
color: silver;
font-weight: normal;
font-size: medium;
}
div#wrapper h3 {
display: inline;
cursor: pointer;
}
div#wrapper h3:hover:after {
content: " Home";
color: silver;
font-weight: normal;
font-size: medium;
vertical-align: middle;
}