summaryrefslogtreecommitdiff
path: root/setup/styles/setup.css
blob: 00a8014f7374576b3c273d2ccafa61b5524c78df (plain)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
body {
  margin:0; padding:0;
  font-family: Verdana, sans-serif;
  font-size:13px;
}
a { text-decoration: none; }
input:required {border: 1px solid #f90;}

#header {
  /*background-color:#47617B;*/
  background-color:#5e5e5e; /* matching grayscale brightness of title.png */
  margin:0;
  padding:0;
  border-bottom:4px solid #5f9729;
}
#logo {
  background-image:url(../images/title.png);
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-attachment:scroll;
  
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray; /* IE6-9 */
  filter: grayscale(100%); /* grayscale until a transparent logo exists that match colors of default theme */
}
#logo h1 {
  padding:0;
  margin:0;
  font-size:2em;
  line-height: 90px;
  font-weight:normal;
}
#logo h1 a {
  display: block;
  height: 90px;
  color:#fff;
  border: 0;
  padding: 0;
  margin: 0 auto;
  padding-left:260px;
}
#content {max-width:800px;margin-left:auto;margin-right:auto;}

#footer {
  background-color: #333;
  padding: 1em;
  margin:0;
  border-top: 2px solid #5f9729;
  text-align: center;
  color:#ccc;
}
#footer p, #footer ul{display:inline-block;}
#footer li {display:inline-block; list-style:none;}
#footer a{ display:inline-block; padding:0.5em; color:#fff; }
#footer a:hover {background-color:#000;}

#stepbar{ margin-top:1em;}
#stepbar div {
  box-sizing:border-box;
  height:36px;
  font-weight: bold;
  padding: 10px;
  background-color:#ddd;
  margin-right:10px;
  margin-bottom:6px; /* when it wraps on small displays */
  display:inline-block;
  position:relative; /* for the :after rightarrow */
}

#stepbar .step-on { background-color:#5f9729; color:#fff;}
#stepbar .done { background-color:#333; color:#ccc;}

/* css arrow to right */
#stepbar div:after{
  position:absolute;
  content:"";
  width:0;
  height:0;
  top:0;
  
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  border-left:8px solid #ddd;
  right:-8px;
}

#stepbar div::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  top: 0;
  
  border-bottom: 18px solid #ddd;
  border-top: 18px solid #ddd;
  border-left: 8px solid transparent;
  left:-8px;
}
#stepbar .step-on::after{border-left-color:#5f9729;}
#stepbar .step-on::before{border-top-color:#5f9729;border-bottom-color:#5f9729;}
#stepbar .done::after{border-left-color:#333;}
#stepbar .done::before{border-top-color:#333;border-bottom-color:#333;}
#stepbar div:first-child::before{display:none;}

.install {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .5em;
  padding: 10px;
  border: 1px solid #ddd;
  max-width: 700px;
  background-color: #f1f1f1;
}

.formBlock {
  border: 1px solid #ddd;
  padding:5px;
  margin:5px;
  background: #f1f1f1;
  color:#000;
}

.formBlock td {
  vertical-align:top;
  padding-top:1.5em;
  min-width:150px;
}

.button {
  display: block;
  font-size: 3em;
  margin: 0.5em auto;
  cursor:pointer;
}

.error {
  color : #c00;
  font-weight : bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

.red {
  color:#F00;
}
.orange {
  color:#FFA500;
}
.green {
  color:#078843;
}

.install h1 {
  color:#47617B;
  text-align:center;
}
.install h2 {
  color:#688EB4;
}

h1.error {
  background-image: url(../images/exclamation.png);
  border:none;
  text-indent: 45px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  text-align:left;
}

.box {
  border: 5px solid #688EB4;
  padding:0;
  margin:0;
  background-color: #F1F3F5;
}